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

60617 строки
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. }
  2242. //species
  2243. function getSpeciesInfo(speciesList) {
  2244. let result = new Set();
  2245. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2246. result.add(entry)
  2247. });
  2248. return Array.from(result);
  2249. };
  2250. function getSpeciesInfoHelper(species) {
  2251. if (!speciesData[species]) {
  2252. console.warn(species + " doesn't exist");
  2253. return [];
  2254. }
  2255. if (speciesData[species].parents) {
  2256. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2257. } else {
  2258. return [species];
  2259. }
  2260. }
  2261. characterMakers.push(() => makeCharacter(
  2262. {
  2263. name: "Fen",
  2264. species: ["crux"],
  2265. description: {
  2266. title: "Bio",
  2267. text: "Very furry. Sheds on everything."
  2268. },
  2269. tags: [
  2270. "anthro",
  2271. "goo"
  2272. ]
  2273. },
  2274. {
  2275. front: {
  2276. height: math.unit(12, "feet"),
  2277. weight: math.unit(2400, "lb"),
  2278. preyCapacity: math.unit(1, "people"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/fen/front.svg",
  2282. extra: 1804/1562,
  2283. bottom: 205/2009
  2284. },
  2285. extraAttributes: {
  2286. pawSize: {
  2287. name: "Paw Size",
  2288. power: 2,
  2289. type: "area",
  2290. base: math.unit(0.35, "m^2")
  2291. }
  2292. }
  2293. },
  2294. diving: {
  2295. height: math.unit(4.9, "meters"),
  2296. weight: math.unit(2400, "lb"),
  2297. name: "Diving",
  2298. image: {
  2299. source: "./media/characters/fen/diving.svg"
  2300. }
  2301. },
  2302. sleeby: {
  2303. height: math.unit(3.45, "meters"),
  2304. weight: math.unit(2400, "lb"),
  2305. name: "Sleeby",
  2306. image: {
  2307. source: "./media/characters/fen/sleeby.svg"
  2308. }
  2309. },
  2310. goo: {
  2311. height: math.unit(12, "feet"),
  2312. weight: math.unit(3600, "lb"),
  2313. volume: math.unit(1000, "liters"),
  2314. preyCapacity: math.unit(6, "people"),
  2315. name: "Goo",
  2316. image: {
  2317. source: "./media/characters/fen/goo.svg",
  2318. extra: 1307/1071,
  2319. bottom: 134/1441
  2320. }
  2321. },
  2322. horror: {
  2323. height: math.unit(13.6, "feet"),
  2324. weight: math.unit(2400, "lb"),
  2325. preyCapacity: math.unit(1, "people"),
  2326. name: "Horror",
  2327. image: {
  2328. source: "./media/characters/fen/horror.svg",
  2329. extra: 893/797,
  2330. bottom: 0/893
  2331. }
  2332. },
  2333. gooNsfw: {
  2334. height: math.unit(12, "feet"),
  2335. weight: math.unit(3750, "lb"),
  2336. volume: math.unit(1000, "liters"),
  2337. preyCapacity: math.unit(6, "people"),
  2338. name: "Goo (NSFW)",
  2339. image: {
  2340. source: "./media/characters/fen/goo-nsfw.svg",
  2341. extra: 1875/1734,
  2342. bottom: 122/1997
  2343. }
  2344. },
  2345. maw: {
  2346. height: math.unit(5.03, "feet"),
  2347. name: "Maw",
  2348. image: {
  2349. source: "./media/characters/fen/maw.svg"
  2350. }
  2351. },
  2352. gooCeiling: {
  2353. height: math.unit(6.6, "feet"),
  2354. weight: math.unit(3000, "lb"),
  2355. volume: math.unit(1000, "liters"),
  2356. preyCapacity: math.unit(6, "people"),
  2357. name: "Maw (Goo)",
  2358. image: {
  2359. source: "./media/characters/fen/goo-maw.svg"
  2360. }
  2361. },
  2362. paw: {
  2363. height: math.unit(3.77, "feet"),
  2364. name: "Paw",
  2365. image: {
  2366. source: "./media/characters/fen/paw.svg"
  2367. },
  2368. extraAttributes: {
  2369. "toeSize": {
  2370. name: "Toe Size",
  2371. power: 2,
  2372. type: "area",
  2373. base: math.unit(0.02875, "m^2")
  2374. },
  2375. "pawSize": {
  2376. name: "Paw Size",
  2377. power: 2,
  2378. type: "area",
  2379. base: math.unit(0.378, "m^2")
  2380. },
  2381. }
  2382. },
  2383. tail: {
  2384. height: math.unit(12.1, "feet"),
  2385. name: "Tail",
  2386. image: {
  2387. source: "./media/characters/fen/tail.svg"
  2388. }
  2389. },
  2390. tailFull: {
  2391. height: math.unit(12.1, "feet"),
  2392. name: "Full Tail",
  2393. image: {
  2394. source: "./media/characters/fen/tail-full.svg"
  2395. }
  2396. },
  2397. back: {
  2398. height: math.unit(12, "feet"),
  2399. weight: math.unit(2400, "lb"),
  2400. name: "Back",
  2401. image: {
  2402. source: "./media/characters/fen/back.svg",
  2403. },
  2404. info: {
  2405. description: {
  2406. mode: "append",
  2407. text: "\n\nHe is not currently looking at you."
  2408. }
  2409. }
  2410. },
  2411. full: {
  2412. height: math.unit(1.85, "meter"),
  2413. weight: math.unit(3200, "lb"),
  2414. name: "Full",
  2415. image: {
  2416. source: "./media/characters/fen/full.svg",
  2417. extra: 1133/859,
  2418. bottom: 145/1278
  2419. },
  2420. info: {
  2421. description: {
  2422. mode: "append",
  2423. text: "\n\nMunch."
  2424. }
  2425. }
  2426. },
  2427. gooLounging: {
  2428. height: math.unit(4.53, "feet"),
  2429. weight: math.unit(3000, "lb"),
  2430. preyCapacity: math.unit(6, "people"),
  2431. name: "Goo (Lounging)",
  2432. image: {
  2433. source: "./media/characters/fen/goo-lounging.svg",
  2434. bottom: 116 / 613
  2435. }
  2436. },
  2437. lounging: {
  2438. height: math.unit(10.52, "feet"),
  2439. weight: math.unit(2400, "lb"),
  2440. name: "Lounging",
  2441. image: {
  2442. source: "./media/characters/fen/lounging.svg"
  2443. }
  2444. },
  2445. },
  2446. [
  2447. {
  2448. name: "Small",
  2449. height: math.unit(2.2428, "meter")
  2450. },
  2451. {
  2452. name: "Normal",
  2453. height: math.unit(12, "feet"),
  2454. default: true,
  2455. },
  2456. {
  2457. name: "Big",
  2458. height: math.unit(20, "feet")
  2459. },
  2460. {
  2461. name: "Minimacro",
  2462. height: math.unit(40, "feet"),
  2463. info: {
  2464. description: {
  2465. mode: "append",
  2466. text: "\n\nTOO DAMN BIG"
  2467. }
  2468. }
  2469. },
  2470. {
  2471. name: "Macro",
  2472. height: math.unit(100, "feet"),
  2473. info: {
  2474. description: {
  2475. mode: "append",
  2476. text: "\n\nTOO DAMN BIG"
  2477. }
  2478. }
  2479. },
  2480. {
  2481. name: "Megamacro",
  2482. height: math.unit(2, "miles")
  2483. },
  2484. {
  2485. name: "Gigamacro",
  2486. height: math.unit(10, "earths")
  2487. },
  2488. ]
  2489. ))
  2490. characterMakers.push(() => makeCharacter(
  2491. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2492. {
  2493. front: {
  2494. height: math.unit(183, "cm"),
  2495. weight: math.unit(80, "kg"),
  2496. name: "Front",
  2497. image: {
  2498. source: "./media/characters/sofia-fluttertail/front.svg",
  2499. bottom: 0.01,
  2500. extra: 2154 / 2081
  2501. }
  2502. },
  2503. frontAlt: {
  2504. height: math.unit(183, "cm"),
  2505. weight: math.unit(80, "kg"),
  2506. name: "Front (alt)",
  2507. image: {
  2508. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2509. }
  2510. },
  2511. back: {
  2512. height: math.unit(183, "cm"),
  2513. weight: math.unit(80, "kg"),
  2514. name: "Back",
  2515. image: {
  2516. source: "./media/characters/sofia-fluttertail/back.svg"
  2517. }
  2518. },
  2519. kneeling: {
  2520. height: math.unit(125, "cm"),
  2521. weight: math.unit(80, "kg"),
  2522. name: "Kneeling",
  2523. image: {
  2524. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2525. extra: 1033 / 977,
  2526. bottom: 23.7 / 1057
  2527. }
  2528. },
  2529. maw: {
  2530. height: math.unit(183 / 5, "cm"),
  2531. name: "Maw",
  2532. image: {
  2533. source: "./media/characters/sofia-fluttertail/maw.svg"
  2534. }
  2535. },
  2536. mawcloseup: {
  2537. height: math.unit(183 / 5 * 0.41, "cm"),
  2538. name: "Maw (Closeup)",
  2539. image: {
  2540. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2541. }
  2542. },
  2543. paws: {
  2544. height: math.unit(1.17, "feet"),
  2545. name: "Paws",
  2546. image: {
  2547. source: "./media/characters/sofia-fluttertail/paws.svg",
  2548. extra: 851 / 851,
  2549. bottom: 17 / 868
  2550. }
  2551. },
  2552. },
  2553. [
  2554. {
  2555. name: "Normal",
  2556. height: math.unit(1.83, "meter")
  2557. },
  2558. {
  2559. name: "Size Thief",
  2560. height: math.unit(18, "feet")
  2561. },
  2562. {
  2563. name: "50 Foot Collie",
  2564. height: math.unit(50, "feet")
  2565. },
  2566. {
  2567. name: "Macro",
  2568. height: math.unit(96, "feet"),
  2569. default: true
  2570. },
  2571. {
  2572. name: "Megamerger",
  2573. height: math.unit(650, "feet")
  2574. },
  2575. ]
  2576. ))
  2577. characterMakers.push(() => makeCharacter(
  2578. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2579. {
  2580. front: {
  2581. height: math.unit(7, "feet"),
  2582. weight: math.unit(100, "kg"),
  2583. name: "Front",
  2584. image: {
  2585. source: "./media/characters/march/front.svg",
  2586. extra: 1992/1851,
  2587. bottom: 39/2031
  2588. }
  2589. },
  2590. foot: {
  2591. height: math.unit(0.9, "feet"),
  2592. name: "Foot",
  2593. image: {
  2594. source: "./media/characters/march/foot.svg"
  2595. }
  2596. },
  2597. },
  2598. [
  2599. {
  2600. name: "Normal",
  2601. height: math.unit(7.9, "feet")
  2602. },
  2603. {
  2604. name: "Macro",
  2605. height: math.unit(220, "meters")
  2606. },
  2607. {
  2608. name: "Megamacro",
  2609. height: math.unit(2.98, "km"),
  2610. default: true
  2611. },
  2612. {
  2613. name: "Gigamacro",
  2614. height: math.unit(15963, "km")
  2615. },
  2616. {
  2617. name: "Teramacro",
  2618. height: math.unit(2980000000, "km")
  2619. },
  2620. {
  2621. name: "Examacro",
  2622. height: math.unit(250, "parsecs")
  2623. },
  2624. ]
  2625. ))
  2626. characterMakers.push(() => makeCharacter(
  2627. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2628. {
  2629. front: {
  2630. height: math.unit(6, "feet"),
  2631. weight: math.unit(60, "kg"),
  2632. name: "Front",
  2633. image: {
  2634. source: "./media/characters/noir/front.svg",
  2635. extra: 1,
  2636. bottom: 0.032
  2637. }
  2638. },
  2639. },
  2640. [
  2641. {
  2642. name: "Normal",
  2643. height: math.unit(6.6, "feet")
  2644. },
  2645. {
  2646. name: "Macro",
  2647. height: math.unit(500, "feet")
  2648. },
  2649. {
  2650. name: "Megamacro",
  2651. height: math.unit(2.5, "km"),
  2652. default: true
  2653. },
  2654. {
  2655. name: "Gigamacro",
  2656. height: math.unit(22500, "km")
  2657. },
  2658. {
  2659. name: "Teramacro",
  2660. height: math.unit(2500000000, "km")
  2661. },
  2662. {
  2663. name: "Examacro",
  2664. height: math.unit(200, "parsecs")
  2665. },
  2666. ]
  2667. ))
  2668. characterMakers.push(() => makeCharacter(
  2669. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2670. {
  2671. front: {
  2672. height: math.unit(7, "feet"),
  2673. weight: math.unit(100, "kg"),
  2674. name: "Front",
  2675. image: {
  2676. source: "./media/characters/okuri/front.svg",
  2677. extra: 739/665,
  2678. bottom: 39/778
  2679. }
  2680. },
  2681. back: {
  2682. height: math.unit(7, "feet"),
  2683. weight: math.unit(100, "kg"),
  2684. name: "Back",
  2685. image: {
  2686. source: "./media/characters/okuri/back.svg",
  2687. extra: 734/653,
  2688. bottom: 13/747
  2689. }
  2690. },
  2691. sitting: {
  2692. height: math.unit(2.95, "feet"),
  2693. weight: math.unit(100, "kg"),
  2694. name: "Sitting",
  2695. image: {
  2696. source: "./media/characters/okuri/sitting.svg",
  2697. extra: 370/318,
  2698. bottom: 99/469
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Smallest",
  2705. height: math.unit(5 + 2/12, "feet")
  2706. },
  2707. {
  2708. name: "Smaller",
  2709. height: math.unit(300, "feet")
  2710. },
  2711. {
  2712. name: "Small",
  2713. height: math.unit(1000, "feet")
  2714. },
  2715. {
  2716. name: "Macro",
  2717. height: math.unit(1, "mile")
  2718. },
  2719. {
  2720. name: "Mega Macro (Small)",
  2721. height: math.unit(20, "km")
  2722. },
  2723. {
  2724. name: "Mega Macro (Large)",
  2725. height: math.unit(600, "km")
  2726. },
  2727. {
  2728. name: "Giga Macro",
  2729. height: math.unit(10000, "km")
  2730. },
  2731. {
  2732. name: "Normal",
  2733. height: math.unit(577560, "km"),
  2734. default: true
  2735. },
  2736. {
  2737. name: "Large",
  2738. height: math.unit(4, "galaxies")
  2739. },
  2740. {
  2741. name: "Largest",
  2742. height: math.unit(15, "multiverses")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7, "feet"),
  2751. weight: math.unit(100, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/manny/front.svg",
  2755. extra: 1,
  2756. bottom: 0.06
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(7, "feet"),
  2761. weight: math.unit(100, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/manny/back.svg",
  2765. extra: 1,
  2766. bottom: 0.014
  2767. }
  2768. },
  2769. },
  2770. [
  2771. {
  2772. name: "Normal",
  2773. height: math.unit(7, "feet"),
  2774. },
  2775. {
  2776. name: "Macro",
  2777. height: math.unit(78, "feet"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Macro+",
  2782. height: math.unit(300, "meters")
  2783. },
  2784. {
  2785. name: "Macro++",
  2786. height: math.unit(2400, "meters")
  2787. },
  2788. {
  2789. name: "Megamacro",
  2790. height: math.unit(5167, "meters")
  2791. },
  2792. {
  2793. name: "Gigamacro",
  2794. height: math.unit(41769, "miles")
  2795. },
  2796. ]
  2797. ))
  2798. characterMakers.push(() => makeCharacter(
  2799. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2800. {
  2801. front: {
  2802. height: math.unit(7, "feet"),
  2803. weight: math.unit(100, "kg"),
  2804. name: "Front",
  2805. image: {
  2806. source: "./media/characters/adake/front-1.svg"
  2807. }
  2808. },
  2809. frontAlt: {
  2810. height: math.unit(7, "feet"),
  2811. weight: math.unit(100, "kg"),
  2812. name: "Front (Alt)",
  2813. image: {
  2814. source: "./media/characters/adake/front-2.svg",
  2815. extra: 1,
  2816. bottom: 0.01
  2817. }
  2818. },
  2819. back: {
  2820. height: math.unit(7, "feet"),
  2821. weight: math.unit(100, "kg"),
  2822. name: "Back",
  2823. image: {
  2824. source: "./media/characters/adake/back.svg",
  2825. }
  2826. },
  2827. kneel: {
  2828. height: math.unit(5.385, "feet"),
  2829. weight: math.unit(100, "kg"),
  2830. name: "Kneeling",
  2831. image: {
  2832. source: "./media/characters/adake/kneel.svg",
  2833. bottom: 0.052
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(7, "feet"),
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(78, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Macro+",
  2849. height: math.unit(300, "meters")
  2850. },
  2851. {
  2852. name: "Macro++",
  2853. height: math.unit(2400, "meters")
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(5167, "meters")
  2858. },
  2859. {
  2860. name: "Gigamacro",
  2861. height: math.unit(41769, "miles")
  2862. },
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(1.65, "meters"),
  2870. weight: math.unit(50, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/elijah/front.svg",
  2874. extra: 858 / 830,
  2875. bottom: 95.5 / 953.8559
  2876. }
  2877. },
  2878. back: {
  2879. height: math.unit(1.65, "meters"),
  2880. weight: math.unit(50, "kg"),
  2881. name: "Back",
  2882. image: {
  2883. source: "./media/characters/elijah/back.svg",
  2884. extra: 895 / 850,
  2885. bottom: 5.3 / 897.956
  2886. }
  2887. },
  2888. frontNsfw: {
  2889. height: math.unit(1.65, "meters"),
  2890. weight: math.unit(50, "kg"),
  2891. name: "Front (NSFW)",
  2892. image: {
  2893. source: "./media/characters/elijah/front-nsfw.svg",
  2894. extra: 858 / 830,
  2895. bottom: 95.5 / 953.8559
  2896. }
  2897. },
  2898. backNsfw: {
  2899. height: math.unit(1.65, "meters"),
  2900. weight: math.unit(50, "kg"),
  2901. name: "Back (NSFW)",
  2902. image: {
  2903. source: "./media/characters/elijah/back-nsfw.svg",
  2904. extra: 895 / 850,
  2905. bottom: 5.3 / 897.956
  2906. }
  2907. },
  2908. dick: {
  2909. height: math.unit(1, "feet"),
  2910. name: "Dick",
  2911. image: {
  2912. source: "./media/characters/elijah/dick.svg"
  2913. }
  2914. },
  2915. beakOpen: {
  2916. height: math.unit(1.25, "feet"),
  2917. name: "Beak (Open)",
  2918. image: {
  2919. source: "./media/characters/elijah/beak-open.svg"
  2920. }
  2921. },
  2922. beakShut: {
  2923. height: math.unit(1.25, "feet"),
  2924. name: "Beak (Shut)",
  2925. image: {
  2926. source: "./media/characters/elijah/beak-shut.svg"
  2927. }
  2928. },
  2929. footFlexing: {
  2930. height: math.unit(1.61, "feet"),
  2931. name: "Foot (Flexing)",
  2932. image: {
  2933. source: "./media/characters/elijah/foot-flexing.svg"
  2934. }
  2935. },
  2936. footStepping: {
  2937. height: math.unit(1.44, "feet"),
  2938. name: "Foot (Stepping)",
  2939. image: {
  2940. source: "./media/characters/elijah/foot-stepping.svg"
  2941. }
  2942. },
  2943. plantigradeLeg: {
  2944. height: math.unit(2.34, "feet"),
  2945. name: "Plantigrade Leg",
  2946. image: {
  2947. source: "./media/characters/elijah/plantigrade-leg.svg"
  2948. }
  2949. },
  2950. plantigradeFootLeft: {
  2951. height: math.unit(0.9, "feet"),
  2952. name: "Plantigrade Foot (Left)",
  2953. image: {
  2954. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2955. }
  2956. },
  2957. plantigradeFootRight: {
  2958. height: math.unit(0.9, "feet"),
  2959. name: "Plantigrade Foot (Right)",
  2960. image: {
  2961. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2962. }
  2963. },
  2964. },
  2965. [
  2966. {
  2967. name: "Normal",
  2968. height: math.unit(1.65, "meters")
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(55, "meters"),
  2973. default: true
  2974. },
  2975. {
  2976. name: "Macro+",
  2977. height: math.unit(105, "meters")
  2978. },
  2979. ]
  2980. ))
  2981. characterMakers.push(() => makeCharacter(
  2982. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2983. {
  2984. front: {
  2985. height: math.unit(7 + 2/12, "feet"),
  2986. weight: math.unit(320, "kg"),
  2987. preyCapacity: math.unit(0.276549935, "people"),
  2988. name: "Front",
  2989. image: {
  2990. source: "./media/characters/rai/front.svg",
  2991. extra: 1802/1696,
  2992. bottom: 68/1870
  2993. },
  2994. form: "anthro",
  2995. default: true
  2996. },
  2997. frontDressed: {
  2998. height: math.unit(7 + 2/12, "feet"),
  2999. weight: math.unit(320, "kg"),
  3000. preyCapacity: math.unit(0.276549935, "people"),
  3001. name: "Front (Dressed)",
  3002. image: {
  3003. source: "./media/characters/rai/front-dressed.svg",
  3004. extra: 1802/1696,
  3005. bottom: 68/1870
  3006. },
  3007. form: "anthro"
  3008. },
  3009. side: {
  3010. height: math.unit(7 + 2/12, "feet"),
  3011. weight: math.unit(320, "kg"),
  3012. preyCapacity: math.unit(0.276549935, "people"),
  3013. name: "Side",
  3014. image: {
  3015. source: "./media/characters/rai/side.svg",
  3016. extra: 1789/1710,
  3017. bottom: 115/1904
  3018. },
  3019. form: "anthro"
  3020. },
  3021. back: {
  3022. height: math.unit(7 + 2/12, "feet"),
  3023. weight: math.unit(320, "kg"),
  3024. preyCapacity: math.unit(0.276549935, "people"),
  3025. name: "Back",
  3026. image: {
  3027. source: "./media/characters/rai/back.svg",
  3028. extra: 1770/1707,
  3029. bottom: 28/1798
  3030. },
  3031. form: "anthro"
  3032. },
  3033. feral: {
  3034. height: math.unit(9.5, "feet"),
  3035. weight: math.unit(640, "kg"),
  3036. preyCapacity: math.unit(4, "people"),
  3037. name: "Feral",
  3038. image: {
  3039. source: "./media/characters/rai/feral.svg",
  3040. extra: 945/553,
  3041. bottom: 176/1121
  3042. },
  3043. form: "feral",
  3044. default: true
  3045. },
  3046. dragon: {
  3047. height: math.unit(23, "feet"),
  3048. weight: math.unit(50000, "lb"),
  3049. name: "Dragon",
  3050. image: {
  3051. source: "./media/characters/rai/dragon.svg",
  3052. extra: 2498 / 2030,
  3053. bottom: 85.2 / 2584
  3054. },
  3055. form: "dragon",
  3056. default: true
  3057. },
  3058. maw: {
  3059. height: math.unit(1.69, "feet"),
  3060. name: "Maw",
  3061. image: {
  3062. source: "./media/characters/rai/maw.svg"
  3063. },
  3064. form: "anthro"
  3065. },
  3066. },
  3067. [
  3068. {
  3069. name: "Normal",
  3070. height: math.unit(7 + 2/12, "feet"),
  3071. form: "anthro"
  3072. },
  3073. {
  3074. name: "Big",
  3075. height: math.unit(11, "feet"),
  3076. form: "anthro"
  3077. },
  3078. {
  3079. name: "Minimacro",
  3080. height: math.unit(77, "feet"),
  3081. form: "anthro"
  3082. },
  3083. {
  3084. name: "Macro",
  3085. height: math.unit(302, "feet"),
  3086. default: true,
  3087. form: "anthro"
  3088. },
  3089. {
  3090. name: "Normal",
  3091. height: math.unit(9.5, "feet"),
  3092. form: "feral",
  3093. default: true
  3094. },
  3095. {
  3096. name: "Normal",
  3097. height: math.unit(23, "feet"),
  3098. form: "dragon",
  3099. default: true
  3100. }
  3101. ],
  3102. {
  3103. "anthro": {
  3104. name: "Anthro",
  3105. default: true
  3106. },
  3107. "feral": {
  3108. name: "Feral",
  3109. },
  3110. "dragon": {
  3111. name: "Dragon",
  3112. },
  3113. }
  3114. ))
  3115. characterMakers.push(() => makeCharacter(
  3116. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3117. {
  3118. frontDressed: {
  3119. height: math.unit(216, "feet"),
  3120. weight: math.unit(7000000, "lb"),
  3121. preyCapacity: math.unit(1321, "people"),
  3122. name: "Front (Dressed)",
  3123. image: {
  3124. source: "./media/characters/jazzy/front-dressed.svg",
  3125. extra: 2738 / 2651,
  3126. bottom: 41.8 / 2786
  3127. }
  3128. },
  3129. backDressed: {
  3130. height: math.unit(216, "feet"),
  3131. weight: math.unit(7000000, "lb"),
  3132. preyCapacity: math.unit(1321, "people"),
  3133. name: "Back (Dressed)",
  3134. image: {
  3135. source: "./media/characters/jazzy/back-dressed.svg",
  3136. extra: 2775 / 2673,
  3137. bottom: 36.8 / 2817
  3138. }
  3139. },
  3140. front: {
  3141. height: math.unit(216, "feet"),
  3142. weight: math.unit(7000000, "lb"),
  3143. preyCapacity: math.unit(1321, "people"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/jazzy/front.svg",
  3147. extra: 2738 / 2651,
  3148. bottom: 41.8 / 2786
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(216, "feet"),
  3153. weight: math.unit(7000000, "lb"),
  3154. preyCapacity: math.unit(1321, "people"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/jazzy/back.svg",
  3158. extra: 2775 / 2673,
  3159. bottom: 36.8 / 2817
  3160. }
  3161. },
  3162. maw: {
  3163. height: math.unit(20, "feet"),
  3164. name: "Maw",
  3165. image: {
  3166. source: "./media/characters/jazzy/maw.svg"
  3167. }
  3168. },
  3169. paws: {
  3170. height: math.unit(27.5, "feet"),
  3171. name: "Paws",
  3172. image: {
  3173. source: "./media/characters/jazzy/paws.svg"
  3174. }
  3175. },
  3176. eye: {
  3177. height: math.unit(4.4, "feet"),
  3178. name: "Eye",
  3179. image: {
  3180. source: "./media/characters/jazzy/eye.svg"
  3181. }
  3182. },
  3183. droneOffense: {
  3184. height: math.unit(9.5, "inches"),
  3185. name: "Drone (Offense)",
  3186. image: {
  3187. source: "./media/characters/jazzy/drone-offense.svg"
  3188. }
  3189. },
  3190. droneRecon: {
  3191. height: math.unit(9.5, "inches"),
  3192. name: "Drone (Recon)",
  3193. image: {
  3194. source: "./media/characters/jazzy/drone-recon.svg"
  3195. }
  3196. },
  3197. droneDefense: {
  3198. height: math.unit(9.5, "inches"),
  3199. name: "Drone (Defense)",
  3200. image: {
  3201. source: "./media/characters/jazzy/drone-defense.svg"
  3202. }
  3203. },
  3204. },
  3205. [
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(216, "feet"),
  3209. default: true
  3210. },
  3211. ]
  3212. ))
  3213. characterMakers.push(() => makeCharacter(
  3214. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3215. {
  3216. front: {
  3217. height: math.unit(9 + 6/12, "feet"),
  3218. weight: math.unit(700, "lb"),
  3219. name: "Front",
  3220. image: {
  3221. source: "./media/characters/flamm/front.svg",
  3222. extra: 1736/1596,
  3223. bottom: 93/1829
  3224. }
  3225. },
  3226. buff: {
  3227. height: math.unit(9 + 6/12, "feet"),
  3228. weight: math.unit(950, "lb"),
  3229. name: "Buff",
  3230. image: {
  3231. source: "./media/characters/flamm/buff.svg",
  3232. extra: 3018/2874,
  3233. bottom: 221/3239
  3234. }
  3235. },
  3236. },
  3237. [
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(9.5, "feet")
  3241. },
  3242. {
  3243. name: "Macro",
  3244. height: math.unit(200, "feet"),
  3245. default: true
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(5 + 3/12, "feet"),
  3254. weight: math.unit(60, "kg"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/zephiro/front.svg",
  3258. extra: 1873/1761,
  3259. bottom: 147/2020
  3260. }
  3261. },
  3262. side: {
  3263. height: math.unit(5 + 3/12, "feet"),
  3264. weight: math.unit(60, "kg"),
  3265. name: "Side",
  3266. image: {
  3267. source: "./media/characters/zephiro/side.svg",
  3268. extra: 1929/1827,
  3269. bottom: 65/1994
  3270. }
  3271. },
  3272. back: {
  3273. height: math.unit(5 + 3/12, "feet"),
  3274. weight: math.unit(60, "kg"),
  3275. name: "Back",
  3276. image: {
  3277. source: "./media/characters/zephiro/back.svg",
  3278. extra: 1926/1816,
  3279. bottom: 41/1967
  3280. }
  3281. },
  3282. hand: {
  3283. height: math.unit(0.68, "feet"),
  3284. name: "Hand",
  3285. image: {
  3286. source: "./media/characters/zephiro/hand.svg"
  3287. }
  3288. },
  3289. paw: {
  3290. height: math.unit(1, "feet"),
  3291. name: "Paw",
  3292. image: {
  3293. source: "./media/characters/zephiro/paw.svg"
  3294. }
  3295. },
  3296. beans: {
  3297. height: math.unit(0.93, "feet"),
  3298. name: "Beans",
  3299. image: {
  3300. source: "./media/characters/zephiro/beans.svg"
  3301. }
  3302. },
  3303. },
  3304. [
  3305. {
  3306. name: "Micro",
  3307. height: math.unit(3, "inches")
  3308. },
  3309. {
  3310. name: "Normal",
  3311. height: math.unit(5 + 3 / 12, "feet"),
  3312. default: true
  3313. },
  3314. {
  3315. name: "Macro",
  3316. height: math.unit(118, "feet")
  3317. },
  3318. ]
  3319. ))
  3320. characterMakers.push(() => makeCharacter(
  3321. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3322. {
  3323. front: {
  3324. height: math.unit(5, "feet"),
  3325. weight: math.unit(90, "kg"),
  3326. preyCapacity: math.unit(14, "people"),
  3327. name: "Front",
  3328. image: {
  3329. source: "./media/characters/fory/front.svg",
  3330. extra: 2862 / 2674,
  3331. bottom: 180 / 3043.8
  3332. },
  3333. form: "weaselbun",
  3334. default: true,
  3335. extraAttributes: {
  3336. "pawSize": {
  3337. name: "Paw Size",
  3338. power: 2,
  3339. type: "area",
  3340. base: math.unit(0.1596, "m^2")
  3341. },
  3342. "pawLength": {
  3343. name: "Paw Length",
  3344. power: 1,
  3345. type: "length",
  3346. base: math.unit(0.7, "m")
  3347. }
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(5, "feet"),
  3352. weight: math.unit(90, "kg"),
  3353. preyCapacity: math.unit(14, "people"),
  3354. name: "Back",
  3355. image: {
  3356. source: "./media/characters/fory/back.svg",
  3357. extra: 1790/1672,
  3358. bottom: 84/1874
  3359. },
  3360. form: "weaselbun",
  3361. extraAttributes: {
  3362. "pawSize": {
  3363. name: "Paw Size",
  3364. power: 2,
  3365. type: "area",
  3366. base: math.unit(0.1596, "m^2")
  3367. },
  3368. "pawLength": {
  3369. name: "Paw Length",
  3370. power: 1,
  3371. type: "length",
  3372. base: math.unit(0.7, "m")
  3373. }
  3374. }
  3375. },
  3376. paw: {
  3377. height: math.unit(2.14, "feet"),
  3378. name: "Paw",
  3379. image: {
  3380. source: "./media/characters/fory/paw.svg"
  3381. },
  3382. form: "weaselbun",
  3383. extraAttributes: {
  3384. "pawSize": {
  3385. name: "Paw Size",
  3386. power: 2,
  3387. type: "area",
  3388. base: math.unit(0.1596, "m^2")
  3389. },
  3390. "pawLength": {
  3391. name: "Paw Length",
  3392. power: 1,
  3393. type: "length",
  3394. base: math.unit(0.48, "m")
  3395. }
  3396. }
  3397. },
  3398. bunBack: {
  3399. height: math.unit(3, "feet"),
  3400. weight: math.unit(20, "kg"),
  3401. preyCapacity: math.unit(3, "people"),
  3402. name: "Back",
  3403. image: {
  3404. source: "./media/characters/fory/bun-back.svg",
  3405. extra: 1749/1564,
  3406. bottom: 246/1995
  3407. },
  3408. form: "bun",
  3409. default: true,
  3410. extraAttributes: {
  3411. "pawSize": {
  3412. name: "Paw Size",
  3413. power: 2,
  3414. type: "area",
  3415. base: math.unit(0.072, "m^2")
  3416. },
  3417. "pawLength": {
  3418. name: "Paw Length",
  3419. power: 1,
  3420. type: "length",
  3421. base: math.unit(0.45, "m")
  3422. }
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(5, "feet"),
  3430. form: "weaselbun"
  3431. },
  3432. {
  3433. name: "Macro",
  3434. height: math.unit(50, "feet"),
  3435. default: true,
  3436. form: "weaselbun"
  3437. },
  3438. {
  3439. name: "Megamacro",
  3440. height: math.unit(10, "miles"),
  3441. form: "weaselbun"
  3442. },
  3443. {
  3444. name: "Gigamacro",
  3445. height: math.unit(5, "earths"),
  3446. form: "weaselbun"
  3447. },
  3448. {
  3449. name: "Normal",
  3450. height: math.unit(3, "feet"),
  3451. default: true,
  3452. form: "bun"
  3453. },
  3454. {
  3455. name: "Fun-Size",
  3456. height: math.unit(12, "feet"),
  3457. form: "bun"
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(100, "feet"),
  3462. form: "bun"
  3463. },
  3464. {
  3465. name: "Planetary",
  3466. height: math.unit(3, "earths"),
  3467. form: "bun"
  3468. },
  3469. ],
  3470. {
  3471. "weaselbun": {
  3472. name: "Weaselbun",
  3473. default: true
  3474. },
  3475. "bun": {
  3476. name: "Bun",
  3477. },
  3478. }
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(7, "feet"),
  3485. weight: math.unit(90, "kg"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/kurrikage/front.svg",
  3489. extra: 1845/1733,
  3490. bottom: 119/1964
  3491. }
  3492. },
  3493. back: {
  3494. height: math.unit(7, "feet"),
  3495. weight: math.unit(90, "kg"),
  3496. name: "Back",
  3497. image: {
  3498. source: "./media/characters/kurrikage/back.svg",
  3499. extra: 1790/1677,
  3500. bottom: 61/1851
  3501. }
  3502. },
  3503. dressed: {
  3504. height: math.unit(7, "feet"),
  3505. weight: math.unit(90, "kg"),
  3506. name: "Dressed",
  3507. image: {
  3508. source: "./media/characters/kurrikage/dressed.svg",
  3509. extra: 1845/1733,
  3510. bottom: 119/1964
  3511. }
  3512. },
  3513. foot: {
  3514. height: math.unit(1.5, "feet"),
  3515. name: "Foot",
  3516. image: {
  3517. source: "./media/characters/kurrikage/foot.svg"
  3518. }
  3519. },
  3520. staff: {
  3521. height: math.unit(6.7, "feet"),
  3522. name: "Staff",
  3523. image: {
  3524. source: "./media/characters/kurrikage/staff.svg"
  3525. }
  3526. },
  3527. peek: {
  3528. height: math.unit(1.05, "feet"),
  3529. name: "Peeking",
  3530. image: {
  3531. source: "./media/characters/kurrikage/peek.svg",
  3532. bottom: 0.08
  3533. }
  3534. },
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(12, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Big",
  3544. height: math.unit(20, "feet")
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(500, "feet")
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(20, "miles")
  3553. },
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(6, "feet"),
  3561. weight: math.unit(75, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/shingo/front.svg",
  3565. extra: 1900/1825,
  3566. bottom: 82/1982
  3567. }
  3568. },
  3569. side: {
  3570. height: math.unit(6, "feet"),
  3571. weight: math.unit(75, "kg"),
  3572. name: "Side",
  3573. image: {
  3574. source: "./media/characters/shingo/side.svg",
  3575. extra: 1930/1865,
  3576. bottom: 16/1946
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(6, "feet"),
  3581. weight: math.unit(75, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/shingo/back.svg",
  3585. extra: 1922/1852,
  3586. bottom: 16/1938
  3587. }
  3588. },
  3589. frontDressed: {
  3590. height: math.unit(6, "feet"),
  3591. weight: math.unit(150, "lb"),
  3592. name: "Front-dressed",
  3593. image: {
  3594. source: "./media/characters/shingo/front-dressed.svg",
  3595. extra: 1900/1825,
  3596. bottom: 82/1982
  3597. }
  3598. },
  3599. paw: {
  3600. height: math.unit(1.29, "feet"),
  3601. name: "Paw",
  3602. image: {
  3603. source: "./media/characters/shingo/paw.svg"
  3604. }
  3605. },
  3606. hand: {
  3607. height: math.unit(1.07, "feet"),
  3608. name: "Hand",
  3609. image: {
  3610. source: "./media/characters/shingo/hand.svg"
  3611. }
  3612. },
  3613. frontAlt: {
  3614. height: math.unit(6, "feet"),
  3615. weight: math.unit(75, "kg"),
  3616. name: "Front (Alt)",
  3617. image: {
  3618. source: "./media/characters/shingo/front-alt.svg",
  3619. extra: 3511 / 3338,
  3620. bottom: 0.005
  3621. }
  3622. },
  3623. frontAlt2: {
  3624. height: math.unit(6, "feet"),
  3625. weight: math.unit(75, "kg"),
  3626. name: "Front (Alt 2)",
  3627. image: {
  3628. source: "./media/characters/shingo/front-alt-2.svg",
  3629. extra: 706/681,
  3630. bottom: 11/717
  3631. }
  3632. },
  3633. pawAlt: {
  3634. height: math.unit(1, "feet"),
  3635. name: "Paw (Alt)",
  3636. image: {
  3637. source: "./media/characters/shingo/paw-alt.svg"
  3638. }
  3639. },
  3640. },
  3641. [
  3642. {
  3643. name: "Micro",
  3644. height: math.unit(4, "inches")
  3645. },
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(6, "feet"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(108, "feet")
  3654. },
  3655. {
  3656. name: "Macro+",
  3657. height: math.unit(1500, "feet")
  3658. },
  3659. ]
  3660. ))
  3661. characterMakers.push(() => makeCharacter(
  3662. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3663. {
  3664. side: {
  3665. height: math.unit(6, "feet"),
  3666. weight: math.unit(75, "kg"),
  3667. name: "Side",
  3668. image: {
  3669. source: "./media/characters/aigey/side.svg"
  3670. }
  3671. },
  3672. },
  3673. [
  3674. {
  3675. name: "Macro",
  3676. height: math.unit(200, "feet"),
  3677. default: true
  3678. },
  3679. {
  3680. name: "Megamacro",
  3681. height: math.unit(100, "miles")
  3682. },
  3683. ]
  3684. )
  3685. )
  3686. characterMakers.push(() => makeCharacter(
  3687. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3688. {
  3689. front: {
  3690. height: math.unit(5 + 5 / 12, "feet"),
  3691. weight: math.unit(75, "kg"),
  3692. name: "Front",
  3693. image: {
  3694. source: "./media/characters/natasha/front.svg",
  3695. extra: 859 / 824,
  3696. bottom: 23 / 879.6
  3697. }
  3698. },
  3699. frontNsfw: {
  3700. height: math.unit(5 + 5 / 12, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Front (NSFW)",
  3703. image: {
  3704. source: "./media/characters/natasha/front-nsfw.svg",
  3705. extra: 859 / 824,
  3706. bottom: 23 / 879.6
  3707. }
  3708. },
  3709. frontErect: {
  3710. height: math.unit(5 + 5 / 12, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Front (Erect)",
  3713. image: {
  3714. source: "./media/characters/natasha/front-erect.svg",
  3715. extra: 859 / 824,
  3716. bottom: 23 / 879.6
  3717. }
  3718. },
  3719. back: {
  3720. height: math.unit(5 + 5 / 12, "feet"),
  3721. weight: math.unit(75, "kg"),
  3722. name: "Back",
  3723. image: {
  3724. source: "./media/characters/natasha/back.svg",
  3725. extra: 887.9 / 852.6,
  3726. bottom: 9.7 / 896.4
  3727. }
  3728. },
  3729. backAlt: {
  3730. height: math.unit(5 + 5 / 12, "feet"),
  3731. weight: math.unit(75, "kg"),
  3732. name: "Back (Alt)",
  3733. image: {
  3734. source: "./media/characters/natasha/back-alt.svg",
  3735. extra: 1236.7 / 1192,
  3736. bottom: 22.3 / 1258.2
  3737. }
  3738. },
  3739. dick: {
  3740. height: math.unit(1.772, "feet"),
  3741. name: "Dick",
  3742. image: {
  3743. source: "./media/characters/natasha/dick.svg"
  3744. }
  3745. },
  3746. paw: {
  3747. height: math.unit(0.250, "meters"),
  3748. name: "Paw",
  3749. image: {
  3750. source: "./media/characters/natasha/paw.svg"
  3751. },
  3752. extraAttributes: {
  3753. "toeSize": {
  3754. name: "Toe Size",
  3755. power: 2,
  3756. type: "area",
  3757. base: math.unit(0.0024, "m^2")
  3758. },
  3759. "padSize": {
  3760. name: "Pad Size",
  3761. power: 2,
  3762. type: "area",
  3763. base: math.unit(0.00889, "m^2")
  3764. },
  3765. "pawSize": {
  3766. name: "Paw Size",
  3767. power: 2,
  3768. type: "area",
  3769. base: math.unit(0.023667, "m^2")
  3770. },
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "Shortstack",
  3777. height: math.unit(3, "feet"),
  3778. default: true
  3779. },
  3780. {
  3781. name: "Normal",
  3782. height: math.unit(5 + 5 / 12, "feet")
  3783. },
  3784. {
  3785. name: "Large",
  3786. height: math.unit(12, "feet")
  3787. },
  3788. {
  3789. name: "Macro",
  3790. height: math.unit(100, "feet")
  3791. },
  3792. {
  3793. name: "Macro+",
  3794. height: math.unit(260, "feet")
  3795. },
  3796. {
  3797. name: "Macro++",
  3798. height: math.unit(1, "mile")
  3799. },
  3800. ]
  3801. ))
  3802. characterMakers.push(() => makeCharacter(
  3803. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3804. {
  3805. front: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Front",
  3809. image: {
  3810. source: "./media/characters/malik/front.svg",
  3811. extra: 1750/1561,
  3812. bottom: 80/1830
  3813. },
  3814. extraAttributes: {
  3815. "toeSize": {
  3816. name: "Toe Size",
  3817. power: 2,
  3818. type: "area",
  3819. base: math.unit(0.0159, "m^2")
  3820. },
  3821. "pawSize": {
  3822. name: "Paw Size",
  3823. power: 2,
  3824. type: "area",
  3825. base: math.unit(0.09834, "m^2")
  3826. },
  3827. }
  3828. },
  3829. side: {
  3830. height: math.unit(6, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Side",
  3833. image: {
  3834. source: "./media/characters/malik/side.svg",
  3835. extra: 1802/1685,
  3836. bottom: 42/1844
  3837. },
  3838. extraAttributes: {
  3839. "toeSize": {
  3840. name: "Toe Size",
  3841. power: 2,
  3842. type: "area",
  3843. base: math.unit(0.0159, "m^2")
  3844. },
  3845. "pawSize": {
  3846. name: "Paw Size",
  3847. power: 2,
  3848. type: "area",
  3849. base: math.unit(0.09834, "m^2")
  3850. },
  3851. }
  3852. },
  3853. back: {
  3854. height: math.unit(6, "feet"),
  3855. weight: math.unit(75, "kg"),
  3856. name: "Back",
  3857. image: {
  3858. source: "./media/characters/malik/back.svg",
  3859. extra: 1803/1607,
  3860. bottom: 33/1836
  3861. },
  3862. extraAttributes: {
  3863. "toeSize": {
  3864. name: "Toe Size",
  3865. power: 2,
  3866. type: "area",
  3867. base: math.unit(0.0159, "m^2")
  3868. },
  3869. "pawSize": {
  3870. name: "Paw Size",
  3871. power: 2,
  3872. type: "area",
  3873. base: math.unit(0.09834, "m^2")
  3874. },
  3875. }
  3876. },
  3877. },
  3878. [
  3879. {
  3880. name: "Macro",
  3881. height: math.unit(156, "feet"),
  3882. default: true
  3883. },
  3884. {
  3885. name: "Macro+",
  3886. height: math.unit(1188, "feet")
  3887. },
  3888. ]
  3889. ))
  3890. characterMakers.push(() => makeCharacter(
  3891. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3892. {
  3893. front: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(75, "kg"),
  3896. name: "Front",
  3897. image: {
  3898. source: "./media/characters/sefer/front.svg",
  3899. extra: 848 / 659,
  3900. bottom: 28.3 / 876.442
  3901. }
  3902. },
  3903. back: {
  3904. height: math.unit(6, "feet"),
  3905. weight: math.unit(75, "kg"),
  3906. name: "Back",
  3907. image: {
  3908. source: "./media/characters/sefer/back.svg",
  3909. extra: 864 / 695,
  3910. bottom: 10 / 871
  3911. }
  3912. },
  3913. frontDressed: {
  3914. height: math.unit(6, "feet"),
  3915. weight: math.unit(75, "kg"),
  3916. name: "Dressed",
  3917. image: {
  3918. source: "./media/characters/sefer/dressed.svg",
  3919. extra: 839 / 653,
  3920. bottom: 37.6 / 878
  3921. }
  3922. },
  3923. },
  3924. [
  3925. {
  3926. name: "Normal",
  3927. height: math.unit(6, "feet"),
  3928. default: true
  3929. },
  3930. {
  3931. name: "Big",
  3932. height: math.unit(8, "meters")
  3933. },
  3934. ]
  3935. ))
  3936. characterMakers.push(() => makeCharacter(
  3937. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3938. {
  3939. body: {
  3940. height: math.unit(2.2428, "meter"),
  3941. weight: math.unit(124.738, "kg"),
  3942. name: "Body",
  3943. image: {
  3944. extra: 1225 / 1050,
  3945. source: "./media/characters/north/front.svg"
  3946. }
  3947. }
  3948. },
  3949. [
  3950. {
  3951. name: "Micro",
  3952. height: math.unit(4, "inches")
  3953. },
  3954. {
  3955. name: "Macro",
  3956. height: math.unit(63, "meters")
  3957. },
  3958. {
  3959. name: "Megamacro",
  3960. height: math.unit(101, "miles"),
  3961. default: true
  3962. }
  3963. ]
  3964. ))
  3965. characterMakers.push(() => makeCharacter(
  3966. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3967. {
  3968. angled: {
  3969. height: math.unit(4, "meter"),
  3970. weight: math.unit(150, "kg"),
  3971. name: "Angled",
  3972. image: {
  3973. source: "./media/characters/talan/angled-sfw.svg",
  3974. bottom: 29 / 3734
  3975. }
  3976. },
  3977. angledNsfw: {
  3978. height: math.unit(4, "meter"),
  3979. weight: math.unit(150, "kg"),
  3980. name: "Angled (NSFW)",
  3981. image: {
  3982. source: "./media/characters/talan/angled-nsfw.svg",
  3983. bottom: 29 / 3734
  3984. }
  3985. },
  3986. frontNsfw: {
  3987. height: math.unit(4, "meter"),
  3988. weight: math.unit(150, "kg"),
  3989. name: "Front (NSFW)",
  3990. image: {
  3991. source: "./media/characters/talan/front-nsfw.svg",
  3992. bottom: 29 / 3734
  3993. }
  3994. },
  3995. sideNsfw: {
  3996. height: math.unit(4, "meter"),
  3997. weight: math.unit(150, "kg"),
  3998. name: "Side (NSFW)",
  3999. image: {
  4000. source: "./media/characters/talan/side-nsfw.svg",
  4001. bottom: 29 / 3734
  4002. }
  4003. },
  4004. back: {
  4005. height: math.unit(4, "meter"),
  4006. weight: math.unit(150, "kg"),
  4007. name: "Back",
  4008. image: {
  4009. source: "./media/characters/talan/back.svg"
  4010. }
  4011. },
  4012. dickBottom: {
  4013. height: math.unit(0.621, "meter"),
  4014. name: "Dick (Bottom)",
  4015. image: {
  4016. source: "./media/characters/talan/dick-bottom.svg"
  4017. }
  4018. },
  4019. dickTop: {
  4020. height: math.unit(0.621, "meter"),
  4021. name: "Dick (Top)",
  4022. image: {
  4023. source: "./media/characters/talan/dick-top.svg"
  4024. }
  4025. },
  4026. dickSide: {
  4027. height: math.unit(0.305, "meter"),
  4028. name: "Dick (Side)",
  4029. image: {
  4030. source: "./media/characters/talan/dick-side.svg"
  4031. }
  4032. },
  4033. dickFront: {
  4034. height: math.unit(0.305, "meter"),
  4035. name: "Dick (Front)",
  4036. image: {
  4037. source: "./media/characters/talan/dick-front.svg"
  4038. }
  4039. },
  4040. },
  4041. [
  4042. {
  4043. name: "Normal",
  4044. height: math.unit(4, "meters")
  4045. },
  4046. {
  4047. name: "Macro",
  4048. height: math.unit(100, "meters")
  4049. },
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(2, "miles"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Gigamacro",
  4057. height: math.unit(5000, "miles")
  4058. },
  4059. {
  4060. name: "Teramacro",
  4061. height: math.unit(100, "parsecs")
  4062. }
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(2, "meter"),
  4070. weight: math.unit(90, "kg"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/gael'rathus/front.svg"
  4074. }
  4075. },
  4076. frontAlt: {
  4077. height: math.unit(2, "meter"),
  4078. weight: math.unit(90, "kg"),
  4079. name: "Front (alt)",
  4080. image: {
  4081. source: "./media/characters/gael'rathus/front-alt.svg"
  4082. }
  4083. },
  4084. frontAlt2: {
  4085. height: math.unit(2, "meter"),
  4086. weight: math.unit(90, "kg"),
  4087. name: "Front (alt 2)",
  4088. image: {
  4089. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4090. }
  4091. }
  4092. },
  4093. [
  4094. {
  4095. name: "Normal",
  4096. height: math.unit(9, "feet"),
  4097. default: true
  4098. },
  4099. {
  4100. name: "Large",
  4101. height: math.unit(25, "feet")
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(0.25, "miles")
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(10, "miles")
  4110. }
  4111. ]
  4112. ))
  4113. characterMakers.push(() => makeCharacter(
  4114. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4115. {
  4116. side: {
  4117. height: math.unit(2, "meter"),
  4118. weight: math.unit(140, "kg"),
  4119. name: "Side",
  4120. image: {
  4121. source: "./media/characters/sosha/side.svg",
  4122. extra: 1170/1006,
  4123. bottom: 94/1264
  4124. }
  4125. },
  4126. maw: {
  4127. height: math.unit(2.87, "feet"),
  4128. name: "Maw",
  4129. image: {
  4130. source: "./media/characters/sosha/maw.svg",
  4131. extra: 966/865,
  4132. bottom: 0/966
  4133. }
  4134. },
  4135. cooch: {
  4136. height: math.unit(5.6, "feet"),
  4137. name: "Cooch",
  4138. image: {
  4139. source: "./media/characters/sosha/cooch.svg"
  4140. }
  4141. },
  4142. },
  4143. [
  4144. {
  4145. name: "Normal",
  4146. height: math.unit(12, "feet"),
  4147. default: true
  4148. }
  4149. ]
  4150. ))
  4151. characterMakers.push(() => makeCharacter(
  4152. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4153. {
  4154. side: {
  4155. height: math.unit(5 + 5 / 12, "feet"),
  4156. weight: math.unit(170, "kg"),
  4157. name: "Side",
  4158. image: {
  4159. source: "./media/characters/runnola/side.svg",
  4160. extra: 741 / 448,
  4161. bottom: 0.05
  4162. }
  4163. },
  4164. },
  4165. [
  4166. {
  4167. name: "Small",
  4168. height: math.unit(3, "feet")
  4169. },
  4170. {
  4171. name: "Normal",
  4172. height: math.unit(5 + 5 / 12, "feet"),
  4173. default: true
  4174. },
  4175. {
  4176. name: "Big",
  4177. height: math.unit(10, "feet")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(50, "kg"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/kurribird/front.svg",
  4190. bottom: 0.015
  4191. }
  4192. },
  4193. frontAlt: {
  4194. height: math.unit(1.5, "meter"),
  4195. weight: math.unit(50, "kg"),
  4196. name: "Front (Alt)",
  4197. image: {
  4198. source: "./media/characters/kurribird/front-alt.svg",
  4199. extra: 1.45
  4200. }
  4201. },
  4202. },
  4203. [
  4204. {
  4205. name: "Normal",
  4206. height: math.unit(7, "feet")
  4207. },
  4208. {
  4209. name: "Big",
  4210. height: math.unit(12, "feet"),
  4211. default: true
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(1500, "feet")
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(2, "miles")
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4225. {
  4226. front: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(80, "kg"),
  4229. name: "Front",
  4230. image: {
  4231. source: "./media/characters/elbial/front.svg",
  4232. extra: 1643 / 1556,
  4233. bottom: 60.2 / 1696
  4234. }
  4235. },
  4236. side: {
  4237. height: math.unit(2, "meter"),
  4238. weight: math.unit(80, "kg"),
  4239. name: "Side",
  4240. image: {
  4241. source: "./media/characters/elbial/side.svg",
  4242. extra: 1601/1528,
  4243. bottom: 97/1698
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(2, "meter"),
  4248. weight: math.unit(80, "kg"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/elbial/back.svg",
  4252. extra: 1653/1569,
  4253. bottom: 20/1673
  4254. }
  4255. },
  4256. frontDressed: {
  4257. height: math.unit(2, "meter"),
  4258. weight: math.unit(80, "kg"),
  4259. name: "Front (Dressed)",
  4260. image: {
  4261. source: "./media/characters/elbial/front-dressed.svg",
  4262. extra: 1638/1569,
  4263. bottom: 70/1708
  4264. }
  4265. },
  4266. genitals: {
  4267. height: math.unit(2 / 3.367, "meter"),
  4268. name: "Genitals",
  4269. image: {
  4270. source: "./media/characters/elbial/genitals.svg"
  4271. }
  4272. },
  4273. },
  4274. [
  4275. {
  4276. name: "Large",
  4277. height: math.unit(100, "feet")
  4278. },
  4279. {
  4280. name: "Macro",
  4281. height: math.unit(500, "feet"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Megamacro",
  4286. height: math.unit(10, "miles")
  4287. },
  4288. {
  4289. name: "Gigamacro",
  4290. height: math.unit(25000, "miles")
  4291. },
  4292. {
  4293. name: "Full-Size",
  4294. height: math.unit(8000000, "gigaparsecs")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4300. {
  4301. front: {
  4302. height: math.unit(2, "meter"),
  4303. weight: math.unit(60, "kg"),
  4304. name: "Front",
  4305. image: {
  4306. source: "./media/characters/noah/front.svg"
  4307. }
  4308. },
  4309. talons: {
  4310. height: math.unit(0.315, "meter"),
  4311. name: "Talons",
  4312. image: {
  4313. source: "./media/characters/noah/talons.svg"
  4314. }
  4315. }
  4316. },
  4317. [
  4318. {
  4319. name: "Large",
  4320. height: math.unit(50, "feet")
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(750, "feet"),
  4325. default: true
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(50, "miles")
  4330. },
  4331. {
  4332. name: "Gigamacro",
  4333. height: math.unit(100000, "miles")
  4334. },
  4335. {
  4336. name: "Full-Size",
  4337. height: math.unit(3000000000, "miles")
  4338. }
  4339. ]
  4340. ))
  4341. characterMakers.push(() => makeCharacter(
  4342. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4343. {
  4344. front: {
  4345. height: math.unit(2, "meter"),
  4346. weight: math.unit(80, "kg"),
  4347. name: "Front",
  4348. image: {
  4349. source: "./media/characters/natalya/front.svg"
  4350. }
  4351. },
  4352. back: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Back",
  4356. image: {
  4357. source: "./media/characters/natalya/back.svg"
  4358. }
  4359. }
  4360. },
  4361. [
  4362. {
  4363. name: "Normal",
  4364. height: math.unit(150, "feet"),
  4365. default: true
  4366. },
  4367. {
  4368. name: "Megamacro",
  4369. height: math.unit(5, "miles")
  4370. },
  4371. {
  4372. name: "Full-Size",
  4373. height: math.unit(600, "kiloparsecs")
  4374. }
  4375. ]
  4376. ))
  4377. characterMakers.push(() => makeCharacter(
  4378. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4379. {
  4380. front: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(50, "kg"),
  4383. name: "Front",
  4384. image: {
  4385. source: "./media/characters/erestrebah/front.svg",
  4386. extra: 1262/1162,
  4387. bottom: 96/1358
  4388. }
  4389. },
  4390. back: {
  4391. height: math.unit(2, "meter"),
  4392. weight: math.unit(50, "kg"),
  4393. name: "Back",
  4394. image: {
  4395. source: "./media/characters/erestrebah/back.svg",
  4396. extra: 1257/1139,
  4397. bottom: 13/1270
  4398. }
  4399. },
  4400. wing: {
  4401. height: math.unit(2, "meter"),
  4402. weight: math.unit(50, "kg"),
  4403. name: "Wing",
  4404. image: {
  4405. source: "./media/characters/erestrebah/wing.svg",
  4406. extra: 1262/1162,
  4407. bottom: 96/1358
  4408. }
  4409. },
  4410. mouth: {
  4411. height: math.unit(0.39, "feet"),
  4412. name: "Mouth",
  4413. image: {
  4414. source: "./media/characters/erestrebah/mouth.svg"
  4415. }
  4416. }
  4417. },
  4418. [
  4419. {
  4420. name: "Normal",
  4421. height: math.unit(10, "feet")
  4422. },
  4423. {
  4424. name: "Large",
  4425. height: math.unit(50, "feet"),
  4426. default: true
  4427. },
  4428. {
  4429. name: "Macro",
  4430. height: math.unit(300, "feet")
  4431. },
  4432. {
  4433. name: "Macro+",
  4434. height: math.unit(750, "feet")
  4435. },
  4436. {
  4437. name: "Megamacro",
  4438. height: math.unit(3, "miles")
  4439. }
  4440. ]
  4441. ))
  4442. characterMakers.push(() => makeCharacter(
  4443. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4444. {
  4445. front: {
  4446. height: math.unit(2, "meter"),
  4447. weight: math.unit(80, "kg"),
  4448. name: "Front",
  4449. image: {
  4450. source: "./media/characters/jennifer/front.svg",
  4451. bottom: 0.11,
  4452. extra: 1.16
  4453. }
  4454. },
  4455. frontAlt: {
  4456. height: math.unit(2, "meter"),
  4457. weight: math.unit(80, "kg"),
  4458. name: "Front (Alt)",
  4459. image: {
  4460. source: "./media/characters/jennifer/front-alt.svg"
  4461. }
  4462. }
  4463. },
  4464. [
  4465. {
  4466. name: "Canon Height",
  4467. height: math.unit(120, "feet"),
  4468. default: true
  4469. },
  4470. {
  4471. name: "Macro+",
  4472. height: math.unit(300, "feet")
  4473. },
  4474. {
  4475. name: "Megamacro",
  4476. height: math.unit(20000, "feet")
  4477. }
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4482. {
  4483. front: {
  4484. height: math.unit(2, "meter"),
  4485. weight: math.unit(50, "kg"),
  4486. name: "Front",
  4487. image: {
  4488. source: "./media/characters/kalista/front.svg",
  4489. extra: 1314/1145,
  4490. bottom: 101/1415
  4491. }
  4492. },
  4493. back: {
  4494. height: math.unit(2, "meter"),
  4495. weight: math.unit(50, "kg"),
  4496. name: "Back",
  4497. image: {
  4498. source: "./media/characters/kalista/back.svg",
  4499. extra: 1366 / 1156,
  4500. bottom: 33.9 / 1362.78
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Uncomfortably Small",
  4507. height: math.unit(10, "feet")
  4508. },
  4509. {
  4510. name: "Small",
  4511. height: math.unit(30, "feet")
  4512. },
  4513. {
  4514. name: "Macro",
  4515. height: math.unit(100, "feet"),
  4516. default: true
  4517. },
  4518. {
  4519. name: "Macro+",
  4520. height: math.unit(2000, "feet")
  4521. },
  4522. {
  4523. name: "True Form",
  4524. height: math.unit(8924, "miles")
  4525. }
  4526. ]
  4527. ))
  4528. characterMakers.push(() => makeCharacter(
  4529. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4530. {
  4531. front: {
  4532. height: math.unit(2, "meter"),
  4533. weight: math.unit(120, "kg"),
  4534. name: "Front",
  4535. image: {
  4536. source: "./media/characters/ggv/front.svg"
  4537. }
  4538. },
  4539. side: {
  4540. height: math.unit(2, "meter"),
  4541. weight: math.unit(120, "kg"),
  4542. name: "Side",
  4543. image: {
  4544. source: "./media/characters/ggv/side.svg"
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Extremely Puny",
  4551. height: math.unit(9 + 5 / 12, "feet")
  4552. },
  4553. {
  4554. name: "Horribly Small",
  4555. height: math.unit(47.7, "miles"),
  4556. default: true
  4557. },
  4558. {
  4559. name: "Reasonably Sized",
  4560. height: math.unit(25000, "parsecs")
  4561. },
  4562. {
  4563. name: "Slightly Uncompressed",
  4564. height: math.unit(7.77e31, "parsecs")
  4565. },
  4566. {
  4567. name: "Omniversal",
  4568. height: math.unit(1e300, "meters")
  4569. },
  4570. ]
  4571. ))
  4572. characterMakers.push(() => makeCharacter(
  4573. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4574. {
  4575. front: {
  4576. height: math.unit(2, "meter"),
  4577. weight: math.unit(75, "lb"),
  4578. name: "Front",
  4579. image: {
  4580. source: "./media/characters/napalm/front.svg"
  4581. }
  4582. },
  4583. back: {
  4584. height: math.unit(2, "meter"),
  4585. weight: math.unit(75, "lb"),
  4586. name: "Back",
  4587. image: {
  4588. source: "./media/characters/napalm/back.svg"
  4589. }
  4590. }
  4591. },
  4592. [
  4593. {
  4594. name: "Standard",
  4595. height: math.unit(55, "feet"),
  4596. default: true
  4597. }
  4598. ]
  4599. ))
  4600. characterMakers.push(() => makeCharacter(
  4601. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4602. {
  4603. front: {
  4604. height: math.unit(7 + 5 / 6, "feet"),
  4605. weight: math.unit(325, "lb"),
  4606. name: "Front",
  4607. image: {
  4608. source: "./media/characters/asana/front.svg",
  4609. extra: 1133 / 1060,
  4610. bottom: 15.2 / 1148.6
  4611. }
  4612. },
  4613. back: {
  4614. height: math.unit(7 + 5 / 6, "feet"),
  4615. weight: math.unit(325, "lb"),
  4616. name: "Back",
  4617. image: {
  4618. source: "./media/characters/asana/back.svg",
  4619. extra: 1114 / 1043,
  4620. bottom: 5 / 1120
  4621. }
  4622. },
  4623. dressedDark: {
  4624. height: math.unit(7 + 5 / 6, "feet"),
  4625. weight: math.unit(325, "lb"),
  4626. name: "Dressed (Dark)",
  4627. image: {
  4628. source: "./media/characters/asana/dressed-dark.svg",
  4629. extra: 1133 / 1060,
  4630. bottom: 15.2 / 1148.6
  4631. }
  4632. },
  4633. dressedLight: {
  4634. height: math.unit(7 + 5 / 6, "feet"),
  4635. weight: math.unit(325, "lb"),
  4636. name: "Dressed (Light)",
  4637. image: {
  4638. source: "./media/characters/asana/dressed-light.svg",
  4639. extra: 1133 / 1060,
  4640. bottom: 15.2 / 1148.6
  4641. }
  4642. },
  4643. },
  4644. [
  4645. {
  4646. name: "Standard",
  4647. height: math.unit(7 + 5 / 6, "feet"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "Large",
  4652. height: math.unit(10, "meters")
  4653. },
  4654. {
  4655. name: "Macro",
  4656. height: math.unit(2500, "meters")
  4657. },
  4658. {
  4659. name: "Megamacro",
  4660. height: math.unit(5e6, "meters")
  4661. },
  4662. {
  4663. name: "Examacro",
  4664. height: math.unit(5e12, "lightyears")
  4665. },
  4666. {
  4667. name: "Max Size",
  4668. height: math.unit(1e31, "lightyears")
  4669. }
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(60, "kg"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/ebony/front.svg",
  4681. bottom: 0.03,
  4682. extra: 1045 / 810 + 0.03
  4683. }
  4684. },
  4685. side: {
  4686. height: math.unit(2, "meter"),
  4687. weight: math.unit(60, "kg"),
  4688. name: "Side",
  4689. image: {
  4690. source: "./media/characters/ebony/side.svg",
  4691. bottom: 0.03,
  4692. extra: 1045 / 810 + 0.03
  4693. }
  4694. },
  4695. back: {
  4696. height: math.unit(2, "meter"),
  4697. weight: math.unit(60, "kg"),
  4698. name: "Back",
  4699. image: {
  4700. source: "./media/characters/ebony/back.svg",
  4701. bottom: 0.01,
  4702. extra: 1045 / 810 + 0.01
  4703. }
  4704. },
  4705. },
  4706. [
  4707. // TODO check why I did this lol
  4708. {
  4709. name: "Standard",
  4710. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4711. default: true
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(200, "feet")
  4716. },
  4717. {
  4718. name: "Gigamacro",
  4719. height: math.unit(13000, "km")
  4720. }
  4721. ]
  4722. ))
  4723. characterMakers.push(() => makeCharacter(
  4724. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4725. {
  4726. front: {
  4727. height: math.unit(6, "feet"),
  4728. weight: math.unit(175, "lb"),
  4729. name: "Front",
  4730. image: {
  4731. source: "./media/characters/mountain/front.svg",
  4732. extra: 972 / 955,
  4733. bottom: 64 / 1036.6
  4734. }
  4735. },
  4736. back: {
  4737. height: math.unit(6, "feet"),
  4738. weight: math.unit(175, "lb"),
  4739. name: "Back",
  4740. image: {
  4741. source: "./media/characters/mountain/back.svg",
  4742. extra: 970 / 950,
  4743. bottom: 28.25 / 999
  4744. }
  4745. },
  4746. },
  4747. [
  4748. {
  4749. name: "Large",
  4750. height: math.unit(20, "meters")
  4751. },
  4752. {
  4753. name: "Macro",
  4754. height: math.unit(300, "meters")
  4755. },
  4756. {
  4757. name: "Gigamacro",
  4758. height: math.unit(10000, "km"),
  4759. default: true
  4760. },
  4761. {
  4762. name: "Examacro",
  4763. height: math.unit(10e9, "lightyears")
  4764. }
  4765. ]
  4766. ))
  4767. characterMakers.push(() => makeCharacter(
  4768. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4769. {
  4770. front: {
  4771. height: math.unit(8, "feet"),
  4772. weight: math.unit(500, "lb"),
  4773. name: "Front",
  4774. image: {
  4775. source: "./media/characters/rick/front.svg"
  4776. }
  4777. }
  4778. },
  4779. [
  4780. {
  4781. name: "Normal",
  4782. height: math.unit(8, "feet"),
  4783. default: true
  4784. },
  4785. {
  4786. name: "Macro",
  4787. height: math.unit(5, "km")
  4788. }
  4789. ]
  4790. ))
  4791. characterMakers.push(() => makeCharacter(
  4792. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4793. {
  4794. front: {
  4795. height: math.unit(8, "feet"),
  4796. weight: math.unit(120, "lb"),
  4797. name: "Front",
  4798. image: {
  4799. source: "./media/characters/ona/front.svg"
  4800. }
  4801. },
  4802. frontAlt: {
  4803. height: math.unit(8, "feet"),
  4804. weight: math.unit(120, "lb"),
  4805. name: "Front (Alt)",
  4806. image: {
  4807. source: "./media/characters/ona/front-alt.svg"
  4808. }
  4809. },
  4810. back: {
  4811. height: math.unit(8, "feet"),
  4812. weight: math.unit(120, "lb"),
  4813. name: "Back",
  4814. image: {
  4815. source: "./media/characters/ona/back.svg"
  4816. }
  4817. },
  4818. foot: {
  4819. height: math.unit(1.1, "feet"),
  4820. name: "Foot",
  4821. image: {
  4822. source: "./media/characters/ona/foot.svg"
  4823. }
  4824. }
  4825. },
  4826. [
  4827. {
  4828. name: "Megamacro",
  4829. height: math.unit(70, "km"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Gigamacro",
  4834. height: math.unit(681818, "miles")
  4835. },
  4836. {
  4837. name: "Examacro",
  4838. height: math.unit(3800000, "lightyears")
  4839. },
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4844. {
  4845. front: {
  4846. height: math.unit(12, "feet"),
  4847. weight: math.unit(3000, "lb"),
  4848. name: "Front",
  4849. image: {
  4850. source: "./media/characters/mech/front.svg",
  4851. extra: 2900 / 2770,
  4852. bottom: 110 / 3010
  4853. }
  4854. },
  4855. back: {
  4856. height: math.unit(12, "feet"),
  4857. weight: math.unit(3000, "lb"),
  4858. name: "Back",
  4859. image: {
  4860. source: "./media/characters/mech/back.svg",
  4861. extra: 3011 / 2890,
  4862. bottom: 94 / 3105
  4863. }
  4864. },
  4865. maw: {
  4866. height: math.unit(3.07, "feet"),
  4867. name: "Maw",
  4868. image: {
  4869. source: "./media/characters/mech/maw.svg"
  4870. }
  4871. },
  4872. head: {
  4873. height: math.unit(3.07, "feet"),
  4874. name: "Head",
  4875. image: {
  4876. source: "./media/characters/mech/head.svg"
  4877. }
  4878. },
  4879. dick: {
  4880. height: math.unit(1.43, "feet"),
  4881. name: "Dick",
  4882. image: {
  4883. source: "./media/characters/mech/dick.svg"
  4884. }
  4885. },
  4886. },
  4887. [
  4888. {
  4889. name: "Normal",
  4890. height: math.unit(12, "feet")
  4891. },
  4892. {
  4893. name: "Macro",
  4894. height: math.unit(300, "feet"),
  4895. default: true
  4896. },
  4897. {
  4898. name: "Macro+",
  4899. height: math.unit(1500, "feet")
  4900. },
  4901. ]
  4902. ))
  4903. characterMakers.push(() => makeCharacter(
  4904. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4905. {
  4906. front: {
  4907. height: math.unit(1.3, "meter"),
  4908. weight: math.unit(30, "kg"),
  4909. name: "Front",
  4910. image: {
  4911. source: "./media/characters/gregory/front.svg",
  4912. }
  4913. }
  4914. },
  4915. [
  4916. {
  4917. name: "Normal",
  4918. height: math.unit(1.3, "meter"),
  4919. default: true
  4920. },
  4921. {
  4922. name: "Macro",
  4923. height: math.unit(20, "meter")
  4924. }
  4925. ]
  4926. ))
  4927. characterMakers.push(() => makeCharacter(
  4928. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4929. {
  4930. front: {
  4931. height: math.unit(2.8, "meter"),
  4932. weight: math.unit(200, "kg"),
  4933. name: "Front",
  4934. image: {
  4935. source: "./media/characters/elory/front.svg",
  4936. }
  4937. }
  4938. },
  4939. [
  4940. {
  4941. name: "Normal",
  4942. height: math.unit(2.8, "meter"),
  4943. default: true
  4944. },
  4945. {
  4946. name: "Macro",
  4947. height: math.unit(38, "meter")
  4948. }
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(470, "feet"),
  4956. weight: math.unit(924, "tons"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/angelpatamon/front.svg",
  4960. }
  4961. }
  4962. },
  4963. [
  4964. {
  4965. name: "Normal",
  4966. height: math.unit(470, "feet"),
  4967. default: true
  4968. },
  4969. {
  4970. name: "Deity Size I",
  4971. height: math.unit(28651.2, "km")
  4972. },
  4973. {
  4974. name: "Deity Size II",
  4975. height: math.unit(171907.2, "km")
  4976. }
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4981. {
  4982. side: {
  4983. height: math.unit(7.2, "meter"),
  4984. weight: math.unit(8.2, "tons"),
  4985. name: "Side",
  4986. image: {
  4987. source: "./media/characters/cryae/side.svg",
  4988. extra: 3500 / 1500
  4989. }
  4990. }
  4991. },
  4992. [
  4993. {
  4994. name: "Normal",
  4995. height: math.unit(7.2, "meter"),
  4996. default: true
  4997. }
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5002. {
  5003. front: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(175, "lb"),
  5006. name: "Front",
  5007. image: {
  5008. source: "./media/characters/xera/front.svg",
  5009. extra: 2377 / 1972,
  5010. bottom: 75.5 / 2452
  5011. }
  5012. },
  5013. side: {
  5014. height: math.unit(6, "feet"),
  5015. weight: math.unit(175, "lb"),
  5016. name: "Side",
  5017. image: {
  5018. source: "./media/characters/xera/side.svg",
  5019. extra: 2345 / 2019,
  5020. bottom: 39.7 / 2384
  5021. }
  5022. },
  5023. back: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(175, "lb"),
  5026. name: "Back",
  5027. image: {
  5028. source: "./media/characters/xera/back.svg",
  5029. extra: 2095 / 1984,
  5030. bottom: 67 / 2166
  5031. }
  5032. },
  5033. },
  5034. [
  5035. {
  5036. name: "Small",
  5037. height: math.unit(10, "feet")
  5038. },
  5039. {
  5040. name: "Macro",
  5041. height: math.unit(500, "meters"),
  5042. default: true
  5043. },
  5044. {
  5045. name: "Macro+",
  5046. height: math.unit(10, "km")
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(25000, "km")
  5051. },
  5052. {
  5053. name: "Teramacro",
  5054. height: math.unit(3e6, "km")
  5055. }
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5060. {
  5061. front: {
  5062. height: math.unit(6, "feet"),
  5063. weight: math.unit(175, "lb"),
  5064. name: "Front",
  5065. image: {
  5066. source: "./media/characters/nebula/front.svg",
  5067. extra: 2566 / 2362,
  5068. bottom: 81 / 2644
  5069. }
  5070. }
  5071. },
  5072. [
  5073. {
  5074. name: "Small",
  5075. height: math.unit(4.5, "meters")
  5076. },
  5077. {
  5078. name: "Macro",
  5079. height: math.unit(1500, "meters"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Megamacro",
  5084. height: math.unit(150, "km")
  5085. },
  5086. {
  5087. name: "Gigamacro",
  5088. height: math.unit(27000, "km")
  5089. }
  5090. ]
  5091. ))
  5092. characterMakers.push(() => makeCharacter(
  5093. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5094. {
  5095. front: {
  5096. height: math.unit(6, "feet"),
  5097. weight: math.unit(225, "lb"),
  5098. name: "Front",
  5099. image: {
  5100. source: "./media/characters/abysgar/front.svg",
  5101. extra: 1739/1614,
  5102. bottom: 71/1810
  5103. }
  5104. },
  5105. frontNsfw: {
  5106. height: math.unit(6, "feet"),
  5107. weight: math.unit(225, "lb"),
  5108. name: "Front (NSFW)",
  5109. image: {
  5110. source: "./media/characters/abysgar/front-nsfw.svg",
  5111. extra: 1739/1614,
  5112. bottom: 71/1810
  5113. }
  5114. },
  5115. back: {
  5116. height: math.unit(4.6, "feet"),
  5117. weight: math.unit(225, "lb"),
  5118. name: "Back",
  5119. image: {
  5120. source: "./media/characters/abysgar/back.svg",
  5121. extra: 1384/1327,
  5122. bottom: 0/1384
  5123. }
  5124. },
  5125. head: {
  5126. height: math.unit(1.25, "feet"),
  5127. name: "Head",
  5128. image: {
  5129. source: "./media/characters/abysgar/head.svg",
  5130. extra: 669/569,
  5131. bottom: 0/669
  5132. }
  5133. },
  5134. },
  5135. [
  5136. {
  5137. name: "Small",
  5138. height: math.unit(4.5, "meters")
  5139. },
  5140. {
  5141. name: "Macro",
  5142. height: math.unit(1250, "meters"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Megamacro",
  5147. height: math.unit(125, "km")
  5148. },
  5149. {
  5150. name: "Gigamacro",
  5151. height: math.unit(26000, "km")
  5152. }
  5153. ]
  5154. ))
  5155. characterMakers.push(() => makeCharacter(
  5156. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5157. {
  5158. front: {
  5159. height: math.unit(6, "feet"),
  5160. weight: math.unit(180, "lb"),
  5161. name: "Front",
  5162. image: {
  5163. source: "./media/characters/yakuz/front.svg"
  5164. }
  5165. }
  5166. },
  5167. [
  5168. {
  5169. name: "Small",
  5170. height: math.unit(5, "meters")
  5171. },
  5172. {
  5173. name: "Macro",
  5174. height: math.unit(1500, "meters"),
  5175. default: true
  5176. },
  5177. {
  5178. name: "Megamacro",
  5179. height: math.unit(200, "km")
  5180. },
  5181. {
  5182. name: "Gigamacro",
  5183. height: math.unit(100000, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/mirova/front.svg",
  5196. extra: 3334 / 3071,
  5197. bottom: 42 / 3375.6
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Small",
  5204. height: math.unit(5, "meters")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(900, "meters"),
  5209. default: true
  5210. },
  5211. {
  5212. name: "Megamacro",
  5213. height: math.unit(135, "km")
  5214. },
  5215. {
  5216. name: "Gigamacro",
  5217. height: math.unit(20000, "km")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5223. {
  5224. side: {
  5225. height: math.unit(28.35, "feet"),
  5226. weight: math.unit(99.75, "tons"),
  5227. name: "Side",
  5228. image: {
  5229. source: "./media/characters/asana-mech/side.svg",
  5230. extra: 923 / 699,
  5231. bottom: 50 / 975
  5232. }
  5233. },
  5234. chaingun: {
  5235. height: math.unit(7, "feet"),
  5236. weight: math.unit(2400, "lb"),
  5237. name: "Chaingun",
  5238. image: {
  5239. source: "./media/characters/asana-mech/chaingun.svg"
  5240. }
  5241. },
  5242. laser: {
  5243. height: math.unit(7.12, "feet"),
  5244. weight: math.unit(2000, "lb"),
  5245. name: "Laser",
  5246. image: {
  5247. source: "./media/characters/asana-mech/laser.svg"
  5248. }
  5249. },
  5250. },
  5251. [
  5252. {
  5253. name: "Normal",
  5254. height: math.unit(28.35, "feet"),
  5255. default: true
  5256. },
  5257. {
  5258. name: "Macro",
  5259. height: math.unit(2500, "feet")
  5260. },
  5261. {
  5262. name: "Megamacro",
  5263. height: math.unit(25, "miles")
  5264. },
  5265. {
  5266. name: "Examacro",
  5267. height: math.unit(6e8, "lightyears")
  5268. },
  5269. ]
  5270. ))
  5271. characterMakers.push(() => makeCharacter(
  5272. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5273. {
  5274. front: {
  5275. height: math.unit(5, "meters"),
  5276. weight: math.unit(1000, "kg"),
  5277. name: "Front",
  5278. image: {
  5279. source: "./media/characters/asche/front.svg",
  5280. extra: 1258 / 1190,
  5281. bottom: 47 / 1305
  5282. }
  5283. },
  5284. frontUnderwear: {
  5285. height: math.unit(5, "meters"),
  5286. weight: math.unit(1000, "kg"),
  5287. name: "Front (Underwear)",
  5288. image: {
  5289. source: "./media/characters/asche/front-underwear.svg",
  5290. extra: 1258 / 1190,
  5291. bottom: 47 / 1305
  5292. }
  5293. },
  5294. frontDressed: {
  5295. height: math.unit(5, "meters"),
  5296. weight: math.unit(1000, "kg"),
  5297. name: "Front (Dressed)",
  5298. image: {
  5299. source: "./media/characters/asche/front-dressed.svg",
  5300. extra: 1258 / 1190,
  5301. bottom: 47 / 1305
  5302. }
  5303. },
  5304. frontArmor: {
  5305. height: math.unit(5, "meters"),
  5306. weight: math.unit(1000, "kg"),
  5307. name: "Front (Armored)",
  5308. image: {
  5309. source: "./media/characters/asche/front-armored.svg",
  5310. extra: 1374 / 1308,
  5311. bottom: 23 / 1397
  5312. }
  5313. },
  5314. mp724: {
  5315. height: math.unit(0.96, "meters"),
  5316. weight: math.unit(38, "kg"),
  5317. name: "H&K MP724",
  5318. image: {
  5319. source: "./media/characters/asche/h&k-mp724.svg"
  5320. }
  5321. },
  5322. side: {
  5323. height: math.unit(5, "meters"),
  5324. weight: math.unit(1000, "kg"),
  5325. name: "Side",
  5326. image: {
  5327. source: "./media/characters/asche/side.svg",
  5328. extra: 1717 / 1609,
  5329. bottom: 0.005
  5330. }
  5331. },
  5332. back: {
  5333. height: math.unit(5, "meters"),
  5334. weight: math.unit(1000, "kg"),
  5335. name: "Back",
  5336. image: {
  5337. source: "./media/characters/asche/back.svg",
  5338. extra: 1570 / 1501
  5339. }
  5340. },
  5341. },
  5342. [
  5343. {
  5344. name: "DEFCON 5",
  5345. height: math.unit(5, "meters")
  5346. },
  5347. {
  5348. name: "DEFCON 4",
  5349. height: math.unit(500, "meters"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "DEFCON 3",
  5354. height: math.unit(5, "km")
  5355. },
  5356. {
  5357. name: "DEFCON 2",
  5358. height: math.unit(500, "km")
  5359. },
  5360. {
  5361. name: "DEFCON 1",
  5362. height: math.unit(500000, "km")
  5363. },
  5364. {
  5365. name: "DEFCON 0",
  5366. height: math.unit(3, "gigaparsecs")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(7, "feet"),
  5375. weight: math.unit(92.7, "kg"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/gale/front.svg",
  5379. extra: 977/919,
  5380. bottom: 105/1082
  5381. }
  5382. },
  5383. side: {
  5384. height: math.unit(6.7, "feet"),
  5385. weight: math.unit(92.7, "kg"),
  5386. name: "Side",
  5387. image: {
  5388. source: "./media/characters/gale/side.svg",
  5389. extra: 978/922,
  5390. bottom: 140/1118
  5391. }
  5392. },
  5393. back: {
  5394. height: math.unit(7, "feet"),
  5395. weight: math.unit(92.7, "kg"),
  5396. name: "Back",
  5397. image: {
  5398. source: "./media/characters/gale/back.svg",
  5399. extra: 966/920,
  5400. bottom: 61/1027
  5401. }
  5402. },
  5403. maw: {
  5404. height: math.unit(2.23, "feet"),
  5405. name: "Maw",
  5406. image: {
  5407. source: "./media/characters/gale/maw.svg"
  5408. }
  5409. },
  5410. foot: {
  5411. height: math.unit(2.1, "feet"),
  5412. name: "Foot",
  5413. image: {
  5414. source: "./media/characters/gale/foot.svg"
  5415. }
  5416. },
  5417. },
  5418. [
  5419. {
  5420. name: "Normal",
  5421. height: math.unit(7, "feet")
  5422. },
  5423. {
  5424. name: "Macro",
  5425. height: math.unit(150, "feet"),
  5426. default: true
  5427. },
  5428. {
  5429. name: "Macro+",
  5430. height: math.unit(300, "feet")
  5431. },
  5432. ]
  5433. ))
  5434. characterMakers.push(() => makeCharacter(
  5435. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5436. {
  5437. front: {
  5438. height: math.unit(5 + 10/12, "feet"),
  5439. weight: math.unit(67, "kg"),
  5440. name: "Front",
  5441. image: {
  5442. source: "./media/characters/draylen/front.svg",
  5443. extra: 832/777,
  5444. bottom: 85/917
  5445. }
  5446. }
  5447. },
  5448. [
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(5 + 10/12, "feet")
  5452. },
  5453. {
  5454. name: "Macro",
  5455. height: math.unit(150, "feet"),
  5456. default: true
  5457. }
  5458. ]
  5459. ))
  5460. characterMakers.push(() => makeCharacter(
  5461. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5462. {
  5463. front: {
  5464. height: math.unit(7 + 9 / 12, "feet"),
  5465. weight: math.unit(379, "lbs"),
  5466. name: "Front",
  5467. image: {
  5468. source: "./media/characters/chez/front.svg"
  5469. }
  5470. },
  5471. side: {
  5472. height: math.unit(7 + 9 / 12, "feet"),
  5473. weight: math.unit(379, "lbs"),
  5474. name: "Side",
  5475. image: {
  5476. source: "./media/characters/chez/side.svg"
  5477. }
  5478. }
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(7 + 9 / 12, "feet"),
  5484. default: true
  5485. },
  5486. {
  5487. name: "God King",
  5488. height: math.unit(9750000, "meters")
  5489. }
  5490. ]
  5491. ))
  5492. characterMakers.push(() => makeCharacter(
  5493. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5494. {
  5495. front: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(275, "lbs"),
  5498. name: "Front",
  5499. image: {
  5500. source: "./media/characters/kaylum/front.svg",
  5501. bottom: 0.01,
  5502. extra: 1166 / 1031
  5503. }
  5504. },
  5505. frontWingless: {
  5506. height: math.unit(6, "feet"),
  5507. weight: math.unit(275, "lbs"),
  5508. name: "Front (Wingless)",
  5509. image: {
  5510. source: "./media/characters/kaylum/front-wingless.svg",
  5511. bottom: 0.01,
  5512. extra: 1117 / 1031
  5513. }
  5514. }
  5515. },
  5516. [
  5517. {
  5518. name: "Normal",
  5519. height: math.unit(3.05, "meters")
  5520. },
  5521. {
  5522. name: "Master",
  5523. height: math.unit(5.5, "meters")
  5524. },
  5525. {
  5526. name: "Rampage",
  5527. height: math.unit(19, "meters")
  5528. },
  5529. {
  5530. name: "Macro Lite",
  5531. height: math.unit(37, "meters")
  5532. },
  5533. {
  5534. name: "Hyper Predator",
  5535. height: math.unit(61, "meters")
  5536. },
  5537. {
  5538. name: "Macro",
  5539. height: math.unit(138, "meters"),
  5540. default: true
  5541. }
  5542. ]
  5543. ))
  5544. characterMakers.push(() => makeCharacter(
  5545. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5546. {
  5547. front: {
  5548. height: math.unit(5 + 5 / 12, "feet"),
  5549. weight: math.unit(120, "lbs"),
  5550. name: "Front",
  5551. image: {
  5552. source: "./media/characters/geta/front.svg",
  5553. extra: 1003/933,
  5554. bottom: 21/1024
  5555. }
  5556. },
  5557. paw: {
  5558. height: math.unit(0.35, "feet"),
  5559. name: "Paw",
  5560. image: {
  5561. source: "./media/characters/geta/paw.svg"
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Micro",
  5568. height: math.unit(3, "inches"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Normal",
  5573. height: math.unit(5 + 5 / 12, "feet")
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6, "feet"),
  5582. weight: math.unit(300, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/tyrnn/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Main Height",
  5592. height: math.unit(355, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Fave. Height",
  5597. height: math.unit(2400, "feet")
  5598. }
  5599. ]
  5600. ))
  5601. characterMakers.push(() => makeCharacter(
  5602. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5603. {
  5604. front: {
  5605. height: math.unit(6, "feet"),
  5606. weight: math.unit(300, "lbs"),
  5607. name: "Front",
  5608. image: {
  5609. source: "./media/characters/appledectomy/front.svg"
  5610. }
  5611. }
  5612. },
  5613. [
  5614. {
  5615. name: "Macro",
  5616. height: math.unit(2500, "feet")
  5617. },
  5618. {
  5619. name: "Megamacro",
  5620. height: math.unit(50, "miles"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "Gigamacro",
  5625. height: math.unit(5000, "miles")
  5626. },
  5627. {
  5628. name: "Teramacro",
  5629. height: math.unit(250000, "miles")
  5630. },
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(200, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/vulpes/front.svg",
  5642. extra: 573 / 543,
  5643. bottom: 0.033
  5644. }
  5645. },
  5646. side: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(200, "lbs"),
  5649. name: "Side",
  5650. image: {
  5651. source: "./media/characters/vulpes/side.svg",
  5652. extra: 577 / 549,
  5653. bottom: 11 / 588
  5654. }
  5655. },
  5656. back: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(200, "lbs"),
  5659. name: "Back",
  5660. image: {
  5661. source: "./media/characters/vulpes/back.svg",
  5662. extra: 573 / 549,
  5663. bottom: 20 / 593
  5664. }
  5665. },
  5666. feet: {
  5667. height: math.unit(1.276, "feet"),
  5668. name: "Feet",
  5669. image: {
  5670. source: "./media/characters/vulpes/feet.svg"
  5671. }
  5672. },
  5673. maw: {
  5674. height: math.unit(1.18, "feet"),
  5675. name: "Maw",
  5676. image: {
  5677. source: "./media/characters/vulpes/maw.svg"
  5678. }
  5679. },
  5680. },
  5681. [
  5682. {
  5683. name: "Micro",
  5684. height: math.unit(2, "inches")
  5685. },
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(6.3, "feet")
  5689. },
  5690. {
  5691. name: "Macro",
  5692. height: math.unit(850, "feet")
  5693. },
  5694. {
  5695. name: "Megamacro",
  5696. height: math.unit(7500, "feet"),
  5697. default: true
  5698. },
  5699. {
  5700. name: "Gigamacro",
  5701. height: math.unit(570000, "miles")
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5707. {
  5708. front: {
  5709. height: math.unit(6, "feet"),
  5710. weight: math.unit(210, "lbs"),
  5711. name: "Front",
  5712. image: {
  5713. source: "./media/characters/rain-fallen/front.svg"
  5714. }
  5715. },
  5716. side: {
  5717. height: math.unit(6, "feet"),
  5718. weight: math.unit(210, "lbs"),
  5719. name: "Side",
  5720. image: {
  5721. source: "./media/characters/rain-fallen/side.svg"
  5722. }
  5723. },
  5724. back: {
  5725. height: math.unit(6, "feet"),
  5726. weight: math.unit(210, "lbs"),
  5727. name: "Back",
  5728. image: {
  5729. source: "./media/characters/rain-fallen/back.svg"
  5730. }
  5731. },
  5732. feral: {
  5733. height: math.unit(9, "feet"),
  5734. weight: math.unit(700, "lbs"),
  5735. name: "Feral",
  5736. image: {
  5737. source: "./media/characters/rain-fallen/feral.svg"
  5738. }
  5739. },
  5740. },
  5741. [
  5742. {
  5743. name: "Meddling with Mortals",
  5744. height: math.unit(8 + 8/12, "feet")
  5745. },
  5746. {
  5747. name: "Normal",
  5748. height: math.unit(5, "meter")
  5749. },
  5750. {
  5751. name: "Macro",
  5752. height: math.unit(150, "meter"),
  5753. default: true
  5754. },
  5755. {
  5756. name: "Megamacro",
  5757. height: math.unit(278e6, "meter")
  5758. },
  5759. {
  5760. name: "Gigamacro",
  5761. height: math.unit(2e9, "meter")
  5762. },
  5763. {
  5764. name: "Teramacro",
  5765. height: math.unit(8e12, "meter")
  5766. },
  5767. {
  5768. name: "Devourer",
  5769. height: math.unit(14, "zettameters")
  5770. },
  5771. {
  5772. name: "Scarlet King",
  5773. height: math.unit(18, "yottameters")
  5774. },
  5775. {
  5776. name: "Void",
  5777. height: math.unit(1e88, "yottameters")
  5778. }
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5783. {
  5784. standing: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(180, "lbs"),
  5787. name: "Standing",
  5788. image: {
  5789. source: "./media/characters/zaakira/standing.svg",
  5790. extra: 1599/1504,
  5791. bottom: 39/1638
  5792. }
  5793. },
  5794. laying: {
  5795. height: math.unit(3.3, "feet"),
  5796. weight: math.unit(180, "lbs"),
  5797. name: "Laying",
  5798. image: {
  5799. source: "./media/characters/zaakira/laying.svg"
  5800. }
  5801. },
  5802. },
  5803. [
  5804. {
  5805. name: "Normal",
  5806. height: math.unit(12, "feet")
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(279, "feet"),
  5811. default: true
  5812. }
  5813. ]
  5814. ))
  5815. characterMakers.push(() => makeCharacter(
  5816. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5817. {
  5818. femSfw: {
  5819. height: math.unit(8, "feet"),
  5820. weight: math.unit(350, "lb"),
  5821. name: "Fem",
  5822. image: {
  5823. source: "./media/characters/sigvald/fem-sfw.svg",
  5824. extra: 182 / 164,
  5825. bottom: 8.7 / 190.5
  5826. }
  5827. },
  5828. femNsfw: {
  5829. height: math.unit(8, "feet"),
  5830. weight: math.unit(350, "lb"),
  5831. name: "Fem (NSFW)",
  5832. image: {
  5833. source: "./media/characters/sigvald/fem-nsfw.svg",
  5834. extra: 182 / 164,
  5835. bottom: 8.7 / 190.5
  5836. }
  5837. },
  5838. maleNsfw: {
  5839. height: math.unit(8, "feet"),
  5840. weight: math.unit(350, "lb"),
  5841. name: "Male (NSFW)",
  5842. image: {
  5843. source: "./media/characters/sigvald/male-nsfw.svg",
  5844. extra: 182 / 164,
  5845. bottom: 8.7 / 190.5
  5846. }
  5847. },
  5848. hermNsfw: {
  5849. height: math.unit(8, "feet"),
  5850. weight: math.unit(350, "lb"),
  5851. name: "Herm (NSFW)",
  5852. image: {
  5853. source: "./media/characters/sigvald/herm-nsfw.svg",
  5854. extra: 182 / 164,
  5855. bottom: 8.7 / 190.5
  5856. }
  5857. },
  5858. dick: {
  5859. height: math.unit(2.36, "feet"),
  5860. name: "Dick",
  5861. image: {
  5862. source: "./media/characters/sigvald/dick.svg"
  5863. }
  5864. },
  5865. eye: {
  5866. height: math.unit(0.31, "feet"),
  5867. name: "Eye",
  5868. image: {
  5869. source: "./media/characters/sigvald/eye.svg"
  5870. }
  5871. },
  5872. mouth: {
  5873. height: math.unit(0.92, "feet"),
  5874. name: "Mouth",
  5875. image: {
  5876. source: "./media/characters/sigvald/mouth.svg"
  5877. }
  5878. },
  5879. paws: {
  5880. height: math.unit(2.2, "feet"),
  5881. name: "Paws",
  5882. image: {
  5883. source: "./media/characters/sigvald/paws.svg"
  5884. }
  5885. }
  5886. },
  5887. [
  5888. {
  5889. name: "Normal",
  5890. height: math.unit(8, "feet")
  5891. },
  5892. {
  5893. name: "Large",
  5894. height: math.unit(12, "feet")
  5895. },
  5896. {
  5897. name: "Larger",
  5898. height: math.unit(20, "feet")
  5899. },
  5900. {
  5901. name: "Macro",
  5902. height: math.unit(150, "feet")
  5903. },
  5904. {
  5905. name: "Macro+",
  5906. height: math.unit(200, "feet"),
  5907. default: true
  5908. },
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5913. {
  5914. side: {
  5915. height: math.unit(12, "feet"),
  5916. weight: math.unit(2000, "kg"),
  5917. name: "Side",
  5918. image: {
  5919. source: "./media/characters/scott/side.svg",
  5920. extra: 754 / 724,
  5921. bottom: 0.069
  5922. }
  5923. },
  5924. upright: {
  5925. height: math.unit(12, "feet"),
  5926. weight: math.unit(2000, "kg"),
  5927. name: "Upright",
  5928. image: {
  5929. source: "./media/characters/scott/upright.svg",
  5930. extra: 3881 / 3722,
  5931. bottom: 0.05
  5932. }
  5933. },
  5934. },
  5935. [
  5936. {
  5937. name: "Normal",
  5938. height: math.unit(12, "feet"),
  5939. default: true
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5945. {
  5946. side: {
  5947. height: math.unit(8, "meters"),
  5948. weight: math.unit(84755, "lbs"),
  5949. name: "Side",
  5950. image: {
  5951. source: "./media/characters/tobias/side.svg",
  5952. extra: 1474 / 1096,
  5953. bottom: 38.9 / 1513.1235
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Normal",
  5960. height: math.unit(8, "meters"),
  5961. default: true
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5967. {
  5968. front: {
  5969. height: math.unit(5.5, "feet"),
  5970. weight: math.unit(400, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/kieran/front.svg",
  5974. extra: 2694 / 2364,
  5975. bottom: 217 / 2908
  5976. }
  5977. },
  5978. side: {
  5979. height: math.unit(5.5, "feet"),
  5980. weight: math.unit(400, "lbs"),
  5981. name: "Side",
  5982. image: {
  5983. source: "./media/characters/kieran/side.svg",
  5984. extra: 875 / 777,
  5985. bottom: 84.6 / 959
  5986. }
  5987. },
  5988. },
  5989. [
  5990. {
  5991. name: "Normal",
  5992. height: math.unit(5.5, "feet"),
  5993. default: true
  5994. },
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5999. {
  6000. side: {
  6001. height: math.unit(2, "meters"),
  6002. weight: math.unit(70, "kg"),
  6003. name: "Side",
  6004. image: {
  6005. source: "./media/characters/sanya/side.svg",
  6006. bottom: 0.02,
  6007. extra: 1.02
  6008. }
  6009. },
  6010. },
  6011. [
  6012. {
  6013. name: "Small",
  6014. height: math.unit(2, "meters")
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(3, "meters")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(16, "meters"),
  6023. default: true
  6024. },
  6025. ]
  6026. ))
  6027. characterMakers.push(() => makeCharacter(
  6028. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6029. {
  6030. front: {
  6031. height: math.unit(2, "meters"),
  6032. weight: math.unit(120, "kg"),
  6033. name: "Front",
  6034. image: {
  6035. source: "./media/characters/miranda/front.svg",
  6036. extra: 195 / 185,
  6037. bottom: 10.9 / 206.5
  6038. }
  6039. },
  6040. back: {
  6041. height: math.unit(2, "meters"),
  6042. weight: math.unit(120, "kg"),
  6043. name: "Back",
  6044. image: {
  6045. source: "./media/characters/miranda/back.svg",
  6046. extra: 201 / 193,
  6047. bottom: 2.3 / 203.7
  6048. }
  6049. },
  6050. },
  6051. [
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(10, "feet"),
  6055. default: true
  6056. }
  6057. ]
  6058. ))
  6059. characterMakers.push(() => makeCharacter(
  6060. { name: "James", species: ["deer"], tags: ["anthro"] },
  6061. {
  6062. side: {
  6063. height: math.unit(2, "meters"),
  6064. weight: math.unit(100, "kg"),
  6065. name: "Front",
  6066. image: {
  6067. source: "./media/characters/james/front.svg",
  6068. extra: 10 / 8.5
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(8.5, "feet"),
  6076. default: true
  6077. }
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6082. {
  6083. side: {
  6084. height: math.unit(9.5, "feet"),
  6085. weight: math.unit(2500, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/heather/side.svg"
  6089. }
  6090. },
  6091. },
  6092. [
  6093. {
  6094. name: "Normal",
  6095. height: math.unit(9.5, "feet"),
  6096. default: true
  6097. }
  6098. ]
  6099. ))
  6100. characterMakers.push(() => makeCharacter(
  6101. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6102. {
  6103. side: {
  6104. height: math.unit(6.5, "feet"),
  6105. weight: math.unit(400, "lbs"),
  6106. name: "Side",
  6107. image: {
  6108. source: "./media/characters/lukas/side.svg",
  6109. extra: 7.25 / 6.5
  6110. }
  6111. },
  6112. },
  6113. [
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(6.5, "feet"),
  6117. default: true
  6118. }
  6119. ]
  6120. ))
  6121. characterMakers.push(() => makeCharacter(
  6122. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6123. {
  6124. side: {
  6125. height: math.unit(5, "feet"),
  6126. weight: math.unit(3000, "lbs"),
  6127. name: "Side",
  6128. image: {
  6129. source: "./media/characters/louise/side.svg"
  6130. }
  6131. },
  6132. },
  6133. [
  6134. {
  6135. name: "Normal",
  6136. height: math.unit(5, "feet"),
  6137. default: true
  6138. }
  6139. ]
  6140. ))
  6141. characterMakers.push(() => makeCharacter(
  6142. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6143. {
  6144. side: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(150, "lbs"),
  6147. name: "Side",
  6148. image: {
  6149. source: "./media/characters/ramona/side.svg",
  6150. extra: 871/854,
  6151. bottom: 41/912
  6152. }
  6153. },
  6154. },
  6155. [
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(6 + 4/12, "feet")
  6159. },
  6160. {
  6161. name: "Minimacro",
  6162. height: math.unit(5.3, "meters"),
  6163. default: true
  6164. },
  6165. {
  6166. name: "Macro",
  6167. height: math.unit(20, "stories")
  6168. },
  6169. {
  6170. name: "Macro+",
  6171. height: math.unit(50, "stories")
  6172. },
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6177. {
  6178. standing: {
  6179. height: math.unit(5.75, "feet"),
  6180. weight: math.unit(160, "lbs"),
  6181. name: "Standing",
  6182. image: {
  6183. source: "./media/characters/deerpuff/standing.svg",
  6184. extra: 682 / 624
  6185. }
  6186. },
  6187. sitting: {
  6188. height: math.unit(5.75 / 1.79, "feet"),
  6189. weight: math.unit(160, "lbs"),
  6190. name: "Sitting",
  6191. image: {
  6192. source: "./media/characters/deerpuff/sitting.svg",
  6193. bottom: 44 / 400,
  6194. extra: 1
  6195. }
  6196. },
  6197. taurLaying: {
  6198. height: math.unit(6, "feet"),
  6199. weight: math.unit(400, "lbs"),
  6200. name: "Taur (Laying)",
  6201. image: {
  6202. source: "./media/characters/deerpuff/taur-laying.svg"
  6203. }
  6204. },
  6205. },
  6206. [
  6207. {
  6208. name: "Puffball",
  6209. height: math.unit(6, "inches")
  6210. },
  6211. {
  6212. name: "Normalpuff",
  6213. height: math.unit(5.75, "feet")
  6214. },
  6215. {
  6216. name: "Macropuff",
  6217. height: math.unit(1500, "feet"),
  6218. default: true
  6219. },
  6220. {
  6221. name: "Megapuff",
  6222. height: math.unit(500, "miles")
  6223. },
  6224. {
  6225. name: "Gigapuff",
  6226. height: math.unit(250000, "miles")
  6227. },
  6228. {
  6229. name: "Omegapuff",
  6230. height: math.unit(1000, "lightyears")
  6231. },
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6236. {
  6237. stomping: {
  6238. height: math.unit(6, "feet"),
  6239. weight: math.unit(170, "lbs"),
  6240. name: "Stomping",
  6241. image: {
  6242. source: "./media/characters/vivian/stomping.svg"
  6243. }
  6244. },
  6245. sitting: {
  6246. height: math.unit(6 / 1.75, "feet"),
  6247. weight: math.unit(170, "lbs"),
  6248. name: "Sitting",
  6249. image: {
  6250. source: "./media/characters/vivian/sitting.svg",
  6251. bottom: 1 / 6.4,
  6252. extra: 1,
  6253. }
  6254. },
  6255. },
  6256. [
  6257. {
  6258. name: "Normal",
  6259. height: math.unit(7, "feet"),
  6260. default: true
  6261. },
  6262. {
  6263. name: "Macro",
  6264. height: math.unit(10, "stories")
  6265. },
  6266. {
  6267. name: "Macro+",
  6268. height: math.unit(30, "stories")
  6269. },
  6270. {
  6271. name: "Megamacro",
  6272. height: math.unit(10, "miles")
  6273. },
  6274. {
  6275. name: "Megamacro+",
  6276. height: math.unit(2750000, "meters")
  6277. },
  6278. ]
  6279. ))
  6280. characterMakers.push(() => makeCharacter(
  6281. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6282. {
  6283. front: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(160, "lbs"),
  6286. name: "Front",
  6287. image: {
  6288. source: "./media/characters/prince/front.svg",
  6289. extra: 1938/1682,
  6290. bottom: 45/1983
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(160, "lbs"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/prince/back.svg",
  6299. extra: 1955/1726,
  6300. bottom: 6/1961
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(7.75, "feet"),
  6308. default: true
  6309. },
  6310. {
  6311. name: "Not cute",
  6312. height: math.unit(17, "feet")
  6313. },
  6314. {
  6315. name: "I said NOT",
  6316. height: math.unit(91, "feet")
  6317. },
  6318. {
  6319. name: "Please stop",
  6320. height: math.unit(560, "feet")
  6321. },
  6322. {
  6323. name: "What have you done",
  6324. height: math.unit(2200, "feet")
  6325. },
  6326. {
  6327. name: "Deer God",
  6328. height: math.unit(3.6, "miles")
  6329. },
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6334. {
  6335. standing: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(300, "lbs"),
  6338. name: "Standing",
  6339. image: {
  6340. source: "./media/characters/psymon/standing.svg",
  6341. extra: 1888 / 1810,
  6342. bottom: 0.05
  6343. }
  6344. },
  6345. slithering: {
  6346. height: math.unit(6, "feet"),
  6347. weight: math.unit(300, "lbs"),
  6348. name: "Slithering",
  6349. image: {
  6350. source: "./media/characters/psymon/slithering.svg",
  6351. extra: 1330 / 1224
  6352. }
  6353. },
  6354. slitheringAlt: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(300, "lbs"),
  6357. name: "Slithering (Alt)",
  6358. image: {
  6359. source: "./media/characters/psymon/slithering-alt.svg",
  6360. extra: 1330 / 1224
  6361. }
  6362. },
  6363. },
  6364. [
  6365. {
  6366. name: "Normal",
  6367. height: math.unit(11.25, "feet"),
  6368. default: true
  6369. },
  6370. {
  6371. name: "Large",
  6372. height: math.unit(27, "feet")
  6373. },
  6374. {
  6375. name: "Giant",
  6376. height: math.unit(87, "feet")
  6377. },
  6378. {
  6379. name: "Macro",
  6380. height: math.unit(365, "feet")
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(3, "miles")
  6385. },
  6386. {
  6387. name: "World Serpent",
  6388. height: math.unit(8000, "miles")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(6, "feet"),
  6397. weight: math.unit(180, "lbs"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/daimos/front.svg",
  6401. extra: 4160 / 3897,
  6402. bottom: 0.021
  6403. }
  6404. }
  6405. },
  6406. [
  6407. {
  6408. name: "Normal",
  6409. height: math.unit(8, "feet"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Big Dog",
  6414. height: math.unit(22, "feet")
  6415. },
  6416. {
  6417. name: "Macro",
  6418. height: math.unit(127, "feet")
  6419. },
  6420. {
  6421. name: "Megamacro",
  6422. height: math.unit(3600, "feet")
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6428. {
  6429. side: {
  6430. height: math.unit(6, "feet"),
  6431. weight: math.unit(180, "lbs"),
  6432. name: "Side",
  6433. image: {
  6434. source: "./media/characters/blake/side.svg",
  6435. extra: 1212 / 1120,
  6436. bottom: 0.05
  6437. }
  6438. },
  6439. crouched: {
  6440. height: math.unit(6 * 0.57, "feet"),
  6441. weight: math.unit(180, "lbs"),
  6442. name: "Crouched",
  6443. image: {
  6444. source: "./media/characters/blake/crouched.svg",
  6445. extra: 840 / 587,
  6446. bottom: 0.04
  6447. }
  6448. },
  6449. bent: {
  6450. height: math.unit(6 * 0.75, "feet"),
  6451. weight: math.unit(180, "lbs"),
  6452. name: "Bent",
  6453. image: {
  6454. source: "./media/characters/blake/bent.svg",
  6455. extra: 592 / 544,
  6456. bottom: 0.035
  6457. }
  6458. },
  6459. },
  6460. [
  6461. {
  6462. name: "Normal",
  6463. height: math.unit(8 + 1 / 6, "feet"),
  6464. default: true
  6465. },
  6466. {
  6467. name: "Big Backside",
  6468. height: math.unit(37, "feet")
  6469. },
  6470. {
  6471. name: "Subway Shredder",
  6472. height: math.unit(72, "feet")
  6473. },
  6474. {
  6475. name: "City Carver",
  6476. height: math.unit(1675, "feet")
  6477. },
  6478. {
  6479. name: "Tectonic Tweaker",
  6480. height: math.unit(2300, "miles")
  6481. },
  6482. ]
  6483. ))
  6484. characterMakers.push(() => makeCharacter(
  6485. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6486. {
  6487. front: {
  6488. height: math.unit(6, "feet"),
  6489. weight: math.unit(180, "lbs"),
  6490. name: "Front",
  6491. image: {
  6492. source: "./media/characters/guisetto/front.svg",
  6493. extra: 856 / 817,
  6494. bottom: 0.06
  6495. }
  6496. },
  6497. airborne: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(180, "lbs"),
  6500. name: "Airborne",
  6501. image: {
  6502. source: "./media/characters/guisetto/airborne.svg",
  6503. extra: 584 / 525
  6504. }
  6505. },
  6506. },
  6507. [
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(10 + 11 / 12, "feet"),
  6511. default: true
  6512. },
  6513. {
  6514. name: "Large",
  6515. height: math.unit(35, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(475, "feet")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(180, "lbs"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/luxor/front.svg",
  6532. extra: 2940 / 2152
  6533. }
  6534. },
  6535. back: {
  6536. height: math.unit(6, "feet"),
  6537. weight: math.unit(180, "lbs"),
  6538. name: "Back",
  6539. image: {
  6540. source: "./media/characters/luxor/back.svg",
  6541. extra: 1083 / 960
  6542. }
  6543. },
  6544. },
  6545. [
  6546. {
  6547. name: "Normal",
  6548. height: math.unit(5 + 5 / 6, "feet"),
  6549. default: true
  6550. },
  6551. {
  6552. name: "Lamp",
  6553. height: math.unit(50, "feet")
  6554. },
  6555. {
  6556. name: "Lämp",
  6557. height: math.unit(300, "feet")
  6558. },
  6559. {
  6560. name: "The sun is a lamp",
  6561. height: math.unit(250000, "miles")
  6562. },
  6563. ]
  6564. ))
  6565. characterMakers.push(() => makeCharacter(
  6566. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6567. {
  6568. front: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(50, "lbs"),
  6571. name: "Front",
  6572. image: {
  6573. source: "./media/characters/huoyan/front.svg"
  6574. }
  6575. },
  6576. side: {
  6577. height: math.unit(6, "feet"),
  6578. weight: math.unit(180, "lbs"),
  6579. name: "Side",
  6580. image: {
  6581. source: "./media/characters/huoyan/side.svg"
  6582. }
  6583. },
  6584. },
  6585. [
  6586. {
  6587. name: "Chef",
  6588. height: math.unit(9, "feet")
  6589. },
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(65, "feet"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Macro",
  6597. height: math.unit(780, "feet")
  6598. },
  6599. {
  6600. name: "Flaming Mountain",
  6601. height: math.unit(4.8, "miles")
  6602. },
  6603. {
  6604. name: "Celestial",
  6605. height: math.unit(765000, "miles")
  6606. },
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(5 + 3 / 4, "feet"),
  6614. weight: math.unit(120, "lbs"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/tails/front.svg"
  6618. }
  6619. }
  6620. },
  6621. [
  6622. {
  6623. name: "Normal",
  6624. height: math.unit(5 + 3 / 4, "feet"),
  6625. default: true
  6626. }
  6627. ]
  6628. ))
  6629. characterMakers.push(() => makeCharacter(
  6630. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6631. {
  6632. front: {
  6633. height: math.unit(4, "feet"),
  6634. weight: math.unit(50, "lbs"),
  6635. name: "Front",
  6636. image: {
  6637. source: "./media/characters/rainy/front.svg"
  6638. }
  6639. }
  6640. },
  6641. [
  6642. {
  6643. name: "Macro",
  6644. height: math.unit(800, "feet"),
  6645. default: true
  6646. }
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(6, "feet"),
  6654. weight: math.unit(150, "lbs"),
  6655. name: "Front",
  6656. image: {
  6657. source: "./media/characters/rainier/front.svg"
  6658. }
  6659. }
  6660. },
  6661. [
  6662. {
  6663. name: "Micro",
  6664. height: math.unit(2, "mm"),
  6665. default: true
  6666. }
  6667. ]
  6668. ))
  6669. characterMakers.push(() => makeCharacter(
  6670. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6671. {
  6672. front: {
  6673. height: math.unit(8 + 4/12, "feet"),
  6674. weight: math.unit(450, "kilograms"),
  6675. volume: math.unit(5, "cups"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/andy-renard/front.svg",
  6679. extra: 1839/1726,
  6680. bottom: 134/1973
  6681. }
  6682. },
  6683. back: {
  6684. height: math.unit(8 + 4/12, "feet"),
  6685. weight: math.unit(450, "kilograms"),
  6686. volume: math.unit(5, "cups"),
  6687. name: "Back",
  6688. image: {
  6689. source: "./media/characters/andy-renard/back.svg",
  6690. extra: 1838/1710,
  6691. bottom: 105/1943
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Tall",
  6698. height: math.unit(8 + 4/12, "feet")
  6699. },
  6700. {
  6701. name: "Mini Macro",
  6702. height: math.unit(15, "feet"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Macro",
  6707. height: math.unit(100, "feet")
  6708. },
  6709. {
  6710. name: "Mega Macro",
  6711. height: math.unit(1000, "feet")
  6712. },
  6713. {
  6714. name: "Giga Macro",
  6715. height: math.unit(10, "miles")
  6716. },
  6717. {
  6718. name: "God Macro",
  6719. height: math.unit(1, "multiverse")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(210, "lbs"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/cimmaron/front-sfw.svg",
  6732. extra: 701 / 676,
  6733. bottom: 0.046
  6734. }
  6735. },
  6736. back: {
  6737. height: math.unit(6, "feet"),
  6738. weight: math.unit(210, "lbs"),
  6739. name: "Back",
  6740. image: {
  6741. source: "./media/characters/cimmaron/back-sfw.svg",
  6742. extra: 701 / 676,
  6743. bottom: 0.046
  6744. }
  6745. },
  6746. frontNsfw: {
  6747. height: math.unit(6, "feet"),
  6748. weight: math.unit(210, "lbs"),
  6749. name: "Front (NSFW)",
  6750. image: {
  6751. source: "./media/characters/cimmaron/front-nsfw.svg",
  6752. extra: 701 / 676,
  6753. bottom: 0.046
  6754. }
  6755. },
  6756. backNsfw: {
  6757. height: math.unit(6, "feet"),
  6758. weight: math.unit(210, "lbs"),
  6759. name: "Back (NSFW)",
  6760. image: {
  6761. source: "./media/characters/cimmaron/back-nsfw.svg",
  6762. extra: 701 / 676,
  6763. bottom: 0.046
  6764. }
  6765. },
  6766. dick: {
  6767. height: math.unit(1.714, "feet"),
  6768. name: "Dick",
  6769. image: {
  6770. source: "./media/characters/cimmaron/dick.svg"
  6771. }
  6772. },
  6773. },
  6774. [
  6775. {
  6776. name: "Normal",
  6777. height: math.unit(6, "feet"),
  6778. default: true
  6779. },
  6780. {
  6781. name: "Macro Mayor",
  6782. height: math.unit(350, "meters")
  6783. },
  6784. ]
  6785. ))
  6786. characterMakers.push(() => makeCharacter(
  6787. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6788. {
  6789. front: {
  6790. height: math.unit(6, "feet"),
  6791. weight: math.unit(200, "lbs"),
  6792. name: "Front",
  6793. image: {
  6794. source: "./media/characters/akari/front.svg",
  6795. extra: 962 / 901,
  6796. bottom: 0.04
  6797. }
  6798. }
  6799. },
  6800. [
  6801. {
  6802. name: "Micro",
  6803. height: math.unit(5, "inches"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Normal",
  6808. height: math.unit(7, "feet")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(140, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/cynosura/front.svg",
  6821. extra: 437/410,
  6822. bottom: 9/446
  6823. }
  6824. },
  6825. back: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(140, "lbs"),
  6828. name: "Back",
  6829. image: {
  6830. source: "./media/characters/cynosura/back.svg",
  6831. extra: 1304/1160,
  6832. bottom: 71/1375
  6833. }
  6834. },
  6835. },
  6836. [
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(4, "inches")
  6840. },
  6841. {
  6842. name: "Normal",
  6843. height: math.unit(5.75, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Tall",
  6848. height: math.unit(10, "feet")
  6849. },
  6850. {
  6851. name: "Big",
  6852. height: math.unit(20, "feet")
  6853. },
  6854. {
  6855. name: "Macro",
  6856. height: math.unit(50, "feet")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(13 + 2/12, "feet"),
  6865. weight: math.unit(800, "kg"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/gin/front.svg",
  6869. extra: 1312/1191,
  6870. bottom: 45/1357
  6871. }
  6872. },
  6873. mouth: {
  6874. height: math.unit(2.39 * 1.8, "feet"),
  6875. name: "Mouth",
  6876. image: {
  6877. source: "./media/characters/gin/mouth.svg"
  6878. }
  6879. },
  6880. hand: {
  6881. height: math.unit(1.57 * 2.19, "feet"),
  6882. name: "Hand",
  6883. image: {
  6884. source: "./media/characters/gin/hand.svg"
  6885. }
  6886. },
  6887. foot: {
  6888. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6889. name: "Foot",
  6890. image: {
  6891. source: "./media/characters/gin/foot.svg"
  6892. }
  6893. },
  6894. sole: {
  6895. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6896. name: "Sole",
  6897. image: {
  6898. source: "./media/characters/gin/sole.svg"
  6899. }
  6900. },
  6901. },
  6902. [
  6903. {
  6904. name: "Very Small",
  6905. height: math.unit(13 + 2 / 12, "feet")
  6906. },
  6907. {
  6908. name: "Micro",
  6909. height: math.unit(600, "miles")
  6910. },
  6911. {
  6912. name: "Regular",
  6913. height: math.unit(20, "earths"),
  6914. default: true
  6915. },
  6916. {
  6917. name: "Macro",
  6918. height: math.unit(2.2, "solarradii")
  6919. },
  6920. {
  6921. name: "Teramacro",
  6922. height: math.unit(1.2, "galaxies")
  6923. },
  6924. {
  6925. name: "Omegamacro",
  6926. height: math.unit(200, "universes")
  6927. },
  6928. ]
  6929. ))
  6930. characterMakers.push(() => makeCharacter(
  6931. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6932. {
  6933. front: {
  6934. height: math.unit(6 + 1 / 6, "feet"),
  6935. weight: math.unit(178, "lbs"),
  6936. name: "Front",
  6937. image: {
  6938. source: "./media/characters/guy/front.svg"
  6939. }
  6940. }
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(6 + 1 / 6, "feet"),
  6946. default: true
  6947. },
  6948. {
  6949. name: "Large",
  6950. height: math.unit(25 + 7 / 12, "feet")
  6951. },
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(60 + 9 / 12, "feet")
  6955. },
  6956. {
  6957. name: "Macro+",
  6958. height: math.unit(246, "feet")
  6959. },
  6960. {
  6961. name: "Macro++",
  6962. height: math.unit(878, "feet")
  6963. }
  6964. ]
  6965. ))
  6966. characterMakers.push(() => makeCharacter(
  6967. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6968. {
  6969. front: {
  6970. height: math.unit(9, "feet"),
  6971. weight: math.unit(800, "lbs"),
  6972. name: "Front",
  6973. image: {
  6974. source: "./media/characters/tiberius/front.svg",
  6975. extra: 2295 / 2071
  6976. }
  6977. },
  6978. back: {
  6979. height: math.unit(9, "feet"),
  6980. weight: math.unit(800, "lbs"),
  6981. name: "Back",
  6982. image: {
  6983. source: "./media/characters/tiberius/back.svg",
  6984. extra: 2373 / 2160
  6985. }
  6986. },
  6987. },
  6988. [
  6989. {
  6990. name: "Normal",
  6991. height: math.unit(9, "feet"),
  6992. default: true
  6993. }
  6994. ]
  6995. ))
  6996. characterMakers.push(() => makeCharacter(
  6997. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6998. {
  6999. front: {
  7000. height: math.unit(6, "feet"),
  7001. weight: math.unit(600, "lbs"),
  7002. name: "Front",
  7003. image: {
  7004. source: "./media/characters/surgo/front.svg",
  7005. extra: 3591 / 2227
  7006. }
  7007. },
  7008. back: {
  7009. height: math.unit(6, "feet"),
  7010. weight: math.unit(600, "lbs"),
  7011. name: "Back",
  7012. image: {
  7013. source: "./media/characters/surgo/back.svg",
  7014. extra: 3557 / 2228
  7015. }
  7016. },
  7017. laying: {
  7018. height: math.unit(6 * 0.85, "feet"),
  7019. weight: math.unit(600, "lbs"),
  7020. name: "Laying",
  7021. image: {
  7022. source: "./media/characters/surgo/laying.svg"
  7023. }
  7024. },
  7025. },
  7026. [
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(6, "feet"),
  7030. default: true
  7031. }
  7032. ]
  7033. ))
  7034. characterMakers.push(() => makeCharacter(
  7035. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7036. {
  7037. side: {
  7038. height: math.unit(6, "feet"),
  7039. weight: math.unit(150, "lbs"),
  7040. name: "Side",
  7041. image: {
  7042. source: "./media/characters/cibus/side.svg",
  7043. extra: 800 / 400
  7044. }
  7045. },
  7046. },
  7047. [
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(6, "feet"),
  7051. default: true
  7052. }
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(240, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/nibbles/front.svg"
  7064. }
  7065. },
  7066. side: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(240, "lbs"),
  7069. name: "Side",
  7070. image: {
  7071. source: "./media/characters/nibbles/side.svg"
  7072. }
  7073. },
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(9, "feet"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7085. {
  7086. side: {
  7087. height: math.unit(5 + 1 / 6, "feet"),
  7088. weight: math.unit(130, "lbs"),
  7089. name: "Side",
  7090. image: {
  7091. source: "./media/characters/rikky/side.svg",
  7092. extra: 851 / 801
  7093. }
  7094. },
  7095. },
  7096. [
  7097. {
  7098. name: "Normal",
  7099. height: math.unit(5 + 1 / 6, "feet")
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(152, "feet"),
  7104. default: true
  7105. },
  7106. {
  7107. name: "Megamacro",
  7108. height: math.unit(7, "miles")
  7109. }
  7110. ]
  7111. ))
  7112. characterMakers.push(() => makeCharacter(
  7113. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7114. {
  7115. side: {
  7116. height: math.unit(370, "cm"),
  7117. weight: math.unit(350, "lbs"),
  7118. name: "Side",
  7119. image: {
  7120. source: "./media/characters/malfressa/side.svg"
  7121. }
  7122. },
  7123. walking: {
  7124. height: math.unit(370, "cm"),
  7125. weight: math.unit(350, "lbs"),
  7126. name: "Walking",
  7127. image: {
  7128. source: "./media/characters/malfressa/walking.svg"
  7129. }
  7130. },
  7131. feral: {
  7132. height: math.unit(2500, "cm"),
  7133. weight: math.unit(100000, "lbs"),
  7134. name: "Feral",
  7135. image: {
  7136. source: "./media/characters/malfressa/feral.svg",
  7137. extra: 2108 / 837,
  7138. bottom: 0.02
  7139. }
  7140. },
  7141. },
  7142. [
  7143. {
  7144. name: "Normal",
  7145. height: math.unit(370, "cm")
  7146. },
  7147. {
  7148. name: "Macro",
  7149. height: math.unit(300, "meters"),
  7150. default: true
  7151. }
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(6, "feet"),
  7159. weight: math.unit(60, "kg"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/jaro/front.svg",
  7163. extra: 845/817,
  7164. bottom: 45/890
  7165. }
  7166. },
  7167. back: {
  7168. height: math.unit(6, "feet"),
  7169. weight: math.unit(60, "kg"),
  7170. name: "Back",
  7171. image: {
  7172. source: "./media/characters/jaro/back.svg",
  7173. extra: 847/817,
  7174. bottom: 34/881
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Micro",
  7181. height: math.unit(7, "inches")
  7182. },
  7183. {
  7184. name: "Normal",
  7185. height: math.unit(5.5, "feet"),
  7186. default: true
  7187. },
  7188. {
  7189. name: "Minimacro",
  7190. height: math.unit(20, "feet")
  7191. },
  7192. {
  7193. name: "Macro",
  7194. height: math.unit(200, "meters")
  7195. }
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7200. {
  7201. front: {
  7202. height: math.unit(6, "feet"),
  7203. weight: math.unit(195, "lb"),
  7204. name: "Front",
  7205. image: {
  7206. source: "./media/characters/rogue/front.svg"
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Macro",
  7213. height: math.unit(90, "feet"),
  7214. default: true
  7215. },
  7216. ]
  7217. ))
  7218. characterMakers.push(() => makeCharacter(
  7219. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7220. {
  7221. standing: {
  7222. height: math.unit(5 + 8 / 12, "feet"),
  7223. weight: math.unit(140, "lb"),
  7224. name: "Standing",
  7225. image: {
  7226. source: "./media/characters/piper/standing.svg",
  7227. extra: 1440/1284,
  7228. bottom: 66/1506
  7229. }
  7230. },
  7231. running: {
  7232. height: math.unit(5 + 8 / 12, "feet"),
  7233. weight: math.unit(140, "lb"),
  7234. name: "Running",
  7235. image: {
  7236. source: "./media/characters/piper/running.svg",
  7237. extra: 3948/3655,
  7238. bottom: 0/3948
  7239. }
  7240. },
  7241. sole: {
  7242. height: math.unit(0.81, "feet"),
  7243. weight: math.unit(2, "kg"),
  7244. name: "Sole",
  7245. image: {
  7246. source: "./media/characters/piper/sole.svg"
  7247. }
  7248. },
  7249. nipple: {
  7250. height: math.unit(0.25, "feet"),
  7251. weight: math.unit(1.5, "lb"),
  7252. name: "Nipple",
  7253. image: {
  7254. source: "./media/characters/piper/nipple.svg"
  7255. }
  7256. },
  7257. head: {
  7258. height: math.unit(1.1, "feet"),
  7259. name: "Head",
  7260. image: {
  7261. source: "./media/characters/piper/head.svg"
  7262. }
  7263. },
  7264. },
  7265. [
  7266. {
  7267. name: "Micro",
  7268. height: math.unit(2, "inches")
  7269. },
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(5 + 8 / 12, "feet")
  7273. },
  7274. {
  7275. name: "Macro",
  7276. height: math.unit(250, "feet"),
  7277. default: true
  7278. },
  7279. {
  7280. name: "Megamacro",
  7281. height: math.unit(7, "miles")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(220, "lb"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/gemini/front.svg"
  7294. }
  7295. },
  7296. back: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(220, "lb"),
  7299. name: "Back",
  7300. image: {
  7301. source: "./media/characters/gemini/back.svg"
  7302. }
  7303. },
  7304. kneeling: {
  7305. height: math.unit(6 / 1.5, "feet"),
  7306. weight: math.unit(220, "lb"),
  7307. name: "Kneeling",
  7308. image: {
  7309. source: "./media/characters/gemini/kneeling.svg",
  7310. bottom: 0.02
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(300, "meters"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Megamacro",
  7322. height: math.unit(6900, "meters")
  7323. },
  7324. ]
  7325. ))
  7326. characterMakers.push(() => makeCharacter(
  7327. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7328. {
  7329. anthro: {
  7330. height: math.unit(2.35, "meters"),
  7331. weight: math.unit(73, "kg"),
  7332. name: "Anthro",
  7333. image: {
  7334. source: "./media/characters/alicia/anthro.svg",
  7335. extra: 2571 / 2385,
  7336. bottom: 75 / 2648
  7337. }
  7338. },
  7339. paw: {
  7340. height: math.unit(1.32, "feet"),
  7341. name: "Paw",
  7342. image: {
  7343. source: "./media/characters/alicia/paw.svg"
  7344. }
  7345. },
  7346. feral: {
  7347. height: math.unit(1.69, "meters"),
  7348. weight: math.unit(73, "kg"),
  7349. name: "Feral",
  7350. image: {
  7351. source: "./media/characters/alicia/feral.svg",
  7352. extra: 2123 / 1715,
  7353. bottom: 222 / 2349
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(2.35, "meters")
  7361. },
  7362. {
  7363. name: "Macro",
  7364. height: math.unit(60, "meters"),
  7365. default: true
  7366. },
  7367. {
  7368. name: "Megamacro",
  7369. height: math.unit(10000, "kilometers")
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(7, "feet"),
  7378. weight: math.unit(250, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/archy/front.svg"
  7382. }
  7383. }
  7384. },
  7385. [
  7386. {
  7387. name: "Micro",
  7388. height: math.unit(1, "inch")
  7389. },
  7390. {
  7391. name: "Shorty",
  7392. height: math.unit(5, "feet")
  7393. },
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(7, "feet")
  7397. },
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(600, "meters"),
  7401. default: true
  7402. },
  7403. {
  7404. name: "Megamacro",
  7405. height: math.unit(1, "mile")
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(1.65, "meters"),
  7414. weight: math.unit(74, "kg"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/berri/front.svg",
  7418. extra: 857 / 837,
  7419. bottom: 18 / 877
  7420. }
  7421. },
  7422. bum: {
  7423. height: math.unit(1.46, "feet"),
  7424. name: "Bum",
  7425. image: {
  7426. source: "./media/characters/berri/bum.svg"
  7427. }
  7428. },
  7429. mouth: {
  7430. height: math.unit(0.44, "feet"),
  7431. name: "Mouth",
  7432. image: {
  7433. source: "./media/characters/berri/mouth.svg"
  7434. }
  7435. },
  7436. paw: {
  7437. height: math.unit(0.826, "feet"),
  7438. name: "Paw",
  7439. image: {
  7440. source: "./media/characters/berri/paw.svg"
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(1.65, "meters")
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(60, "m"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(9.213, "km")
  7457. },
  7458. {
  7459. name: "Planet Eater",
  7460. height: math.unit(489, "megameters")
  7461. },
  7462. {
  7463. name: "Teramacro",
  7464. height: math.unit(2471635000000, "meters")
  7465. },
  7466. {
  7467. name: "Examacro",
  7468. height: math.unit(8.0624e+26, "meters")
  7469. }
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(1.72, "meters"),
  7477. weight: math.unit(68, "kg"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/lexi/front.svg"
  7481. }
  7482. }
  7483. },
  7484. [
  7485. {
  7486. name: "Very Smol",
  7487. height: math.unit(10, "mm")
  7488. },
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(6.8, "cm"),
  7492. default: true
  7493. },
  7494. {
  7495. name: "Normal",
  7496. height: math.unit(1.72, "m")
  7497. }
  7498. ]
  7499. ))
  7500. characterMakers.push(() => makeCharacter(
  7501. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7502. {
  7503. front: {
  7504. height: math.unit(1.69, "meters"),
  7505. weight: math.unit(68, "kg"),
  7506. name: "Front",
  7507. image: {
  7508. source: "./media/characters/martin/front.svg",
  7509. extra: 596 / 581
  7510. }
  7511. }
  7512. },
  7513. [
  7514. {
  7515. name: "Micro",
  7516. height: math.unit(6.85, "cm"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Normal",
  7521. height: math.unit(1.69, "m")
  7522. }
  7523. ]
  7524. ))
  7525. characterMakers.push(() => makeCharacter(
  7526. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7527. {
  7528. front: {
  7529. height: math.unit(1.69, "meters"),
  7530. weight: math.unit(68, "kg"),
  7531. name: "Front",
  7532. image: {
  7533. source: "./media/characters/juno/front.svg"
  7534. }
  7535. }
  7536. },
  7537. [
  7538. {
  7539. name: "Micro",
  7540. height: math.unit(7, "cm")
  7541. },
  7542. {
  7543. name: "Normal",
  7544. height: math.unit(1.89, "m")
  7545. },
  7546. {
  7547. name: "Macro",
  7548. height: math.unit(353, "meters"),
  7549. default: true
  7550. }
  7551. ]
  7552. ))
  7553. characterMakers.push(() => makeCharacter(
  7554. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7555. {
  7556. front: {
  7557. height: math.unit(1.93, "meters"),
  7558. weight: math.unit(83, "kg"),
  7559. name: "Front",
  7560. image: {
  7561. source: "./media/characters/samantha/front.svg"
  7562. }
  7563. },
  7564. frontClothed: {
  7565. height: math.unit(1.93, "meters"),
  7566. weight: math.unit(83, "kg"),
  7567. name: "Front (Clothed)",
  7568. image: {
  7569. source: "./media/characters/samantha/front-clothed.svg"
  7570. }
  7571. },
  7572. back: {
  7573. height: math.unit(1.93, "meters"),
  7574. weight: math.unit(83, "kg"),
  7575. name: "Back",
  7576. image: {
  7577. source: "./media/characters/samantha/back.svg"
  7578. }
  7579. },
  7580. },
  7581. [
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(1.93, "m")
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(74, "meters"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro+",
  7593. height: math.unit(223, "meters"),
  7594. },
  7595. {
  7596. name: "Megamacro",
  7597. height: math.unit(8381, "meters"),
  7598. },
  7599. {
  7600. name: "Megamacro+",
  7601. height: math.unit(12000, "kilometers")
  7602. },
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(1.92, "meters"),
  7610. weight: math.unit(80, "kg"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/dr-clay/front.svg"
  7614. }
  7615. },
  7616. frontClothed: {
  7617. height: math.unit(1.92, "meters"),
  7618. weight: math.unit(80, "kg"),
  7619. name: "Front (Clothed)",
  7620. image: {
  7621. source: "./media/characters/dr-clay/front-clothed.svg"
  7622. }
  7623. }
  7624. },
  7625. [
  7626. {
  7627. name: "Normal",
  7628. height: math.unit(1.92, "m")
  7629. },
  7630. {
  7631. name: "Macro",
  7632. height: math.unit(214, "meters"),
  7633. default: true
  7634. },
  7635. {
  7636. name: "Macro+",
  7637. height: math.unit(12.237, "meters"),
  7638. },
  7639. {
  7640. name: "Megamacro",
  7641. height: math.unit(557, "megameters"),
  7642. },
  7643. {
  7644. name: "Unimaginable",
  7645. height: math.unit(120e9, "lightyears")
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7651. {
  7652. front: {
  7653. height: math.unit(2, "meters"),
  7654. weight: math.unit(80, "kg"),
  7655. name: "Front",
  7656. image: {
  7657. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7658. }
  7659. }
  7660. },
  7661. [
  7662. {
  7663. name: "Teramacro",
  7664. height: math.unit(500000, "lightyears"),
  7665. default: true
  7666. },
  7667. ]
  7668. ))
  7669. characterMakers.push(() => makeCharacter(
  7670. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7671. {
  7672. crux: {
  7673. height: math.unit(2, "meters"),
  7674. weight: math.unit(150, "kg"),
  7675. name: "Crux",
  7676. image: {
  7677. source: "./media/characters/vemus/crux.svg",
  7678. extra: 1074/936,
  7679. bottom: 23/1097
  7680. }
  7681. },
  7682. skunkTanuki: {
  7683. height: math.unit(2, "meters"),
  7684. weight: math.unit(150, "kg"),
  7685. name: "Skunk-Tanuki",
  7686. image: {
  7687. source: "./media/characters/vemus/skunk-tanuki.svg",
  7688. extra: 926/893,
  7689. bottom: 20/946
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(4, "meters"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Big",
  7701. height: math.unit(8, "meters")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(100, "meters")
  7706. },
  7707. {
  7708. name: "Macro+",
  7709. height: math.unit(1500, "meters")
  7710. },
  7711. {
  7712. name: "Stellar",
  7713. height: math.unit(14e8, "meters")
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(2, "meters"),
  7722. weight: math.unit(70, "kg"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/beherit/front.svg",
  7726. extra: 1234/1109,
  7727. bottom: 55/1289
  7728. }
  7729. }
  7730. },
  7731. [
  7732. {
  7733. name: "Normal",
  7734. height: math.unit(6, "feet")
  7735. },
  7736. {
  7737. name: "Lorg",
  7738. height: math.unit(25, "feet"),
  7739. default: true
  7740. },
  7741. {
  7742. name: "Lorger",
  7743. height: math.unit(75, "feet")
  7744. },
  7745. {
  7746. name: "Macro",
  7747. height: math.unit(200, "meters")
  7748. },
  7749. ]
  7750. ))
  7751. characterMakers.push(() => makeCharacter(
  7752. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7753. {
  7754. front: {
  7755. height: math.unit(2, "meters"),
  7756. weight: math.unit(150, "kg"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/everett/front.svg",
  7760. extra: 1017/866,
  7761. bottom: 86/1103
  7762. }
  7763. },
  7764. paw: {
  7765. height: math.unit(2 / 3.6, "meters"),
  7766. name: "Paw",
  7767. image: {
  7768. source: "./media/characters/everett/paw.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(15, "feet"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Lorg",
  7780. height: math.unit(70, "feet"),
  7781. default: true
  7782. },
  7783. {
  7784. name: "Lorger",
  7785. height: math.unit(250, "feet")
  7786. },
  7787. {
  7788. name: "Macro",
  7789. height: math.unit(500, "meters")
  7790. },
  7791. ]
  7792. ))
  7793. characterMakers.push(() => makeCharacter(
  7794. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7795. {
  7796. front: {
  7797. height: math.unit(2, "meters"),
  7798. weight: math.unit(86, "kg"),
  7799. name: "Front",
  7800. image: {
  7801. source: "./media/characters/rose/front.svg",
  7802. extra: 1785/1636,
  7803. bottom: 30/1815
  7804. },
  7805. form: "liom",
  7806. default: true
  7807. },
  7808. frontSporty: {
  7809. height: math.unit(2, "meters"),
  7810. weight: math.unit(86, "kg"),
  7811. name: "Front (Sporty)",
  7812. image: {
  7813. source: "./media/characters/rose/front-sporty.svg",
  7814. extra: 350/335,
  7815. bottom: 10/360
  7816. },
  7817. form: "liom"
  7818. },
  7819. frontAlt: {
  7820. height: math.unit(1.6, "meters"),
  7821. weight: math.unit(86, "kg"),
  7822. name: "Front (Alt)",
  7823. image: {
  7824. source: "./media/characters/rose/front-alt.svg",
  7825. extra: 299/283,
  7826. bottom: 3/302
  7827. },
  7828. form: "liom"
  7829. },
  7830. plush: {
  7831. height: math.unit(2, "meters"),
  7832. weight: math.unit(86/3, "kg"),
  7833. name: "Plush",
  7834. image: {
  7835. source: "./media/characters/rose/plush.svg",
  7836. extra: 361/337,
  7837. bottom: 11/372
  7838. },
  7839. form: "plush",
  7840. default: true
  7841. },
  7842. faeStanding: {
  7843. height: math.unit(10, "cm"),
  7844. weight: math.unit(10, "grams"),
  7845. name: "Standing",
  7846. image: {
  7847. source: "./media/characters/rose/fae-standing.svg",
  7848. extra: 1189/1060,
  7849. bottom: 27/1216
  7850. },
  7851. form: "fae",
  7852. default: true
  7853. },
  7854. faeSitting: {
  7855. height: math.unit(5, "cm"),
  7856. weight: math.unit(10, "grams"),
  7857. name: "Sitting",
  7858. image: {
  7859. source: "./media/characters/rose/fae-sitting.svg",
  7860. extra: 737/577,
  7861. bottom: 356/1093
  7862. },
  7863. form: "fae"
  7864. },
  7865. faePaw: {
  7866. height: math.unit(1.35, "cm"),
  7867. name: "Paw",
  7868. image: {
  7869. source: "./media/characters/rose/fae-paw.svg"
  7870. },
  7871. form: "fae"
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "True Micro",
  7877. height: math.unit(9, "cm"),
  7878. form: "liom"
  7879. },
  7880. {
  7881. name: "Micro",
  7882. height: math.unit(16, "cm"),
  7883. form: "liom"
  7884. },
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(1.85, "meters"),
  7888. default: true,
  7889. form: "liom"
  7890. },
  7891. {
  7892. name: "Mini-Macro",
  7893. height: math.unit(5, "meters"),
  7894. form: "liom"
  7895. },
  7896. {
  7897. name: "Macro",
  7898. height: math.unit(15, "meters"),
  7899. form: "liom"
  7900. },
  7901. {
  7902. name: "True Macro",
  7903. height: math.unit(40, "meters"),
  7904. form: "liom"
  7905. },
  7906. {
  7907. name: "City Scale",
  7908. height: math.unit(1, "km"),
  7909. form: "liom"
  7910. },
  7911. {
  7912. name: "Plushie",
  7913. height: math.unit(9, "cm"),
  7914. form: "plush",
  7915. default: true
  7916. },
  7917. {
  7918. name: "Fae",
  7919. height: math.unit(10, "cm"),
  7920. form: "fae",
  7921. default: true
  7922. },
  7923. ],
  7924. {
  7925. "liom": {
  7926. name: "Liom"
  7927. },
  7928. "plush": {
  7929. name: "Plush"
  7930. },
  7931. "fae": {
  7932. name: "Fae Fox",
  7933. default: true
  7934. }
  7935. }
  7936. ))
  7937. characterMakers.push(() => makeCharacter(
  7938. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7939. {
  7940. front: {
  7941. height: math.unit(2, "meters"),
  7942. weight: math.unit(350, "lbs"),
  7943. name: "Front",
  7944. image: {
  7945. source: "./media/characters/regal/front.svg"
  7946. }
  7947. },
  7948. back: {
  7949. height: math.unit(2, "meters"),
  7950. weight: math.unit(350, "lbs"),
  7951. name: "Back",
  7952. image: {
  7953. source: "./media/characters/regal/back.svg"
  7954. }
  7955. },
  7956. },
  7957. [
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(350, "feet"),
  7961. default: true
  7962. }
  7963. ]
  7964. ))
  7965. characterMakers.push(() => makeCharacter(
  7966. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7967. {
  7968. front: {
  7969. height: math.unit(4 + 11 / 12, "feet"),
  7970. weight: math.unit(100, "lbs"),
  7971. name: "Front",
  7972. image: {
  7973. source: "./media/characters/opal/front.svg"
  7974. }
  7975. },
  7976. frontAlt: {
  7977. height: math.unit(4 + 11 / 12, "feet"),
  7978. weight: math.unit(100, "lbs"),
  7979. name: "Front (Alt)",
  7980. image: {
  7981. source: "./media/characters/opal/front-alt.svg"
  7982. }
  7983. },
  7984. },
  7985. [
  7986. {
  7987. name: "Small",
  7988. height: math.unit(4 + 11 / 12, "feet")
  7989. },
  7990. {
  7991. name: "Normal",
  7992. height: math.unit(20, "feet"),
  7993. default: true
  7994. },
  7995. {
  7996. name: "Macro",
  7997. height: math.unit(120, "feet")
  7998. },
  7999. {
  8000. name: "Megamacro",
  8001. height: math.unit(80, "miles")
  8002. },
  8003. {
  8004. name: "True Size",
  8005. height: math.unit(100000, "lightyears")
  8006. },
  8007. ]
  8008. ))
  8009. characterMakers.push(() => makeCharacter(
  8010. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8011. {
  8012. front: {
  8013. height: math.unit(6, "feet"),
  8014. weight: math.unit(200, "lbs"),
  8015. name: "Front",
  8016. image: {
  8017. source: "./media/characters/vector-wuff/front.svg"
  8018. }
  8019. }
  8020. },
  8021. [
  8022. {
  8023. name: "Normal",
  8024. height: math.unit(2.8, "meters")
  8025. },
  8026. {
  8027. name: "Macro",
  8028. height: math.unit(450, "meters"),
  8029. default: true
  8030. },
  8031. {
  8032. name: "Megamacro",
  8033. height: math.unit(15, "kilometers")
  8034. }
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(256, "lbs"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/dannik/front.svg"
  8046. }
  8047. }
  8048. },
  8049. [
  8050. {
  8051. name: "Macro",
  8052. height: math.unit(69.57, "meters"),
  8053. default: true
  8054. },
  8055. ]
  8056. ))
  8057. characterMakers.push(() => makeCharacter(
  8058. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8059. {
  8060. front: {
  8061. height: math.unit(6, "feet"),
  8062. weight: math.unit(120, "lbs"),
  8063. name: "Front",
  8064. image: {
  8065. source: "./media/characters/azura-saharah/front.svg"
  8066. }
  8067. },
  8068. back: {
  8069. height: math.unit(6, "feet"),
  8070. weight: math.unit(120, "lbs"),
  8071. name: "Back",
  8072. image: {
  8073. source: "./media/characters/azura-saharah/back.svg"
  8074. }
  8075. },
  8076. },
  8077. [
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(100, "feet"),
  8081. default: true
  8082. },
  8083. ]
  8084. ))
  8085. characterMakers.push(() => makeCharacter(
  8086. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8087. {
  8088. side: {
  8089. height: math.unit(5 + 4 / 12, "feet"),
  8090. weight: math.unit(163, "lbs"),
  8091. name: "Side",
  8092. image: {
  8093. source: "./media/characters/kennedy/side.svg"
  8094. }
  8095. }
  8096. },
  8097. [
  8098. {
  8099. name: "Standard Doggo",
  8100. height: math.unit(5 + 4 / 12, "feet")
  8101. },
  8102. {
  8103. name: "Big Doggo",
  8104. height: math.unit(25 + 3 / 12, "feet"),
  8105. default: true
  8106. },
  8107. ]
  8108. ))
  8109. characterMakers.push(() => makeCharacter(
  8110. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8111. {
  8112. front: {
  8113. height: math.unit(5 + 5/12, "feet"),
  8114. weight: math.unit(100, "lbs"),
  8115. name: "Front",
  8116. image: {
  8117. source: "./media/characters/odios-de-lunar/front.svg",
  8118. extra: 1468/1323,
  8119. bottom: 22/1490
  8120. }
  8121. }
  8122. },
  8123. [
  8124. {
  8125. name: "Micro",
  8126. height: math.unit(3, "inches")
  8127. },
  8128. {
  8129. name: "Normal",
  8130. height: math.unit(5.5, "feet"),
  8131. default: true
  8132. },
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(100, "feet")
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8141. {
  8142. back: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(220, "lbs"),
  8145. name: "Back",
  8146. image: {
  8147. source: "./media/characters/mandake/back.svg"
  8148. }
  8149. }
  8150. },
  8151. [
  8152. {
  8153. name: "Normal",
  8154. height: math.unit(7, "feet"),
  8155. default: true
  8156. },
  8157. {
  8158. name: "Macro",
  8159. height: math.unit(78, "feet")
  8160. },
  8161. {
  8162. name: "Macro+",
  8163. height: math.unit(300, "meters")
  8164. },
  8165. {
  8166. name: "Macro++",
  8167. height: math.unit(2400, "feet")
  8168. },
  8169. {
  8170. name: "Megamacro",
  8171. height: math.unit(5167, "meters")
  8172. },
  8173. {
  8174. name: "Gigamacro",
  8175. height: math.unit(41769, "miles")
  8176. },
  8177. ]
  8178. ))
  8179. characterMakers.push(() => makeCharacter(
  8180. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8181. {
  8182. front: {
  8183. height: math.unit(6, "feet"),
  8184. weight: math.unit(120, "lbs"),
  8185. name: "Front",
  8186. image: {
  8187. source: "./media/characters/yozey/front.svg"
  8188. }
  8189. },
  8190. frontAlt: {
  8191. height: math.unit(6, "feet"),
  8192. weight: math.unit(120, "lbs"),
  8193. name: "Front (Alt)",
  8194. image: {
  8195. source: "./media/characters/yozey/front-alt.svg"
  8196. }
  8197. },
  8198. side: {
  8199. height: math.unit(6, "feet"),
  8200. weight: math.unit(120, "lbs"),
  8201. name: "Side",
  8202. image: {
  8203. source: "./media/characters/yozey/side.svg"
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Micro",
  8210. height: math.unit(3, "inches"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "Normal",
  8215. height: math.unit(6, "feet")
  8216. }
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(6, "feet"),
  8224. weight: math.unit(103, "lbs"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/valeska-voss/front.svg"
  8228. }
  8229. }
  8230. },
  8231. [
  8232. {
  8233. name: "Mini-Sized Sub",
  8234. height: math.unit(3.1, "inches")
  8235. },
  8236. {
  8237. name: "Mid-Sized Sub",
  8238. height: math.unit(6.2, "inches")
  8239. },
  8240. {
  8241. name: "Full-Sized Sub",
  8242. height: math.unit(9.3, "inches")
  8243. },
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(5 + 2 / 12, "foot"),
  8247. default: true
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(160, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/gene-zeta/front.svg",
  8260. extra: 3006 / 2826,
  8261. bottom: 182 / 3188
  8262. }
  8263. }
  8264. },
  8265. [
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(6, "inches")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(5 + 11 / 12, "foot"),
  8273. default: true
  8274. },
  8275. {
  8276. name: "Macro",
  8277. height: math.unit(140, "feet")
  8278. },
  8279. {
  8280. name: "Supercharged",
  8281. height: math.unit(2500, "feet")
  8282. },
  8283. ]
  8284. ))
  8285. characterMakers.push(() => makeCharacter(
  8286. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8287. {
  8288. front: {
  8289. height: math.unit(6, "feet"),
  8290. weight: math.unit(350, "lbs"),
  8291. name: "Front",
  8292. image: {
  8293. source: "./media/characters/razinox/front.svg",
  8294. extra: 1686 / 1548,
  8295. bottom: 28.2 / 1868
  8296. }
  8297. },
  8298. back: {
  8299. height: math.unit(6, "feet"),
  8300. weight: math.unit(350, "lbs"),
  8301. name: "Back",
  8302. image: {
  8303. source: "./media/characters/razinox/back.svg",
  8304. extra: 1660 / 1590,
  8305. bottom: 15 / 1665
  8306. }
  8307. },
  8308. },
  8309. [
  8310. {
  8311. name: "Normal",
  8312. height: math.unit(10 + 8 / 12, "foot")
  8313. },
  8314. {
  8315. name: "Minimacro",
  8316. height: math.unit(15, "foot")
  8317. },
  8318. {
  8319. name: "Macro",
  8320. height: math.unit(60, "foot"),
  8321. default: true
  8322. },
  8323. {
  8324. name: "Megamacro",
  8325. height: math.unit(5, "miles")
  8326. },
  8327. {
  8328. name: "Gigamacro",
  8329. height: math.unit(6000, "miles")
  8330. },
  8331. ]
  8332. ))
  8333. characterMakers.push(() => makeCharacter(
  8334. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8335. {
  8336. front: {
  8337. height: math.unit(6, "feet"),
  8338. weight: math.unit(150, "lbs"),
  8339. name: "Front",
  8340. image: {
  8341. source: "./media/characters/cobalt/front.svg"
  8342. }
  8343. }
  8344. },
  8345. [
  8346. {
  8347. name: "Normal",
  8348. height: math.unit(8 + 1 / 12, "foot")
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(111, "foot"),
  8353. default: true
  8354. },
  8355. {
  8356. name: "Supracosmic",
  8357. height: math.unit(1e42, "feet")
  8358. },
  8359. ]
  8360. ))
  8361. characterMakers.push(() => makeCharacter(
  8362. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8363. {
  8364. front: {
  8365. height: math.unit(5, "inches"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/amanda/front.svg",
  8369. extra: 926/791,
  8370. bottom: 38/964
  8371. }
  8372. },
  8373. back: {
  8374. height: math.unit(5, "inches"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/amanda/back.svg",
  8378. extra: 909/805,
  8379. bottom: 43/952
  8380. }
  8381. },
  8382. },
  8383. [
  8384. {
  8385. name: "Micro",
  8386. height: math.unit(5, "inches"),
  8387. default: true
  8388. },
  8389. ]
  8390. ))
  8391. characterMakers.push(() => makeCharacter(
  8392. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8393. {
  8394. front: {
  8395. height: math.unit(2.75, "meters"),
  8396. weight: math.unit(1200, "lb"),
  8397. name: "Front",
  8398. image: {
  8399. source: "./media/characters/teal/front.svg",
  8400. extra: 2463 / 2320,
  8401. bottom: 166 / 2629
  8402. }
  8403. },
  8404. back: {
  8405. height: math.unit(2.75, "meters"),
  8406. weight: math.unit(1200, "lb"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/teal/back.svg",
  8410. extra: 2580 / 2489,
  8411. bottom: 151 / 2731
  8412. }
  8413. },
  8414. sitting: {
  8415. height: math.unit(1.9, "meters"),
  8416. weight: math.unit(1200, "lb"),
  8417. name: "Sitting",
  8418. image: {
  8419. source: "./media/characters/teal/sitting.svg",
  8420. extra: 623 / 590,
  8421. bottom: 121 / 744
  8422. }
  8423. },
  8424. standing: {
  8425. height: math.unit(2.75, "meters"),
  8426. weight: math.unit(1200, "lb"),
  8427. name: "Standing",
  8428. image: {
  8429. source: "./media/characters/teal/standing.svg",
  8430. extra: 923 / 893,
  8431. bottom: 60 / 983
  8432. }
  8433. },
  8434. stretching: {
  8435. height: math.unit(3.65, "meters"),
  8436. weight: math.unit(1200, "lb"),
  8437. name: "Stretching",
  8438. image: {
  8439. source: "./media/characters/teal/stretching.svg",
  8440. extra: 1276 / 1244,
  8441. bottom: 0 / 1276
  8442. }
  8443. },
  8444. legged: {
  8445. height: math.unit(1.3, "meters"),
  8446. weight: math.unit(100, "lb"),
  8447. name: "Legged",
  8448. image: {
  8449. source: "./media/characters/teal/legged.svg",
  8450. extra: 462 / 437,
  8451. bottom: 24 / 486
  8452. }
  8453. },
  8454. naga: {
  8455. height: math.unit(5.4, "meters"),
  8456. weight: math.unit(4000, "lb"),
  8457. name: "Naga",
  8458. image: {
  8459. source: "./media/characters/teal/naga.svg",
  8460. extra: 1902 / 1858,
  8461. bottom: 0 / 1902
  8462. }
  8463. },
  8464. hand: {
  8465. height: math.unit(0.52, "meters"),
  8466. name: "Hand",
  8467. image: {
  8468. source: "./media/characters/teal/hand.svg"
  8469. }
  8470. },
  8471. maw: {
  8472. height: math.unit(0.43, "meters"),
  8473. name: "Maw",
  8474. image: {
  8475. source: "./media/characters/teal/maw.svg"
  8476. }
  8477. },
  8478. slit: {
  8479. height: math.unit(0.25, "meters"),
  8480. name: "Slit",
  8481. image: {
  8482. source: "./media/characters/teal/slit.svg"
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(2.75, "meters"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(300, "feet")
  8495. },
  8496. {
  8497. name: "Macro+",
  8498. height: math.unit(2000, "feet")
  8499. },
  8500. ]
  8501. ))
  8502. characterMakers.push(() => makeCharacter(
  8503. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8504. {
  8505. frontCat: {
  8506. height: math.unit(6, "feet"),
  8507. weight: math.unit(180, "lbs"),
  8508. name: "Front (Cat)",
  8509. image: {
  8510. source: "./media/characters/ravin-amulet/front-cat.svg"
  8511. }
  8512. },
  8513. frontCatAlt: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(180, "lbs"),
  8516. name: "Front (Alt, Cat)",
  8517. image: {
  8518. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8519. }
  8520. },
  8521. frontWerewolf: {
  8522. height: math.unit(6 * 1.2, "feet"),
  8523. weight: math.unit(225, "lbs"),
  8524. name: "Front (Werewolf)",
  8525. image: {
  8526. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8527. }
  8528. },
  8529. backWerewolf: {
  8530. height: math.unit(6 * 1.2, "feet"),
  8531. weight: math.unit(225, "lbs"),
  8532. name: "Back (Werewolf)",
  8533. image: {
  8534. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8535. }
  8536. },
  8537. },
  8538. [
  8539. {
  8540. name: "Nano",
  8541. height: math.unit(1, "micrometer")
  8542. },
  8543. {
  8544. name: "Micro",
  8545. height: math.unit(1, "inch")
  8546. },
  8547. {
  8548. name: "Normal",
  8549. height: math.unit(6, "feet"),
  8550. default: true
  8551. },
  8552. {
  8553. name: "Macro",
  8554. height: math.unit(60, "feet")
  8555. }
  8556. ]
  8557. ))
  8558. characterMakers.push(() => makeCharacter(
  8559. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8560. {
  8561. front: {
  8562. height: math.unit(6, "feet"),
  8563. weight: math.unit(165, "lbs"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/fluoresce/front.svg"
  8567. }
  8568. }
  8569. },
  8570. [
  8571. {
  8572. name: "Micro",
  8573. height: math.unit(6, "cm")
  8574. },
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(5 + 7 / 12, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(56, "feet")
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(1.9, "miles")
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(9 + 6 / 12, "feet"),
  8595. weight: math.unit(523, "lbs"),
  8596. name: "Side",
  8597. image: {
  8598. source: "./media/characters/aurora/side.svg",
  8599. extra: 474/393,
  8600. bottom: 5/479
  8601. }
  8602. }
  8603. },
  8604. [
  8605. {
  8606. name: "Normal",
  8607. height: math.unit(9 + 6 / 12, "feet")
  8608. },
  8609. {
  8610. name: "Macro",
  8611. height: math.unit(96, "feet"),
  8612. default: true
  8613. },
  8614. {
  8615. name: "Macro+",
  8616. height: math.unit(243, "feet")
  8617. },
  8618. ]
  8619. ))
  8620. characterMakers.push(() => makeCharacter(
  8621. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8622. {
  8623. front: {
  8624. height: math.unit(194, "cm"),
  8625. weight: math.unit(90, "kg"),
  8626. name: "Front",
  8627. image: {
  8628. source: "./media/characters/ranek/front.svg",
  8629. extra: 1862/1791,
  8630. bottom: 80/1942
  8631. }
  8632. },
  8633. back: {
  8634. height: math.unit(194, "cm"),
  8635. weight: math.unit(90, "kg"),
  8636. name: "Back",
  8637. image: {
  8638. source: "./media/characters/ranek/back.svg",
  8639. extra: 1853/1787,
  8640. bottom: 74/1927
  8641. }
  8642. },
  8643. feral: {
  8644. height: math.unit(30, "cm"),
  8645. weight: math.unit(1.6, "lbs"),
  8646. name: "Feral",
  8647. image: {
  8648. source: "./media/characters/ranek/feral.svg",
  8649. extra: 990/631,
  8650. bottom: 29/1019
  8651. }
  8652. },
  8653. },
  8654. [
  8655. {
  8656. name: "Normal",
  8657. height: math.unit(194, "cm"),
  8658. default: true
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(100, "meters")
  8663. },
  8664. ]
  8665. ))
  8666. characterMakers.push(() => makeCharacter(
  8667. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8668. {
  8669. front: {
  8670. height: math.unit(5 + 6 / 12, "feet"),
  8671. weight: math.unit(153, "lbs"),
  8672. name: "Front",
  8673. image: {
  8674. source: "./media/characters/andrew-cooper/front.svg"
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Nano",
  8681. height: math.unit(1, "mm")
  8682. },
  8683. {
  8684. name: "Micro",
  8685. height: math.unit(2, "inches")
  8686. },
  8687. {
  8688. name: "Normal",
  8689. height: math.unit(5 + 6 / 12, "feet"),
  8690. default: true
  8691. }
  8692. ]
  8693. ))
  8694. characterMakers.push(() => makeCharacter(
  8695. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8696. {
  8697. front: {
  8698. height: math.unit(6, "feet"),
  8699. weight: math.unit(180, "lbs"),
  8700. name: "Front",
  8701. image: {
  8702. source: "./media/characters/akane-sato/front.svg",
  8703. extra: 1219 / 1140
  8704. }
  8705. },
  8706. back: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(180, "lbs"),
  8709. name: "Back",
  8710. image: {
  8711. source: "./media/characters/akane-sato/back.svg",
  8712. extra: 1219 / 1170
  8713. }
  8714. },
  8715. },
  8716. [
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(2.5, "meters")
  8720. },
  8721. {
  8722. name: "Macro",
  8723. height: math.unit(250, "meters"),
  8724. default: true
  8725. },
  8726. {
  8727. name: "Megamacro",
  8728. height: math.unit(25, "km")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8734. {
  8735. front: {
  8736. height: math.unit(6, "feet"),
  8737. weight: math.unit(65, "kg"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/rook/front.svg",
  8741. extra: 960 / 950
  8742. }
  8743. }
  8744. },
  8745. [
  8746. {
  8747. name: "Normal",
  8748. height: math.unit(8.8, "feet")
  8749. },
  8750. {
  8751. name: "Macro",
  8752. height: math.unit(88, "feet"),
  8753. default: true
  8754. },
  8755. {
  8756. name: "Megamacro",
  8757. height: math.unit(8, "miles")
  8758. },
  8759. ]
  8760. ))
  8761. characterMakers.push(() => makeCharacter(
  8762. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8763. {
  8764. front: {
  8765. height: math.unit(12 + 2 / 12, "feet"),
  8766. weight: math.unit(808, "lbs"),
  8767. name: "Front",
  8768. image: {
  8769. source: "./media/characters/prodigy/front.svg"
  8770. }
  8771. }
  8772. },
  8773. [
  8774. {
  8775. name: "Normal",
  8776. height: math.unit(12 + 2 / 12, "feet"),
  8777. default: true
  8778. },
  8779. {
  8780. name: "Macro",
  8781. height: math.unit(143, "feet")
  8782. },
  8783. {
  8784. name: "Macro+",
  8785. height: math.unit(400, "feet")
  8786. },
  8787. ]
  8788. ))
  8789. characterMakers.push(() => makeCharacter(
  8790. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8791. {
  8792. front: {
  8793. height: math.unit(6, "feet"),
  8794. weight: math.unit(225, "lbs"),
  8795. name: "Front",
  8796. image: {
  8797. source: "./media/characters/daniel/front.svg"
  8798. }
  8799. },
  8800. leaning: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(225, "lbs"),
  8803. name: "Leaning",
  8804. image: {
  8805. source: "./media/characters/daniel/leaning.svg"
  8806. }
  8807. },
  8808. },
  8809. [
  8810. {
  8811. name: "Macro",
  8812. height: math.unit(1000, "feet"),
  8813. default: true
  8814. },
  8815. ]
  8816. ))
  8817. characterMakers.push(() => makeCharacter(
  8818. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8819. {
  8820. front: {
  8821. height: math.unit(6, "feet"),
  8822. weight: math.unit(88, "lbs"),
  8823. name: "Front",
  8824. image: {
  8825. source: "./media/characters/chiros/front.svg",
  8826. extra: 306 / 226
  8827. }
  8828. },
  8829. side: {
  8830. height: math.unit(6, "feet"),
  8831. weight: math.unit(88, "lbs"),
  8832. name: "Side",
  8833. image: {
  8834. source: "./media/characters/chiros/side.svg",
  8835. extra: 306 / 226
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(6, "cm"),
  8843. default: true
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8849. {
  8850. front: {
  8851. height: math.unit(6, "feet"),
  8852. weight: math.unit(100, "lbs"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/selka/front.svg",
  8856. extra: 947 / 887
  8857. }
  8858. }
  8859. },
  8860. [
  8861. {
  8862. name: "Normal",
  8863. height: math.unit(5, "cm"),
  8864. default: true
  8865. },
  8866. ]
  8867. ))
  8868. characterMakers.push(() => makeCharacter(
  8869. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8870. {
  8871. front: {
  8872. height: math.unit(8 + 3 / 12, "feet"),
  8873. weight: math.unit(424, "lbs"),
  8874. name: "Front",
  8875. image: {
  8876. source: "./media/characters/verin/front.svg",
  8877. extra: 1845 / 1550
  8878. }
  8879. },
  8880. frontArmored: {
  8881. height: math.unit(8 + 3 / 12, "feet"),
  8882. weight: math.unit(424, "lbs"),
  8883. name: "Front (Armored)",
  8884. image: {
  8885. source: "./media/characters/verin/front-armor.svg",
  8886. extra: 1845 / 1550,
  8887. bottom: 0.01
  8888. }
  8889. },
  8890. back: {
  8891. height: math.unit(8 + 3 / 12, "feet"),
  8892. weight: math.unit(424, "lbs"),
  8893. name: "Back",
  8894. image: {
  8895. source: "./media/characters/verin/back.svg",
  8896. bottom: 0.1,
  8897. extra: 1
  8898. }
  8899. },
  8900. foot: {
  8901. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8902. name: "Foot",
  8903. image: {
  8904. source: "./media/characters/verin/foot.svg"
  8905. }
  8906. },
  8907. },
  8908. [
  8909. {
  8910. name: "Normal",
  8911. height: math.unit(8 + 3 / 12, "feet")
  8912. },
  8913. {
  8914. name: "Minimacro",
  8915. height: math.unit(21, "feet"),
  8916. default: true
  8917. },
  8918. {
  8919. name: "Macro",
  8920. height: math.unit(626, "feet")
  8921. },
  8922. ]
  8923. ))
  8924. characterMakers.push(() => makeCharacter(
  8925. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8926. {
  8927. front: {
  8928. height: math.unit(2.718, "meters"),
  8929. weight: math.unit(150, "lbs"),
  8930. name: "Front",
  8931. image: {
  8932. source: "./media/characters/sovrim-terraquian/front.svg",
  8933. extra: 1752/1689,
  8934. bottom: 36/1788
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(2.718, "meters"),
  8939. weight: math.unit(150, "lbs"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/sovrim-terraquian/back.svg",
  8943. extra: 1698/1657,
  8944. bottom: 58/1756
  8945. }
  8946. },
  8947. tongue: {
  8948. height: math.unit(2.865, "feet"),
  8949. name: "Tongue",
  8950. image: {
  8951. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8952. }
  8953. },
  8954. hand: {
  8955. height: math.unit(1.61, "feet"),
  8956. name: "Hand",
  8957. image: {
  8958. source: "./media/characters/sovrim-terraquian/hand.svg"
  8959. }
  8960. },
  8961. foot: {
  8962. height: math.unit(1.05, "feet"),
  8963. name: "Foot",
  8964. image: {
  8965. source: "./media/characters/sovrim-terraquian/foot.svg"
  8966. }
  8967. },
  8968. footAlt: {
  8969. height: math.unit(0.88, "feet"),
  8970. name: "Foot (Alt)",
  8971. image: {
  8972. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8973. }
  8974. },
  8975. },
  8976. [
  8977. {
  8978. name: "Micro",
  8979. height: math.unit(2, "inches")
  8980. },
  8981. {
  8982. name: "Small",
  8983. height: math.unit(1, "meter")
  8984. },
  8985. {
  8986. name: "Normal",
  8987. height: math.unit(Math.E, "meters"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Macro",
  8992. height: math.unit(20, "meters")
  8993. },
  8994. {
  8995. name: "Macro+",
  8996. height: math.unit(400, "meters")
  8997. },
  8998. ]
  8999. ))
  9000. characterMakers.push(() => makeCharacter(
  9001. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9002. {
  9003. front: {
  9004. height: math.unit(7, "feet"),
  9005. weight: math.unit(489, "lbs"),
  9006. name: "Front",
  9007. image: {
  9008. source: "./media/characters/reece-silvermane/front.svg",
  9009. bottom: 0.02,
  9010. extra: 1
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(1.5, "miles"),
  9018. default: true
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(78, "kg"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/kane/front.svg",
  9031. extra: 978 / 899
  9032. }
  9033. },
  9034. },
  9035. [
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(2.1, "m"),
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(1, "km"),
  9043. default: true
  9044. },
  9045. ]
  9046. ))
  9047. characterMakers.push(() => makeCharacter(
  9048. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9049. {
  9050. front: {
  9051. height: math.unit(6, "feet"),
  9052. weight: math.unit(200, "kg"),
  9053. name: "Front",
  9054. image: {
  9055. source: "./media/characters/tegon/front.svg",
  9056. bottom: 0.01,
  9057. extra: 1
  9058. }
  9059. },
  9060. },
  9061. [
  9062. {
  9063. name: "Micro",
  9064. height: math.unit(1, "inch")
  9065. },
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(6 + 3 / 12, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Macro",
  9073. height: math.unit(300, "feet")
  9074. },
  9075. {
  9076. name: "Megamacro",
  9077. height: math.unit(69, "miles")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9083. {
  9084. side: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(2304, "lbs"),
  9087. name: "Side",
  9088. image: {
  9089. source: "./media/characters/arcturax/side.svg",
  9090. extra: 790 / 376,
  9091. bottom: 0.01
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Micro",
  9098. height: math.unit(2, "inch")
  9099. },
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(6, "feet")
  9103. },
  9104. {
  9105. name: "Macro",
  9106. height: math.unit(39, "feet"),
  9107. default: true
  9108. },
  9109. {
  9110. name: "Megamacro",
  9111. height: math.unit(7, "miles")
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(50, "lbs"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/sentri/front.svg",
  9124. extra: 1750 / 1570,
  9125. bottom: 0.025
  9126. }
  9127. },
  9128. frontAlt: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(50, "lbs"),
  9131. name: "Front (Alt)",
  9132. image: {
  9133. source: "./media/characters/sentri/front-alt.svg",
  9134. extra: 1750 / 1570,
  9135. bottom: 0.025
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(15, "feet"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(2500, "feet")
  9148. }
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(5 + 8 / 12, "feet"),
  9156. weight: math.unit(130, "lbs"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/corvin/front.svg",
  9160. extra: 1803 / 1629
  9161. }
  9162. },
  9163. frontShirt: {
  9164. height: math.unit(5 + 8 / 12, "feet"),
  9165. weight: math.unit(130, "lbs"),
  9166. name: "Front (Shirt)",
  9167. image: {
  9168. source: "./media/characters/corvin/front-shirt.svg",
  9169. extra: 1803 / 1629
  9170. }
  9171. },
  9172. frontPoncho: {
  9173. height: math.unit(5 + 8 / 12, "feet"),
  9174. weight: math.unit(130, "lbs"),
  9175. name: "Front (Poncho)",
  9176. image: {
  9177. source: "./media/characters/corvin/front-poncho.svg",
  9178. extra: 1803 / 1629
  9179. }
  9180. },
  9181. side: {
  9182. height: math.unit(5 + 8 / 12, "feet"),
  9183. weight: math.unit(130, "lbs"),
  9184. name: "Side",
  9185. image: {
  9186. source: "./media/characters/corvin/side.svg",
  9187. extra: 1012 / 945
  9188. }
  9189. },
  9190. back: {
  9191. height: math.unit(5 + 8 / 12, "feet"),
  9192. weight: math.unit(130, "lbs"),
  9193. name: "Back",
  9194. image: {
  9195. source: "./media/characters/corvin/back.svg",
  9196. extra: 1803 / 1629
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Micro",
  9203. height: math.unit(3, "inches")
  9204. },
  9205. {
  9206. name: "Normal",
  9207. height: math.unit(5 + 8 / 12, "feet")
  9208. },
  9209. {
  9210. name: "Macro",
  9211. height: math.unit(300, "feet"),
  9212. default: true
  9213. },
  9214. {
  9215. name: "Megamacro",
  9216. height: math.unit(500, "miles")
  9217. }
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(6, "feet"),
  9225. weight: math.unit(135, "lbs"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/q/front.svg",
  9229. extra: 854 / 752,
  9230. bottom: 0.005
  9231. }
  9232. },
  9233. back: {
  9234. height: math.unit(6, "feet"),
  9235. weight: math.unit(130, "lbs"),
  9236. name: "Back",
  9237. image: {
  9238. source: "./media/characters/q/back.svg",
  9239. extra: 854 / 752
  9240. }
  9241. },
  9242. },
  9243. [
  9244. {
  9245. name: "Macro",
  9246. height: math.unit(90, "feet"),
  9247. default: true
  9248. },
  9249. {
  9250. name: "Extra Macro",
  9251. height: math.unit(300, "feet"),
  9252. },
  9253. {
  9254. name: "BIG WALF",
  9255. height: math.unit(750, "feet"),
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9261. {
  9262. front: {
  9263. height: math.unit(3, "feet"),
  9264. weight: math.unit(28, "lbs"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/citrine/front.svg"
  9268. }
  9269. }
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(3, "feet"),
  9275. default: true
  9276. }
  9277. ]
  9278. ))
  9279. characterMakers.push(() => makeCharacter(
  9280. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9281. {
  9282. front: {
  9283. height: math.unit(14, "feet"),
  9284. weight: math.unit(1450, "kg"),
  9285. preyCapacity: math.unit(15, "people"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/aura-starwind/front.svg",
  9289. extra: 1440/1327,
  9290. bottom: 11/1451
  9291. }
  9292. },
  9293. side: {
  9294. height: math.unit(14, "feet"),
  9295. weight: math.unit(1450, "kg"),
  9296. preyCapacity: math.unit(15, "people"),
  9297. name: "Side",
  9298. image: {
  9299. source: "./media/characters/aura-starwind/side.svg",
  9300. extra: 1654 / 1497
  9301. }
  9302. },
  9303. taur: {
  9304. height: math.unit(18, "feet"),
  9305. weight: math.unit(5500, "kg"),
  9306. preyCapacity: math.unit(50, "people"),
  9307. name: "Taur",
  9308. image: {
  9309. source: "./media/characters/aura-starwind/taur.svg",
  9310. extra: 1760 / 1650
  9311. }
  9312. },
  9313. feral: {
  9314. height: math.unit(46, "feet"),
  9315. weight: math.unit(25000, "kg"),
  9316. preyCapacity: math.unit(120, "people"),
  9317. name: "Feral",
  9318. image: {
  9319. source: "./media/characters/aura-starwind/feral.svg"
  9320. }
  9321. },
  9322. },
  9323. [
  9324. {
  9325. name: "Normal",
  9326. height: math.unit(14, "feet"),
  9327. default: true
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(50, "meters")
  9332. },
  9333. {
  9334. name: "Megamacro",
  9335. height: math.unit(5000, "meters")
  9336. },
  9337. {
  9338. name: "Gigamacro",
  9339. height: math.unit(100000, "kilometers")
  9340. },
  9341. ]
  9342. ))
  9343. characterMakers.push(() => makeCharacter(
  9344. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9345. {
  9346. front: {
  9347. height: math.unit(2 + 7 / 12, "feet"),
  9348. weight: math.unit(32, "lbs"),
  9349. name: "Front",
  9350. image: {
  9351. source: "./media/characters/rivet/front.svg",
  9352. extra: 1716 / 1658,
  9353. bottom: 0.03
  9354. }
  9355. },
  9356. foot: {
  9357. height: math.unit(0.551, "feet"),
  9358. name: "Rivet's Foot",
  9359. image: {
  9360. source: "./media/characters/rivet/foot.svg"
  9361. },
  9362. rename: true
  9363. }
  9364. },
  9365. [
  9366. {
  9367. name: "Micro",
  9368. height: math.unit(1.5, "inches"),
  9369. },
  9370. {
  9371. name: "Normal",
  9372. height: math.unit(2 + 7 / 12, "feet"),
  9373. default: true
  9374. },
  9375. {
  9376. name: "Macro",
  9377. height: math.unit(85, "feet")
  9378. },
  9379. {
  9380. name: "Megamacro",
  9381. height: math.unit(2.2, "km")
  9382. }
  9383. ]
  9384. ))
  9385. characterMakers.push(() => makeCharacter(
  9386. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9387. {
  9388. front: {
  9389. height: math.unit(5 + 9 / 12, "feet"),
  9390. weight: math.unit(150, "lbs"),
  9391. name: "Front",
  9392. image: {
  9393. source: "./media/characters/coffee/front.svg",
  9394. extra: 946/880,
  9395. bottom: 66/1012
  9396. }
  9397. },
  9398. foot: {
  9399. height: math.unit(1.29, "feet"),
  9400. name: "Foot",
  9401. image: {
  9402. source: "./media/characters/coffee/foot.svg"
  9403. }
  9404. },
  9405. },
  9406. [
  9407. {
  9408. name: "Micro",
  9409. height: math.unit(2, "inches"),
  9410. },
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(5 + 9 / 12, "feet"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Macro",
  9418. height: math.unit(800, "feet")
  9419. },
  9420. {
  9421. name: "Megamacro",
  9422. height: math.unit(25, "miles")
  9423. }
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(200, "lbs"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/chari-gal/front.svg",
  9435. extra: 1568 / 1385,
  9436. bottom: 0.047
  9437. }
  9438. },
  9439. gigantamax: {
  9440. height: math.unit(6 * 16, "feet"),
  9441. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9442. name: "Gigantamax",
  9443. image: {
  9444. source: "./media/characters/chari-gal/gigantamax.svg",
  9445. extra: 1124 / 888,
  9446. bottom: 0.03
  9447. }
  9448. },
  9449. },
  9450. [
  9451. {
  9452. name: "Normal",
  9453. height: math.unit(5 + 7 / 12, "feet")
  9454. },
  9455. {
  9456. name: "Macro",
  9457. height: math.unit(200, "feet"),
  9458. default: true
  9459. }
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(150, "lbs"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/nova/front.svg",
  9471. extra: 5000 / 4722,
  9472. bottom: 0.02
  9473. }
  9474. }
  9475. },
  9476. [
  9477. {
  9478. name: "Micro-",
  9479. height: math.unit(0.8, "inches")
  9480. },
  9481. {
  9482. name: "Micro",
  9483. height: math.unit(2, "inches"),
  9484. default: true
  9485. },
  9486. ]
  9487. ))
  9488. characterMakers.push(() => makeCharacter(
  9489. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9490. {
  9491. koboldFront: {
  9492. height: math.unit(3 + 1 / 12, "feet"),
  9493. weight: math.unit(21.7, "lbs"),
  9494. name: "Front",
  9495. image: {
  9496. source: "./media/characters/argent/kobold-front.svg",
  9497. extra: 1471 / 1331,
  9498. bottom: 100.8 / 1575.5
  9499. },
  9500. form: "kobold",
  9501. default: true
  9502. },
  9503. dragonFront: {
  9504. height: math.unit(75, "inches"),
  9505. name: "Front",
  9506. image: {
  9507. source: "./media/characters/argent/dragon-front.svg",
  9508. extra: 1389/1248,
  9509. bottom: 54/1443
  9510. },
  9511. form: "dragon",
  9512. },
  9513. dragonBack: {
  9514. height: math.unit(75, "inches"),
  9515. name: "Back",
  9516. image: {
  9517. source: "./media/characters/argent/dragon-back.svg",
  9518. extra: 1399/1271,
  9519. bottom: 23/1422
  9520. },
  9521. form: "dragon",
  9522. },
  9523. dragonDressed: {
  9524. height: math.unit(75, "inches"),
  9525. name: "Dressed",
  9526. image: {
  9527. source: "./media/characters/argent/dragon-dressed.svg",
  9528. extra: 1350/1215,
  9529. bottom: 26/1376
  9530. },
  9531. form: "dragon"
  9532. },
  9533. dragonHead: {
  9534. height: math.unit(23.5, "inches"),
  9535. name: "Head",
  9536. image: {
  9537. source: "./media/characters/argent/dragon-head.svg"
  9538. },
  9539. form: "dragon",
  9540. },
  9541. },
  9542. [
  9543. {
  9544. name: "Micro",
  9545. height: math.unit(2, "inches"),
  9546. form: "kobold",
  9547. },
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(3 + 1 / 12, "feet"),
  9551. form: "kobold",
  9552. default: true
  9553. },
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(120, "feet"),
  9557. form: "kobold",
  9558. },
  9559. {
  9560. name: "Speck",
  9561. height: math.unit(1, "mm"),
  9562. form: "dragon",
  9563. },
  9564. {
  9565. name: "Tiny",
  9566. height: math.unit(1, "cm"),
  9567. form: "dragon",
  9568. },
  9569. {
  9570. name: "Micro",
  9571. height: math.unit(5, "cm"),
  9572. form: "dragon",
  9573. },
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(75, "inches"),
  9577. form: "dragon",
  9578. default: true
  9579. },
  9580. {
  9581. name: "Extra Tall",
  9582. height: math.unit(9, "feet"),
  9583. form: "dragon",
  9584. },
  9585. {
  9586. name: "Inconvenient",
  9587. height: math.unit(5, "meters"),
  9588. form: "dragon",
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(70, "meters"),
  9593. form: "dragon",
  9594. },
  9595. {
  9596. name: "Macro+",
  9597. height: math.unit(250, "meters"),
  9598. form: "dragon",
  9599. },
  9600. {
  9601. name: "Megamacro",
  9602. height: math.unit(20, "km"),
  9603. form: "dragon",
  9604. },
  9605. {
  9606. name: "Mountainous",
  9607. height: math.unit(100, "km"),
  9608. form: "dragon",
  9609. },
  9610. {
  9611. name: "Continental",
  9612. height: math.unit(2, "megameters"),
  9613. form: "dragon",
  9614. },
  9615. {
  9616. name: "Too Big",
  9617. height: math.unit(900, "megameters"),
  9618. form: "dragon",
  9619. },
  9620. ],
  9621. {
  9622. "kobold": {
  9623. name: "Kobold",
  9624. default: true
  9625. },
  9626. "dragon": {
  9627. name: "Dragon",
  9628. },
  9629. }
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9633. {
  9634. lamp: {
  9635. height: math.unit(7 * 1559 / 989, "feet"),
  9636. name: "Magic Lamp",
  9637. image: {
  9638. source: "./media/characters/mira-al-cul/lamp.svg",
  9639. extra: 1617 / 1559
  9640. }
  9641. },
  9642. front: {
  9643. height: math.unit(7, "feet"),
  9644. name: "Front",
  9645. image: {
  9646. source: "./media/characters/mira-al-cul/front.svg",
  9647. extra: 1044 / 990
  9648. }
  9649. },
  9650. },
  9651. [
  9652. {
  9653. name: "Heavily Restricted",
  9654. height: math.unit(7 * 1559 / 989, "feet")
  9655. },
  9656. {
  9657. name: "Freshly Freed",
  9658. height: math.unit(50 * 1559 / 989, "feet")
  9659. },
  9660. {
  9661. name: "World Encompassing",
  9662. height: math.unit(10000 * 1559 / 989, "miles")
  9663. },
  9664. {
  9665. name: "Galactic",
  9666. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9667. },
  9668. {
  9669. name: "Palmed Universe",
  9670. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9671. default: true
  9672. },
  9673. {
  9674. name: "Multiversal Matriarch",
  9675. height: math.unit(8.87e10, "yottameters")
  9676. },
  9677. {
  9678. name: "Void Mother",
  9679. height: math.unit(3.14e110, "yottaparsecs")
  9680. },
  9681. {
  9682. name: "Toying with Transcendence",
  9683. height: math.unit(1e307, "meters")
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9689. {
  9690. front: {
  9691. height: math.unit(17 + 1 / 12, "feet"),
  9692. weight: math.unit(476.2 * 5, "lbs"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/kuro-shi-uchū/front.svg",
  9696. extra: 2329 / 1835,
  9697. bottom: 0.02
  9698. }
  9699. },
  9700. },
  9701. [
  9702. {
  9703. name: "Micro",
  9704. height: math.unit(2, "inches")
  9705. },
  9706. {
  9707. name: "Normal",
  9708. height: math.unit(12, "meters")
  9709. },
  9710. {
  9711. name: "Planetary",
  9712. height: math.unit(0.00929, "AU"),
  9713. default: true
  9714. },
  9715. {
  9716. name: "Universal",
  9717. height: math.unit(20, "gigaparsecs")
  9718. },
  9719. ]
  9720. ))
  9721. characterMakers.push(() => makeCharacter(
  9722. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9723. {
  9724. front: {
  9725. height: math.unit(5 + 2 / 12, "feet"),
  9726. weight: math.unit(120, "lbs"),
  9727. name: "Front",
  9728. image: {
  9729. source: "./media/characters/katherine/front.svg",
  9730. extra: 2075 / 1969
  9731. }
  9732. },
  9733. dress: {
  9734. height: math.unit(5 + 2 / 12, "feet"),
  9735. weight: math.unit(120, "lbs"),
  9736. name: "Dress",
  9737. image: {
  9738. source: "./media/characters/katherine/dress.svg",
  9739. extra: 2258 / 2064
  9740. }
  9741. },
  9742. },
  9743. [
  9744. {
  9745. name: "Micro",
  9746. height: math.unit(1, "inches"),
  9747. default: true
  9748. },
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(5 + 2 / 12, "feet")
  9752. },
  9753. {
  9754. name: "Macro",
  9755. height: math.unit(100, "meters")
  9756. },
  9757. {
  9758. name: "Megamacro",
  9759. height: math.unit(80, "miles")
  9760. },
  9761. ]
  9762. ))
  9763. characterMakers.push(() => makeCharacter(
  9764. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9765. {
  9766. front: {
  9767. height: math.unit(7 + 8 / 12, "feet"),
  9768. weight: math.unit(250, "lbs"),
  9769. name: "Front",
  9770. image: {
  9771. source: "./media/characters/yevis/front.svg",
  9772. extra: 1938 / 1755
  9773. }
  9774. }
  9775. },
  9776. [
  9777. {
  9778. name: "Mortal",
  9779. height: math.unit(7 + 8 / 12, "feet")
  9780. },
  9781. {
  9782. name: "Battle",
  9783. height: math.unit(25 + 11 / 12, "feet")
  9784. },
  9785. {
  9786. name: "Wrath",
  9787. height: math.unit(1654 + 11 / 12, "feet")
  9788. },
  9789. {
  9790. name: "Planet Destroyer",
  9791. height: math.unit(12000, "miles")
  9792. },
  9793. {
  9794. name: "Galaxy Conqueror",
  9795. height: math.unit(1.45, "zettameters"),
  9796. default: true
  9797. },
  9798. {
  9799. name: "Universal War",
  9800. height: math.unit(184, "gigaparsecs")
  9801. },
  9802. {
  9803. name: "Eternity War",
  9804. height: math.unit(1.98e55, "yottaparsecs")
  9805. },
  9806. ]
  9807. ))
  9808. characterMakers.push(() => makeCharacter(
  9809. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9810. {
  9811. front: {
  9812. height: math.unit(5 + 8 / 12, "feet"),
  9813. weight: math.unit(63, "kg"),
  9814. name: "Front",
  9815. image: {
  9816. source: "./media/characters/xavier/front.svg",
  9817. extra: 944 / 883
  9818. }
  9819. },
  9820. frontStretch: {
  9821. height: math.unit(5 + 8 / 12, "feet"),
  9822. weight: math.unit(63, "kg"),
  9823. name: "Stretching",
  9824. image: {
  9825. source: "./media/characters/xavier/front-stretch.svg",
  9826. extra: 962 / 820
  9827. }
  9828. },
  9829. },
  9830. [
  9831. {
  9832. name: "Normal",
  9833. height: math.unit(5 + 8 / 12, "feet")
  9834. },
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(100, "meters"),
  9838. default: true
  9839. },
  9840. {
  9841. name: "McLargeHuge",
  9842. height: math.unit(10, "miles")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(5 + 5 / 12, "feet"),
  9851. weight: math.unit(150, "lb"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/joshii/front.svg",
  9855. extra: 765 / 653,
  9856. bottom: 51 / 816
  9857. }
  9858. },
  9859. foot: {
  9860. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9861. name: "Foot",
  9862. image: {
  9863. source: "./media/characters/joshii/foot.svg"
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Micro",
  9870. height: math.unit(2, "inches")
  9871. },
  9872. {
  9873. name: "Normal",
  9874. height: math.unit(5 + 5 / 12, "feet")
  9875. },
  9876. {
  9877. name: "Macro",
  9878. height: math.unit(785, "feet"),
  9879. default: true
  9880. },
  9881. {
  9882. name: "Megamacro",
  9883. height: math.unit(24.5, "miles")
  9884. },
  9885. ]
  9886. ))
  9887. characterMakers.push(() => makeCharacter(
  9888. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9889. {
  9890. front: {
  9891. height: math.unit(6, "feet"),
  9892. weight: math.unit(150, "lb"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/goddess-elizabeth/front.svg",
  9896. extra: 1800 / 1525,
  9897. bottom: 0.005
  9898. }
  9899. },
  9900. foot: {
  9901. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9902. name: "Foot",
  9903. image: {
  9904. source: "./media/characters/goddess-elizabeth/foot.svg"
  9905. }
  9906. },
  9907. mouth: {
  9908. height: math.unit(6, "feet"),
  9909. name: "Mouth",
  9910. image: {
  9911. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Micro",
  9918. height: math.unit(12, "feet")
  9919. },
  9920. {
  9921. name: "Normal",
  9922. height: math.unit(80, "miles"),
  9923. default: true
  9924. },
  9925. {
  9926. name: "Macro",
  9927. height: math.unit(15000, "parsecs")
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9933. {
  9934. front: {
  9935. height: math.unit(5 + 9 / 12, "feet"),
  9936. weight: math.unit(144, "lb"),
  9937. name: "Front",
  9938. image: {
  9939. source: "./media/characters/kara/front.svg"
  9940. }
  9941. },
  9942. feet: {
  9943. height: math.unit(6 / 6.765, "feet"),
  9944. name: "Kara's Feet",
  9945. rename: true,
  9946. image: {
  9947. source: "./media/characters/kara/feet.svg"
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(5 + 9 / 12, "feet")
  9955. },
  9956. {
  9957. name: "Macro",
  9958. height: math.unit(174, "feet"),
  9959. default: true
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9965. {
  9966. front: {
  9967. height: math.unit(18, "feet"),
  9968. weight: math.unit(4050, "lb"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/tyrone/front.svg",
  9972. extra: 2405 / 2270,
  9973. bottom: 182 / 2587
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(18, "feet"),
  9981. default: true
  9982. },
  9983. {
  9984. name: "Macro",
  9985. height: math.unit(300, "feet")
  9986. },
  9987. {
  9988. name: "Megamacro",
  9989. height: math.unit(15, "km")
  9990. },
  9991. {
  9992. name: "Gigamacro",
  9993. height: math.unit(500, "km")
  9994. },
  9995. {
  9996. name: "Teramacro",
  9997. height: math.unit(0.5, "gigameters")
  9998. },
  9999. {
  10000. name: "Omnimacro",
  10001. height: math.unit(1e252, "yottauniverse")
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(7 + 8 / 12, "feet"),
  10010. weight: math.unit(120, "lb"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/danny/front.svg",
  10014. extra: 1490 / 1350
  10015. }
  10016. },
  10017. back: {
  10018. height: math.unit(7 + 8 / 12, "feet"),
  10019. weight: math.unit(120, "lb"),
  10020. name: "Back",
  10021. image: {
  10022. source: "./media/characters/danny/back.svg",
  10023. extra: 1490 / 1350
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Normal",
  10030. height: math.unit(7 + 8 / 12, "feet"),
  10031. default: true
  10032. },
  10033. ]
  10034. ))
  10035. characterMakers.push(() => makeCharacter(
  10036. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10037. {
  10038. front: {
  10039. height: math.unit(3.5, "inches"),
  10040. weight: math.unit(19, "grams"),
  10041. name: "Front",
  10042. image: {
  10043. source: "./media/characters/mallow/front.svg",
  10044. extra: 471 / 431
  10045. }
  10046. },
  10047. back: {
  10048. height: math.unit(3.5, "inches"),
  10049. weight: math.unit(19, "grams"),
  10050. name: "Back",
  10051. image: {
  10052. source: "./media/characters/mallow/back.svg",
  10053. extra: 471 / 431
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Normal",
  10060. height: math.unit(3.5, "inches"),
  10061. default: true
  10062. },
  10063. ]
  10064. ))
  10065. characterMakers.push(() => makeCharacter(
  10066. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10067. {
  10068. front: {
  10069. height: math.unit(9, "feet"),
  10070. weight: math.unit(230, "kg"),
  10071. name: "Front",
  10072. image: {
  10073. source: "./media/characters/starry-aqua/front.svg"
  10074. }
  10075. },
  10076. back: {
  10077. height: math.unit(9, "feet"),
  10078. weight: math.unit(230, "kg"),
  10079. name: "Back",
  10080. image: {
  10081. source: "./media/characters/starry-aqua/back.svg"
  10082. }
  10083. },
  10084. hand: {
  10085. height: math.unit(9 * 0.1168, "feet"),
  10086. name: "Hand",
  10087. image: {
  10088. source: "./media/characters/starry-aqua/hand.svg"
  10089. }
  10090. },
  10091. foot: {
  10092. height: math.unit(9 * 0.18, "feet"),
  10093. name: "Foot",
  10094. image: {
  10095. source: "./media/characters/starry-aqua/foot.svg"
  10096. }
  10097. }
  10098. },
  10099. [
  10100. {
  10101. name: "Micro",
  10102. height: math.unit(3, "inches")
  10103. },
  10104. {
  10105. name: "Normal",
  10106. height: math.unit(9, "feet")
  10107. },
  10108. {
  10109. name: "Macro",
  10110. height: math.unit(300, "feet"),
  10111. default: true
  10112. },
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(3200, "feet")
  10116. }
  10117. ]
  10118. ))
  10119. characterMakers.push(() => makeCharacter(
  10120. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10121. {
  10122. front: {
  10123. height: math.unit(15, "feet"),
  10124. weight: math.unit(5026, "lb"),
  10125. name: "Front",
  10126. image: {
  10127. source: "./media/characters/luka-towers/front.svg",
  10128. extra: 1269/1133,
  10129. bottom: 51/1320
  10130. }
  10131. },
  10132. },
  10133. [
  10134. {
  10135. name: "Normal",
  10136. height: math.unit(15, "feet"),
  10137. default: true
  10138. },
  10139. {
  10140. name: "Minimacro",
  10141. height: math.unit(25, "feet")
  10142. },
  10143. {
  10144. name: "Macro",
  10145. height: math.unit(320, "feet")
  10146. },
  10147. {
  10148. name: "Megamacro",
  10149. height: math.unit(35000, "feet")
  10150. },
  10151. {
  10152. name: "Gigamacro",
  10153. height: math.unit(4000, "miles")
  10154. },
  10155. {
  10156. name: "Teramacro",
  10157. height: math.unit(15000, "miles")
  10158. },
  10159. ]
  10160. ))
  10161. characterMakers.push(() => makeCharacter(
  10162. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10163. {
  10164. front: {
  10165. height: math.unit(6, "feet"),
  10166. weight: math.unit(150, "lb"),
  10167. name: "Front",
  10168. image: {
  10169. source: "./media/characters/natalie-nightring/front.svg",
  10170. extra: 1,
  10171. bottom: 0.06
  10172. }
  10173. },
  10174. },
  10175. [
  10176. {
  10177. name: "Uh Oh",
  10178. height: math.unit(0.1, "mm")
  10179. },
  10180. {
  10181. name: "Small",
  10182. height: math.unit(3, "inches")
  10183. },
  10184. {
  10185. name: "Human Scale",
  10186. height: math.unit(6, "feet")
  10187. },
  10188. {
  10189. name: "Librarian",
  10190. height: math.unit(50, "feet"),
  10191. default: true
  10192. },
  10193. {
  10194. name: "Immense",
  10195. height: math.unit(200, "miles")
  10196. },
  10197. ]
  10198. ))
  10199. characterMakers.push(() => makeCharacter(
  10200. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10201. {
  10202. front: {
  10203. height: math.unit(6, "feet"),
  10204. weight: math.unit(180, "lbs"),
  10205. name: "Front",
  10206. image: {
  10207. source: "./media/characters/danni-rosie/front.svg",
  10208. extra: 1260 / 1128,
  10209. bottom: 0.022
  10210. }
  10211. },
  10212. },
  10213. [
  10214. {
  10215. name: "Micro",
  10216. height: math.unit(2, "inches"),
  10217. default: true
  10218. },
  10219. ]
  10220. ))
  10221. characterMakers.push(() => makeCharacter(
  10222. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10223. {
  10224. front: {
  10225. height: math.unit(5 + 9 / 12, "feet"),
  10226. weight: math.unit(220, "lb"),
  10227. name: "Front",
  10228. image: {
  10229. source: "./media/characters/samantha-kruse/front.svg",
  10230. extra: (985 / 935),
  10231. bottom: 0.03
  10232. }
  10233. },
  10234. frontUndressed: {
  10235. height: math.unit(5 + 9 / 12, "feet"),
  10236. weight: math.unit(220, "lb"),
  10237. name: "Front (Undressed)",
  10238. image: {
  10239. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10240. extra: (973 / 923),
  10241. bottom: 0.025
  10242. }
  10243. },
  10244. fat: {
  10245. height: math.unit(5 + 9 / 12, "feet"),
  10246. weight: math.unit(900, "lb"),
  10247. name: "Front (Fat)",
  10248. image: {
  10249. source: "./media/characters/samantha-kruse/fat.svg",
  10250. extra: 2688 / 2561
  10251. }
  10252. },
  10253. },
  10254. [
  10255. {
  10256. name: "Normal",
  10257. height: math.unit(5 + 9 / 12, "feet"),
  10258. default: true
  10259. }
  10260. ]
  10261. ))
  10262. characterMakers.push(() => makeCharacter(
  10263. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10264. {
  10265. back: {
  10266. height: math.unit(5 + 4 / 12, "feet"),
  10267. weight: math.unit(4963, "lb"),
  10268. name: "Back",
  10269. image: {
  10270. source: "./media/characters/amelia-rosie/back.svg",
  10271. extra: 1113 / 963,
  10272. bottom: 0.01
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Level 0",
  10279. height: math.unit(5 + 4 / 12, "feet")
  10280. },
  10281. {
  10282. name: "Level 1",
  10283. height: math.unit(164597, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Level 2",
  10288. height: math.unit(956243, "miles")
  10289. },
  10290. {
  10291. name: "Level 3",
  10292. height: math.unit(29421709423, "miles")
  10293. },
  10294. {
  10295. name: "Level 4",
  10296. height: math.unit(154, "lightyears")
  10297. },
  10298. {
  10299. name: "Level 5",
  10300. height: math.unit(4738272, "lightyears")
  10301. },
  10302. {
  10303. name: "Level 6",
  10304. height: math.unit(145787152896, "lightyears")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(5 + 11 / 12, "feet"),
  10313. weight: math.unit(65, "kg"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/rook-kitara/front.svg",
  10317. extra: 1347 / 1274,
  10318. bottom: 0.005
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Totally Unfair",
  10325. height: math.unit(1.8, "mm")
  10326. },
  10327. {
  10328. name: "Lap Rookie",
  10329. height: math.unit(1.4, "feet")
  10330. },
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(5 + 11 / 12, "feet"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "How Did This Happen",
  10338. height: math.unit(80, "miles")
  10339. }
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(7, "feet"),
  10347. weight: math.unit(300, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/pisces/front.svg",
  10351. extra: 2255 / 2115,
  10352. bottom: 0.03
  10353. }
  10354. },
  10355. back: {
  10356. height: math.unit(7, "feet"),
  10357. weight: math.unit(300, "lb"),
  10358. name: "Back",
  10359. image: {
  10360. source: "./media/characters/pisces/back.svg",
  10361. extra: 2146 / 2055,
  10362. bottom: 0.04
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Normal",
  10369. height: math.unit(7, "feet"),
  10370. default: true
  10371. },
  10372. {
  10373. name: "Swimming Pool",
  10374. height: math.unit(12.2, "meters")
  10375. },
  10376. {
  10377. name: "Olympic Swimming Pool",
  10378. height: math.unit(56.3, "meters")
  10379. },
  10380. {
  10381. name: "Lake Superior",
  10382. height: math.unit(93900, "meters")
  10383. },
  10384. {
  10385. name: "Mediterranean Sea",
  10386. height: math.unit(644457, "meters")
  10387. },
  10388. {
  10389. name: "World's Oceans",
  10390. height: math.unit(4567491, "meters")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(2.3, "meters"),
  10399. weight: math.unit(120, "kg"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/zelas/front.svg"
  10403. }
  10404. },
  10405. side: {
  10406. height: math.unit(2.3, "meters"),
  10407. weight: math.unit(120, "kg"),
  10408. name: "Side",
  10409. image: {
  10410. source: "./media/characters/zelas/side.svg"
  10411. }
  10412. },
  10413. back: {
  10414. height: math.unit(2.3, "meters"),
  10415. weight: math.unit(120, "kg"),
  10416. name: "Back",
  10417. image: {
  10418. source: "./media/characters/zelas/back.svg"
  10419. }
  10420. },
  10421. foot: {
  10422. height: math.unit(1.116, "feet"),
  10423. name: "Foot",
  10424. image: {
  10425. source: "./media/characters/zelas/foot.svg"
  10426. }
  10427. },
  10428. },
  10429. [
  10430. {
  10431. name: "Normal",
  10432. height: math.unit(2.3, "meters")
  10433. },
  10434. {
  10435. name: "Macro",
  10436. height: math.unit(30, "meters"),
  10437. default: true
  10438. },
  10439. ]
  10440. ))
  10441. characterMakers.push(() => makeCharacter(
  10442. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10443. {
  10444. front: {
  10445. height: math.unit(1, "inch"),
  10446. weight: math.unit(0.21, "grams"),
  10447. name: "Front",
  10448. image: {
  10449. source: "./media/characters/talbot/front.svg",
  10450. extra: 594 / 544
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Micro",
  10457. height: math.unit(1, "inch"),
  10458. default: true
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10464. {
  10465. front: {
  10466. height: math.unit(3 + 3 / 12, "feet"),
  10467. weight: math.unit(51.8, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/fliss/front.svg",
  10471. extra: 840 / 640
  10472. }
  10473. },
  10474. },
  10475. [
  10476. {
  10477. name: "Teeny Tiny",
  10478. height: math.unit(1, "mm")
  10479. },
  10480. {
  10481. name: "Small",
  10482. height: math.unit(1, "inch"),
  10483. default: true
  10484. },
  10485. {
  10486. name: "Standard Sylveon",
  10487. height: math.unit(3 + 3 / 12, "feet")
  10488. },
  10489. {
  10490. name: "Large Nuisance",
  10491. height: math.unit(33, "feet")
  10492. },
  10493. {
  10494. name: "City Filler",
  10495. height: math.unit(3000, "feet")
  10496. },
  10497. {
  10498. name: "New Horizon",
  10499. height: math.unit(6000, "miles")
  10500. },
  10501. ]
  10502. ))
  10503. characterMakers.push(() => makeCharacter(
  10504. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10505. {
  10506. front: {
  10507. height: math.unit(5, "cm"),
  10508. weight: math.unit(1.94, "g"),
  10509. name: "Front",
  10510. image: {
  10511. source: "./media/characters/fleta/front.svg",
  10512. extra: 835 / 803
  10513. }
  10514. },
  10515. back: {
  10516. height: math.unit(5, "cm"),
  10517. weight: math.unit(1.94, "g"),
  10518. name: "Back",
  10519. image: {
  10520. source: "./media/characters/fleta/back.svg",
  10521. extra: 835 / 803
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Micro",
  10528. height: math.unit(5, "cm"),
  10529. default: true
  10530. },
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(6, "feet"),
  10538. weight: math.unit(225, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/dominic/front.svg",
  10542. extra: 1770 / 1620,
  10543. bottom: 0.025
  10544. }
  10545. },
  10546. back: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(225, "lb"),
  10549. name: "Back",
  10550. image: {
  10551. source: "./media/characters/dominic/back.svg",
  10552. extra: 1745 / 1620,
  10553. bottom: 0.065
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Nano",
  10560. height: math.unit(0.1, "mm")
  10561. },
  10562. {
  10563. name: "Micro-",
  10564. height: math.unit(1, "mm")
  10565. },
  10566. {
  10567. name: "Micro",
  10568. height: math.unit(4, "inches")
  10569. },
  10570. {
  10571. name: "Normal",
  10572. height: math.unit(6 + 4 / 12, "feet"),
  10573. default: true
  10574. },
  10575. {
  10576. name: "Macro",
  10577. height: math.unit(115, "feet")
  10578. },
  10579. {
  10580. name: "Macro+",
  10581. height: math.unit(955, "feet")
  10582. },
  10583. {
  10584. name: "Megamacro",
  10585. height: math.unit(8990, "feet")
  10586. },
  10587. {
  10588. name: "Gigmacro",
  10589. height: math.unit(9310, "miles")
  10590. },
  10591. {
  10592. name: "Teramacro",
  10593. height: math.unit(1567005010, "miles")
  10594. },
  10595. {
  10596. name: "Examacro",
  10597. height: math.unit(1425, "parsecs")
  10598. },
  10599. ]
  10600. ))
  10601. characterMakers.push(() => makeCharacter(
  10602. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10603. {
  10604. front: {
  10605. height: math.unit(400, "feet"),
  10606. weight: math.unit(44444444, "lb"),
  10607. name: "Front",
  10608. image: {
  10609. source: "./media/characters/major-colonel/front.svg"
  10610. }
  10611. },
  10612. back: {
  10613. height: math.unit(400, "feet"),
  10614. weight: math.unit(44444444, "lb"),
  10615. name: "Back",
  10616. image: {
  10617. source: "./media/characters/major-colonel/back.svg"
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Macro",
  10624. height: math.unit(400, "feet"),
  10625. default: true
  10626. },
  10627. ]
  10628. ))
  10629. characterMakers.push(() => makeCharacter(
  10630. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10631. {
  10632. catFront: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(120, "lb"),
  10635. name: "Front (Cat Side)",
  10636. image: {
  10637. source: "./media/characters/axel-lycan/cat-front.svg",
  10638. extra: 430 / 402,
  10639. bottom: 43 / 472.35
  10640. }
  10641. },
  10642. catBack: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(120, "lb"),
  10645. name: "Back (Cat Side)",
  10646. image: {
  10647. source: "./media/characters/axel-lycan/cat-back.svg",
  10648. extra: 447 / 419,
  10649. bottom: 23.3 / 469
  10650. }
  10651. },
  10652. wolfFront: {
  10653. height: math.unit(6, "feet"),
  10654. weight: math.unit(120, "lb"),
  10655. name: "Front (Wolf Side)",
  10656. image: {
  10657. source: "./media/characters/axel-lycan/wolf-front.svg",
  10658. extra: 485 / 456,
  10659. bottom: 19 / 504
  10660. }
  10661. },
  10662. wolfBack: {
  10663. height: math.unit(6, "feet"),
  10664. weight: math.unit(120, "lb"),
  10665. name: "Back (Wolf Side)",
  10666. image: {
  10667. source: "./media/characters/axel-lycan/wolf-back.svg",
  10668. extra: 475 / 438,
  10669. bottom: 39.2 / 514
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Macro",
  10676. height: math.unit(1, "km"),
  10677. default: true
  10678. },
  10679. ]
  10680. ))
  10681. characterMakers.push(() => makeCharacter(
  10682. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10683. {
  10684. front: {
  10685. height: math.unit(5 + 9 / 12, "feet"),
  10686. weight: math.unit(175, "lb"),
  10687. name: "Front",
  10688. image: {
  10689. source: "./media/characters/vanrel-hyena/front.svg",
  10690. extra: 1086 / 1010,
  10691. bottom: 0.04
  10692. }
  10693. },
  10694. },
  10695. [
  10696. {
  10697. name: "Normal",
  10698. height: math.unit(5 + 9 / 12, "feet"),
  10699. default: true
  10700. },
  10701. ]
  10702. ))
  10703. characterMakers.push(() => makeCharacter(
  10704. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10705. {
  10706. front: {
  10707. height: math.unit(6, "feet"),
  10708. weight: math.unit(103, "lb"),
  10709. name: "Front",
  10710. image: {
  10711. source: "./media/characters/abbott-absol/front.svg",
  10712. extra: 2010 / 1842
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Megamicro",
  10719. height: math.unit(0.1, "mm")
  10720. },
  10721. {
  10722. name: "Micro",
  10723. height: math.unit(1, "inch")
  10724. },
  10725. {
  10726. name: "Normal",
  10727. height: math.unit(6, "feet"),
  10728. default: true
  10729. },
  10730. ]
  10731. ))
  10732. characterMakers.push(() => makeCharacter(
  10733. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10734. {
  10735. front: {
  10736. height: math.unit(6, "feet"),
  10737. weight: math.unit(264, "lb"),
  10738. name: "Front",
  10739. image: {
  10740. source: "./media/characters/hector/front.svg",
  10741. extra: 2280 / 2130,
  10742. bottom: 0.07
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(12.25, "foot"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(160, "feet")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(6, "feet"),
  10763. weight: math.unit(150, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/sal/front.svg",
  10767. extra: 1846 / 1699,
  10768. bottom: 0.04
  10769. }
  10770. },
  10771. },
  10772. [
  10773. {
  10774. name: "Megamacro",
  10775. height: math.unit(10, "miles"),
  10776. default: true
  10777. },
  10778. ]
  10779. ))
  10780. characterMakers.push(() => makeCharacter(
  10781. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10782. {
  10783. front: {
  10784. height: math.unit(3, "meters"),
  10785. weight: math.unit(450, "kg"),
  10786. name: "front",
  10787. image: {
  10788. source: "./media/characters/ranger/front.svg",
  10789. extra: 2401 / 2243,
  10790. bottom: 0.05
  10791. }
  10792. },
  10793. },
  10794. [
  10795. {
  10796. name: "Normal",
  10797. height: math.unit(3, "meters"),
  10798. default: true
  10799. },
  10800. ]
  10801. ))
  10802. characterMakers.push(() => makeCharacter(
  10803. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10804. {
  10805. front: {
  10806. height: math.unit(14, "feet"),
  10807. weight: math.unit(800, "kg"),
  10808. name: "Front",
  10809. image: {
  10810. source: "./media/characters/theresa/front.svg",
  10811. extra: 3575 / 3346,
  10812. bottom: 0.03
  10813. }
  10814. },
  10815. },
  10816. [
  10817. {
  10818. name: "Normal",
  10819. height: math.unit(14, "feet"),
  10820. default: true
  10821. },
  10822. ]
  10823. ))
  10824. characterMakers.push(() => makeCharacter(
  10825. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10826. {
  10827. front: {
  10828. height: math.unit(6, "feet"),
  10829. weight: math.unit(3, "kg"),
  10830. name: "Front",
  10831. image: {
  10832. source: "./media/characters/ine/front.svg",
  10833. extra: 678 / 539,
  10834. bottom: 0.023
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(2.265, "feet"),
  10842. default: true
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10848. {
  10849. front: {
  10850. height: math.unit(5, "feet"),
  10851. weight: math.unit(30, "kg"),
  10852. name: "Front",
  10853. image: {
  10854. source: "./media/characters/vial/front.svg",
  10855. extra: 1365 / 1277,
  10856. bottom: 0.04
  10857. }
  10858. },
  10859. },
  10860. [
  10861. {
  10862. name: "Normal",
  10863. height: math.unit(5, "feet"),
  10864. default: true
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10870. {
  10871. side: {
  10872. height: math.unit(3.4, "meters"),
  10873. weight: math.unit(1000, "lb"),
  10874. name: "Side",
  10875. image: {
  10876. source: "./media/characters/rovoska/side.svg",
  10877. extra: 4403 / 1515
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Normal",
  10884. height: math.unit(3.4, "meters"),
  10885. default: true
  10886. },
  10887. ]
  10888. ))
  10889. characterMakers.push(() => makeCharacter(
  10890. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10891. {
  10892. front: {
  10893. height: math.unit(8, "feet"),
  10894. weight: math.unit(315, "lb"),
  10895. name: "Front",
  10896. image: {
  10897. source: "./media/characters/gunner-rotthbauer/front.svg"
  10898. }
  10899. },
  10900. back: {
  10901. height: math.unit(8, "feet"),
  10902. weight: math.unit(315, "lb"),
  10903. name: "Back",
  10904. image: {
  10905. source: "./media/characters/gunner-rotthbauer/back.svg"
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Micro",
  10912. height: math.unit(3.5, "inches")
  10913. },
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(8, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Macro",
  10921. height: math.unit(250, "feet")
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(1, "AU")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(5 + 5 / 12, "feet"),
  10934. weight: math.unit(140, "lb"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/allatia/front.svg",
  10938. extra: 1227 / 1180,
  10939. bottom: 0.027
  10940. }
  10941. },
  10942. },
  10943. [
  10944. {
  10945. name: "Normal",
  10946. height: math.unit(5 + 5 / 12, "feet")
  10947. },
  10948. {
  10949. name: "Macro",
  10950. height: math.unit(250, "feet"),
  10951. default: true
  10952. },
  10953. {
  10954. name: "Megamacro",
  10955. height: math.unit(8, "miles")
  10956. }
  10957. ]
  10958. ))
  10959. characterMakers.push(() => makeCharacter(
  10960. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10961. {
  10962. front: {
  10963. height: math.unit(6, "feet"),
  10964. weight: math.unit(120, "lb"),
  10965. name: "Front",
  10966. image: {
  10967. source: "./media/characters/tene/front.svg",
  10968. extra: 814/750,
  10969. bottom: 36/850
  10970. }
  10971. },
  10972. stomping: {
  10973. height: math.unit(2.025, "meters"),
  10974. weight: math.unit(120, "lb"),
  10975. name: "Stomping",
  10976. image: {
  10977. source: "./media/characters/tene/stomping.svg",
  10978. extra: 885/821,
  10979. bottom: 15/900
  10980. }
  10981. },
  10982. sitting: {
  10983. height: math.unit(1, "meter"),
  10984. weight: math.unit(120, "lb"),
  10985. name: "Sitting",
  10986. image: {
  10987. source: "./media/characters/tene/sitting.svg",
  10988. extra: 396/366,
  10989. bottom: 79/475
  10990. }
  10991. },
  10992. smiling: {
  10993. height: math.unit(1.2, "feet"),
  10994. name: "Smiling",
  10995. image: {
  10996. source: "./media/characters/tene/smiling.svg",
  10997. extra: 1364/1071,
  10998. bottom: 0/1364
  10999. }
  11000. },
  11001. smug: {
  11002. height: math.unit(1.3, "feet"),
  11003. name: "Smug",
  11004. image: {
  11005. source: "./media/characters/tene/smug.svg",
  11006. extra: 1323/1082,
  11007. bottom: 0/1323
  11008. }
  11009. },
  11010. feral: {
  11011. height: math.unit(3.9, "feet"),
  11012. weight: math.unit(250, "lb"),
  11013. name: "Feral",
  11014. image: {
  11015. source: "./media/characters/tene/feral.svg",
  11016. extra: 717 / 458,
  11017. bottom: 0.179
  11018. }
  11019. },
  11020. },
  11021. [
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(6, "feet")
  11025. },
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(300, "feet"),
  11029. default: true
  11030. },
  11031. {
  11032. name: "Megamacro",
  11033. height: math.unit(5, "miles")
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11039. {
  11040. side: {
  11041. height: math.unit(6, "feet"),
  11042. name: "Side",
  11043. image: {
  11044. source: "./media/characters/evander/side.svg",
  11045. extra: 877 / 477
  11046. }
  11047. },
  11048. },
  11049. [
  11050. {
  11051. name: "Normal",
  11052. height: math.unit(0.83, "meters"),
  11053. default: true
  11054. },
  11055. ]
  11056. ))
  11057. characterMakers.push(() => makeCharacter(
  11058. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11059. {
  11060. front: {
  11061. height: math.unit(12, "feet"),
  11062. weight: math.unit(1000, "lb"),
  11063. name: "Front",
  11064. image: {
  11065. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11066. extra: 1762 / 1611
  11067. }
  11068. },
  11069. back: {
  11070. height: math.unit(12, "feet"),
  11071. weight: math.unit(1000, "lb"),
  11072. name: "Back",
  11073. image: {
  11074. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11075. extra: 1762 / 1611
  11076. }
  11077. },
  11078. },
  11079. [
  11080. {
  11081. name: "Normal",
  11082. height: math.unit(12, "feet"),
  11083. default: true
  11084. },
  11085. {
  11086. name: "Kaiju",
  11087. height: math.unit(150, "feet")
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(150, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/zero-alurus/front.svg"
  11100. }
  11101. },
  11102. back: {
  11103. height: math.unit(6, "feet"),
  11104. weight: math.unit(150, "lb"),
  11105. name: "Back",
  11106. image: {
  11107. source: "./media/characters/zero-alurus/back.svg"
  11108. }
  11109. },
  11110. },
  11111. [
  11112. {
  11113. name: "Normal",
  11114. height: math.unit(5 + 10 / 12, "feet")
  11115. },
  11116. {
  11117. name: "Macro",
  11118. height: math.unit(60, "feet"),
  11119. default: true
  11120. },
  11121. {
  11122. name: "Macro+",
  11123. height: math.unit(450, "feet")
  11124. },
  11125. ]
  11126. ))
  11127. characterMakers.push(() => makeCharacter(
  11128. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11129. {
  11130. front: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(200, "lb"),
  11133. name: "Front",
  11134. image: {
  11135. source: "./media/characters/mega-shi/front.svg",
  11136. extra: 1279 / 1250,
  11137. bottom: 0.02
  11138. }
  11139. },
  11140. back: {
  11141. height: math.unit(6, "feet"),
  11142. weight: math.unit(200, "lb"),
  11143. name: "Back",
  11144. image: {
  11145. source: "./media/characters/mega-shi/back.svg",
  11146. extra: 1279 / 1250,
  11147. bottom: 0.02
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Micro",
  11154. height: math.unit(16 + 6 / 12, "feet")
  11155. },
  11156. {
  11157. name: "Third Dimension",
  11158. height: math.unit(40, "meters")
  11159. },
  11160. {
  11161. name: "Normal",
  11162. height: math.unit(660, "feet"),
  11163. default: true
  11164. },
  11165. {
  11166. name: "Megamacro",
  11167. height: math.unit(10, "miles")
  11168. },
  11169. {
  11170. name: "Planetary Launch",
  11171. height: math.unit(500, "miles")
  11172. },
  11173. {
  11174. name: "Interstellar",
  11175. height: math.unit(1e9, "miles")
  11176. },
  11177. {
  11178. name: "Leaving the Universe",
  11179. height: math.unit(1, "gigaparsec")
  11180. },
  11181. {
  11182. name: "Travelling Universes",
  11183. height: math.unit(30e15, "parsecs")
  11184. },
  11185. ]
  11186. ))
  11187. characterMakers.push(() => makeCharacter(
  11188. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11189. {
  11190. front: {
  11191. height: math.unit(5 + 4/12, "feet"),
  11192. weight: math.unit(120, "lb"),
  11193. name: "Front",
  11194. image: {
  11195. source: "./media/characters/odyssey/front.svg",
  11196. extra: 1747/1571,
  11197. bottom: 47/1794
  11198. }
  11199. },
  11200. side: {
  11201. height: math.unit(5.1, "feet"),
  11202. weight: math.unit(120, "lb"),
  11203. name: "Side",
  11204. image: {
  11205. source: "./media/characters/odyssey/side.svg",
  11206. extra: 1847/1619,
  11207. bottom: 47/1894
  11208. }
  11209. },
  11210. lounging: {
  11211. height: math.unit(1.464, "feet"),
  11212. weight: math.unit(120, "lb"),
  11213. name: "Lounging",
  11214. image: {
  11215. source: "./media/characters/odyssey/lounging.svg",
  11216. extra: 1235/837,
  11217. bottom: 551/1786
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(5 + 4 / 12, "feet")
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(1, "km")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(3000, "km")
  11233. },
  11234. {
  11235. name: "Gigamacro",
  11236. height: math.unit(1, "AU"),
  11237. default: true
  11238. },
  11239. {
  11240. name: "Omniversal",
  11241. height: math.unit(100e14, "lightyears")
  11242. },
  11243. ]
  11244. ))
  11245. characterMakers.push(() => makeCharacter(
  11246. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11247. {
  11248. front: {
  11249. height: math.unit(5 + 10/12, "feet"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/mekuto/front.svg",
  11253. extra: 875/835,
  11254. bottom: 46/921
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Minimicro",
  11261. height: math.unit(0.2, "inches")
  11262. },
  11263. {
  11264. name: "Micro",
  11265. height: math.unit(1.5, "inches")
  11266. },
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(5 + 10 / 12, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Minimacro",
  11274. height: math.unit(17 + 9 / 12, "feet")
  11275. },
  11276. {
  11277. name: "Macro",
  11278. height: math.unit(177.5, "feet")
  11279. },
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(152, "miles")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(6.5, "inches"),
  11291. weight: math.unit(13, "oz"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/dafydd-tomos/front.svg",
  11295. extra: 2990 / 2603,
  11296. bottom: 0.03
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(6.5, "inches"),
  11304. default: true
  11305. },
  11306. ]
  11307. ))
  11308. characterMakers.push(() => makeCharacter(
  11309. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11310. {
  11311. front: {
  11312. height: math.unit(6, "feet"),
  11313. weight: math.unit(150, "lb"),
  11314. name: "Front",
  11315. image: {
  11316. source: "./media/characters/splinter/front.svg",
  11317. extra: 2990 / 2882,
  11318. bottom: 0.04
  11319. }
  11320. },
  11321. back: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(150, "lb"),
  11324. name: "Back",
  11325. image: {
  11326. source: "./media/characters/splinter/back.svg",
  11327. extra: 2990 / 2882,
  11328. bottom: 0.04
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Normal",
  11335. height: math.unit(6, "feet")
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(230, "meters"),
  11340. default: true
  11341. },
  11342. ]
  11343. ))
  11344. characterMakers.push(() => makeCharacter(
  11345. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11346. {
  11347. front: {
  11348. height: math.unit(4 + 10 / 12, "feet"),
  11349. weight: math.unit(480, "lb"),
  11350. name: "Front",
  11351. image: {
  11352. source: "./media/characters/snow-gabumon/front.svg",
  11353. extra: 1140 / 963,
  11354. bottom: 0.058
  11355. }
  11356. },
  11357. back: {
  11358. height: math.unit(4 + 10 / 12, "feet"),
  11359. weight: math.unit(480, "lb"),
  11360. name: "Back",
  11361. image: {
  11362. source: "./media/characters/snow-gabumon/back.svg",
  11363. extra: 1115 / 962,
  11364. bottom: 0.041
  11365. }
  11366. },
  11367. frontUndresed: {
  11368. height: math.unit(4 + 10 / 12, "feet"),
  11369. weight: math.unit(480, "lb"),
  11370. name: "Front (Undressed)",
  11371. image: {
  11372. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11373. extra: 1061 / 960,
  11374. bottom: 0.045
  11375. }
  11376. },
  11377. },
  11378. [
  11379. {
  11380. name: "Micro",
  11381. height: math.unit(1, "inch")
  11382. },
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(4 + 10 / 12, "feet"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Macro",
  11390. height: math.unit(200, "feet")
  11391. },
  11392. {
  11393. name: "Megamacro",
  11394. height: math.unit(120, "miles")
  11395. },
  11396. {
  11397. name: "Gigamacro",
  11398. height: math.unit(9800, "miles")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11404. {
  11405. front: {
  11406. height: math.unit(1.7, "meters"),
  11407. weight: math.unit(140, "lb"),
  11408. name: "Front",
  11409. image: {
  11410. source: "./media/characters/moody/front.svg",
  11411. extra: 3226 / 3007,
  11412. bottom: 0.087
  11413. }
  11414. },
  11415. },
  11416. [
  11417. {
  11418. name: "Micro",
  11419. height: math.unit(1, "mm")
  11420. },
  11421. {
  11422. name: "Normal",
  11423. height: math.unit(1.7, "meters"),
  11424. default: true
  11425. },
  11426. {
  11427. name: "Macro",
  11428. height: math.unit(80, "meters")
  11429. },
  11430. {
  11431. name: "Macro+",
  11432. height: math.unit(500, "meters")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(6, "feet"),
  11441. weight: math.unit(150, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/zyas/front.svg",
  11445. extra: 1180 / 1120,
  11446. bottom: 0.045
  11447. }
  11448. },
  11449. },
  11450. [
  11451. {
  11452. name: "Normal",
  11453. height: math.unit(10, "feet"),
  11454. default: true
  11455. },
  11456. {
  11457. name: "Macro",
  11458. height: math.unit(500, "feet")
  11459. },
  11460. {
  11461. name: "Megamacro",
  11462. height: math.unit(5, "miles")
  11463. },
  11464. {
  11465. name: "Teramacro",
  11466. height: math.unit(150000, "miles")
  11467. },
  11468. ]
  11469. ))
  11470. characterMakers.push(() => makeCharacter(
  11471. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11472. {
  11473. front: {
  11474. height: math.unit(6, "feet"),
  11475. weight: math.unit(150, "lb"),
  11476. name: "Front",
  11477. image: {
  11478. source: "./media/characters/cuon/front.svg",
  11479. extra: 1390 / 1320,
  11480. bottom: 0.008
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Micro",
  11487. height: math.unit(3, "inches")
  11488. },
  11489. {
  11490. name: "Normal",
  11491. height: math.unit(18 + 9 / 12, "feet"),
  11492. default: true
  11493. },
  11494. {
  11495. name: "Macro",
  11496. height: math.unit(360, "feet")
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(360, "miles")
  11501. },
  11502. ]
  11503. ))
  11504. characterMakers.push(() => makeCharacter(
  11505. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11506. {
  11507. front: {
  11508. height: math.unit(2.4, "meters"),
  11509. weight: math.unit(70, "kg"),
  11510. name: "Front",
  11511. image: {
  11512. source: "./media/characters/nyanuxk/front.svg",
  11513. extra: 1172 / 1084,
  11514. bottom: 0.065
  11515. }
  11516. },
  11517. side: {
  11518. height: math.unit(2.4, "meters"),
  11519. weight: math.unit(70, "kg"),
  11520. name: "Side",
  11521. image: {
  11522. source: "./media/characters/nyanuxk/side.svg",
  11523. extra: 1190 / 1132,
  11524. bottom: 0.007
  11525. }
  11526. },
  11527. back: {
  11528. height: math.unit(2.4, "meters"),
  11529. weight: math.unit(70, "kg"),
  11530. name: "Back",
  11531. image: {
  11532. source: "./media/characters/nyanuxk/back.svg",
  11533. extra: 1200 / 1141,
  11534. bottom: 0.015
  11535. }
  11536. },
  11537. foot: {
  11538. height: math.unit(0.52, "meters"),
  11539. name: "Foot",
  11540. image: {
  11541. source: "./media/characters/nyanuxk/foot.svg"
  11542. }
  11543. },
  11544. },
  11545. [
  11546. {
  11547. name: "Micro",
  11548. height: math.unit(2, "cm")
  11549. },
  11550. {
  11551. name: "Normal",
  11552. height: math.unit(2.4, "meters"),
  11553. default: true
  11554. },
  11555. {
  11556. name: "Smaller Macro",
  11557. height: math.unit(120, "meters")
  11558. },
  11559. {
  11560. name: "Bigger Macro",
  11561. height: math.unit(1.2, "km")
  11562. },
  11563. {
  11564. name: "Megamacro",
  11565. height: math.unit(15, "kilometers")
  11566. },
  11567. {
  11568. name: "Gigamacro",
  11569. height: math.unit(2000, "km")
  11570. },
  11571. {
  11572. name: "Teramacro",
  11573. height: math.unit(500000, "km")
  11574. },
  11575. ]
  11576. ))
  11577. characterMakers.push(() => makeCharacter(
  11578. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11579. {
  11580. side: {
  11581. height: math.unit(6, "feet"),
  11582. name: "Side",
  11583. image: {
  11584. source: "./media/characters/ailbhe/side.svg",
  11585. extra: 757 / 464,
  11586. bottom: 0.041
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(1.07, "meters"),
  11594. default: true
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(6, "feet"),
  11603. weight: math.unit(120, "kg"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/zevulfius/front.svg",
  11607. extra: 965 / 903
  11608. }
  11609. },
  11610. side: {
  11611. height: math.unit(6, "feet"),
  11612. weight: math.unit(120, "kg"),
  11613. name: "Side",
  11614. image: {
  11615. source: "./media/characters/zevulfius/side.svg",
  11616. extra: 939 / 900
  11617. }
  11618. },
  11619. back: {
  11620. height: math.unit(6, "feet"),
  11621. weight: math.unit(120, "kg"),
  11622. name: "Back",
  11623. image: {
  11624. source: "./media/characters/zevulfius/back.svg",
  11625. extra: 918 / 854,
  11626. bottom: 0.005
  11627. }
  11628. },
  11629. foot: {
  11630. height: math.unit(6 / 3.72, "feet"),
  11631. name: "Foot",
  11632. image: {
  11633. source: "./media/characters/zevulfius/foot.svg"
  11634. }
  11635. },
  11636. },
  11637. [
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(750, "meters")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(20, "km"),
  11645. default: true
  11646. },
  11647. {
  11648. name: "Gigamacro",
  11649. height: math.unit(2000, "km")
  11650. },
  11651. {
  11652. name: "Teramacro",
  11653. height: math.unit(250000, "km")
  11654. },
  11655. ]
  11656. ))
  11657. characterMakers.push(() => makeCharacter(
  11658. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11659. {
  11660. front: {
  11661. height: math.unit(100, "feet"),
  11662. weight: math.unit(350, "kg"),
  11663. name: "Front",
  11664. image: {
  11665. source: "./media/characters/rikes/front.svg",
  11666. extra: 1565 / 1483,
  11667. bottom: 0.017
  11668. }
  11669. },
  11670. },
  11671. [
  11672. {
  11673. name: "Macro",
  11674. height: math.unit(100, "feet"),
  11675. default: true
  11676. },
  11677. ]
  11678. ))
  11679. characterMakers.push(() => makeCharacter(
  11680. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11681. {
  11682. front: {
  11683. height: math.unit(8, "feet"),
  11684. weight: math.unit(356, "lb"),
  11685. name: "Front",
  11686. image: {
  11687. source: "./media/characters/adam-silver-mane/front.svg",
  11688. extra: 1036/937,
  11689. bottom: 63/1099
  11690. }
  11691. },
  11692. side: {
  11693. height: math.unit(8, "feet"),
  11694. weight: math.unit(356, "lb"),
  11695. name: "Side",
  11696. image: {
  11697. source: "./media/characters/adam-silver-mane/side.svg",
  11698. extra: 997/901,
  11699. bottom: 59/1056
  11700. }
  11701. },
  11702. frontNsfw: {
  11703. height: math.unit(8, "feet"),
  11704. weight: math.unit(356, "lb"),
  11705. name: "Front (NSFW)",
  11706. image: {
  11707. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11708. extra: 1036/937,
  11709. bottom: 63/1099
  11710. }
  11711. },
  11712. sideNsfw: {
  11713. height: math.unit(8, "feet"),
  11714. weight: math.unit(356, "lb"),
  11715. name: "Side (NSFW)",
  11716. image: {
  11717. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11718. extra: 997/901,
  11719. bottom: 59/1056
  11720. }
  11721. },
  11722. dick: {
  11723. height: math.unit(2.1, "feet"),
  11724. name: "Dick",
  11725. image: {
  11726. source: "./media/characters/adam-silver-mane/dick.svg"
  11727. }
  11728. },
  11729. taur: {
  11730. height: math.unit(16, "feet"),
  11731. weight: math.unit(1500, "kg"),
  11732. name: "Taur",
  11733. image: {
  11734. source: "./media/characters/adam-silver-mane/taur.svg",
  11735. extra: 1713 / 1571,
  11736. bottom: 0.01
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(8, "feet")
  11744. },
  11745. {
  11746. name: "Minimacro",
  11747. height: math.unit(80, "feet")
  11748. },
  11749. {
  11750. name: "MDA",
  11751. height: math.unit(80, "meters")
  11752. },
  11753. {
  11754. name: "Macro",
  11755. height: math.unit(800, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Megamacro",
  11760. height: math.unit(8000, "feet")
  11761. },
  11762. {
  11763. name: "Gigamacro",
  11764. height: math.unit(800, "miles")
  11765. },
  11766. {
  11767. name: "Teramacro",
  11768. height: math.unit(80000, "miles")
  11769. },
  11770. {
  11771. name: "Celestial",
  11772. height: math.unit(8e6, "miles")
  11773. },
  11774. {
  11775. name: "Star Dragon",
  11776. height: math.unit(800000, "parsecs")
  11777. },
  11778. {
  11779. name: "Godly",
  11780. height: math.unit(800, "teraparsecs")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11786. {
  11787. front: {
  11788. height: math.unit(6, "feet"),
  11789. weight: math.unit(150, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/ky'owin/front.svg",
  11793. extra: 3862/3053,
  11794. bottom: 74/3936
  11795. }
  11796. },
  11797. },
  11798. [
  11799. {
  11800. name: "Normal",
  11801. height: math.unit(6 + 8 / 12, "feet")
  11802. },
  11803. {
  11804. name: "Large",
  11805. height: math.unit(68, "feet")
  11806. },
  11807. {
  11808. name: "Macro",
  11809. height: math.unit(132, "feet")
  11810. },
  11811. {
  11812. name: "Macro+",
  11813. height: math.unit(340, "feet")
  11814. },
  11815. {
  11816. name: "Macro++",
  11817. height: math.unit(680, "feet"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Megamacro",
  11822. height: math.unit(1, "mile")
  11823. },
  11824. {
  11825. name: "Megamacro+",
  11826. height: math.unit(10, "miles")
  11827. },
  11828. ]
  11829. ))
  11830. characterMakers.push(() => makeCharacter(
  11831. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11832. {
  11833. front: {
  11834. height: math.unit(4, "feet"),
  11835. weight: math.unit(50, "lb"),
  11836. name: "Front",
  11837. image: {
  11838. source: "./media/characters/mal/front.svg",
  11839. extra: 785 / 724,
  11840. bottom: 0.07
  11841. }
  11842. },
  11843. },
  11844. [
  11845. {
  11846. name: "Micro",
  11847. height: math.unit(4, "inches")
  11848. },
  11849. {
  11850. name: "Normal",
  11851. height: math.unit(4, "feet"),
  11852. default: true
  11853. },
  11854. {
  11855. name: "Macro",
  11856. height: math.unit(200, "feet")
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11862. {
  11863. front: {
  11864. height: math.unit(6, "feet"),
  11865. weight: math.unit(150, "lb"),
  11866. name: "Front",
  11867. image: {
  11868. source: "./media/characters/jordan-deware/front.svg",
  11869. extra: 1191 / 1012
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Nano",
  11876. height: math.unit(0.01, "mm")
  11877. },
  11878. {
  11879. name: "Minimicro",
  11880. height: math.unit(1, "mm")
  11881. },
  11882. {
  11883. name: "Micro",
  11884. height: math.unit(0.5, "inches")
  11885. },
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(4, "feet"),
  11889. default: true
  11890. },
  11891. {
  11892. name: "Minimacro",
  11893. height: math.unit(40, "meters")
  11894. },
  11895. {
  11896. name: "Small Macro",
  11897. height: math.unit(400, "meters")
  11898. },
  11899. {
  11900. name: "Macro",
  11901. height: math.unit(4, "miles")
  11902. },
  11903. {
  11904. name: "Megamacro",
  11905. height: math.unit(40, "miles")
  11906. },
  11907. {
  11908. name: "Megamacro+",
  11909. height: math.unit(400, "miles")
  11910. },
  11911. {
  11912. name: "Gigamacro",
  11913. height: math.unit(400000, "miles")
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11919. {
  11920. side: {
  11921. height: math.unit(6, "feet"),
  11922. weight: math.unit(150, "lb"),
  11923. name: "Side",
  11924. image: {
  11925. source: "./media/characters/kimiko/side.svg",
  11926. extra: 600 / 358
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Normal",
  11933. height: math.unit(15, "feet"),
  11934. default: true
  11935. },
  11936. {
  11937. name: "Macro",
  11938. height: math.unit(220, "feet")
  11939. },
  11940. {
  11941. name: "Macro+",
  11942. height: math.unit(1450, "feet")
  11943. },
  11944. {
  11945. name: "Megamacro",
  11946. height: math.unit(11500, "feet")
  11947. },
  11948. {
  11949. name: "Gigamacro",
  11950. height: math.unit(9500, "miles")
  11951. },
  11952. {
  11953. name: "Teramacro",
  11954. height: math.unit(2208005005, "miles")
  11955. },
  11956. {
  11957. name: "Examacro",
  11958. height: math.unit(2750, "parsecs")
  11959. },
  11960. {
  11961. name: "Zettamacro",
  11962. height: math.unit(101500, "parsecs")
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11968. {
  11969. front: {
  11970. height: math.unit(6, "feet"),
  11971. weight: math.unit(70, "kg"),
  11972. name: "Front",
  11973. image: {
  11974. source: "./media/characters/andrew-sleepy/front.svg"
  11975. }
  11976. },
  11977. side: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(70, "kg"),
  11980. name: "Side",
  11981. image: {
  11982. source: "./media/characters/andrew-sleepy/side.svg"
  11983. }
  11984. },
  11985. },
  11986. [
  11987. {
  11988. name: "Micro",
  11989. height: math.unit(1, "mm"),
  11990. default: true
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11996. {
  11997. front: {
  11998. height: math.unit(6, "feet"),
  11999. weight: math.unit(150, "lb"),
  12000. name: "Front",
  12001. image: {
  12002. source: "./media/characters/judio/front.svg",
  12003. extra: 1258 / 1110
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(5 + 6 / 12, "feet")
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(1000, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(10, "miles")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12025. {
  12026. frontDressed: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(68, "kg"),
  12029. name: "Front (Dressed)",
  12030. image: {
  12031. source: "./media/characters/nomaxice/front-dressed.svg",
  12032. extra: 1137/824,
  12033. bottom: 74/1211
  12034. }
  12035. },
  12036. frontShorts: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(68, "kg"),
  12039. name: "Front (Shorts)",
  12040. image: {
  12041. source: "./media/characters/nomaxice/front-shorts.svg",
  12042. extra: 1137/824,
  12043. bottom: 74/1211
  12044. }
  12045. },
  12046. back: {
  12047. height: math.unit(6, "feet"),
  12048. weight: math.unit(68, "kg"),
  12049. name: "Back",
  12050. image: {
  12051. source: "./media/characters/nomaxice/back.svg",
  12052. extra: 822/786,
  12053. bottom: 39/861
  12054. }
  12055. },
  12056. hand: {
  12057. height: math.unit(0.565, "feet"),
  12058. name: "Hand",
  12059. image: {
  12060. source: "./media/characters/nomaxice/hand.svg"
  12061. }
  12062. },
  12063. foot: {
  12064. height: math.unit(1, "feet"),
  12065. name: "Foot",
  12066. image: {
  12067. source: "./media/characters/nomaxice/foot.svg"
  12068. }
  12069. },
  12070. },
  12071. [
  12072. {
  12073. name: "Micro",
  12074. height: math.unit(8, "cm")
  12075. },
  12076. {
  12077. name: "Norm",
  12078. height: math.unit(1.82, "m")
  12079. },
  12080. {
  12081. name: "Norm+",
  12082. height: math.unit(8.8, "feet"),
  12083. default: true
  12084. },
  12085. {
  12086. name: "Big",
  12087. height: math.unit(8, "meters")
  12088. },
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(18, "meters")
  12092. },
  12093. {
  12094. name: "Macro+",
  12095. height: math.unit(88, "meters")
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(12, "feet"),
  12104. weight: math.unit(1.5, "tons"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/dydros/front.svg",
  12108. extra: 863 / 800,
  12109. bottom: 0.015
  12110. }
  12111. },
  12112. back: {
  12113. height: math.unit(12, "feet"),
  12114. weight: math.unit(1.5, "tons"),
  12115. name: "Back",
  12116. image: {
  12117. source: "./media/characters/dydros/back.svg",
  12118. extra: 900 / 843,
  12119. bottom: 0.005
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(12, "feet"),
  12127. default: true
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(100, "kg"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/riggi/front.svg",
  12140. extra: 5787 / 5303
  12141. }
  12142. },
  12143. hyper: {
  12144. height: math.unit(6 * 5 / 3, "feet"),
  12145. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12146. name: "Hyper",
  12147. image: {
  12148. source: "./media/characters/riggi/hyper.svg",
  12149. extra: 3595 / 3485
  12150. }
  12151. },
  12152. },
  12153. [
  12154. {
  12155. name: "Small Macro",
  12156. height: math.unit(50, "feet")
  12157. },
  12158. {
  12159. name: "Default",
  12160. height: math.unit(200, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Loom",
  12165. height: math.unit(10000, "feet")
  12166. },
  12167. {
  12168. name: "Cruising Altitude",
  12169. height: math.unit(30000, "feet")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(100, "miles")
  12174. },
  12175. {
  12176. name: "Continent Sized",
  12177. height: math.unit(2800, "miles")
  12178. },
  12179. {
  12180. name: "Earth Sized",
  12181. height: math.unit(8000, "miles")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(250, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/alexi/front.svg",
  12194. extra: 3483 / 3291,
  12195. bottom: 0.04
  12196. }
  12197. },
  12198. back: {
  12199. height: math.unit(6, "feet"),
  12200. weight: math.unit(250, "lb"),
  12201. name: "Back",
  12202. image: {
  12203. source: "./media/characters/alexi/back.svg",
  12204. extra: 3533 / 3356,
  12205. bottom: 0.021
  12206. }
  12207. },
  12208. frontTransforming: {
  12209. height: math.unit(8.58, "feet"),
  12210. weight: math.unit(1300, "lb"),
  12211. name: "Transforming",
  12212. image: {
  12213. source: "./media/characters/alexi/front-transforming.svg",
  12214. extra: 437 / 409,
  12215. bottom: 19 / 458.66
  12216. }
  12217. },
  12218. frontTransformed: {
  12219. height: math.unit(12.5, "feet"),
  12220. weight: math.unit(4000, "lb"),
  12221. name: "Transformed",
  12222. image: {
  12223. source: "./media/characters/alexi/front-transformed.svg",
  12224. extra: 639 / 614,
  12225. bottom: 30.55 / 671
  12226. }
  12227. },
  12228. },
  12229. [
  12230. {
  12231. name: "Normal",
  12232. height: math.unit(14, "feet"),
  12233. default: true
  12234. },
  12235. {
  12236. name: "Minimacro",
  12237. height: math.unit(30, "meters")
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(500, "meters")
  12242. },
  12243. {
  12244. name: "Megamacro",
  12245. height: math.unit(9000, "km")
  12246. },
  12247. {
  12248. name: "Teramacro",
  12249. height: math.unit(384000, "km")
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(6, "feet"),
  12258. weight: math.unit(150, "lb"),
  12259. name: "Front",
  12260. image: {
  12261. source: "./media/characters/kayroo/front.svg",
  12262. extra: 1153 / 1038,
  12263. bottom: 0.06
  12264. }
  12265. },
  12266. foot: {
  12267. height: math.unit(6, "feet"),
  12268. weight: math.unit(150, "lb"),
  12269. name: "Foot",
  12270. image: {
  12271. source: "./media/characters/kayroo/foot.svg"
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(8, "feet"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Minimacro",
  12283. height: math.unit(250, "feet")
  12284. },
  12285. {
  12286. name: "Macro",
  12287. height: math.unit(2800, "feet")
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(5200, "feet")
  12292. },
  12293. {
  12294. name: "Gigamacro",
  12295. height: math.unit(27000, "feet")
  12296. },
  12297. {
  12298. name: "Omega",
  12299. height: math.unit(45000, "feet")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(18, "feet"),
  12308. weight: math.unit(5800, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/rhys/front.svg",
  12312. extra: 3386 / 3090,
  12313. bottom: 0.07
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(18, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Working Size",
  12325. height: math.unit(200, "feet")
  12326. },
  12327. {
  12328. name: "Demolition Size",
  12329. height: math.unit(2000, "feet")
  12330. },
  12331. {
  12332. name: "Maximum Licensed Size",
  12333. height: math.unit(5, "miles")
  12334. },
  12335. {
  12336. name: "Maximum Observed Size",
  12337. height: math.unit(10, "yottameters")
  12338. },
  12339. ]
  12340. ))
  12341. characterMakers.push(() => makeCharacter(
  12342. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12343. {
  12344. front: {
  12345. height: math.unit(6, "feet"),
  12346. weight: math.unit(250, "lb"),
  12347. name: "Front",
  12348. image: {
  12349. source: "./media/characters/toto/front.svg",
  12350. extra: 527 / 479,
  12351. bottom: 0.05
  12352. }
  12353. },
  12354. },
  12355. [
  12356. {
  12357. name: "Micro",
  12358. height: math.unit(3, "feet")
  12359. },
  12360. {
  12361. name: "Normal",
  12362. height: math.unit(10, "feet")
  12363. },
  12364. {
  12365. name: "Macro",
  12366. height: math.unit(150, "feet"),
  12367. default: true
  12368. },
  12369. {
  12370. name: "Megamacro",
  12371. height: math.unit(1200, "feet")
  12372. },
  12373. ]
  12374. ))
  12375. characterMakers.push(() => makeCharacter(
  12376. { name: "King", species: ["lion"], tags: ["anthro"] },
  12377. {
  12378. back: {
  12379. height: math.unit(6, "feet"),
  12380. weight: math.unit(150, "lb"),
  12381. name: "Back",
  12382. image: {
  12383. source: "./media/characters/king/back.svg"
  12384. }
  12385. },
  12386. },
  12387. [
  12388. {
  12389. name: "Micro",
  12390. height: math.unit(2, "inches")
  12391. },
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(8, "feet")
  12395. },
  12396. {
  12397. name: "Macro",
  12398. height: math.unit(200, "feet"),
  12399. default: true
  12400. },
  12401. {
  12402. name: "Megamacro",
  12403. height: math.unit(50, "miles")
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(11, "feet"),
  12412. weight: math.unit(1400, "lb"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/cordite/front.svg",
  12416. extra: 1919/1827,
  12417. bottom: 40/1959
  12418. }
  12419. },
  12420. side: {
  12421. height: math.unit(11, "feet"),
  12422. weight: math.unit(1400, "lb"),
  12423. name: "Side",
  12424. image: {
  12425. source: "./media/characters/cordite/side.svg",
  12426. extra: 1908/1793,
  12427. bottom: 38/1946
  12428. }
  12429. },
  12430. back: {
  12431. height: math.unit(11, "feet"),
  12432. weight: math.unit(1400, "lb"),
  12433. name: "Back",
  12434. image: {
  12435. source: "./media/characters/cordite/back.svg",
  12436. extra: 1938/1837,
  12437. bottom: 10/1948
  12438. }
  12439. },
  12440. feral: {
  12441. height: math.unit(2, "feet"),
  12442. weight: math.unit(90, "lb"),
  12443. name: "Feral",
  12444. image: {
  12445. source: "./media/characters/cordite/feral.svg",
  12446. extra: 1260 / 755,
  12447. bottom: 0.05
  12448. }
  12449. },
  12450. },
  12451. [
  12452. {
  12453. name: "Normal",
  12454. height: math.unit(11, "feet"),
  12455. default: true
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(6, "feet"),
  12464. weight: math.unit(150, "lb"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/pianostrong/front.svg",
  12468. extra: 6577 / 6254,
  12469. bottom: 0.02
  12470. }
  12471. },
  12472. side: {
  12473. height: math.unit(6, "feet"),
  12474. weight: math.unit(150, "lb"),
  12475. name: "Side",
  12476. image: {
  12477. source: "./media/characters/pianostrong/side.svg",
  12478. extra: 6106 / 5730
  12479. }
  12480. },
  12481. back: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Back",
  12485. image: {
  12486. source: "./media/characters/pianostrong/back.svg",
  12487. extra: 6085 / 5733,
  12488. bottom: 0.01
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Macro",
  12495. height: math.unit(100, "feet")
  12496. },
  12497. {
  12498. name: "Macro+",
  12499. height: math.unit(300, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Macro++",
  12504. height: math.unit(1000, "feet")
  12505. },
  12506. ]
  12507. ))
  12508. characterMakers.push(() => makeCharacter(
  12509. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12510. {
  12511. front: {
  12512. height: math.unit(6, "feet"),
  12513. weight: math.unit(150, "lb"),
  12514. name: "Front",
  12515. image: {
  12516. source: "./media/characters/kona/front.svg",
  12517. extra: 2960 / 2629,
  12518. bottom: 0.005
  12519. }
  12520. },
  12521. },
  12522. [
  12523. {
  12524. name: "Normal",
  12525. height: math.unit(11 + 8 / 12, "feet")
  12526. },
  12527. {
  12528. name: "Macro",
  12529. height: math.unit(850, "feet"),
  12530. default: true
  12531. },
  12532. {
  12533. name: "Macro+",
  12534. height: math.unit(1.5, "km"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Megamacro",
  12539. height: math.unit(80, "miles")
  12540. },
  12541. {
  12542. name: "Gigamacro",
  12543. height: math.unit(3500, "miles")
  12544. },
  12545. ]
  12546. ))
  12547. characterMakers.push(() => makeCharacter(
  12548. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12549. {
  12550. side: {
  12551. height: math.unit(1.9, "meters"),
  12552. weight: math.unit(326, "kg"),
  12553. name: "Side",
  12554. image: {
  12555. source: "./media/characters/levi/side.svg",
  12556. extra: 1704 / 1334,
  12557. bottom: 0.02
  12558. }
  12559. },
  12560. },
  12561. [
  12562. {
  12563. name: "Normal",
  12564. height: math.unit(1.9, "meters"),
  12565. default: true
  12566. },
  12567. {
  12568. name: "Macro",
  12569. height: math.unit(20, "meters")
  12570. },
  12571. {
  12572. name: "Macro+",
  12573. height: math.unit(200, "meters")
  12574. },
  12575. {
  12576. name: "Megamacro",
  12577. height: math.unit(2, "km")
  12578. },
  12579. {
  12580. name: "Megamacro+",
  12581. height: math.unit(20, "km")
  12582. },
  12583. {
  12584. name: "Gigamacro",
  12585. height: math.unit(2500, "km")
  12586. },
  12587. {
  12588. name: "Gigamacro+",
  12589. height: math.unit(120000, "km")
  12590. },
  12591. {
  12592. name: "Teramacro",
  12593. height: math.unit(7.77e6, "km")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12599. {
  12600. front: {
  12601. height: math.unit(6 + 4/12, "feet"),
  12602. weight: math.unit(190, "lb"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/bmc/front.svg",
  12606. extra: 1626/1472,
  12607. bottom: 79/1705
  12608. }
  12609. },
  12610. back: {
  12611. height: math.unit(6 + 4/12, "feet"),
  12612. weight: math.unit(190, "lb"),
  12613. name: "Back",
  12614. image: {
  12615. source: "./media/characters/bmc/back.svg",
  12616. extra: 1640/1479,
  12617. bottom: 45/1685
  12618. }
  12619. },
  12620. frontArmor: {
  12621. height: math.unit(6 + 4/12, "feet"),
  12622. weight: math.unit(190, "lb"),
  12623. name: "Front-armor",
  12624. image: {
  12625. source: "./media/characters/bmc/front-armor.svg",
  12626. extra: 1538/1468,
  12627. bottom: 79/1617
  12628. }
  12629. },
  12630. },
  12631. [
  12632. {
  12633. name: "Human-sized",
  12634. height: math.unit(6 + 4 / 12, "feet")
  12635. },
  12636. {
  12637. name: "Interactive Size",
  12638. height: math.unit(25, "feet")
  12639. },
  12640. {
  12641. name: "Small",
  12642. height: math.unit(250, "feet")
  12643. },
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(1250, "feet"),
  12647. default: true
  12648. },
  12649. {
  12650. name: "Good Day",
  12651. height: math.unit(88, "miles")
  12652. },
  12653. {
  12654. name: "Largest Measured Size",
  12655. height: math.unit(105.960, "galaxies")
  12656. },
  12657. ]
  12658. ))
  12659. characterMakers.push(() => makeCharacter(
  12660. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12661. {
  12662. front: {
  12663. height: math.unit(20, "feet"),
  12664. weight: math.unit(2016, "kg"),
  12665. name: "Front",
  12666. image: {
  12667. source: "./media/characters/sven-the-kaiju/front.svg",
  12668. extra: 1277/1250,
  12669. bottom: 35/1312
  12670. }
  12671. },
  12672. mouth: {
  12673. height: math.unit(1.85, "feet"),
  12674. name: "Mouth",
  12675. image: {
  12676. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12677. }
  12678. },
  12679. },
  12680. [
  12681. {
  12682. name: "Fairy",
  12683. height: math.unit(6, "inches")
  12684. },
  12685. {
  12686. name: "Normal",
  12687. height: math.unit(20, "feet"),
  12688. default: true
  12689. },
  12690. {
  12691. name: "Rampage",
  12692. height: math.unit(200, "feet")
  12693. },
  12694. {
  12695. name: "Archfey Forest Guardian",
  12696. height: math.unit(1, "mile")
  12697. },
  12698. ]
  12699. ))
  12700. characterMakers.push(() => makeCharacter(
  12701. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12702. {
  12703. front: {
  12704. height: math.unit(4, "meters"),
  12705. weight: math.unit(2, "tons"),
  12706. name: "Front",
  12707. image: {
  12708. source: "./media/characters/marik/front.svg",
  12709. extra: 1057 / 1003,
  12710. bottom: 0.08
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Normal",
  12717. height: math.unit(4, "meters"),
  12718. default: true
  12719. },
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(20, "meters")
  12723. },
  12724. {
  12725. name: "Megamacro",
  12726. height: math.unit(50, "km")
  12727. },
  12728. {
  12729. name: "Gigamacro",
  12730. height: math.unit(100, "km")
  12731. },
  12732. {
  12733. name: "Alpha Macro",
  12734. height: math.unit(7.88e7, "yottameters")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12740. {
  12741. front: {
  12742. height: math.unit(6, "feet"),
  12743. weight: math.unit(110, "lb"),
  12744. name: "Front",
  12745. image: {
  12746. source: "./media/characters/mel/front.svg",
  12747. extra: 736 / 617,
  12748. bottom: 0.017
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Pico",
  12755. height: math.unit(3, "pm")
  12756. },
  12757. {
  12758. name: "Nano",
  12759. height: math.unit(3, "nm")
  12760. },
  12761. {
  12762. name: "Micro",
  12763. height: math.unit(0.3, "mm"),
  12764. default: true
  12765. },
  12766. {
  12767. name: "Micro+",
  12768. height: math.unit(3, "mm")
  12769. },
  12770. {
  12771. name: "Normal",
  12772. height: math.unit(5 + 10.5 / 12, "feet")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12778. {
  12779. kaiju: {
  12780. height: math.unit(1.75, "meters"),
  12781. weight: math.unit(55, "kg"),
  12782. name: "Kaiju",
  12783. image: {
  12784. source: "./media/characters/lykonous/kaiju.svg",
  12785. extra: 1055 / 946,
  12786. bottom: 0.135
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Normal",
  12793. height: math.unit(2.5, "meters"),
  12794. default: true
  12795. },
  12796. {
  12797. name: "Kaiju Dragon",
  12798. height: math.unit(60, "meters")
  12799. },
  12800. {
  12801. name: "Mega Kaiju",
  12802. height: math.unit(120, "km")
  12803. },
  12804. {
  12805. name: "Giga Kaiju",
  12806. height: math.unit(200, "megameters")
  12807. },
  12808. {
  12809. name: "Terra Kaiju",
  12810. height: math.unit(400, "gigameters")
  12811. },
  12812. {
  12813. name: "Kaiju Dragon God",
  12814. height: math.unit(13000, "exaparsecs")
  12815. },
  12816. ]
  12817. ))
  12818. characterMakers.push(() => makeCharacter(
  12819. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12820. {
  12821. front: {
  12822. height: math.unit(6, "feet"),
  12823. weight: math.unit(150, "lb"),
  12824. name: "Front",
  12825. image: {
  12826. source: "./media/characters/blü/front.svg",
  12827. extra: 1883 / 1564,
  12828. bottom: 0.031
  12829. }
  12830. },
  12831. },
  12832. [
  12833. {
  12834. name: "Normal",
  12835. height: math.unit(13, "feet"),
  12836. default: true
  12837. },
  12838. {
  12839. name: "Big Boi",
  12840. height: math.unit(150, "meters")
  12841. },
  12842. {
  12843. name: "Mini Stomper",
  12844. height: math.unit(300, "meters")
  12845. },
  12846. {
  12847. name: "Macro",
  12848. height: math.unit(1000, "meters")
  12849. },
  12850. {
  12851. name: "Megamacro",
  12852. height: math.unit(11000, "meters")
  12853. },
  12854. {
  12855. name: "Gigamacro",
  12856. height: math.unit(11000, "km")
  12857. },
  12858. {
  12859. name: "Teramacro",
  12860. height: math.unit(420000, "km")
  12861. },
  12862. {
  12863. name: "Examacro",
  12864. height: math.unit(120, "parsecs")
  12865. },
  12866. {
  12867. name: "God Tho",
  12868. height: math.unit(98000000000, "parsecs")
  12869. },
  12870. ]
  12871. ))
  12872. characterMakers.push(() => makeCharacter(
  12873. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12874. {
  12875. taurFront: {
  12876. height: math.unit(6, "feet"),
  12877. weight: math.unit(200, "lb"),
  12878. name: "Taur (Front)",
  12879. image: {
  12880. source: "./media/characters/scales/taur-front.svg",
  12881. extra: 1,
  12882. bottom: 0.05
  12883. }
  12884. },
  12885. taurBack: {
  12886. height: math.unit(6, "feet"),
  12887. weight: math.unit(200, "lb"),
  12888. name: "Taur (Back)",
  12889. image: {
  12890. source: "./media/characters/scales/taur-back.svg",
  12891. extra: 1,
  12892. bottom: 0.08
  12893. }
  12894. },
  12895. anthro: {
  12896. height: math.unit(6 * 7 / 12, "feet"),
  12897. weight: math.unit(100, "lb"),
  12898. name: "Anthro",
  12899. image: {
  12900. source: "./media/characters/scales/anthro.svg",
  12901. extra: 1,
  12902. bottom: 0.06
  12903. }
  12904. },
  12905. },
  12906. [
  12907. {
  12908. name: "Normal",
  12909. height: math.unit(12, "feet"),
  12910. default: true
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6, "feet"),
  12919. weight: math.unit(150, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/koragos/front.svg",
  12923. extra: 841 / 794,
  12924. bottom: 0.035
  12925. }
  12926. },
  12927. back: {
  12928. height: math.unit(6, "feet"),
  12929. weight: math.unit(150, "lb"),
  12930. name: "Back",
  12931. image: {
  12932. source: "./media/characters/koragos/back.svg",
  12933. extra: 841 / 810,
  12934. bottom: 0.022
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(6 + 11 / 12, "feet"),
  12942. default: true
  12943. },
  12944. {
  12945. name: "Macro",
  12946. height: math.unit(490, "feet")
  12947. },
  12948. {
  12949. name: "Megamacro",
  12950. height: math.unit(10, "miles")
  12951. },
  12952. {
  12953. name: "Gigamacro",
  12954. height: math.unit(50, "miles")
  12955. },
  12956. ]
  12957. ))
  12958. characterMakers.push(() => makeCharacter(
  12959. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12960. {
  12961. front: {
  12962. height: math.unit(6, "feet"),
  12963. weight: math.unit(250, "lb"),
  12964. name: "Front",
  12965. image: {
  12966. source: "./media/characters/xylrem/front.svg",
  12967. extra: 3323 / 3050,
  12968. bottom: 0.065
  12969. }
  12970. },
  12971. },
  12972. [
  12973. {
  12974. name: "Micro",
  12975. height: math.unit(4, "feet")
  12976. },
  12977. {
  12978. name: "Normal",
  12979. height: math.unit(16, "feet"),
  12980. default: true
  12981. },
  12982. {
  12983. name: "Macro",
  12984. height: math.unit(2720, "feet")
  12985. },
  12986. {
  12987. name: "Megamacro",
  12988. height: math.unit(25000, "miles")
  12989. },
  12990. ]
  12991. ))
  12992. characterMakers.push(() => makeCharacter(
  12993. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12994. {
  12995. front: {
  12996. height: math.unit(8, "feet"),
  12997. weight: math.unit(250, "kg"),
  12998. name: "Front",
  12999. image: {
  13000. source: "./media/characters/ikideru/front.svg",
  13001. extra: 930 / 870,
  13002. bottom: 0.087
  13003. }
  13004. },
  13005. back: {
  13006. height: math.unit(8, "feet"),
  13007. weight: math.unit(250, "kg"),
  13008. name: "Back",
  13009. image: {
  13010. source: "./media/characters/ikideru/back.svg",
  13011. extra: 919 / 852,
  13012. bottom: 0.055
  13013. }
  13014. },
  13015. },
  13016. [
  13017. {
  13018. name: "Rare",
  13019. height: math.unit(8, "feet"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Playful Loom",
  13024. height: math.unit(80, "feet")
  13025. },
  13026. {
  13027. name: "City Leaner",
  13028. height: math.unit(230, "feet")
  13029. },
  13030. {
  13031. name: "Megamacro",
  13032. height: math.unit(2500, "feet")
  13033. },
  13034. {
  13035. name: "Gigamacro",
  13036. height: math.unit(26400, "feet")
  13037. },
  13038. {
  13039. name: "Tectonic Shifter",
  13040. height: math.unit(1.7, "megameters")
  13041. },
  13042. {
  13043. name: "Planet Carer",
  13044. height: math.unit(21, "megameters")
  13045. },
  13046. {
  13047. name: "God",
  13048. height: math.unit(11157.22, "parsecs")
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(120, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/neo/front.svg"
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Micro",
  13067. height: math.unit(2, "inches"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Human Size",
  13072. height: math.unit(5 + 8 / 12, "feet")
  13073. },
  13074. ]
  13075. ))
  13076. characterMakers.push(() => makeCharacter(
  13077. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13078. {
  13079. front: {
  13080. height: math.unit(13 + 10 / 12, "feet"),
  13081. weight: math.unit(5320, "lb"),
  13082. name: "Front",
  13083. image: {
  13084. source: "./media/characters/chauncey-chantz/front.svg",
  13085. extra: 1587 / 1435,
  13086. bottom: 0.02
  13087. }
  13088. },
  13089. },
  13090. [
  13091. {
  13092. name: "Normal",
  13093. height: math.unit(13 + 10 / 12, "feet"),
  13094. default: true
  13095. },
  13096. {
  13097. name: "Macro",
  13098. height: math.unit(45, "feet")
  13099. },
  13100. {
  13101. name: "Megamacro",
  13102. height: math.unit(250, "miles")
  13103. },
  13104. {
  13105. name: "Planetary",
  13106. height: math.unit(10000, "miles")
  13107. },
  13108. {
  13109. name: "Galactic",
  13110. height: math.unit(40000, "parsecs")
  13111. },
  13112. {
  13113. name: "Universal",
  13114. height: math.unit(1, "yottameter")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13120. {
  13121. front: {
  13122. height: math.unit(6, "feet"),
  13123. weight: math.unit(150, "lb"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/epifox/front.svg",
  13127. extra: 1,
  13128. bottom: 0.075
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Micro",
  13135. height: math.unit(6, "inches")
  13136. },
  13137. {
  13138. name: "Normal",
  13139. height: math.unit(12, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Macro",
  13144. height: math.unit(3810, "feet")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(500, "miles")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(1.8796, "m"),
  13157. weight: math.unit(230, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/colin-t/front.svg",
  13161. extra: 1272 / 1193,
  13162. bottom: 0.07
  13163. }
  13164. },
  13165. },
  13166. [
  13167. {
  13168. name: "Micro",
  13169. height: math.unit(0.571, "meters")
  13170. },
  13171. {
  13172. name: "Normal",
  13173. height: math.unit(1.8796, "meters"),
  13174. default: true
  13175. },
  13176. {
  13177. name: "Tall",
  13178. height: math.unit(4, "meters")
  13179. },
  13180. {
  13181. name: "Macro",
  13182. height: math.unit(67.241, "meters")
  13183. },
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(371.856, "meters")
  13187. },
  13188. {
  13189. name: "Planetary",
  13190. height: math.unit(12631.5689, "km")
  13191. },
  13192. ]
  13193. ))
  13194. characterMakers.push(() => makeCharacter(
  13195. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13196. {
  13197. front: {
  13198. height: math.unit(1.85, "meters"),
  13199. weight: math.unit(80, "kg"),
  13200. name: "Front",
  13201. image: {
  13202. source: "./media/characters/matvei/front.svg",
  13203. extra: 456/447,
  13204. bottom: 8/464
  13205. }
  13206. },
  13207. back: {
  13208. height: math.unit(1.85, "meters"),
  13209. weight: math.unit(80, "kg"),
  13210. name: "Back",
  13211. image: {
  13212. source: "./media/characters/matvei/back.svg",
  13213. extra: 434/427,
  13214. bottom: 11/445
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Normal",
  13221. height: math.unit(1.85, "meters"),
  13222. default: true
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(5 + 9 / 12, "feet"),
  13231. weight: math.unit(70, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/quincy/front.svg",
  13235. extra: 3041 / 2751
  13236. }
  13237. },
  13238. back: {
  13239. height: math.unit(5 + 9 / 12, "feet"),
  13240. weight: math.unit(70, "lb"),
  13241. name: "Back",
  13242. image: {
  13243. source: "./media/characters/quincy/back.svg",
  13244. extra: 3041 / 2751
  13245. }
  13246. },
  13247. flying: {
  13248. height: math.unit(5 + 4 / 12, "feet"),
  13249. weight: math.unit(70, "lb"),
  13250. name: "Flying",
  13251. image: {
  13252. source: "./media/characters/quincy/flying.svg",
  13253. extra: 1044 / 930
  13254. }
  13255. },
  13256. },
  13257. [
  13258. {
  13259. name: "Micro",
  13260. height: math.unit(3, "cm")
  13261. },
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(5 + 9 / 12, "feet")
  13265. },
  13266. {
  13267. name: "Macro",
  13268. height: math.unit(200, "meters"),
  13269. default: true
  13270. },
  13271. {
  13272. name: "Megamacro",
  13273. height: math.unit(1000, "meters")
  13274. },
  13275. ]
  13276. ))
  13277. characterMakers.push(() => makeCharacter(
  13278. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13279. {
  13280. front: {
  13281. height: math.unit(3 + 11/12, "feet"),
  13282. weight: math.unit(50, "lb"),
  13283. name: "Front",
  13284. image: {
  13285. source: "./media/characters/vanrel/front.svg",
  13286. extra: 1104/949,
  13287. bottom: 52/1156
  13288. }
  13289. },
  13290. back: {
  13291. height: math.unit(3 + 11/12, "feet"),
  13292. weight: math.unit(50, "lb"),
  13293. name: "Back",
  13294. image: {
  13295. source: "./media/characters/vanrel/back.svg",
  13296. extra: 1119/976,
  13297. bottom: 37/1156
  13298. }
  13299. },
  13300. tome: {
  13301. height: math.unit(1.35, "feet"),
  13302. weight: math.unit(10, "lb"),
  13303. name: "Vanrel's Tome",
  13304. rename: true,
  13305. image: {
  13306. source: "./media/characters/vanrel/tome.svg"
  13307. }
  13308. },
  13309. beans: {
  13310. height: math.unit(0.89, "feet"),
  13311. name: "Beans",
  13312. image: {
  13313. source: "./media/characters/vanrel/beans.svg"
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(3 + 11/12, "feet"),
  13321. default: true
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13327. {
  13328. front: {
  13329. height: math.unit(7 + 5 / 12, "feet"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/kuiper-vanrel/front.svg",
  13333. extra: 1219/1169,
  13334. bottom: 69/1288
  13335. }
  13336. },
  13337. back: {
  13338. height: math.unit(7 + 5 / 12, "feet"),
  13339. name: "Back",
  13340. image: {
  13341. source: "./media/characters/kuiper-vanrel/back.svg",
  13342. extra: 1236/1193,
  13343. bottom: 27/1263
  13344. }
  13345. },
  13346. foot: {
  13347. height: math.unit(0.55, "meters"),
  13348. name: "Foot",
  13349. image: {
  13350. source: "./media/characters/kuiper-vanrel/foot.svg",
  13351. }
  13352. },
  13353. battle: {
  13354. height: math.unit(6.824, "feet"),
  13355. name: "Battle",
  13356. image: {
  13357. source: "./media/characters/kuiper-vanrel/battle.svg",
  13358. extra: 1466 / 1327,
  13359. bottom: 29 / 1492.5
  13360. }
  13361. },
  13362. meerkui: {
  13363. height: math.unit(18, "inches"),
  13364. name: "Meerkui",
  13365. image: {
  13366. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13367. extra: 1354/1289,
  13368. bottom: 69/1423
  13369. }
  13370. },
  13371. },
  13372. [
  13373. {
  13374. name: "Normal",
  13375. height: math.unit(7 + 5 / 12, "feet"),
  13376. default: true
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13382. {
  13383. front: {
  13384. height: math.unit(8 + 5 / 12, "feet"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/keset-vanrel/front.svg",
  13388. extra: 1231/1148,
  13389. bottom: 82/1313
  13390. }
  13391. },
  13392. back: {
  13393. height: math.unit(8 + 5 / 12, "feet"),
  13394. name: "Back",
  13395. image: {
  13396. source: "./media/characters/keset-vanrel/back.svg",
  13397. extra: 1240/1174,
  13398. bottom: 33/1273
  13399. }
  13400. },
  13401. hand: {
  13402. height: math.unit(0.6, "meters"),
  13403. name: "Hand",
  13404. image: {
  13405. source: "./media/characters/keset-vanrel/hand.svg"
  13406. }
  13407. },
  13408. foot: {
  13409. height: math.unit(0.94978, "meters"),
  13410. name: "Foot",
  13411. image: {
  13412. source: "./media/characters/keset-vanrel/foot.svg"
  13413. }
  13414. },
  13415. battle: {
  13416. height: math.unit(7.408, "feet"),
  13417. name: "Battle",
  13418. image: {
  13419. source: "./media/characters/keset-vanrel/battle.svg",
  13420. extra: 1890 / 1386,
  13421. bottom: 73.28 / 1970
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(8 + 5 / 12, "feet"),
  13429. default: true
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(150, "lb"),
  13439. name: "Front",
  13440. image: {
  13441. source: "./media/characters/neos/front.svg",
  13442. extra: 1696 / 992,
  13443. bottom: 0.14
  13444. }
  13445. },
  13446. },
  13447. [
  13448. {
  13449. name: "Normal",
  13450. height: math.unit(54, "cm"),
  13451. default: true
  13452. },
  13453. {
  13454. name: "Macro",
  13455. height: math.unit(100, "m")
  13456. },
  13457. {
  13458. name: "Megamacro",
  13459. height: math.unit(10, "km")
  13460. },
  13461. {
  13462. name: "Megamacro+",
  13463. height: math.unit(100, "km")
  13464. },
  13465. {
  13466. name: "Gigamacro",
  13467. height: math.unit(100, "Mm")
  13468. },
  13469. {
  13470. name: "Teramacro",
  13471. height: math.unit(100, "Gm")
  13472. },
  13473. {
  13474. name: "Examacro",
  13475. height: math.unit(100, "Em")
  13476. },
  13477. {
  13478. name: "Godly",
  13479. height: math.unit(10000, "Ym")
  13480. },
  13481. {
  13482. name: "Beyond Godly",
  13483. height: math.unit(25, "multiverses")
  13484. },
  13485. ]
  13486. ))
  13487. characterMakers.push(() => makeCharacter(
  13488. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13489. {
  13490. feminine: {
  13491. height: math.unit(5, "feet"),
  13492. weight: math.unit(100, "lb"),
  13493. name: "Feminine",
  13494. image: {
  13495. source: "./media/characters/sammy-mouse/feminine.svg",
  13496. extra: 2526 / 2425,
  13497. bottom: 0.123
  13498. }
  13499. },
  13500. masculine: {
  13501. height: math.unit(5, "feet"),
  13502. weight: math.unit(100, "lb"),
  13503. name: "Masculine",
  13504. image: {
  13505. source: "./media/characters/sammy-mouse/masculine.svg",
  13506. extra: 2526 / 2425,
  13507. bottom: 0.123
  13508. }
  13509. },
  13510. },
  13511. [
  13512. {
  13513. name: "Micro",
  13514. height: math.unit(5, "inches")
  13515. },
  13516. {
  13517. name: "Normal",
  13518. height: math.unit(5, "feet"),
  13519. default: true
  13520. },
  13521. {
  13522. name: "Macro",
  13523. height: math.unit(60, "feet")
  13524. },
  13525. ]
  13526. ))
  13527. characterMakers.push(() => makeCharacter(
  13528. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13529. {
  13530. front: {
  13531. height: math.unit(4, "feet"),
  13532. weight: math.unit(50, "lb"),
  13533. name: "Front",
  13534. image: {
  13535. source: "./media/characters/kole/front.svg",
  13536. extra: 1423 / 1303,
  13537. bottom: 0.025
  13538. }
  13539. },
  13540. back: {
  13541. height: math.unit(4, "feet"),
  13542. weight: math.unit(50, "lb"),
  13543. name: "Back",
  13544. image: {
  13545. source: "./media/characters/kole/back.svg",
  13546. extra: 1426 / 1280,
  13547. bottom: 0.02
  13548. }
  13549. },
  13550. },
  13551. [
  13552. {
  13553. name: "Normal",
  13554. height: math.unit(4, "feet"),
  13555. default: true
  13556. },
  13557. ]
  13558. ))
  13559. characterMakers.push(() => makeCharacter(
  13560. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13561. {
  13562. front: {
  13563. height: math.unit(2.5, "feet"),
  13564. weight: math.unit(32, "lb"),
  13565. name: "Front",
  13566. image: {
  13567. source: "./media/characters/rufran/front.svg",
  13568. extra: 1313/885,
  13569. bottom: 94/1407
  13570. }
  13571. },
  13572. side: {
  13573. height: math.unit(2.5, "feet"),
  13574. weight: math.unit(32, "lb"),
  13575. name: "Side",
  13576. image: {
  13577. source: "./media/characters/rufran/side.svg",
  13578. extra: 1109/852,
  13579. bottom: 118/1227
  13580. }
  13581. },
  13582. back: {
  13583. height: math.unit(2.5, "feet"),
  13584. weight: math.unit(32, "lb"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/rufran/back.svg",
  13588. extra: 1280/878,
  13589. bottom: 131/1411
  13590. }
  13591. },
  13592. mouth: {
  13593. height: math.unit(1.13, "feet"),
  13594. name: "Mouth",
  13595. image: {
  13596. source: "./media/characters/rufran/mouth.svg"
  13597. }
  13598. },
  13599. foot: {
  13600. height: math.unit(1.33, "feet"),
  13601. name: "Foot",
  13602. image: {
  13603. source: "./media/characters/rufran/foot.svg"
  13604. }
  13605. },
  13606. koboldFront: {
  13607. height: math.unit(2 + 6 / 12, "feet"),
  13608. weight: math.unit(20, "lb"),
  13609. name: "Front (Kobold)",
  13610. image: {
  13611. source: "./media/characters/rufran/kobold-front.svg",
  13612. extra: 2041 / 1839,
  13613. bottom: 0.055
  13614. }
  13615. },
  13616. koboldBack: {
  13617. height: math.unit(2 + 6 / 12, "feet"),
  13618. weight: math.unit(20, "lb"),
  13619. name: "Back (Kobold)",
  13620. image: {
  13621. source: "./media/characters/rufran/kobold-back.svg",
  13622. extra: 2054 / 1839,
  13623. bottom: 0.01
  13624. }
  13625. },
  13626. koboldHand: {
  13627. height: math.unit(0.2166, "meters"),
  13628. name: "Hand (Kobold)",
  13629. image: {
  13630. source: "./media/characters/rufran/kobold-hand.svg"
  13631. }
  13632. },
  13633. koboldFoot: {
  13634. height: math.unit(0.185, "meters"),
  13635. name: "Foot (Kobold)",
  13636. image: {
  13637. source: "./media/characters/rufran/kobold-foot.svg"
  13638. }
  13639. },
  13640. },
  13641. [
  13642. {
  13643. name: "Micro",
  13644. height: math.unit(1, "inch")
  13645. },
  13646. {
  13647. name: "Normal",
  13648. height: math.unit(2 + 6 / 12, "feet"),
  13649. default: true
  13650. },
  13651. {
  13652. name: "Big",
  13653. height: math.unit(60, "feet")
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(325, "feet")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(0.3, "meters"),
  13666. weight: math.unit(3.5, "kg"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/chip/front.svg",
  13670. extra: 748 / 674
  13671. }
  13672. },
  13673. },
  13674. [
  13675. {
  13676. name: "Micro",
  13677. height: math.unit(1, "inch"),
  13678. default: true
  13679. },
  13680. ]
  13681. ))
  13682. characterMakers.push(() => makeCharacter(
  13683. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13684. {
  13685. side: {
  13686. height: math.unit(2.3, "meters"),
  13687. weight: math.unit(3500, "lb"),
  13688. name: "Side",
  13689. image: {
  13690. source: "./media/characters/torvid/side.svg",
  13691. extra: 1972 / 722,
  13692. bottom: 0.035
  13693. }
  13694. },
  13695. },
  13696. [
  13697. {
  13698. name: "Normal",
  13699. height: math.unit(2.3, "meters"),
  13700. default: true
  13701. },
  13702. ]
  13703. ))
  13704. characterMakers.push(() => makeCharacter(
  13705. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13706. {
  13707. front: {
  13708. height: math.unit(2, "meters"),
  13709. weight: math.unit(150.5, "kg"),
  13710. name: "Front",
  13711. image: {
  13712. source: "./media/characters/susan/front.svg",
  13713. extra: 693 / 635,
  13714. bottom: 0.05
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Megamacro",
  13721. height: math.unit(505, "miles"),
  13722. default: true
  13723. },
  13724. ]
  13725. ))
  13726. characterMakers.push(() => makeCharacter(
  13727. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13728. {
  13729. front: {
  13730. height: math.unit(6, "feet"),
  13731. weight: math.unit(150, "lb"),
  13732. name: "Front",
  13733. image: {
  13734. source: "./media/characters/raindrops/front.svg",
  13735. extra: 2655 / 2461,
  13736. bottom: 49 / 2705
  13737. }
  13738. },
  13739. back: {
  13740. height: math.unit(6, "feet"),
  13741. weight: math.unit(150, "lb"),
  13742. name: "Back",
  13743. image: {
  13744. source: "./media/characters/raindrops/back.svg",
  13745. extra: 2574 / 2400,
  13746. bottom: 65 / 2634
  13747. }
  13748. },
  13749. },
  13750. [
  13751. {
  13752. name: "Micro",
  13753. height: math.unit(6, "inches")
  13754. },
  13755. {
  13756. name: "Normal",
  13757. height: math.unit(6 + 2 / 12, "feet")
  13758. },
  13759. {
  13760. name: "Macro",
  13761. height: math.unit(131, "feet"),
  13762. default: true
  13763. },
  13764. {
  13765. name: "Megamacro",
  13766. height: math.unit(15, "miles")
  13767. },
  13768. {
  13769. name: "Gigamacro",
  13770. height: math.unit(4000, "miles")
  13771. },
  13772. {
  13773. name: "Teramacro",
  13774. height: math.unit(315000, "miles")
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(2.794, "meters"),
  13783. weight: math.unit(325, "kg"),
  13784. name: "Front",
  13785. image: {
  13786. source: "./media/characters/tezwa/front.svg",
  13787. extra: 2083 / 1906,
  13788. bottom: 0.031
  13789. }
  13790. },
  13791. foot: {
  13792. height: math.unit(0.687, "meters"),
  13793. name: "Foot",
  13794. image: {
  13795. source: "./media/characters/tezwa/foot.svg"
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(9 + 2 / 12, "feet"),
  13803. default: true
  13804. },
  13805. ]
  13806. ))
  13807. characterMakers.push(() => makeCharacter(
  13808. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13809. {
  13810. front: {
  13811. height: math.unit(58, "feet"),
  13812. weight: math.unit(89000, "lb"),
  13813. name: "Front",
  13814. image: {
  13815. source: "./media/characters/typhus/front.svg",
  13816. extra: 816 / 800,
  13817. bottom: 0.065
  13818. }
  13819. },
  13820. },
  13821. [
  13822. {
  13823. name: "Macro",
  13824. height: math.unit(58, "feet"),
  13825. default: true
  13826. },
  13827. ]
  13828. ))
  13829. characterMakers.push(() => makeCharacter(
  13830. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13831. {
  13832. front: {
  13833. height: math.unit(12, "feet"),
  13834. weight: math.unit(6, "tonnes"),
  13835. name: "Front",
  13836. image: {
  13837. source: "./media/characters/lyra-von-wulf/front.svg",
  13838. extra: 1,
  13839. bottom: 0.10
  13840. }
  13841. },
  13842. frontMecha: {
  13843. height: math.unit(12, "feet"),
  13844. weight: math.unit(12, "tonnes"),
  13845. name: "Front (Mecha)",
  13846. image: {
  13847. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13848. extra: 1,
  13849. bottom: 0.042
  13850. }
  13851. },
  13852. maw: {
  13853. height: math.unit(2.2, "feet"),
  13854. name: "Maw",
  13855. image: {
  13856. source: "./media/characters/lyra-von-wulf/maw.svg"
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(12, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Classic",
  13868. height: math.unit(50, "feet")
  13869. },
  13870. {
  13871. name: "Macro",
  13872. height: math.unit(500, "feet")
  13873. },
  13874. {
  13875. name: "Megamacro",
  13876. height: math.unit(1, "mile")
  13877. },
  13878. {
  13879. name: "Gigamacro",
  13880. height: math.unit(400, "miles")
  13881. },
  13882. {
  13883. name: "Teramacro",
  13884. height: math.unit(22000, "miles")
  13885. },
  13886. {
  13887. name: "Solarmacro",
  13888. height: math.unit(8600000, "miles")
  13889. },
  13890. {
  13891. name: "Galactic",
  13892. height: math.unit(1057000, "lightyears")
  13893. },
  13894. ]
  13895. ))
  13896. characterMakers.push(() => makeCharacter(
  13897. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13898. {
  13899. front: {
  13900. height: math.unit(6 + 10 / 12, "feet"),
  13901. weight: math.unit(150, "lb"),
  13902. name: "Front",
  13903. image: {
  13904. source: "./media/characters/dixon/front.svg",
  13905. extra: 3361 / 3209,
  13906. bottom: 0.01
  13907. }
  13908. },
  13909. },
  13910. [
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(6 + 10 / 12, "feet"),
  13914. default: true
  13915. },
  13916. {
  13917. name: "Big",
  13918. height: math.unit(12, "meters")
  13919. },
  13920. {
  13921. name: "Macro",
  13922. height: math.unit(500, "meters")
  13923. },
  13924. {
  13925. name: "Megamacro",
  13926. height: math.unit(2, "km")
  13927. },
  13928. ]
  13929. ))
  13930. characterMakers.push(() => makeCharacter(
  13931. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13932. {
  13933. front: {
  13934. height: math.unit(185, "cm"),
  13935. weight: math.unit(68, "kg"),
  13936. name: "Front",
  13937. image: {
  13938. source: "./media/characters/kauko/front.svg",
  13939. extra: 1455 / 1421,
  13940. bottom: 0.03
  13941. }
  13942. },
  13943. back: {
  13944. height: math.unit(185, "cm"),
  13945. weight: math.unit(68, "kg"),
  13946. name: "Back",
  13947. image: {
  13948. source: "./media/characters/kauko/back.svg",
  13949. extra: 1455 / 1421,
  13950. bottom: 0.004
  13951. }
  13952. },
  13953. },
  13954. [
  13955. {
  13956. name: "Normal",
  13957. height: math.unit(185, "cm"),
  13958. default: true
  13959. },
  13960. ]
  13961. ))
  13962. characterMakers.push(() => makeCharacter(
  13963. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13964. {
  13965. frontSfw: {
  13966. height: math.unit(5, "meters"),
  13967. weight: math.unit(4250, "lb"),
  13968. name: "Front",
  13969. image: {
  13970. source: "./media/characters/varg/front-sfw.svg",
  13971. extra: 1103/1010,
  13972. bottom: 50/1153
  13973. },
  13974. form: "anthro",
  13975. default: true
  13976. },
  13977. backSfw: {
  13978. height: math.unit(5, "meters"),
  13979. weight: math.unit(4250, "lb"),
  13980. name: "Back",
  13981. image: {
  13982. source: "./media/characters/varg/back-sfw.svg",
  13983. extra: 1038/1022,
  13984. bottom: 36/1074
  13985. },
  13986. form: "anthro"
  13987. },
  13988. frontNsfw: {
  13989. height: math.unit(5, "meters"),
  13990. weight: math.unit(4250, "lb"),
  13991. name: "Front (NSFW)",
  13992. image: {
  13993. source: "./media/characters/varg/front-nsfw.svg",
  13994. extra: 1103/1010,
  13995. bottom: 50/1153
  13996. },
  13997. form: "anthro"
  13998. },
  13999. sheath: {
  14000. height: math.unit(3.8, "feet"),
  14001. weight: math.unit(90, "kilograms"),
  14002. name: "Sheath",
  14003. image: {
  14004. source: "./media/characters/varg/sheath.svg"
  14005. },
  14006. form: "anthro"
  14007. },
  14008. dick: {
  14009. height: math.unit(4.6, "feet"),
  14010. weight: math.unit(451, "kilograms"),
  14011. name: "Dick",
  14012. image: {
  14013. source: "./media/characters/varg/dick.svg"
  14014. },
  14015. form: "anthro"
  14016. },
  14017. feralSfw: {
  14018. height: math.unit(5, "meters"),
  14019. weight: math.unit(100000, "lb"),
  14020. name: "Side",
  14021. image: {
  14022. source: "./media/characters/varg/feral-sfw.svg",
  14023. extra: 1065/511,
  14024. bottom: 211/1276
  14025. },
  14026. form: "feral",
  14027. default: true
  14028. },
  14029. feralNsfw: {
  14030. height: math.unit(5, "meters"),
  14031. weight: math.unit(100000, "lb"),
  14032. name: "Side (NSFW)",
  14033. image: {
  14034. source: "./media/characters/varg/feral-nsfw.svg",
  14035. extra: 1065/511,
  14036. bottom: 211/1276
  14037. },
  14038. form: "feral",
  14039. },
  14040. feralSheath: {
  14041. height: math.unit(9.8, "feet"),
  14042. weight: math.unit(2000, "kilograms"),
  14043. name: "Sheath",
  14044. image: {
  14045. source: "./media/characters/varg/sheath.svg"
  14046. },
  14047. form: "feral"
  14048. },
  14049. feralDick: {
  14050. height: math.unit(13.11, "feet"),
  14051. weight: math.unit(10440, "kilograms"),
  14052. name: "Dick",
  14053. image: {
  14054. source: "./media/characters/varg/dick.svg"
  14055. },
  14056. form: "feral"
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Normal",
  14062. height: math.unit(5, "meters"),
  14063. form: "anthro"
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(200, "meters"),
  14068. form: "anthro"
  14069. },
  14070. {
  14071. name: "Megamacro",
  14072. height: math.unit(20, "kilometers"),
  14073. form: "anthro"
  14074. },
  14075. {
  14076. name: "True Size",
  14077. height: math.unit(211, "km"),
  14078. form: "anthro",
  14079. default: true
  14080. },
  14081. {
  14082. name: "Gigamacro",
  14083. height: math.unit(1000, "km"),
  14084. form: "anthro"
  14085. },
  14086. {
  14087. name: "Gigamacro+",
  14088. height: math.unit(8000, "km"),
  14089. form: "anthro"
  14090. },
  14091. {
  14092. name: "Teramacro",
  14093. height: math.unit(1000000, "km"),
  14094. form: "anthro"
  14095. },
  14096. {
  14097. name: "Normal",
  14098. height: math.unit(5, "meters"),
  14099. form: "feral"
  14100. },
  14101. {
  14102. name: "Macro",
  14103. height: math.unit(200, "meters"),
  14104. form: "feral"
  14105. },
  14106. {
  14107. name: "Megamacro",
  14108. height: math.unit(20, "kilometers"),
  14109. form: "feral"
  14110. },
  14111. {
  14112. name: "True Size",
  14113. height: math.unit(211, "km"),
  14114. form: "feral",
  14115. default: true
  14116. },
  14117. {
  14118. name: "Gigamacro",
  14119. height: math.unit(1000, "km"),
  14120. form: "feral"
  14121. },
  14122. {
  14123. name: "Gigamacro+",
  14124. height: math.unit(8000, "km"),
  14125. form: "feral"
  14126. },
  14127. {
  14128. name: "Teramacro",
  14129. height: math.unit(1000000, "km"),
  14130. form: "feral"
  14131. },
  14132. ],
  14133. {
  14134. "anthro": {
  14135. name: "Anthro",
  14136. default: true
  14137. },
  14138. "feral": {
  14139. name: "Feral",
  14140. },
  14141. }
  14142. ))
  14143. characterMakers.push(() => makeCharacter(
  14144. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14145. {
  14146. front: {
  14147. height: math.unit(7 + 7 / 12, "feet"),
  14148. weight: math.unit(267, "lb"),
  14149. name: "Front",
  14150. image: {
  14151. source: "./media/characters/dayza/front.svg",
  14152. extra: 1262 / 1200,
  14153. bottom: 0.035
  14154. }
  14155. },
  14156. side: {
  14157. height: math.unit(7 + 7 / 12, "feet"),
  14158. weight: math.unit(267, "lb"),
  14159. name: "Side",
  14160. image: {
  14161. source: "./media/characters/dayza/side.svg",
  14162. extra: 1295 / 1245,
  14163. bottom: 0.05
  14164. }
  14165. },
  14166. back: {
  14167. height: math.unit(7 + 7 / 12, "feet"),
  14168. weight: math.unit(267, "lb"),
  14169. name: "Back",
  14170. image: {
  14171. source: "./media/characters/dayza/back.svg",
  14172. extra: 1241 / 1170
  14173. }
  14174. },
  14175. },
  14176. [
  14177. {
  14178. name: "Normal",
  14179. height: math.unit(7 + 7 / 12, "feet"),
  14180. default: true
  14181. },
  14182. {
  14183. name: "Macro",
  14184. height: math.unit(155, "feet")
  14185. },
  14186. ]
  14187. ))
  14188. characterMakers.push(() => makeCharacter(
  14189. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14190. {
  14191. front: {
  14192. height: math.unit(6 + 5 / 12, "feet"),
  14193. weight: math.unit(160, "lb"),
  14194. name: "Front",
  14195. image: {
  14196. source: "./media/characters/xanthos/front.svg",
  14197. extra: 1,
  14198. bottom: 0.04
  14199. }
  14200. },
  14201. back: {
  14202. height: math.unit(6 + 5 / 12, "feet"),
  14203. weight: math.unit(160, "lb"),
  14204. name: "Back",
  14205. image: {
  14206. source: "./media/characters/xanthos/back.svg",
  14207. extra: 1,
  14208. bottom: 0.03
  14209. }
  14210. },
  14211. hand: {
  14212. height: math.unit(0.928, "feet"),
  14213. name: "Hand",
  14214. image: {
  14215. source: "./media/characters/xanthos/hand.svg"
  14216. }
  14217. },
  14218. foot: {
  14219. height: math.unit(1.286, "feet"),
  14220. name: "Foot",
  14221. image: {
  14222. source: "./media/characters/xanthos/foot.svg"
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(6 + 5 / 12, "feet"),
  14230. default: true
  14231. },
  14232. {
  14233. name: "Normal+",
  14234. height: math.unit(6, "meters")
  14235. },
  14236. {
  14237. name: "Macro",
  14238. height: math.unit(40, "feet")
  14239. },
  14240. {
  14241. name: "Macro+",
  14242. height: math.unit(200, "meters")
  14243. },
  14244. {
  14245. name: "Megamacro",
  14246. height: math.unit(20, "km")
  14247. },
  14248. {
  14249. name: "Megamacro+",
  14250. height: math.unit(100, "km")
  14251. },
  14252. {
  14253. name: "Gigamacro",
  14254. height: math.unit(200, "megameters")
  14255. },
  14256. {
  14257. name: "Gigamacro+",
  14258. height: math.unit(1.5, "gigameters")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14264. {
  14265. front: {
  14266. height: math.unit(6 + 3 / 12, "feet"),
  14267. weight: math.unit(215, "lb"),
  14268. name: "Front",
  14269. image: {
  14270. source: "./media/characters/grynn/front.svg",
  14271. extra: 4627 / 4209,
  14272. bottom: 0.047
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Micro",
  14279. height: math.unit(6, "inches")
  14280. },
  14281. {
  14282. name: "Normal",
  14283. height: math.unit(6 + 3 / 12, "feet"),
  14284. default: true
  14285. },
  14286. {
  14287. name: "Big",
  14288. height: math.unit(104, "feet")
  14289. },
  14290. {
  14291. name: "Macro",
  14292. height: math.unit(944, "feet")
  14293. },
  14294. {
  14295. name: "Macro+",
  14296. height: math.unit(9480, "feet")
  14297. },
  14298. {
  14299. name: "Megamacro",
  14300. height: math.unit(78752, "feet")
  14301. },
  14302. {
  14303. name: "Megamacro+",
  14304. height: math.unit(630128, "feet")
  14305. },
  14306. {
  14307. name: "Megamacro++",
  14308. height: math.unit(3150695, "feet")
  14309. },
  14310. ]
  14311. ))
  14312. characterMakers.push(() => makeCharacter(
  14313. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14314. {
  14315. front: {
  14316. height: math.unit(7 + 5 / 12, "feet"),
  14317. weight: math.unit(450, "lb"),
  14318. name: "Front",
  14319. image: {
  14320. source: "./media/characters/mocha-aura/front.svg",
  14321. extra: 1907 / 1817,
  14322. bottom: 0.04
  14323. }
  14324. },
  14325. back: {
  14326. height: math.unit(7 + 5 / 12, "feet"),
  14327. weight: math.unit(450, "lb"),
  14328. name: "Back",
  14329. image: {
  14330. source: "./media/characters/mocha-aura/back.svg",
  14331. extra: 1900 / 1825,
  14332. bottom: 0.045
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Nano",
  14339. height: math.unit(1, "nm")
  14340. },
  14341. {
  14342. name: "Megamicro",
  14343. height: math.unit(1, "mm")
  14344. },
  14345. {
  14346. name: "Micro",
  14347. height: math.unit(3, "inches")
  14348. },
  14349. {
  14350. name: "Normal",
  14351. height: math.unit(7 + 5 / 12, "feet"),
  14352. default: true
  14353. },
  14354. {
  14355. name: "Macro",
  14356. height: math.unit(30, "feet")
  14357. },
  14358. {
  14359. name: "Megamacro",
  14360. height: math.unit(3500, "feet")
  14361. },
  14362. {
  14363. name: "Teramacro",
  14364. height: math.unit(500000, "miles")
  14365. },
  14366. {
  14367. name: "Petamacro",
  14368. height: math.unit(50000000000000000, "parsecs")
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(6, "feet"),
  14377. weight: math.unit(150, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/ilisha-devya/front.svg",
  14381. extra: 1053/1049,
  14382. bottom: 270/1323
  14383. }
  14384. },
  14385. back: {
  14386. height: math.unit(6, "feet"),
  14387. weight: math.unit(150, "lb"),
  14388. name: "Back",
  14389. image: {
  14390. source: "./media/characters/ilisha-devya/back.svg",
  14391. extra: 1131/1128,
  14392. bottom: 39/1170
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(500, "feet"),
  14400. default: true
  14401. },
  14402. {
  14403. name: "Megamacro",
  14404. height: math.unit(10, "miles")
  14405. },
  14406. {
  14407. name: "Gigamacro",
  14408. height: math.unit(100000, "miles")
  14409. },
  14410. {
  14411. name: "Examacro",
  14412. height: math.unit(1e9, "lightyears")
  14413. },
  14414. {
  14415. name: "Omniversal",
  14416. height: math.unit(1e33, "lightyears")
  14417. },
  14418. {
  14419. name: "Beyond Infinite",
  14420. height: math.unit(1e100, "lightyears")
  14421. },
  14422. ]
  14423. ))
  14424. characterMakers.push(() => makeCharacter(
  14425. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14426. {
  14427. Side: {
  14428. height: math.unit(6, "feet"),
  14429. weight: math.unit(150, "lb"),
  14430. name: "Side",
  14431. image: {
  14432. source: "./media/characters/mira/side.svg",
  14433. extra: 900 / 799,
  14434. bottom: 0.02
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Human Size",
  14441. height: math.unit(6, "feet")
  14442. },
  14443. {
  14444. name: "Macro",
  14445. height: math.unit(100, "feet"),
  14446. default: true
  14447. },
  14448. {
  14449. name: "Megamacro",
  14450. height: math.unit(10, "miles")
  14451. },
  14452. {
  14453. name: "Gigamacro",
  14454. height: math.unit(25000, "miles")
  14455. },
  14456. {
  14457. name: "Teramacro",
  14458. height: math.unit(300, "AU")
  14459. },
  14460. {
  14461. name: "Full Size",
  14462. height: math.unit(4.5e10, "lightyears")
  14463. },
  14464. ]
  14465. ))
  14466. characterMakers.push(() => makeCharacter(
  14467. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14468. {
  14469. front: {
  14470. height: math.unit(6, "feet"),
  14471. weight: math.unit(150, "lb"),
  14472. name: "Front",
  14473. image: {
  14474. source: "./media/characters/holly/front.svg",
  14475. extra: 639 / 606
  14476. }
  14477. },
  14478. back: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Back",
  14482. image: {
  14483. source: "./media/characters/holly/back.svg",
  14484. extra: 623 / 598
  14485. }
  14486. },
  14487. frontWorking: {
  14488. height: math.unit(6, "feet"),
  14489. weight: math.unit(150, "lb"),
  14490. name: "Front (Working)",
  14491. image: {
  14492. source: "./media/characters/holly/front-working.svg",
  14493. extra: 607 / 577,
  14494. bottom: 0.048
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(12 + 3 / 12, "feet"),
  14502. default: true
  14503. },
  14504. ]
  14505. ))
  14506. characterMakers.push(() => makeCharacter(
  14507. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14508. {
  14509. front: {
  14510. height: math.unit(6, "feet"),
  14511. weight: math.unit(150, "lb"),
  14512. name: "Front",
  14513. image: {
  14514. source: "./media/characters/porter/front.svg",
  14515. extra: 1,
  14516. bottom: 0.01
  14517. }
  14518. },
  14519. frontRobes: {
  14520. height: math.unit(6, "feet"),
  14521. weight: math.unit(150, "lb"),
  14522. name: "Front (Robes)",
  14523. image: {
  14524. source: "./media/characters/porter/front-robes.svg",
  14525. extra: 1.01,
  14526. bottom: 0.01
  14527. }
  14528. },
  14529. },
  14530. [
  14531. {
  14532. name: "Normal",
  14533. height: math.unit(11 + 9 / 12, "feet"),
  14534. default: true
  14535. },
  14536. ]
  14537. ))
  14538. characterMakers.push(() => makeCharacter(
  14539. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14540. {
  14541. legendary: {
  14542. height: math.unit(6, "feet"),
  14543. weight: math.unit(150, "lb"),
  14544. name: "Legendary",
  14545. image: {
  14546. source: "./media/characters/lucy/legendary.svg",
  14547. extra: 1355 / 1100,
  14548. bottom: 0.045
  14549. }
  14550. },
  14551. },
  14552. [
  14553. {
  14554. name: "Legendary",
  14555. height: math.unit(86882 * 2, "miles"),
  14556. default: true
  14557. },
  14558. ]
  14559. ))
  14560. characterMakers.push(() => makeCharacter(
  14561. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14562. {
  14563. front: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(150, "lb"),
  14566. name: "Front",
  14567. image: {
  14568. source: "./media/characters/drusilla/front.svg",
  14569. extra: 678 / 635,
  14570. bottom: 0.03
  14571. }
  14572. },
  14573. back: {
  14574. height: math.unit(6, "feet"),
  14575. weight: math.unit(150, "lb"),
  14576. name: "Back",
  14577. image: {
  14578. source: "./media/characters/drusilla/back.svg",
  14579. extra: 678 / 635,
  14580. bottom: 0.005
  14581. }
  14582. },
  14583. },
  14584. [
  14585. {
  14586. name: "Macro",
  14587. height: math.unit(100, "feet")
  14588. },
  14589. {
  14590. name: "Canon Height",
  14591. height: math.unit(2000, "feet"),
  14592. default: true
  14593. },
  14594. ]
  14595. ))
  14596. characterMakers.push(() => makeCharacter(
  14597. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14598. {
  14599. front: {
  14600. height: math.unit(6, "feet"),
  14601. weight: math.unit(180, "lb"),
  14602. name: "Front",
  14603. image: {
  14604. source: "./media/characters/renard-thatch/front.svg",
  14605. extra: 2411 / 2275,
  14606. bottom: 0.01
  14607. }
  14608. },
  14609. frontPosing: {
  14610. height: math.unit(6, "feet"),
  14611. weight: math.unit(180, "lb"),
  14612. name: "Front (Posing)",
  14613. image: {
  14614. source: "./media/characters/renard-thatch/front-posing.svg",
  14615. extra: 2381 / 2261,
  14616. bottom: 0.01
  14617. }
  14618. },
  14619. back: {
  14620. height: math.unit(6, "feet"),
  14621. weight: math.unit(180, "lb"),
  14622. name: "Back",
  14623. image: {
  14624. source: "./media/characters/renard-thatch/back.svg",
  14625. extra: 2428 / 2288
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Micro",
  14632. height: math.unit(3, "inches")
  14633. },
  14634. {
  14635. name: "Default",
  14636. height: math.unit(6, "feet"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Macro",
  14641. height: math.unit(75, "feet")
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(1450, "feet"),
  14650. weight: math.unit(1.21e6, "tons"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/sekvra/front.svg",
  14654. extra: 1193/1190,
  14655. bottom: 78/1271
  14656. }
  14657. },
  14658. side: {
  14659. height: math.unit(1450, "feet"),
  14660. weight: math.unit(1.21e6, "tons"),
  14661. name: "Side",
  14662. image: {
  14663. source: "./media/characters/sekvra/side.svg",
  14664. extra: 1193/1190,
  14665. bottom: 52/1245
  14666. }
  14667. },
  14668. back: {
  14669. height: math.unit(1450, "feet"),
  14670. weight: math.unit(1.21e6, "tons"),
  14671. name: "Back",
  14672. image: {
  14673. source: "./media/characters/sekvra/back.svg",
  14674. extra: 1219/1216,
  14675. bottom: 21/1240
  14676. }
  14677. },
  14678. frontClothed: {
  14679. height: math.unit(1450, "feet"),
  14680. weight: math.unit(1.21e6, "tons"),
  14681. name: "Front (Clothed)",
  14682. image: {
  14683. source: "./media/characters/sekvra/front-clothed.svg",
  14684. extra: 1192/1189,
  14685. bottom: 79/1271
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Macro",
  14692. height: math.unit(1450, "feet"),
  14693. default: true
  14694. },
  14695. {
  14696. name: "Megamacro",
  14697. height: math.unit(15000, "feet")
  14698. },
  14699. ]
  14700. ))
  14701. characterMakers.push(() => makeCharacter(
  14702. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14703. {
  14704. front: {
  14705. height: math.unit(6, "feet"),
  14706. weight: math.unit(150, "lb"),
  14707. name: "Front",
  14708. image: {
  14709. source: "./media/characters/carmine/front.svg",
  14710. extra: 1,
  14711. bottom: 0.035
  14712. }
  14713. },
  14714. frontArmor: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(150, "lb"),
  14717. name: "Front (Armor)",
  14718. image: {
  14719. source: "./media/characters/carmine/front-armor.svg",
  14720. extra: 1,
  14721. bottom: 0.035
  14722. }
  14723. },
  14724. },
  14725. [
  14726. {
  14727. name: "Large",
  14728. height: math.unit(1, "mile")
  14729. },
  14730. {
  14731. name: "Huge",
  14732. height: math.unit(40, "miles"),
  14733. default: true
  14734. },
  14735. {
  14736. name: "Colossal",
  14737. height: math.unit(2500, "miles")
  14738. },
  14739. ]
  14740. ))
  14741. characterMakers.push(() => makeCharacter(
  14742. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14743. {
  14744. front: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(150, "lb"),
  14747. name: "Front",
  14748. image: {
  14749. source: "./media/characters/elyssia/front.svg",
  14750. extra: 2201 / 2035,
  14751. bottom: 0.05
  14752. }
  14753. },
  14754. frontClothed: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(150, "lb"),
  14757. name: "Front (Clothed)",
  14758. image: {
  14759. source: "./media/characters/elyssia/front-clothed.svg",
  14760. extra: 2201 / 2035,
  14761. bottom: 0.05
  14762. }
  14763. },
  14764. back: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(150, "lb"),
  14767. name: "Back",
  14768. image: {
  14769. source: "./media/characters/elyssia/back.svg",
  14770. extra: 2201 / 2035,
  14771. bottom: 0.013
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Smaller",
  14778. height: math.unit(150, "feet")
  14779. },
  14780. {
  14781. name: "Standard",
  14782. height: math.unit(1400, "feet"),
  14783. default: true
  14784. },
  14785. {
  14786. name: "Distracted",
  14787. height: math.unit(15000, "feet")
  14788. },
  14789. ]
  14790. ))
  14791. characterMakers.push(() => makeCharacter(
  14792. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14793. {
  14794. front: {
  14795. height: math.unit(7 + 4/12, "feet"),
  14796. weight: math.unit(690, "lb"),
  14797. name: "Front",
  14798. image: {
  14799. source: "./media/characters/geno-maxwell/front.svg",
  14800. extra: 984/856,
  14801. bottom: 87/1071
  14802. }
  14803. },
  14804. back: {
  14805. height: math.unit(7 + 4/12, "feet"),
  14806. weight: math.unit(690, "lb"),
  14807. name: "Back",
  14808. image: {
  14809. source: "./media/characters/geno-maxwell/back.svg",
  14810. extra: 981/854,
  14811. bottom: 57/1038
  14812. }
  14813. },
  14814. frontCostume: {
  14815. height: math.unit(7 + 4/12, "feet"),
  14816. weight: math.unit(690, "lb"),
  14817. name: "Front (Costume)",
  14818. image: {
  14819. source: "./media/characters/geno-maxwell/front-costume.svg",
  14820. extra: 984/856,
  14821. bottom: 87/1071
  14822. }
  14823. },
  14824. backcostume: {
  14825. height: math.unit(7 + 4/12, "feet"),
  14826. weight: math.unit(690, "lb"),
  14827. name: "Back (Costume)",
  14828. image: {
  14829. source: "./media/characters/geno-maxwell/back-costume.svg",
  14830. extra: 981/854,
  14831. bottom: 57/1038
  14832. }
  14833. },
  14834. },
  14835. [
  14836. {
  14837. name: "Micro",
  14838. height: math.unit(3, "inches")
  14839. },
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(7 + 4 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(220, "feet")
  14848. },
  14849. {
  14850. name: "Megamacro",
  14851. height: math.unit(11, "miles")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(7 + 4/12, "feet"),
  14860. weight: math.unit(750, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/regena-maxwell/front.svg",
  14864. extra: 984/856,
  14865. bottom: 87/1071
  14866. }
  14867. },
  14868. back: {
  14869. height: math.unit(7 + 4/12, "feet"),
  14870. weight: math.unit(750, "lb"),
  14871. name: "Back",
  14872. image: {
  14873. source: "./media/characters/regena-maxwell/back.svg",
  14874. extra: 981/854,
  14875. bottom: 57/1038
  14876. }
  14877. },
  14878. frontCostume: {
  14879. height: math.unit(7 + 4/12, "feet"),
  14880. weight: math.unit(750, "lb"),
  14881. name: "Front (Costume)",
  14882. image: {
  14883. source: "./media/characters/regena-maxwell/front-costume.svg",
  14884. extra: 984/856,
  14885. bottom: 87/1071
  14886. }
  14887. },
  14888. backcostume: {
  14889. height: math.unit(7 + 4/12, "feet"),
  14890. weight: math.unit(750, "lb"),
  14891. name: "Back (Costume)",
  14892. image: {
  14893. source: "./media/characters/regena-maxwell/back-costume.svg",
  14894. extra: 981/854,
  14895. bottom: 57/1038
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(7 + 4 / 12, "feet"),
  14903. default: true
  14904. },
  14905. {
  14906. name: "Macro",
  14907. height: math.unit(220, "feet")
  14908. },
  14909. {
  14910. name: "Megamacro",
  14911. height: math.unit(11, "miles")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14924. extra: 860 / 690,
  14925. bottom: 0.03
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Normal",
  14932. height: math.unit(1.7, "meters"),
  14933. default: true
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(6, "feet"),
  14942. weight: math.unit(150, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/quilly/front.svg",
  14946. extra: 890 / 776
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Gigamacro",
  14953. height: math.unit(404090, "miles"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14960. {
  14961. front: {
  14962. height: math.unit(7 + 8 / 12, "feet"),
  14963. weight: math.unit(350, "lb"),
  14964. name: "Front",
  14965. image: {
  14966. source: "./media/characters/tempest/front.svg",
  14967. extra: 1175 / 1086,
  14968. bottom: 0.02
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Normal",
  14975. height: math.unit(7 + 8 / 12, "feet"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14982. {
  14983. side: {
  14984. height: math.unit(4 + 5 / 12, "feet"),
  14985. weight: math.unit(80, "lb"),
  14986. name: "Side",
  14987. image: {
  14988. source: "./media/characters/rodger/side.svg",
  14989. extra: 1235 / 1118
  14990. }
  14991. },
  14992. },
  14993. [
  14994. {
  14995. name: "Micro",
  14996. height: math.unit(1, "inch")
  14997. },
  14998. {
  14999. name: "Normal",
  15000. height: math.unit(4 + 5 / 12, "feet"),
  15001. default: true
  15002. },
  15003. {
  15004. name: "Macro",
  15005. height: math.unit(120, "feet")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/danyel/front.svg",
  15018. extra: 1185 / 1123,
  15019. bottom: 0.05
  15020. }
  15021. },
  15022. },
  15023. [
  15024. {
  15025. name: "Shrunken",
  15026. height: math.unit(0.5, "mm")
  15027. },
  15028. {
  15029. name: "Micro",
  15030. height: math.unit(1, "mm"),
  15031. default: true
  15032. },
  15033. {
  15034. name: "Upsized",
  15035. height: math.unit(5 + 5 / 12, "feet")
  15036. },
  15037. ]
  15038. ))
  15039. characterMakers.push(() => makeCharacter(
  15040. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15041. {
  15042. front: {
  15043. height: math.unit(5 + 6 / 12, "feet"),
  15044. weight: math.unit(200, "lb"),
  15045. name: "Front",
  15046. image: {
  15047. source: "./media/characters/vivian-bijoux/front.svg",
  15048. extra: 1217/1209,
  15049. bottom: 76/1293
  15050. }
  15051. },
  15052. back: {
  15053. height: math.unit(5 + 6 / 12, "feet"),
  15054. weight: math.unit(200, "lb"),
  15055. name: "Back",
  15056. image: {
  15057. source: "./media/characters/vivian-bijoux/back.svg",
  15058. extra: 1214/1208,
  15059. bottom: 51/1265
  15060. }
  15061. },
  15062. dressed: {
  15063. height: math.unit(5 + 6 / 12, "feet"),
  15064. weight: math.unit(200, "lb"),
  15065. name: "Dressed",
  15066. image: {
  15067. source: "./media/characters/vivian-bijoux/dressed.svg",
  15068. extra: 1217/1209,
  15069. bottom: 76/1293
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(5 + 6 / 12, "feet"),
  15077. default: true
  15078. },
  15079. {
  15080. name: "Bad Dream",
  15081. height: math.unit(500, "feet")
  15082. },
  15083. {
  15084. name: "Nightmare",
  15085. height: math.unit(500, "miles")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6 + 1 / 12, "feet"),
  15094. weight: math.unit(260, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/zeta/front.svg",
  15098. extra: 1968 / 1889,
  15099. bottom: 0.06
  15100. }
  15101. },
  15102. back: {
  15103. height: math.unit(6 + 1 / 12, "feet"),
  15104. weight: math.unit(260, "lb"),
  15105. name: "Back",
  15106. image: {
  15107. source: "./media/characters/zeta/back.svg",
  15108. extra: 1944 / 1858,
  15109. bottom: 0.03
  15110. }
  15111. },
  15112. hand: {
  15113. height: math.unit(1.112, "feet"),
  15114. name: "Hand",
  15115. image: {
  15116. source: "./media/characters/zeta/hand.svg"
  15117. }
  15118. },
  15119. foot: {
  15120. height: math.unit(1.48, "feet"),
  15121. name: "Foot",
  15122. image: {
  15123. source: "./media/characters/zeta/foot.svg"
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Micro",
  15130. height: math.unit(6, "inches")
  15131. },
  15132. {
  15133. name: "Normal",
  15134. height: math.unit(6 + 1 / 12, "feet"),
  15135. default: true
  15136. },
  15137. {
  15138. name: "Macro",
  15139. height: math.unit(20, "feet")
  15140. },
  15141. ]
  15142. ))
  15143. characterMakers.push(() => makeCharacter(
  15144. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15145. {
  15146. front: {
  15147. height: math.unit(6, "feet"),
  15148. weight: math.unit(150, "lb"),
  15149. name: "Front",
  15150. image: {
  15151. source: "./media/characters/jamie-larsen/front.svg",
  15152. extra: 962 / 933,
  15153. bottom: 0.02
  15154. }
  15155. },
  15156. back: {
  15157. height: math.unit(6, "feet"),
  15158. weight: math.unit(150, "lb"),
  15159. name: "Back",
  15160. image: {
  15161. source: "./media/characters/jamie-larsen/back.svg",
  15162. extra: 997 / 946
  15163. }
  15164. },
  15165. },
  15166. [
  15167. {
  15168. name: "Macro",
  15169. height: math.unit(28 + 7 / 12, "feet"),
  15170. default: true
  15171. },
  15172. {
  15173. name: "Macro+",
  15174. height: math.unit(180, "feet")
  15175. },
  15176. {
  15177. name: "Megamacro",
  15178. height: math.unit(10, "miles")
  15179. },
  15180. {
  15181. name: "Gigamacro",
  15182. height: math.unit(200000, "miles")
  15183. },
  15184. ]
  15185. ))
  15186. characterMakers.push(() => makeCharacter(
  15187. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15188. {
  15189. front: {
  15190. height: math.unit(6, "feet"),
  15191. weight: math.unit(120, "lb"),
  15192. name: "Front",
  15193. image: {
  15194. source: "./media/characters/vance/front.svg",
  15195. extra: 1980 / 1890,
  15196. bottom: 0.09
  15197. }
  15198. },
  15199. back: {
  15200. height: math.unit(6, "feet"),
  15201. weight: math.unit(120, "lb"),
  15202. name: "Back",
  15203. image: {
  15204. source: "./media/characters/vance/back.svg",
  15205. extra: 2081 / 1994,
  15206. bottom: 0.014
  15207. }
  15208. },
  15209. hand: {
  15210. height: math.unit(0.88, "feet"),
  15211. name: "Hand",
  15212. image: {
  15213. source: "./media/characters/vance/hand.svg"
  15214. }
  15215. },
  15216. foot: {
  15217. height: math.unit(0.64, "feet"),
  15218. name: "Foot",
  15219. image: {
  15220. source: "./media/characters/vance/foot.svg"
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Small",
  15227. height: math.unit(90, "feet"),
  15228. default: true
  15229. },
  15230. {
  15231. name: "Macro",
  15232. height: math.unit(100, "meters")
  15233. },
  15234. {
  15235. name: "Megamacro",
  15236. height: math.unit(15, "miles")
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(180, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/xochitl/front.svg",
  15249. extra: 2297 / 2261,
  15250. bottom: 0.065
  15251. }
  15252. },
  15253. back: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(180, "lb"),
  15256. name: "Back",
  15257. image: {
  15258. source: "./media/characters/xochitl/back.svg",
  15259. extra: 2386 / 2354,
  15260. bottom: 0.01
  15261. }
  15262. },
  15263. foot: {
  15264. height: math.unit(6 / 5 * 1.15, "feet"),
  15265. weight: math.unit(150, "lb"),
  15266. name: "Foot",
  15267. image: {
  15268. source: "./media/characters/xochitl/foot.svg"
  15269. }
  15270. },
  15271. },
  15272. [
  15273. {
  15274. name: "Macro",
  15275. height: math.unit(80, "feet")
  15276. },
  15277. {
  15278. name: "Macro+",
  15279. height: math.unit(400, "feet"),
  15280. default: true
  15281. },
  15282. {
  15283. name: "Gigamacro",
  15284. height: math.unit(80000, "miles")
  15285. },
  15286. {
  15287. name: "Gigamacro+",
  15288. height: math.unit(400000, "miles")
  15289. },
  15290. {
  15291. name: "Teramacro",
  15292. height: math.unit(300, "AU")
  15293. },
  15294. ]
  15295. ))
  15296. characterMakers.push(() => makeCharacter(
  15297. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15298. {
  15299. front: {
  15300. height: math.unit(6, "feet"),
  15301. weight: math.unit(150, "lb"),
  15302. name: "Front",
  15303. image: {
  15304. source: "./media/characters/vincent/front.svg",
  15305. extra: 1130 / 1080,
  15306. bottom: 0.055
  15307. }
  15308. },
  15309. beak: {
  15310. height: math.unit(6 * 0.1, "feet"),
  15311. name: "Beak",
  15312. image: {
  15313. source: "./media/characters/vincent/beak.svg"
  15314. }
  15315. },
  15316. hand: {
  15317. height: math.unit(6 * 0.85, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Hand",
  15320. image: {
  15321. source: "./media/characters/vincent/hand.svg"
  15322. }
  15323. },
  15324. foot: {
  15325. height: math.unit(6 * 0.19, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Foot",
  15328. image: {
  15329. source: "./media/characters/vincent/foot.svg"
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Base",
  15336. height: math.unit(6 + 5 / 12, "feet"),
  15337. default: true
  15338. },
  15339. {
  15340. name: "Macro",
  15341. height: math.unit(300, "feet")
  15342. },
  15343. {
  15344. name: "Megamacro",
  15345. height: math.unit(2, "miles")
  15346. },
  15347. {
  15348. name: "Gigamacro",
  15349. height: math.unit(1000, "miles")
  15350. },
  15351. ]
  15352. ))
  15353. characterMakers.push(() => makeCharacter(
  15354. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15355. {
  15356. front: {
  15357. height: math.unit(2, "meters"),
  15358. weight: math.unit(500, "kg"),
  15359. name: "Front",
  15360. image: {
  15361. source: "./media/characters/coatl/front.svg",
  15362. extra: 3948 / 3500,
  15363. bottom: 0.082
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Normal",
  15370. height: math.unit(4, "meters")
  15371. },
  15372. {
  15373. name: "Macro",
  15374. height: math.unit(100, "meters"),
  15375. default: true
  15376. },
  15377. {
  15378. name: "Macro+",
  15379. height: math.unit(300, "meters")
  15380. },
  15381. {
  15382. name: "Megamacro",
  15383. height: math.unit(3, "gigameters")
  15384. },
  15385. {
  15386. name: "Megamacro+",
  15387. height: math.unit(300, "terameters")
  15388. },
  15389. {
  15390. name: "Megamacro++",
  15391. height: math.unit(3, "lightyears")
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(6, "feet"),
  15400. weight: math.unit(50, "kg"),
  15401. name: "front",
  15402. image: {
  15403. source: "./media/characters/shiroryu/front.svg",
  15404. extra: 1990 / 1935
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Mortal Mingling",
  15411. height: math.unit(3, "meters")
  15412. },
  15413. {
  15414. name: "Kaiju-ish",
  15415. height: math.unit(250, "meters")
  15416. },
  15417. {
  15418. name: "Somewhat Godly",
  15419. height: math.unit(400, "km"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Planetary",
  15424. height: math.unit(300, "megameters")
  15425. },
  15426. {
  15427. name: "Galaxy-dwarfing",
  15428. height: math.unit(450, "kiloparsecs")
  15429. },
  15430. {
  15431. name: "Universe Eater",
  15432. height: math.unit(150, "gigaparsecs")
  15433. },
  15434. {
  15435. name: "Almost Immeasurable",
  15436. height: math.unit(1.3e266, "yottaparsecs")
  15437. },
  15438. ]
  15439. ))
  15440. characterMakers.push(() => makeCharacter(
  15441. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15442. {
  15443. front: {
  15444. height: math.unit(6, "feet"),
  15445. weight: math.unit(150, "lb"),
  15446. name: "Front",
  15447. image: {
  15448. source: "./media/characters/umeko/front.svg",
  15449. extra: 1,
  15450. bottom: 0.019
  15451. }
  15452. },
  15453. frontArmored: {
  15454. height: math.unit(6, "feet"),
  15455. weight: math.unit(150, "lb"),
  15456. name: "Front (Armored)",
  15457. image: {
  15458. source: "./media/characters/umeko/front-armored.svg",
  15459. extra: 1,
  15460. bottom: 0.021
  15461. }
  15462. },
  15463. },
  15464. [
  15465. {
  15466. name: "Macro",
  15467. height: math.unit(220, "feet"),
  15468. default: true
  15469. },
  15470. {
  15471. name: "Guardian Dragon",
  15472. height: math.unit(50, "miles")
  15473. },
  15474. {
  15475. name: "Cosmic",
  15476. height: math.unit(800000, "miles")
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(6, "feet"),
  15485. weight: math.unit(150, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/cassidy/front.svg",
  15489. extra: 810/808,
  15490. bottom: 41/851
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Canon Height",
  15497. height: math.unit(120, "feet"),
  15498. default: true
  15499. },
  15500. {
  15501. name: "Macro+",
  15502. height: math.unit(400, "feet")
  15503. },
  15504. {
  15505. name: "Macro++",
  15506. height: math.unit(4000, "feet")
  15507. },
  15508. {
  15509. name: "Megamacro",
  15510. height: math.unit(3, "miles")
  15511. },
  15512. ]
  15513. ))
  15514. characterMakers.push(() => makeCharacter(
  15515. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15516. {
  15517. front: {
  15518. height: math.unit(6, "feet"),
  15519. weight: math.unit(150, "lb"),
  15520. name: "Front",
  15521. image: {
  15522. source: "./media/characters/isaac/front.svg",
  15523. extra: 896 / 815,
  15524. bottom: 0.11
  15525. }
  15526. },
  15527. },
  15528. [
  15529. {
  15530. name: "Human Size",
  15531. height: math.unit(8, "feet"),
  15532. default: true
  15533. },
  15534. {
  15535. name: "Macro",
  15536. height: math.unit(400, "feet")
  15537. },
  15538. {
  15539. name: "Megamacro",
  15540. height: math.unit(50, "miles")
  15541. },
  15542. {
  15543. name: "Canon Height",
  15544. height: math.unit(200, "AU")
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(6, "feet"),
  15553. weight: math.unit(72, "kg"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/sleekit/front.svg",
  15557. extra: 4693 / 4487,
  15558. bottom: 0.012
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Minimum Height",
  15565. height: math.unit(10, "meters")
  15566. },
  15567. {
  15568. name: "Smaller",
  15569. height: math.unit(25, "meters")
  15570. },
  15571. {
  15572. name: "Larger",
  15573. height: math.unit(38, "meters"),
  15574. default: true
  15575. },
  15576. {
  15577. name: "Maximum height",
  15578. height: math.unit(100, "meters")
  15579. },
  15580. ]
  15581. ))
  15582. characterMakers.push(() => makeCharacter(
  15583. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15584. {
  15585. front: {
  15586. height: math.unit(6, "feet"),
  15587. weight: math.unit(150, "lb"),
  15588. name: "Front",
  15589. image: {
  15590. source: "./media/characters/nillia/front.svg",
  15591. extra: 2195 / 2037,
  15592. bottom: 0.005
  15593. }
  15594. },
  15595. back: {
  15596. height: math.unit(6, "feet"),
  15597. weight: math.unit(150, "lb"),
  15598. name: "Back",
  15599. image: {
  15600. source: "./media/characters/nillia/back.svg",
  15601. extra: 2195 / 2037,
  15602. bottom: 0.005
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Canon Height",
  15609. height: math.unit(489, "feet"),
  15610. default: true
  15611. }
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(6, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/mesmyriza/front.svg",
  15623. extra: 2067 / 1784,
  15624. bottom: 0.035
  15625. }
  15626. },
  15627. foot: {
  15628. height: math.unit(6 / (250 / 35), "feet"),
  15629. name: "Foot",
  15630. image: {
  15631. source: "./media/characters/mesmyriza/foot.svg"
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Macro",
  15638. height: math.unit(457, "meters"),
  15639. default: true
  15640. },
  15641. {
  15642. name: "Megamacro",
  15643. height: math.unit(8, "megameters")
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15649. {
  15650. front: {
  15651. height: math.unit(6, "feet"),
  15652. weight: math.unit(250, "lb"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/saudade/front.svg",
  15656. extra: 1172 / 1139,
  15657. bottom: 0.035
  15658. }
  15659. },
  15660. },
  15661. [
  15662. {
  15663. name: "Micro",
  15664. height: math.unit(3, "inches")
  15665. },
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(6, "feet"),
  15669. default: true
  15670. },
  15671. {
  15672. name: "Macro",
  15673. height: math.unit(50, "feet")
  15674. },
  15675. {
  15676. name: "Megamacro",
  15677. height: math.unit(2800, "feet")
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15683. {
  15684. front: {
  15685. height: math.unit(5 + 4 / 12, "feet"),
  15686. weight: math.unit(100, "lb"),
  15687. name: "Front",
  15688. image: {
  15689. source: "./media/characters/keireer/front.svg",
  15690. extra: 716 / 666,
  15691. bottom: 0.05
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(5 + 4 / 12, "feet"),
  15699. default: true
  15700. },
  15701. ]
  15702. ))
  15703. characterMakers.push(() => makeCharacter(
  15704. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15705. {
  15706. front: {
  15707. height: math.unit(5.5, "feet"),
  15708. weight: math.unit(90, "kg"),
  15709. name: "Front",
  15710. image: {
  15711. source: "./media/characters/mirja/front.svg",
  15712. extra: 1452/1262,
  15713. bottom: 67/1519
  15714. }
  15715. },
  15716. frontDressed: {
  15717. height: math.unit(5.5, "feet"),
  15718. weight: math.unit(90, "lb"),
  15719. name: "Front (Dressed)",
  15720. image: {
  15721. source: "./media/characters/mirja/dressed.svg",
  15722. extra: 1452/1262,
  15723. bottom: 67/1519
  15724. }
  15725. },
  15726. back: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(90, "lb"),
  15729. name: "Back",
  15730. image: {
  15731. source: "./media/characters/mirja/back.svg",
  15732. extra: 1892/1795,
  15733. bottom: 48/1940
  15734. }
  15735. },
  15736. maw: {
  15737. height: math.unit(1.312, "feet"),
  15738. name: "Maw",
  15739. image: {
  15740. source: "./media/characters/mirja/maw.svg"
  15741. }
  15742. },
  15743. paw: {
  15744. height: math.unit(1.15, "feet"),
  15745. name: "Paw",
  15746. image: {
  15747. source: "./media/characters/mirja/paw.svg"
  15748. }
  15749. },
  15750. },
  15751. [
  15752. {
  15753. name: "\"Incognito\"",
  15754. height: math.unit(3, "meters")
  15755. },
  15756. {
  15757. name: "Strolling Size",
  15758. height: math.unit(15, "km")
  15759. },
  15760. {
  15761. name: "Larger Strolling Size",
  15762. height: math.unit(400, "km")
  15763. },
  15764. {
  15765. name: "Preferred Size",
  15766. height: math.unit(5000, "km"),
  15767. default: true
  15768. },
  15769. {
  15770. name: "True Size",
  15771. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15772. },
  15773. ]
  15774. ))
  15775. characterMakers.push(() => makeCharacter(
  15776. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15777. {
  15778. front: {
  15779. height: math.unit(15, "feet"),
  15780. weight: math.unit(880, "kg"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/nightraver/front.svg",
  15784. extra: 2444 / 2160,
  15785. bottom: 0.027
  15786. }
  15787. },
  15788. back: {
  15789. height: math.unit(15, "feet"),
  15790. weight: math.unit(880, "kg"),
  15791. name: "Back",
  15792. image: {
  15793. source: "./media/characters/nightraver/back.svg",
  15794. extra: 2309 / 2180,
  15795. bottom: 0.005
  15796. }
  15797. },
  15798. sole: {
  15799. height: math.unit(2.878, "feet"),
  15800. name: "Sole",
  15801. image: {
  15802. source: "./media/characters/nightraver/sole.svg"
  15803. }
  15804. },
  15805. foot: {
  15806. height: math.unit(2.285, "feet"),
  15807. name: "Foot",
  15808. image: {
  15809. source: "./media/characters/nightraver/foot.svg"
  15810. }
  15811. },
  15812. maw: {
  15813. height: math.unit(2.67, "feet"),
  15814. name: "Maw",
  15815. image: {
  15816. source: "./media/characters/nightraver/maw.svg"
  15817. }
  15818. },
  15819. },
  15820. [
  15821. {
  15822. name: "Micro",
  15823. height: math.unit(1, "cm")
  15824. },
  15825. {
  15826. name: "Normal",
  15827. height: math.unit(15, "feet"),
  15828. default: true
  15829. },
  15830. {
  15831. name: "Macro",
  15832. height: math.unit(300, "feet")
  15833. },
  15834. {
  15835. name: "Megamacro",
  15836. height: math.unit(300, "miles")
  15837. },
  15838. {
  15839. name: "Gigamacro",
  15840. height: math.unit(10000, "miles")
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15846. {
  15847. side: {
  15848. height: math.unit(2, "inches"),
  15849. weight: math.unit(5, "grams"),
  15850. name: "Side",
  15851. image: {
  15852. source: "./media/characters/arc/side.svg"
  15853. }
  15854. },
  15855. },
  15856. [
  15857. {
  15858. name: "Micro",
  15859. height: math.unit(2, "inches"),
  15860. default: true
  15861. },
  15862. ]
  15863. ))
  15864. characterMakers.push(() => makeCharacter(
  15865. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15866. {
  15867. front: {
  15868. height: math.unit(1.1938, "meters"),
  15869. weight: math.unit(54, "kg"),
  15870. name: "Front",
  15871. image: {
  15872. source: "./media/characters/nebula-shahar/front.svg",
  15873. extra: 1642 / 1436,
  15874. bottom: 0.06
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Megamicro",
  15881. height: math.unit(0.3, "mm")
  15882. },
  15883. {
  15884. name: "Micro",
  15885. height: math.unit(3, "cm")
  15886. },
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(138, "cm"),
  15890. default: true
  15891. },
  15892. {
  15893. name: "Macro",
  15894. height: math.unit(30, "m")
  15895. },
  15896. ]
  15897. ))
  15898. characterMakers.push(() => makeCharacter(
  15899. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15900. {
  15901. front: {
  15902. height: math.unit(5.24, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Front",
  15905. image: {
  15906. source: "./media/characters/shayla/front.svg",
  15907. extra: 1512 / 1414,
  15908. bottom: 0.01
  15909. }
  15910. },
  15911. back: {
  15912. height: math.unit(5.24, "feet"),
  15913. weight: math.unit(150, "lb"),
  15914. name: "Back",
  15915. image: {
  15916. source: "./media/characters/shayla/back.svg",
  15917. extra: 1512 / 1414
  15918. }
  15919. },
  15920. hand: {
  15921. height: math.unit(0.7781496062992126, "feet"),
  15922. name: "Hand",
  15923. image: {
  15924. source: "./media/characters/shayla/hand.svg"
  15925. }
  15926. },
  15927. foot: {
  15928. height: math.unit(1.4206036745406823, "feet"),
  15929. name: "Foot",
  15930. image: {
  15931. source: "./media/characters/shayla/foot.svg"
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Micro",
  15938. height: math.unit(0.32, "feet")
  15939. },
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(5.24, "feet"),
  15943. default: true
  15944. },
  15945. {
  15946. name: "Macro",
  15947. height: math.unit(492.12, "feet")
  15948. },
  15949. {
  15950. name: "Megamacro",
  15951. height: math.unit(186.41, "miles")
  15952. },
  15953. ]
  15954. ))
  15955. characterMakers.push(() => makeCharacter(
  15956. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15957. {
  15958. front: {
  15959. height: math.unit(2.2, "m"),
  15960. weight: math.unit(120, "kg"),
  15961. name: "Front",
  15962. image: {
  15963. source: "./media/characters/pia-jr/front.svg",
  15964. extra: 1000 / 970,
  15965. bottom: 0.035
  15966. }
  15967. },
  15968. hand: {
  15969. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15970. name: "Hand",
  15971. image: {
  15972. source: "./media/characters/pia-jr/hand.svg"
  15973. }
  15974. },
  15975. paw: {
  15976. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15977. name: "Paw",
  15978. image: {
  15979. source: "./media/characters/pia-jr/paw.svg"
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Micro",
  15986. height: math.unit(1.2, "cm")
  15987. },
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(2.2, "m"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(180, "m")
  15996. },
  15997. {
  15998. name: "Megamacro",
  15999. height: math.unit(420, "km")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(2, "m"),
  16008. weight: math.unit(115, "kg"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/pia-sr/front.svg",
  16012. extra: 760 / 730,
  16013. bottom: 0.015
  16014. }
  16015. },
  16016. back: {
  16017. height: math.unit(2, "m"),
  16018. weight: math.unit(115, "kg"),
  16019. name: "Back",
  16020. image: {
  16021. source: "./media/characters/pia-sr/back.svg",
  16022. extra: 760 / 730,
  16023. bottom: 0.01
  16024. }
  16025. },
  16026. hand: {
  16027. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16028. name: "Hand",
  16029. image: {
  16030. source: "./media/characters/pia-sr/hand.svg"
  16031. }
  16032. },
  16033. foot: {
  16034. height: math.unit(1.83, "feet"),
  16035. name: "Foot",
  16036. image: {
  16037. source: "./media/characters/pia-sr/foot.svg"
  16038. }
  16039. },
  16040. },
  16041. [
  16042. {
  16043. name: "Micro",
  16044. height: math.unit(88, "mm")
  16045. },
  16046. {
  16047. name: "Normal",
  16048. height: math.unit(2, "m"),
  16049. default: true
  16050. },
  16051. {
  16052. name: "Macro",
  16053. height: math.unit(200, "m")
  16054. },
  16055. {
  16056. name: "Megamacro",
  16057. height: math.unit(420, "km")
  16058. },
  16059. ]
  16060. ))
  16061. characterMakers.push(() => makeCharacter(
  16062. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16063. {
  16064. front: {
  16065. height: math.unit(8 + 2 / 12, "feet"),
  16066. weight: math.unit(300, "lb"),
  16067. name: "Front",
  16068. image: {
  16069. source: "./media/characters/kibibyte/front.svg",
  16070. extra: 2221 / 2098,
  16071. bottom: 0.04
  16072. }
  16073. },
  16074. },
  16075. [
  16076. {
  16077. name: "Normal",
  16078. height: math.unit(8 + 2 / 12, "feet"),
  16079. default: true
  16080. },
  16081. {
  16082. name: "Socialable Macro",
  16083. height: math.unit(50, "feet")
  16084. },
  16085. {
  16086. name: "Macro",
  16087. height: math.unit(300, "feet")
  16088. },
  16089. {
  16090. name: "Megamacro",
  16091. height: math.unit(500, "miles")
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16097. {
  16098. front: {
  16099. height: math.unit(6, "feet"),
  16100. weight: math.unit(150, "lb"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/felix/front.svg",
  16104. extra: 762 / 722,
  16105. bottom: 0.02
  16106. }
  16107. },
  16108. frontClothed: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Front (Clothed)",
  16112. image: {
  16113. source: "./media/characters/felix/front-clothed.svg",
  16114. extra: 762 / 722,
  16115. bottom: 0.02
  16116. }
  16117. },
  16118. },
  16119. [
  16120. {
  16121. name: "Normal",
  16122. height: math.unit(6 + 8 / 12, "feet"),
  16123. default: true
  16124. },
  16125. {
  16126. name: "Macro",
  16127. height: math.unit(2600, "feet")
  16128. },
  16129. {
  16130. name: "Megamacro",
  16131. height: math.unit(450, "miles")
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(6 + 1 / 12, "feet"),
  16140. weight: math.unit(250, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/tobo/front.svg",
  16144. extra: 608 / 586,
  16145. bottom: 0.023
  16146. }
  16147. },
  16148. back: {
  16149. height: math.unit(6 + 1 / 12, "feet"),
  16150. weight: math.unit(250, "lb"),
  16151. name: "Back",
  16152. image: {
  16153. source: "./media/characters/tobo/back.svg",
  16154. extra: 608 / 586
  16155. }
  16156. },
  16157. },
  16158. [
  16159. {
  16160. name: "Nano",
  16161. height: math.unit(2, "nm")
  16162. },
  16163. {
  16164. name: "Megamicro",
  16165. height: math.unit(0.1, "mm")
  16166. },
  16167. {
  16168. name: "Micro",
  16169. height: math.unit(1, "inch"),
  16170. default: true
  16171. },
  16172. {
  16173. name: "Human-sized",
  16174. height: math.unit(6 + 1 / 12, "feet")
  16175. },
  16176. {
  16177. name: "Macro",
  16178. height: math.unit(250, "feet")
  16179. },
  16180. {
  16181. name: "Megamacro",
  16182. height: math.unit(75, "miles")
  16183. },
  16184. {
  16185. name: "Texas-sized",
  16186. height: math.unit(750, "miles")
  16187. },
  16188. {
  16189. name: "Teramacro",
  16190. height: math.unit(50000, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6, "feet"),
  16199. weight: math.unit(269, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/danny-kapowsky/front.svg",
  16203. extra: 766 / 736,
  16204. bottom: 0.044
  16205. }
  16206. },
  16207. back: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(269, "lb"),
  16210. name: "Back",
  16211. image: {
  16212. source: "./media/characters/danny-kapowsky/back.svg",
  16213. extra: 797 / 760,
  16214. bottom: 0.025
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(150, "feet"),
  16222. default: true
  16223. },
  16224. {
  16225. name: "Macro+",
  16226. height: math.unit(200, "feet")
  16227. },
  16228. {
  16229. name: "Macro++",
  16230. height: math.unit(300, "feet")
  16231. },
  16232. {
  16233. name: "Macro+++",
  16234. height: math.unit(400, "feet")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16240. {
  16241. side: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(170, "lb"),
  16244. name: "Side",
  16245. image: {
  16246. source: "./media/characters/finn/side.svg",
  16247. extra: 1953 / 1807,
  16248. bottom: 0.057
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Megamacro",
  16255. height: math.unit(14445, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(5 + 6 / 12, "feet"),
  16265. weight: math.unit(125, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/roy/front.svg",
  16269. extra: 1,
  16270. bottom: 0.11
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Micro",
  16277. height: math.unit(3, "inches"),
  16278. default: true
  16279. },
  16280. {
  16281. name: "Normal",
  16282. height: math.unit(5 + 6 / 12, "feet")
  16283. },
  16284. {
  16285. name: "Lesser Macro",
  16286. height: math.unit(60, "feet")
  16287. },
  16288. {
  16289. name: "Greater Macro",
  16290. height: math.unit(120, "feet")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6, "feet"),
  16299. weight: math.unit(100, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/aevsivs/front.svg",
  16303. extra: 1,
  16304. bottom: 0.03
  16305. }
  16306. },
  16307. back: {
  16308. height: math.unit(6, "feet"),
  16309. weight: math.unit(100, "lb"),
  16310. name: "Back",
  16311. image: {
  16312. source: "./media/characters/aevsivs/back.svg"
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Micro",
  16319. height: math.unit(2, "inches"),
  16320. default: true
  16321. },
  16322. {
  16323. name: "Normal",
  16324. height: math.unit(5, "feet")
  16325. },
  16326. ]
  16327. ))
  16328. characterMakers.push(() => makeCharacter(
  16329. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16330. {
  16331. front: {
  16332. height: math.unit(5 + 7 / 12, "feet"),
  16333. weight: math.unit(159, "lb"),
  16334. name: "Front",
  16335. image: {
  16336. source: "./media/characters/hildegard/front.svg",
  16337. extra: 289 / 269,
  16338. bottom: 7.63 / 297.8
  16339. }
  16340. },
  16341. back: {
  16342. height: math.unit(5 + 7 / 12, "feet"),
  16343. weight: math.unit(159, "lb"),
  16344. name: "Back",
  16345. image: {
  16346. source: "./media/characters/hildegard/back.svg",
  16347. extra: 280 / 260,
  16348. bottom: 2.3 / 282
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(5 + 7 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16362. {
  16363. bernard: {
  16364. height: math.unit(2 + 7 / 12, "feet"),
  16365. weight: math.unit(66, "lb"),
  16366. name: "Bernard",
  16367. rename: true,
  16368. image: {
  16369. source: "./media/characters/bernard-wilder/bernard.svg",
  16370. extra: 192 / 128,
  16371. bottom: 0.05
  16372. }
  16373. },
  16374. wilder: {
  16375. height: math.unit(5 + 8 / 12, "feet"),
  16376. weight: math.unit(143, "lb"),
  16377. name: "Wilder",
  16378. rename: true,
  16379. image: {
  16380. source: "./media/characters/bernard-wilder/wilder.svg",
  16381. extra: 361 / 312,
  16382. bottom: 0.02
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(2 + 7 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16396. {
  16397. anthro: {
  16398. height: math.unit(6 + 1 / 12, "feet"),
  16399. weight: math.unit(155, "lb"),
  16400. name: "Anthro",
  16401. image: {
  16402. source: "./media/characters/hearth/anthro.svg",
  16403. extra: 1178/1136,
  16404. bottom: 28/1206
  16405. }
  16406. },
  16407. feral: {
  16408. height: math.unit(3.78, "feet"),
  16409. weight: math.unit(35, "kg"),
  16410. name: "Feral",
  16411. image: {
  16412. source: "./media/characters/hearth/feral.svg",
  16413. extra: 153 / 135,
  16414. bottom: 0.03
  16415. }
  16416. },
  16417. },
  16418. [
  16419. {
  16420. name: "Normal",
  16421. height: math.unit(6 + 1 / 12, "feet"),
  16422. default: true
  16423. },
  16424. ]
  16425. ))
  16426. characterMakers.push(() => makeCharacter(
  16427. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16428. {
  16429. front: {
  16430. height: math.unit(6, "feet"),
  16431. weight: math.unit(182, "lb"),
  16432. name: "Front",
  16433. image: {
  16434. source: "./media/characters/ingrid/front.svg",
  16435. extra: 294 / 268,
  16436. bottom: 0.027
  16437. }
  16438. },
  16439. },
  16440. [
  16441. {
  16442. name: "Normal",
  16443. height: math.unit(6, "feet"),
  16444. default: true
  16445. },
  16446. ]
  16447. ))
  16448. characterMakers.push(() => makeCharacter(
  16449. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16450. {
  16451. eevee: {
  16452. height: math.unit(2 + 10 / 12, "feet"),
  16453. weight: math.unit(86, "lb"),
  16454. name: "Malgam",
  16455. image: {
  16456. source: "./media/characters/malgam/eevee.svg",
  16457. extra: 952/784,
  16458. bottom: 38/990
  16459. }
  16460. },
  16461. sylveon: {
  16462. height: math.unit(4, "feet"),
  16463. weight: math.unit(101, "lb"),
  16464. name: "Future Malgam",
  16465. rename: true,
  16466. image: {
  16467. source: "./media/characters/malgam/sylveon.svg",
  16468. extra: 371 / 325,
  16469. bottom: 0.015
  16470. }
  16471. },
  16472. gigantamax: {
  16473. height: math.unit(50, "feet"),
  16474. name: "Gigantamax Malgam",
  16475. rename: true,
  16476. image: {
  16477. source: "./media/characters/malgam/gigantamax.svg"
  16478. }
  16479. },
  16480. },
  16481. [
  16482. {
  16483. name: "Normal",
  16484. height: math.unit(2 + 10 / 12, "feet"),
  16485. default: true
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(5 + 11 / 12, "feet"),
  16494. weight: math.unit(188, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/fleur/front.svg",
  16498. extra: 309 / 283,
  16499. bottom: 0.007
  16500. }
  16501. },
  16502. },
  16503. [
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(5 + 11 / 12, "feet"),
  16507. default: true
  16508. },
  16509. ]
  16510. ))
  16511. characterMakers.push(() => makeCharacter(
  16512. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16513. {
  16514. front: {
  16515. height: math.unit(5 + 4 / 12, "feet"),
  16516. weight: math.unit(122, "lb"),
  16517. name: "Front",
  16518. image: {
  16519. source: "./media/characters/jude/front.svg",
  16520. extra: 288 / 273,
  16521. bottom: 0.03
  16522. }
  16523. },
  16524. },
  16525. [
  16526. {
  16527. name: "Normal",
  16528. height: math.unit(5 + 4 / 12, "feet"),
  16529. default: true
  16530. },
  16531. ]
  16532. ))
  16533. characterMakers.push(() => makeCharacter(
  16534. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16535. {
  16536. front: {
  16537. height: math.unit(5 + 11 / 12, "feet"),
  16538. weight: math.unit(190, "lb"),
  16539. name: "Front",
  16540. image: {
  16541. source: "./media/characters/seara/front.svg",
  16542. extra: 1,
  16543. bottom: 0.05
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Normal",
  16550. height: math.unit(5 + 11 / 12, "feet"),
  16551. default: true
  16552. },
  16553. ]
  16554. ))
  16555. characterMakers.push(() => makeCharacter(
  16556. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16557. {
  16558. front: {
  16559. height: math.unit(16 + 5 / 12, "feet"),
  16560. weight: math.unit(524, "lb"),
  16561. name: "Front",
  16562. image: {
  16563. source: "./media/characters/caspian-lugia/front.svg",
  16564. extra: 1,
  16565. bottom: 0.04
  16566. }
  16567. },
  16568. },
  16569. [
  16570. {
  16571. name: "Normal",
  16572. height: math.unit(16 + 5 / 12, "feet"),
  16573. default: true
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(5 + 7 / 12, "feet"),
  16582. weight: math.unit(170, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/mika/front.svg",
  16586. extra: 1,
  16587. bottom: 0.016
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(5 + 7 / 12, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(6 + 2 / 12, "feet"),
  16604. weight: math.unit(268, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/sol/front.svg",
  16608. extra: 247 / 231,
  16609. bottom: 0.05
  16610. }
  16611. },
  16612. },
  16613. [
  16614. {
  16615. name: "Normal",
  16616. height: math.unit(6 + 2 / 12, "feet"),
  16617. default: true
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16623. {
  16624. buizel: {
  16625. height: math.unit(2 + 5 / 12, "feet"),
  16626. weight: math.unit(87, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/umiko/buizel.svg",
  16630. extra: 172 / 157,
  16631. bottom: 0.01
  16632. },
  16633. form: "buizel",
  16634. default: true
  16635. },
  16636. floatzel: {
  16637. height: math.unit(5 + 9 / 12, "feet"),
  16638. weight: math.unit(250, "lb"),
  16639. name: "Front",
  16640. image: {
  16641. source: "./media/characters/umiko/floatzel.svg",
  16642. extra: 1076/1006,
  16643. bottom: 15/1091
  16644. },
  16645. form: "floatzel",
  16646. default: true
  16647. },
  16648. },
  16649. [
  16650. {
  16651. name: "Normal",
  16652. height: math.unit(2 + 5 / 12, "feet"),
  16653. form: "buizel",
  16654. default: true
  16655. },
  16656. {
  16657. name: "Normal",
  16658. height: math.unit(5 + 9 / 12, "feet"),
  16659. form: "floatzel",
  16660. default: true
  16661. },
  16662. ],
  16663. {
  16664. "buizel": {
  16665. name: "Buizel"
  16666. },
  16667. "floatzel": {
  16668. name: "Floatzel",
  16669. default: true
  16670. }
  16671. }
  16672. ))
  16673. characterMakers.push(() => makeCharacter(
  16674. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16675. {
  16676. front: {
  16677. height: math.unit(6 + 2 / 12, "feet"),
  16678. weight: math.unit(146, "lb"),
  16679. name: "Front",
  16680. image: {
  16681. source: "./media/characters/iliac/front.svg",
  16682. extra: 389 / 365,
  16683. bottom: 0.035
  16684. }
  16685. },
  16686. },
  16687. [
  16688. {
  16689. name: "Normal",
  16690. height: math.unit(6 + 2 / 12, "feet"),
  16691. default: true
  16692. },
  16693. ]
  16694. ))
  16695. characterMakers.push(() => makeCharacter(
  16696. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16697. {
  16698. front: {
  16699. height: math.unit(6, "feet"),
  16700. weight: math.unit(170, "lb"),
  16701. name: "Front",
  16702. image: {
  16703. source: "./media/characters/topaz/front.svg",
  16704. extra: 317 / 303,
  16705. bottom: 0.055
  16706. }
  16707. },
  16708. },
  16709. [
  16710. {
  16711. name: "Normal",
  16712. height: math.unit(6, "feet"),
  16713. default: true
  16714. },
  16715. ]
  16716. ))
  16717. characterMakers.push(() => makeCharacter(
  16718. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16719. {
  16720. front: {
  16721. height: math.unit(5 + 11 / 12, "feet"),
  16722. weight: math.unit(144, "lb"),
  16723. name: "Front",
  16724. image: {
  16725. source: "./media/characters/gabriel/front.svg",
  16726. extra: 285 / 262,
  16727. bottom: 0.004
  16728. }
  16729. },
  16730. },
  16731. [
  16732. {
  16733. name: "Normal",
  16734. height: math.unit(5 + 11 / 12, "feet"),
  16735. default: true
  16736. },
  16737. ]
  16738. ))
  16739. characterMakers.push(() => makeCharacter(
  16740. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16741. {
  16742. side: {
  16743. height: math.unit(6 + 5 / 12, "feet"),
  16744. weight: math.unit(300, "lb"),
  16745. name: "Side",
  16746. image: {
  16747. source: "./media/characters/tempest-suicune/side.svg",
  16748. extra: 195 / 154,
  16749. bottom: 0.04
  16750. }
  16751. },
  16752. },
  16753. [
  16754. {
  16755. name: "Normal",
  16756. height: math.unit(6 + 5 / 12, "feet"),
  16757. default: true
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(7 + 2 / 12, "feet"),
  16766. weight: math.unit(322, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/vulcan/front.svg",
  16770. extra: 154 / 147,
  16771. bottom: 0.04
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(7 + 2 / 12, "feet"),
  16779. default: true
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(5 + 10 / 12, "feet"),
  16788. weight: math.unit(264, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/gault/front.svg",
  16792. extra: 161 / 140,
  16793. bottom: 0.028
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(5 + 10 / 12, "feet"),
  16801. default: true
  16802. },
  16803. ]
  16804. ))
  16805. characterMakers.push(() => makeCharacter(
  16806. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16807. {
  16808. front: {
  16809. height: math.unit(6, "feet"),
  16810. weight: math.unit(150, "lb"),
  16811. name: "Front",
  16812. image: {
  16813. source: "./media/characters/shard/front.svg",
  16814. extra: 273 / 238,
  16815. bottom: 0.02
  16816. }
  16817. },
  16818. },
  16819. [
  16820. {
  16821. name: "Normal",
  16822. height: math.unit(3 + 6 / 12, "feet"),
  16823. default: true
  16824. },
  16825. ]
  16826. ))
  16827. characterMakers.push(() => makeCharacter(
  16828. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16829. {
  16830. front: {
  16831. height: math.unit(5 + 11 / 12, "feet"),
  16832. weight: math.unit(146, "lb"),
  16833. name: "Front",
  16834. image: {
  16835. source: "./media/characters/ashe/front.svg",
  16836. extra: 400 / 373,
  16837. bottom: 0.01
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(5 + 11 / 12, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(5 + 5 / 12, "feet"),
  16854. weight: math.unit(135, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/beatrix/front.svg",
  16858. extra: 392 / 379,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(6, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(6 + 2/12, "feet"),
  16876. weight: math.unit(135, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/ignatius/front.svg",
  16880. extra: 1380/1259,
  16881. bottom: 27/1407
  16882. }
  16883. },
  16884. },
  16885. [
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(6 + 2/12, "feet"),
  16889. default: true
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(6 + 2 / 12, "feet"),
  16898. weight: math.unit(138, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/mei-li/front.svg",
  16902. extra: 237 / 229,
  16903. bottom: 0.03
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(6 + 2 / 12, "feet"),
  16911. default: true
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(2 + 4 / 12, "feet"),
  16920. weight: math.unit(62, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/puru/front.svg",
  16924. extra: 206 / 149,
  16925. bottom: 0.06
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(2 + 4 / 12, "feet"),
  16933. default: true
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16939. {
  16940. anthro: {
  16941. height: math.unit(5 + 8/12, "feet"),
  16942. weight: math.unit(200, "lb"),
  16943. energyNeed: math.unit(2000, "kcal"),
  16944. name: "Anthro",
  16945. image: {
  16946. source: "./media/characters/kee/anthro.svg",
  16947. extra: 3251/3184,
  16948. bottom: 250/3501
  16949. }
  16950. },
  16951. taur: {
  16952. height: math.unit(11, "feet"),
  16953. weight: math.unit(500, "lb"),
  16954. energyNeed: math.unit(5000, "kcal"),
  16955. name: "Taur",
  16956. image: {
  16957. source: "./media/characters/kee/taur.svg",
  16958. extra: 1362/1320,
  16959. bottom: 83/1445
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Normal",
  16966. height: math.unit(5 + 8/12, "feet"),
  16967. default: true
  16968. },
  16969. {
  16970. name: "Macro",
  16971. height: math.unit(35, "feet")
  16972. },
  16973. ]
  16974. ))
  16975. characterMakers.push(() => makeCharacter(
  16976. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16977. {
  16978. anthro: {
  16979. height: math.unit(7, "feet"),
  16980. weight: math.unit(190, "lb"),
  16981. name: "Anthro",
  16982. image: {
  16983. source: "./media/characters/cobalt-dracha/anthro.svg",
  16984. extra: 231 / 225,
  16985. bottom: 0.04
  16986. }
  16987. },
  16988. feral: {
  16989. height: math.unit(9 + 7 / 12, "feet"),
  16990. weight: math.unit(294, "lb"),
  16991. name: "Feral",
  16992. image: {
  16993. source: "./media/characters/cobalt-dracha/feral.svg",
  16994. extra: 692 / 633,
  16995. bottom: 0.05
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(7, "feet"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17009. {
  17010. fallen: {
  17011. height: math.unit(11 + 8 / 12, "feet"),
  17012. weight: math.unit(485, "lb"),
  17013. name: "Java (Fallen)",
  17014. rename: true,
  17015. image: {
  17016. source: "./media/characters/java/fallen.svg",
  17017. extra: 226 / 208,
  17018. bottom: 0.005
  17019. }
  17020. },
  17021. godkin: {
  17022. height: math.unit(10 + 6 / 12, "feet"),
  17023. weight: math.unit(328, "lb"),
  17024. name: "Java (Godkin)",
  17025. rename: true,
  17026. image: {
  17027. source: "./media/characters/java/godkin.svg",
  17028. extra: 1104/1068,
  17029. bottom: 36/1140
  17030. }
  17031. },
  17032. },
  17033. [
  17034. {
  17035. name: "Normal",
  17036. height: math.unit(11 + 8 / 12, "feet"),
  17037. default: true
  17038. },
  17039. ]
  17040. ))
  17041. characterMakers.push(() => makeCharacter(
  17042. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17043. {
  17044. front: {
  17045. height: math.unit(5 + 9 / 12, "feet"),
  17046. weight: math.unit(170, "lb"),
  17047. name: "Front",
  17048. image: {
  17049. source: "./media/characters/purna/front.svg",
  17050. extra: 239 / 229,
  17051. bottom: 0.01
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(5 + 9 / 12, "feet"),
  17059. default: true
  17060. },
  17061. ]
  17062. ))
  17063. characterMakers.push(() => makeCharacter(
  17064. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17065. {
  17066. front: {
  17067. height: math.unit(5 + 9 / 12, "feet"),
  17068. weight: math.unit(142, "lb"),
  17069. name: "Front",
  17070. image: {
  17071. source: "./media/characters/kuva/front.svg",
  17072. extra: 281 / 271,
  17073. bottom: 0.006
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(5 + 9 / 12, "feet"),
  17081. default: true
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17087. {
  17088. anthro: {
  17089. height: math.unit(9 + 2 / 12, "feet"),
  17090. weight: math.unit(270, "lb"),
  17091. name: "Anthro",
  17092. image: {
  17093. source: "./media/characters/embra/anthro.svg",
  17094. extra: 200 / 187,
  17095. bottom: 0.02
  17096. }
  17097. },
  17098. feral: {
  17099. height: math.unit(18 + 8 / 12, "feet"),
  17100. weight: math.unit(576, "lb"),
  17101. name: "Feral",
  17102. image: {
  17103. source: "./media/characters/embra/feral.svg",
  17104. extra: 152 / 137,
  17105. bottom: 0.037
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(9 + 2 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17119. {
  17120. anthro: {
  17121. height: math.unit(10 + 9 / 12, "feet"),
  17122. weight: math.unit(224, "lb"),
  17123. name: "Anthro",
  17124. image: {
  17125. source: "./media/characters/grottos/anthro.svg",
  17126. extra: 350 / 332,
  17127. bottom: 0.045
  17128. }
  17129. },
  17130. feral: {
  17131. height: math.unit(20 + 7 / 12, "feet"),
  17132. weight: math.unit(629, "lb"),
  17133. name: "Feral",
  17134. image: {
  17135. source: "./media/characters/grottos/feral.svg",
  17136. extra: 207 / 190,
  17137. bottom: 0.05
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(10 + 9 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17151. {
  17152. anthro: {
  17153. height: math.unit(9 + 6 / 12, "feet"),
  17154. weight: math.unit(298, "lb"),
  17155. name: "Anthro",
  17156. image: {
  17157. source: "./media/characters/frifna/anthro.svg",
  17158. extra: 282 / 269,
  17159. bottom: 0.015
  17160. }
  17161. },
  17162. feral: {
  17163. height: math.unit(16 + 2 / 12, "feet"),
  17164. weight: math.unit(624, "lb"),
  17165. name: "Feral",
  17166. image: {
  17167. source: "./media/characters/frifna/feral.svg"
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(9 + 6 / 12, "feet"),
  17175. default: true
  17176. },
  17177. ]
  17178. ))
  17179. characterMakers.push(() => makeCharacter(
  17180. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17181. {
  17182. front: {
  17183. height: math.unit(6 + 2 / 12, "feet"),
  17184. weight: math.unit(168, "lb"),
  17185. name: "Front",
  17186. image: {
  17187. source: "./media/characters/elise/front.svg",
  17188. extra: 276 / 271
  17189. }
  17190. },
  17191. },
  17192. [
  17193. {
  17194. name: "Normal",
  17195. height: math.unit(6 + 2 / 12, "feet"),
  17196. default: true
  17197. },
  17198. ]
  17199. ))
  17200. characterMakers.push(() => makeCharacter(
  17201. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17202. {
  17203. front: {
  17204. height: math.unit(5 + 10 / 12, "feet"),
  17205. weight: math.unit(210, "lb"),
  17206. name: "Front",
  17207. image: {
  17208. source: "./media/characters/glade/front.svg",
  17209. extra: 258 / 247,
  17210. bottom: 0.008
  17211. }
  17212. },
  17213. },
  17214. [
  17215. {
  17216. name: "Normal",
  17217. height: math.unit(5 + 10 / 12, "feet"),
  17218. default: true
  17219. },
  17220. ]
  17221. ))
  17222. characterMakers.push(() => makeCharacter(
  17223. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17224. {
  17225. front: {
  17226. height: math.unit(5 + 10 / 12, "feet"),
  17227. weight: math.unit(129, "lb"),
  17228. name: "Front",
  17229. image: {
  17230. source: "./media/characters/rina/front.svg",
  17231. extra: 266 / 255,
  17232. bottom: 0.005
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(5 + 10 / 12, "feet"),
  17240. default: true
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(6 + 1 / 12, "feet"),
  17249. weight: math.unit(192, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/veronica/front.svg",
  17253. extra: 319 / 309,
  17254. bottom: 0.005
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(6 + 1 / 12, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(9 + 3 / 12, "feet"),
  17271. weight: math.unit(1100, "lb"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/braxton/front.svg",
  17275. extra: 1057 / 984,
  17276. bottom: 0.05
  17277. }
  17278. },
  17279. },
  17280. [
  17281. {
  17282. name: "Normal",
  17283. height: math.unit(9 + 3 / 12, "feet")
  17284. },
  17285. {
  17286. name: "Giant",
  17287. height: math.unit(300, "feet"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "Macro",
  17292. height: math.unit(700, "feet")
  17293. },
  17294. {
  17295. name: "Megamacro",
  17296. height: math.unit(6000, "feet")
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17302. {
  17303. front: {
  17304. height: math.unit(6 + 7 / 12, "feet"),
  17305. weight: math.unit(150, "lb"),
  17306. name: "Front",
  17307. image: {
  17308. source: "./media/characters/blue-feyonics/front.svg",
  17309. extra: 1403 / 1306,
  17310. bottom: 0.047
  17311. }
  17312. },
  17313. },
  17314. [
  17315. {
  17316. name: "Normal",
  17317. height: math.unit(6 + 7 / 12, "feet"),
  17318. default: true
  17319. },
  17320. ]
  17321. ))
  17322. characterMakers.push(() => makeCharacter(
  17323. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17324. {
  17325. front: {
  17326. height: math.unit(1.8, "meters"),
  17327. weight: math.unit(60, "kg"),
  17328. name: "Front",
  17329. image: {
  17330. source: "./media/characters/maxwell/front.svg",
  17331. extra: 2060 / 1873
  17332. }
  17333. },
  17334. },
  17335. [
  17336. {
  17337. name: "Micro",
  17338. height: math.unit(1, "mm")
  17339. },
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(1.8, "meter"),
  17343. default: true
  17344. },
  17345. {
  17346. name: "Macro",
  17347. height: math.unit(30, "meters")
  17348. },
  17349. {
  17350. name: "Megamacro",
  17351. height: math.unit(10, "km")
  17352. },
  17353. ]
  17354. ))
  17355. characterMakers.push(() => makeCharacter(
  17356. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17357. {
  17358. front: {
  17359. height: math.unit(6, "feet"),
  17360. weight: math.unit(150, "lb"),
  17361. name: "Front",
  17362. image: {
  17363. source: "./media/characters/jack/front.svg",
  17364. extra: 1754 / 1640,
  17365. bottom: 0.01
  17366. }
  17367. },
  17368. },
  17369. [
  17370. {
  17371. name: "Normal",
  17372. height: math.unit(80000, "feet"),
  17373. default: true
  17374. },
  17375. {
  17376. name: "Max size",
  17377. height: math.unit(10, "lightyears")
  17378. },
  17379. ]
  17380. ))
  17381. characterMakers.push(() => makeCharacter(
  17382. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17383. {
  17384. urban: {
  17385. height: math.unit(5, "feet"),
  17386. weight: math.unit(240, "lb"),
  17387. name: "Urban",
  17388. image: {
  17389. source: "./media/characters/cafat/urban.svg",
  17390. extra: 1223/1126,
  17391. bottom: 205/1428
  17392. }
  17393. },
  17394. summer: {
  17395. height: math.unit(5, "feet"),
  17396. weight: math.unit(240, "lb"),
  17397. name: "Summer",
  17398. image: {
  17399. source: "./media/characters/cafat/summer.svg",
  17400. extra: 1223/1126,
  17401. bottom: 205/1428
  17402. }
  17403. },
  17404. winter: {
  17405. height: math.unit(5, "feet"),
  17406. weight: math.unit(240, "lb"),
  17407. name: "Winter",
  17408. image: {
  17409. source: "./media/characters/cafat/winter.svg",
  17410. extra: 1223/1126,
  17411. bottom: 205/1428
  17412. }
  17413. },
  17414. lingerie: {
  17415. height: math.unit(5, "feet"),
  17416. weight: math.unit(240, "lb"),
  17417. name: "Lingerie",
  17418. image: {
  17419. source: "./media/characters/cafat/lingerie.svg",
  17420. extra: 1223/1126,
  17421. bottom: 205/1428
  17422. }
  17423. },
  17424. upright: {
  17425. height: math.unit(6.3, "feet"),
  17426. weight: math.unit(240, "lb"),
  17427. name: "Upright",
  17428. image: {
  17429. source: "./media/characters/cafat/upright.svg",
  17430. bottom: 0.01
  17431. }
  17432. },
  17433. uprightFull: {
  17434. height: math.unit(6.3, "feet"),
  17435. weight: math.unit(240, "lb"),
  17436. name: "Upright (Full)",
  17437. image: {
  17438. source: "./media/characters/cafat/upright-full.svg",
  17439. bottom: 0.01
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Small",
  17446. height: math.unit(5, "feet"),
  17447. default: true
  17448. },
  17449. {
  17450. name: "Large",
  17451. height: math.unit(13, "feet")
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(6, "feet"),
  17460. weight: math.unit(150, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/verin-raharra/front.svg",
  17464. extra: 5019 / 4835,
  17465. bottom: 0.023
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(7 + 5 / 12, "feet"),
  17473. default: true
  17474. },
  17475. {
  17476. name: "Upsized",
  17477. height: math.unit(20, "feet")
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(7, "feet"),
  17486. weight: math.unit(230, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/nakata/front.svg",
  17490. extra: 1.005,
  17491. bottom: 0.01
  17492. }
  17493. },
  17494. },
  17495. [
  17496. {
  17497. name: "Normal",
  17498. height: math.unit(7, "feet"),
  17499. default: true
  17500. },
  17501. {
  17502. name: "Big",
  17503. height: math.unit(14, "feet")
  17504. },
  17505. {
  17506. name: "Macro",
  17507. height: math.unit(400, "feet")
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(4.91, "feet"),
  17516. weight: math.unit(100, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/lily/front.svg",
  17520. extra: 1585 / 1415,
  17521. bottom: 0.02
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(4.91, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17535. {
  17536. laying: {
  17537. height: math.unit(4 + 4 / 12, "feet"),
  17538. weight: math.unit(600, "lb"),
  17539. name: "Laying",
  17540. image: {
  17541. source: "./media/characters/sheila/laying.svg",
  17542. extra: 1333 / 1265,
  17543. bottom: 0.16
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(4 + 4 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(190, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/sax/front.svg",
  17564. extra: 1187 / 973,
  17565. bottom: 0.042
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Micro",
  17572. height: math.unit(4, "inches"),
  17573. default: true
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6, "feet"),
  17582. weight: math.unit(150, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/pandora/front.svg",
  17586. extra: 2720 / 2556,
  17587. bottom: 0.015
  17588. }
  17589. },
  17590. back: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Back",
  17594. image: {
  17595. source: "./media/characters/pandora/back.svg",
  17596. extra: 2720 / 2556,
  17597. bottom: 0.01
  17598. }
  17599. },
  17600. beans: {
  17601. height: math.unit(6 / 8, "feet"),
  17602. name: "Beans",
  17603. image: {
  17604. source: "./media/characters/pandora/beans.svg"
  17605. }
  17606. },
  17607. collar: {
  17608. height: math.unit(0.31, "feet"),
  17609. name: "Collar",
  17610. image: {
  17611. source: "./media/characters/pandora/collar.svg"
  17612. }
  17613. },
  17614. skirt: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Skirt",
  17618. image: {
  17619. source: "./media/characters/pandora/skirt.svg",
  17620. extra: 1622 / 1525,
  17621. bottom: 0.015
  17622. }
  17623. },
  17624. hoodie: {
  17625. height: math.unit(6, "feet"),
  17626. weight: math.unit(150, "lb"),
  17627. name: "Hoodie",
  17628. image: {
  17629. source: "./media/characters/pandora/hoodie.svg",
  17630. extra: 1622 / 1525,
  17631. bottom: 0.015
  17632. }
  17633. },
  17634. casual: {
  17635. height: math.unit(6, "feet"),
  17636. weight: math.unit(150, "lb"),
  17637. name: "Casual",
  17638. image: {
  17639. source: "./media/characters/pandora/casual.svg",
  17640. extra: 1622 / 1525,
  17641. bottom: 0.015
  17642. }
  17643. },
  17644. },
  17645. [
  17646. {
  17647. name: "Normal",
  17648. height: math.unit(6, "feet")
  17649. },
  17650. {
  17651. name: "Big Steppy",
  17652. height: math.unit(1, "km"),
  17653. default: true
  17654. },
  17655. {
  17656. name: "Galactic Steppy",
  17657. height: math.unit(2, "gigameters")
  17658. },
  17659. ]
  17660. ))
  17661. characterMakers.push(() => makeCharacter(
  17662. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17663. {
  17664. side: {
  17665. height: math.unit(10, "feet"),
  17666. weight: math.unit(800, "kg"),
  17667. name: "Side",
  17668. image: {
  17669. source: "./media/characters/venio-darcony/side.svg",
  17670. extra: 1373 / 1003,
  17671. bottom: 0.037
  17672. }
  17673. },
  17674. front: {
  17675. height: math.unit(19, "feet"),
  17676. weight: math.unit(800, "kg"),
  17677. name: "Front",
  17678. image: {
  17679. source: "./media/characters/venio-darcony/front.svg"
  17680. }
  17681. },
  17682. back: {
  17683. height: math.unit(19, "feet"),
  17684. weight: math.unit(800, "kg"),
  17685. name: "Back",
  17686. image: {
  17687. source: "./media/characters/venio-darcony/back.svg"
  17688. }
  17689. },
  17690. sideNsfw: {
  17691. height: math.unit(10, "feet"),
  17692. weight: math.unit(800, "kg"),
  17693. name: "Side (NSFW)",
  17694. image: {
  17695. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17696. extra: 1373 / 1003,
  17697. bottom: 0.037
  17698. }
  17699. },
  17700. frontNsfw: {
  17701. height: math.unit(19, "feet"),
  17702. weight: math.unit(800, "kg"),
  17703. name: "Front (NSFW)",
  17704. image: {
  17705. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17706. }
  17707. },
  17708. backNsfw: {
  17709. height: math.unit(19, "feet"),
  17710. weight: math.unit(800, "kg"),
  17711. name: "Back (NSFW)",
  17712. image: {
  17713. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17714. }
  17715. },
  17716. sideArmored: {
  17717. height: math.unit(10, "feet"),
  17718. weight: math.unit(800, "kg"),
  17719. name: "Side (Armored)",
  17720. image: {
  17721. source: "./media/characters/venio-darcony/side-armored.svg",
  17722. extra: 1373 / 1003,
  17723. bottom: 0.037
  17724. }
  17725. },
  17726. frontArmored: {
  17727. height: math.unit(19, "feet"),
  17728. weight: math.unit(900, "kg"),
  17729. name: "Front (Armored)",
  17730. image: {
  17731. source: "./media/characters/venio-darcony/front-armored.svg"
  17732. }
  17733. },
  17734. backArmored: {
  17735. height: math.unit(19, "feet"),
  17736. weight: math.unit(900, "kg"),
  17737. name: "Back (Armored)",
  17738. image: {
  17739. source: "./media/characters/venio-darcony/back-armored.svg"
  17740. }
  17741. },
  17742. sword: {
  17743. height: math.unit(10, "feet"),
  17744. weight: math.unit(50, "lb"),
  17745. name: "Sword",
  17746. image: {
  17747. source: "./media/characters/venio-darcony/sword.svg"
  17748. }
  17749. },
  17750. },
  17751. [
  17752. {
  17753. name: "Normal",
  17754. height: math.unit(10, "feet")
  17755. },
  17756. {
  17757. name: "Macro",
  17758. height: math.unit(130, "feet"),
  17759. default: true
  17760. },
  17761. {
  17762. name: "Macro+",
  17763. height: math.unit(240, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(6, "feet"),
  17772. weight: math.unit(150, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/veski/front.svg",
  17776. extra: 1299 / 1225,
  17777. bottom: 0.04
  17778. }
  17779. },
  17780. back: {
  17781. height: math.unit(6, "feet"),
  17782. weight: math.unit(150, "lb"),
  17783. name: "Back",
  17784. image: {
  17785. source: "./media/characters/veski/back.svg",
  17786. extra: 1299 / 1225,
  17787. bottom: 0.008
  17788. }
  17789. },
  17790. maw: {
  17791. height: math.unit(1.5 * 1.21, "feet"),
  17792. name: "Maw",
  17793. image: {
  17794. source: "./media/characters/veski/maw.svg"
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Macro",
  17801. height: math.unit(2, "km"),
  17802. default: true
  17803. },
  17804. ]
  17805. ))
  17806. characterMakers.push(() => makeCharacter(
  17807. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17808. {
  17809. front: {
  17810. height: math.unit(5 + 7 / 12, "feet"),
  17811. name: "Front",
  17812. image: {
  17813. source: "./media/characters/isabelle/front.svg",
  17814. extra: 2130 / 1976,
  17815. bottom: 0.05
  17816. }
  17817. },
  17818. },
  17819. [
  17820. {
  17821. name: "Supermicro",
  17822. height: math.unit(10, "micrometers")
  17823. },
  17824. {
  17825. name: "Micro",
  17826. height: math.unit(1, "inch")
  17827. },
  17828. {
  17829. name: "Tiny",
  17830. height: math.unit(5, "inches")
  17831. },
  17832. {
  17833. name: "Standard",
  17834. height: math.unit(5 + 7 / 12, "inches")
  17835. },
  17836. {
  17837. name: "Macro",
  17838. height: math.unit(80, "meters"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Megamacro",
  17843. height: math.unit(250, "meters")
  17844. },
  17845. {
  17846. name: "Gigamacro",
  17847. height: math.unit(5, "km")
  17848. },
  17849. {
  17850. name: "Cosmic",
  17851. height: math.unit(2.5e6, "miles")
  17852. },
  17853. ]
  17854. ))
  17855. characterMakers.push(() => makeCharacter(
  17856. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17857. {
  17858. front: {
  17859. height: math.unit(6, "feet"),
  17860. weight: math.unit(150, "lb"),
  17861. name: "Front",
  17862. image: {
  17863. source: "./media/characters/hanzo/front.svg",
  17864. extra: 374 / 344,
  17865. bottom: 0.02
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(8, "feet"),
  17873. default: true
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(7, "feet"),
  17882. weight: math.unit(130, "lb"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/anna/front.svg",
  17886. extra: 169 / 145,
  17887. bottom: 0.06
  17888. }
  17889. },
  17890. full: {
  17891. height: math.unit(4.96, "feet"),
  17892. weight: math.unit(220, "lb"),
  17893. name: "Full",
  17894. image: {
  17895. source: "./media/characters/anna/full.svg",
  17896. extra: 138 / 114,
  17897. bottom: 0.15
  17898. }
  17899. },
  17900. tongue: {
  17901. height: math.unit(2.53, "feet"),
  17902. name: "Tongue",
  17903. image: {
  17904. source: "./media/characters/anna/tongue.svg"
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(7, "feet"),
  17912. default: true
  17913. },
  17914. ]
  17915. ))
  17916. characterMakers.push(() => makeCharacter(
  17917. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17918. {
  17919. front: {
  17920. height: math.unit(7, "feet"),
  17921. weight: math.unit(150, "lb"),
  17922. name: "Front",
  17923. image: {
  17924. source: "./media/characters/ian-corvid/front.svg",
  17925. extra: 150 / 142,
  17926. bottom: 0.02
  17927. }
  17928. },
  17929. back: {
  17930. height: math.unit(7, "feet"),
  17931. weight: math.unit(150, "lb"),
  17932. name: "Back",
  17933. image: {
  17934. source: "./media/characters/ian-corvid/back.svg",
  17935. extra: 150 / 143,
  17936. bottom: 0.01
  17937. }
  17938. },
  17939. stomping: {
  17940. height: math.unit(7, "feet"),
  17941. weight: math.unit(150, "lb"),
  17942. name: "Stomping",
  17943. image: {
  17944. source: "./media/characters/ian-corvid/stomping.svg",
  17945. extra: 76 / 72
  17946. }
  17947. },
  17948. sitting: {
  17949. height: math.unit(7 / 1.8, "feet"),
  17950. weight: math.unit(150, "lb"),
  17951. name: "Sitting",
  17952. image: {
  17953. source: "./media/characters/ian-corvid/sitting.svg",
  17954. extra: 1400 / 1269,
  17955. bottom: 0.15
  17956. }
  17957. },
  17958. },
  17959. [
  17960. {
  17961. name: "Tiny Microw",
  17962. height: math.unit(1, "inch")
  17963. },
  17964. {
  17965. name: "Microw",
  17966. height: math.unit(6, "inches")
  17967. },
  17968. {
  17969. name: "Crow",
  17970. height: math.unit(7 + 1 / 12, "feet"),
  17971. default: true
  17972. },
  17973. {
  17974. name: "Macrow",
  17975. height: math.unit(176, "feet")
  17976. },
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17981. {
  17982. front: {
  17983. height: math.unit(5 + 7 / 12, "feet"),
  17984. weight: math.unit(147, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/natalie-kellon/front.svg",
  17988. extra: 1214 / 1141,
  17989. bottom: 0.02
  17990. }
  17991. },
  17992. },
  17993. [
  17994. {
  17995. name: "Micro",
  17996. height: math.unit(1 / 16, "inch")
  17997. },
  17998. {
  17999. name: "Tiny",
  18000. height: math.unit(4, "inches")
  18001. },
  18002. {
  18003. name: "Normal",
  18004. height: math.unit(5 + 7 / 12, "feet"),
  18005. default: true
  18006. },
  18007. {
  18008. name: "Amazon",
  18009. height: math.unit(12, "feet")
  18010. },
  18011. {
  18012. name: "Giantess",
  18013. height: math.unit(160, "meters")
  18014. },
  18015. {
  18016. name: "Titaness",
  18017. height: math.unit(800, "meters")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(6, "feet"),
  18026. weight: math.unit(150, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/alluria/front.svg",
  18030. extra: 806 / 738,
  18031. bottom: 0.01
  18032. }
  18033. },
  18034. side: {
  18035. height: math.unit(6, "feet"),
  18036. weight: math.unit(150, "lb"),
  18037. name: "Side",
  18038. image: {
  18039. source: "./media/characters/alluria/side.svg",
  18040. extra: 800 / 750,
  18041. }
  18042. },
  18043. back: {
  18044. height: math.unit(6, "feet"),
  18045. weight: math.unit(150, "lb"),
  18046. name: "Back",
  18047. image: {
  18048. source: "./media/characters/alluria/back.svg",
  18049. extra: 806 / 738,
  18050. }
  18051. },
  18052. frontMaid: {
  18053. height: math.unit(6, "feet"),
  18054. weight: math.unit(150, "lb"),
  18055. name: "Front (Maid)",
  18056. image: {
  18057. source: "./media/characters/alluria/front-maid.svg",
  18058. extra: 806 / 738,
  18059. bottom: 0.01
  18060. }
  18061. },
  18062. sideMaid: {
  18063. height: math.unit(6, "feet"),
  18064. weight: math.unit(150, "lb"),
  18065. name: "Side (Maid)",
  18066. image: {
  18067. source: "./media/characters/alluria/side-maid.svg",
  18068. extra: 800 / 750,
  18069. bottom: 0.005
  18070. }
  18071. },
  18072. backMaid: {
  18073. height: math.unit(6, "feet"),
  18074. weight: math.unit(150, "lb"),
  18075. name: "Back (Maid)",
  18076. image: {
  18077. source: "./media/characters/alluria/back-maid.svg",
  18078. extra: 806 / 738,
  18079. }
  18080. },
  18081. },
  18082. [
  18083. {
  18084. name: "Micro",
  18085. height: math.unit(6, "inches"),
  18086. default: true
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(150, "lb"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/kyle/front.svg",
  18099. extra: 1069 / 962,
  18100. bottom: 77.228 / 1727.45
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Macro",
  18107. height: math.unit(150, "feet"),
  18108. default: true
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(6, "feet"),
  18117. weight: math.unit(300, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/duncan/front.svg",
  18121. extra: 1650 / 1482,
  18122. bottom: 0.05
  18123. }
  18124. },
  18125. },
  18126. [
  18127. {
  18128. name: "Macro",
  18129. height: math.unit(100, "feet"),
  18130. default: true
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(5 + 4 / 12, "feet"),
  18139. weight: math.unit(220, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/memory/front.svg",
  18143. extra: 3641 / 3545,
  18144. bottom: 0.03
  18145. }
  18146. },
  18147. back: {
  18148. height: math.unit(5 + 4 / 12, "feet"),
  18149. weight: math.unit(220, "lb"),
  18150. name: "Back",
  18151. image: {
  18152. source: "./media/characters/memory/back.svg",
  18153. extra: 3641 / 3545,
  18154. bottom: 0.025
  18155. }
  18156. },
  18157. frontSkirt: {
  18158. height: math.unit(5 + 4 / 12, "feet"),
  18159. weight: math.unit(220, "lb"),
  18160. name: "Front (Skirt)",
  18161. image: {
  18162. source: "./media/characters/memory/front-skirt.svg",
  18163. extra: 3641 / 3545,
  18164. bottom: 0.03
  18165. }
  18166. },
  18167. frontDress: {
  18168. height: math.unit(5 + 4 / 12, "feet"),
  18169. weight: math.unit(220, "lb"),
  18170. name: "Front (Dress)",
  18171. image: {
  18172. source: "./media/characters/memory/front-dress.svg",
  18173. extra: 3641 / 3545,
  18174. bottom: 0.03
  18175. }
  18176. },
  18177. },
  18178. [
  18179. {
  18180. name: "Micro",
  18181. height: math.unit(6, "inches"),
  18182. default: true
  18183. },
  18184. {
  18185. name: "Normal",
  18186. height: math.unit(5 + 4 / 12, "feet")
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(4 + 11 / 12, "feet"),
  18195. weight: math.unit(100, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/luno/front.svg",
  18199. extra: 1535 / 1487,
  18200. bottom: 0.03
  18201. }
  18202. },
  18203. },
  18204. [
  18205. {
  18206. name: "Micro",
  18207. height: math.unit(3, "inches")
  18208. },
  18209. {
  18210. name: "Normal",
  18211. height: math.unit(4 + 11 / 12, "feet"),
  18212. default: true
  18213. },
  18214. {
  18215. name: "Macro",
  18216. height: math.unit(300, "feet")
  18217. },
  18218. {
  18219. name: "Megamacro",
  18220. height: math.unit(700, "miles")
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(6 + 2 / 12, "feet"),
  18229. weight: math.unit(170, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/jamesy/front.svg",
  18233. extra: 440 / 382,
  18234. bottom: 0.005
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Micro",
  18241. height: math.unit(3, "inches")
  18242. },
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(6 + 2 / 12, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Macro",
  18250. height: math.unit(300, "feet")
  18251. },
  18252. {
  18253. name: "Megamacro",
  18254. height: math.unit(700, "miles")
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(6, "feet"),
  18263. weight: math.unit(160, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/mark/front.svg",
  18267. extra: 3300 / 3100,
  18268. bottom: 136.42 / 3440.47
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Macro",
  18275. height: math.unit(120, "meters")
  18276. },
  18277. {
  18278. name: "Bigger Macro",
  18279. height: math.unit(350, "meters")
  18280. },
  18281. {
  18282. name: "Megamacro",
  18283. height: math.unit(8, "km"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Continental",
  18288. height: math.unit(4550, "km")
  18289. },
  18290. {
  18291. name: "Planetary",
  18292. height: math.unit(65000, "km")
  18293. },
  18294. ]
  18295. ))
  18296. characterMakers.push(() => makeCharacter(
  18297. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18298. {
  18299. front: {
  18300. height: math.unit(6, "feet"),
  18301. weight: math.unit(400, "lb"),
  18302. name: "Front",
  18303. image: {
  18304. source: "./media/characters/mac/front.svg",
  18305. extra: 1048 / 987.7,
  18306. bottom: 60 / 1107.6,
  18307. }
  18308. },
  18309. },
  18310. [
  18311. {
  18312. name: "Macro",
  18313. height: math.unit(500, "feet"),
  18314. default: true
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(5 + 2 / 12, "feet"),
  18323. weight: math.unit(190, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/bari/front.svg",
  18327. extra: 3156 / 2880,
  18328. bottom: 0.03
  18329. }
  18330. },
  18331. back: {
  18332. height: math.unit(5 + 2 / 12, "feet"),
  18333. weight: math.unit(190, "lb"),
  18334. name: "Back",
  18335. image: {
  18336. source: "./media/characters/bari/back.svg",
  18337. extra: 3260 / 2834,
  18338. bottom: 0.025
  18339. }
  18340. },
  18341. frontPlush: {
  18342. height: math.unit(5 + 2 / 12, "feet"),
  18343. weight: math.unit(190, "lb"),
  18344. name: "Front (Plush)",
  18345. image: {
  18346. source: "./media/characters/bari/front-plush.svg",
  18347. extra: 1112 / 1061,
  18348. bottom: 0.002
  18349. }
  18350. },
  18351. },
  18352. [
  18353. {
  18354. name: "Micro",
  18355. height: math.unit(3, "inches")
  18356. },
  18357. {
  18358. name: "Normal",
  18359. height: math.unit(5 + 2 / 12, "feet"),
  18360. default: true
  18361. },
  18362. {
  18363. name: "Macro",
  18364. height: math.unit(20, "feet")
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18370. {
  18371. front: {
  18372. height: math.unit(6 + 1 / 12, "feet"),
  18373. weight: math.unit(275, "lb"),
  18374. name: "Front",
  18375. image: {
  18376. source: "./media/characters/hunter-misha-raven/front.svg"
  18377. }
  18378. },
  18379. },
  18380. [
  18381. {
  18382. name: "Mortal",
  18383. height: math.unit(6 + 1 / 12, "feet")
  18384. },
  18385. {
  18386. name: "Divine",
  18387. height: math.unit(1.12134e34, "parsecs"),
  18388. default: true
  18389. },
  18390. ]
  18391. ))
  18392. characterMakers.push(() => makeCharacter(
  18393. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18394. {
  18395. front: {
  18396. height: math.unit(6 + 3 / 12, "feet"),
  18397. weight: math.unit(220, "lb"),
  18398. name: "Front",
  18399. image: {
  18400. source: "./media/characters/max-calore/front.svg",
  18401. extra: 1700 / 1648,
  18402. bottom: 0.01
  18403. }
  18404. },
  18405. back: {
  18406. height: math.unit(6 + 3 / 12, "feet"),
  18407. weight: math.unit(220, "lb"),
  18408. name: "Back",
  18409. image: {
  18410. source: "./media/characters/max-calore/back.svg",
  18411. extra: 1700 / 1648,
  18412. bottom: 0.01
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Normal",
  18419. height: math.unit(6 + 3 / 12, "feet"),
  18420. default: true
  18421. },
  18422. ]
  18423. ))
  18424. characterMakers.push(() => makeCharacter(
  18425. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18426. {
  18427. side: {
  18428. height: math.unit(2 + 8 / 12, "feet"),
  18429. weight: math.unit(99, "lb"),
  18430. name: "Side",
  18431. image: {
  18432. source: "./media/characters/aspen/side.svg",
  18433. extra: 152 / 138,
  18434. bottom: 0.032
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Normal",
  18441. height: math.unit(2 + 8 / 12, "feet"),
  18442. default: true
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18448. {
  18449. side: {
  18450. height: math.unit(3 + 2 / 12, "feet"),
  18451. weight: math.unit(224, "lb"),
  18452. name: "Side",
  18453. image: {
  18454. source: "./media/characters/sheila-feral-wolf/side.svg",
  18455. extra: 179 / 166,
  18456. bottom: 0.03
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Normal",
  18463. height: math.unit(3 + 2 / 12, "feet"),
  18464. default: true
  18465. },
  18466. ]
  18467. ))
  18468. characterMakers.push(() => makeCharacter(
  18469. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18470. {
  18471. side: {
  18472. height: math.unit(1 + 9 / 12, "feet"),
  18473. weight: math.unit(38, "lb"),
  18474. name: "Side",
  18475. image: {
  18476. source: "./media/characters/michelle/side.svg",
  18477. extra: 147 / 136.7,
  18478. bottom: 0.03
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(1 + 9 / 12, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(1.54, "feet"),
  18495. weight: math.unit(50, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/nino/front.svg"
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(1.54, "feet"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18512. {
  18513. front: {
  18514. height: math.unit(1.49, "feet"),
  18515. weight: math.unit(45, "lb"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/viola/front.svg"
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(1.49, "feet"),
  18526. default: true
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(6 + 5 / 12, "feet"),
  18535. weight: math.unit(580, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/atlas/front.svg",
  18539. extra: 298.5 / 290,
  18540. bottom: 0.015
  18541. }
  18542. },
  18543. },
  18544. [
  18545. {
  18546. name: "Normal",
  18547. height: math.unit(6 + 5 / 12, "feet"),
  18548. default: true
  18549. },
  18550. ]
  18551. ))
  18552. characterMakers.push(() => makeCharacter(
  18553. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18554. {
  18555. side: {
  18556. height: math.unit(15.6, "inches"),
  18557. weight: math.unit(10, "lb"),
  18558. name: "Side",
  18559. image: {
  18560. source: "./media/characters/davy/side.svg",
  18561. extra: 200 / 170,
  18562. bottom: 0.01
  18563. }
  18564. },
  18565. },
  18566. [
  18567. {
  18568. name: "Normal",
  18569. height: math.unit(15.6, "inches"),
  18570. default: true
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18576. {
  18577. side: {
  18578. height: math.unit(4 + 8 / 12, "feet"),
  18579. weight: math.unit(166, "lb"),
  18580. name: "Side",
  18581. image: {
  18582. source: "./media/characters/fiona/side.svg",
  18583. extra: 232 / 220,
  18584. bottom: 0.03
  18585. }
  18586. },
  18587. },
  18588. [
  18589. {
  18590. name: "Normal",
  18591. height: math.unit(4 + 8 / 12, "feet"),
  18592. default: true
  18593. },
  18594. ]
  18595. ))
  18596. characterMakers.push(() => makeCharacter(
  18597. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18598. {
  18599. front: {
  18600. height: math.unit(26, "inches"),
  18601. weight: math.unit(35, "lb"),
  18602. name: "Front",
  18603. image: {
  18604. source: "./media/characters/lyla/front.svg",
  18605. bottom: 0.1
  18606. }
  18607. },
  18608. },
  18609. [
  18610. {
  18611. name: "Normal",
  18612. height: math.unit(3, "feet"),
  18613. default: true
  18614. },
  18615. ]
  18616. ))
  18617. characterMakers.push(() => makeCharacter(
  18618. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18619. {
  18620. side: {
  18621. height: math.unit(1.8, "feet"),
  18622. weight: math.unit(44, "lb"),
  18623. name: "Side",
  18624. image: {
  18625. source: "./media/characters/perseus/side.svg",
  18626. bottom: 0.21
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(1.8, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18640. {
  18641. side: {
  18642. height: math.unit(4 + 2 / 12, "feet"),
  18643. weight: math.unit(20, "lb"),
  18644. name: "Side",
  18645. image: {
  18646. source: "./media/characters/remus/side.svg"
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(4 + 2 / 12, "feet"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18660. {
  18661. front: {
  18662. height: math.unit(4 + 11 / 12, "feet"),
  18663. weight: math.unit(114, "lb"),
  18664. name: "Front",
  18665. image: {
  18666. source: "./media/characters/raf/front.svg",
  18667. extra: 1504/1339,
  18668. bottom: 26/1530
  18669. }
  18670. },
  18671. side: {
  18672. height: math.unit(4 + 11 / 12, "feet"),
  18673. weight: math.unit(114, "lb"),
  18674. name: "Side",
  18675. image: {
  18676. source: "./media/characters/raf/side.svg",
  18677. extra: 1466/1316,
  18678. bottom: 29/1495
  18679. }
  18680. },
  18681. paw: {
  18682. height: math.unit(1.45, "feet"),
  18683. name: "Paw",
  18684. image: {
  18685. source: "./media/characters/raf/paw.svg"
  18686. },
  18687. extraAttributes: {
  18688. "toeSize": {
  18689. name: "Toe Size",
  18690. power: 2,
  18691. type: "area",
  18692. base: math.unit(0.004, "m^2")
  18693. },
  18694. "padSize": {
  18695. name: "Pad Size",
  18696. power: 2,
  18697. type: "area",
  18698. base: math.unit(0.04, "m^2")
  18699. },
  18700. "footSize": {
  18701. name: "Foot Size",
  18702. power: 2,
  18703. type: "area",
  18704. base: math.unit(0.08, "m^2")
  18705. },
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Micro",
  18712. height: math.unit(2, "inches")
  18713. },
  18714. {
  18715. name: "Normal",
  18716. height: math.unit(4 + 11 / 12, "feet"),
  18717. default: true
  18718. },
  18719. {
  18720. name: "Macro",
  18721. height: math.unit(70, "feet")
  18722. },
  18723. ]
  18724. ))
  18725. characterMakers.push(() => makeCharacter(
  18726. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18727. {
  18728. front: {
  18729. height: math.unit(1.5, "meters"),
  18730. weight: math.unit(68, "kg"),
  18731. name: "Front",
  18732. image: {
  18733. source: "./media/characters/liam-einarr/front.svg",
  18734. extra: 2822 / 2666
  18735. }
  18736. },
  18737. back: {
  18738. height: math.unit(1.5, "meters"),
  18739. weight: math.unit(68, "kg"),
  18740. name: "Back",
  18741. image: {
  18742. source: "./media/characters/liam-einarr/back.svg",
  18743. extra: 2822 / 2666,
  18744. bottom: 0.015
  18745. }
  18746. },
  18747. },
  18748. [
  18749. {
  18750. name: "Normal",
  18751. height: math.unit(1.5, "meters"),
  18752. default: true
  18753. },
  18754. {
  18755. name: "Macro",
  18756. height: math.unit(150, "meters")
  18757. },
  18758. {
  18759. name: "Megamacro",
  18760. height: math.unit(35, "km")
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18766. {
  18767. front: {
  18768. height: math.unit(6, "feet"),
  18769. weight: math.unit(75, "kg"),
  18770. name: "Front",
  18771. image: {
  18772. source: "./media/characters/linda/front.svg",
  18773. extra: 930 / 874,
  18774. bottom: 0.004
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(6, "feet"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18788. {
  18789. front: {
  18790. height: math.unit(6 + 8 / 12, "feet"),
  18791. weight: math.unit(220, "lb"),
  18792. name: "Front",
  18793. image: {
  18794. source: "./media/characters/caylex/front.svg",
  18795. extra: 821 / 772,
  18796. bottom: 0.07
  18797. }
  18798. },
  18799. back: {
  18800. height: math.unit(6 + 8 / 12, "feet"),
  18801. weight: math.unit(220, "lb"),
  18802. name: "Back",
  18803. image: {
  18804. source: "./media/characters/caylex/back.svg",
  18805. extra: 821 / 772,
  18806. bottom: 0.022
  18807. }
  18808. },
  18809. hand: {
  18810. height: math.unit(1.25, "feet"),
  18811. name: "Hand",
  18812. image: {
  18813. source: "./media/characters/caylex/hand.svg"
  18814. }
  18815. },
  18816. foot: {
  18817. height: math.unit(1.6, "feet"),
  18818. name: "Foot",
  18819. image: {
  18820. source: "./media/characters/caylex/foot.svg"
  18821. }
  18822. },
  18823. armored: {
  18824. height: math.unit(6 + 8 / 12, "feet"),
  18825. weight: math.unit(250, "lb"),
  18826. name: "Armored",
  18827. image: {
  18828. source: "./media/characters/caylex/armored.svg",
  18829. extra: 1420 / 1310,
  18830. bottom: 0.045
  18831. }
  18832. },
  18833. },
  18834. [
  18835. {
  18836. name: "Normal",
  18837. height: math.unit(6 + 8 / 12, "feet"),
  18838. default: true
  18839. },
  18840. {
  18841. name: "Normal+",
  18842. height: math.unit(12, "feet")
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18848. {
  18849. front: {
  18850. height: math.unit(7 + 6 / 12, "feet"),
  18851. weight: math.unit(288, "lb"),
  18852. name: "Front",
  18853. image: {
  18854. source: "./media/characters/alana/front.svg",
  18855. extra: 679 / 653,
  18856. bottom: 22.5 / 701
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(7 + 6 / 12, "feet")
  18864. },
  18865. {
  18866. name: "Large",
  18867. height: math.unit(50, "feet")
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(100, "feet"),
  18872. default: true
  18873. },
  18874. {
  18875. name: "Macro+",
  18876. height: math.unit(200, "feet")
  18877. },
  18878. ]
  18879. ))
  18880. characterMakers.push(() => makeCharacter(
  18881. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18882. {
  18883. front: {
  18884. height: math.unit(6 + 1 / 12, "feet"),
  18885. weight: math.unit(210, "lb"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/hasani/front.svg",
  18889. extra: 244 / 232,
  18890. bottom: 0.01
  18891. }
  18892. },
  18893. back: {
  18894. height: math.unit(6 + 1 / 12, "feet"),
  18895. weight: math.unit(210, "lb"),
  18896. name: "Back",
  18897. image: {
  18898. source: "./media/characters/hasani/back.svg",
  18899. extra: 244 / 232,
  18900. bottom: 0.01
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(6 + 1 / 12, "feet")
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(175, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(1.82, "meters"),
  18921. weight: math.unit(140, "lb"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/nita/front.svg",
  18925. extra: 2473 / 2363,
  18926. bottom: 0.01
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Normal",
  18933. height: math.unit(1.82, "m")
  18934. },
  18935. {
  18936. name: "Macro",
  18937. height: math.unit(300, "m")
  18938. },
  18939. {
  18940. name: "Mistake Canon",
  18941. height: math.unit(0.5, "miles"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Big Mistake",
  18946. height: math.unit(13, "miles")
  18947. },
  18948. {
  18949. name: "Playing God",
  18950. height: math.unit(2450, "miles")
  18951. },
  18952. ]
  18953. ))
  18954. characterMakers.push(() => makeCharacter(
  18955. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18956. {
  18957. front: {
  18958. height: math.unit(4, "feet"),
  18959. weight: math.unit(120, "lb"),
  18960. name: "Front",
  18961. image: {
  18962. source: "./media/characters/shiriko/front.svg",
  18963. extra: 970/934,
  18964. bottom: 5/975
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Normal",
  18971. height: math.unit(4, "feet"),
  18972. default: true
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. name: "front",
  18982. image: {
  18983. source: "./media/characters/deja/front.svg",
  18984. extra: 926 / 840,
  18985. bottom: 0.07
  18986. }
  18987. },
  18988. },
  18989. [
  18990. {
  18991. name: "Planck Length",
  18992. height: math.unit(1.6e-35, "meters")
  18993. },
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(30.48, "meters"),
  18997. default: true
  18998. },
  18999. {
  19000. name: "Universal",
  19001. height: math.unit(8.8e26, "meters")
  19002. },
  19003. ]
  19004. ))
  19005. characterMakers.push(() => makeCharacter(
  19006. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19007. {
  19008. side: {
  19009. height: math.unit(8, "feet"),
  19010. weight: math.unit(6300, "lb"),
  19011. name: "Side",
  19012. image: {
  19013. source: "./media/characters/anima/side.svg",
  19014. bottom: 0.035
  19015. }
  19016. },
  19017. },
  19018. [
  19019. {
  19020. name: "Normal",
  19021. height: math.unit(8, "feet"),
  19022. default: true
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(8, "feet"),
  19031. weight: math.unit(350, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/bianca/front.svg",
  19035. extra: 234 / 225,
  19036. bottom: 0.03
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(8, "feet"),
  19044. default: true
  19045. },
  19046. ]
  19047. ))
  19048. characterMakers.push(() => makeCharacter(
  19049. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19050. {
  19051. front: {
  19052. height: math.unit(11 + 5/12, "feet"),
  19053. weight: math.unit(1200, "lb"),
  19054. name: "Front",
  19055. image: {
  19056. source: "./media/characters/adinia/front.svg",
  19057. extra: 1767/1641,
  19058. bottom: 44/1811
  19059. },
  19060. extraAttributes: {
  19061. "energyIntake": {
  19062. name: "Energy Intake",
  19063. power: 3,
  19064. type: "energy",
  19065. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19066. },
  19067. }
  19068. },
  19069. back: {
  19070. height: math.unit(11 + 5/12, "feet"),
  19071. weight: math.unit(1200, "lb"),
  19072. name: "Back",
  19073. image: {
  19074. source: "./media/characters/adinia/back.svg",
  19075. extra: 1834/1684,
  19076. bottom: 14/1848
  19077. },
  19078. extraAttributes: {
  19079. "energyIntake": {
  19080. name: "Energy Intake",
  19081. power: 3,
  19082. type: "energy",
  19083. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19084. },
  19085. }
  19086. },
  19087. maw: {
  19088. height: math.unit(3.79, "feet"),
  19089. name: "Maw",
  19090. image: {
  19091. source: "./media/characters/adinia/maw.svg"
  19092. }
  19093. },
  19094. rump: {
  19095. height: math.unit(4.6, "feet"),
  19096. name: "Rump",
  19097. image: {
  19098. source: "./media/characters/adinia/rump.svg"
  19099. }
  19100. },
  19101. },
  19102. [
  19103. {
  19104. name: "Normal",
  19105. height: math.unit(11 + 5 / 12, "feet"),
  19106. default: true
  19107. },
  19108. ]
  19109. ))
  19110. characterMakers.push(() => makeCharacter(
  19111. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19112. {
  19113. front: {
  19114. height: math.unit(3, "meters"),
  19115. weight: math.unit(200, "kg"),
  19116. name: "Front",
  19117. image: {
  19118. source: "./media/characters/lykasa/front.svg",
  19119. extra: 1076 / 976,
  19120. bottom: 0.06
  19121. }
  19122. },
  19123. },
  19124. [
  19125. {
  19126. name: "Normal",
  19127. height: math.unit(3, "meters")
  19128. },
  19129. {
  19130. name: "Kaiju",
  19131. height: math.unit(120, "meters"),
  19132. default: true
  19133. },
  19134. {
  19135. name: "Mega Kaiju",
  19136. height: math.unit(240, "km")
  19137. },
  19138. {
  19139. name: "Giga Kaiju",
  19140. height: math.unit(400, "megameters")
  19141. },
  19142. {
  19143. name: "Tera Kaiju",
  19144. height: math.unit(800, "gigameters")
  19145. },
  19146. {
  19147. name: "Kaiju Dragon Goddess",
  19148. height: math.unit(26, "zettaparsecs")
  19149. },
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19154. {
  19155. side: {
  19156. height: math.unit(283 / 124 * 6, "feet"),
  19157. weight: math.unit(35000, "lb"),
  19158. name: "Side",
  19159. image: {
  19160. source: "./media/characters/malfaren/side.svg",
  19161. extra: 1310/529,
  19162. bottom: 24/1334
  19163. }
  19164. },
  19165. front: {
  19166. height: math.unit(22.36, "feet"),
  19167. weight: math.unit(35000, "lb"),
  19168. name: "Front",
  19169. image: {
  19170. source: "./media/characters/malfaren/front.svg",
  19171. extra: 1237/1115,
  19172. bottom: 32/1269
  19173. }
  19174. },
  19175. maw: {
  19176. height: math.unit(6.9, "feet"),
  19177. name: "Maw",
  19178. image: {
  19179. source: "./media/characters/malfaren/maw.svg"
  19180. }
  19181. },
  19182. dick: {
  19183. height: math.unit(6.19, "feet"),
  19184. name: "Dick",
  19185. image: {
  19186. source: "./media/characters/malfaren/dick.svg"
  19187. }
  19188. },
  19189. eye: {
  19190. height: math.unit(0.69, "feet"),
  19191. name: "Eye",
  19192. image: {
  19193. source: "./media/characters/malfaren/eye.svg"
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Big",
  19200. height: math.unit(283 / 162 * 6, "feet"),
  19201. },
  19202. {
  19203. name: "Bigger",
  19204. height: math.unit(283 / 124 * 6, "feet")
  19205. },
  19206. {
  19207. name: "Massive",
  19208. height: math.unit(283 / 92 * 6, "feet"),
  19209. default: true
  19210. },
  19211. {
  19212. name: "👀💦",
  19213. height: math.unit(283 / 73 * 6, "feet"),
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19219. {
  19220. front: {
  19221. height: math.unit(1.7, "m"),
  19222. weight: math.unit(70, "kg"),
  19223. name: "Front",
  19224. image: {
  19225. source: "./media/characters/kernel/front.svg",
  19226. extra: 222 / 210,
  19227. bottom: 0.007
  19228. }
  19229. },
  19230. },
  19231. [
  19232. {
  19233. name: "Nano",
  19234. height: math.unit(17, "micrometers")
  19235. },
  19236. {
  19237. name: "Micro",
  19238. height: math.unit(1.7, "mm")
  19239. },
  19240. {
  19241. name: "Small",
  19242. height: math.unit(1.7, "cm")
  19243. },
  19244. {
  19245. name: "Normal",
  19246. height: math.unit(1.7, "m"),
  19247. default: true
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(1.75, "meters"),
  19256. weight: math.unit(65, "kg"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/jayne-folest/front.svg",
  19260. extra: 2115 / 2007,
  19261. bottom: 0.02
  19262. }
  19263. },
  19264. back: {
  19265. height: math.unit(1.75, "meters"),
  19266. weight: math.unit(65, "kg"),
  19267. name: "Back",
  19268. image: {
  19269. source: "./media/characters/jayne-folest/back.svg",
  19270. extra: 2115 / 2007,
  19271. bottom: 0.005
  19272. }
  19273. },
  19274. frontClothed: {
  19275. height: math.unit(1.75, "meters"),
  19276. weight: math.unit(65, "kg"),
  19277. name: "Front (Clothed)",
  19278. image: {
  19279. source: "./media/characters/jayne-folest/front-clothed.svg",
  19280. extra: 2115 / 2007,
  19281. bottom: 0.035
  19282. }
  19283. },
  19284. hand: {
  19285. height: math.unit(1 / 1.260, "feet"),
  19286. name: "Hand",
  19287. image: {
  19288. source: "./media/characters/jayne-folest/hand.svg"
  19289. }
  19290. },
  19291. foot: {
  19292. height: math.unit(1 / 0.918, "feet"),
  19293. name: "Foot",
  19294. image: {
  19295. source: "./media/characters/jayne-folest/foot.svg"
  19296. }
  19297. },
  19298. },
  19299. [
  19300. {
  19301. name: "Micro",
  19302. height: math.unit(4, "cm")
  19303. },
  19304. {
  19305. name: "Normal",
  19306. height: math.unit(1.75, "meters")
  19307. },
  19308. {
  19309. name: "Macro",
  19310. height: math.unit(47.5, "meters"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(180, "cm"),
  19320. weight: math.unit(70, "kg"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/algier/front.svg",
  19324. extra: 596 / 572,
  19325. bottom: 0.04
  19326. }
  19327. },
  19328. back: {
  19329. height: math.unit(180, "cm"),
  19330. weight: math.unit(70, "kg"),
  19331. name: "Back",
  19332. image: {
  19333. source: "./media/characters/algier/back.svg",
  19334. extra: 596 / 572,
  19335. bottom: 0.025
  19336. }
  19337. },
  19338. frontdressed: {
  19339. height: math.unit(180, "cm"),
  19340. weight: math.unit(150, "kg"),
  19341. name: "Front-dressed",
  19342. image: {
  19343. source: "./media/characters/algier/front-dressed.svg",
  19344. extra: 596 / 572,
  19345. bottom: 0.038
  19346. }
  19347. },
  19348. },
  19349. [
  19350. {
  19351. name: "Micro",
  19352. height: math.unit(5, "cm")
  19353. },
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(180, "cm"),
  19357. default: true
  19358. },
  19359. {
  19360. name: "Macro",
  19361. height: math.unit(64, "m")
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19367. {
  19368. upright: {
  19369. height: math.unit(7, "feet"),
  19370. weight: math.unit(300, "lb"),
  19371. name: "Upright",
  19372. image: {
  19373. source: "./media/characters/pretzel/upright.svg",
  19374. extra: 534 / 522,
  19375. bottom: 0.065
  19376. }
  19377. },
  19378. sprawling: {
  19379. height: math.unit(3.75, "feet"),
  19380. weight: math.unit(300, "lb"),
  19381. name: "Sprawling",
  19382. image: {
  19383. source: "./media/characters/pretzel/sprawling.svg",
  19384. extra: 314 / 281,
  19385. bottom: 0.1
  19386. }
  19387. },
  19388. tongue: {
  19389. height: math.unit(2, "feet"),
  19390. name: "Tongue",
  19391. image: {
  19392. source: "./media/characters/pretzel/tongue.svg"
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(7, "feet"),
  19400. default: true
  19401. },
  19402. {
  19403. name: "Oversized",
  19404. height: math.unit(15, "feet")
  19405. },
  19406. {
  19407. name: "Huge",
  19408. height: math.unit(30, "feet")
  19409. },
  19410. {
  19411. name: "Macro",
  19412. height: math.unit(250, "feet")
  19413. },
  19414. ]
  19415. ))
  19416. characterMakers.push(() => makeCharacter(
  19417. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19418. {
  19419. sideFront: {
  19420. height: math.unit(5 + 2 / 12, "feet"),
  19421. weight: math.unit(120, "lb"),
  19422. name: "Front Side",
  19423. image: {
  19424. source: "./media/characters/roxi/side-front.svg",
  19425. extra: 2924 / 2717,
  19426. bottom: 0.08
  19427. }
  19428. },
  19429. sideBack: {
  19430. height: math.unit(5 + 2 / 12, "feet"),
  19431. weight: math.unit(120, "lb"),
  19432. name: "Back Side",
  19433. image: {
  19434. source: "./media/characters/roxi/side-back.svg",
  19435. extra: 2904 / 2693,
  19436. bottom: 0.06
  19437. }
  19438. },
  19439. front: {
  19440. height: math.unit(5 + 2 / 12, "feet"),
  19441. weight: math.unit(120, "lb"),
  19442. name: "Front",
  19443. image: {
  19444. source: "./media/characters/roxi/front.svg",
  19445. extra: 2028 / 1907,
  19446. bottom: 0.01
  19447. }
  19448. },
  19449. frontAlt: {
  19450. height: math.unit(5 + 2 / 12, "feet"),
  19451. weight: math.unit(120, "lb"),
  19452. name: "Front (Alt)",
  19453. image: {
  19454. source: "./media/characters/roxi/front-alt.svg",
  19455. extra: 1828 / 1798,
  19456. bottom: 0.01
  19457. }
  19458. },
  19459. sitting: {
  19460. height: math.unit(2.8, "feet"),
  19461. weight: math.unit(120, "lb"),
  19462. name: "Sitting",
  19463. image: {
  19464. source: "./media/characters/roxi/sitting.svg",
  19465. extra: 2660 / 2462,
  19466. bottom: 0.1
  19467. }
  19468. },
  19469. },
  19470. [
  19471. {
  19472. name: "Normal",
  19473. height: math.unit(5 + 2 / 12, "feet"),
  19474. default: true
  19475. },
  19476. ]
  19477. ))
  19478. characterMakers.push(() => makeCharacter(
  19479. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19480. {
  19481. side: {
  19482. height: math.unit(55, "feet"),
  19483. weight: math.unit(153, "tons"),
  19484. name: "Side",
  19485. image: {
  19486. source: "./media/characters/shadow/side.svg",
  19487. extra: 701 / 628,
  19488. bottom: 0.02
  19489. }
  19490. },
  19491. flying: {
  19492. height: math.unit(145, "feet"),
  19493. weight: math.unit(153, "tons"),
  19494. name: "Flying",
  19495. image: {
  19496. source: "./media/characters/shadow/flying.svg"
  19497. }
  19498. },
  19499. },
  19500. [
  19501. {
  19502. name: "Normal",
  19503. height: math.unit(55, "feet"),
  19504. default: true
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(6, "feet"),
  19513. weight: math.unit(200, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/marcie/front.svg",
  19517. extra: 960 / 876,
  19518. bottom: 58 / 1017.87
  19519. }
  19520. },
  19521. },
  19522. [
  19523. {
  19524. name: "Macro",
  19525. height: math.unit(1, "mile"),
  19526. default: true
  19527. },
  19528. ]
  19529. ))
  19530. characterMakers.push(() => makeCharacter(
  19531. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19532. {
  19533. front: {
  19534. height: math.unit(7, "feet"),
  19535. weight: math.unit(200, "lb"),
  19536. name: "Front",
  19537. image: {
  19538. source: "./media/characters/kachina/front.svg",
  19539. extra: 1290.68 / 1119,
  19540. bottom: 36.5 / 1327.18
  19541. }
  19542. },
  19543. },
  19544. [
  19545. {
  19546. name: "Normal",
  19547. height: math.unit(7, "feet"),
  19548. default: true
  19549. },
  19550. ]
  19551. ))
  19552. characterMakers.push(() => makeCharacter(
  19553. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19554. {
  19555. looking: {
  19556. height: math.unit(2, "meters"),
  19557. weight: math.unit(300, "kg"),
  19558. name: "Looking",
  19559. image: {
  19560. source: "./media/characters/kash/looking.svg",
  19561. extra: 474 / 344,
  19562. bottom: 0.03
  19563. }
  19564. },
  19565. side: {
  19566. height: math.unit(2, "meters"),
  19567. weight: math.unit(300, "kg"),
  19568. name: "Side",
  19569. image: {
  19570. source: "./media/characters/kash/side.svg",
  19571. extra: 302 / 251,
  19572. bottom: 0.03
  19573. }
  19574. },
  19575. front: {
  19576. height: math.unit(2, "meters"),
  19577. weight: math.unit(300, "kg"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/kash/front.svg",
  19581. extra: 495 / 360,
  19582. bottom: 0.015
  19583. }
  19584. },
  19585. },
  19586. [
  19587. {
  19588. name: "Normal",
  19589. height: math.unit(2, "meters"),
  19590. default: true
  19591. },
  19592. {
  19593. name: "Big",
  19594. height: math.unit(3, "meters")
  19595. },
  19596. {
  19597. name: "Large",
  19598. height: math.unit(5, "meters")
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19604. {
  19605. feeding: {
  19606. height: math.unit(6.7, "feet"),
  19607. weight: math.unit(350, "lb"),
  19608. name: "Feeding",
  19609. image: {
  19610. source: "./media/characters/lalim/feeding.svg",
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(6.7, "feet"),
  19618. default: true
  19619. },
  19620. ]
  19621. ))
  19622. characterMakers.push(() => makeCharacter(
  19623. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19624. {
  19625. front: {
  19626. height: math.unit(9.5, "feet"),
  19627. weight: math.unit(600, "lb"),
  19628. name: "Front",
  19629. image: {
  19630. source: "./media/characters/de'vout/front.svg",
  19631. extra: 1443 / 1328,
  19632. bottom: 0.025
  19633. }
  19634. },
  19635. back: {
  19636. height: math.unit(9.5, "feet"),
  19637. weight: math.unit(600, "lb"),
  19638. name: "Back",
  19639. image: {
  19640. source: "./media/characters/de'vout/back.svg",
  19641. extra: 1443 / 1328
  19642. }
  19643. },
  19644. frontDressed: {
  19645. height: math.unit(9.5, "feet"),
  19646. weight: math.unit(600, "lb"),
  19647. name: "Front (Dressed",
  19648. image: {
  19649. source: "./media/characters/de'vout/front-dressed.svg",
  19650. extra: 1443 / 1328,
  19651. bottom: 0.025
  19652. }
  19653. },
  19654. backDressed: {
  19655. height: math.unit(9.5, "feet"),
  19656. weight: math.unit(600, "lb"),
  19657. name: "Back (Dressed",
  19658. image: {
  19659. source: "./media/characters/de'vout/back-dressed.svg",
  19660. extra: 1443 / 1328
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(9.5, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19674. {
  19675. front: {
  19676. height: math.unit(8, "feet"),
  19677. weight: math.unit(225, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/talana/front.svg",
  19681. extra: 1410 / 1300,
  19682. bottom: 0.015
  19683. }
  19684. },
  19685. frontDressed: {
  19686. height: math.unit(8, "feet"),
  19687. weight: math.unit(225, "lb"),
  19688. name: "Front (Dressed",
  19689. image: {
  19690. source: "./media/characters/talana/front-dressed.svg",
  19691. extra: 1410 / 1300,
  19692. bottom: 0.015
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(8, "feet"),
  19700. default: true
  19701. },
  19702. ]
  19703. ))
  19704. characterMakers.push(() => makeCharacter(
  19705. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19706. {
  19707. side: {
  19708. height: math.unit(7.2, "feet"),
  19709. weight: math.unit(150, "lb"),
  19710. name: "Side",
  19711. image: {
  19712. source: "./media/characters/xeauvok/side.svg",
  19713. extra: 1975 / 1523,
  19714. bottom: 0.07
  19715. }
  19716. },
  19717. },
  19718. [
  19719. {
  19720. name: "Normal",
  19721. height: math.unit(7.2, "feet"),
  19722. default: true
  19723. },
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19728. {
  19729. side: {
  19730. height: math.unit(4, "meters"),
  19731. weight: math.unit(2200, "kg"),
  19732. name: "Side",
  19733. image: {
  19734. source: "./media/characters/zara/side.svg",
  19735. extra: 765/744,
  19736. bottom: 156/921
  19737. }
  19738. },
  19739. },
  19740. [
  19741. {
  19742. name: "Normal",
  19743. height: math.unit(4, "meters"),
  19744. default: true
  19745. },
  19746. ]
  19747. ))
  19748. characterMakers.push(() => makeCharacter(
  19749. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19750. {
  19751. side: {
  19752. height: math.unit(6, "feet"),
  19753. weight: math.unit(150, "lb"),
  19754. name: "Side",
  19755. image: {
  19756. source: "./media/characters/richard-dragon/side.svg",
  19757. extra: 845 / 340,
  19758. bottom: 0.017
  19759. }
  19760. },
  19761. maw: {
  19762. height: math.unit(2.97, "feet"),
  19763. name: "Maw",
  19764. image: {
  19765. source: "./media/characters/richard-dragon/maw.svg"
  19766. }
  19767. },
  19768. },
  19769. [
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19774. {
  19775. front: {
  19776. height: math.unit(4, "feet"),
  19777. weight: math.unit(100, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/richard-smeargle/front.svg",
  19781. extra: 2952 / 2820,
  19782. bottom: 0.028
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(4, "feet"),
  19790. default: true
  19791. },
  19792. {
  19793. name: "Dynamax",
  19794. height: math.unit(20, "meters")
  19795. },
  19796. ]
  19797. ))
  19798. characterMakers.push(() => makeCharacter(
  19799. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19800. {
  19801. front: {
  19802. height: math.unit(6, "feet"),
  19803. weight: math.unit(110, "lb"),
  19804. name: "Front",
  19805. image: {
  19806. source: "./media/characters/klay/front.svg",
  19807. extra: 962 / 883,
  19808. bottom: 0.04
  19809. }
  19810. },
  19811. back: {
  19812. height: math.unit(6, "feet"),
  19813. weight: math.unit(110, "lb"),
  19814. name: "Back",
  19815. image: {
  19816. source: "./media/characters/klay/back.svg",
  19817. extra: 962 / 883
  19818. }
  19819. },
  19820. beans: {
  19821. height: math.unit(1.15, "feet"),
  19822. name: "Beans",
  19823. image: {
  19824. source: "./media/characters/klay/beans.svg"
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Micro",
  19831. height: math.unit(6, "inches")
  19832. },
  19833. {
  19834. name: "Mini",
  19835. height: math.unit(3, "feet")
  19836. },
  19837. {
  19838. name: "Normal",
  19839. height: math.unit(6, "feet"),
  19840. default: true
  19841. },
  19842. {
  19843. name: "Big",
  19844. height: math.unit(25, "feet")
  19845. },
  19846. {
  19847. name: "Macro",
  19848. height: math.unit(100, "feet")
  19849. },
  19850. {
  19851. name: "Megamacro",
  19852. height: math.unit(400, "feet")
  19853. },
  19854. ]
  19855. ))
  19856. characterMakers.push(() => makeCharacter(
  19857. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19858. {
  19859. front: {
  19860. height: math.unit(6, "feet"),
  19861. weight: math.unit(160, "lb"),
  19862. name: "Front",
  19863. image: {
  19864. source: "./media/characters/marcus/front.svg",
  19865. extra: 734 / 676,
  19866. bottom: 0.03
  19867. }
  19868. },
  19869. },
  19870. [
  19871. {
  19872. name: "Little",
  19873. height: math.unit(6, "feet")
  19874. },
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(110, "feet"),
  19878. default: true
  19879. },
  19880. {
  19881. name: "Macro",
  19882. height: math.unit(250, "feet")
  19883. },
  19884. {
  19885. name: "Megamacro",
  19886. height: math.unit(1000, "feet")
  19887. },
  19888. ]
  19889. ))
  19890. characterMakers.push(() => makeCharacter(
  19891. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19892. {
  19893. front: {
  19894. height: math.unit(7, "feet"),
  19895. weight: math.unit(275, "lb"),
  19896. name: "Front",
  19897. image: {
  19898. source: "./media/characters/claude-delroute/front.svg",
  19899. extra: 902/827,
  19900. bottom: 26/928
  19901. }
  19902. },
  19903. side: {
  19904. height: math.unit(7, "feet"),
  19905. weight: math.unit(275, "lb"),
  19906. name: "Side",
  19907. image: {
  19908. source: "./media/characters/claude-delroute/side.svg",
  19909. extra: 908/853,
  19910. bottom: 16/924
  19911. }
  19912. },
  19913. back: {
  19914. height: math.unit(7, "feet"),
  19915. weight: math.unit(275, "lb"),
  19916. name: "Back",
  19917. image: {
  19918. source: "./media/characters/claude-delroute/back.svg",
  19919. extra: 911/829,
  19920. bottom: 18/929
  19921. }
  19922. },
  19923. maw: {
  19924. height: math.unit(0.6407, "meters"),
  19925. name: "Maw",
  19926. image: {
  19927. source: "./media/characters/claude-delroute/maw.svg"
  19928. }
  19929. },
  19930. },
  19931. [
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(7, "feet"),
  19935. default: true
  19936. },
  19937. {
  19938. name: "Lorge",
  19939. height: math.unit(20, "feet")
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(8 + 4 / 12, "feet"),
  19948. weight: math.unit(600, "lb"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/dragonien/front.svg",
  19952. extra: 100 / 94,
  19953. bottom: 3.3 / 103.3445
  19954. }
  19955. },
  19956. back: {
  19957. height: math.unit(8 + 4 / 12, "feet"),
  19958. weight: math.unit(600, "lb"),
  19959. name: "Back",
  19960. image: {
  19961. source: "./media/characters/dragonien/back.svg",
  19962. extra: 776 / 746,
  19963. bottom: 6.4 / 782.0616
  19964. }
  19965. },
  19966. foot: {
  19967. height: math.unit(1.54, "feet"),
  19968. name: "Foot",
  19969. image: {
  19970. source: "./media/characters/dragonien/foot.svg",
  19971. }
  19972. },
  19973. },
  19974. [
  19975. {
  19976. name: "Normal",
  19977. height: math.unit(8 + 4 / 12, "feet"),
  19978. default: true
  19979. },
  19980. {
  19981. name: "Macro",
  19982. height: math.unit(200, "feet")
  19983. },
  19984. {
  19985. name: "Megamacro",
  19986. height: math.unit(1, "mile")
  19987. },
  19988. {
  19989. name: "Gigamacro",
  19990. height: math.unit(1000, "miles")
  19991. },
  19992. ]
  19993. ))
  19994. characterMakers.push(() => makeCharacter(
  19995. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19996. {
  19997. front: {
  19998. height: math.unit(5 + 2 / 12, "feet"),
  19999. weight: math.unit(110, "lb"),
  20000. name: "Front",
  20001. image: {
  20002. source: "./media/characters/desta/front.svg",
  20003. extra: 767 / 726,
  20004. bottom: 11.7 / 779
  20005. }
  20006. },
  20007. back: {
  20008. height: math.unit(5 + 2 / 12, "feet"),
  20009. weight: math.unit(110, "lb"),
  20010. name: "Back",
  20011. image: {
  20012. source: "./media/characters/desta/back.svg",
  20013. extra: 777 / 728,
  20014. bottom: 6 / 784
  20015. }
  20016. },
  20017. frontAlt: {
  20018. height: math.unit(5 + 2 / 12, "feet"),
  20019. weight: math.unit(110, "lb"),
  20020. name: "Front",
  20021. image: {
  20022. source: "./media/characters/desta/front-alt.svg",
  20023. extra: 1482 / 1417
  20024. }
  20025. },
  20026. side: {
  20027. height: math.unit(5 + 2 / 12, "feet"),
  20028. weight: math.unit(110, "lb"),
  20029. name: "Side",
  20030. image: {
  20031. source: "./media/characters/desta/side.svg",
  20032. extra: 2579 / 2491,
  20033. bottom: 0.053
  20034. }
  20035. },
  20036. },
  20037. [
  20038. {
  20039. name: "Micro",
  20040. height: math.unit(6, "inches")
  20041. },
  20042. {
  20043. name: "Normal",
  20044. height: math.unit(5 + 2 / 12, "feet"),
  20045. default: true
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(62, "feet")
  20050. },
  20051. {
  20052. name: "Megamacro",
  20053. height: math.unit(1800, "feet")
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(10, "feet"),
  20062. weight: math.unit(700, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/storm-alystar/front.svg",
  20066. extra: 2112 / 1898,
  20067. bottom: 0.034
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Micro",
  20074. height: math.unit(3.5, "inches")
  20075. },
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(10, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Macro",
  20083. height: math.unit(400, "feet")
  20084. },
  20085. {
  20086. name: "Deific",
  20087. height: math.unit(60, "miles")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(2.35, "meters"),
  20096. weight: math.unit(119, "kg"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/ilia/front.svg",
  20100. extra: 1285 / 1255,
  20101. bottom: 0.06
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(2.35, "meters")
  20109. },
  20110. {
  20111. name: "Macro",
  20112. height: math.unit(140, "meters"),
  20113. default: true
  20114. },
  20115. {
  20116. name: "Megamacro",
  20117. height: math.unit(100, "miles")
  20118. },
  20119. ]
  20120. ))
  20121. characterMakers.push(() => makeCharacter(
  20122. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20123. {
  20124. front: {
  20125. height: math.unit(6 + 5 / 12, "feet"),
  20126. weight: math.unit(190, "lb"),
  20127. name: "Front",
  20128. image: {
  20129. source: "./media/characters/kingdead/front.svg",
  20130. extra: 1228 / 1177
  20131. }
  20132. },
  20133. },
  20134. [
  20135. {
  20136. name: "Micro",
  20137. height: math.unit(7, "inches")
  20138. },
  20139. {
  20140. name: "Normal",
  20141. height: math.unit(6 + 5 / 12, "feet")
  20142. },
  20143. {
  20144. name: "Macro",
  20145. height: math.unit(150, "feet"),
  20146. default: true
  20147. },
  20148. {
  20149. name: "Megamacro",
  20150. height: math.unit(200, "miles")
  20151. },
  20152. ]
  20153. ))
  20154. characterMakers.push(() => makeCharacter(
  20155. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20156. {
  20157. front: {
  20158. height: math.unit(8, "feet"),
  20159. weight: math.unit(600, "lb"),
  20160. name: "Front",
  20161. image: {
  20162. source: "./media/characters/kyrehx/front.svg",
  20163. extra: 1195 / 1095,
  20164. bottom: 0.034
  20165. }
  20166. },
  20167. },
  20168. [
  20169. {
  20170. name: "Micro",
  20171. height: math.unit(2, "inches")
  20172. },
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(8, "feet"),
  20176. default: true
  20177. },
  20178. {
  20179. name: "Macro",
  20180. height: math.unit(255, "feet")
  20181. },
  20182. ]
  20183. ))
  20184. characterMakers.push(() => makeCharacter(
  20185. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20186. {
  20187. front: {
  20188. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20189. weight: math.unit(184, "lb"),
  20190. name: "Front",
  20191. image: {
  20192. source: "./media/characters/xang/front.svg",
  20193. extra: 845 / 755
  20194. }
  20195. },
  20196. },
  20197. [
  20198. {
  20199. name: "Normal",
  20200. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20201. default: true
  20202. },
  20203. {
  20204. name: "Macro",
  20205. height: math.unit(0.935 * 146, "feet")
  20206. },
  20207. {
  20208. name: "Megamacro",
  20209. height: math.unit(0.935 * 3, "miles")
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20215. {
  20216. frontDressed: {
  20217. height: math.unit(5 + 7 / 12, "feet"),
  20218. weight: math.unit(140, "lb"),
  20219. name: "Front (Dressed)",
  20220. image: {
  20221. source: "./media/characters/doc-weardno/front-dressed.svg",
  20222. extra: 263 / 234
  20223. }
  20224. },
  20225. backDressed: {
  20226. height: math.unit(5 + 7 / 12, "feet"),
  20227. weight: math.unit(140, "lb"),
  20228. name: "Back (Dressed)",
  20229. image: {
  20230. source: "./media/characters/doc-weardno/back-dressed.svg",
  20231. extra: 266 / 238
  20232. }
  20233. },
  20234. front: {
  20235. height: math.unit(5 + 7 / 12, "feet"),
  20236. weight: math.unit(140, "lb"),
  20237. name: "Front",
  20238. image: {
  20239. source: "./media/characters/doc-weardno/front.svg",
  20240. extra: 254 / 233
  20241. }
  20242. },
  20243. },
  20244. [
  20245. {
  20246. name: "Micro",
  20247. height: math.unit(3, "inches")
  20248. },
  20249. {
  20250. name: "Normal",
  20251. height: math.unit(5 + 7 / 12, "feet"),
  20252. default: true
  20253. },
  20254. {
  20255. name: "Macro",
  20256. height: math.unit(25, "feet")
  20257. },
  20258. {
  20259. name: "Megamacro",
  20260. height: math.unit(2, "miles")
  20261. },
  20262. ]
  20263. ))
  20264. characterMakers.push(() => makeCharacter(
  20265. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20266. {
  20267. front: {
  20268. height: math.unit(6 + 2 / 12, "feet"),
  20269. weight: math.unit(153, "lb"),
  20270. name: "Front",
  20271. image: {
  20272. source: "./media/characters/seth-whilst/front.svg",
  20273. bottom: 0.07
  20274. }
  20275. },
  20276. },
  20277. [
  20278. {
  20279. name: "Micro",
  20280. height: math.unit(5, "inches")
  20281. },
  20282. {
  20283. name: "Normal",
  20284. height: math.unit(6 + 2 / 12, "feet"),
  20285. default: true
  20286. },
  20287. ]
  20288. ))
  20289. characterMakers.push(() => makeCharacter(
  20290. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20291. {
  20292. front: {
  20293. height: math.unit(3, "inches"),
  20294. weight: math.unit(8, "grams"),
  20295. name: "Front",
  20296. image: {
  20297. source: "./media/characters/pocket-jabari/front.svg",
  20298. extra: 1024 / 974,
  20299. bottom: 0.039
  20300. }
  20301. },
  20302. },
  20303. [
  20304. {
  20305. name: "Minimicro",
  20306. height: math.unit(8, "mm")
  20307. },
  20308. {
  20309. name: "Micro",
  20310. height: math.unit(3, "inches"),
  20311. default: true
  20312. },
  20313. {
  20314. name: "Normal",
  20315. height: math.unit(3, "feet")
  20316. },
  20317. ]
  20318. ))
  20319. characterMakers.push(() => makeCharacter(
  20320. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20321. {
  20322. frontDressed: {
  20323. height: math.unit(15, "feet"),
  20324. weight: math.unit(3280, "lb"),
  20325. name: "Front (Dressed)",
  20326. image: {
  20327. source: "./media/characters/sapphy/front-dressed.svg",
  20328. extra: 1951/1654,
  20329. bottom: 194/2145
  20330. },
  20331. form: "anthro",
  20332. default: true
  20333. },
  20334. backDressed: {
  20335. height: math.unit(15, "feet"),
  20336. weight: math.unit(3280, "lb"),
  20337. name: "Back (Dressed)",
  20338. image: {
  20339. source: "./media/characters/sapphy/back-dressed.svg",
  20340. extra: 2058/1918,
  20341. bottom: 125/2183
  20342. },
  20343. form: "anthro"
  20344. },
  20345. frontNude: {
  20346. height: math.unit(15, "feet"),
  20347. weight: math.unit(3280, "lb"),
  20348. name: "Front (Nude)",
  20349. image: {
  20350. source: "./media/characters/sapphy/front-nude.svg",
  20351. extra: 1951/1654,
  20352. bottom: 194/2145
  20353. },
  20354. form: "anthro"
  20355. },
  20356. backNude: {
  20357. height: math.unit(15, "feet"),
  20358. weight: math.unit(3280, "lb"),
  20359. name: "Back (Nude)",
  20360. image: {
  20361. source: "./media/characters/sapphy/back-nude.svg",
  20362. extra: 2058/1918,
  20363. bottom: 125/2183
  20364. },
  20365. form: "anthro"
  20366. },
  20367. full: {
  20368. height: math.unit(15, "feet"),
  20369. weight: math.unit(3280, "lb"),
  20370. name: "Full",
  20371. image: {
  20372. source: "./media/characters/sapphy/full.svg",
  20373. extra: 1396/1317,
  20374. bottom: 44/1440
  20375. },
  20376. form: "anthro"
  20377. },
  20378. dick: {
  20379. height: math.unit(3.8, "feet"),
  20380. name: "Dick",
  20381. image: {
  20382. source: "./media/characters/sapphy/dick.svg"
  20383. },
  20384. form: "anthro"
  20385. },
  20386. feral: {
  20387. height: math.unit(35, "feet"),
  20388. weight: math.unit(160, "tons"),
  20389. name: "Feral",
  20390. image: {
  20391. source: "./media/characters/sapphy/feral.svg",
  20392. extra: 1050/573,
  20393. bottom: 60/1110
  20394. },
  20395. form: "feral",
  20396. default: true
  20397. },
  20398. },
  20399. [
  20400. {
  20401. name: "Normal",
  20402. height: math.unit(15, "feet"),
  20403. form: "anthro"
  20404. },
  20405. {
  20406. name: "Casual Macro",
  20407. height: math.unit(120, "feet"),
  20408. form: "anthro"
  20409. },
  20410. {
  20411. name: "Macro",
  20412. height: math.unit(2150, "feet"),
  20413. default: true,
  20414. form: "anthro"
  20415. },
  20416. {
  20417. name: "Megamacro",
  20418. height: math.unit(8, "miles"),
  20419. form: "anthro"
  20420. },
  20421. {
  20422. name: "Galaxy Mom",
  20423. height: math.unit(6, "megalightyears"),
  20424. form: "anthro"
  20425. },
  20426. {
  20427. name: "Normal",
  20428. height: math.unit(35, "feet"),
  20429. form: "feral",
  20430. default: true
  20431. },
  20432. {
  20433. name: "Macro",
  20434. height: math.unit(300, "feet"),
  20435. form: "feral"
  20436. },
  20437. {
  20438. name: "Galaxy Mom",
  20439. height: math.unit(10, "megalightyears"),
  20440. form: "feral"
  20441. },
  20442. ],
  20443. {
  20444. "anthro": {
  20445. name: "Anthro",
  20446. default: true
  20447. },
  20448. "feral": {
  20449. name: "Feral"
  20450. }
  20451. }
  20452. ))
  20453. characterMakers.push(() => makeCharacter(
  20454. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20455. {
  20456. hyenaFront: {
  20457. height: math.unit(6, "feet"),
  20458. weight: math.unit(190, "lb"),
  20459. name: "Front",
  20460. image: {
  20461. source: "./media/characters/kiro/hyena-front.svg",
  20462. extra: 927/839,
  20463. bottom: 91/1018
  20464. },
  20465. form: "hyena",
  20466. default: true
  20467. },
  20468. front: {
  20469. height: math.unit(6, "feet"),
  20470. weight: math.unit(170, "lb"),
  20471. name: "Front",
  20472. image: {
  20473. source: "./media/characters/kiro/front.svg",
  20474. extra: 1064 / 1012,
  20475. bottom: 0.052
  20476. },
  20477. form: "folf",
  20478. default: true
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Micro",
  20484. height: math.unit(6, "inches"),
  20485. form: "folf"
  20486. },
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(6, "feet"),
  20490. form: "folf",
  20491. default: true
  20492. },
  20493. {
  20494. name: "Macro",
  20495. height: math.unit(72, "feet"),
  20496. form: "folf"
  20497. },
  20498. {
  20499. name: "Micro",
  20500. height: math.unit(6, "inches"),
  20501. form: "hyena"
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(6, "feet"),
  20506. form: "hyena",
  20507. default: true
  20508. },
  20509. {
  20510. name: "Macro",
  20511. height: math.unit(72, "feet"),
  20512. form: "hyena"
  20513. },
  20514. ],
  20515. {
  20516. "hyena": {
  20517. name: "Hyena",
  20518. default: true
  20519. },
  20520. "folf": {
  20521. name: "Folf",
  20522. },
  20523. }
  20524. ))
  20525. characterMakers.push(() => makeCharacter(
  20526. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20527. {
  20528. front: {
  20529. height: math.unit(5 + 9 / 12, "feet"),
  20530. weight: math.unit(175, "lb"),
  20531. name: "Front",
  20532. image: {
  20533. source: "./media/characters/irishfox/front.svg",
  20534. extra: 1912 / 1680,
  20535. bottom: 0.02
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Nano",
  20542. height: math.unit(1, "mm")
  20543. },
  20544. {
  20545. name: "Micro",
  20546. height: math.unit(2, "inches")
  20547. },
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(5 + 9 / 12, "feet"),
  20551. default: true
  20552. },
  20553. {
  20554. name: "Macro",
  20555. height: math.unit(45, "feet")
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(6 + 1 / 12, "feet"),
  20564. weight: math.unit(75, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/aronai-sieyes/front.svg",
  20568. extra: 1532/1450,
  20569. bottom: 42/1574
  20570. }
  20571. },
  20572. side: {
  20573. height: math.unit(6 + 1 / 12, "feet"),
  20574. weight: math.unit(75, "lb"),
  20575. name: "Side",
  20576. image: {
  20577. source: "./media/characters/aronai-sieyes/side.svg",
  20578. extra: 1422/1365,
  20579. bottom: 148/1570
  20580. }
  20581. },
  20582. back: {
  20583. height: math.unit(6 + 1 / 12, "feet"),
  20584. weight: math.unit(75, "lb"),
  20585. name: "Back",
  20586. image: {
  20587. source: "./media/characters/aronai-sieyes/back.svg",
  20588. extra: 1526/1464,
  20589. bottom: 51/1577
  20590. }
  20591. },
  20592. dressed: {
  20593. height: math.unit(6 + 1 / 12, "feet"),
  20594. weight: math.unit(75, "lb"),
  20595. name: "Dressed",
  20596. image: {
  20597. source: "./media/characters/aronai-sieyes/dressed.svg",
  20598. extra: 1559/1483,
  20599. bottom: 39/1598
  20600. }
  20601. },
  20602. slit: {
  20603. height: math.unit(1.3, "feet"),
  20604. name: "Slit",
  20605. image: {
  20606. source: "./media/characters/aronai-sieyes/slit.svg"
  20607. }
  20608. },
  20609. slitSpread: {
  20610. height: math.unit(0.9, "feet"),
  20611. name: "Slit (Spread)",
  20612. image: {
  20613. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20614. }
  20615. },
  20616. rump: {
  20617. height: math.unit(1.3, "feet"),
  20618. name: "Rump",
  20619. image: {
  20620. source: "./media/characters/aronai-sieyes/rump.svg"
  20621. }
  20622. },
  20623. maw: {
  20624. height: math.unit(1.25, "feet"),
  20625. name: "Maw",
  20626. image: {
  20627. source: "./media/characters/aronai-sieyes/maw.svg"
  20628. }
  20629. },
  20630. feral: {
  20631. height: math.unit(18, "feet"),
  20632. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20633. name: "Feral",
  20634. image: {
  20635. source: "./media/characters/aronai-sieyes/feral.svg",
  20636. extra: 1530 / 1240,
  20637. bottom: 0.035
  20638. }
  20639. },
  20640. },
  20641. [
  20642. {
  20643. name: "Micro",
  20644. height: math.unit(2, "inches")
  20645. },
  20646. {
  20647. name: "Normal",
  20648. height: math.unit(6 + 1 / 12, "feet"),
  20649. default: true
  20650. }
  20651. ]
  20652. ))
  20653. characterMakers.push(() => makeCharacter(
  20654. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20655. {
  20656. front: {
  20657. height: math.unit(12, "feet"),
  20658. weight: math.unit(410, "kg"),
  20659. name: "Front",
  20660. image: {
  20661. source: "./media/characters/xuna/front.svg",
  20662. extra: 2184 / 1980
  20663. }
  20664. },
  20665. side: {
  20666. height: math.unit(12, "feet"),
  20667. weight: math.unit(410, "kg"),
  20668. name: "Side",
  20669. image: {
  20670. source: "./media/characters/xuna/side.svg",
  20671. extra: 2184 / 1980
  20672. }
  20673. },
  20674. back: {
  20675. height: math.unit(12, "feet"),
  20676. weight: math.unit(410, "kg"),
  20677. name: "Back",
  20678. image: {
  20679. source: "./media/characters/xuna/back.svg",
  20680. extra: 2184 / 1980
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Nano glow",
  20687. height: math.unit(10, "nm")
  20688. },
  20689. {
  20690. name: "Micro floof",
  20691. height: math.unit(0.3, "m")
  20692. },
  20693. {
  20694. name: "Huggable softy boi",
  20695. height: math.unit(3.6576, "m"),
  20696. default: true
  20697. },
  20698. {
  20699. name: "Admirable floof",
  20700. height: math.unit(80, "meters")
  20701. },
  20702. {
  20703. name: "Gentle macro",
  20704. height: math.unit(300, "meters")
  20705. },
  20706. {
  20707. name: "Very careful floof",
  20708. height: math.unit(3200, "meters")
  20709. },
  20710. {
  20711. name: "The mega floof",
  20712. height: math.unit(36000, "meters")
  20713. },
  20714. {
  20715. name: "Giga-fur-Wicker",
  20716. height: math.unit(4800000, "meters")
  20717. },
  20718. {
  20719. name: "Licky world",
  20720. height: math.unit(20000000, "meters")
  20721. },
  20722. {
  20723. name: "Floofy cyan sun",
  20724. height: math.unit(1500000000, "meters")
  20725. },
  20726. {
  20727. name: "Milky Wicker",
  20728. height: math.unit(1000000000000000000000, "meters")
  20729. },
  20730. {
  20731. name: "The observing Wicker",
  20732. height: math.unit(999999999999999999999999999, "meters")
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(5 + 9 / 12, "feet"),
  20741. weight: math.unit(150, "lb"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/arokha-sieyes/front.svg",
  20745. extra: 1425 / 1284,
  20746. bottom: 0.05
  20747. }
  20748. },
  20749. },
  20750. [
  20751. {
  20752. name: "Normal",
  20753. height: math.unit(5 + 9 / 12, "feet")
  20754. },
  20755. {
  20756. name: "Macro",
  20757. height: math.unit(30, "meters"),
  20758. default: true
  20759. },
  20760. ]
  20761. ))
  20762. characterMakers.push(() => makeCharacter(
  20763. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20764. {
  20765. front: {
  20766. height: math.unit(6, "feet"),
  20767. weight: math.unit(180, "lb"),
  20768. name: "Front",
  20769. image: {
  20770. source: "./media/characters/arokh-sieyes/front.svg",
  20771. extra: 1830 / 1769,
  20772. bottom: 0.01
  20773. }
  20774. },
  20775. },
  20776. [
  20777. {
  20778. name: "Normal",
  20779. height: math.unit(6, "feet")
  20780. },
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(30, "meters"),
  20784. default: true
  20785. },
  20786. ]
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20790. {
  20791. side: {
  20792. height: math.unit(13 + 1 / 12, "feet"),
  20793. weight: math.unit(8.5, "tonnes"),
  20794. preyCapacity: math.unit(36, "people"),
  20795. name: "Side",
  20796. image: {
  20797. source: "./media/characters/goldeneye/side.svg",
  20798. extra: 1139/741,
  20799. bottom: 98/1237
  20800. }
  20801. },
  20802. front: {
  20803. height: math.unit(5.1, "feet"),
  20804. weight: math.unit(8.5, "tonnes"),
  20805. preyCapacity: math.unit(36, "people"),
  20806. name: "Front",
  20807. image: {
  20808. source: "./media/characters/goldeneye/front.svg",
  20809. extra: 635/365,
  20810. bottom: 598/1233
  20811. }
  20812. },
  20813. maw: {
  20814. height: math.unit(6.6, "feet"),
  20815. name: "Maw",
  20816. image: {
  20817. source: "./media/characters/goldeneye/maw.svg"
  20818. }
  20819. },
  20820. headFront: {
  20821. height: math.unit(8, "feet"),
  20822. name: "Head (Front)",
  20823. image: {
  20824. source: "./media/characters/goldeneye/head-front.svg"
  20825. }
  20826. },
  20827. headSide: {
  20828. height: math.unit(6, "feet"),
  20829. name: "Head (Side)",
  20830. image: {
  20831. source: "./media/characters/goldeneye/head-side.svg"
  20832. }
  20833. },
  20834. headBack: {
  20835. height: math.unit(8, "feet"),
  20836. name: "Head (Back)",
  20837. image: {
  20838. source: "./media/characters/goldeneye/head-back.svg"
  20839. }
  20840. },
  20841. paw: {
  20842. height: math.unit(3.4, "feet"),
  20843. name: "Paw",
  20844. image: {
  20845. source: "./media/characters/goldeneye/paw.svg"
  20846. }
  20847. },
  20848. toering: {
  20849. height: math.unit(0.45, "feet"),
  20850. name: "Toering",
  20851. image: {
  20852. source: "./media/characters/goldeneye/toering.svg"
  20853. }
  20854. },
  20855. eyes: {
  20856. height: math.unit(0.5, "feet"),
  20857. name: "Eyes",
  20858. image: {
  20859. source: "./media/characters/goldeneye/eyes.svg"
  20860. }
  20861. },
  20862. },
  20863. [
  20864. {
  20865. name: "Normal",
  20866. height: math.unit(13 + 1 / 12, "feet"),
  20867. default: true
  20868. },
  20869. ]
  20870. ))
  20871. characterMakers.push(() => makeCharacter(
  20872. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20873. {
  20874. front: {
  20875. height: math.unit(6 + 1 / 12, "feet"),
  20876. weight: math.unit(210, "lb"),
  20877. name: "Front",
  20878. image: {
  20879. source: "./media/characters/leonardo-lycheborne/front.svg",
  20880. extra: 776/723,
  20881. bottom: 34/810
  20882. }
  20883. },
  20884. side: {
  20885. height: math.unit(6 + 1 / 12, "feet"),
  20886. weight: math.unit(210, "lb"),
  20887. name: "Side",
  20888. image: {
  20889. source: "./media/characters/leonardo-lycheborne/side.svg",
  20890. extra: 780/728,
  20891. bottom: 12/792
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(6 + 1 / 12, "feet"),
  20896. weight: math.unit(210, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/leonardo-lycheborne/back.svg",
  20900. extra: 775/721,
  20901. bottom: 17/792
  20902. }
  20903. },
  20904. hand: {
  20905. height: math.unit(1.08, "feet"),
  20906. name: "Hand",
  20907. image: {
  20908. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20909. }
  20910. },
  20911. foot: {
  20912. height: math.unit(1.32, "feet"),
  20913. name: "Foot",
  20914. image: {
  20915. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20916. }
  20917. },
  20918. maw: {
  20919. height: math.unit(1, "feet"),
  20920. name: "Maw",
  20921. image: {
  20922. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20923. }
  20924. },
  20925. were: {
  20926. height: math.unit(20, "feet"),
  20927. weight: math.unit(7800, "lb"),
  20928. name: "Were",
  20929. image: {
  20930. source: "./media/characters/leonardo-lycheborne/were.svg",
  20931. extra: 1224/1165,
  20932. bottom: 72/1296
  20933. }
  20934. },
  20935. feral: {
  20936. height: math.unit(7.5, "feet"),
  20937. weight: math.unit(600, "lb"),
  20938. name: "Feral",
  20939. image: {
  20940. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20941. extra: 797/702,
  20942. bottom: 139/936
  20943. }
  20944. },
  20945. taur: {
  20946. height: math.unit(11, "feet"),
  20947. weight: math.unit(3300, "lb"),
  20948. name: "Taur",
  20949. image: {
  20950. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20951. extra: 1271/1197,
  20952. bottom: 47/1318
  20953. }
  20954. },
  20955. barghest: {
  20956. height: math.unit(11, "feet"),
  20957. weight: math.unit(1300, "lb"),
  20958. name: "Barghest",
  20959. image: {
  20960. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20961. extra: 1291/1204,
  20962. bottom: 37/1328
  20963. }
  20964. },
  20965. dick: {
  20966. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20967. name: "Dick",
  20968. image: {
  20969. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20970. }
  20971. },
  20972. dickWere: {
  20973. height: math.unit((20) / 3.8, "feet"),
  20974. name: "Dick (Were)",
  20975. image: {
  20976. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(6 + 1 / 12, "feet"),
  20984. default: true
  20985. },
  20986. ]
  20987. ))
  20988. characterMakers.push(() => makeCharacter(
  20989. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20990. {
  20991. front: {
  20992. height: math.unit(10, "feet"),
  20993. weight: math.unit(350, "lb"),
  20994. name: "Front",
  20995. image: {
  20996. source: "./media/characters/jet/front.svg",
  20997. extra: 2050 / 1980,
  20998. bottom: 0.013
  20999. }
  21000. },
  21001. back: {
  21002. height: math.unit(10, "feet"),
  21003. weight: math.unit(350, "lb"),
  21004. name: "Back",
  21005. image: {
  21006. source: "./media/characters/jet/back.svg",
  21007. extra: 2050 / 1980,
  21008. bottom: 0.013
  21009. }
  21010. },
  21011. },
  21012. [
  21013. {
  21014. name: "Micro",
  21015. height: math.unit(6, "inches")
  21016. },
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(10, "feet"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Macro",
  21024. height: math.unit(100, "feet")
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(15, "feet"),
  21033. weight: math.unit(2800, "lb"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/tanarath/front.svg",
  21037. extra: 2392 / 2220,
  21038. bottom: 0.03
  21039. }
  21040. },
  21041. back: {
  21042. height: math.unit(15, "feet"),
  21043. weight: math.unit(2800, "lb"),
  21044. name: "Back",
  21045. image: {
  21046. source: "./media/characters/tanarath/back.svg",
  21047. extra: 2392 / 2220,
  21048. bottom: 0.03
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Normal",
  21055. height: math.unit(15, "feet"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(7 + 1 / 12, "feet"),
  21065. weight: math.unit(175, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/patty-cattybatty/front.svg",
  21069. extra: 908 / 874,
  21070. bottom: 0.025
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Micro",
  21077. height: math.unit(1, "inch")
  21078. },
  21079. {
  21080. name: "Normal",
  21081. height: math.unit(7 + 1 / 12, "feet")
  21082. },
  21083. {
  21084. name: "Mini Macro",
  21085. height: math.unit(155, "feet")
  21086. },
  21087. {
  21088. name: "Macro",
  21089. height: math.unit(1077, "feet")
  21090. },
  21091. {
  21092. name: "Mega Macro",
  21093. height: math.unit(47650, "feet"),
  21094. default: true
  21095. },
  21096. {
  21097. name: "Giga Macro",
  21098. height: math.unit(440, "miles")
  21099. },
  21100. {
  21101. name: "Tera Macro",
  21102. height: math.unit(8700, "miles")
  21103. },
  21104. {
  21105. name: "Planetary Macro",
  21106. height: math.unit(32700, "miles")
  21107. },
  21108. {
  21109. name: "Solar Macro",
  21110. height: math.unit(550000, "miles")
  21111. },
  21112. {
  21113. name: "Celestial Macro",
  21114. height: math.unit(2.5, "AU")
  21115. },
  21116. ]
  21117. ))
  21118. characterMakers.push(() => makeCharacter(
  21119. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21120. {
  21121. front: {
  21122. height: math.unit(4 + 5 / 12, "feet"),
  21123. weight: math.unit(90, "lb"),
  21124. name: "Front",
  21125. image: {
  21126. source: "./media/characters/cappu/front.svg",
  21127. extra: 1247 / 1152,
  21128. bottom: 0.012
  21129. }
  21130. },
  21131. },
  21132. [
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(4 + 5 / 12, "feet"),
  21136. default: true
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21142. {
  21143. frontDressed: {
  21144. height: math.unit(70, "cm"),
  21145. weight: math.unit(6, "kg"),
  21146. name: "Front (Dressed)",
  21147. image: {
  21148. source: "./media/characters/sebi/front-dressed.svg",
  21149. extra: 713.5 / 686.5,
  21150. bottom: 0.003
  21151. }
  21152. },
  21153. front: {
  21154. height: math.unit(70, "cm"),
  21155. weight: math.unit(5, "kg"),
  21156. name: "Front",
  21157. image: {
  21158. source: "./media/characters/sebi/front.svg",
  21159. extra: 713.5 / 686.5,
  21160. bottom: 0.003
  21161. }
  21162. }
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(70, "cm"),
  21168. default: true
  21169. },
  21170. {
  21171. name: "Macro",
  21172. height: math.unit(8, "meters")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(6, "feet"),
  21181. weight: math.unit(150, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/typhek/front.svg",
  21185. extra: 1948 / 1929,
  21186. bottom: 0.025
  21187. }
  21188. },
  21189. side: {
  21190. height: math.unit(6, "feet"),
  21191. weight: math.unit(150, "lb"),
  21192. name: "Side",
  21193. image: {
  21194. source: "./media/characters/typhek/side.svg",
  21195. extra: 2034 / 2010,
  21196. bottom: 0.003
  21197. }
  21198. },
  21199. back: {
  21200. height: math.unit(6, "feet"),
  21201. weight: math.unit(150, "lb"),
  21202. name: "Back",
  21203. image: {
  21204. source: "./media/characters/typhek/back.svg",
  21205. extra: 2005 / 1978,
  21206. bottom: 0.004
  21207. }
  21208. },
  21209. palm: {
  21210. height: math.unit(1.2, "feet"),
  21211. name: "Palm",
  21212. image: {
  21213. source: "./media/characters/typhek/palm.svg"
  21214. }
  21215. },
  21216. fist: {
  21217. height: math.unit(1.1, "feet"),
  21218. name: "Fist",
  21219. image: {
  21220. source: "./media/characters/typhek/fist.svg"
  21221. }
  21222. },
  21223. foot: {
  21224. height: math.unit(1.57, "feet"),
  21225. name: "Foot",
  21226. image: {
  21227. source: "./media/characters/typhek/foot.svg"
  21228. }
  21229. },
  21230. sole: {
  21231. height: math.unit(2.05, "feet"),
  21232. name: "Sole",
  21233. image: {
  21234. source: "./media/characters/typhek/sole.svg"
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Macro",
  21241. height: math.unit(40, "stories"),
  21242. default: true
  21243. },
  21244. {
  21245. name: "Megamacro",
  21246. height: math.unit(1, "mile")
  21247. },
  21248. {
  21249. name: "Gigamacro",
  21250. height: math.unit(4000, "solarradii")
  21251. },
  21252. {
  21253. name: "Universal",
  21254. height: math.unit(1.1, "universes")
  21255. }
  21256. ]
  21257. ))
  21258. characterMakers.push(() => makeCharacter(
  21259. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21260. {
  21261. side: {
  21262. height: math.unit(5 + 7 / 12, "feet"),
  21263. weight: math.unit(150, "lb"),
  21264. name: "Side",
  21265. image: {
  21266. source: "./media/characters/kassy/side.svg",
  21267. extra: 1280 / 1225,
  21268. bottom: 0.002
  21269. }
  21270. },
  21271. front: {
  21272. height: math.unit(5 + 7 / 12, "feet"),
  21273. weight: math.unit(150, "lb"),
  21274. name: "Front",
  21275. image: {
  21276. source: "./media/characters/kassy/front.svg",
  21277. extra: 1280 / 1225,
  21278. bottom: 0.025
  21279. }
  21280. },
  21281. back: {
  21282. height: math.unit(5 + 7 / 12, "feet"),
  21283. weight: math.unit(150, "lb"),
  21284. name: "Back",
  21285. image: {
  21286. source: "./media/characters/kassy/back.svg",
  21287. extra: 1280 / 1225,
  21288. bottom: 0.002
  21289. }
  21290. },
  21291. foot: {
  21292. height: math.unit(1.266, "feet"),
  21293. name: "Foot",
  21294. image: {
  21295. source: "./media/characters/kassy/foot.svg"
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(5 + 7 / 12, "feet")
  21303. },
  21304. {
  21305. name: "Macro",
  21306. height: math.unit(137, "feet"),
  21307. default: true
  21308. },
  21309. {
  21310. name: "Megamacro",
  21311. height: math.unit(1, "mile")
  21312. },
  21313. ]
  21314. ))
  21315. characterMakers.push(() => makeCharacter(
  21316. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21317. {
  21318. front: {
  21319. height: math.unit(6 + 1 / 12, "feet"),
  21320. weight: math.unit(200, "lb"),
  21321. name: "Front",
  21322. image: {
  21323. source: "./media/characters/neil/front.svg",
  21324. extra: 1326 / 1250,
  21325. bottom: 0.023
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(6 + 1 / 12, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(200, "feet")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21343. {
  21344. front: {
  21345. height: math.unit(5 + 9 / 12, "feet"),
  21346. weight: math.unit(190, "lb"),
  21347. name: "Front",
  21348. image: {
  21349. source: "./media/characters/atticus/front.svg",
  21350. extra: 2934 / 2785,
  21351. bottom: 0.025
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(5 + 9 / 12, "feet"),
  21359. default: true
  21360. },
  21361. {
  21362. name: "Macro",
  21363. height: math.unit(180, "feet")
  21364. },
  21365. ]
  21366. ))
  21367. characterMakers.push(() => makeCharacter(
  21368. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21369. {
  21370. side: {
  21371. height: math.unit(9, "feet"),
  21372. weight: math.unit(650, "lb"),
  21373. name: "Side",
  21374. image: {
  21375. source: "./media/characters/milo/side.svg",
  21376. extra: 2644 / 2310,
  21377. bottom: 0.032
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(9, "feet"),
  21385. default: true
  21386. },
  21387. {
  21388. name: "Macro",
  21389. height: math.unit(300, "feet")
  21390. },
  21391. ]
  21392. ))
  21393. characterMakers.push(() => makeCharacter(
  21394. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21395. {
  21396. side: {
  21397. height: math.unit(8, "meters"),
  21398. weight: math.unit(90000, "kg"),
  21399. name: "Side",
  21400. image: {
  21401. source: "./media/characters/ijzer/side.svg",
  21402. extra: 2756 / 1600,
  21403. bottom: 0.01
  21404. }
  21405. },
  21406. },
  21407. [
  21408. {
  21409. name: "Small",
  21410. height: math.unit(3, "meters")
  21411. },
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(8, "meters"),
  21415. default: true
  21416. },
  21417. {
  21418. name: "Normal+",
  21419. height: math.unit(10, "meters")
  21420. },
  21421. {
  21422. name: "Bigger",
  21423. height: math.unit(24, "meters")
  21424. },
  21425. {
  21426. name: "Huge",
  21427. height: math.unit(80, "meters")
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21433. {
  21434. front: {
  21435. height: math.unit(6 + 2 / 12, "feet"),
  21436. weight: math.unit(153, "lb"),
  21437. name: "Front",
  21438. image: {
  21439. source: "./media/characters/luca-cervicum/front.svg",
  21440. extra: 370 / 327,
  21441. bottom: 0.015
  21442. }
  21443. },
  21444. back: {
  21445. height: math.unit(6 + 2 / 12, "feet"),
  21446. weight: math.unit(153, "lb"),
  21447. name: "Back",
  21448. image: {
  21449. source: "./media/characters/luca-cervicum/back.svg",
  21450. extra: 367 / 333,
  21451. bottom: 0.005
  21452. }
  21453. },
  21454. frontGear: {
  21455. height: math.unit(6 + 2 / 12, "feet"),
  21456. weight: math.unit(173, "lb"),
  21457. name: "Front (Gear)",
  21458. image: {
  21459. source: "./media/characters/luca-cervicum/front-gear.svg",
  21460. extra: 377 / 333,
  21461. bottom: 0.006
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(6 + 2 / 12, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21475. {
  21476. front: {
  21477. height: math.unit(6 + 1 / 12, "feet"),
  21478. weight: math.unit(304, "lb"),
  21479. name: "Front",
  21480. image: {
  21481. source: "./media/characters/oliver/front.svg",
  21482. extra: 157 / 143,
  21483. bottom: 0.08
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6 + 1 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21497. {
  21498. front: {
  21499. height: math.unit(5 + 7 / 12, "feet"),
  21500. weight: math.unit(140, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/shane/front.svg",
  21504. extra: 304 / 289,
  21505. bottom: 0.005
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(5 + 7 / 12, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(5 + 9 / 12, "feet"),
  21522. weight: math.unit(178, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/shin/front.svg",
  21526. extra: 159 / 151,
  21527. bottom: 0.015
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Normal",
  21534. height: math.unit(5 + 9 / 12, "feet"),
  21535. default: true
  21536. },
  21537. ]
  21538. ))
  21539. characterMakers.push(() => makeCharacter(
  21540. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21541. {
  21542. front: {
  21543. height: math.unit(5 + 10 / 12, "feet"),
  21544. weight: math.unit(168, "lb"),
  21545. name: "Front",
  21546. image: {
  21547. source: "./media/characters/xerxes/front.svg",
  21548. extra: 282 / 260,
  21549. bottom: 0.045
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(5 + 10 / 12, "feet"),
  21557. default: true
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(6 + 7 / 12, "feet"),
  21566. weight: math.unit(208, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/chaska/front.svg",
  21570. extra: 332 / 319,
  21571. bottom: 0.015
  21572. }
  21573. },
  21574. },
  21575. [
  21576. {
  21577. name: "Normal",
  21578. height: math.unit(6 + 7 / 12, "feet"),
  21579. default: true
  21580. },
  21581. ]
  21582. ))
  21583. characterMakers.push(() => makeCharacter(
  21584. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21585. {
  21586. front: {
  21587. height: math.unit(5 + 8 / 12, "feet"),
  21588. weight: math.unit(208, "lb"),
  21589. name: "Front",
  21590. image: {
  21591. source: "./media/characters/enuk/front.svg",
  21592. extra: 437 / 406,
  21593. bottom: 0.02
  21594. }
  21595. },
  21596. },
  21597. [
  21598. {
  21599. name: "Normal",
  21600. height: math.unit(5 + 8 / 12, "feet"),
  21601. default: true
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21607. {
  21608. front: {
  21609. height: math.unit(5 + 10 / 12, "feet"),
  21610. weight: math.unit(252, "lb"),
  21611. name: "Front",
  21612. image: {
  21613. source: "./media/characters/bruun/front.svg",
  21614. extra: 197 / 187,
  21615. bottom: 0.012
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Normal",
  21622. height: math.unit(5 + 10 / 12, "feet"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(6 + 10 / 12, "feet"),
  21632. weight: math.unit(255, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/alexeev/front.svg",
  21636. extra: 213 / 200,
  21637. bottom: 0.05
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Normal",
  21644. height: math.unit(6 + 10 / 12, "feet"),
  21645. default: true
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(2 + 8 / 12, "feet"),
  21654. weight: math.unit(22, "lb"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/evelyn/front.svg",
  21658. extra: 208 / 180
  21659. }
  21660. },
  21661. },
  21662. [
  21663. {
  21664. name: "Normal",
  21665. height: math.unit(2 + 8 / 12, "feet"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(5 + 9 / 12, "feet"),
  21675. weight: math.unit(139, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/inca/front.svg",
  21679. extra: 294 / 291,
  21680. bottom: 0.03
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Normal",
  21687. height: math.unit(5 + 9 / 12, "feet"),
  21688. default: true
  21689. },
  21690. ]
  21691. ))
  21692. characterMakers.push(() => makeCharacter(
  21693. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21694. {
  21695. front: {
  21696. height: math.unit(6 + 3 / 12, "feet"),
  21697. weight: math.unit(185, "lb"),
  21698. name: "Front",
  21699. image: {
  21700. source: "./media/characters/mera/front.svg",
  21701. extra: 291 / 277,
  21702. bottom: 0.03
  21703. }
  21704. },
  21705. },
  21706. [
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(6 + 3 / 12, "feet"),
  21710. default: true
  21711. },
  21712. ]
  21713. ))
  21714. characterMakers.push(() => makeCharacter(
  21715. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21716. {
  21717. front: {
  21718. height: math.unit(6 + 7 / 12, "feet"),
  21719. weight: math.unit(160, "lb"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/ceres/front.svg",
  21723. extra: 1023 / 950,
  21724. bottom: 0.027
  21725. }
  21726. },
  21727. back: {
  21728. height: math.unit(6 + 7 / 12, "feet"),
  21729. weight: math.unit(160, "lb"),
  21730. name: "Back",
  21731. image: {
  21732. source: "./media/characters/ceres/back.svg",
  21733. extra: 1023 / 950
  21734. }
  21735. },
  21736. },
  21737. [
  21738. {
  21739. name: "Normal",
  21740. height: math.unit(6 + 7 / 12, "feet"),
  21741. default: true
  21742. },
  21743. ]
  21744. ))
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(5 + 10 / 12, "feet"),
  21750. weight: math.unit(150, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/kris/front.svg",
  21754. extra: 885 / 803,
  21755. bottom: 0.03
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(5 + 10 / 12, "feet"),
  21763. default: true
  21764. },
  21765. ]
  21766. ))
  21767. characterMakers.push(() => makeCharacter(
  21768. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21769. {
  21770. front: {
  21771. height: math.unit(7, "feet"),
  21772. weight: math.unit(120, "kg"),
  21773. name: "Front",
  21774. image: {
  21775. source: "./media/characters/taluthus/front.svg",
  21776. extra: 903 / 833,
  21777. bottom: 0.015
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(7, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(300, "feet")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21795. {
  21796. front: {
  21797. height: math.unit(5 + 9 / 12, "feet"),
  21798. weight: math.unit(145, "lb"),
  21799. name: "Front",
  21800. image: {
  21801. source: "./media/characters/dawn/front.svg",
  21802. extra: 2094 / 2016,
  21803. bottom: 0.025
  21804. }
  21805. },
  21806. back: {
  21807. height: math.unit(5 + 9 / 12, "feet"),
  21808. weight: math.unit(160, "lb"),
  21809. name: "Back",
  21810. image: {
  21811. source: "./media/characters/dawn/back.svg",
  21812. extra: 2112 / 2080,
  21813. bottom: 0.005
  21814. }
  21815. },
  21816. },
  21817. [
  21818. {
  21819. name: "Normal",
  21820. height: math.unit(6 + 7 / 12, "feet"),
  21821. default: true
  21822. },
  21823. ]
  21824. ))
  21825. characterMakers.push(() => makeCharacter(
  21826. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21827. {
  21828. anthro: {
  21829. height: math.unit(8 + 3 / 12, "feet"),
  21830. weight: math.unit(450, "lb"),
  21831. name: "Anthro",
  21832. image: {
  21833. source: "./media/characters/arador/anthro.svg",
  21834. extra: 1835 / 1718,
  21835. bottom: 0.025
  21836. }
  21837. },
  21838. feral: {
  21839. height: math.unit(4, "feet"),
  21840. weight: math.unit(200, "lb"),
  21841. name: "Feral",
  21842. image: {
  21843. source: "./media/characters/arador/feral.svg",
  21844. extra: 1683 / 1514,
  21845. bottom: 0.07
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(8 + 3 / 12, "feet")
  21853. },
  21854. {
  21855. name: "Macro",
  21856. height: math.unit(82.5, "feet"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(5 + 10 / 12, "feet"),
  21866. weight: math.unit(125, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/dharsi/front.svg",
  21870. extra: 716 / 630,
  21871. bottom: 0.035
  21872. }
  21873. },
  21874. },
  21875. [
  21876. {
  21877. name: "Nano",
  21878. height: math.unit(100, "nm")
  21879. },
  21880. {
  21881. name: "Micro",
  21882. height: math.unit(2, "inches")
  21883. },
  21884. {
  21885. name: "Normal",
  21886. height: math.unit(5 + 10 / 12, "feet"),
  21887. default: true
  21888. },
  21889. {
  21890. name: "Macro",
  21891. height: math.unit(1000, "feet")
  21892. },
  21893. {
  21894. name: "Megamacro",
  21895. height: math.unit(10, "miles")
  21896. },
  21897. {
  21898. name: "Gigamacro",
  21899. height: math.unit(3000, "miles")
  21900. },
  21901. {
  21902. name: "Teramacro",
  21903. height: math.unit(500000, "miles")
  21904. },
  21905. {
  21906. name: "Teramacro+",
  21907. height: math.unit(30, "galaxies")
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21913. {
  21914. front: {
  21915. height: math.unit(6, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Front",
  21918. image: {
  21919. source: "./media/characters/deathy/front.svg",
  21920. extra: 1552 / 1463,
  21921. bottom: 0.025
  21922. }
  21923. },
  21924. side: {
  21925. height: math.unit(6, "feet"),
  21926. weight: math.unit(150, "lb"),
  21927. name: "Side",
  21928. image: {
  21929. source: "./media/characters/deathy/side.svg",
  21930. extra: 1604 / 1455,
  21931. bottom: 0.025
  21932. }
  21933. },
  21934. back: {
  21935. height: math.unit(6, "feet"),
  21936. weight: math.unit(150, "lb"),
  21937. name: "Back",
  21938. image: {
  21939. source: "./media/characters/deathy/back.svg",
  21940. extra: 1580 / 1463,
  21941. bottom: 0.005
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Micro",
  21948. height: math.unit(5, "millimeters")
  21949. },
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(6 + 5 / 12, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21959. {
  21960. front: {
  21961. height: math.unit(16, "feet"),
  21962. weight: math.unit(4000, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/juniper/front.svg",
  21966. bottom: 0.04
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Normal",
  21973. height: math.unit(16, "feet"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(6, "feet"),
  21983. weight: math.unit(150, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/hipster/front.svg",
  21987. extra: 1312 / 1209,
  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/hipster/back.svg",
  21997. extra: 1281 / 1196,
  21998. bottom: 0.01
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Micro",
  22005. height: math.unit(1, "mm")
  22006. },
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(4, "inches"),
  22010. default: true
  22011. },
  22012. {
  22013. name: "Macro",
  22014. height: math.unit(500, "feet")
  22015. },
  22016. {
  22017. name: "Megamacro",
  22018. height: math.unit(1000, "miles")
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(6, "feet"),
  22027. weight: math.unit(150, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/tendirmuldr/front.svg",
  22031. extra: 1878 / 1772,
  22032. bottom: 0.015
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Megamacro",
  22039. height: math.unit(1500, "miles"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22046. {
  22047. front: {
  22048. height: math.unit(14, "feet"),
  22049. weight: math.unit(12000, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/mort/front.svg",
  22053. extra: 365 / 318,
  22054. bottom: 0.01
  22055. }
  22056. },
  22057. side: {
  22058. height: math.unit(14, "feet"),
  22059. weight: math.unit(12000, "lb"),
  22060. name: "Side",
  22061. image: {
  22062. source: "./media/characters/mort/side.svg",
  22063. extra: 365 / 318,
  22064. bottom: 0.052
  22065. },
  22066. default: true
  22067. },
  22068. back: {
  22069. height: math.unit(14, "feet"),
  22070. weight: math.unit(12000, "lb"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/mort/back.svg",
  22074. extra: 371 / 332,
  22075. bottom: 0.18
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Normal",
  22082. height: math.unit(14, "feet"),
  22083. default: true
  22084. },
  22085. ]
  22086. ))
  22087. characterMakers.push(() => makeCharacter(
  22088. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22089. {
  22090. front: {
  22091. height: math.unit(8, "feet"),
  22092. weight: math.unit(1, "ton"),
  22093. name: "Front",
  22094. image: {
  22095. source: "./media/characters/lycoa/front.svg",
  22096. extra: 1836/1728,
  22097. bottom: 81/1917
  22098. }
  22099. },
  22100. back: {
  22101. height: math.unit(8, "feet"),
  22102. weight: math.unit(1, "ton"),
  22103. name: "Back",
  22104. image: {
  22105. source: "./media/characters/lycoa/back.svg",
  22106. extra: 1785/1720,
  22107. bottom: 91/1876
  22108. }
  22109. },
  22110. head: {
  22111. height: math.unit(1.6243, "feet"),
  22112. name: "Head",
  22113. image: {
  22114. source: "./media/characters/lycoa/head.svg",
  22115. extra: 1011/782,
  22116. bottom: 0/1011
  22117. }
  22118. },
  22119. tailmaw: {
  22120. height: math.unit(1.9, "feet"),
  22121. name: "Tailmaw",
  22122. image: {
  22123. source: "./media/characters/lycoa/tailmaw.svg"
  22124. }
  22125. },
  22126. tentacles: {
  22127. height: math.unit(2.1, "feet"),
  22128. name: "Tentacles",
  22129. image: {
  22130. source: "./media/characters/lycoa/tentacles.svg"
  22131. }
  22132. },
  22133. dick: {
  22134. height: math.unit(1.73, "feet"),
  22135. name: "Dick",
  22136. image: {
  22137. source: "./media/characters/lycoa/dick.svg"
  22138. }
  22139. },
  22140. },
  22141. [
  22142. {
  22143. name: "Normal",
  22144. height: math.unit(8, "feet"),
  22145. default: true
  22146. },
  22147. {
  22148. name: "Macro",
  22149. height: math.unit(30, "feet")
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22155. {
  22156. front: {
  22157. height: math.unit(4 + 2 / 12, "feet"),
  22158. weight: math.unit(70, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/naldara/front.svg",
  22162. extra: 1664/1387,
  22163. bottom: 81/1745
  22164. },
  22165. form: "anthro",
  22166. default: true
  22167. },
  22168. naga: {
  22169. height: math.unit(20, "feet"),
  22170. weight: math.unit(15000, "kg"),
  22171. name: "Front",
  22172. image: {
  22173. source: "./media/characters/naldara/naga.svg",
  22174. extra: 1590/1396,
  22175. bottom: 285/1875
  22176. },
  22177. form: "naga",
  22178. default: true
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(4 + 2 / 12, "feet"),
  22185. form: "anthro",
  22186. default: true
  22187. },
  22188. {
  22189. name: "Normal",
  22190. height: math.unit(20, "feet"),
  22191. form: "naga",
  22192. default: true
  22193. },
  22194. ],
  22195. {
  22196. "anthro": {
  22197. name: "Anthro",
  22198. default: true
  22199. },
  22200. "naga": {
  22201. name: "Naga"
  22202. }
  22203. }
  22204. ))
  22205. characterMakers.push(() => makeCharacter(
  22206. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22207. {
  22208. front: {
  22209. height: math.unit(13 + 7 / 12, "feet"),
  22210. weight: math.unit(1500, "lb"),
  22211. name: "Front",
  22212. image: {
  22213. source: "./media/characters/briar/front.svg",
  22214. extra: 1223/1157,
  22215. bottom: 123/1346
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(13 + 7 / 12, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22229. {
  22230. side: {
  22231. height: math.unit(16, "feet"),
  22232. weight: math.unit(500, "lb"),
  22233. name: "Side",
  22234. image: {
  22235. source: "./media/characters/vanguard/side.svg",
  22236. extra: 1022/914,
  22237. bottom: 30/1052
  22238. }
  22239. },
  22240. sideAlt: {
  22241. height: math.unit(10, "feet"),
  22242. weight: math.unit(500, "lb"),
  22243. name: "Side (Alt)",
  22244. image: {
  22245. source: "./media/characters/vanguard/side-alt.svg",
  22246. extra: 502 / 425,
  22247. bottom: 0.087
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Normal",
  22254. height: math.unit(17.71, "feet"),
  22255. default: true
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(7.5, "feet"),
  22264. weight: math.unit(2, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/artemis/work-safe-front.svg",
  22268. extra: 1192 / 1075,
  22269. bottom: 0.07
  22270. },
  22271. form: "work-safe",
  22272. default: true
  22273. },
  22274. frontNsfw: {
  22275. height: math.unit(7.5, "feet"),
  22276. weight: math.unit(2, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/artemis/calibrating-front.svg",
  22280. extra: 1192 / 1075,
  22281. bottom: 0.07
  22282. },
  22283. form: "calibrating",
  22284. default: true
  22285. },
  22286. frontNsfwer: {
  22287. height: math.unit(7.5, "feet"),
  22288. weight: math.unit(2, "lb"),
  22289. name: "Front",
  22290. image: {
  22291. source: "./media/characters/artemis/oversize-load-front.svg",
  22292. extra: 1192 / 1075,
  22293. bottom: 0.07
  22294. },
  22295. form: "oversize-load",
  22296. default: true
  22297. },
  22298. side: {
  22299. height: math.unit(7.5, "feet"),
  22300. weight: math.unit(2, "lb"),
  22301. name: "Side",
  22302. image: {
  22303. source: "./media/characters/artemis/work-safe-side.svg",
  22304. extra: 1192 / 1075,
  22305. bottom: 0.07
  22306. },
  22307. form: "work-safe"
  22308. },
  22309. sideNsfw: {
  22310. height: math.unit(7.5, "feet"),
  22311. weight: math.unit(2, "lb"),
  22312. name: "Side",
  22313. image: {
  22314. source: "./media/characters/artemis/calibrating-side.svg",
  22315. extra: 1192 / 1075,
  22316. bottom: 0.07
  22317. },
  22318. form: "calibrating"
  22319. },
  22320. sideNsfwer: {
  22321. height: math.unit(7.5, "feet"),
  22322. weight: math.unit(2, "lb"),
  22323. name: "Side",
  22324. image: {
  22325. source: "./media/characters/artemis/oversize-load-side.svg",
  22326. extra: 1192 / 1075,
  22327. bottom: 0.07
  22328. },
  22329. form: "oversize-load"
  22330. },
  22331. maw: {
  22332. height: math.unit(1.1, "feet"),
  22333. name: "Maw",
  22334. image: {
  22335. source: "./media/characters/artemis/maw.svg"
  22336. },
  22337. form: "work-safe"
  22338. },
  22339. stomach: {
  22340. height: math.unit(0.95, "feet"),
  22341. name: "Stomach",
  22342. image: {
  22343. source: "./media/characters/artemis/stomach.svg"
  22344. },
  22345. form: "work-safe"
  22346. },
  22347. dickCanine: {
  22348. height: math.unit(1, "feet"),
  22349. name: "Dick (Canine)",
  22350. image: {
  22351. source: "./media/characters/artemis/dick-canine.svg"
  22352. },
  22353. form: "calibrating"
  22354. },
  22355. dickEquine: {
  22356. height: math.unit(0.85, "feet"),
  22357. name: "Dick (Equine)",
  22358. image: {
  22359. source: "./media/characters/artemis/dick-equine.svg"
  22360. },
  22361. form: "calibrating"
  22362. },
  22363. dickExotic: {
  22364. height: math.unit(0.85, "feet"),
  22365. name: "Dick (Exotic)",
  22366. image: {
  22367. source: "./media/characters/artemis/dick-exotic.svg"
  22368. },
  22369. form: "calibrating"
  22370. },
  22371. dickCanineBigger: {
  22372. height: math.unit(1 * 1.33, "feet"),
  22373. name: "Dick (Canine)",
  22374. image: {
  22375. source: "./media/characters/artemis/dick-canine.svg"
  22376. },
  22377. form: "oversize-load"
  22378. },
  22379. dickEquineBigger: {
  22380. height: math.unit(0.85 * 1.33, "feet"),
  22381. name: "Dick (Equine)",
  22382. image: {
  22383. source: "./media/characters/artemis/dick-equine.svg"
  22384. },
  22385. form: "oversize-load"
  22386. },
  22387. dickExoticBigger: {
  22388. height: math.unit(0.85 * 1.33, "feet"),
  22389. name: "Dick (Exotic)",
  22390. image: {
  22391. source: "./media/characters/artemis/dick-exotic.svg"
  22392. },
  22393. form: "oversize-load"
  22394. },
  22395. },
  22396. [
  22397. {
  22398. name: "Normal",
  22399. height: math.unit(7.5, "feet"),
  22400. form: "work-safe",
  22401. default: true
  22402. },
  22403. {
  22404. name: "Normal",
  22405. height: math.unit(7.5, "feet"),
  22406. form: "calibrating",
  22407. default: true
  22408. },
  22409. {
  22410. name: "Normal",
  22411. height: math.unit(7.5, "feet"),
  22412. form: "oversize-load",
  22413. default: true
  22414. },
  22415. {
  22416. name: "Enlarged",
  22417. height: math.unit(12, "feet"),
  22418. form: "work-safe",
  22419. },
  22420. {
  22421. name: "Enlarged",
  22422. height: math.unit(12, "feet"),
  22423. form: "calibrating",
  22424. },
  22425. {
  22426. name: "Enlarged",
  22427. height: math.unit(12, "feet"),
  22428. form: "oversize-load",
  22429. },
  22430. ],
  22431. {
  22432. "work-safe": {
  22433. name: "Work-Safe",
  22434. default: true
  22435. },
  22436. "calibrating": {
  22437. name: "Calibrating"
  22438. },
  22439. "oversize-load": {
  22440. name: "Oversize Load"
  22441. }
  22442. }
  22443. ))
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(5 + 3 / 12, "feet"),
  22449. weight: math.unit(160, "lb"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/kira/front.svg",
  22453. extra: 906 / 786,
  22454. bottom: 0.01
  22455. }
  22456. },
  22457. back: {
  22458. height: math.unit(5 + 3 / 12, "feet"),
  22459. weight: math.unit(160, "lb"),
  22460. name: "Back",
  22461. image: {
  22462. source: "./media/characters/kira/back.svg",
  22463. extra: 882 / 757,
  22464. bottom: 0.005
  22465. }
  22466. },
  22467. frontDressed: {
  22468. height: math.unit(5 + 3 / 12, "feet"),
  22469. weight: math.unit(160, "lb"),
  22470. name: "Front (Dressed)",
  22471. image: {
  22472. source: "./media/characters/kira/front-dressed.svg",
  22473. extra: 906 / 786,
  22474. bottom: 0.01
  22475. }
  22476. },
  22477. beans: {
  22478. height: math.unit(0.92, "feet"),
  22479. name: "Beans",
  22480. image: {
  22481. source: "./media/characters/kira/beans.svg"
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Normal",
  22488. height: math.unit(5 + 3 / 12, "feet"),
  22489. default: true
  22490. },
  22491. ]
  22492. ))
  22493. characterMakers.push(() => makeCharacter(
  22494. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22495. {
  22496. front: {
  22497. height: math.unit(5 + 4 / 12, "feet"),
  22498. weight: math.unit(145, "lb"),
  22499. name: "Front",
  22500. image: {
  22501. source: "./media/characters/scramble/front.svg",
  22502. extra: 763 / 727,
  22503. bottom: 0.05
  22504. }
  22505. },
  22506. back: {
  22507. height: math.unit(5 + 4 / 12, "feet"),
  22508. weight: math.unit(145, "lb"),
  22509. name: "Back",
  22510. image: {
  22511. source: "./media/characters/scramble/back.svg",
  22512. extra: 826 / 737,
  22513. bottom: 0.002
  22514. }
  22515. },
  22516. },
  22517. [
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(5 + 4 / 12, "feet"),
  22521. default: true
  22522. },
  22523. ]
  22524. ))
  22525. characterMakers.push(() => makeCharacter(
  22526. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22527. {
  22528. side: {
  22529. height: math.unit(6 + 2 / 12, "feet"),
  22530. weight: math.unit(190, "lb"),
  22531. name: "Side",
  22532. image: {
  22533. source: "./media/characters/biscuit/side.svg",
  22534. extra: 858 / 791,
  22535. bottom: 0.044
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Normal",
  22542. height: math.unit(6 + 2 / 12, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(5 + 2 / 12, "feet"),
  22552. weight: math.unit(120, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/poffin/front.svg",
  22556. extra: 786 / 680,
  22557. bottom: 0.005
  22558. }
  22559. },
  22560. },
  22561. [
  22562. {
  22563. name: "Normal",
  22564. height: math.unit(5 + 2 / 12, "feet"),
  22565. default: true
  22566. },
  22567. ]
  22568. ))
  22569. characterMakers.push(() => makeCharacter(
  22570. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22571. {
  22572. front: {
  22573. height: math.unit(6 + 3 / 12, "feet"),
  22574. weight: math.unit(519, "lb"),
  22575. name: "Front",
  22576. image: {
  22577. source: "./media/characters/dhari/front.svg",
  22578. extra: 1048 / 946,
  22579. bottom: 0.015
  22580. }
  22581. },
  22582. back: {
  22583. height: math.unit(6 + 3 / 12, "feet"),
  22584. weight: math.unit(519, "lb"),
  22585. name: "Back",
  22586. image: {
  22587. source: "./media/characters/dhari/back.svg",
  22588. extra: 1048 / 931,
  22589. bottom: 0.005
  22590. }
  22591. },
  22592. frontDressed: {
  22593. height: math.unit(6 + 3 / 12, "feet"),
  22594. weight: math.unit(519, "lb"),
  22595. name: "Front (Dressed)",
  22596. image: {
  22597. source: "./media/characters/dhari/front-dressed.svg",
  22598. extra: 1713 / 1546,
  22599. bottom: 0.02
  22600. }
  22601. },
  22602. backDressed: {
  22603. height: math.unit(6 + 3 / 12, "feet"),
  22604. weight: math.unit(519, "lb"),
  22605. name: "Back (Dressed)",
  22606. image: {
  22607. source: "./media/characters/dhari/back-dressed.svg",
  22608. extra: 1699 / 1537,
  22609. bottom: 0.01
  22610. }
  22611. },
  22612. maw: {
  22613. height: math.unit(0.95, "feet"),
  22614. name: "Maw",
  22615. image: {
  22616. source: "./media/characters/dhari/maw.svg"
  22617. }
  22618. },
  22619. wereFront: {
  22620. height: math.unit(12 + 8 / 12, "feet"),
  22621. weight: math.unit(4000, "lb"),
  22622. name: "Front (Were)",
  22623. image: {
  22624. source: "./media/characters/dhari/were-front.svg",
  22625. extra: 1065 / 969,
  22626. bottom: 0.015
  22627. }
  22628. },
  22629. wereBack: {
  22630. height: math.unit(12 + 8 / 12, "feet"),
  22631. weight: math.unit(4000, "lb"),
  22632. name: "Back (Were)",
  22633. image: {
  22634. source: "./media/characters/dhari/were-back.svg",
  22635. extra: 1065 / 969,
  22636. bottom: 0.012
  22637. }
  22638. },
  22639. wereMaw: {
  22640. height: math.unit(0.625, "meters"),
  22641. name: "Maw (Were)",
  22642. image: {
  22643. source: "./media/characters/dhari/were-maw.svg"
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Normal",
  22650. height: math.unit(6 + 3 / 12, "feet"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22657. {
  22658. anthro: {
  22659. height: math.unit(5 + 7 / 12, "feet"),
  22660. weight: math.unit(175, "lb"),
  22661. name: "Anthro",
  22662. image: {
  22663. source: "./media/characters/rena-dyne/anthro.svg",
  22664. extra: 1849 / 1785,
  22665. bottom: 0.005
  22666. }
  22667. },
  22668. taur: {
  22669. height: math.unit(15 + 6 / 12, "feet"),
  22670. weight: math.unit(8000, "lb"),
  22671. name: "Taur",
  22672. image: {
  22673. source: "./media/characters/rena-dyne/taur.svg",
  22674. extra: 2315 / 2234,
  22675. bottom: 0.033
  22676. }
  22677. },
  22678. },
  22679. [
  22680. {
  22681. name: "Normal",
  22682. height: math.unit(5 + 7 / 12, "feet"),
  22683. default: true
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(8, "feet"),
  22692. weight: math.unit(600, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/weremeep/front.svg",
  22696. extra: 970/849,
  22697. bottom: 7/977
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Normal",
  22704. height: math.unit(8, "feet"),
  22705. default: true
  22706. },
  22707. {
  22708. name: "Lorg",
  22709. height: math.unit(12, "feet")
  22710. },
  22711. {
  22712. name: "Oh Lawd She Comin'",
  22713. height: math.unit(20, "feet")
  22714. },
  22715. ]
  22716. ))
  22717. characterMakers.push(() => makeCharacter(
  22718. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22719. {
  22720. front: {
  22721. height: math.unit(4, "feet"),
  22722. weight: math.unit(90, "lb"),
  22723. name: "Front",
  22724. image: {
  22725. source: "./media/characters/reza/front.svg",
  22726. extra: 1183 / 1111,
  22727. bottom: 0.017
  22728. }
  22729. },
  22730. back: {
  22731. height: math.unit(4, "feet"),
  22732. weight: math.unit(90, "lb"),
  22733. name: "Back",
  22734. image: {
  22735. source: "./media/characters/reza/back.svg",
  22736. extra: 1183 / 1111,
  22737. bottom: 0.01
  22738. }
  22739. },
  22740. drake: {
  22741. height: math.unit(30, "feet"),
  22742. weight: math.unit(246960, "lb"),
  22743. name: "Drake",
  22744. image: {
  22745. source: "./media/characters/reza/drake.svg",
  22746. extra: 2350 / 2024,
  22747. bottom: 60.7 / 2403
  22748. }
  22749. },
  22750. },
  22751. [
  22752. {
  22753. name: "Normal",
  22754. height: math.unit(4, "feet"),
  22755. default: true
  22756. },
  22757. ]
  22758. ))
  22759. characterMakers.push(() => makeCharacter(
  22760. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22761. {
  22762. side: {
  22763. height: math.unit(15, "feet"),
  22764. weight: math.unit(14, "tons"),
  22765. name: "Side",
  22766. image: {
  22767. source: "./media/characters/athea/side.svg",
  22768. extra: 960 / 540,
  22769. bottom: 0.003
  22770. }
  22771. },
  22772. sitting: {
  22773. height: math.unit(6 * 2.85, "feet"),
  22774. weight: math.unit(14, "tons"),
  22775. name: "Sitting",
  22776. image: {
  22777. source: "./media/characters/athea/sitting.svg",
  22778. extra: 621 / 581,
  22779. bottom: 0.075
  22780. }
  22781. },
  22782. maw: {
  22783. height: math.unit(7.59498031496063, "feet"),
  22784. name: "Maw",
  22785. image: {
  22786. source: "./media/characters/athea/maw.svg"
  22787. }
  22788. },
  22789. },
  22790. [
  22791. {
  22792. name: "Lap Cat",
  22793. height: math.unit(2.5, "feet")
  22794. },
  22795. {
  22796. name: "Minimacro",
  22797. height: math.unit(15, "feet"),
  22798. default: true
  22799. },
  22800. {
  22801. name: "Macro",
  22802. height: math.unit(120, "feet")
  22803. },
  22804. {
  22805. name: "Macro+",
  22806. height: math.unit(640, "feet")
  22807. },
  22808. {
  22809. name: "Colossus",
  22810. height: math.unit(2.2, "miles")
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22816. {
  22817. front: {
  22818. height: math.unit(8 + 8 / 12, "feet"),
  22819. weight: math.unit(130, "kg"),
  22820. name: "Front",
  22821. image: {
  22822. source: "./media/characters/seroko/front.svg",
  22823. extra: 1385 / 1280,
  22824. bottom: 0.025
  22825. }
  22826. },
  22827. back: {
  22828. height: math.unit(8 + 8 / 12, "feet"),
  22829. weight: math.unit(130, "kg"),
  22830. name: "Back",
  22831. image: {
  22832. source: "./media/characters/seroko/back.svg",
  22833. extra: 1369 / 1238,
  22834. bottom: 0.018
  22835. }
  22836. },
  22837. frontDressed: {
  22838. height: math.unit(8 + 8 / 12, "feet"),
  22839. weight: math.unit(130, "kg"),
  22840. name: "Front (Dressed)",
  22841. image: {
  22842. source: "./media/characters/seroko/front-dressed.svg",
  22843. extra: 1366 / 1275,
  22844. bottom: 0.03
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(8 + 8 / 12, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22858. {
  22859. front: {
  22860. height: math.unit(5.5, "feet"),
  22861. weight: math.unit(160, "lb"),
  22862. name: "Front",
  22863. image: {
  22864. source: "./media/characters/quatzi/front.svg",
  22865. extra: 2346 / 2242,
  22866. bottom: 0.015
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(5.5, "feet"),
  22874. default: true
  22875. },
  22876. {
  22877. name: "Big",
  22878. height: math.unit(7.7, "feet")
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(5 + 11 / 12, "feet"),
  22887. weight: math.unit(180, "lb"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/sen/front.svg",
  22891. extra: 1321 / 1254,
  22892. bottom: 0.015
  22893. }
  22894. },
  22895. side: {
  22896. height: math.unit(5 + 11 / 12, "feet"),
  22897. weight: math.unit(180, "lb"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/sen/side.svg",
  22901. extra: 1321 / 1254,
  22902. bottom: 0.007
  22903. }
  22904. },
  22905. back: {
  22906. height: math.unit(5 + 11 / 12, "feet"),
  22907. weight: math.unit(180, "lb"),
  22908. name: "Back",
  22909. image: {
  22910. source: "./media/characters/sen/back.svg",
  22911. extra: 1321 / 1254
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Normal",
  22918. height: math.unit(5 + 11 / 12, "feet"),
  22919. default: true
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22925. {
  22926. front: {
  22927. height: math.unit(166.6, "cm"),
  22928. weight: math.unit(66.6, "kg"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/fruity/front.svg",
  22932. extra: 1510 / 1386,
  22933. bottom: 0.04
  22934. }
  22935. },
  22936. back: {
  22937. height: math.unit(166.6, "cm"),
  22938. weight: math.unit(66.6, "lb"),
  22939. name: "Back",
  22940. image: {
  22941. source: "./media/characters/fruity/back.svg",
  22942. extra: 1563 / 1435,
  22943. bottom: 0.005
  22944. }
  22945. },
  22946. },
  22947. [
  22948. {
  22949. name: "Normal",
  22950. height: math.unit(166.6, "cm"),
  22951. default: true
  22952. },
  22953. {
  22954. name: "Demonic",
  22955. height: math.unit(166.6, "feet")
  22956. },
  22957. ]
  22958. ))
  22959. characterMakers.push(() => makeCharacter(
  22960. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22961. {
  22962. side: {
  22963. height: math.unit(10, "feet"),
  22964. weight: math.unit(500, "lb"),
  22965. name: "Side",
  22966. image: {
  22967. source: "./media/characters/zost/side.svg",
  22968. extra: 2870/2533,
  22969. bottom: 252/3122
  22970. }
  22971. },
  22972. mawFront: {
  22973. height: math.unit(1.08, "meters"),
  22974. name: "Maw (Front)",
  22975. image: {
  22976. source: "./media/characters/zost/maw-front.svg"
  22977. }
  22978. },
  22979. mawSide: {
  22980. height: math.unit(2.66, "feet"),
  22981. name: "Maw (Side)",
  22982. image: {
  22983. source: "./media/characters/zost/maw-side.svg"
  22984. }
  22985. },
  22986. wingspan: {
  22987. height: math.unit(7.4, "feet"),
  22988. name: "Wingspan",
  22989. image: {
  22990. source: "./media/characters/zost/wingspan.svg"
  22991. }
  22992. },
  22993. },
  22994. [
  22995. {
  22996. name: "Normal",
  22997. height: math.unit(10, "feet"),
  22998. default: true
  22999. },
  23000. ]
  23001. ))
  23002. characterMakers.push(() => makeCharacter(
  23003. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23004. {
  23005. front: {
  23006. height: math.unit(5 + 4 / 12, "feet"),
  23007. weight: math.unit(120, "lb"),
  23008. name: "Front",
  23009. image: {
  23010. source: "./media/characters/luci/front.svg",
  23011. extra: 1985 / 1884,
  23012. bottom: 0.04
  23013. }
  23014. },
  23015. back: {
  23016. height: math.unit(5 + 4 / 12, "feet"),
  23017. weight: math.unit(120, "lb"),
  23018. name: "Back",
  23019. image: {
  23020. source: "./media/characters/luci/back.svg",
  23021. extra: 1892 / 1791,
  23022. bottom: 0.002
  23023. }
  23024. },
  23025. },
  23026. [
  23027. {
  23028. name: "Normal",
  23029. height: math.unit(5 + 4 / 12, "feet"),
  23030. default: true
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(1500, "feet"),
  23039. weight: math.unit(3.8e6, "tons"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/2th/front.svg",
  23043. extra: 3489 / 3350,
  23044. bottom: 0.1
  23045. }
  23046. },
  23047. foot: {
  23048. height: math.unit(461, "feet"),
  23049. name: "Foot",
  23050. image: {
  23051. source: "./media/characters/2th/foot.svg"
  23052. }
  23053. },
  23054. },
  23055. [
  23056. {
  23057. name: "\"Micro\"",
  23058. height: math.unit(15 + 7 / 12, "feet")
  23059. },
  23060. {
  23061. name: "Normal",
  23062. height: math.unit(1500, "feet"),
  23063. default: true
  23064. },
  23065. {
  23066. name: "Macro",
  23067. height: math.unit(5000, "feet")
  23068. },
  23069. {
  23070. name: "Megamacro",
  23071. height: math.unit(15, "miles")
  23072. },
  23073. {
  23074. name: "Gigamacro",
  23075. height: math.unit(4000, "miles")
  23076. },
  23077. {
  23078. name: "Galactic",
  23079. height: math.unit(50, "AU")
  23080. },
  23081. ]
  23082. ))
  23083. characterMakers.push(() => makeCharacter(
  23084. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23085. {
  23086. front: {
  23087. height: math.unit(5 + 6 / 12, "feet"),
  23088. weight: math.unit(220, "lb"),
  23089. name: "Front",
  23090. image: {
  23091. source: "./media/characters/amethyst/front.svg",
  23092. extra: 2078 / 2040,
  23093. bottom: 0.045
  23094. }
  23095. },
  23096. back: {
  23097. height: math.unit(5 + 6 / 12, "feet"),
  23098. weight: math.unit(220, "lb"),
  23099. name: "Back",
  23100. image: {
  23101. source: "./media/characters/amethyst/back.svg",
  23102. extra: 2021 / 1989,
  23103. bottom: 0.02
  23104. }
  23105. },
  23106. },
  23107. [
  23108. {
  23109. name: "Normal",
  23110. height: math.unit(5 + 6 / 12, "feet"),
  23111. default: true
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23117. {
  23118. front: {
  23119. height: math.unit(4 + 11 / 12, "feet"),
  23120. weight: math.unit(120, "lb"),
  23121. name: "Front",
  23122. image: {
  23123. source: "./media/characters/yumi-akiyama/front.svg",
  23124. extra: 1327 / 1235,
  23125. bottom: 0.02
  23126. }
  23127. },
  23128. back: {
  23129. height: math.unit(4 + 11 / 12, "feet"),
  23130. weight: math.unit(120, "lb"),
  23131. name: "Back",
  23132. image: {
  23133. source: "./media/characters/yumi-akiyama/back.svg",
  23134. extra: 1287 / 1245,
  23135. bottom: 0.002
  23136. }
  23137. },
  23138. },
  23139. [
  23140. {
  23141. name: "Galactic",
  23142. height: math.unit(50, "galaxies"),
  23143. default: true
  23144. },
  23145. {
  23146. name: "Universal",
  23147. height: math.unit(100, "universes")
  23148. },
  23149. ]
  23150. ))
  23151. characterMakers.push(() => makeCharacter(
  23152. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23153. {
  23154. front: {
  23155. height: math.unit(8, "feet"),
  23156. weight: math.unit(500, "lb"),
  23157. name: "Front",
  23158. image: {
  23159. source: "./media/characters/rifter-yrmori/front.svg",
  23160. extra: 1180 / 1125,
  23161. bottom: 0.02
  23162. }
  23163. },
  23164. back: {
  23165. height: math.unit(8, "feet"),
  23166. weight: math.unit(500, "lb"),
  23167. name: "Back",
  23168. image: {
  23169. source: "./media/characters/rifter-yrmori/back.svg",
  23170. extra: 1190 / 1145,
  23171. bottom: 0.001
  23172. }
  23173. },
  23174. wings: {
  23175. height: math.unit(7.75, "feet"),
  23176. weight: math.unit(500, "lb"),
  23177. name: "Wings",
  23178. image: {
  23179. source: "./media/characters/rifter-yrmori/wings.svg",
  23180. extra: 1357 / 1285
  23181. }
  23182. },
  23183. maw: {
  23184. height: math.unit(0.8, "feet"),
  23185. name: "Maw",
  23186. image: {
  23187. source: "./media/characters/rifter-yrmori/maw.svg"
  23188. }
  23189. },
  23190. mawfront: {
  23191. height: math.unit(1.45, "feet"),
  23192. name: "Maw (Front)",
  23193. image: {
  23194. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23195. }
  23196. },
  23197. },
  23198. [
  23199. {
  23200. name: "Normal",
  23201. height: math.unit(8, "feet"),
  23202. default: true
  23203. },
  23204. {
  23205. name: "Macro",
  23206. height: math.unit(42, "meters")
  23207. },
  23208. ]
  23209. ))
  23210. characterMakers.push(() => makeCharacter(
  23211. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23212. {
  23213. were: {
  23214. height: math.unit(25 + 6 / 12, "feet"),
  23215. weight: math.unit(10000, "lb"),
  23216. name: "Were",
  23217. image: {
  23218. source: "./media/characters/tahajin/were.svg",
  23219. extra: 801 / 770,
  23220. bottom: 0.042
  23221. }
  23222. },
  23223. aquatic: {
  23224. height: math.unit(6 + 4 / 12, "feet"),
  23225. weight: math.unit(160, "lb"),
  23226. name: "Aquatic",
  23227. image: {
  23228. source: "./media/characters/tahajin/aquatic.svg",
  23229. extra: 572 / 542,
  23230. bottom: 0.04
  23231. }
  23232. },
  23233. chow: {
  23234. height: math.unit(8 + 11 / 12, "feet"),
  23235. weight: math.unit(450, "lb"),
  23236. name: "Chow",
  23237. image: {
  23238. source: "./media/characters/tahajin/chow.svg",
  23239. extra: 660 / 640,
  23240. bottom: 0.015
  23241. }
  23242. },
  23243. demiNaga: {
  23244. height: math.unit(6 + 8 / 12, "feet"),
  23245. weight: math.unit(300, "lb"),
  23246. name: "Demi Naga",
  23247. image: {
  23248. source: "./media/characters/tahajin/demi-naga.svg",
  23249. extra: 643 / 615,
  23250. bottom: 0.1
  23251. }
  23252. },
  23253. data: {
  23254. height: math.unit(5, "inches"),
  23255. weight: math.unit(0.1, "lb"),
  23256. name: "Data",
  23257. image: {
  23258. source: "./media/characters/tahajin/data.svg"
  23259. }
  23260. },
  23261. fluu: {
  23262. height: math.unit(5 + 7 / 12, "feet"),
  23263. weight: math.unit(140, "lb"),
  23264. name: "Fluu",
  23265. image: {
  23266. source: "./media/characters/tahajin/fluu.svg",
  23267. extra: 628 / 592,
  23268. bottom: 0.02
  23269. }
  23270. },
  23271. starWarrior: {
  23272. height: math.unit(4 + 5 / 12, "feet"),
  23273. weight: math.unit(50, "lb"),
  23274. name: "Star Warrior",
  23275. image: {
  23276. source: "./media/characters/tahajin/star-warrior.svg"
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(25 + 6 / 12, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(8, "feet"),
  23293. weight: math.unit(350, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/gabira/front.svg",
  23297. extra: 1261/1154,
  23298. bottom: 51/1312
  23299. }
  23300. },
  23301. back: {
  23302. height: math.unit(8, "feet"),
  23303. weight: math.unit(350, "lb"),
  23304. name: "Back",
  23305. image: {
  23306. source: "./media/characters/gabira/back.svg",
  23307. extra: 1265/1163,
  23308. bottom: 46/1311
  23309. }
  23310. },
  23311. head: {
  23312. height: math.unit(2.85, "feet"),
  23313. name: "Head",
  23314. image: {
  23315. source: "./media/characters/gabira/head.svg"
  23316. }
  23317. },
  23318. },
  23319. [
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(8, "feet"),
  23323. default: true
  23324. },
  23325. ]
  23326. ))
  23327. characterMakers.push(() => makeCharacter(
  23328. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23329. {
  23330. front: {
  23331. height: math.unit(5 + 3 / 12, "feet"),
  23332. weight: math.unit(137, "lb"),
  23333. name: "Front",
  23334. image: {
  23335. source: "./media/characters/sasha-katraine/front.svg",
  23336. extra: 1745/1694,
  23337. bottom: 37/1782
  23338. }
  23339. },
  23340. back: {
  23341. height: math.unit(5 + 3 / 12, "feet"),
  23342. weight: math.unit(137, "lb"),
  23343. name: "Back",
  23344. image: {
  23345. source: "./media/characters/sasha-katraine/back.svg",
  23346. extra: 1776/1699,
  23347. bottom: 26/1802
  23348. }
  23349. },
  23350. },
  23351. [
  23352. {
  23353. name: "Micro",
  23354. height: math.unit(5, "inches")
  23355. },
  23356. {
  23357. name: "Normal",
  23358. height: math.unit(5 + 3 / 12, "feet"),
  23359. default: true
  23360. },
  23361. ]
  23362. ))
  23363. characterMakers.push(() => makeCharacter(
  23364. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23365. {
  23366. side: {
  23367. height: math.unit(4, "inches"),
  23368. weight: math.unit(200, "grams"),
  23369. name: "Side",
  23370. image: {
  23371. source: "./media/characters/der/side.svg",
  23372. extra: 719 / 400,
  23373. bottom: 30.6 / 749.9187
  23374. }
  23375. },
  23376. },
  23377. [
  23378. {
  23379. name: "Micro",
  23380. height: math.unit(4, "inches"),
  23381. default: true
  23382. },
  23383. ]
  23384. ))
  23385. characterMakers.push(() => makeCharacter(
  23386. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23387. {
  23388. side: {
  23389. height: math.unit(30, "meters"),
  23390. weight: math.unit(700, "tonnes"),
  23391. name: "Side",
  23392. image: {
  23393. source: "./media/characters/fixerdragon/side.svg",
  23394. extra: (1293.0514 - 116.03) / 1106.86,
  23395. bottom: 116.03 / 1293.0514
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Planck",
  23402. height: math.unit(1.6e-35, "meters")
  23403. },
  23404. {
  23405. name: "Micro",
  23406. height: math.unit(0.4, "meters")
  23407. },
  23408. {
  23409. name: "Normal",
  23410. height: math.unit(30, "meters"),
  23411. default: true
  23412. },
  23413. {
  23414. name: "Megamacro",
  23415. height: math.unit(1.2, "megameters")
  23416. },
  23417. {
  23418. name: "Teramacro",
  23419. height: math.unit(130, "terameters")
  23420. },
  23421. {
  23422. name: "Yottamacro",
  23423. height: math.unit(6200, "yottameters")
  23424. },
  23425. ]
  23426. ));
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(8, "feet"),
  23432. weight: math.unit(250, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/kite/front.svg",
  23436. extra: 2796 / 2659,
  23437. bottom: 0.002
  23438. }
  23439. },
  23440. },
  23441. [
  23442. {
  23443. name: "Normal",
  23444. height: math.unit(8, "feet"),
  23445. default: true
  23446. },
  23447. {
  23448. name: "Macro",
  23449. height: math.unit(360, "feet")
  23450. },
  23451. {
  23452. name: "Megamacro",
  23453. height: math.unit(1500, "feet")
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(5 + 11/12, "feet"),
  23462. weight: math.unit(170, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/poojawa-vynar/front.svg",
  23466. extra: 1735/1585,
  23467. bottom: 96/1831
  23468. }
  23469. },
  23470. back: {
  23471. height: math.unit(5 + 11/12, "feet"),
  23472. weight: math.unit(170, "lb"),
  23473. name: "Back",
  23474. image: {
  23475. source: "./media/characters/poojawa-vynar/back.svg",
  23476. extra: 1749/1607,
  23477. bottom: 28/1777
  23478. }
  23479. },
  23480. male: {
  23481. height: math.unit(5 + 11/12, "feet"),
  23482. weight: math.unit(170, "lb"),
  23483. name: "Male",
  23484. image: {
  23485. source: "./media/characters/poojawa-vynar/male.svg",
  23486. extra: 1855/1713,
  23487. bottom: 63/1918
  23488. }
  23489. },
  23490. taur: {
  23491. height: math.unit(5 + 11/12, "feet"),
  23492. weight: math.unit(170, "lb"),
  23493. name: "Taur",
  23494. image: {
  23495. source: "./media/characters/poojawa-vynar/taur.svg",
  23496. extra: 1151/1059,
  23497. bottom: 356/1507
  23498. }
  23499. },
  23500. frontDressed: {
  23501. height: math.unit(5 + 11/12, "feet"),
  23502. weight: math.unit(170, "lb"),
  23503. name: "Front (Dressed)",
  23504. image: {
  23505. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23506. extra: 1735/1585,
  23507. bottom: 96/1831
  23508. }
  23509. },
  23510. backDressed: {
  23511. height: math.unit(5 + 11/12, "feet"),
  23512. weight: math.unit(170, "lb"),
  23513. name: "Back (Dressed)",
  23514. image: {
  23515. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23516. extra: 1749/1607,
  23517. bottom: 28/1777
  23518. }
  23519. },
  23520. maleDressed: {
  23521. height: math.unit(5 + 11/12, "feet"),
  23522. weight: math.unit(170, "lb"),
  23523. name: "Male (Dressed)",
  23524. image: {
  23525. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23526. extra: 1855/1713,
  23527. bottom: 63/1918
  23528. }
  23529. },
  23530. taurDressed: {
  23531. height: math.unit(5 + 11/12, "feet"),
  23532. weight: math.unit(170, "lb"),
  23533. name: "Taur (Dressed)",
  23534. image: {
  23535. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23536. extra: 1151/1059,
  23537. bottom: 356/1507
  23538. }
  23539. },
  23540. maw: {
  23541. height: math.unit(1.46, "feet"),
  23542. name: "Maw",
  23543. image: {
  23544. source: "./media/characters/poojawa-vynar/maw.svg"
  23545. }
  23546. },
  23547. head: {
  23548. height: math.unit(2.34, "feet"),
  23549. name: "Head",
  23550. image: {
  23551. source: "./media/characters/poojawa-vynar/head.svg"
  23552. }
  23553. },
  23554. paw: {
  23555. height: math.unit(1.61, "feet"),
  23556. name: "Paw",
  23557. image: {
  23558. source: "./media/characters/poojawa-vynar/paw.svg"
  23559. }
  23560. },
  23561. pawToering: {
  23562. height: math.unit(1.72, "feet"),
  23563. name: "Paw (Toering)",
  23564. image: {
  23565. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23566. }
  23567. },
  23568. toering: {
  23569. height: math.unit(2.9, "inches"),
  23570. name: "Toering",
  23571. image: {
  23572. source: "./media/characters/poojawa-vynar/toering.svg"
  23573. }
  23574. },
  23575. shaft: {
  23576. height: math.unit(0.625, "feet"),
  23577. name: "Shaft",
  23578. image: {
  23579. source: "./media/characters/poojawa-vynar/shaft.svg"
  23580. }
  23581. },
  23582. spade: {
  23583. height: math.unit(0.42, "feet"),
  23584. name: "Spade",
  23585. image: {
  23586. source: "./media/characters/poojawa-vynar/spade.svg"
  23587. }
  23588. },
  23589. },
  23590. [
  23591. {
  23592. name: "Shortstack",
  23593. height: math.unit(4, "feet")
  23594. },
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(5 + 11 / 12, "feet"),
  23598. default: true
  23599. },
  23600. {
  23601. name: "Tauric",
  23602. height: math.unit(4, "meters")
  23603. },
  23604. ]
  23605. ))
  23606. characterMakers.push(() => makeCharacter(
  23607. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23608. {
  23609. front: {
  23610. height: math.unit(293, "meters"),
  23611. weight: math.unit(70400, "tons"),
  23612. name: "Front",
  23613. image: {
  23614. source: "./media/characters/violette/front.svg",
  23615. extra: 1227 / 1180,
  23616. bottom: 0.005
  23617. }
  23618. },
  23619. back: {
  23620. height: math.unit(293, "meters"),
  23621. weight: math.unit(70400, "tons"),
  23622. name: "Back",
  23623. image: {
  23624. source: "./media/characters/violette/back.svg",
  23625. extra: 1227 / 1180,
  23626. bottom: 0.005
  23627. }
  23628. },
  23629. },
  23630. [
  23631. {
  23632. name: "Macro",
  23633. height: math.unit(293, "meters"),
  23634. default: true
  23635. },
  23636. ]
  23637. ))
  23638. characterMakers.push(() => makeCharacter(
  23639. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23640. {
  23641. front: {
  23642. height: math.unit(1050, "feet"),
  23643. weight: math.unit(200000, "tons"),
  23644. name: "Front",
  23645. image: {
  23646. source: "./media/characters/alessandra/front.svg",
  23647. extra: 960 / 912,
  23648. bottom: 0.06
  23649. }
  23650. },
  23651. },
  23652. [
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(1050, "feet")
  23656. },
  23657. {
  23658. name: "Macro+",
  23659. height: math.unit(900, "meters"),
  23660. default: true
  23661. },
  23662. ]
  23663. ))
  23664. characterMakers.push(() => makeCharacter(
  23665. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23666. {
  23667. front: {
  23668. height: math.unit(5, "feet"),
  23669. weight: math.unit(187, "lb"),
  23670. name: "Front",
  23671. image: {
  23672. source: "./media/characters/person/front.svg",
  23673. extra: 3087 / 2945,
  23674. bottom: 91 / 3181
  23675. }
  23676. },
  23677. },
  23678. [
  23679. {
  23680. name: "Micro",
  23681. height: math.unit(3, "inches")
  23682. },
  23683. {
  23684. name: "Normal",
  23685. height: math.unit(5, "feet"),
  23686. default: true
  23687. },
  23688. {
  23689. name: "Macro",
  23690. height: math.unit(90, "feet")
  23691. },
  23692. {
  23693. name: "Max Size",
  23694. height: math.unit(280, "feet")
  23695. },
  23696. ]
  23697. ))
  23698. characterMakers.push(() => makeCharacter(
  23699. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23700. {
  23701. front: {
  23702. height: math.unit(4.5, "meters"),
  23703. weight: math.unit(3200, "lb"),
  23704. name: "Front",
  23705. image: {
  23706. source: "./media/characters/ty/front.svg",
  23707. extra: 1038 / 960,
  23708. bottom: 31.156 / 1068
  23709. }
  23710. },
  23711. back: {
  23712. height: math.unit(4.5, "meters"),
  23713. weight: math.unit(3200, "lb"),
  23714. name: "Back",
  23715. image: {
  23716. source: "./media/characters/ty/back.svg",
  23717. extra: 1044 / 966,
  23718. bottom: 7.48 / 1049
  23719. }
  23720. },
  23721. },
  23722. [
  23723. {
  23724. name: "Normal",
  23725. height: math.unit(4.5, "meters"),
  23726. default: true
  23727. },
  23728. ]
  23729. ))
  23730. characterMakers.push(() => makeCharacter(
  23731. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23732. {
  23733. front: {
  23734. height: math.unit(5 + 4 / 12, "feet"),
  23735. weight: math.unit(115, "lb"),
  23736. name: "Front",
  23737. image: {
  23738. source: "./media/characters/rocky/front.svg",
  23739. extra: 1012 / 975,
  23740. bottom: 54 / 1066
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Normal",
  23747. height: math.unit(5 + 4 / 12, "feet"),
  23748. default: true
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23754. {
  23755. upright: {
  23756. height: math.unit(6, "meters"),
  23757. weight: math.unit(4000, "kg"),
  23758. name: "Upright",
  23759. image: {
  23760. source: "./media/characters/ruin/upright.svg",
  23761. extra: 668 / 661,
  23762. bottom: 42 / 799.8396
  23763. }
  23764. },
  23765. },
  23766. [
  23767. {
  23768. name: "Normal",
  23769. height: math.unit(6, "meters"),
  23770. default: true
  23771. },
  23772. ]
  23773. ))
  23774. characterMakers.push(() => makeCharacter(
  23775. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23776. {
  23777. front: {
  23778. height: math.unit(5, "feet"),
  23779. weight: math.unit(106, "lb"),
  23780. name: "Front",
  23781. image: {
  23782. source: "./media/characters/robin/front.svg",
  23783. extra: 862 / 799,
  23784. bottom: 42.4 / 914.8856
  23785. }
  23786. },
  23787. },
  23788. [
  23789. {
  23790. name: "Normal",
  23791. height: math.unit(5, "feet"),
  23792. default: true
  23793. },
  23794. ]
  23795. ))
  23796. characterMakers.push(() => makeCharacter(
  23797. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23798. {
  23799. side: {
  23800. height: math.unit(3, "feet"),
  23801. weight: math.unit(225, "lb"),
  23802. name: "Side",
  23803. image: {
  23804. source: "./media/characters/saian/side.svg",
  23805. extra: 566 / 356,
  23806. bottom: 79.7 / 643
  23807. }
  23808. },
  23809. maw: {
  23810. height: math.unit(2.85, "feet"),
  23811. name: "Maw",
  23812. image: {
  23813. source: "./media/characters/saian/maw.svg"
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Normal",
  23820. height: math.unit(3, "feet"),
  23821. default: true
  23822. },
  23823. ]
  23824. ))
  23825. characterMakers.push(() => makeCharacter(
  23826. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23827. {
  23828. side: {
  23829. height: math.unit(8, "feet"),
  23830. weight: math.unit(300, "lb"),
  23831. name: "Side",
  23832. image: {
  23833. source: "./media/characters/equus-silvermane/side.svg",
  23834. extra: 2176 / 2050,
  23835. bottom: 65.7 / 2245
  23836. }
  23837. },
  23838. front: {
  23839. height: math.unit(8, "feet"),
  23840. weight: math.unit(300, "lb"),
  23841. name: "Front",
  23842. image: {
  23843. source: "./media/characters/equus-silvermane/front.svg",
  23844. extra: 4633 / 4400,
  23845. bottom: 71.3 / 4706.915
  23846. }
  23847. },
  23848. sideStepping: {
  23849. height: math.unit(8, "feet"),
  23850. weight: math.unit(300, "lb"),
  23851. name: "Side (Stepping)",
  23852. image: {
  23853. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23854. extra: 1968 / 1860,
  23855. bottom: 16.4 / 1989
  23856. }
  23857. },
  23858. },
  23859. [
  23860. {
  23861. name: "Normal",
  23862. height: math.unit(8, "feet")
  23863. },
  23864. {
  23865. name: "Minimacro",
  23866. height: math.unit(75, "feet"),
  23867. default: true
  23868. },
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(150, "feet")
  23872. },
  23873. {
  23874. name: "Macro+",
  23875. height: math.unit(1000, "feet")
  23876. },
  23877. {
  23878. name: "Megamacro",
  23879. height: math.unit(1, "mile")
  23880. },
  23881. ]
  23882. ))
  23883. characterMakers.push(() => makeCharacter(
  23884. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23885. {
  23886. side: {
  23887. height: math.unit(20, "feet"),
  23888. weight: math.unit(30000, "kg"),
  23889. name: "Side",
  23890. image: {
  23891. source: "./media/characters/windar/side.svg",
  23892. extra: 1491 / 1248,
  23893. bottom: 82.56 / 1568
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Normal",
  23900. height: math.unit(20, "feet"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23907. {
  23908. side: {
  23909. height: math.unit(15.66, "feet"),
  23910. weight: math.unit(150, "lb"),
  23911. name: "Side",
  23912. image: {
  23913. source: "./media/characters/melody/side.svg",
  23914. extra: 1097 / 944,
  23915. bottom: 11.8 / 1109
  23916. }
  23917. },
  23918. sideOutfit: {
  23919. height: math.unit(15.66, "feet"),
  23920. weight: math.unit(150, "lb"),
  23921. name: "Side (Outfit)",
  23922. image: {
  23923. source: "./media/characters/melody/side-outfit.svg",
  23924. extra: 1097 / 944,
  23925. bottom: 11.8 / 1109
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(15.66, "feet"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23939. {
  23940. armoredFront: {
  23941. height: math.unit(8, "feet"),
  23942. weight: math.unit(325, "lb"),
  23943. name: "Front",
  23944. image: {
  23945. source: "./media/characters/windera/armored-front.svg",
  23946. extra: 1830/1598,
  23947. bottom: 151/1981
  23948. },
  23949. form: "armored",
  23950. default: true
  23951. },
  23952. macroFront: {
  23953. height: math.unit(70, "feet"),
  23954. weight: math.unit(315453, "lb"),
  23955. name: "Front",
  23956. image: {
  23957. source: "./media/characters/windera/macro-front.svg",
  23958. extra: 963/883,
  23959. bottom: 23/986
  23960. },
  23961. form: "macro",
  23962. default: true
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Normal",
  23968. height: math.unit(8, "feet"),
  23969. default: true,
  23970. form: "armored"
  23971. },
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(70, "feet"),
  23975. default: true,
  23976. form: "macro"
  23977. },
  23978. ],
  23979. {
  23980. "armored": {
  23981. name: "Armored",
  23982. default: true
  23983. },
  23984. "macro": {
  23985. name: "Macro",
  23986. },
  23987. }
  23988. ))
  23989. characterMakers.push(() => makeCharacter(
  23990. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23991. {
  23992. front: {
  23993. height: math.unit(28.75, "feet"),
  23994. weight: math.unit(2000, "kg"),
  23995. name: "Front",
  23996. image: {
  23997. source: "./media/characters/sonear/front.svg",
  23998. extra: 1041.1 / 964.9,
  23999. bottom: 53.7 / 1096.6
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(28.75, "feet"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24013. {
  24014. side: {
  24015. height: math.unit(25.5, "feet"),
  24016. weight: math.unit(23000, "kg"),
  24017. name: "Side",
  24018. image: {
  24019. source: "./media/characters/kanara/side.svg"
  24020. }
  24021. },
  24022. },
  24023. [
  24024. {
  24025. name: "Normal",
  24026. height: math.unit(25.5, "feet"),
  24027. default: true
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24033. {
  24034. side: {
  24035. height: math.unit(10, "feet"),
  24036. weight: math.unit(1000, "kg"),
  24037. name: "Side",
  24038. image: {
  24039. source: "./media/characters/ereus/side.svg",
  24040. extra: 1157 / 959,
  24041. bottom: 153 / 1312.5
  24042. }
  24043. },
  24044. },
  24045. [
  24046. {
  24047. name: "Normal",
  24048. height: math.unit(10, "feet"),
  24049. default: true
  24050. },
  24051. ]
  24052. ))
  24053. characterMakers.push(() => makeCharacter(
  24054. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24055. {
  24056. side: {
  24057. height: math.unit(4.5, "feet"),
  24058. weight: math.unit(500, "lb"),
  24059. name: "Side",
  24060. image: {
  24061. source: "./media/characters/e-ter/side.svg",
  24062. extra: 1550 / 1248,
  24063. bottom: 146 / 1694
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(4.5, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24077. {
  24078. side: {
  24079. height: math.unit(9.7, "feet"),
  24080. weight: math.unit(4000, "kg"),
  24081. name: "Side",
  24082. image: {
  24083. source: "./media/characters/yamie/side.svg"
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Normal",
  24090. height: math.unit(9.7, "feet"),
  24091. default: true
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24097. {
  24098. front: {
  24099. height: math.unit(50, "feet"),
  24100. weight: math.unit(50000, "kg"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/anders/front.svg",
  24104. extra: 570 / 539,
  24105. bottom: 14.7 / 586.7
  24106. }
  24107. },
  24108. },
  24109. [
  24110. {
  24111. name: "Large",
  24112. height: math.unit(50, "feet")
  24113. },
  24114. {
  24115. name: "Macro",
  24116. height: math.unit(2000, "feet"),
  24117. default: true
  24118. },
  24119. {
  24120. name: "Megamacro",
  24121. height: math.unit(12, "miles")
  24122. },
  24123. ]
  24124. ))
  24125. characterMakers.push(() => makeCharacter(
  24126. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24127. {
  24128. front: {
  24129. height: math.unit(7 + 2 / 12, "feet"),
  24130. weight: math.unit(300, "lb"),
  24131. name: "Front",
  24132. image: {
  24133. source: "./media/characters/reban/front.svg",
  24134. extra: 1287/1212,
  24135. bottom: 148/1435
  24136. }
  24137. },
  24138. head: {
  24139. height: math.unit(1.95, "feet"),
  24140. name: "Head",
  24141. image: {
  24142. source: "./media/characters/reban/head.svg"
  24143. }
  24144. },
  24145. maw: {
  24146. height: math.unit(0.95, "feet"),
  24147. name: "Maw",
  24148. image: {
  24149. source: "./media/characters/reban/maw.svg"
  24150. }
  24151. },
  24152. foot: {
  24153. height: math.unit(1.65, "feet"),
  24154. name: "Foot",
  24155. image: {
  24156. source: "./media/characters/reban/foot.svg"
  24157. }
  24158. },
  24159. dick: {
  24160. height: math.unit(7 / 5, "feet"),
  24161. name: "Dick",
  24162. image: {
  24163. source: "./media/characters/reban/dick.svg"
  24164. }
  24165. },
  24166. },
  24167. [
  24168. {
  24169. name: "Natural Height",
  24170. height: math.unit(7 + 2 / 12, "feet")
  24171. },
  24172. {
  24173. name: "Macro",
  24174. height: math.unit(500, "feet"),
  24175. default: true
  24176. },
  24177. {
  24178. name: "Canon Height",
  24179. height: math.unit(50, "AU")
  24180. },
  24181. ]
  24182. ))
  24183. characterMakers.push(() => makeCharacter(
  24184. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24185. {
  24186. front: {
  24187. height: math.unit(6, "feet"),
  24188. weight: math.unit(150, "lb"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/terrance-keayes/front.svg",
  24192. extra: 1.005,
  24193. bottom: 151 / 1615
  24194. }
  24195. },
  24196. side: {
  24197. height: math.unit(6, "feet"),
  24198. weight: math.unit(150, "lb"),
  24199. name: "Side",
  24200. image: {
  24201. source: "./media/characters/terrance-keayes/side.svg",
  24202. extra: 1.005,
  24203. bottom: 129.4 / 1544
  24204. }
  24205. },
  24206. back: {
  24207. height: math.unit(6, "feet"),
  24208. weight: math.unit(150, "lb"),
  24209. name: "Back",
  24210. image: {
  24211. source: "./media/characters/terrance-keayes/back.svg",
  24212. extra: 1.005,
  24213. bottom: 58.4 / 1557.3
  24214. }
  24215. },
  24216. dick: {
  24217. height: math.unit(6 * 0.208, "feet"),
  24218. name: "Dick",
  24219. image: {
  24220. source: "./media/characters/terrance-keayes/dick.svg"
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Canon Height",
  24227. height: math.unit(35, "miles"),
  24228. default: true
  24229. },
  24230. ]
  24231. ))
  24232. characterMakers.push(() => makeCharacter(
  24233. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24234. {
  24235. front: {
  24236. height: math.unit(6, "feet"),
  24237. weight: math.unit(150, "lb"),
  24238. name: "Front",
  24239. image: {
  24240. source: "./media/characters/ofelia/front.svg",
  24241. extra: 1130/1117,
  24242. bottom: 91/1221
  24243. }
  24244. },
  24245. back: {
  24246. height: math.unit(6, "feet"),
  24247. weight: math.unit(150, "lb"),
  24248. name: "Back",
  24249. image: {
  24250. source: "./media/characters/ofelia/back.svg",
  24251. extra: 1172/1159,
  24252. bottom: 28/1200
  24253. }
  24254. },
  24255. maw: {
  24256. height: math.unit(1, "feet"),
  24257. name: "Maw",
  24258. image: {
  24259. source: "./media/characters/ofelia/maw.svg"
  24260. }
  24261. },
  24262. foot: {
  24263. height: math.unit(1.949, "feet"),
  24264. name: "Foot",
  24265. image: {
  24266. source: "./media/characters/ofelia/foot.svg"
  24267. }
  24268. },
  24269. },
  24270. [
  24271. {
  24272. name: "Canon Height",
  24273. height: math.unit(2000, "miles"),
  24274. default: true
  24275. },
  24276. ]
  24277. ))
  24278. characterMakers.push(() => makeCharacter(
  24279. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24280. {
  24281. front: {
  24282. height: math.unit(6, "feet"),
  24283. weight: math.unit(150, "lb"),
  24284. name: "Front",
  24285. image: {
  24286. source: "./media/characters/samuel/front.svg",
  24287. extra: 265 / 258,
  24288. bottom: 2 / 266.1566
  24289. }
  24290. },
  24291. },
  24292. [
  24293. {
  24294. name: "Macro",
  24295. height: math.unit(100, "feet"),
  24296. default: true
  24297. },
  24298. {
  24299. name: "Full Size",
  24300. height: math.unit(1000, "miles")
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24306. {
  24307. front: {
  24308. height: math.unit(6, "feet"),
  24309. weight: math.unit(300, "lb"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/beishir-kiel/front.svg",
  24313. extra: 569 / 547,
  24314. bottom: 41.9 / 609
  24315. }
  24316. },
  24317. maw: {
  24318. height: math.unit(6 * 0.202, "feet"),
  24319. name: "Maw",
  24320. image: {
  24321. source: "./media/characters/beishir-kiel/maw.svg"
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Macro",
  24328. height: math.unit(300, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(5 + 7/12, "feet"),
  24338. weight: math.unit(120, "lb"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/logan-grey/front.svg",
  24342. extra: 1836/1738,
  24343. bottom: 108/1944
  24344. }
  24345. },
  24346. back: {
  24347. height: math.unit(5 + 7/12, "feet"),
  24348. weight: math.unit(120, "lb"),
  24349. name: "Back",
  24350. image: {
  24351. source: "./media/characters/logan-grey/back.svg",
  24352. extra: 1880/1794,
  24353. bottom: 24/1904
  24354. }
  24355. },
  24356. frontSfw: {
  24357. height: math.unit(5 + 7/12, "feet"),
  24358. weight: math.unit(120, "lb"),
  24359. name: "Front (SFW)",
  24360. image: {
  24361. source: "./media/characters/logan-grey/front-sfw.svg",
  24362. extra: 1836/1738,
  24363. bottom: 108/1944
  24364. }
  24365. },
  24366. backSfw: {
  24367. height: math.unit(5 + 7/12, "feet"),
  24368. weight: math.unit(120, "lb"),
  24369. name: "Back (SFW)",
  24370. image: {
  24371. source: "./media/characters/logan-grey/back-sfw.svg",
  24372. extra: 1880/1794,
  24373. bottom: 24/1904
  24374. }
  24375. },
  24376. hands: {
  24377. height: math.unit(0.84, "feet"),
  24378. name: "Hands",
  24379. image: {
  24380. source: "./media/characters/logan-grey/hands.svg"
  24381. }
  24382. },
  24383. paws: {
  24384. height: math.unit(0.72, "feet"),
  24385. name: "Paws",
  24386. image: {
  24387. source: "./media/characters/logan-grey/paws.svg"
  24388. }
  24389. },
  24390. cock: {
  24391. height: math.unit(1.45, "feet"),
  24392. name: "Cock",
  24393. image: {
  24394. source: "./media/characters/logan-grey/cock.svg"
  24395. }
  24396. },
  24397. cockAlt: {
  24398. height: math.unit(1.437, "feet"),
  24399. name: "Cock (alt)",
  24400. image: {
  24401. source: "./media/characters/logan-grey/cock-alt.svg"
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(5 + 8 / 12, "feet")
  24409. },
  24410. {
  24411. name: "The 500 Foot Femboy",
  24412. height: math.unit(500, "feet"),
  24413. default: true
  24414. },
  24415. {
  24416. name: "Megmacro",
  24417. height: math.unit(20, "miles")
  24418. },
  24419. ]
  24420. ))
  24421. characterMakers.push(() => makeCharacter(
  24422. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24423. {
  24424. front: {
  24425. height: math.unit(8 + 2 / 12, "feet"),
  24426. weight: math.unit(275, "lb"),
  24427. name: "Front",
  24428. image: {
  24429. source: "./media/characters/draganta/front.svg",
  24430. extra: 1177 / 1135,
  24431. bottom: 33.46 / 1212.1
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(8 + 6 / 12, "feet"),
  24439. default: true
  24440. },
  24441. {
  24442. name: "Macro",
  24443. height: math.unit(150, "feet")
  24444. },
  24445. {
  24446. name: "Megamacro",
  24447. height: math.unit(1000, "miles")
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(1.72, "m"),
  24456. weight: math.unit(80, "lb"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/voski/front.svg",
  24460. extra: 2076.22 / 2022.4,
  24461. bottom: 102.7 / 2177.3866
  24462. }
  24463. },
  24464. frontFlaccid: {
  24465. height: math.unit(1.72, "m"),
  24466. weight: math.unit(80, "lb"),
  24467. name: "Front (Flaccid)",
  24468. image: {
  24469. source: "./media/characters/voski/front-flaccid.svg",
  24470. extra: 2076.22 / 2022.4,
  24471. bottom: 102.7 / 2177.3866
  24472. }
  24473. },
  24474. frontErect: {
  24475. height: math.unit(1.72, "m"),
  24476. weight: math.unit(80, "lb"),
  24477. name: "Front (Erect)",
  24478. image: {
  24479. source: "./media/characters/voski/front-erect.svg",
  24480. extra: 2076.22 / 2022.4,
  24481. bottom: 102.7 / 2177.3866
  24482. }
  24483. },
  24484. back: {
  24485. height: math.unit(1.72, "m"),
  24486. weight: math.unit(80, "lb"),
  24487. name: "Back",
  24488. image: {
  24489. source: "./media/characters/voski/back.svg",
  24490. extra: 2104 / 2051,
  24491. bottom: 10.45 / 2113.63
  24492. }
  24493. },
  24494. },
  24495. [
  24496. {
  24497. name: "Normal",
  24498. height: math.unit(1.72, "m")
  24499. },
  24500. {
  24501. name: "Macro",
  24502. height: math.unit(55, "m"),
  24503. default: true
  24504. },
  24505. {
  24506. name: "Macro+",
  24507. height: math.unit(300, "m")
  24508. },
  24509. {
  24510. name: "Macro++",
  24511. height: math.unit(700, "m")
  24512. },
  24513. {
  24514. name: "Macro+++",
  24515. height: math.unit(4500, "m")
  24516. },
  24517. {
  24518. name: "Macro++++",
  24519. height: math.unit(45, "km")
  24520. },
  24521. {
  24522. name: "Macro+++++",
  24523. height: math.unit(1220, "km")
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(2.3, "m"),
  24532. weight: math.unit(304, "kg"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/icowom-lee/front.svg",
  24536. extra: 985 / 955,
  24537. bottom: 25.4 / 1012
  24538. }
  24539. },
  24540. fronttentacles: {
  24541. height: math.unit(2.3, "m"),
  24542. weight: math.unit(304, "kg"),
  24543. name: "Front-tentacles",
  24544. image: {
  24545. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24546. extra: 985 / 955,
  24547. bottom: 25.4 / 1012
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(2.3, "m"),
  24552. weight: math.unit(304, "kg"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/icowom-lee/back.svg",
  24556. extra: 975 / 954,
  24557. bottom: 9.5 / 985
  24558. }
  24559. },
  24560. backtentacles: {
  24561. height: math.unit(2.3, "m"),
  24562. weight: math.unit(304, "kg"),
  24563. name: "Back-tentacles",
  24564. image: {
  24565. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24566. extra: 975 / 954,
  24567. bottom: 9.5 / 985
  24568. }
  24569. },
  24570. frontDressed: {
  24571. height: math.unit(2.3, "m"),
  24572. weight: math.unit(304, "kg"),
  24573. name: "Front (Dressed)",
  24574. image: {
  24575. source: "./media/characters/icowom-lee/front-dressed.svg",
  24576. extra: 3076 / 2933,
  24577. bottom: 51.4 / 3125.1889
  24578. }
  24579. },
  24580. rump: {
  24581. height: math.unit(0.776, "meters"),
  24582. name: "Rump",
  24583. image: {
  24584. source: "./media/characters/icowom-lee/rump.svg"
  24585. }
  24586. },
  24587. genitals: {
  24588. height: math.unit(0.78, "meters"),
  24589. name: "Genitals",
  24590. image: {
  24591. source: "./media/characters/icowom-lee/genitals.svg"
  24592. }
  24593. },
  24594. },
  24595. [
  24596. {
  24597. name: "Normal",
  24598. height: math.unit(2.3, "meters"),
  24599. default: true
  24600. },
  24601. {
  24602. name: "Macro",
  24603. height: math.unit(94, "meters"),
  24604. default: true
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(22, "meters"),
  24613. weight: math.unit(21000, "kg"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/shock-diamond/front.svg",
  24617. extra: 2204 / 2053,
  24618. bottom: 65 / 2239.47
  24619. }
  24620. },
  24621. frontNude: {
  24622. height: math.unit(22, "meters"),
  24623. weight: math.unit(21000, "kg"),
  24624. name: "Front (Nude)",
  24625. image: {
  24626. source: "./media/characters/shock-diamond/front-nude.svg",
  24627. extra: 2514 / 2285,
  24628. bottom: 13 / 2527.56
  24629. }
  24630. },
  24631. },
  24632. [
  24633. {
  24634. name: "Normal",
  24635. height: math.unit(3, "meters")
  24636. },
  24637. {
  24638. name: "Macro",
  24639. height: math.unit(22, "meters"),
  24640. default: true
  24641. },
  24642. ]
  24643. ))
  24644. characterMakers.push(() => makeCharacter(
  24645. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24646. {
  24647. front: {
  24648. height: math.unit(5 + 4/12, "feet"),
  24649. weight: math.unit(125, "lb"),
  24650. name: "Front",
  24651. image: {
  24652. source: "./media/characters/rory/front.svg",
  24653. extra: 1790/1681,
  24654. bottom: 66/1856
  24655. },
  24656. form: "normal",
  24657. default: true
  24658. },
  24659. back: {
  24660. height: math.unit(5 + 4/12, "feet"),
  24661. weight: math.unit(125, "lb"),
  24662. name: "Back",
  24663. image: {
  24664. source: "./media/characters/rory/back.svg",
  24665. extra: 1805/1690,
  24666. bottom: 56/1861
  24667. },
  24668. form: "normal"
  24669. },
  24670. frontDressed: {
  24671. height: math.unit(5 + 4/12, "feet"),
  24672. weight: math.unit(125, "lb"),
  24673. name: "Front (Dressed)",
  24674. image: {
  24675. source: "./media/characters/rory/front-dressed.svg",
  24676. extra: 1790/1681,
  24677. bottom: 66/1856
  24678. },
  24679. form: "normal"
  24680. },
  24681. backDressed: {
  24682. height: math.unit(5 + 4/12, "feet"),
  24683. weight: math.unit(125, "lb"),
  24684. name: "Back (Dressed)",
  24685. image: {
  24686. source: "./media/characters/rory/back-dressed.svg",
  24687. extra: 1805/1690,
  24688. bottom: 56/1861
  24689. },
  24690. form: "normal"
  24691. },
  24692. frontNsfw: {
  24693. height: math.unit(5 + 4/12, "feet"),
  24694. weight: math.unit(125, "lb"),
  24695. name: "Front (NSFW)",
  24696. image: {
  24697. source: "./media/characters/rory/front-nsfw.svg",
  24698. extra: 1790/1681,
  24699. bottom: 66/1856
  24700. },
  24701. form: "normal"
  24702. },
  24703. backNsfw: {
  24704. height: math.unit(5 + 4/12, "feet"),
  24705. weight: math.unit(125, "lb"),
  24706. name: "Back (NSFW)",
  24707. image: {
  24708. source: "./media/characters/rory/back-nsfw.svg",
  24709. extra: 1805/1690,
  24710. bottom: 56/1861
  24711. },
  24712. form: "normal"
  24713. },
  24714. dick: {
  24715. height: math.unit(0.8, "feet"),
  24716. name: "Dick",
  24717. image: {
  24718. source: "./media/characters/rory/dick.svg"
  24719. },
  24720. form: "normal"
  24721. },
  24722. thicc_front: {
  24723. height: math.unit(5 + 4/12, "feet"),
  24724. weight: math.unit(195, "lb"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/rory/thicc-front.svg",
  24728. extra: 1220/1100,
  24729. bottom: 103/1323
  24730. },
  24731. form: "thicc",
  24732. default: true
  24733. },
  24734. thicc_back: {
  24735. height: math.unit(5 + 4/12, "feet"),
  24736. weight: math.unit(195, "lb"),
  24737. name: "Back",
  24738. image: {
  24739. source: "./media/characters/rory/thicc-back.svg",
  24740. extra: 1166/1086,
  24741. bottom: 35/1201
  24742. },
  24743. form: "thicc"
  24744. },
  24745. },
  24746. [
  24747. {
  24748. name: "Micro",
  24749. height: math.unit(3, "inches"),
  24750. allForms: true
  24751. },
  24752. {
  24753. name: "Normal",
  24754. height: math.unit(5 + 4/12, "feet"),
  24755. allForms: true,
  24756. default: true
  24757. },
  24758. {
  24759. name: "Macro",
  24760. height: math.unit(90, "feet"),
  24761. allForms: true
  24762. },
  24763. {
  24764. name: "Supercharged",
  24765. height: math.unit(270, "feet"),
  24766. allForms: true
  24767. },
  24768. ],
  24769. {
  24770. "normal": {
  24771. name: "Normal",
  24772. default: true
  24773. },
  24774. "thicc": {
  24775. name: "Thicc",
  24776. },
  24777. }
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24781. {
  24782. front: {
  24783. height: math.unit(5 + 9 / 12, "feet"),
  24784. weight: math.unit(190, "lb"),
  24785. name: "Front",
  24786. image: {
  24787. source: "./media/characters/sprisk/front.svg",
  24788. extra: 1225 / 1180,
  24789. bottom: 42.7 / 1266.4
  24790. }
  24791. },
  24792. frontNsfw: {
  24793. height: math.unit(5 + 9 / 12, "feet"),
  24794. weight: math.unit(190, "lb"),
  24795. name: "Front (NSFW)",
  24796. image: {
  24797. source: "./media/characters/sprisk/front-nsfw.svg",
  24798. extra: 1225 / 1180,
  24799. bottom: 42.7 / 1266.4
  24800. }
  24801. },
  24802. back: {
  24803. height: math.unit(5 + 9 / 12, "feet"),
  24804. weight: math.unit(190, "lb"),
  24805. name: "Back",
  24806. image: {
  24807. source: "./media/characters/sprisk/back.svg",
  24808. extra: 1247 / 1200,
  24809. bottom: 5.6 / 1253.04
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Tiny",
  24816. height: math.unit(2, "inches")
  24817. },
  24818. {
  24819. name: "Normal",
  24820. height: math.unit(5 + 9 / 12, "feet"),
  24821. default: true
  24822. },
  24823. {
  24824. name: "Mini Macro",
  24825. height: math.unit(18, "feet")
  24826. },
  24827. {
  24828. name: "Macro",
  24829. height: math.unit(100, "feet")
  24830. },
  24831. {
  24832. name: "MACRO",
  24833. height: math.unit(50, "miles")
  24834. },
  24835. {
  24836. name: "M A C R O",
  24837. height: math.unit(300, "miles")
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24843. {
  24844. side: {
  24845. height: math.unit(15.6, "meters"),
  24846. weight: math.unit(700000, "kg"),
  24847. name: "Side",
  24848. image: {
  24849. source: "./media/characters/bunsen/side.svg",
  24850. extra: 1644 / 358
  24851. }
  24852. },
  24853. foot: {
  24854. height: math.unit(1.611 * 1644 / 358, "meter"),
  24855. name: "Foot",
  24856. image: {
  24857. source: "./media/characters/bunsen/foot.svg"
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Small",
  24864. height: math.unit(10, "feet")
  24865. },
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(15.6, "meters"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(4 + 11 / 12, "feet"),
  24878. weight: math.unit(140, "lb"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/sesh/front.svg",
  24882. extra: 3420 / 3231,
  24883. bottom: 72 / 3949.5
  24884. }
  24885. },
  24886. },
  24887. [
  24888. {
  24889. name: "Normal",
  24890. height: math.unit(4 + 11 / 12, "feet")
  24891. },
  24892. {
  24893. name: "Grown",
  24894. height: math.unit(15, "feet"),
  24895. default: true
  24896. },
  24897. {
  24898. name: "Macro",
  24899. height: math.unit(1500, "feet")
  24900. },
  24901. {
  24902. name: "Megamacro",
  24903. height: math.unit(30, "miles")
  24904. },
  24905. {
  24906. name: "Continental",
  24907. height: math.unit(3000, "miles")
  24908. },
  24909. {
  24910. name: "Gravity Mass",
  24911. height: math.unit(300000, "miles")
  24912. },
  24913. {
  24914. name: "Planet Buster",
  24915. height: math.unit(30000000, "miles")
  24916. },
  24917. {
  24918. name: "Big",
  24919. height: math.unit(3000000000, "miles")
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24925. {
  24926. front: {
  24927. height: math.unit(9, "feet"),
  24928. weight: math.unit(350, "lb"),
  24929. name: "Front",
  24930. image: {
  24931. source: "./media/characters/pepper/front.svg",
  24932. extra: 1448 / 1312,
  24933. bottom: 9.4 / 1457.88
  24934. }
  24935. },
  24936. back: {
  24937. height: math.unit(9, "feet"),
  24938. weight: math.unit(350, "lb"),
  24939. name: "Back",
  24940. image: {
  24941. source: "./media/characters/pepper/back.svg",
  24942. extra: 1423 / 1300,
  24943. bottom: 4.6 / 1429
  24944. }
  24945. },
  24946. maw: {
  24947. height: math.unit(0.932, "feet"),
  24948. name: "Maw",
  24949. image: {
  24950. source: "./media/characters/pepper/maw.svg"
  24951. }
  24952. },
  24953. },
  24954. [
  24955. {
  24956. name: "Normal",
  24957. height: math.unit(9, "feet"),
  24958. default: true
  24959. },
  24960. ]
  24961. ))
  24962. characterMakers.push(() => makeCharacter(
  24963. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24964. {
  24965. front: {
  24966. height: math.unit(6, "feet"),
  24967. weight: math.unit(150, "lb"),
  24968. name: "Front",
  24969. image: {
  24970. source: "./media/characters/maelstrom/front.svg",
  24971. extra: 2100 / 1883,
  24972. bottom: 94 / 2196.7
  24973. }
  24974. },
  24975. },
  24976. [
  24977. {
  24978. name: "Less Kaiju",
  24979. height: math.unit(200, "feet")
  24980. },
  24981. {
  24982. name: "Kaiju",
  24983. height: math.unit(400, "feet"),
  24984. default: true
  24985. },
  24986. {
  24987. name: "Kaiju-er",
  24988. height: math.unit(600, "feet")
  24989. },
  24990. ]
  24991. ))
  24992. characterMakers.push(() => makeCharacter(
  24993. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24994. {
  24995. front: {
  24996. height: math.unit(6 + 5 / 12, "feet"),
  24997. weight: math.unit(180, "lb"),
  24998. name: "Front",
  24999. image: {
  25000. source: "./media/characters/lexir/front.svg",
  25001. extra: 180 / 172,
  25002. bottom: 12 / 192
  25003. }
  25004. },
  25005. back: {
  25006. height: math.unit(6 + 5 / 12, "feet"),
  25007. weight: math.unit(180, "lb"),
  25008. name: "Back",
  25009. image: {
  25010. source: "./media/characters/lexir/back.svg",
  25011. extra: 1273/1201,
  25012. bottom: 39/1312
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Very Smal",
  25019. height: math.unit(1, "nm")
  25020. },
  25021. {
  25022. name: "Normal",
  25023. height: math.unit(6 + 5 / 12, "feet"),
  25024. default: true
  25025. },
  25026. {
  25027. name: "Macro",
  25028. height: math.unit(1, "mile")
  25029. },
  25030. {
  25031. name: "Megamacro",
  25032. height: math.unit(50, "miles")
  25033. },
  25034. ]
  25035. ))
  25036. characterMakers.push(() => makeCharacter(
  25037. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25038. {
  25039. front: {
  25040. height: math.unit(1.5, "meters"),
  25041. weight: math.unit(100, "lb"),
  25042. name: "Front",
  25043. image: {
  25044. source: "./media/characters/maksio/front.svg",
  25045. extra: 1549 / 1531,
  25046. bottom: 123.7 / 1674.5429
  25047. }
  25048. },
  25049. back: {
  25050. height: math.unit(1.5, "meters"),
  25051. weight: math.unit(100, "lb"),
  25052. name: "Back",
  25053. image: {
  25054. source: "./media/characters/maksio/back.svg",
  25055. extra: 1541 / 1509,
  25056. bottom: 97 / 1639
  25057. }
  25058. },
  25059. hand: {
  25060. height: math.unit(0.621, "feet"),
  25061. name: "Hand",
  25062. image: {
  25063. source: "./media/characters/maksio/hand.svg"
  25064. }
  25065. },
  25066. foot: {
  25067. height: math.unit(1.611, "feet"),
  25068. name: "Foot",
  25069. image: {
  25070. source: "./media/characters/maksio/foot.svg"
  25071. }
  25072. },
  25073. },
  25074. [
  25075. {
  25076. name: "Shrunken",
  25077. height: math.unit(10, "cm")
  25078. },
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(150, "cm"),
  25082. default: true
  25083. },
  25084. ]
  25085. ))
  25086. characterMakers.push(() => makeCharacter(
  25087. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25088. {
  25089. front: {
  25090. height: math.unit(100, "feet"),
  25091. name: "Front",
  25092. image: {
  25093. source: "./media/characters/erza-bear/front.svg",
  25094. extra: 2449 / 2390,
  25095. bottom: 46 / 2494
  25096. }
  25097. },
  25098. back: {
  25099. height: math.unit(100, "feet"),
  25100. name: "Back",
  25101. image: {
  25102. source: "./media/characters/erza-bear/back.svg",
  25103. extra: 2489 / 2430,
  25104. bottom: 85.4 / 2480
  25105. }
  25106. },
  25107. tail: {
  25108. height: math.unit(42, "feet"),
  25109. name: "Tail",
  25110. image: {
  25111. source: "./media/characters/erza-bear/tail.svg"
  25112. }
  25113. },
  25114. tongue: {
  25115. height: math.unit(8, "feet"),
  25116. name: "Tongue",
  25117. image: {
  25118. source: "./media/characters/erza-bear/tongue.svg"
  25119. }
  25120. },
  25121. dick: {
  25122. height: math.unit(10.5, "feet"),
  25123. name: "Dick",
  25124. image: {
  25125. source: "./media/characters/erza-bear/dick.svg"
  25126. }
  25127. },
  25128. dickVertical: {
  25129. height: math.unit(16.9, "feet"),
  25130. name: "Dick (Vertical)",
  25131. image: {
  25132. source: "./media/characters/erza-bear/dick-vertical.svg"
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Macro",
  25139. height: math.unit(100, "feet"),
  25140. default: true
  25141. },
  25142. ]
  25143. ))
  25144. characterMakers.push(() => makeCharacter(
  25145. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25146. {
  25147. front: {
  25148. height: math.unit(172, "cm"),
  25149. weight: math.unit(73, "kg"),
  25150. name: "Front",
  25151. image: {
  25152. source: "./media/characters/violet-flor/front.svg",
  25153. extra: 1530 / 1442,
  25154. bottom: 61.9 / 1588.8
  25155. }
  25156. },
  25157. back: {
  25158. height: math.unit(180, "cm"),
  25159. weight: math.unit(73, "kg"),
  25160. name: "Back",
  25161. image: {
  25162. source: "./media/characters/violet-flor/back.svg",
  25163. extra: 1692 / 1630,
  25164. bottom: 20 / 1712
  25165. }
  25166. },
  25167. },
  25168. [
  25169. {
  25170. name: "Normal",
  25171. height: math.unit(172, "cm"),
  25172. default: true
  25173. },
  25174. ]
  25175. ))
  25176. characterMakers.push(() => makeCharacter(
  25177. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25178. {
  25179. front: {
  25180. height: math.unit(6, "feet"),
  25181. weight: math.unit(220, "lb"),
  25182. name: "Front",
  25183. image: {
  25184. source: "./media/characters/lynn-rhea/front.svg",
  25185. extra: 310 / 273
  25186. }
  25187. },
  25188. back: {
  25189. height: math.unit(6, "feet"),
  25190. weight: math.unit(220, "lb"),
  25191. name: "Back",
  25192. image: {
  25193. source: "./media/characters/lynn-rhea/back.svg",
  25194. extra: 310 / 273
  25195. }
  25196. },
  25197. dicks: {
  25198. height: math.unit(0.9, "feet"),
  25199. name: "Dicks",
  25200. image: {
  25201. source: "./media/characters/lynn-rhea/dicks.svg"
  25202. }
  25203. },
  25204. slit: {
  25205. height: math.unit(0.4, "feet"),
  25206. name: "Slit",
  25207. image: {
  25208. source: "./media/characters/lynn-rhea/slit.svg"
  25209. }
  25210. },
  25211. },
  25212. [
  25213. {
  25214. name: "Micro",
  25215. height: math.unit(1, "inch")
  25216. },
  25217. {
  25218. name: "Macro",
  25219. height: math.unit(60, "feet"),
  25220. default: true
  25221. },
  25222. {
  25223. name: "Megamacro",
  25224. height: math.unit(2, "miles")
  25225. },
  25226. {
  25227. name: "Gigamacro",
  25228. height: math.unit(3, "earths")
  25229. },
  25230. {
  25231. name: "Galactic",
  25232. height: math.unit(0.8, "galaxies")
  25233. },
  25234. ]
  25235. ))
  25236. characterMakers.push(() => makeCharacter(
  25237. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25238. {
  25239. front: {
  25240. height: math.unit(1600, "feet"),
  25241. weight: math.unit(85758785169, "kg"),
  25242. name: "Front",
  25243. image: {
  25244. source: "./media/characters/valathos/front.svg",
  25245. extra: 1451 / 1339
  25246. }
  25247. },
  25248. },
  25249. [
  25250. {
  25251. name: "Macro",
  25252. height: math.unit(1600, "feet"),
  25253. default: true
  25254. },
  25255. ]
  25256. ))
  25257. characterMakers.push(() => makeCharacter(
  25258. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25259. {
  25260. front: {
  25261. height: math.unit(7 + 5 / 12, "feet"),
  25262. weight: math.unit(300, "lb"),
  25263. name: "Front",
  25264. image: {
  25265. source: "./media/characters/azula/front.svg",
  25266. extra: 3208 / 2880,
  25267. bottom: 80.2 / 3277
  25268. }
  25269. },
  25270. back: {
  25271. height: math.unit(7 + 5 / 12, "feet"),
  25272. weight: math.unit(300, "lb"),
  25273. name: "Back",
  25274. image: {
  25275. source: "./media/characters/azula/back.svg",
  25276. extra: 3169 / 2822,
  25277. bottom: 150.6 / 3321
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(7 + 5 / 12, "feet"),
  25285. default: true
  25286. },
  25287. {
  25288. name: "Big",
  25289. height: math.unit(20, "feet")
  25290. },
  25291. ]
  25292. ))
  25293. characterMakers.push(() => makeCharacter(
  25294. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25295. {
  25296. front: {
  25297. height: math.unit(5 + 1 / 12, "feet"),
  25298. weight: math.unit(110, "lb"),
  25299. name: "Front",
  25300. image: {
  25301. source: "./media/characters/rupert/front.svg",
  25302. extra: 1549 / 1495,
  25303. bottom: 54.2 / 1604.4
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(5 + 1 / 12, "feet"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25317. {
  25318. front: {
  25319. height: math.unit(8 + 4 / 12, "feet"),
  25320. weight: math.unit(350, "lb"),
  25321. name: "Front",
  25322. image: {
  25323. source: "./media/characters/sheera-castellar/front.svg",
  25324. extra: 1957 / 1894,
  25325. bottom: 26.97 / 1975.017
  25326. }
  25327. },
  25328. side: {
  25329. height: math.unit(8 + 4 / 12, "feet"),
  25330. weight: math.unit(350, "lb"),
  25331. name: "Side",
  25332. image: {
  25333. source: "./media/characters/sheera-castellar/side.svg",
  25334. extra: 1957 / 1894
  25335. }
  25336. },
  25337. back: {
  25338. height: math.unit(8 + 4 / 12, "feet"),
  25339. weight: math.unit(350, "lb"),
  25340. name: "Back",
  25341. image: {
  25342. source: "./media/characters/sheera-castellar/back.svg",
  25343. extra: 1957 / 1894
  25344. }
  25345. },
  25346. angled: {
  25347. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25348. weight: math.unit(350, "lb"),
  25349. name: "Angled",
  25350. image: {
  25351. source: "./media/characters/sheera-castellar/angled.svg",
  25352. extra: 1807 / 1707,
  25353. bottom: 68 / 1875
  25354. }
  25355. },
  25356. genitals: {
  25357. height: math.unit(2.2, "feet"),
  25358. name: "Genitals",
  25359. image: {
  25360. source: "./media/characters/sheera-castellar/genitals.svg"
  25361. }
  25362. },
  25363. taur: {
  25364. height: math.unit(10 + 6/12, "feet"),
  25365. name: "Taur",
  25366. image: {
  25367. source: "./media/characters/sheera-castellar/taur.svg",
  25368. extra: 2017/1909,
  25369. bottom: 185/2202
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(8 + 4 / 12, "feet")
  25377. },
  25378. {
  25379. name: "Macro",
  25380. height: math.unit(150, "feet"),
  25381. default: true
  25382. },
  25383. {
  25384. name: "Macro+",
  25385. height: math.unit(800, "feet")
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(6, "feet"),
  25394. weight: math.unit(150, "lb"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/jaipur/front.svg",
  25398. extra: 3860 / 3731,
  25399. bottom: 287 / 4140
  25400. }
  25401. },
  25402. back: {
  25403. height: math.unit(6, "feet"),
  25404. weight: math.unit(150, "lb"),
  25405. name: "Back",
  25406. image: {
  25407. source: "./media/characters/jaipur/back.svg",
  25408. extra: 1637/1561,
  25409. bottom: 154/1791
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Normal",
  25416. height: math.unit(1.85, "meters"),
  25417. default: true
  25418. },
  25419. {
  25420. name: "Macro",
  25421. height: math.unit(150, "meters")
  25422. },
  25423. {
  25424. name: "Macro+",
  25425. height: math.unit(0.5, "miles")
  25426. },
  25427. {
  25428. name: "Macro++",
  25429. height: math.unit(2.5, "miles")
  25430. },
  25431. {
  25432. name: "Macro+++",
  25433. height: math.unit(12, "miles")
  25434. },
  25435. {
  25436. name: "Macro++++",
  25437. height: math.unit(120, "miles")
  25438. },
  25439. {
  25440. name: "Macro+++++",
  25441. height: math.unit(1200, "miles")
  25442. },
  25443. ]
  25444. ))
  25445. characterMakers.push(() => makeCharacter(
  25446. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25447. {
  25448. front: {
  25449. height: math.unit(6, "feet"),
  25450. weight: math.unit(150, "lb"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/sheila-wolf/front.svg",
  25454. extra: 1931 / 1808,
  25455. bottom: 29.5 / 1960
  25456. }
  25457. },
  25458. dick: {
  25459. height: math.unit(1.464, "feet"),
  25460. name: "Dick",
  25461. image: {
  25462. source: "./media/characters/sheila-wolf/dick.svg"
  25463. }
  25464. },
  25465. muzzle: {
  25466. height: math.unit(0.513, "feet"),
  25467. name: "Muzzle",
  25468. image: {
  25469. source: "./media/characters/sheila-wolf/muzzle.svg"
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Macro",
  25476. height: math.unit(70, "feet"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(32, "meters"),
  25486. weight: math.unit(300000, "kg"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/almor/front.svg",
  25490. extra: 1408 / 1322,
  25491. bottom: 94.6 / 1506.5
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Macro",
  25498. height: math.unit(32, "meters"),
  25499. default: true
  25500. },
  25501. ]
  25502. ))
  25503. characterMakers.push(() => makeCharacter(
  25504. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25505. {
  25506. front: {
  25507. height: math.unit(7, "feet"),
  25508. weight: math.unit(200, "lb"),
  25509. name: "Front",
  25510. image: {
  25511. source: "./media/characters/silver/front.svg",
  25512. extra: 472.1 / 450.5,
  25513. bottom: 26.5 / 499.424
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(7, "feet"),
  25521. default: true
  25522. },
  25523. {
  25524. name: "Macro",
  25525. height: math.unit(800, "feet")
  25526. },
  25527. {
  25528. name: "Megamacro",
  25529. height: math.unit(250, "miles")
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(6, "feet"),
  25538. weight: math.unit(150, "lb"),
  25539. name: "Front",
  25540. image: {
  25541. source: "./media/characters/pliskin/front.svg",
  25542. extra: 1469 / 1359,
  25543. bottom: 70 / 1540
  25544. }
  25545. },
  25546. },
  25547. [
  25548. {
  25549. name: "Micro",
  25550. height: math.unit(3, "inches")
  25551. },
  25552. {
  25553. name: "Normal",
  25554. height: math.unit(5 + 11 / 12, "feet"),
  25555. default: true
  25556. },
  25557. {
  25558. name: "Macro",
  25559. height: math.unit(120, "feet")
  25560. },
  25561. ]
  25562. ))
  25563. characterMakers.push(() => makeCharacter(
  25564. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25565. {
  25566. front: {
  25567. height: math.unit(6, "feet"),
  25568. weight: math.unit(150, "lb"),
  25569. name: "Front",
  25570. image: {
  25571. source: "./media/characters/sammy/front.svg",
  25572. extra: 1193 / 1089,
  25573. bottom: 30.5 / 1226
  25574. }
  25575. },
  25576. },
  25577. [
  25578. {
  25579. name: "Macro",
  25580. height: math.unit(1700, "feet"),
  25581. default: true
  25582. },
  25583. {
  25584. name: "Examacro",
  25585. height: math.unit(2.5e9, "lightyears")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(21, "meters"),
  25594. weight: math.unit(12, "tonnes"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/kuru/front.svg",
  25598. extra: 4301 / 3785,
  25599. bottom: 371.3 / 4691
  25600. }
  25601. },
  25602. },
  25603. [
  25604. {
  25605. name: "Macro",
  25606. height: math.unit(21, "meters"),
  25607. default: true
  25608. },
  25609. ]
  25610. ))
  25611. characterMakers.push(() => makeCharacter(
  25612. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25613. {
  25614. front: {
  25615. height: math.unit(23, "meters"),
  25616. weight: math.unit(12.2, "tonnes"),
  25617. name: "Front",
  25618. image: {
  25619. source: "./media/characters/rakka/front.svg",
  25620. extra: 4670 / 4169,
  25621. bottom: 301 / 4968.7
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Macro",
  25628. height: math.unit(23, "meters"),
  25629. default: true
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25635. {
  25636. front: {
  25637. height: math.unit(6, "feet"),
  25638. weight: math.unit(150, "lb"),
  25639. name: "Front",
  25640. image: {
  25641. source: "./media/characters/rhys-feline/front.svg",
  25642. extra: 2488 / 2308,
  25643. bottom: 35.67 / 2519.19
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "Really Small",
  25650. height: math.unit(1, "nm")
  25651. },
  25652. {
  25653. name: "Micro",
  25654. height: math.unit(4, "inches")
  25655. },
  25656. {
  25657. name: "Normal",
  25658. height: math.unit(4 + 10 / 12, "feet"),
  25659. default: true
  25660. },
  25661. {
  25662. name: "Macro",
  25663. height: math.unit(100, "feet")
  25664. },
  25665. {
  25666. name: "Megamacto",
  25667. height: math.unit(50, "miles")
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25673. {
  25674. side: {
  25675. height: math.unit(30, "feet"),
  25676. weight: math.unit(35000, "kg"),
  25677. name: "Side",
  25678. image: {
  25679. source: "./media/characters/alydar/side.svg",
  25680. extra: 234 / 222,
  25681. bottom: 6.5 / 241
  25682. }
  25683. },
  25684. front: {
  25685. height: math.unit(30, "feet"),
  25686. weight: math.unit(35000, "kg"),
  25687. name: "Front",
  25688. image: {
  25689. source: "./media/characters/alydar/front.svg",
  25690. extra: 223.37 / 210.2,
  25691. bottom: 22.3 / 246.76
  25692. }
  25693. },
  25694. top: {
  25695. height: math.unit(64.54, "feet"),
  25696. weight: math.unit(35000, "kg"),
  25697. name: "Top",
  25698. image: {
  25699. source: "./media/characters/alydar/top.svg"
  25700. }
  25701. },
  25702. anthro: {
  25703. height: math.unit(30, "feet"),
  25704. weight: math.unit(9000, "kg"),
  25705. name: "Anthro",
  25706. image: {
  25707. source: "./media/characters/alydar/anthro.svg",
  25708. extra: 432 / 421,
  25709. bottom: 7.18 / 440
  25710. }
  25711. },
  25712. maw: {
  25713. height: math.unit(11.693, "feet"),
  25714. name: "Maw",
  25715. image: {
  25716. source: "./media/characters/alydar/maw.svg"
  25717. }
  25718. },
  25719. head: {
  25720. height: math.unit(11.693, "feet"),
  25721. name: "Head",
  25722. image: {
  25723. source: "./media/characters/alydar/head.svg"
  25724. }
  25725. },
  25726. headAlt: {
  25727. height: math.unit(12.861, "feet"),
  25728. name: "Head (Alt)",
  25729. image: {
  25730. source: "./media/characters/alydar/head-alt.svg"
  25731. }
  25732. },
  25733. wing: {
  25734. height: math.unit(20.712, "feet"),
  25735. name: "Wing",
  25736. image: {
  25737. source: "./media/characters/alydar/wing.svg"
  25738. }
  25739. },
  25740. wingFeather: {
  25741. height: math.unit(9.662, "feet"),
  25742. name: "Wing Feather",
  25743. image: {
  25744. source: "./media/characters/alydar/wing-feather.svg"
  25745. }
  25746. },
  25747. countourFeather: {
  25748. height: math.unit(4.154, "feet"),
  25749. name: "Contour Feather",
  25750. image: {
  25751. source: "./media/characters/alydar/contour-feather.svg"
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Diplomatic",
  25758. height: math.unit(13, "feet"),
  25759. default: true
  25760. },
  25761. {
  25762. name: "Small",
  25763. height: math.unit(30, "feet")
  25764. },
  25765. {
  25766. name: "Normal",
  25767. height: math.unit(95, "feet"),
  25768. default: true
  25769. },
  25770. {
  25771. name: "Large",
  25772. height: math.unit(285, "feet")
  25773. },
  25774. {
  25775. name: "Incomprehensible",
  25776. height: math.unit(450, "megameters")
  25777. },
  25778. ]
  25779. ))
  25780. characterMakers.push(() => makeCharacter(
  25781. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25782. {
  25783. side: {
  25784. height: math.unit(11, "feet"),
  25785. weight: math.unit(1750, "kg"),
  25786. name: "Side",
  25787. image: {
  25788. source: "./media/characters/selicia/side.svg",
  25789. extra: 440 / 396,
  25790. bottom: 24.8 / 465.979
  25791. }
  25792. },
  25793. maw: {
  25794. height: math.unit(4.665, "feet"),
  25795. name: "Maw",
  25796. image: {
  25797. source: "./media/characters/selicia/maw.svg"
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Normal",
  25804. height: math.unit(11, "feet"),
  25805. default: true
  25806. },
  25807. ]
  25808. ))
  25809. characterMakers.push(() => makeCharacter(
  25810. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25811. {
  25812. side: {
  25813. height: math.unit(2 + 6 / 12, "feet"),
  25814. weight: math.unit(30, "lb"),
  25815. name: "Side",
  25816. image: {
  25817. source: "./media/characters/layla/side.svg",
  25818. extra: 244 / 188,
  25819. bottom: 18.2 / 262.1
  25820. }
  25821. },
  25822. back: {
  25823. height: math.unit(2 + 6 / 12, "feet"),
  25824. weight: math.unit(30, "lb"),
  25825. name: "Back",
  25826. image: {
  25827. source: "./media/characters/layla/back.svg",
  25828. extra: 308 / 241.5,
  25829. bottom: 8.9 / 316.8
  25830. }
  25831. },
  25832. cumming: {
  25833. height: math.unit(2 + 6 / 12, "feet"),
  25834. weight: math.unit(30, "lb"),
  25835. name: "Cumming",
  25836. image: {
  25837. source: "./media/characters/layla/cumming.svg",
  25838. extra: 342 / 279,
  25839. bottom: 595 / 938
  25840. }
  25841. },
  25842. dickFlaccid: {
  25843. height: math.unit(2.595, "feet"),
  25844. name: "Flaccid Genitals",
  25845. image: {
  25846. source: "./media/characters/layla/dick-flaccid.svg"
  25847. }
  25848. },
  25849. dickErect: {
  25850. height: math.unit(2.359, "feet"),
  25851. name: "Erect Genitals",
  25852. image: {
  25853. source: "./media/characters/layla/dick-erect.svg"
  25854. }
  25855. },
  25856. dragon: {
  25857. height: math.unit(40, "feet"),
  25858. name: "Dragon",
  25859. image: {
  25860. source: "./media/characters/layla/dragon.svg",
  25861. extra: 610/535,
  25862. bottom: 367/977
  25863. }
  25864. },
  25865. taur: {
  25866. height: math.unit(30, "feet"),
  25867. name: "Taur",
  25868. image: {
  25869. source: "./media/characters/layla/taur.svg",
  25870. extra: 1268/1199,
  25871. bottom: 112/1380
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Micro",
  25878. height: math.unit(1, "inch")
  25879. },
  25880. {
  25881. name: "Small",
  25882. height: math.unit(1, "foot")
  25883. },
  25884. {
  25885. name: "Normal",
  25886. height: math.unit(2 + 6 / 12, "feet"),
  25887. default: true
  25888. },
  25889. {
  25890. name: "Macro",
  25891. height: math.unit(200, "feet")
  25892. },
  25893. {
  25894. name: "Megamacro",
  25895. height: math.unit(1000, "miles")
  25896. },
  25897. {
  25898. name: "Planetary",
  25899. height: math.unit(8000, "miles")
  25900. },
  25901. {
  25902. name: "True Layla",
  25903. height: math.unit(200000 * 7, "multiverses")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25909. {
  25910. back: {
  25911. height: math.unit(10.5, "feet"),
  25912. weight: math.unit(800, "lb"),
  25913. name: "Back",
  25914. image: {
  25915. source: "./media/characters/knox/back.svg",
  25916. extra: 1486 / 1089,
  25917. bottom: 107 / 1601.4
  25918. }
  25919. },
  25920. side: {
  25921. height: math.unit(10.5, "feet"),
  25922. weight: math.unit(800, "lb"),
  25923. name: "Side",
  25924. image: {
  25925. source: "./media/characters/knox/side.svg",
  25926. extra: 244 / 218,
  25927. bottom: 14 / 260
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Compact",
  25934. height: math.unit(10.5, "feet"),
  25935. default: true
  25936. },
  25937. {
  25938. name: "Dynamax",
  25939. height: math.unit(210, "feet")
  25940. },
  25941. {
  25942. name: "Full Macro",
  25943. height: math.unit(850, "feet")
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(28, "feet"),
  25952. weight: math.unit(10500, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/kayda/front.svg",
  25956. extra: 1536 / 1428,
  25957. bottom: 68.7 / 1603
  25958. }
  25959. },
  25960. back: {
  25961. height: math.unit(28, "feet"),
  25962. weight: math.unit(10500, "lb"),
  25963. name: "Back",
  25964. image: {
  25965. source: "./media/characters/kayda/back.svg",
  25966. extra: 1557 / 1464,
  25967. bottom: 39.5 / 1597.49
  25968. }
  25969. },
  25970. dick: {
  25971. height: math.unit(3.858, "feet"),
  25972. name: "Dick",
  25973. image: {
  25974. source: "./media/characters/kayda/dick.svg"
  25975. }
  25976. },
  25977. },
  25978. [
  25979. {
  25980. name: "Macro",
  25981. height: math.unit(28, "feet"),
  25982. default: true
  25983. },
  25984. ]
  25985. ))
  25986. characterMakers.push(() => makeCharacter(
  25987. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25988. {
  25989. front: {
  25990. height: math.unit(10 + 11 / 12, "feet"),
  25991. weight: math.unit(1400, "lb"),
  25992. name: "Front",
  25993. image: {
  25994. source: "./media/characters/brian/front.svg",
  25995. extra: 737 / 692,
  25996. bottom: 55.4 / 785
  25997. }
  25998. },
  25999. },
  26000. [
  26001. {
  26002. name: "Normal",
  26003. height: math.unit(10 + 11 / 12, "feet"),
  26004. default: true
  26005. },
  26006. ]
  26007. ))
  26008. characterMakers.push(() => makeCharacter(
  26009. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26010. {
  26011. front: {
  26012. height: math.unit(5 + 8 / 12, "feet"),
  26013. weight: math.unit(140, "lb"),
  26014. name: "Front",
  26015. image: {
  26016. source: "./media/characters/khemri/front.svg",
  26017. extra: 4780 / 4059,
  26018. bottom: 80.1 / 4859.25
  26019. }
  26020. },
  26021. },
  26022. [
  26023. {
  26024. name: "Micro",
  26025. height: math.unit(6, "inches")
  26026. },
  26027. {
  26028. name: "Normal",
  26029. height: math.unit(5 + 8 / 12, "feet"),
  26030. default: true
  26031. },
  26032. ]
  26033. ))
  26034. characterMakers.push(() => makeCharacter(
  26035. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26036. {
  26037. front: {
  26038. height: math.unit(13, "feet"),
  26039. weight: math.unit(1700, "lb"),
  26040. name: "Front",
  26041. image: {
  26042. source: "./media/characters/felix-braveheart/front.svg",
  26043. extra: 1222 / 1157,
  26044. bottom: 53.2 / 1280
  26045. }
  26046. },
  26047. back: {
  26048. height: math.unit(13, "feet"),
  26049. weight: math.unit(1700, "lb"),
  26050. name: "Back",
  26051. image: {
  26052. source: "./media/characters/felix-braveheart/back.svg",
  26053. extra: 1277 / 1203,
  26054. bottom: 50.2 / 1327
  26055. }
  26056. },
  26057. feral: {
  26058. height: math.unit(6, "feet"),
  26059. weight: math.unit(400, "lb"),
  26060. name: "Feral",
  26061. image: {
  26062. source: "./media/characters/felix-braveheart/feral.svg",
  26063. extra: 682 / 625,
  26064. bottom: 6.9 / 688
  26065. }
  26066. },
  26067. },
  26068. [
  26069. {
  26070. name: "Normal",
  26071. height: math.unit(13, "feet"),
  26072. default: true
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26078. {
  26079. side: {
  26080. height: math.unit(5 + 11 / 12, "feet"),
  26081. weight: math.unit(1400, "lb"),
  26082. name: "Side",
  26083. image: {
  26084. source: "./media/characters/shadow-blade/side.svg",
  26085. extra: 1726 / 1267,
  26086. bottom: 58.4 / 1785
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(5 + 11 / 12, "feet"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26100. {
  26101. front: {
  26102. height: math.unit(1 + 6 / 12, "feet"),
  26103. weight: math.unit(25, "lb"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/karla-halldor/front.svg",
  26107. extra: 1459 / 1383,
  26108. bottom: 12 / 1472
  26109. }
  26110. },
  26111. },
  26112. [
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(1 + 6 / 12, "feet"),
  26116. default: true
  26117. },
  26118. ]
  26119. ))
  26120. characterMakers.push(() => makeCharacter(
  26121. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26122. {
  26123. front: {
  26124. height: math.unit(6 + 2 / 12, "feet"),
  26125. weight: math.unit(160, "lb"),
  26126. name: "Front",
  26127. image: {
  26128. source: "./media/characters/ariam/front.svg",
  26129. extra: 1073/976,
  26130. bottom: 52/1125
  26131. }
  26132. },
  26133. back: {
  26134. height: math.unit(6 + 2/12, "feet"),
  26135. weight: math.unit(160, "lb"),
  26136. name: "Back",
  26137. image: {
  26138. source: "./media/characters/ariam/back.svg",
  26139. extra: 1103/1023,
  26140. bottom: 9/1112
  26141. }
  26142. },
  26143. dressed: {
  26144. height: math.unit(6 + 2/12, "feet"),
  26145. weight: math.unit(160, "lb"),
  26146. name: "Dressed",
  26147. image: {
  26148. source: "./media/characters/ariam/dressed.svg",
  26149. extra: 1099/1009,
  26150. bottom: 25/1124
  26151. }
  26152. },
  26153. squatting: {
  26154. height: math.unit(4.1, "feet"),
  26155. weight: math.unit(160, "lb"),
  26156. name: "Squatting",
  26157. image: {
  26158. source: "./media/characters/ariam/squatting.svg",
  26159. extra: 2617 / 2112,
  26160. bottom: 61.2 / 2681,
  26161. }
  26162. },
  26163. },
  26164. [
  26165. {
  26166. name: "Normal",
  26167. height: math.unit(6 + 2 / 12, "feet"),
  26168. default: true
  26169. },
  26170. {
  26171. name: "Normal+",
  26172. height: math.unit(4, "meters")
  26173. },
  26174. {
  26175. name: "Macro",
  26176. height: math.unit(50, "meters")
  26177. },
  26178. {
  26179. name: "Macro+",
  26180. height: math.unit(100, "meters")
  26181. },
  26182. {
  26183. name: "Megamacro",
  26184. height: math.unit(20, "km")
  26185. },
  26186. {
  26187. name: "Caretaker",
  26188. height: math.unit(444, "megameters")
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(1.67, "meters"),
  26197. weight: math.unit(140, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26201. extra: 438 / 410,
  26202. bottom: 0.75 / 439
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Shrunken",
  26209. height: math.unit(7.6, "cm")
  26210. },
  26211. {
  26212. name: "Human Scale",
  26213. height: math.unit(1.67, "meters")
  26214. },
  26215. {
  26216. name: "Wolxi Scale",
  26217. height: math.unit(36.7, "meters"),
  26218. default: true
  26219. },
  26220. ]
  26221. ))
  26222. characterMakers.push(() => makeCharacter(
  26223. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26224. {
  26225. front: {
  26226. height: math.unit(1.73, "meters"),
  26227. weight: math.unit(240, "lb"),
  26228. name: "Front",
  26229. image: {
  26230. source: "./media/characters/izue-two-mothers/front.svg",
  26231. extra: 469 / 437,
  26232. bottom: 1.24 / 470.6
  26233. }
  26234. },
  26235. },
  26236. [
  26237. {
  26238. name: "Shrunken",
  26239. height: math.unit(7.86, "cm")
  26240. },
  26241. {
  26242. name: "Human Scale",
  26243. height: math.unit(1.73, "meters")
  26244. },
  26245. {
  26246. name: "Wolxi Scale",
  26247. height: math.unit(38, "meters"),
  26248. default: true
  26249. },
  26250. ]
  26251. ))
  26252. characterMakers.push(() => makeCharacter(
  26253. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26254. {
  26255. front: {
  26256. height: math.unit(1.55, "meters"),
  26257. weight: math.unit(120, "lb"),
  26258. name: "Front",
  26259. image: {
  26260. source: "./media/characters/teeku-love-shack/front.svg",
  26261. extra: 387 / 362,
  26262. bottom: 1.51 / 388
  26263. }
  26264. },
  26265. },
  26266. [
  26267. {
  26268. name: "Shrunken",
  26269. height: math.unit(7, "cm")
  26270. },
  26271. {
  26272. name: "Human Scale",
  26273. height: math.unit(1.55, "meters")
  26274. },
  26275. {
  26276. name: "Wolxi Scale",
  26277. height: math.unit(34.1, "meters"),
  26278. default: true
  26279. },
  26280. ]
  26281. ))
  26282. characterMakers.push(() => makeCharacter(
  26283. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26284. {
  26285. front: {
  26286. height: math.unit(1.83, "meters"),
  26287. weight: math.unit(135, "lb"),
  26288. name: "Front",
  26289. image: {
  26290. source: "./media/characters/dejma-the-red/front.svg",
  26291. extra: 480 / 458,
  26292. bottom: 1.8 / 482
  26293. }
  26294. },
  26295. },
  26296. [
  26297. {
  26298. name: "Shrunken",
  26299. height: math.unit(8.3, "cm")
  26300. },
  26301. {
  26302. name: "Human Scale",
  26303. height: math.unit(1.83, "meters")
  26304. },
  26305. {
  26306. name: "Wolxi Scale",
  26307. height: math.unit(40, "meters"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(1.78, "meters"),
  26317. weight: math.unit(65, "kg"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/aki/front.svg",
  26321. extra: 452 / 415
  26322. }
  26323. },
  26324. frontNsfw: {
  26325. height: math.unit(1.78, "meters"),
  26326. weight: math.unit(65, "kg"),
  26327. name: "Front (NSFW)",
  26328. image: {
  26329. source: "./media/characters/aki/front-nsfw.svg",
  26330. extra: 452 / 415
  26331. }
  26332. },
  26333. back: {
  26334. height: math.unit(1.78, "meters"),
  26335. weight: math.unit(65, "kg"),
  26336. name: "Back",
  26337. image: {
  26338. source: "./media/characters/aki/back.svg",
  26339. extra: 452 / 415
  26340. }
  26341. },
  26342. rump: {
  26343. height: math.unit(2.05, "feet"),
  26344. name: "Rump",
  26345. image: {
  26346. source: "./media/characters/aki/rump.svg"
  26347. }
  26348. },
  26349. dick: {
  26350. height: math.unit(0.95, "feet"),
  26351. name: "Dick",
  26352. image: {
  26353. source: "./media/characters/aki/dick.svg"
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Micro",
  26360. height: math.unit(15, "cm")
  26361. },
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(178, "cm"),
  26365. default: true
  26366. },
  26367. {
  26368. name: "Macro",
  26369. height: math.unit(214, "m")
  26370. },
  26371. {
  26372. name: "Macro+",
  26373. height: math.unit(534, "m")
  26374. },
  26375. ]
  26376. ))
  26377. characterMakers.push(() => makeCharacter(
  26378. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26379. {
  26380. front: {
  26381. height: math.unit(5 + 5 / 12, "feet"),
  26382. weight: math.unit(120, "lb"),
  26383. name: "Front",
  26384. image: {
  26385. source: "./media/characters/ari/front.svg",
  26386. extra: 1550/1471,
  26387. bottom: 39/1589
  26388. }
  26389. },
  26390. },
  26391. [
  26392. {
  26393. name: "Normal",
  26394. height: math.unit(5 + 5 / 12, "feet")
  26395. },
  26396. {
  26397. name: "Macro",
  26398. height: math.unit(100, "feet"),
  26399. default: true
  26400. },
  26401. {
  26402. name: "Megamacro",
  26403. height: math.unit(100, "miles")
  26404. },
  26405. {
  26406. name: "Gigamacro",
  26407. height: math.unit(80000, "miles")
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26413. {
  26414. side: {
  26415. height: math.unit(9, "feet"),
  26416. weight: math.unit(400, "kg"),
  26417. name: "Side",
  26418. image: {
  26419. source: "./media/characters/bolt/side.svg",
  26420. extra: 1126 / 896,
  26421. bottom: 60 / 1187.3,
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Micro",
  26428. height: math.unit(5, "inches")
  26429. },
  26430. {
  26431. name: "Normal",
  26432. height: math.unit(9, "feet"),
  26433. default: true
  26434. },
  26435. {
  26436. name: "Macro",
  26437. height: math.unit(700, "feet")
  26438. },
  26439. {
  26440. name: "Max Size",
  26441. height: math.unit(1.52e22, "yottameters")
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(4.3, "meters"),
  26450. weight: math.unit(3, "tons"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/draekon-sylviar/front.svg",
  26454. extra: 2072/1512,
  26455. bottom: 74/2146
  26456. }
  26457. },
  26458. back: {
  26459. height: math.unit(4.3, "meters"),
  26460. weight: math.unit(3, "tons"),
  26461. name: "Back",
  26462. image: {
  26463. source: "./media/characters/draekon-sylviar/back.svg",
  26464. extra: 1639/1483,
  26465. bottom: 41/1680
  26466. }
  26467. },
  26468. feral: {
  26469. height: math.unit(1.15, "meters"),
  26470. weight: math.unit(3, "tons"),
  26471. name: "Feral",
  26472. image: {
  26473. source: "./media/characters/draekon-sylviar/feral.svg",
  26474. extra: 1033/395,
  26475. bottom: 130/1163
  26476. }
  26477. },
  26478. maw: {
  26479. height: math.unit(1.3, "meters"),
  26480. name: "Maw",
  26481. image: {
  26482. source: "./media/characters/draekon-sylviar/maw.svg"
  26483. }
  26484. },
  26485. mawSeparated: {
  26486. height: math.unit(1.53, "meters"),
  26487. name: "Separated Maw",
  26488. image: {
  26489. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26490. }
  26491. },
  26492. tail: {
  26493. height: math.unit(1.15, "meters"),
  26494. name: "Tail",
  26495. image: {
  26496. source: "./media/characters/draekon-sylviar/tail.svg"
  26497. }
  26498. },
  26499. tailDick: {
  26500. height: math.unit(1.15, "meters"),
  26501. name: "Tail (Dick)",
  26502. image: {
  26503. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26504. }
  26505. },
  26506. tailDickSeparated: {
  26507. height: math.unit(1.19, "meters"),
  26508. name: "Tail (Separated Dick)",
  26509. image: {
  26510. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26511. }
  26512. },
  26513. slit: {
  26514. height: math.unit(1, "meters"),
  26515. name: "Slit",
  26516. image: {
  26517. source: "./media/characters/draekon-sylviar/slit.svg"
  26518. }
  26519. },
  26520. dick: {
  26521. height: math.unit(1.15, "meters"),
  26522. name: "Dick",
  26523. image: {
  26524. source: "./media/characters/draekon-sylviar/dick.svg"
  26525. }
  26526. },
  26527. dickSeparated: {
  26528. height: math.unit(1.1, "meters"),
  26529. name: "Separated Dick",
  26530. image: {
  26531. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26532. }
  26533. },
  26534. sheath: {
  26535. height: math.unit(1.15, "meters"),
  26536. name: "Sheath",
  26537. image: {
  26538. source: "./media/characters/draekon-sylviar/sheath.svg"
  26539. }
  26540. },
  26541. },
  26542. [
  26543. {
  26544. name: "Small",
  26545. height: math.unit(4.53 / 2, "meters"),
  26546. default: true
  26547. },
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(4.53, "meters"),
  26551. default: true
  26552. },
  26553. {
  26554. name: "Large",
  26555. height: math.unit(4.53 * 2, "meters"),
  26556. },
  26557. ]
  26558. ))
  26559. characterMakers.push(() => makeCharacter(
  26560. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26561. {
  26562. front: {
  26563. height: math.unit(6 + 2 / 12, "feet"),
  26564. weight: math.unit(180, "lb"),
  26565. name: "Front",
  26566. image: {
  26567. source: "./media/characters/brawler/front.svg",
  26568. extra: 3301 / 3027,
  26569. bottom: 138 / 3439
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(6 + 2 / 12, "feet"),
  26577. default: true
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(11, "feet"),
  26586. weight: math.unit(1000, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/alex/front.svg",
  26590. bottom: 44.5 / 620
  26591. }
  26592. },
  26593. },
  26594. [
  26595. {
  26596. name: "Micro",
  26597. height: math.unit(5, "inches")
  26598. },
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(11, "feet"),
  26602. default: true
  26603. },
  26604. {
  26605. name: "Macro",
  26606. height: math.unit(9.5e9, "feet")
  26607. },
  26608. {
  26609. name: "Max Size",
  26610. height: math.unit(1.4e283, "yottameters")
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26616. {
  26617. female: {
  26618. height: math.unit(29.9, "m"),
  26619. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26620. name: "Female",
  26621. image: {
  26622. source: "./media/characters/zenari/female.svg",
  26623. extra: 3281.6 / 3217,
  26624. bottom: 72.2 / 3353
  26625. }
  26626. },
  26627. male: {
  26628. height: math.unit(27.7, "m"),
  26629. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26630. name: "Male",
  26631. image: {
  26632. source: "./media/characters/zenari/male.svg",
  26633. extra: 3008 / 2991,
  26634. bottom: 54.6 / 3069
  26635. }
  26636. },
  26637. },
  26638. [
  26639. {
  26640. name: "Macro",
  26641. height: math.unit(29.7, "meters"),
  26642. default: true
  26643. },
  26644. ]
  26645. ))
  26646. characterMakers.push(() => makeCharacter(
  26647. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26648. {
  26649. female: {
  26650. height: math.unit(23.8, "m"),
  26651. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26652. name: "Female",
  26653. image: {
  26654. source: "./media/characters/mactarian/female.svg",
  26655. extra: 2662 / 2569,
  26656. bottom: 73 / 2736
  26657. }
  26658. },
  26659. male: {
  26660. height: math.unit(23.8, "m"),
  26661. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26662. name: "Male",
  26663. image: {
  26664. source: "./media/characters/mactarian/male.svg",
  26665. extra: 2673 / 2600,
  26666. bottom: 76 / 2750
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Macro",
  26673. height: math.unit(23.8, "meters"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26680. {
  26681. female: {
  26682. height: math.unit(19.3, "m"),
  26683. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26684. name: "Female",
  26685. image: {
  26686. source: "./media/characters/umok/female.svg",
  26687. extra: 2186 / 2078,
  26688. bottom: 87 / 2277
  26689. }
  26690. },
  26691. male: {
  26692. height: math.unit(19.5, "m"),
  26693. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26694. name: "Male",
  26695. image: {
  26696. source: "./media/characters/umok/male.svg",
  26697. extra: 2233 / 2140,
  26698. bottom: 24.4 / 2258
  26699. }
  26700. },
  26701. },
  26702. [
  26703. {
  26704. name: "Macro",
  26705. height: math.unit(19.3, "meters"),
  26706. default: true
  26707. },
  26708. ]
  26709. ))
  26710. characterMakers.push(() => makeCharacter(
  26711. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26712. {
  26713. female: {
  26714. height: math.unit(26.15, "m"),
  26715. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26716. name: "Female",
  26717. image: {
  26718. source: "./media/characters/joraxian/female.svg",
  26719. extra: 2912 / 2824,
  26720. bottom: 36 / 2956
  26721. }
  26722. },
  26723. male: {
  26724. height: math.unit(25.4, "m"),
  26725. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26726. name: "Male",
  26727. image: {
  26728. source: "./media/characters/joraxian/male.svg",
  26729. extra: 2877 / 2721,
  26730. bottom: 82 / 2967
  26731. }
  26732. },
  26733. },
  26734. [
  26735. {
  26736. name: "Macro",
  26737. height: math.unit(26.15, "meters"),
  26738. default: true
  26739. },
  26740. ]
  26741. ))
  26742. characterMakers.push(() => makeCharacter(
  26743. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26744. {
  26745. female: {
  26746. height: math.unit(21.6, "m"),
  26747. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26748. name: "Female",
  26749. image: {
  26750. source: "./media/characters/sthara/female.svg",
  26751. extra: 2516 / 2347,
  26752. bottom: 21.5 / 2537
  26753. }
  26754. },
  26755. male: {
  26756. height: math.unit(24, "m"),
  26757. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26758. name: "Male",
  26759. image: {
  26760. source: "./media/characters/sthara/male.svg",
  26761. extra: 2732 / 2607,
  26762. bottom: 23 / 2732
  26763. }
  26764. },
  26765. },
  26766. [
  26767. {
  26768. name: "Macro",
  26769. height: math.unit(21.6, "meters"),
  26770. default: true
  26771. },
  26772. ]
  26773. ))
  26774. characterMakers.push(() => makeCharacter(
  26775. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26776. {
  26777. front: {
  26778. height: math.unit(6 + 4 / 12, "feet"),
  26779. weight: math.unit(175, "lb"),
  26780. name: "Front",
  26781. image: {
  26782. source: "./media/characters/luka-bryzant/front.svg",
  26783. extra: 311 / 289,
  26784. bottom: 4 / 315
  26785. }
  26786. },
  26787. back: {
  26788. height: math.unit(6 + 4 / 12, "feet"),
  26789. weight: math.unit(175, "lb"),
  26790. name: "Back",
  26791. image: {
  26792. source: "./media/characters/luka-bryzant/back.svg",
  26793. extra: 311 / 289,
  26794. bottom: 3.8 / 313.7
  26795. }
  26796. },
  26797. },
  26798. [
  26799. {
  26800. name: "Micro",
  26801. height: math.unit(10, "inches")
  26802. },
  26803. {
  26804. name: "Normal",
  26805. height: math.unit(6 + 4 / 12, "feet"),
  26806. default: true
  26807. },
  26808. {
  26809. name: "Large",
  26810. height: math.unit(12, "feet")
  26811. },
  26812. ]
  26813. ))
  26814. characterMakers.push(() => makeCharacter(
  26815. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26816. {
  26817. front: {
  26818. height: math.unit(5 + 7 / 12, "feet"),
  26819. weight: math.unit(185, "lb"),
  26820. name: "Front",
  26821. image: {
  26822. source: "./media/characters/aman-aquila/front.svg",
  26823. extra: 1013 / 976,
  26824. bottom: 45.6 / 1057
  26825. }
  26826. },
  26827. side: {
  26828. height: math.unit(5 + 7 / 12, "feet"),
  26829. weight: math.unit(185, "lb"),
  26830. name: "Side",
  26831. image: {
  26832. source: "./media/characters/aman-aquila/side.svg",
  26833. extra: 1054 / 1011,
  26834. bottom: 15 / 1070
  26835. }
  26836. },
  26837. back: {
  26838. height: math.unit(5 + 7 / 12, "feet"),
  26839. weight: math.unit(185, "lb"),
  26840. name: "Back",
  26841. image: {
  26842. source: "./media/characters/aman-aquila/back.svg",
  26843. extra: 1026 / 970,
  26844. bottom: 12 / 1039
  26845. }
  26846. },
  26847. head: {
  26848. height: math.unit(1.211, "feet"),
  26849. name: "Head",
  26850. image: {
  26851. source: "./media/characters/aman-aquila/head.svg",
  26852. }
  26853. },
  26854. },
  26855. [
  26856. {
  26857. name: "Minimicro",
  26858. height: math.unit(0.057, "inches")
  26859. },
  26860. {
  26861. name: "Micro",
  26862. height: math.unit(7, "inches")
  26863. },
  26864. {
  26865. name: "Mini",
  26866. height: math.unit(3 + 7 / 12, "feet")
  26867. },
  26868. {
  26869. name: "Normal",
  26870. height: math.unit(5 + 7 / 12, "feet"),
  26871. default: true
  26872. },
  26873. {
  26874. name: "Macro",
  26875. height: math.unit(157 + 7 / 12, "feet")
  26876. },
  26877. {
  26878. name: "Megamacro",
  26879. height: math.unit(1557 + 7 / 12, "feet")
  26880. },
  26881. {
  26882. name: "Gigamacro",
  26883. height: math.unit(15557 + 7 / 12, "feet")
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(3 + 2 / 12, "inches"),
  26892. weight: math.unit(0.3, "ounces"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/hiphae/front.svg",
  26896. extra: 1931 / 1683,
  26897. bottom: 24 / 1955
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(3 + 1 / 2, "inches"),
  26905. default: true
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26911. {
  26912. front: {
  26913. height: math.unit(5 + 10 / 12, "feet"),
  26914. weight: math.unit(165, "lb"),
  26915. name: "Front",
  26916. image: {
  26917. source: "./media/characters/nicky/front.svg",
  26918. extra: 3144 / 2886,
  26919. bottom: 45.6 / 3192
  26920. }
  26921. },
  26922. back: {
  26923. height: math.unit(5 + 10 / 12, "feet"),
  26924. weight: math.unit(165, "lb"),
  26925. name: "Back",
  26926. image: {
  26927. source: "./media/characters/nicky/back.svg",
  26928. extra: 3055 / 2804,
  26929. bottom: 28.4 / 3087
  26930. }
  26931. },
  26932. frontclothed: {
  26933. height: math.unit(5 + 10 / 12, "feet"),
  26934. weight: math.unit(165, "lb"),
  26935. name: "Front-clothed",
  26936. image: {
  26937. source: "./media/characters/nicky/front-clothed.svg",
  26938. extra: 3184.9 / 2926.9,
  26939. bottom: 86.5 / 3239.9
  26940. }
  26941. },
  26942. foot: {
  26943. height: math.unit(1.16, "feet"),
  26944. name: "Foot",
  26945. image: {
  26946. source: "./media/characters/nicky/foot.svg"
  26947. }
  26948. },
  26949. feet: {
  26950. height: math.unit(1.34, "feet"),
  26951. name: "Feet",
  26952. image: {
  26953. source: "./media/characters/nicky/feet.svg"
  26954. }
  26955. },
  26956. maw: {
  26957. height: math.unit(0.9, "feet"),
  26958. name: "Maw",
  26959. image: {
  26960. source: "./media/characters/nicky/maw.svg"
  26961. }
  26962. },
  26963. },
  26964. [
  26965. {
  26966. name: "Normal",
  26967. height: math.unit(5 + 10 / 12, "feet"),
  26968. default: true
  26969. },
  26970. {
  26971. name: "Macro",
  26972. height: math.unit(60, "feet")
  26973. },
  26974. {
  26975. name: "Megamacro",
  26976. height: math.unit(1, "mile")
  26977. },
  26978. ]
  26979. ))
  26980. characterMakers.push(() => makeCharacter(
  26981. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26982. {
  26983. side: {
  26984. height: math.unit(10, "feet"),
  26985. weight: math.unit(600, "lb"),
  26986. name: "Side",
  26987. image: {
  26988. source: "./media/characters/blair/side.svg",
  26989. bottom: 16.6 / 475,
  26990. extra: 458 / 431
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Micro",
  26997. height: math.unit(8, "inches")
  26998. },
  26999. {
  27000. name: "Normal",
  27001. height: math.unit(10, "feet"),
  27002. default: true
  27003. },
  27004. {
  27005. name: "Macro",
  27006. height: math.unit(180, "feet")
  27007. },
  27008. ]
  27009. ))
  27010. characterMakers.push(() => makeCharacter(
  27011. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27012. {
  27013. front: {
  27014. height: math.unit(5 + 4 / 12, "feet"),
  27015. weight: math.unit(125, "lb"),
  27016. name: "Front",
  27017. image: {
  27018. source: "./media/characters/fisher/front.svg",
  27019. extra: 444 / 390,
  27020. bottom: 2 / 444.8
  27021. }
  27022. },
  27023. },
  27024. [
  27025. {
  27026. name: "Micro",
  27027. height: math.unit(4, "inches")
  27028. },
  27029. {
  27030. name: "Normal",
  27031. height: math.unit(5 + 4 / 12, "feet"),
  27032. default: true
  27033. },
  27034. {
  27035. name: "Macro",
  27036. height: math.unit(100, "feet")
  27037. },
  27038. ]
  27039. ))
  27040. characterMakers.push(() => makeCharacter(
  27041. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27042. {
  27043. front: {
  27044. height: math.unit(6.71, "feet"),
  27045. weight: math.unit(200, "lb"),
  27046. preyCapacity: math.unit(1000000, "people"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/gliss/front.svg",
  27050. extra: 2347 / 2231,
  27051. bottom: 113 / 2462
  27052. }
  27053. },
  27054. hammerspaceSize: {
  27055. height: math.unit(6.71 * 717, "feet"),
  27056. weight: math.unit(200, "lb"),
  27057. preyCapacity: math.unit(1000000, "people"),
  27058. name: "Hammerspace Size",
  27059. image: {
  27060. source: "./media/characters/gliss/front.svg",
  27061. extra: 2347 / 2231,
  27062. bottom: 113 / 2462
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Normal",
  27069. height: math.unit(6.71, "feet"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27076. {
  27077. side: {
  27078. height: math.unit(1.44, "m"),
  27079. weight: math.unit(80, "kg"),
  27080. name: "Side",
  27081. image: {
  27082. source: "./media/characters/dune-anderson/side.svg",
  27083. bottom: 49 / 1426
  27084. }
  27085. },
  27086. },
  27087. [
  27088. {
  27089. name: "Wolf-sized",
  27090. height: math.unit(1.44, "meters")
  27091. },
  27092. {
  27093. name: "Normal",
  27094. height: math.unit(5.05, "meters"),
  27095. default: true
  27096. },
  27097. {
  27098. name: "Big",
  27099. height: math.unit(14.4, "meters")
  27100. },
  27101. {
  27102. name: "Huge",
  27103. height: math.unit(144, "meters")
  27104. },
  27105. ]
  27106. ))
  27107. characterMakers.push(() => makeCharacter(
  27108. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27109. {
  27110. front: {
  27111. height: math.unit(7, "feet"),
  27112. weight: math.unit(425, "lb"),
  27113. name: "Front",
  27114. image: {
  27115. source: "./media/characters/hind/front.svg",
  27116. extra: 2091 / 1860,
  27117. bottom: 129 / 2220
  27118. }
  27119. },
  27120. back: {
  27121. height: math.unit(7, "feet"),
  27122. weight: math.unit(425, "lb"),
  27123. name: "Back",
  27124. image: {
  27125. source: "./media/characters/hind/back.svg",
  27126. extra: 2091 / 1860,
  27127. bottom: 24.6 / 2309
  27128. }
  27129. },
  27130. tail: {
  27131. height: math.unit(2.8, "feet"),
  27132. name: "Tail",
  27133. image: {
  27134. source: "./media/characters/hind/tail.svg"
  27135. }
  27136. },
  27137. head: {
  27138. height: math.unit(2.55, "feet"),
  27139. name: "Head",
  27140. image: {
  27141. source: "./media/characters/hind/head.svg"
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "XS",
  27148. height: math.unit(0.7, "feet")
  27149. },
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(7, "feet"),
  27153. default: true
  27154. },
  27155. {
  27156. name: "XL",
  27157. height: math.unit(70, "feet")
  27158. },
  27159. ]
  27160. ))
  27161. characterMakers.push(() => makeCharacter(
  27162. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27163. {
  27164. front: {
  27165. height: math.unit(2.1, "meters"),
  27166. weight: math.unit(150, "lb"),
  27167. name: "Front",
  27168. image: {
  27169. source: "./media/characters/tharquench-sizestealer/front.svg",
  27170. extra: 1605/1470,
  27171. bottom: 36/1641
  27172. }
  27173. },
  27174. frontAlt: {
  27175. height: math.unit(2.1, "meters"),
  27176. weight: math.unit(150, "lb"),
  27177. name: "Front (Alt)",
  27178. image: {
  27179. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27180. extra: 2318 / 2063,
  27181. bottom: 93.4 / 2410
  27182. }
  27183. },
  27184. },
  27185. [
  27186. {
  27187. name: "Nano",
  27188. height: math.unit(1, "mm")
  27189. },
  27190. {
  27191. name: "Micro",
  27192. height: math.unit(1, "cm")
  27193. },
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(2.1, "meters"),
  27197. default: true
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(7 + 5 / 12, "feet"),
  27206. weight: math.unit(357, "lb"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/solex-draconov/front.svg",
  27210. extra: 1993 / 1865,
  27211. bottom: 117 / 2111
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Natural Height",
  27218. height: math.unit(7 + 5 / 12, "feet"),
  27219. default: true
  27220. },
  27221. {
  27222. name: "Macro",
  27223. height: math.unit(350, "feet")
  27224. },
  27225. {
  27226. name: "Macro+",
  27227. height: math.unit(1000, "feet")
  27228. },
  27229. {
  27230. name: "Megamacro",
  27231. height: math.unit(20, "km")
  27232. },
  27233. {
  27234. name: "Megamacro+",
  27235. height: math.unit(1000, "km")
  27236. },
  27237. {
  27238. name: "Gigamacro",
  27239. height: math.unit(2.5, "Gm")
  27240. },
  27241. {
  27242. name: "Teramacro",
  27243. height: math.unit(15, "Tm")
  27244. },
  27245. {
  27246. name: "Galactic",
  27247. height: math.unit(30, "Zm")
  27248. },
  27249. {
  27250. name: "Universal",
  27251. height: math.unit(21000, "Ym")
  27252. },
  27253. {
  27254. name: "Omniversal",
  27255. height: math.unit(9.861e50, "Ym")
  27256. },
  27257. {
  27258. name: "Existential",
  27259. height: math.unit(1e300, "meters")
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27265. {
  27266. side: {
  27267. height: math.unit(25, "feet"),
  27268. weight: math.unit(90000, "lb"),
  27269. name: "Side",
  27270. image: {
  27271. source: "./media/characters/mandarax/side.svg",
  27272. extra: 614 / 332,
  27273. bottom: 55 / 630
  27274. }
  27275. },
  27276. lounging: {
  27277. height: math.unit(15.4, "feet"),
  27278. weight: math.unit(90000, "lb"),
  27279. name: "Lounging",
  27280. image: {
  27281. source: "./media/characters/mandarax/lounging.svg",
  27282. extra: 817/609,
  27283. bottom: 685/1502
  27284. }
  27285. },
  27286. head: {
  27287. height: math.unit(11.4, "feet"),
  27288. name: "Head",
  27289. image: {
  27290. source: "./media/characters/mandarax/head.svg"
  27291. }
  27292. },
  27293. belly: {
  27294. height: math.unit(33, "feet"),
  27295. name: "Belly",
  27296. preyCapacity: math.unit(500, "people"),
  27297. image: {
  27298. source: "./media/characters/mandarax/belly.svg"
  27299. }
  27300. },
  27301. dick: {
  27302. height: math.unit(8.46, "feet"),
  27303. name: "Dick",
  27304. image: {
  27305. source: "./media/characters/mandarax/dick.svg"
  27306. }
  27307. },
  27308. top: {
  27309. height: math.unit(28, "meters"),
  27310. name: "Top",
  27311. image: {
  27312. source: "./media/characters/mandarax/top.svg"
  27313. }
  27314. },
  27315. },
  27316. [
  27317. {
  27318. name: "Normal",
  27319. height: math.unit(25, "feet"),
  27320. default: true
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27326. {
  27327. front: {
  27328. height: math.unit(5, "feet"),
  27329. weight: math.unit(90, "lb"),
  27330. name: "Front",
  27331. image: {
  27332. source: "./media/characters/pixil/front.svg",
  27333. extra: 2000 / 1618,
  27334. bottom: 12.3 / 2011
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Normal",
  27341. height: math.unit(5, "feet"),
  27342. default: true
  27343. },
  27344. {
  27345. name: "Megamacro",
  27346. height: math.unit(10, "miles"),
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(7 + 2 / 12, "feet"),
  27355. weight: math.unit(200, "lb"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/angel/front.svg",
  27359. extra: 1830 / 1737,
  27360. bottom: 22.6 / 1854,
  27361. }
  27362. },
  27363. },
  27364. [
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(7 + 2 / 12, "feet"),
  27368. default: true
  27369. },
  27370. {
  27371. name: "Macro",
  27372. height: math.unit(1000, "feet")
  27373. },
  27374. {
  27375. name: "Megamacro",
  27376. height: math.unit(2, "miles")
  27377. },
  27378. {
  27379. name: "Gigamacro",
  27380. height: math.unit(20, "earths")
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(5, "feet"),
  27389. weight: math.unit(180, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/mekana/front.svg",
  27393. extra: 1671 / 1605,
  27394. bottom: 3.5 / 1691
  27395. }
  27396. },
  27397. side: {
  27398. height: math.unit(5, "feet"),
  27399. weight: math.unit(180, "lb"),
  27400. name: "Side",
  27401. image: {
  27402. source: "./media/characters/mekana/side.svg",
  27403. extra: 1671 / 1605,
  27404. bottom: 3.5 / 1691
  27405. }
  27406. },
  27407. back: {
  27408. height: math.unit(5, "feet"),
  27409. weight: math.unit(180, "lb"),
  27410. name: "Back",
  27411. image: {
  27412. source: "./media/characters/mekana/back.svg",
  27413. extra: 1671 / 1605,
  27414. bottom: 3.5 / 1691
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(5, "feet"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(4 + 6 / 12, "feet"),
  27431. weight: math.unit(80, "lb"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/pixie/front.svg",
  27435. extra: 1924 / 1825,
  27436. bottom: 22.4 / 1946
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(4 + 6 / 12, "feet"),
  27444. default: true
  27445. },
  27446. {
  27447. name: "Macro",
  27448. height: math.unit(40, "feet")
  27449. },
  27450. ]
  27451. ))
  27452. characterMakers.push(() => makeCharacter(
  27453. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27454. {
  27455. front: {
  27456. height: math.unit(2.1, "meters"),
  27457. weight: math.unit(200, "lb"),
  27458. name: "Front",
  27459. image: {
  27460. source: "./media/characters/the-lascivious/front.svg",
  27461. extra: 1 / 0.893,
  27462. bottom: 3.5 / 573.7
  27463. }
  27464. },
  27465. },
  27466. [
  27467. {
  27468. name: "Human Scale",
  27469. height: math.unit(2.1, "meters")
  27470. },
  27471. {
  27472. name: "Wolxi Scale",
  27473. height: math.unit(46.2, "m"),
  27474. default: true
  27475. },
  27476. {
  27477. name: "Boinker of Buildings",
  27478. height: math.unit(10, "km")
  27479. },
  27480. {
  27481. name: "Shagger of Skyscrapers",
  27482. height: math.unit(40, "km")
  27483. },
  27484. {
  27485. name: "Banger of Boroughs",
  27486. height: math.unit(4000, "km")
  27487. },
  27488. {
  27489. name: "Screwer of States",
  27490. height: math.unit(100000, "km")
  27491. },
  27492. {
  27493. name: "Pounder of Planets",
  27494. height: math.unit(2000000, "km")
  27495. },
  27496. ]
  27497. ))
  27498. characterMakers.push(() => makeCharacter(
  27499. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27500. {
  27501. front: {
  27502. height: math.unit(6, "feet"),
  27503. weight: math.unit(150, "lb"),
  27504. name: "Front",
  27505. image: {
  27506. source: "./media/characters/aj/front.svg",
  27507. extra: 2039 / 1562,
  27508. bottom: 40 / 2079
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Normal",
  27515. height: math.unit(11 + 6 / 12, "feet"),
  27516. default: true
  27517. },
  27518. {
  27519. name: "Megamacro",
  27520. height: math.unit(60, "megameters")
  27521. },
  27522. ]
  27523. ))
  27524. characterMakers.push(() => makeCharacter(
  27525. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27526. {
  27527. side: {
  27528. height: math.unit(31 + 8 / 12, "feet"),
  27529. weight: math.unit(75000, "kg"),
  27530. name: "Side",
  27531. image: {
  27532. source: "./media/characters/koros/side.svg",
  27533. extra: 1442 / 1297,
  27534. bottom: 122.7 / 1562
  27535. }
  27536. },
  27537. dicksKingsCrown: {
  27538. height: math.unit(6, "feet"),
  27539. name: "Dicks (King's Crown)",
  27540. image: {
  27541. source: "./media/characters/koros/dicks-kings-crown.svg"
  27542. }
  27543. },
  27544. dicksTailSet: {
  27545. height: math.unit(3, "feet"),
  27546. name: "Dicks (Tail Set)",
  27547. image: {
  27548. source: "./media/characters/koros/dicks-tail-set.svg"
  27549. }
  27550. },
  27551. dickCumming: {
  27552. height: math.unit(7.98, "feet"),
  27553. name: "Dick (Cumming)",
  27554. image: {
  27555. source: "./media/characters/koros/dick-cumming.svg"
  27556. }
  27557. },
  27558. dicksBack: {
  27559. height: math.unit(5.9, "feet"),
  27560. name: "Dicks (Back)",
  27561. image: {
  27562. source: "./media/characters/koros/dicks-back.svg"
  27563. }
  27564. },
  27565. dicksFront: {
  27566. height: math.unit(3.72, "feet"),
  27567. name: "Dicks (Front)",
  27568. image: {
  27569. source: "./media/characters/koros/dicks-front.svg"
  27570. }
  27571. },
  27572. dicksPeeking: {
  27573. height: math.unit(3.0, "feet"),
  27574. name: "Dicks (Peeking)",
  27575. image: {
  27576. source: "./media/characters/koros/dicks-peeking.svg"
  27577. }
  27578. },
  27579. eye: {
  27580. height: math.unit(1.7, "feet"),
  27581. name: "Eye",
  27582. image: {
  27583. source: "./media/characters/koros/eye.svg"
  27584. }
  27585. },
  27586. headFront: {
  27587. height: math.unit(11.69, "feet"),
  27588. name: "Head (Front)",
  27589. image: {
  27590. source: "./media/characters/koros/head-front.svg"
  27591. }
  27592. },
  27593. headSide: {
  27594. height: math.unit(14, "feet"),
  27595. name: "Head (Side)",
  27596. image: {
  27597. source: "./media/characters/koros/head-side.svg"
  27598. }
  27599. },
  27600. leg: {
  27601. height: math.unit(17, "feet"),
  27602. name: "Leg",
  27603. image: {
  27604. source: "./media/characters/koros/leg.svg"
  27605. }
  27606. },
  27607. mawSide: {
  27608. height: math.unit(12.8, "feet"),
  27609. name: "Maw (Side)",
  27610. image: {
  27611. source: "./media/characters/koros/maw-side.svg"
  27612. }
  27613. },
  27614. mawSpitting: {
  27615. height: math.unit(17, "feet"),
  27616. name: "Maw (Spitting)",
  27617. image: {
  27618. source: "./media/characters/koros/maw-spitting.svg"
  27619. }
  27620. },
  27621. slit: {
  27622. height: math.unit(2.8, "feet"),
  27623. name: "Slit",
  27624. image: {
  27625. source: "./media/characters/koros/slit.svg"
  27626. }
  27627. },
  27628. stomach: {
  27629. height: math.unit(6.8, "feet"),
  27630. preyCapacity: math.unit(20, "people"),
  27631. name: "Stomach",
  27632. image: {
  27633. source: "./media/characters/koros/stomach.svg"
  27634. }
  27635. },
  27636. wingspanBottom: {
  27637. height: math.unit(114, "feet"),
  27638. name: "Wingspan (Bottom)",
  27639. image: {
  27640. source: "./media/characters/koros/wingspan-bottom.svg"
  27641. }
  27642. },
  27643. wingspanTop: {
  27644. height: math.unit(104, "feet"),
  27645. name: "Wingspan (Top)",
  27646. image: {
  27647. source: "./media/characters/koros/wingspan-top.svg"
  27648. }
  27649. },
  27650. },
  27651. [
  27652. {
  27653. name: "Normal",
  27654. height: math.unit(31 + 8 / 12, "feet"),
  27655. default: true
  27656. },
  27657. ]
  27658. ))
  27659. characterMakers.push(() => makeCharacter(
  27660. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27661. {
  27662. front: {
  27663. height: math.unit(18 + 5 / 12, "feet"),
  27664. weight: math.unit(3750, "kg"),
  27665. name: "Front",
  27666. image: {
  27667. source: "./media/characters/vexx/front.svg",
  27668. extra: 426 / 396,
  27669. bottom: 31.5 / 458
  27670. }
  27671. },
  27672. maw: {
  27673. height: math.unit(6, "feet"),
  27674. name: "Maw",
  27675. image: {
  27676. source: "./media/characters/vexx/maw.svg"
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(18 + 5 / 12, "feet"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(17 + 6 / 12, "feet"),
  27693. weight: math.unit(150, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/baadra/front.svg",
  27697. extra: 1694/1553,
  27698. bottom: 179/1873
  27699. }
  27700. },
  27701. frontAlt: {
  27702. height: math.unit(17 + 6 / 12, "feet"),
  27703. weight: math.unit(150, "lb"),
  27704. name: "Front (Alt)",
  27705. image: {
  27706. source: "./media/characters/baadra/front-alt.svg",
  27707. extra: 3137 / 2890,
  27708. bottom: 168.4 / 3305
  27709. }
  27710. },
  27711. back: {
  27712. height: math.unit(17 + 6 / 12, "feet"),
  27713. weight: math.unit(150, "lb"),
  27714. name: "Back",
  27715. image: {
  27716. source: "./media/characters/baadra/back.svg",
  27717. extra: 3142 / 2890,
  27718. bottom: 220 / 3371
  27719. }
  27720. },
  27721. head: {
  27722. height: math.unit(5.45, "feet"),
  27723. name: "Head",
  27724. image: {
  27725. source: "./media/characters/baadra/head.svg"
  27726. }
  27727. },
  27728. headAngry: {
  27729. height: math.unit(4.95, "feet"),
  27730. name: "Head (Angry)",
  27731. image: {
  27732. source: "./media/characters/baadra/head-angry.svg"
  27733. }
  27734. },
  27735. headOpen: {
  27736. height: math.unit(6, "feet"),
  27737. name: "Head (Open)",
  27738. image: {
  27739. source: "./media/characters/baadra/head-open.svg"
  27740. }
  27741. },
  27742. },
  27743. [
  27744. {
  27745. name: "Normal",
  27746. height: math.unit(17 + 6 / 12, "feet"),
  27747. default: true
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27753. {
  27754. front: {
  27755. height: math.unit(7 + 3 / 12, "feet"),
  27756. weight: math.unit(180, "lb"),
  27757. name: "Front",
  27758. image: {
  27759. source: "./media/characters/juri/front.svg",
  27760. extra: 1401 / 1237,
  27761. bottom: 18.5 / 1418
  27762. }
  27763. },
  27764. side: {
  27765. height: math.unit(7 + 3 / 12, "feet"),
  27766. weight: math.unit(180, "lb"),
  27767. name: "Side",
  27768. image: {
  27769. source: "./media/characters/juri/side.svg",
  27770. extra: 1424 / 1242,
  27771. bottom: 18.5 / 1447
  27772. }
  27773. },
  27774. sitting: {
  27775. height: math.unit(6, "feet"),
  27776. weight: math.unit(180, "lb"),
  27777. name: "Sitting",
  27778. image: {
  27779. source: "./media/characters/juri/sitting.svg",
  27780. extra: 1270 / 1143,
  27781. bottom: 100 / 1343
  27782. }
  27783. },
  27784. back: {
  27785. height: math.unit(7 + 3 / 12, "feet"),
  27786. weight: math.unit(180, "lb"),
  27787. name: "Back",
  27788. image: {
  27789. source: "./media/characters/juri/back.svg",
  27790. extra: 1377 / 1240,
  27791. bottom: 23.7 / 1405
  27792. }
  27793. },
  27794. maw: {
  27795. height: math.unit(2.8, "feet"),
  27796. name: "Maw",
  27797. image: {
  27798. source: "./media/characters/juri/maw.svg"
  27799. }
  27800. },
  27801. stomach: {
  27802. height: math.unit(0.89, "feet"),
  27803. preyCapacity: math.unit(4, "liters"),
  27804. name: "Stomach",
  27805. image: {
  27806. source: "./media/characters/juri/stomach.svg"
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(7 + 3 / 12, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27820. {
  27821. fox: {
  27822. height: math.unit(5 + 6 / 12, "feet"),
  27823. weight: math.unit(140, "lb"),
  27824. name: "Fox",
  27825. image: {
  27826. source: "./media/characters/maxene-sita/fox.svg",
  27827. extra: 146 / 138,
  27828. bottom: 2.1 / 148.19
  27829. }
  27830. },
  27831. foxLaying: {
  27832. height: math.unit(1.70, "feet"),
  27833. weight: math.unit(140, "lb"),
  27834. name: "Fox (Laying)",
  27835. image: {
  27836. source: "./media/characters/maxene-sita/fox-laying.svg",
  27837. extra: 910 / 572,
  27838. bottom: 71 / 981
  27839. }
  27840. },
  27841. kitsune: {
  27842. height: math.unit(10, "feet"),
  27843. weight: math.unit(800, "lb"),
  27844. name: "Kitsune",
  27845. image: {
  27846. source: "./media/characters/maxene-sita/kitsune.svg",
  27847. extra: 185 / 176,
  27848. bottom: 4.7 / 189.9
  27849. }
  27850. },
  27851. hellhound: {
  27852. height: math.unit(10, "feet"),
  27853. weight: math.unit(700, "lb"),
  27854. name: "Hellhound",
  27855. image: {
  27856. source: "./media/characters/maxene-sita/hellhound.svg",
  27857. extra: 1600 / 1545,
  27858. bottom: 81 / 1681
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(5 + 6 / 12, "feet"),
  27866. default: true
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27872. {
  27873. front: {
  27874. height: math.unit(3 + 4 / 12, "feet"),
  27875. weight: math.unit(70, "lb"),
  27876. name: "Front",
  27877. image: {
  27878. source: "./media/characters/maia/front.svg",
  27879. extra: 227 / 219.5,
  27880. bottom: 40 / 267
  27881. }
  27882. },
  27883. back: {
  27884. height: math.unit(3 + 4 / 12, "feet"),
  27885. weight: math.unit(70, "lb"),
  27886. name: "Back",
  27887. image: {
  27888. source: "./media/characters/maia/back.svg",
  27889. extra: 237 / 225
  27890. }
  27891. },
  27892. },
  27893. [
  27894. {
  27895. name: "Normal",
  27896. height: math.unit(3 + 4 / 12, "feet"),
  27897. default: true
  27898. },
  27899. ]
  27900. ))
  27901. characterMakers.push(() => makeCharacter(
  27902. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27903. {
  27904. front: {
  27905. height: math.unit(5 + 10 / 12, "feet"),
  27906. weight: math.unit(197, "lb"),
  27907. name: "Front",
  27908. image: {
  27909. source: "./media/characters/jabaro/front.svg",
  27910. extra: 225 / 216,
  27911. bottom: 5.06 / 230
  27912. }
  27913. },
  27914. back: {
  27915. height: math.unit(5 + 10 / 12, "feet"),
  27916. weight: math.unit(197, "lb"),
  27917. name: "Back",
  27918. image: {
  27919. source: "./media/characters/jabaro/back.svg",
  27920. extra: 225 / 219,
  27921. bottom: 1.9 / 227
  27922. }
  27923. },
  27924. },
  27925. [
  27926. {
  27927. name: "Normal",
  27928. height: math.unit(5 + 10 / 12, "feet"),
  27929. default: true
  27930. },
  27931. ]
  27932. ))
  27933. characterMakers.push(() => makeCharacter(
  27934. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27935. {
  27936. front: {
  27937. height: math.unit(5 + 8 / 12, "feet"),
  27938. weight: math.unit(139, "lb"),
  27939. name: "Front",
  27940. image: {
  27941. source: "./media/characters/risa/front.svg",
  27942. extra: 270 / 260,
  27943. bottom: 11.2 / 282
  27944. }
  27945. },
  27946. back: {
  27947. height: math.unit(5 + 8 / 12, "feet"),
  27948. weight: math.unit(139, "lb"),
  27949. name: "Back",
  27950. image: {
  27951. source: "./media/characters/risa/back.svg",
  27952. extra: 264 / 255,
  27953. bottom: 4 / 268
  27954. }
  27955. },
  27956. },
  27957. [
  27958. {
  27959. name: "Normal",
  27960. height: math.unit(5 + 8 / 12, "feet"),
  27961. default: true
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(2 + 11 / 12, "feet"),
  27970. weight: math.unit(30, "lb"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/weatley/front.svg",
  27974. bottom: 10.7 / 414,
  27975. extra: 403.5 / 362
  27976. }
  27977. },
  27978. back: {
  27979. height: math.unit(2 + 11 / 12, "feet"),
  27980. weight: math.unit(30, "lb"),
  27981. name: "Back",
  27982. image: {
  27983. source: "./media/characters/weatley/back.svg",
  27984. bottom: 10.7 / 414,
  27985. extra: 403.5 / 362
  27986. }
  27987. },
  27988. },
  27989. [
  27990. {
  27991. name: "Normal",
  27992. height: math.unit(2 + 11 / 12, "feet"),
  27993. default: true
  27994. },
  27995. ]
  27996. ))
  27997. characterMakers.push(() => makeCharacter(
  27998. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27999. {
  28000. front: {
  28001. height: math.unit(5 + 2 / 12, "feet"),
  28002. weight: math.unit(50, "kg"),
  28003. name: "Front",
  28004. image: {
  28005. source: "./media/characters/mercury-crescent/front.svg",
  28006. extra: 1088 / 1033,
  28007. bottom: 18.9 / 1109
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Normal",
  28014. height: math.unit(5 + 2 / 12, "feet"),
  28015. default: true
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(2, "feet"),
  28024. weight: math.unit(15, "kg"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/diamond-jones/front.svg",
  28028. extra: 727/723,
  28029. bottom: 46/773
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(2, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(3, "feet"),
  28046. weight: math.unit(30, "kg"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/sweet-bit/front.svg",
  28050. extra: 675 / 567,
  28051. bottom: 27.7 / 703
  28052. }
  28053. },
  28054. },
  28055. [
  28056. {
  28057. name: "Normal",
  28058. height: math.unit(3, "feet"),
  28059. default: true
  28060. },
  28061. ]
  28062. ))
  28063. characterMakers.push(() => makeCharacter(
  28064. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28065. {
  28066. side: {
  28067. height: math.unit(9.178, "feet"),
  28068. weight: math.unit(500, "lb"),
  28069. name: "Side",
  28070. image: {
  28071. source: "./media/characters/umbrazen/side.svg",
  28072. extra: 1730 / 1473,
  28073. bottom: 34.6 / 1765
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(9.178, "feet"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28087. {
  28088. front: {
  28089. height: math.unit(10, "feet"),
  28090. weight: math.unit(750, "lb"),
  28091. name: "Front",
  28092. image: {
  28093. source: "./media/characters/arlist/front.svg",
  28094. extra: 961 / 778,
  28095. bottom: 6.2 / 986
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(10, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(5 + 1 / 12, "feet"),
  28112. weight: math.unit(110, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/aradel/front.svg",
  28116. extra: 324 / 303,
  28117. bottom: 3.6 / 329.4
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Normal",
  28124. height: math.unit(5 + 1 / 12, "feet"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28131. {
  28132. dressed: {
  28133. height: math.unit(3 + 8 / 12, "feet"),
  28134. weight: math.unit(50, "lb"),
  28135. name: "Dressed",
  28136. image: {
  28137. source: "./media/characters/serryn/dressed.svg",
  28138. extra: 1792 / 1656,
  28139. bottom: 43.5 / 1840
  28140. }
  28141. },
  28142. nude: {
  28143. height: math.unit(3 + 8 / 12, "feet"),
  28144. weight: math.unit(50, "lb"),
  28145. name: "Nude",
  28146. image: {
  28147. source: "./media/characters/serryn/nude.svg",
  28148. extra: 1792 / 1656,
  28149. bottom: 43.5 / 1840
  28150. }
  28151. },
  28152. },
  28153. [
  28154. {
  28155. name: "Normal",
  28156. height: math.unit(3 + 8 / 12, "feet"),
  28157. default: true
  28158. },
  28159. ]
  28160. ))
  28161. characterMakers.push(() => makeCharacter(
  28162. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28163. {
  28164. front: {
  28165. height: math.unit(7 + 10 / 12, "feet"),
  28166. weight: math.unit(255, "lb"),
  28167. name: "Front",
  28168. image: {
  28169. source: "./media/characters/xavier-thyme/front.svg",
  28170. extra: 3733 / 3642,
  28171. bottom: 131 / 3869
  28172. }
  28173. },
  28174. frontRaven: {
  28175. height: math.unit(7 + 10 / 12, "feet"),
  28176. weight: math.unit(255, "lb"),
  28177. name: "Front (Raven)",
  28178. image: {
  28179. source: "./media/characters/xavier-thyme/front-raven.svg",
  28180. extra: 4385 / 3642,
  28181. bottom: 131 / 4517
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(7 + 10 / 12, "feet"),
  28189. default: true
  28190. },
  28191. ]
  28192. ))
  28193. characterMakers.push(() => makeCharacter(
  28194. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28195. {
  28196. front: {
  28197. height: math.unit(1.6, "m"),
  28198. weight: math.unit(50, "kg"),
  28199. name: "Front",
  28200. image: {
  28201. source: "./media/characters/kiki/front.svg",
  28202. extra: 4682 / 3610,
  28203. bottom: 115 / 4777
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Normal",
  28210. height: math.unit(1.6, "meters"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(50, "m"),
  28220. weight: math.unit(500, "tonnes"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/ryoko/front.svg",
  28224. extra: 4632 / 3926,
  28225. bottom: 193 / 4823
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(50, "meters"),
  28233. default: true
  28234. },
  28235. ]
  28236. ))
  28237. characterMakers.push(() => makeCharacter(
  28238. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28239. {
  28240. front: {
  28241. height: math.unit(30, "m"),
  28242. weight: math.unit(22, "tonnes"),
  28243. name: "Front",
  28244. image: {
  28245. source: "./media/characters/elio/front.svg",
  28246. extra: 4582 / 3720,
  28247. bottom: 236 / 4828
  28248. }
  28249. },
  28250. },
  28251. [
  28252. {
  28253. name: "Normal",
  28254. height: math.unit(30, "meters"),
  28255. default: true
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(6 + 3 / 12, "feet"),
  28264. weight: math.unit(120, "lb"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/azura/front.svg",
  28268. extra: 1149 / 1135,
  28269. bottom: 45 / 1194
  28270. }
  28271. },
  28272. frontClothed: {
  28273. height: math.unit(6 + 3 / 12, "feet"),
  28274. weight: math.unit(120, "lb"),
  28275. name: "Front (Clothed)",
  28276. image: {
  28277. source: "./media/characters/azura/front-clothed.svg",
  28278. extra: 1149 / 1135,
  28279. bottom: 45 / 1194
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(6 + 3 / 12, "feet"),
  28287. default: true
  28288. },
  28289. {
  28290. name: "Macro",
  28291. height: math.unit(20 + 6 / 12, "feet")
  28292. },
  28293. {
  28294. name: "Megamacro",
  28295. height: math.unit(12, "miles")
  28296. },
  28297. {
  28298. name: "Gigamacro",
  28299. height: math.unit(10000, "miles")
  28300. },
  28301. {
  28302. name: "Teramacro",
  28303. height: math.unit(900000, "miles")
  28304. },
  28305. ]
  28306. ))
  28307. characterMakers.push(() => makeCharacter(
  28308. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28309. {
  28310. front: {
  28311. height: math.unit(12, "feet"),
  28312. weight: math.unit(1, "ton"),
  28313. capacity: math.unit(660000, "gallons"),
  28314. name: "Front",
  28315. image: {
  28316. source: "./media/characters/zeus/front.svg",
  28317. extra: 5005 / 4717,
  28318. bottom: 363 / 5388
  28319. }
  28320. },
  28321. },
  28322. [
  28323. {
  28324. name: "Normal",
  28325. height: math.unit(12, "feet")
  28326. },
  28327. {
  28328. name: "Preferred Size",
  28329. height: math.unit(0.5, "miles"),
  28330. default: true
  28331. },
  28332. {
  28333. name: "Giga Horse",
  28334. height: math.unit(300, "miles")
  28335. },
  28336. {
  28337. name: "Riding Planets",
  28338. height: math.unit(30, "megameters")
  28339. },
  28340. {
  28341. name: "Cosmic Giant",
  28342. height: math.unit(3, "zettameters")
  28343. },
  28344. {
  28345. name: "Breeding God",
  28346. height: math.unit(9.92e22, "yottameters")
  28347. },
  28348. ]
  28349. ))
  28350. characterMakers.push(() => makeCharacter(
  28351. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28352. {
  28353. side: {
  28354. height: math.unit(9, "feet"),
  28355. weight: math.unit(1500, "kg"),
  28356. name: "Side",
  28357. image: {
  28358. source: "./media/characters/fang/side.svg",
  28359. extra: 924 / 866,
  28360. bottom: 47.5 / 972.3
  28361. }
  28362. },
  28363. },
  28364. [
  28365. {
  28366. name: "Normal",
  28367. height: math.unit(9, "feet"),
  28368. default: true
  28369. },
  28370. {
  28371. name: "Macro",
  28372. height: math.unit(75 + 6 / 12, "feet")
  28373. },
  28374. {
  28375. name: "Teramacro",
  28376. height: math.unit(50000, "miles")
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(10, "feet"),
  28385. weight: math.unit(2, "tons"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/rekhit/front.svg",
  28389. extra: 2796 / 2590,
  28390. bottom: 225 / 3022
  28391. }
  28392. },
  28393. },
  28394. [
  28395. {
  28396. name: "Normal",
  28397. height: math.unit(10, "feet"),
  28398. default: true
  28399. },
  28400. {
  28401. name: "Macro",
  28402. height: math.unit(500, "feet")
  28403. },
  28404. ]
  28405. ))
  28406. characterMakers.push(() => makeCharacter(
  28407. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28408. {
  28409. front: {
  28410. height: math.unit(7 + 6.451 / 12, "feet"),
  28411. weight: math.unit(310, "lb"),
  28412. name: "Front",
  28413. image: {
  28414. source: "./media/characters/dahlia-verrick/front.svg",
  28415. extra: 1488 / 1365,
  28416. bottom: 6.2 / 1495
  28417. }
  28418. },
  28419. back: {
  28420. height: math.unit(7 + 6.451 / 12, "feet"),
  28421. weight: math.unit(310, "lb"),
  28422. name: "Back",
  28423. image: {
  28424. source: "./media/characters/dahlia-verrick/back.svg",
  28425. extra: 1472 / 1351,
  28426. bottom: 5.28 / 1477
  28427. }
  28428. },
  28429. frontBusiness: {
  28430. height: math.unit(7 + 6.451 / 12, "feet"),
  28431. weight: math.unit(200, "lb"),
  28432. name: "Front (Business)",
  28433. image: {
  28434. source: "./media/characters/dahlia-verrick/front-business.svg",
  28435. extra: 1478 / 1381,
  28436. bottom: 5.5 / 1484
  28437. }
  28438. },
  28439. frontCasual: {
  28440. height: math.unit(7 + 6.451 / 12, "feet"),
  28441. weight: math.unit(200, "lb"),
  28442. name: "Front (Casual)",
  28443. image: {
  28444. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28445. extra: 1478 / 1381,
  28446. bottom: 5.5 / 1484
  28447. }
  28448. },
  28449. },
  28450. [
  28451. {
  28452. name: "Travel-Sized",
  28453. height: math.unit(7.45, "inches")
  28454. },
  28455. {
  28456. name: "Normal",
  28457. height: math.unit(7 + 6.451 / 12, "feet"),
  28458. default: true
  28459. },
  28460. {
  28461. name: "Hitting the Town",
  28462. height: math.unit(37 + 8 / 12, "feet")
  28463. },
  28464. {
  28465. name: "Stomp in the Suburbs",
  28466. height: math.unit(964 + 9.728 / 12, "feet")
  28467. },
  28468. {
  28469. name: "Sit on the City",
  28470. height: math.unit(61747 + 10.592 / 12, "feet")
  28471. },
  28472. {
  28473. name: "Glomp the Globe",
  28474. height: math.unit(252919327 + 4.832 / 12, "feet")
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28480. {
  28481. front: {
  28482. height: math.unit(6 + 4 / 12, "feet"),
  28483. weight: math.unit(320, "lb"),
  28484. name: "Front",
  28485. image: {
  28486. source: "./media/characters/balina-mahigan/front.svg",
  28487. extra: 447 / 428,
  28488. bottom: 18 / 466
  28489. }
  28490. },
  28491. back: {
  28492. height: math.unit(6 + 4 / 12, "feet"),
  28493. weight: math.unit(320, "lb"),
  28494. name: "Back",
  28495. image: {
  28496. source: "./media/characters/balina-mahigan/back.svg",
  28497. extra: 445 / 428,
  28498. bottom: 4.07 / 448
  28499. }
  28500. },
  28501. arm: {
  28502. height: math.unit(1.88, "feet"),
  28503. name: "Arm",
  28504. image: {
  28505. source: "./media/characters/balina-mahigan/arm.svg"
  28506. }
  28507. },
  28508. backPort: {
  28509. height: math.unit(0.685, "feet"),
  28510. name: "Back Port",
  28511. image: {
  28512. source: "./media/characters/balina-mahigan/back-port.svg"
  28513. }
  28514. },
  28515. hoofpaw: {
  28516. height: math.unit(1.41, "feet"),
  28517. name: "Hoofpaw",
  28518. image: {
  28519. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28520. }
  28521. },
  28522. leftHandBack: {
  28523. height: math.unit(0.938, "feet"),
  28524. name: "Left Hand (Back)",
  28525. image: {
  28526. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28527. }
  28528. },
  28529. leftHandFront: {
  28530. height: math.unit(0.938, "feet"),
  28531. name: "Left Hand (Front)",
  28532. image: {
  28533. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28534. }
  28535. },
  28536. rightHandBack: {
  28537. height: math.unit(0.95, "feet"),
  28538. name: "Right Hand (Back)",
  28539. image: {
  28540. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28541. }
  28542. },
  28543. rightHandFront: {
  28544. height: math.unit(0.95, "feet"),
  28545. name: "Right Hand (Front)",
  28546. image: {
  28547. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28548. }
  28549. },
  28550. },
  28551. [
  28552. {
  28553. name: "Normal",
  28554. height: math.unit(6 + 4 / 12, "feet"),
  28555. default: true
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(6, "feet"),
  28564. weight: math.unit(320, "lb"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/balina-mejeri/front.svg",
  28568. extra: 517 / 488,
  28569. bottom: 44.2 / 561
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(6 + 4 / 12, "feet")
  28577. },
  28578. {
  28579. name: "Business",
  28580. height: math.unit(155, "feet"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28587. {
  28588. kneeling: {
  28589. height: math.unit(6 + 4 / 12, "feet"),
  28590. weight: math.unit(300 * 20, "lb"),
  28591. name: "Kneeling",
  28592. image: {
  28593. source: "./media/characters/balbarian/kneeling.svg",
  28594. extra: 922 / 862,
  28595. bottom: 42.4 / 965
  28596. }
  28597. },
  28598. },
  28599. [
  28600. {
  28601. name: "Normal",
  28602. height: math.unit(6 + 4 / 12, "feet")
  28603. },
  28604. {
  28605. name: "Treasured",
  28606. height: math.unit(18 + 9 / 12, "feet"),
  28607. default: true
  28608. },
  28609. {
  28610. name: "Macro",
  28611. height: math.unit(900, "feet")
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(6 + 4 / 12, "feet"),
  28620. weight: math.unit(325, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/balina-amarini/front.svg",
  28624. extra: 415 / 403,
  28625. bottom: 19 / 433.4
  28626. }
  28627. },
  28628. back: {
  28629. height: math.unit(6 + 4 / 12, "feet"),
  28630. weight: math.unit(325, "lb"),
  28631. name: "Back",
  28632. image: {
  28633. source: "./media/characters/balina-amarini/back.svg",
  28634. extra: 415 / 403,
  28635. bottom: 13.5 / 432
  28636. }
  28637. },
  28638. overdrive: {
  28639. height: math.unit(6 + 4 / 12, "feet"),
  28640. weight: math.unit(400, "lb"),
  28641. name: "Overdrive",
  28642. image: {
  28643. source: "./media/characters/balina-amarini/overdrive.svg",
  28644. extra: 269 / 259,
  28645. bottom: 12 / 282
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Boom",
  28652. height: math.unit(9 + 10 / 12, "feet"),
  28653. default: true
  28654. },
  28655. {
  28656. name: "Macro",
  28657. height: math.unit(280, "feet")
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28663. {
  28664. goddess: {
  28665. height: math.unit(600, "feet"),
  28666. weight: math.unit(2000000, "tons"),
  28667. name: "Goddess",
  28668. image: {
  28669. source: "./media/characters/lady-kubwa/goddess.svg",
  28670. extra: 1240.5 / 1223,
  28671. bottom: 22 / 1263
  28672. }
  28673. },
  28674. goddesser: {
  28675. height: math.unit(900, "feet"),
  28676. weight: math.unit(20000000, "lb"),
  28677. name: "Goddess-er",
  28678. image: {
  28679. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28680. extra: 899 / 888,
  28681. bottom: 12.6 / 912
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Macro",
  28688. height: math.unit(600, "feet"),
  28689. default: true
  28690. },
  28691. {
  28692. name: "Megamacro",
  28693. height: math.unit(250, "miles")
  28694. },
  28695. ]
  28696. ))
  28697. characterMakers.push(() => makeCharacter(
  28698. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28699. {
  28700. front: {
  28701. height: math.unit(7 + 7 / 12, "feet"),
  28702. weight: math.unit(250, "lb"),
  28703. name: "Front",
  28704. image: {
  28705. source: "./media/characters/tala-grovehorn/front.svg",
  28706. extra: 2636 / 2525,
  28707. bottom: 147 / 2781
  28708. }
  28709. },
  28710. back: {
  28711. height: math.unit(7 + 7 / 12, "feet"),
  28712. weight: math.unit(250, "lb"),
  28713. name: "Back",
  28714. image: {
  28715. source: "./media/characters/tala-grovehorn/back.svg",
  28716. extra: 2635 / 2539,
  28717. bottom: 100 / 2732.8
  28718. }
  28719. },
  28720. mouth: {
  28721. height: math.unit(1.15, "feet"),
  28722. name: "Mouth",
  28723. image: {
  28724. source: "./media/characters/tala-grovehorn/mouth.svg"
  28725. }
  28726. },
  28727. dick: {
  28728. height: math.unit(2.36, "feet"),
  28729. name: "Dick",
  28730. image: {
  28731. source: "./media/characters/tala-grovehorn/dick.svg"
  28732. }
  28733. },
  28734. slit: {
  28735. height: math.unit(0.61, "feet"),
  28736. name: "Slit",
  28737. image: {
  28738. source: "./media/characters/tala-grovehorn/slit.svg"
  28739. }
  28740. },
  28741. },
  28742. [
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(7 + 7 / 12, "feet"),
  28750. weight: math.unit(225, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/epona/front.svg",
  28754. extra: 2445 / 2290,
  28755. bottom: 251 / 2696
  28756. }
  28757. },
  28758. back: {
  28759. height: math.unit(7 + 7 / 12, "feet"),
  28760. weight: math.unit(225, "lb"),
  28761. name: "Back",
  28762. image: {
  28763. source: "./media/characters/epona/back.svg",
  28764. extra: 2546 / 2408,
  28765. bottom: 44 / 2589
  28766. }
  28767. },
  28768. genitals: {
  28769. height: math.unit(1.5, "feet"),
  28770. name: "Genitals",
  28771. image: {
  28772. source: "./media/characters/epona/genitals.svg"
  28773. }
  28774. },
  28775. },
  28776. [
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(7 + 7 / 12, "feet"),
  28780. default: true
  28781. },
  28782. ]
  28783. ))
  28784. characterMakers.push(() => makeCharacter(
  28785. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28786. {
  28787. front: {
  28788. height: math.unit(7, "feet"),
  28789. weight: math.unit(518, "lb"),
  28790. name: "Front",
  28791. image: {
  28792. source: "./media/characters/avia-bloodbourn/front.svg",
  28793. extra: 1466 / 1350,
  28794. bottom: 65 / 1527
  28795. }
  28796. },
  28797. },
  28798. [
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(9.35, "feet"),
  28806. weight: math.unit(600, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/amera/front.svg",
  28810. extra: 891 / 818,
  28811. bottom: 30 / 922.7
  28812. }
  28813. },
  28814. back: {
  28815. height: math.unit(9.35, "feet"),
  28816. weight: math.unit(600, "lb"),
  28817. name: "Back",
  28818. image: {
  28819. source: "./media/characters/amera/back.svg",
  28820. extra: 876 / 824,
  28821. bottom: 6.8 / 884
  28822. }
  28823. },
  28824. dick: {
  28825. height: math.unit(2.14, "feet"),
  28826. name: "Dick",
  28827. image: {
  28828. source: "./media/characters/amera/dick.svg"
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(9.35, "feet"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28842. {
  28843. kneeling: {
  28844. height: math.unit(3 + 4 / 12, "feet"),
  28845. weight: math.unit(90, "lb"),
  28846. name: "Kneeling",
  28847. image: {
  28848. source: "./media/characters/rosewen/kneeling.svg",
  28849. extra: 1835 / 1571,
  28850. bottom: 27.7 / 1862
  28851. }
  28852. },
  28853. },
  28854. [
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(3 + 4 / 12, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(5 + 10 / 12, "feet"),
  28867. weight: math.unit(200, "lb"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/sabah/front.svg",
  28871. extra: 849 / 763,
  28872. bottom: 33.9 / 881
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Normal",
  28879. height: math.unit(5 + 10 / 12, "feet"),
  28880. default: true
  28881. },
  28882. ]
  28883. ))
  28884. characterMakers.push(() => makeCharacter(
  28885. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28886. {
  28887. front: {
  28888. height: math.unit(3 + 5 / 12, "feet"),
  28889. weight: math.unit(40, "kg"),
  28890. name: "Front",
  28891. image: {
  28892. source: "./media/characters/purple-flame/front.svg",
  28893. extra: 1577 / 1412,
  28894. bottom: 97 / 1694
  28895. }
  28896. },
  28897. frontDressed: {
  28898. height: math.unit(3 + 5 / 12, "feet"),
  28899. weight: math.unit(40, "kg"),
  28900. name: "Front (Dressed)",
  28901. image: {
  28902. source: "./media/characters/purple-flame/front-dressed.svg",
  28903. extra: 1577 / 1412,
  28904. bottom: 97 / 1694
  28905. }
  28906. },
  28907. headphones: {
  28908. height: math.unit(0.85, "feet"),
  28909. name: "Headphones",
  28910. image: {
  28911. source: "./media/characters/purple-flame/headphones.svg"
  28912. }
  28913. },
  28914. },
  28915. [
  28916. {
  28917. name: "Really Small",
  28918. height: math.unit(5, "cm")
  28919. },
  28920. {
  28921. name: "Micro",
  28922. height: math.unit(1 + 5 / 12, "feet")
  28923. },
  28924. {
  28925. name: "Normal",
  28926. height: math.unit(3 + 5 / 12, "feet"),
  28927. default: true
  28928. },
  28929. {
  28930. name: "Minimacro",
  28931. height: math.unit(125, "feet")
  28932. },
  28933. {
  28934. name: "Macro",
  28935. height: math.unit(0.5, "miles")
  28936. },
  28937. {
  28938. name: "Megamacro",
  28939. height: math.unit(50, "miles")
  28940. },
  28941. {
  28942. name: "Gigantic",
  28943. height: math.unit(750, "miles")
  28944. },
  28945. {
  28946. name: "Planetary",
  28947. height: math.unit(15000, "miles")
  28948. },
  28949. ]
  28950. ))
  28951. characterMakers.push(() => makeCharacter(
  28952. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28953. {
  28954. front: {
  28955. height: math.unit(14, "feet"),
  28956. weight: math.unit(959, "lb"),
  28957. name: "Front",
  28958. image: {
  28959. source: "./media/characters/arsenal/front.svg",
  28960. extra: 2357 / 2157,
  28961. bottom: 93 / 2458
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(14, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/adira/front.svg",
  28982. extra: 1078 / 1029,
  28983. bottom: 87 / 1166
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Micro",
  28990. height: math.unit(4, "inches"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Macro",
  28995. height: math.unit(50, "feet")
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29001. {
  29002. front: {
  29003. height: math.unit(16, "feet"),
  29004. weight: math.unit(1000, "lb"),
  29005. name: "Front",
  29006. image: {
  29007. source: "./media/characters/grim/front.svg",
  29008. extra: 622 / 614,
  29009. bottom: 18.1 / 642
  29010. }
  29011. },
  29012. back: {
  29013. height: math.unit(16, "feet"),
  29014. weight: math.unit(1000, "lb"),
  29015. name: "Back",
  29016. image: {
  29017. source: "./media/characters/grim/back.svg",
  29018. extra: 610.6 / 602,
  29019. bottom: 40.8 / 652
  29020. }
  29021. },
  29022. hunched: {
  29023. height: math.unit(9.75, "feet"),
  29024. weight: math.unit(1000, "lb"),
  29025. name: "Hunched",
  29026. image: {
  29027. source: "./media/characters/grim/hunched.svg",
  29028. extra: 304 / 297,
  29029. bottom: 35.4 / 394
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Normal",
  29036. height: math.unit(16, "feet"),
  29037. default: true
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(2.3, "meters"),
  29046. weight: math.unit(300, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/sinja/front-sfw.svg",
  29050. extra: 1393 / 1294,
  29051. bottom: 70 / 1463
  29052. }
  29053. },
  29054. frontNsfw: {
  29055. height: math.unit(2.3, "meters"),
  29056. weight: math.unit(300, "lb"),
  29057. name: "Front (NSFW)",
  29058. image: {
  29059. source: "./media/characters/sinja/front-nsfw.svg",
  29060. extra: 1393 / 1294,
  29061. bottom: 70 / 1463
  29062. }
  29063. },
  29064. back: {
  29065. height: math.unit(2.3, "meters"),
  29066. weight: math.unit(300, "lb"),
  29067. name: "Back",
  29068. image: {
  29069. source: "./media/characters/sinja/back.svg",
  29070. extra: 1393 / 1294,
  29071. bottom: 70 / 1463
  29072. }
  29073. },
  29074. head: {
  29075. height: math.unit(1.771, "feet"),
  29076. name: "Head",
  29077. image: {
  29078. source: "./media/characters/sinja/head.svg"
  29079. }
  29080. },
  29081. slit: {
  29082. height: math.unit(0.8, "feet"),
  29083. name: "Slit",
  29084. image: {
  29085. source: "./media/characters/sinja/slit.svg"
  29086. }
  29087. },
  29088. },
  29089. [
  29090. {
  29091. name: "Normal",
  29092. height: math.unit(2.3, "meters")
  29093. },
  29094. {
  29095. name: "Macro",
  29096. height: math.unit(91, "meters"),
  29097. default: true
  29098. },
  29099. {
  29100. name: "Megamacro",
  29101. height: math.unit(91440, "meters")
  29102. },
  29103. {
  29104. name: "Gigamacro",
  29105. height: math.unit(60960000, "meters")
  29106. },
  29107. {
  29108. name: "Teramacro",
  29109. height: math.unit(9144000000, "meters")
  29110. },
  29111. ]
  29112. ))
  29113. characterMakers.push(() => makeCharacter(
  29114. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29115. {
  29116. front: {
  29117. height: math.unit(1.7, "meters"),
  29118. weight: math.unit(130, "lb"),
  29119. name: "Front",
  29120. image: {
  29121. source: "./media/characters/kyu/front.svg",
  29122. extra: 415 / 395,
  29123. bottom: 5 / 420
  29124. }
  29125. },
  29126. head: {
  29127. height: math.unit(1.75, "feet"),
  29128. name: "Head",
  29129. image: {
  29130. source: "./media/characters/kyu/head.svg"
  29131. }
  29132. },
  29133. foot: {
  29134. height: math.unit(0.81, "feet"),
  29135. name: "Foot",
  29136. image: {
  29137. source: "./media/characters/kyu/foot.svg"
  29138. }
  29139. },
  29140. },
  29141. [
  29142. {
  29143. name: "Normal",
  29144. height: math.unit(1.7, "meters")
  29145. },
  29146. {
  29147. name: "Macro",
  29148. height: math.unit(131, "feet"),
  29149. default: true
  29150. },
  29151. {
  29152. name: "Megamacro",
  29153. height: math.unit(91440, "meters")
  29154. },
  29155. {
  29156. name: "Gigamacro",
  29157. height: math.unit(60960000, "meters")
  29158. },
  29159. {
  29160. name: "Teramacro",
  29161. height: math.unit(9144000000, "meters")
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(7 + 1 / 12, "feet"),
  29170. weight: math.unit(250, "lb"),
  29171. name: "Front",
  29172. image: {
  29173. source: "./media/characters/joey/front.svg",
  29174. extra: 1791 / 1537,
  29175. bottom: 28 / 1816
  29176. }
  29177. },
  29178. },
  29179. [
  29180. {
  29181. name: "Micro",
  29182. height: math.unit(3, "inches")
  29183. },
  29184. {
  29185. name: "Normal",
  29186. height: math.unit(7 + 1 / 12, "feet"),
  29187. default: true
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(165, "cm"),
  29196. weight: math.unit(140, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/sam-evans/front.svg",
  29200. extra: 3417 / 3230,
  29201. bottom: 41.3 / 3417
  29202. }
  29203. },
  29204. frontSixTails: {
  29205. height: math.unit(165, "cm"),
  29206. weight: math.unit(140, "lb"),
  29207. name: "Front-six-tails",
  29208. image: {
  29209. source: "./media/characters/sam-evans/front-six-tails.svg",
  29210. extra: 3417 / 3230,
  29211. bottom: 41.3 / 3417
  29212. }
  29213. },
  29214. back: {
  29215. height: math.unit(165, "cm"),
  29216. weight: math.unit(140, "lb"),
  29217. name: "Back",
  29218. image: {
  29219. source: "./media/characters/sam-evans/back.svg",
  29220. extra: 3227 / 3032,
  29221. bottom: 6.8 / 3234
  29222. }
  29223. },
  29224. face: {
  29225. height: math.unit(0.68, "feet"),
  29226. name: "Face",
  29227. image: {
  29228. source: "./media/characters/sam-evans/face.svg"
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(165, "cm"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Macro",
  29240. height: math.unit(100, "meters")
  29241. },
  29242. {
  29243. name: "Macro+",
  29244. height: math.unit(800, "meters")
  29245. },
  29246. {
  29247. name: "Macro++",
  29248. height: math.unit(3, "km")
  29249. },
  29250. {
  29251. name: "Macro+++",
  29252. height: math.unit(30, "km")
  29253. },
  29254. ]
  29255. ))
  29256. characterMakers.push(() => makeCharacter(
  29257. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29258. {
  29259. front: {
  29260. height: math.unit(10, "feet"),
  29261. weight: math.unit(750, "lb"),
  29262. name: "Front",
  29263. image: {
  29264. source: "./media/characters/juliet-a/front.svg",
  29265. extra: 1766 / 1720,
  29266. bottom: 43 / 1809
  29267. }
  29268. },
  29269. back: {
  29270. height: math.unit(10, "feet"),
  29271. weight: math.unit(750, "lb"),
  29272. name: "Back",
  29273. image: {
  29274. source: "./media/characters/juliet-a/back.svg",
  29275. extra: 1781 / 1734,
  29276. bottom: 35 / 1810,
  29277. }
  29278. },
  29279. },
  29280. [
  29281. {
  29282. name: "Normal",
  29283. height: math.unit(10, "feet"),
  29284. default: true
  29285. },
  29286. {
  29287. name: "Dragon Form",
  29288. height: math.unit(250, "feet")
  29289. },
  29290. {
  29291. name: "Macro",
  29292. height: math.unit(1000, "feet")
  29293. },
  29294. {
  29295. name: "Megamacro",
  29296. height: math.unit(10000, "feet")
  29297. }
  29298. ]
  29299. ))
  29300. characterMakers.push(() => makeCharacter(
  29301. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29302. {
  29303. regular: {
  29304. height: math.unit(7 + 3 / 12, "feet"),
  29305. weight: math.unit(260, "lb"),
  29306. name: "Regular",
  29307. image: {
  29308. source: "./media/characters/wild/regular.svg",
  29309. extra: 97.45 / 92,
  29310. bottom: 6.8 / 104.3
  29311. }
  29312. },
  29313. biggums: {
  29314. height: math.unit(8 + 6 / 12, "feet"),
  29315. weight: math.unit(425, "lb"),
  29316. name: "Biggums",
  29317. image: {
  29318. source: "./media/characters/wild/biggums.svg",
  29319. extra: 97.45 / 92,
  29320. bottom: 7.5 / 132.34
  29321. }
  29322. },
  29323. mawRegular: {
  29324. height: math.unit(1.24, "feet"),
  29325. name: "Maw (Regular)",
  29326. image: {
  29327. source: "./media/characters/wild/maw.svg"
  29328. }
  29329. },
  29330. mawBiggums: {
  29331. height: math.unit(1.47, "feet"),
  29332. name: "Maw (Biggums)",
  29333. image: {
  29334. source: "./media/characters/wild/maw.svg"
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Normal",
  29341. height: math.unit(7 + 3 / 12, "feet"),
  29342. default: true
  29343. },
  29344. ]
  29345. ))
  29346. characterMakers.push(() => makeCharacter(
  29347. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29348. {
  29349. front: {
  29350. height: math.unit(2.5, "meters"),
  29351. weight: math.unit(200, "kg"),
  29352. name: "Front",
  29353. image: {
  29354. source: "./media/characters/vidar/front.svg",
  29355. extra: 2994 / 2795,
  29356. bottom: 56 / 3061
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(2.5, "meters"),
  29361. weight: math.unit(200, "kg"),
  29362. name: "Back",
  29363. image: {
  29364. source: "./media/characters/vidar/back.svg",
  29365. extra: 3131 / 2928,
  29366. bottom: 13.5 / 3141.5
  29367. }
  29368. },
  29369. feral: {
  29370. height: math.unit(2.5, "meters"),
  29371. weight: math.unit(2000, "kg"),
  29372. name: "Feral",
  29373. image: {
  29374. source: "./media/characters/vidar/feral.svg",
  29375. extra: 2790 / 1765,
  29376. bottom: 6 / 2796
  29377. }
  29378. },
  29379. },
  29380. [
  29381. {
  29382. name: "Normal",
  29383. height: math.unit(2.5, "meters"),
  29384. default: true
  29385. },
  29386. {
  29387. name: "Macro",
  29388. height: math.unit(100, "meters")
  29389. },
  29390. ]
  29391. ))
  29392. characterMakers.push(() => makeCharacter(
  29393. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29394. {
  29395. front: {
  29396. height: math.unit(5 + 9 / 12, "feet"),
  29397. weight: math.unit(120, "lb"),
  29398. name: "Front",
  29399. image: {
  29400. source: "./media/characters/ash/front.svg",
  29401. extra: 2189 / 1961,
  29402. bottom: 5.2 / 2194
  29403. }
  29404. },
  29405. },
  29406. [
  29407. {
  29408. name: "Normal",
  29409. height: math.unit(5 + 9 / 12, "feet"),
  29410. default: true
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(9, "feet"),
  29419. weight: math.unit(10000, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/gygabite/front.svg",
  29423. bottom: 31.7 / 537.8,
  29424. extra: 505 / 370
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Normal",
  29431. height: math.unit(9, "feet"),
  29432. default: true
  29433. },
  29434. ]
  29435. ))
  29436. characterMakers.push(() => makeCharacter(
  29437. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29438. {
  29439. front: {
  29440. height: math.unit(12, "feet"),
  29441. weight: math.unit(4000, "lb"),
  29442. name: "Front",
  29443. image: {
  29444. source: "./media/characters/p0tat0/front.svg",
  29445. extra: 1065 / 921,
  29446. bottom: 55.7 / 1121.25
  29447. }
  29448. },
  29449. },
  29450. [
  29451. {
  29452. name: "Normal",
  29453. height: math.unit(12, "feet"),
  29454. default: true
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29460. {
  29461. side: {
  29462. height: math.unit(6.5, "feet"),
  29463. weight: math.unit(800, "lb"),
  29464. name: "Side",
  29465. image: {
  29466. source: "./media/characters/dusk/side.svg",
  29467. extra: 615 / 373,
  29468. bottom: 53 / 664
  29469. }
  29470. },
  29471. sitting: {
  29472. height: math.unit(7, "feet"),
  29473. weight: math.unit(800, "lb"),
  29474. name: "Sitting",
  29475. image: {
  29476. source: "./media/characters/dusk/sitting.svg",
  29477. extra: 753 / 425,
  29478. bottom: 33 / 774
  29479. }
  29480. },
  29481. head: {
  29482. height: math.unit(6.1, "feet"),
  29483. name: "Head",
  29484. image: {
  29485. source: "./media/characters/dusk/head.svg"
  29486. }
  29487. },
  29488. },
  29489. [
  29490. {
  29491. name: "Normal",
  29492. height: math.unit(7, "feet"),
  29493. default: true
  29494. },
  29495. ]
  29496. ))
  29497. characterMakers.push(() => makeCharacter(
  29498. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29499. {
  29500. front: {
  29501. height: math.unit(15, "feet"),
  29502. weight: math.unit(7000, "lb"),
  29503. name: "Front",
  29504. image: {
  29505. source: "./media/characters/jay-direwolf/front.svg",
  29506. extra: 1810 / 1732,
  29507. bottom: 66 / 1892
  29508. }
  29509. },
  29510. },
  29511. [
  29512. {
  29513. name: "Normal",
  29514. height: math.unit(15, "feet"),
  29515. default: true
  29516. },
  29517. ]
  29518. ))
  29519. characterMakers.push(() => makeCharacter(
  29520. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29521. {
  29522. front: {
  29523. height: math.unit(4 + 9 / 12, "feet"),
  29524. weight: math.unit(130, "lb"),
  29525. name: "Front",
  29526. image: {
  29527. source: "./media/characters/anchovie/front.svg",
  29528. extra: 382 / 350,
  29529. bottom: 25 / 409
  29530. }
  29531. },
  29532. back: {
  29533. height: math.unit(4 + 9 / 12, "feet"),
  29534. weight: math.unit(130, "lb"),
  29535. name: "Back",
  29536. image: {
  29537. source: "./media/characters/anchovie/back.svg",
  29538. extra: 385 / 352,
  29539. bottom: 16.6 / 402
  29540. }
  29541. },
  29542. frontDressed: {
  29543. height: math.unit(4 + 9 / 12, "feet"),
  29544. weight: math.unit(130, "lb"),
  29545. name: "Front (Dressed)",
  29546. image: {
  29547. source: "./media/characters/anchovie/front-dressed.svg",
  29548. extra: 382 / 350,
  29549. bottom: 25 / 409
  29550. }
  29551. },
  29552. backDressed: {
  29553. height: math.unit(4 + 9 / 12, "feet"),
  29554. weight: math.unit(130, "lb"),
  29555. name: "Back (Dressed)",
  29556. image: {
  29557. source: "./media/characters/anchovie/back-dressed.svg",
  29558. extra: 385 / 352,
  29559. bottom: 16.6 / 402
  29560. }
  29561. },
  29562. },
  29563. [
  29564. {
  29565. name: "Micro",
  29566. height: math.unit(6.4, "inches")
  29567. },
  29568. {
  29569. name: "Normal",
  29570. height: math.unit(4 + 9 / 12, "feet"),
  29571. default: true
  29572. },
  29573. ]
  29574. ))
  29575. characterMakers.push(() => makeCharacter(
  29576. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29577. {
  29578. front: {
  29579. height: math.unit(2, "meters"),
  29580. weight: math.unit(180, "lb"),
  29581. name: "Front",
  29582. image: {
  29583. source: "./media/characters/acidrenamon/front.svg",
  29584. extra: 987 / 890,
  29585. bottom: 22.8 / 1009
  29586. }
  29587. },
  29588. back: {
  29589. height: math.unit(2, "meters"),
  29590. weight: math.unit(180, "lb"),
  29591. name: "Back",
  29592. image: {
  29593. source: "./media/characters/acidrenamon/back.svg",
  29594. extra: 983 / 891,
  29595. bottom: 8.4 / 992
  29596. }
  29597. },
  29598. head: {
  29599. height: math.unit(1.92, "feet"),
  29600. name: "Head",
  29601. image: {
  29602. source: "./media/characters/acidrenamon/head.svg"
  29603. }
  29604. },
  29605. rump: {
  29606. height: math.unit(1.72, "feet"),
  29607. name: "Rump",
  29608. image: {
  29609. source: "./media/characters/acidrenamon/rump.svg"
  29610. }
  29611. },
  29612. tail: {
  29613. height: math.unit(4.2, "feet"),
  29614. name: "Tail",
  29615. image: {
  29616. source: "./media/characters/acidrenamon/tail.svg"
  29617. }
  29618. },
  29619. },
  29620. [
  29621. {
  29622. name: "Normal",
  29623. height: math.unit(2, "meters"),
  29624. default: true
  29625. },
  29626. {
  29627. name: "Minimacro",
  29628. height: math.unit(7, "meters")
  29629. },
  29630. {
  29631. name: "Macro",
  29632. height: math.unit(200, "meters")
  29633. },
  29634. {
  29635. name: "Gigamacro",
  29636. height: math.unit(0.2, "earths")
  29637. },
  29638. ]
  29639. ))
  29640. characterMakers.push(() => makeCharacter(
  29641. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29642. {
  29643. front: {
  29644. height: math.unit(152, "feet"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/kenzie-lee/front.svg",
  29648. extra: 1869/1774,
  29649. bottom: 128/1997
  29650. }
  29651. },
  29652. side: {
  29653. height: math.unit(86, "feet"),
  29654. name: "Side",
  29655. image: {
  29656. source: "./media/characters/kenzie-lee/side.svg",
  29657. extra: 930/815,
  29658. bottom: 177/1107
  29659. }
  29660. },
  29661. paw: {
  29662. height: math.unit(15, "feet"),
  29663. name: "Paw",
  29664. image: {
  29665. source: "./media/characters/kenzie-lee/paw.svg"
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Kenzie Flea",
  29672. height: math.unit(2, "mm"),
  29673. default: true
  29674. },
  29675. {
  29676. name: "Micro",
  29677. height: math.unit(2, "inches")
  29678. },
  29679. {
  29680. name: "Normal",
  29681. height: math.unit(152, "feet")
  29682. },
  29683. {
  29684. name: "Megamacro",
  29685. height: math.unit(7, "miles")
  29686. },
  29687. {
  29688. name: "Gigamacro",
  29689. height: math.unit(8000, "miles")
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(6, "feet"),
  29698. name: "Front",
  29699. image: {
  29700. source: "./media/characters/withers/front.svg",
  29701. extra: 1935/1760,
  29702. bottom: 72/2007
  29703. }
  29704. },
  29705. back: {
  29706. height: math.unit(6, "feet"),
  29707. name: "Back",
  29708. image: {
  29709. source: "./media/characters/withers/back.svg",
  29710. extra: 1944/1792,
  29711. bottom: 12/1956
  29712. }
  29713. },
  29714. dressed: {
  29715. height: math.unit(6, "feet"),
  29716. name: "Dressed",
  29717. image: {
  29718. source: "./media/characters/withers/dressed.svg",
  29719. extra: 1937/1765,
  29720. bottom: 73/2010
  29721. }
  29722. },
  29723. phase1: {
  29724. height: math.unit(1.1, "feet"),
  29725. name: "Phase 1",
  29726. image: {
  29727. source: "./media/characters/withers/phase-1.svg",
  29728. extra: 1885/1232,
  29729. bottom: 0/1885
  29730. }
  29731. },
  29732. phase2: {
  29733. height: math.unit(1.05, "feet"),
  29734. name: "Phase 2",
  29735. image: {
  29736. source: "./media/characters/withers/phase-2.svg",
  29737. extra: 1792/1090,
  29738. bottom: 0/1792
  29739. }
  29740. },
  29741. partyWipe: {
  29742. height: math.unit(1.1, "feet"),
  29743. name: "Party Wipe",
  29744. image: {
  29745. source: "./media/characters/withers/party-wipe.svg",
  29746. extra: 1864/1207,
  29747. bottom: 0/1864
  29748. }
  29749. },
  29750. },
  29751. [
  29752. {
  29753. name: "Macro",
  29754. height: math.unit(167, "feet"),
  29755. default: true
  29756. },
  29757. {
  29758. name: "Megamacro",
  29759. height: math.unit(15, "miles")
  29760. }
  29761. ]
  29762. ))
  29763. characterMakers.push(() => makeCharacter(
  29764. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29765. {
  29766. front: {
  29767. height: math.unit(6 + 7 / 12, "feet"),
  29768. weight: math.unit(250, "lb"),
  29769. name: "Front",
  29770. image: {
  29771. source: "./media/characters/nemoskii/front.svg",
  29772. extra: 2270 / 1734,
  29773. bottom: 86 / 2354
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(6 + 7 / 12, "feet"),
  29778. weight: math.unit(250, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/nemoskii/back.svg",
  29782. extra: 1845 / 1788,
  29783. bottom: 10.5 / 1852
  29784. }
  29785. },
  29786. head: {
  29787. height: math.unit(1.31, "feet"),
  29788. name: "Head",
  29789. image: {
  29790. source: "./media/characters/nemoskii/head.svg"
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Micro",
  29797. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29798. },
  29799. {
  29800. name: "Normal",
  29801. height: math.unit(6 + 7 / 12, "feet"),
  29802. default: true
  29803. },
  29804. {
  29805. name: "Macro",
  29806. height: math.unit((6 + 7 / 12) * 150, "feet")
  29807. },
  29808. {
  29809. name: "Macro+",
  29810. height: math.unit((6 + 7 / 12) * 500, "feet")
  29811. },
  29812. {
  29813. name: "Megamacro",
  29814. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29815. },
  29816. ]
  29817. ))
  29818. characterMakers.push(() => makeCharacter(
  29819. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29820. {
  29821. front: {
  29822. height: math.unit(1, "mile"),
  29823. weight: math.unit(265261.9, "lb"),
  29824. name: "Front",
  29825. image: {
  29826. source: "./media/characters/shui/front.svg",
  29827. extra: 1633 / 1564,
  29828. bottom: 91.5 / 1726
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Macro",
  29835. height: math.unit(1, "mile"),
  29836. default: true
  29837. },
  29838. ]
  29839. ))
  29840. characterMakers.push(() => makeCharacter(
  29841. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29842. {
  29843. front: {
  29844. height: math.unit(12 + 6 / 12, "feet"),
  29845. weight: math.unit(1342, "lb"),
  29846. name: "Front",
  29847. image: {
  29848. source: "./media/characters/arokh-takakura/front.svg",
  29849. extra: 1089 / 1043,
  29850. bottom: 77.4 / 1176.7
  29851. }
  29852. },
  29853. back: {
  29854. height: math.unit(12 + 6 / 12, "feet"),
  29855. weight: math.unit(1342, "lb"),
  29856. name: "Back",
  29857. image: {
  29858. source: "./media/characters/arokh-takakura/back.svg",
  29859. extra: 1046 / 1019,
  29860. bottom: 102 / 1150
  29861. }
  29862. },
  29863. },
  29864. [
  29865. {
  29866. name: "Big",
  29867. height: math.unit(12 + 6 / 12, "feet"),
  29868. default: true
  29869. },
  29870. ]
  29871. ))
  29872. characterMakers.push(() => makeCharacter(
  29873. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29874. {
  29875. front: {
  29876. height: math.unit(5 + 6 / 12, "feet"),
  29877. weight: math.unit(150, "lb"),
  29878. name: "Front",
  29879. image: {
  29880. source: "./media/characters/theo/front.svg",
  29881. extra: 1184 / 1131,
  29882. bottom: 7.4 / 1191
  29883. }
  29884. },
  29885. },
  29886. [
  29887. {
  29888. name: "Micro",
  29889. height: math.unit(5, "inches")
  29890. },
  29891. {
  29892. name: "Normal",
  29893. height: math.unit(5 + 6 / 12, "feet"),
  29894. default: true
  29895. },
  29896. ]
  29897. ))
  29898. characterMakers.push(() => makeCharacter(
  29899. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29900. {
  29901. front: {
  29902. height: math.unit(5 + 9 / 12, "feet"),
  29903. weight: math.unit(130, "lb"),
  29904. name: "Front",
  29905. image: {
  29906. source: "./media/characters/cecelia-swift/front.svg",
  29907. extra: 502 / 484,
  29908. bottom: 23 / 523
  29909. }
  29910. },
  29911. back: {
  29912. height: math.unit(5 + 9 / 12, "feet"),
  29913. weight: math.unit(130, "lb"),
  29914. name: "Back",
  29915. image: {
  29916. source: "./media/characters/cecelia-swift/back.svg",
  29917. extra: 499 / 485,
  29918. bottom: 12 / 511
  29919. }
  29920. },
  29921. head: {
  29922. height: math.unit(0.90, "feet"),
  29923. name: "Head",
  29924. image: {
  29925. source: "./media/characters/cecelia-swift/head.svg"
  29926. }
  29927. },
  29928. rump: {
  29929. height: math.unit(1.75, "feet"),
  29930. name: "Rump",
  29931. image: {
  29932. source: "./media/characters/cecelia-swift/rump.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Normal",
  29939. height: math.unit(5 + 9 / 12, "feet"),
  29940. default: true
  29941. },
  29942. {
  29943. name: "Big",
  29944. height: math.unit(50, "feet")
  29945. },
  29946. {
  29947. name: "Macro",
  29948. height: math.unit(100, "feet")
  29949. },
  29950. {
  29951. name: "Macro+",
  29952. height: math.unit(500, "feet")
  29953. },
  29954. {
  29955. name: "Macro++",
  29956. height: math.unit(1000, "feet")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(6, "feet"),
  29965. weight: math.unit(150, "lb"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/kaunan/front.svg",
  29969. extra: 2890 / 2523,
  29970. bottom: 49 / 2939
  29971. }
  29972. },
  29973. },
  29974. [
  29975. {
  29976. name: "Macro",
  29977. height: math.unit(150, "feet"),
  29978. default: true
  29979. },
  29980. ]
  29981. ))
  29982. characterMakers.push(() => makeCharacter(
  29983. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29984. {
  29985. dressed: {
  29986. height: math.unit(175, "cm"),
  29987. weight: math.unit(60, "kg"),
  29988. name: "Dressed",
  29989. image: {
  29990. source: "./media/characters/fei/dressed.svg",
  29991. extra: 1402/1278,
  29992. bottom: 27/1429
  29993. }
  29994. },
  29995. nude: {
  29996. height: math.unit(175, "cm"),
  29997. weight: math.unit(60, "kg"),
  29998. name: "Nude",
  29999. image: {
  30000. source: "./media/characters/fei/nude.svg",
  30001. extra: 1402/1278,
  30002. bottom: 27/1429
  30003. }
  30004. },
  30005. heels: {
  30006. height: math.unit(0.466, "feet"),
  30007. name: "Heels",
  30008. image: {
  30009. source: "./media/characters/fei/heels.svg",
  30010. extra: 156/152,
  30011. bottom: 28/184
  30012. }
  30013. },
  30014. },
  30015. [
  30016. {
  30017. name: "Mortal",
  30018. height: math.unit(175, "cm")
  30019. },
  30020. {
  30021. name: "Normal",
  30022. height: math.unit(3500, "m")
  30023. },
  30024. {
  30025. name: "Stroll",
  30026. height: math.unit(18.4, "km"),
  30027. default: true
  30028. },
  30029. {
  30030. name: "Showoff",
  30031. height: math.unit(175, "km")
  30032. },
  30033. ]
  30034. ))
  30035. characterMakers.push(() => makeCharacter(
  30036. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30037. {
  30038. front: {
  30039. height: math.unit(7, "feet"),
  30040. weight: math.unit(1000, "kg"),
  30041. name: "Front",
  30042. image: {
  30043. source: "./media/characters/edrax/front.svg",
  30044. extra: 2838 / 2550,
  30045. bottom: 130 / 2968
  30046. }
  30047. },
  30048. },
  30049. [
  30050. {
  30051. name: "Small",
  30052. height: math.unit(7, "feet")
  30053. },
  30054. {
  30055. name: "Normal",
  30056. height: math.unit(1500, "meters")
  30057. },
  30058. {
  30059. name: "Mega",
  30060. height: math.unit(12000000, "km"),
  30061. default: true
  30062. },
  30063. {
  30064. name: "Megamacro",
  30065. height: math.unit(10600000, "lightyears")
  30066. },
  30067. {
  30068. name: "Hypermacro",
  30069. height: math.unit(256, "yottameters")
  30070. },
  30071. ]
  30072. ))
  30073. characterMakers.push(() => makeCharacter(
  30074. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30075. {
  30076. front: {
  30077. height: math.unit(10, "feet"),
  30078. weight: math.unit(750, "lb"),
  30079. name: "Front",
  30080. image: {
  30081. source: "./media/characters/clove/front.svg",
  30082. extra: 1918/1751,
  30083. bottom: 52/1970
  30084. }
  30085. },
  30086. back: {
  30087. height: math.unit(10, "feet"),
  30088. weight: math.unit(750, "lb"),
  30089. name: "Back",
  30090. image: {
  30091. source: "./media/characters/clove/back.svg",
  30092. extra: 1912/1747,
  30093. bottom: 50/1962
  30094. }
  30095. },
  30096. },
  30097. [
  30098. {
  30099. name: "Normal",
  30100. height: math.unit(10, "feet"),
  30101. default: true
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30107. {
  30108. front: {
  30109. height: math.unit(4, "feet"),
  30110. weight: math.unit(50, "lb"),
  30111. name: "Front",
  30112. image: {
  30113. source: "./media/characters/alex-rabbit/front.svg",
  30114. extra: 507 / 458,
  30115. bottom: 18.5 / 527
  30116. }
  30117. },
  30118. back: {
  30119. height: math.unit(4, "feet"),
  30120. weight: math.unit(50, "lb"),
  30121. name: "Back",
  30122. image: {
  30123. source: "./media/characters/alex-rabbit/back.svg",
  30124. extra: 502 / 460,
  30125. bottom: 18.9 / 521
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Normal",
  30132. height: math.unit(4, "feet"),
  30133. default: true
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30139. {
  30140. front: {
  30141. height: math.unit(1 + 3 / 12, "feet"),
  30142. weight: math.unit(80, "lb"),
  30143. name: "Front",
  30144. image: {
  30145. source: "./media/characters/zander-rose/front.svg",
  30146. extra: 916 / 797,
  30147. bottom: 17 / 933
  30148. }
  30149. },
  30150. back: {
  30151. height: math.unit(1 + 3 / 12, "feet"),
  30152. weight: math.unit(80, "lb"),
  30153. name: "Back",
  30154. image: {
  30155. source: "./media/characters/zander-rose/back.svg",
  30156. extra: 903 / 779,
  30157. bottom: 31 / 934
  30158. }
  30159. },
  30160. },
  30161. [
  30162. {
  30163. name: "Normal",
  30164. height: math.unit(1 + 3 / 12, "feet"),
  30165. default: true
  30166. },
  30167. ]
  30168. ))
  30169. characterMakers.push(() => makeCharacter(
  30170. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30171. {
  30172. anthro: {
  30173. height: math.unit(6, "feet"),
  30174. weight: math.unit(150, "lb"),
  30175. name: "Anthro",
  30176. image: {
  30177. source: "./media/characters/razz/anthro.svg",
  30178. extra: 1437 / 1343,
  30179. bottom: 48 / 1485
  30180. }
  30181. },
  30182. feral: {
  30183. height: math.unit(6, "feet"),
  30184. weight: math.unit(150, "lb"),
  30185. name: "Feral",
  30186. image: {
  30187. source: "./media/characters/razz/feral.svg",
  30188. extra: 2569 / 1385,
  30189. bottom: 95 / 2664
  30190. }
  30191. },
  30192. },
  30193. [
  30194. {
  30195. name: "Normal",
  30196. height: math.unit(6, "feet"),
  30197. default: true
  30198. },
  30199. ]
  30200. ))
  30201. characterMakers.push(() => makeCharacter(
  30202. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30203. {
  30204. front: {
  30205. height: math.unit(9 + 4 / 12, "feet"),
  30206. weight: math.unit(500, "lb"),
  30207. name: "Front",
  30208. image: {
  30209. source: "./media/characters/morrigan/front.svg",
  30210. extra: 2707 / 2579,
  30211. bottom: 156 / 2863
  30212. }
  30213. },
  30214. },
  30215. [
  30216. {
  30217. name: "Normal",
  30218. height: math.unit(9 + 4 / 12, "feet"),
  30219. default: true
  30220. },
  30221. ]
  30222. ))
  30223. characterMakers.push(() => makeCharacter(
  30224. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30225. {
  30226. front: {
  30227. height: math.unit(5, "stories"),
  30228. weight: math.unit(4000, "lb"),
  30229. name: "Front",
  30230. image: {
  30231. source: "./media/characters/jenene/front.svg",
  30232. extra: 1780 / 1710,
  30233. bottom: 57 / 1837
  30234. }
  30235. },
  30236. },
  30237. [
  30238. {
  30239. name: "Normal",
  30240. height: math.unit(5, "stories"),
  30241. default: true
  30242. },
  30243. ]
  30244. ))
  30245. characterMakers.push(() => makeCharacter(
  30246. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30247. {
  30248. taurSfw: {
  30249. height: math.unit(10, "meters"),
  30250. weight: math.unit(17500, "kg"),
  30251. name: "Taur",
  30252. image: {
  30253. source: "./media/characters/faey/taur-sfw.svg",
  30254. extra: 1200 / 968,
  30255. bottom: 41 / 1241
  30256. }
  30257. },
  30258. chestmaw: {
  30259. height: math.unit(2.01, "meters"),
  30260. name: "Chestmaw",
  30261. image: {
  30262. source: "./media/characters/faey/chestmaw.svg"
  30263. }
  30264. },
  30265. foot: {
  30266. height: math.unit(2.43, "meters"),
  30267. name: "Foot",
  30268. image: {
  30269. source: "./media/characters/faey/foot.svg"
  30270. }
  30271. },
  30272. jaws: {
  30273. height: math.unit(1.66, "meters"),
  30274. name: "Jaws",
  30275. image: {
  30276. source: "./media/characters/faey/jaws.svg"
  30277. }
  30278. },
  30279. tongues: {
  30280. height: math.unit(2.01, "meters"),
  30281. name: "Tongues",
  30282. image: {
  30283. source: "./media/characters/faey/tongues.svg"
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Small",
  30290. height: math.unit(10, "meters"),
  30291. default: true
  30292. },
  30293. {
  30294. name: "Big",
  30295. height: math.unit(500000, "km")
  30296. },
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30301. {
  30302. front: {
  30303. height: math.unit(7, "feet"),
  30304. weight: math.unit(275, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/roku/front.svg",
  30308. extra: 903 / 878,
  30309. bottom: 37 / 940
  30310. }
  30311. },
  30312. },
  30313. [
  30314. {
  30315. name: "Normal",
  30316. height: math.unit(7, "feet"),
  30317. default: true
  30318. },
  30319. {
  30320. name: "Macro",
  30321. height: math.unit(500, "feet")
  30322. },
  30323. {
  30324. name: "Megamacro",
  30325. height: math.unit(200, "miles")
  30326. },
  30327. ]
  30328. ))
  30329. characterMakers.push(() => makeCharacter(
  30330. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30331. {
  30332. front: {
  30333. height: math.unit(6 + 2 / 12, "feet"),
  30334. weight: math.unit(150, "lb"),
  30335. name: "Front",
  30336. image: {
  30337. source: "./media/characters/lira/front.svg",
  30338. extra: 1727 / 1605,
  30339. bottom: 26 / 1753
  30340. }
  30341. },
  30342. back: {
  30343. height: math.unit(6 + 2 / 12, "feet"),
  30344. weight: math.unit(150, "lb"),
  30345. name: "Back",
  30346. image: {
  30347. source: "./media/characters/lira/back.svg",
  30348. extra: 1713/1621,
  30349. bottom: 20/1733
  30350. }
  30351. },
  30352. hand: {
  30353. height: math.unit(0.75, "feet"),
  30354. name: "Hand",
  30355. image: {
  30356. source: "./media/characters/lira/hand.svg"
  30357. }
  30358. },
  30359. maw: {
  30360. height: math.unit(0.65, "feet"),
  30361. name: "Maw",
  30362. image: {
  30363. source: "./media/characters/lira/maw.svg"
  30364. }
  30365. },
  30366. pawDigi: {
  30367. height: math.unit(1.6, "feet"),
  30368. name: "Paw Digi",
  30369. image: {
  30370. source: "./media/characters/lira/paw-digi.svg"
  30371. }
  30372. },
  30373. pawPlanti: {
  30374. height: math.unit(1.4, "feet"),
  30375. name: "Paw Planti",
  30376. image: {
  30377. source: "./media/characters/lira/paw-planti.svg"
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Normal",
  30384. height: math.unit(6 + 2 / 12, "feet"),
  30385. default: true
  30386. },
  30387. {
  30388. name: "Macro",
  30389. height: math.unit(100, "feet")
  30390. },
  30391. {
  30392. name: "Macro²",
  30393. height: math.unit(1600, "feet")
  30394. },
  30395. {
  30396. name: "Planetary",
  30397. height: math.unit(20, "earths")
  30398. },
  30399. ]
  30400. ))
  30401. characterMakers.push(() => makeCharacter(
  30402. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30403. {
  30404. front: {
  30405. height: math.unit(6, "feet"),
  30406. weight: math.unit(150, "lb"),
  30407. name: "Front",
  30408. image: {
  30409. source: "./media/characters/hadjet/front.svg",
  30410. extra: 1480 / 1346,
  30411. bottom: 26 / 1506
  30412. }
  30413. },
  30414. frontNsfw: {
  30415. height: math.unit(6, "feet"),
  30416. weight: math.unit(150, "lb"),
  30417. name: "Front (NSFW)",
  30418. image: {
  30419. source: "./media/characters/hadjet/front-nsfw.svg",
  30420. extra: 1440 / 1358,
  30421. bottom: 52 / 1492
  30422. }
  30423. },
  30424. },
  30425. [
  30426. {
  30427. name: "Macro",
  30428. height: math.unit(10, "stories"),
  30429. default: true
  30430. },
  30431. {
  30432. name: "Megamacro",
  30433. height: math.unit(1.5, "miles")
  30434. },
  30435. {
  30436. name: "Megamacro+",
  30437. height: math.unit(5, "miles")
  30438. },
  30439. ]
  30440. ))
  30441. characterMakers.push(() => makeCharacter(
  30442. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30443. {
  30444. side: {
  30445. height: math.unit(106, "feet"),
  30446. weight: math.unit(500, "tonnes"),
  30447. name: "Side",
  30448. image: {
  30449. source: "./media/characters/kodran/side.svg",
  30450. extra: 553 / 480,
  30451. bottom: 33 / 586
  30452. }
  30453. },
  30454. front: {
  30455. height: math.unit(132, "feet"),
  30456. weight: math.unit(500, "tonnes"),
  30457. name: "Front",
  30458. image: {
  30459. source: "./media/characters/kodran/front.svg",
  30460. extra: 667 / 643,
  30461. bottom: 42 / 709
  30462. }
  30463. },
  30464. flying: {
  30465. height: math.unit(350, "feet"),
  30466. weight: math.unit(500, "tonnes"),
  30467. name: "Flying",
  30468. image: {
  30469. source: "./media/characters/kodran/flying.svg"
  30470. }
  30471. },
  30472. foot: {
  30473. height: math.unit(33, "feet"),
  30474. name: "Foot",
  30475. image: {
  30476. source: "./media/characters/kodran/foot.svg"
  30477. }
  30478. },
  30479. footFront: {
  30480. height: math.unit(19, "feet"),
  30481. name: "Foot (Front)",
  30482. image: {
  30483. source: "./media/characters/kodran/foot-front.svg",
  30484. extra: 261 / 261,
  30485. bottom: 91 / 352
  30486. }
  30487. },
  30488. headFront: {
  30489. height: math.unit(53, "feet"),
  30490. name: "Head (Front)",
  30491. image: {
  30492. source: "./media/characters/kodran/head-front.svg"
  30493. }
  30494. },
  30495. headSide: {
  30496. height: math.unit(65, "feet"),
  30497. name: "Head (Side)",
  30498. image: {
  30499. source: "./media/characters/kodran/head-side.svg"
  30500. }
  30501. },
  30502. throat: {
  30503. height: math.unit(79, "feet"),
  30504. name: "Throat",
  30505. image: {
  30506. source: "./media/characters/kodran/throat.svg"
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Large",
  30513. height: math.unit(106, "feet"),
  30514. default: true
  30515. },
  30516. ]
  30517. ))
  30518. characterMakers.push(() => makeCharacter(
  30519. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30520. {
  30521. side: {
  30522. height: math.unit(11, "feet"),
  30523. weight: math.unit(150, "lb"),
  30524. name: "Side",
  30525. image: {
  30526. source: "./media/characters/pyxaron/side.svg",
  30527. extra: 305 / 195,
  30528. bottom: 17 / 322
  30529. }
  30530. },
  30531. },
  30532. [
  30533. {
  30534. name: "Normal",
  30535. height: math.unit(11, "feet"),
  30536. default: true
  30537. },
  30538. ]
  30539. ))
  30540. characterMakers.push(() => makeCharacter(
  30541. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30542. {
  30543. front: {
  30544. height: math.unit(6, "feet"),
  30545. weight: math.unit(150, "lb"),
  30546. name: "Front",
  30547. image: {
  30548. source: "./media/characters/meep/front.svg",
  30549. extra: 88 / 80,
  30550. bottom: 6 / 94
  30551. }
  30552. },
  30553. },
  30554. [
  30555. {
  30556. name: "Fun Sized",
  30557. height: math.unit(2, "inches"),
  30558. default: true
  30559. },
  30560. {
  30561. name: "Friend Sized",
  30562. height: math.unit(8, "inches")
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(15, "feet"),
  30571. weight: math.unit(2500, "lb"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/holly-rabbit/front.svg",
  30575. extra: 1433 / 1233,
  30576. bottom: 125 / 1558
  30577. }
  30578. },
  30579. dick: {
  30580. height: math.unit(4.6, "feet"),
  30581. name: "Dick",
  30582. image: {
  30583. source: "./media/characters/holly-rabbit/dick.svg"
  30584. }
  30585. },
  30586. },
  30587. [
  30588. {
  30589. name: "Normal",
  30590. height: math.unit(15, "feet"),
  30591. default: true
  30592. },
  30593. {
  30594. name: "Macro",
  30595. height: math.unit(250, "feet")
  30596. },
  30597. {
  30598. name: "Macro+",
  30599. height: math.unit(2500, "feet")
  30600. },
  30601. ]
  30602. ))
  30603. characterMakers.push(() => makeCharacter(
  30604. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30605. {
  30606. front: {
  30607. height: math.unit(3.02, "meters"),
  30608. weight: math.unit(500, "kg"),
  30609. name: "Front",
  30610. image: {
  30611. source: "./media/characters/drena/front.svg",
  30612. extra: 282 / 243,
  30613. bottom: 8 / 290
  30614. }
  30615. },
  30616. side: {
  30617. height: math.unit(3.02, "meters"),
  30618. weight: math.unit(500, "kg"),
  30619. name: "Side",
  30620. image: {
  30621. source: "./media/characters/drena/side.svg",
  30622. extra: 280 / 245,
  30623. bottom: 10 / 290
  30624. }
  30625. },
  30626. back: {
  30627. height: math.unit(3.02, "meters"),
  30628. weight: math.unit(500, "kg"),
  30629. name: "Back",
  30630. image: {
  30631. source: "./media/characters/drena/back.svg",
  30632. extra: 278 / 243,
  30633. bottom: 2 / 280
  30634. }
  30635. },
  30636. foot: {
  30637. height: math.unit(0.75, "meters"),
  30638. name: "Foot",
  30639. image: {
  30640. source: "./media/characters/drena/foot.svg"
  30641. }
  30642. },
  30643. maw: {
  30644. height: math.unit(0.82, "meters"),
  30645. name: "Maw",
  30646. image: {
  30647. source: "./media/characters/drena/maw.svg"
  30648. }
  30649. },
  30650. eating: {
  30651. height: math.unit(0.75, "meters"),
  30652. name: "Eating",
  30653. image: {
  30654. source: "./media/characters/drena/eating.svg"
  30655. }
  30656. },
  30657. rump: {
  30658. height: math.unit(0.93, "meters"),
  30659. name: "Rump",
  30660. image: {
  30661. source: "./media/characters/drena/rump.svg"
  30662. }
  30663. },
  30664. },
  30665. [
  30666. {
  30667. name: "Normal",
  30668. height: math.unit(3.02, "meters"),
  30669. default: true
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30675. {
  30676. front: {
  30677. height: math.unit(6 + 4 / 12, "feet"),
  30678. weight: math.unit(250, "lb"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/remmyzilla/front.svg",
  30682. extra: 4033 / 3588,
  30683. bottom: 123 / 4156
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(6 + 4 / 12, "feet"),
  30688. weight: math.unit(250, "lb"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/remmyzilla/back.svg",
  30692. extra: 2687 / 2555,
  30693. bottom: 48 / 2735
  30694. }
  30695. },
  30696. paw: {
  30697. height: math.unit(1.73, "feet"),
  30698. name: "Paw",
  30699. image: {
  30700. source: "./media/characters/remmyzilla/paw.svg"
  30701. },
  30702. extraAttributes: {
  30703. "toeSize": {
  30704. name: "Toe Size",
  30705. power: 2,
  30706. type: "area",
  30707. base: math.unit(0.0035, "m^2")
  30708. },
  30709. "padSize": {
  30710. name: "Pad Size",
  30711. power: 2,
  30712. type: "area",
  30713. base: math.unit(0.015, "m^2")
  30714. },
  30715. "pawsize": {
  30716. name: "Paw Size",
  30717. power: 2,
  30718. type: "area",
  30719. base: math.unit(0.072, "m^2")
  30720. },
  30721. }
  30722. },
  30723. maw: {
  30724. height: math.unit(1.73, "feet"),
  30725. name: "Maw",
  30726. image: {
  30727. source: "./media/characters/remmyzilla/maw.svg"
  30728. }
  30729. },
  30730. },
  30731. [
  30732. {
  30733. name: "Normal",
  30734. height: math.unit(6 + 4 / 12, "feet")
  30735. },
  30736. {
  30737. name: "Minimacro",
  30738. height: math.unit(12 + 8 / 12, "feet")
  30739. },
  30740. {
  30741. name: "Normal",
  30742. height: math.unit(640, "feet"),
  30743. default: true
  30744. },
  30745. {
  30746. name: "Megamacro",
  30747. height: math.unit(6400, "feet")
  30748. },
  30749. {
  30750. name: "Gigamacro",
  30751. height: math.unit(64000, "miles")
  30752. },
  30753. ]
  30754. ))
  30755. characterMakers.push(() => makeCharacter(
  30756. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30757. {
  30758. front: {
  30759. height: math.unit(2.5, "meters"),
  30760. weight: math.unit(300, "lb"),
  30761. name: "Front",
  30762. image: {
  30763. source: "./media/characters/lawrence/front.svg",
  30764. extra: 357 / 335,
  30765. bottom: 30 / 387
  30766. }
  30767. },
  30768. back: {
  30769. height: math.unit(2.5, "meters"),
  30770. weight: math.unit(300, "lb"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/lawrence/back.svg",
  30774. extra: 357 / 338,
  30775. bottom: 16 / 373
  30776. }
  30777. },
  30778. head: {
  30779. height: math.unit(0.9, "meter"),
  30780. name: "Head",
  30781. image: {
  30782. source: "./media/characters/lawrence/head.svg"
  30783. }
  30784. },
  30785. maw: {
  30786. height: math.unit(0.7, "meter"),
  30787. name: "Maw",
  30788. image: {
  30789. source: "./media/characters/lawrence/maw.svg"
  30790. }
  30791. },
  30792. footBottom: {
  30793. height: math.unit(0.5, "meter"),
  30794. name: "Foot (Bottom)",
  30795. image: {
  30796. source: "./media/characters/lawrence/foot-bottom.svg"
  30797. }
  30798. },
  30799. footTop: {
  30800. height: math.unit(0.5, "meter"),
  30801. name: "Foot (Top)",
  30802. image: {
  30803. source: "./media/characters/lawrence/foot-top.svg"
  30804. }
  30805. },
  30806. },
  30807. [
  30808. {
  30809. name: "Normal",
  30810. height: math.unit(2.5, "meters"),
  30811. default: true
  30812. },
  30813. {
  30814. name: "Macro",
  30815. height: math.unit(95, "meters")
  30816. },
  30817. {
  30818. name: "Megamacro",
  30819. height: math.unit(150, "km")
  30820. },
  30821. ]
  30822. ))
  30823. characterMakers.push(() => makeCharacter(
  30824. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30825. {
  30826. front: {
  30827. height: math.unit(4.2, "meters"),
  30828. preyCapacity: math.unit(50, "m^3"),
  30829. weight: math.unit(30, "tonnes"),
  30830. name: "Front",
  30831. image: {
  30832. source: "./media/characters/sydney/front.svg",
  30833. extra: 1177/1129,
  30834. bottom: 197/1374
  30835. },
  30836. extraAttributes: {
  30837. "length": {
  30838. name: "Length",
  30839. power: 1,
  30840. type: "length",
  30841. base: math.unit(21, "meters")
  30842. },
  30843. }
  30844. },
  30845. },
  30846. [
  30847. {
  30848. name: "Normal",
  30849. height: math.unit(4.2, "meters"),
  30850. default: true
  30851. },
  30852. ]
  30853. ))
  30854. characterMakers.push(() => makeCharacter(
  30855. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30856. {
  30857. back: {
  30858. height: math.unit(201, "feet"),
  30859. name: "Back",
  30860. image: {
  30861. source: "./media/characters/jessica/back.svg",
  30862. extra: 273 / 259,
  30863. bottom: 7 / 280
  30864. }
  30865. },
  30866. },
  30867. [
  30868. {
  30869. name: "Normal",
  30870. height: math.unit(201, "feet"),
  30871. default: true
  30872. },
  30873. {
  30874. name: "Megamacro",
  30875. height: math.unit(8, "miles")
  30876. },
  30877. ]
  30878. ))
  30879. characterMakers.push(() => makeCharacter(
  30880. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30881. {
  30882. side: {
  30883. height: math.unit(5.6, "m"),
  30884. weight: math.unit(8000, "kg"),
  30885. name: "Side",
  30886. image: {
  30887. source: "./media/characters/victoria/side.svg",
  30888. extra: 1542/1229,
  30889. bottom: 124/1666
  30890. }
  30891. },
  30892. maw: {
  30893. height: math.unit(7.14, "feet"),
  30894. name: "Maw",
  30895. image: {
  30896. source: "./media/characters/victoria/maw.svg"
  30897. }
  30898. },
  30899. },
  30900. [
  30901. {
  30902. name: "Normal",
  30903. height: math.unit(5.6, "m"),
  30904. default: true
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30910. {
  30911. front: {
  30912. height: math.unit(5 + 6 / 12, "feet"),
  30913. name: "Front",
  30914. image: {
  30915. source: "./media/characters/cat/front.svg",
  30916. extra: 1449/1295,
  30917. bottom: 34/1483
  30918. },
  30919. form: "cat",
  30920. default: true
  30921. },
  30922. back: {
  30923. height: math.unit(5 + 6 / 12, "feet"),
  30924. name: "Back",
  30925. image: {
  30926. source: "./media/characters/cat/back.svg",
  30927. extra: 1466/1301,
  30928. bottom: 19/1485
  30929. },
  30930. form: "cat"
  30931. },
  30932. taur: {
  30933. height: math.unit(7, "feet"),
  30934. name: "Taur",
  30935. image: {
  30936. source: "./media/characters/cat/taur.svg",
  30937. extra: 1389/1233,
  30938. bottom: 83/1472
  30939. },
  30940. form: "taur",
  30941. default: true
  30942. },
  30943. lucarioFront: {
  30944. height: math.unit(4, "feet"),
  30945. name: "Lucario (Front)",
  30946. image: {
  30947. source: "./media/characters/cat/lucario-front.svg",
  30948. extra: 1149/1019,
  30949. bottom: 84/1233
  30950. },
  30951. form: "lucario",
  30952. default: true
  30953. },
  30954. lucarioBack: {
  30955. height: math.unit(4, "feet"),
  30956. name: "Lucario (Back)",
  30957. image: {
  30958. source: "./media/characters/cat/lucario-back.svg",
  30959. extra: 1190/1059,
  30960. bottom: 33/1223
  30961. },
  30962. form: "lucario"
  30963. },
  30964. megaLucario: {
  30965. height: math.unit(4, "feet"),
  30966. name: "Mega Lucario",
  30967. image: {
  30968. source: "./media/characters/cat/mega-lucario.svg",
  30969. extra: 1515 / 1319,
  30970. bottom: 63 / 1578
  30971. },
  30972. form: "lucario"
  30973. },
  30974. nickit: {
  30975. height: math.unit(2, "feet"),
  30976. name: "Nickit",
  30977. image: {
  30978. source: "./media/characters/cat/nickit.svg",
  30979. extra: 1980 / 1585,
  30980. bottom: 102 / 2082
  30981. },
  30982. form: "nickit",
  30983. default: true
  30984. },
  30985. lopunnyFront: {
  30986. height: math.unit(5, "feet"),
  30987. name: "Lopunny (Front)",
  30988. image: {
  30989. source: "./media/characters/cat/lopunny-front.svg",
  30990. extra: 1782 / 1469,
  30991. bottom: 38 / 1820
  30992. },
  30993. form: "lopunny",
  30994. default: true
  30995. },
  30996. lopunnyBack: {
  30997. height: math.unit(5, "feet"),
  30998. name: "Lopunny (Back)",
  30999. image: {
  31000. source: "./media/characters/cat/lopunny-back.svg",
  31001. extra: 1660 / 1490,
  31002. bottom: 25 / 1685
  31003. },
  31004. form: "lopunny"
  31005. },
  31006. },
  31007. [
  31008. {
  31009. name: "Really small",
  31010. height: math.unit(1, "nm")
  31011. },
  31012. {
  31013. name: "Micro",
  31014. height: math.unit(5, "inches")
  31015. },
  31016. {
  31017. name: "Normal",
  31018. height: math.unit(5 + 6 / 12, "feet"),
  31019. default: true
  31020. },
  31021. {
  31022. name: "Macro",
  31023. height: math.unit(50, "feet")
  31024. },
  31025. {
  31026. name: "Macro+",
  31027. height: math.unit(150, "feet")
  31028. },
  31029. {
  31030. name: "Megamacro",
  31031. height: math.unit(100, "miles")
  31032. },
  31033. ]
  31034. ))
  31035. characterMakers.push(() => makeCharacter(
  31036. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31037. {
  31038. front: {
  31039. height: math.unit(63.4, "meters"),
  31040. weight: math.unit(3.28349e+6, "kilograms"),
  31041. name: "Front",
  31042. image: {
  31043. source: "./media/characters/kirina-violet/front.svg",
  31044. extra: 2812 / 2725,
  31045. bottom: 0 / 2812
  31046. }
  31047. },
  31048. back: {
  31049. height: math.unit(63.4, "meters"),
  31050. weight: math.unit(3.28349e+6, "kilograms"),
  31051. name: "Back",
  31052. image: {
  31053. source: "./media/characters/kirina-violet/back.svg",
  31054. extra: 2812 / 2725,
  31055. bottom: 0 / 2812
  31056. }
  31057. },
  31058. mouth: {
  31059. height: math.unit(4.35, "meters"),
  31060. name: "Mouth",
  31061. image: {
  31062. source: "./media/characters/kirina-violet/mouth.svg"
  31063. }
  31064. },
  31065. paw: {
  31066. height: math.unit(5.6, "meters"),
  31067. name: "Paw",
  31068. image: {
  31069. source: "./media/characters/kirina-violet/paw.svg"
  31070. }
  31071. },
  31072. tail: {
  31073. height: math.unit(18, "meters"),
  31074. name: "Tail",
  31075. image: {
  31076. source: "./media/characters/kirina-violet/tail.svg"
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Macro",
  31083. height: math.unit(63.4, "meters"),
  31084. default: true
  31085. },
  31086. ]
  31087. ))
  31088. characterMakers.push(() => makeCharacter(
  31089. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31090. {
  31091. front: {
  31092. height: math.unit(75, "feet"),
  31093. name: "Front",
  31094. image: {
  31095. source: "./media/characters/cat-gigachu/front.svg",
  31096. extra: 1239/1027,
  31097. bottom: 32/1271
  31098. }
  31099. },
  31100. back: {
  31101. height: math.unit(75, "feet"),
  31102. name: "Back",
  31103. image: {
  31104. source: "./media/characters/cat-gigachu/back.svg",
  31105. extra: 1229/1030,
  31106. bottom: 9/1238
  31107. }
  31108. },
  31109. },
  31110. [
  31111. {
  31112. name: "Dynamax",
  31113. height: math.unit(75, "feet"),
  31114. default: true
  31115. },
  31116. ]
  31117. ))
  31118. characterMakers.push(() => makeCharacter(
  31119. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31120. {
  31121. front: {
  31122. height: math.unit(6, "feet"),
  31123. weight: math.unit(150, "lb"),
  31124. name: "Front",
  31125. image: {
  31126. source: "./media/characters/sfaiyan/front.svg",
  31127. extra: 999 / 978,
  31128. bottom: 5 / 1004
  31129. }
  31130. },
  31131. },
  31132. [
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(1.82, "meters")
  31136. },
  31137. {
  31138. name: "Giant",
  31139. height: math.unit(2.27, "km"),
  31140. default: true
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(179, "cm"),
  31149. weight: math.unit(100, "kg"),
  31150. name: "Front",
  31151. image: {
  31152. source: "./media/characters/raunehkeli/front.svg",
  31153. extra: 1934 / 1926,
  31154. bottom: 0 / 1934
  31155. }
  31156. },
  31157. },
  31158. [
  31159. {
  31160. name: "Normal",
  31161. height: math.unit(179, "cm")
  31162. },
  31163. {
  31164. name: "Maximum",
  31165. height: math.unit(575, "meters"),
  31166. default: true
  31167. },
  31168. ]
  31169. ))
  31170. characterMakers.push(() => makeCharacter(
  31171. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31172. {
  31173. front: {
  31174. height: math.unit(6, "feet"),
  31175. weight: math.unit(150, "lb"),
  31176. name: "Front",
  31177. image: {
  31178. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31179. extra: 2625 / 2518,
  31180. bottom: 60 / 2685
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(6 + 2 / 12, "feet")
  31188. },
  31189. {
  31190. name: "Macro",
  31191. height: math.unit(1180, "feet"),
  31192. default: true
  31193. },
  31194. ]
  31195. ))
  31196. characterMakers.push(() => makeCharacter(
  31197. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31198. {
  31199. front: {
  31200. height: math.unit(5 + 6 / 12, "feet"),
  31201. weight: math.unit(108, "lb"),
  31202. name: "Front",
  31203. image: {
  31204. source: "./media/characters/lilith-zott/front.svg",
  31205. extra: 2510 / 2238,
  31206. bottom: 100 / 2610
  31207. }
  31208. },
  31209. frontDressed: {
  31210. height: math.unit(5 + 6 / 12, "feet"),
  31211. weight: math.unit(108, "lb"),
  31212. name: "Front (Dressed)",
  31213. image: {
  31214. source: "./media/characters/lilith-zott/front-dressed.svg",
  31215. extra: 2510 / 2238,
  31216. bottom: 100 / 2610
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(5 + 6 / 12, "feet")
  31224. },
  31225. {
  31226. name: "Macro",
  31227. height: math.unit(1030, "feet"),
  31228. default: true
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31234. {
  31235. front: {
  31236. height: math.unit(6, "feet"),
  31237. weight: math.unit(150, "lb"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31241. extra: 2567 / 2435,
  31242. bottom: 39 / 2606
  31243. }
  31244. },
  31245. frontSuper: {
  31246. height: math.unit(6, "feet"),
  31247. name: "Front (Super)",
  31248. image: {
  31249. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31250. extra: 2567 / 2435,
  31251. bottom: 39 / 2606
  31252. }
  31253. },
  31254. },
  31255. [
  31256. {
  31257. name: "Normal",
  31258. height: math.unit(5 + 10 / 12, "feet")
  31259. },
  31260. {
  31261. name: "Macro",
  31262. height: math.unit(1100, "feet"),
  31263. default: true
  31264. },
  31265. ]
  31266. ))
  31267. characterMakers.push(() => makeCharacter(
  31268. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31269. {
  31270. front: {
  31271. height: math.unit(100, "miles"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/sona/front.svg",
  31275. extra: 2433 / 2201,
  31276. bottom: 53 / 2486
  31277. }
  31278. },
  31279. foot: {
  31280. height: math.unit(16.1, "miles"),
  31281. name: "Foot",
  31282. image: {
  31283. source: "./media/characters/sona/foot.svg"
  31284. }
  31285. },
  31286. },
  31287. [
  31288. {
  31289. name: "Macro",
  31290. height: math.unit(100, "miles"),
  31291. default: true
  31292. },
  31293. ]
  31294. ))
  31295. characterMakers.push(() => makeCharacter(
  31296. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31297. {
  31298. front: {
  31299. height: math.unit(6, "feet"),
  31300. weight: math.unit(150, "lb"),
  31301. name: "Front",
  31302. image: {
  31303. source: "./media/characters/bailey/front.svg",
  31304. extra: 1778 / 1724,
  31305. bottom: 30 / 1808
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Micro",
  31312. height: math.unit(4, "inches")
  31313. },
  31314. {
  31315. name: "Normal",
  31316. height: math.unit(5 + 5 / 12, "feet"),
  31317. default: true
  31318. },
  31319. {
  31320. name: "Macro",
  31321. height: math.unit(250, "feet")
  31322. },
  31323. {
  31324. name: "Megamacro",
  31325. height: math.unit(100, "miles")
  31326. },
  31327. ]
  31328. ))
  31329. characterMakers.push(() => makeCharacter(
  31330. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31331. {
  31332. front: {
  31333. height: math.unit(5 + 2 / 12, "feet"),
  31334. weight: math.unit(120, "lb"),
  31335. name: "Front",
  31336. image: {
  31337. source: "./media/characters/snaps/front.svg",
  31338. extra: 2370 / 2177,
  31339. bottom: 48 / 2418
  31340. }
  31341. },
  31342. back: {
  31343. height: math.unit(5 + 2 / 12, "feet"),
  31344. weight: math.unit(120, "lb"),
  31345. name: "Back",
  31346. image: {
  31347. source: "./media/characters/snaps/back.svg",
  31348. extra: 2408 / 2258,
  31349. bottom: 15 / 2423
  31350. }
  31351. },
  31352. },
  31353. [
  31354. {
  31355. name: "Micro",
  31356. height: math.unit(9, "inches")
  31357. },
  31358. {
  31359. name: "Normal",
  31360. height: math.unit(5 + 2 / 12, "feet"),
  31361. default: true
  31362. },
  31363. {
  31364. name: "Mini Macro",
  31365. height: math.unit(10, "feet")
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(1.8, "meters"),
  31374. weight: math.unit(85, "kg"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/azteck/front.svg",
  31378. extra: 2815 / 2625,
  31379. bottom: 89 / 2904
  31380. }
  31381. },
  31382. back: {
  31383. height: math.unit(1.8, "meters"),
  31384. weight: math.unit(85, "kg"),
  31385. name: "Back",
  31386. image: {
  31387. source: "./media/characters/azteck/back.svg",
  31388. extra: 2856 / 2648,
  31389. bottom: 85 / 2941
  31390. }
  31391. },
  31392. frontDressed: {
  31393. height: math.unit(1.8, "meters"),
  31394. weight: math.unit(85, "kg"),
  31395. name: "Front (Dressed)",
  31396. image: {
  31397. source: "./media/characters/azteck/front-dressed.svg",
  31398. extra: 2147 / 2003,
  31399. bottom: 68 / 2215
  31400. }
  31401. },
  31402. head: {
  31403. height: math.unit(0.47, "meters"),
  31404. weight: math.unit(85, "kg"),
  31405. name: "Head",
  31406. image: {
  31407. source: "./media/characters/azteck/head.svg"
  31408. }
  31409. },
  31410. },
  31411. [
  31412. {
  31413. name: "Bite sized",
  31414. height: math.unit(16, "cm")
  31415. },
  31416. {
  31417. name: "Normal",
  31418. height: math.unit(1.8, "meters"),
  31419. default: true
  31420. },
  31421. ]
  31422. ))
  31423. characterMakers.push(() => makeCharacter(
  31424. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31425. {
  31426. front: {
  31427. height: math.unit(6, "feet"),
  31428. weight: math.unit(150, "lb"),
  31429. name: "Front",
  31430. image: {
  31431. source: "./media/characters/pidge/front.svg",
  31432. extra: 1936/1820,
  31433. bottom: 0/1936
  31434. }
  31435. },
  31436. back: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Back",
  31440. image: {
  31441. source: "./media/characters/pidge/back.svg",
  31442. extra: 1938/1843,
  31443. bottom: 0/1938
  31444. }
  31445. },
  31446. casual: {
  31447. height: math.unit(6, "feet"),
  31448. weight: math.unit(150, "lb"),
  31449. name: "Casual",
  31450. image: {
  31451. source: "./media/characters/pidge/casual.svg",
  31452. extra: 1936/1820,
  31453. bottom: 0/1936
  31454. }
  31455. },
  31456. tech: {
  31457. height: math.unit(6, "feet"),
  31458. weight: math.unit(150, "lb"),
  31459. name: "Tech",
  31460. image: {
  31461. source: "./media/characters/pidge/tech.svg",
  31462. extra: 1802/1682,
  31463. bottom: 0/1802
  31464. }
  31465. },
  31466. head: {
  31467. height: math.unit(1.61, "feet"),
  31468. name: "Head",
  31469. image: {
  31470. source: "./media/characters/pidge/head.svg"
  31471. }
  31472. },
  31473. collar: {
  31474. height: math.unit(0.82, "feet"),
  31475. name: "Collar",
  31476. image: {
  31477. source: "./media/characters/pidge/collar.svg"
  31478. }
  31479. },
  31480. },
  31481. [
  31482. {
  31483. name: "Macro",
  31484. height: math.unit(2, "mile"),
  31485. default: true
  31486. },
  31487. {
  31488. name: "PUPPY",
  31489. height: math.unit(20, "miles")
  31490. },
  31491. ]
  31492. ))
  31493. characterMakers.push(() => makeCharacter(
  31494. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31495. {
  31496. front: {
  31497. height: math.unit(6, "feet"),
  31498. weight: math.unit(150, "lb"),
  31499. name: "Front",
  31500. image: {
  31501. source: "./media/characters/en/front.svg",
  31502. extra: 1697 / 1563,
  31503. bottom: 103 / 1800
  31504. }
  31505. },
  31506. back: {
  31507. height: math.unit(6, "feet"),
  31508. weight: math.unit(150, "lb"),
  31509. name: "Back",
  31510. image: {
  31511. source: "./media/characters/en/back.svg",
  31512. extra: 1700 / 1570,
  31513. bottom: 51 / 1751
  31514. }
  31515. },
  31516. frontDressed: {
  31517. height: math.unit(6, "feet"),
  31518. weight: math.unit(150, "lb"),
  31519. name: "Front (Dressed)",
  31520. image: {
  31521. source: "./media/characters/en/front-dressed.svg",
  31522. extra: 1697 / 1563,
  31523. bottom: 103 / 1800
  31524. }
  31525. },
  31526. backDressed: {
  31527. height: math.unit(6, "feet"),
  31528. weight: math.unit(150, "lb"),
  31529. name: "Back (Dressed)",
  31530. image: {
  31531. source: "./media/characters/en/back-dressed.svg",
  31532. extra: 1700 / 1570,
  31533. bottom: 51 / 1751
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Macro",
  31540. height: math.unit(210, "feet"),
  31541. default: true
  31542. },
  31543. ]
  31544. ))
  31545. characterMakers.push(() => makeCharacter(
  31546. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31547. {
  31548. front: {
  31549. height: math.unit(6, "feet"),
  31550. weight: math.unit(150, "lb"),
  31551. name: "Front",
  31552. image: {
  31553. source: "./media/characters/haze-orris/front.svg",
  31554. extra: 3975 / 3525,
  31555. bottom: 137 / 4112
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Micro",
  31562. height: math.unit(150, "mm"),
  31563. default: true
  31564. },
  31565. ]
  31566. ))
  31567. characterMakers.push(() => makeCharacter(
  31568. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31569. {
  31570. front: {
  31571. height: math.unit(6, "feet"),
  31572. weight: math.unit(150, "lb"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/casselene-yaro/front.svg",
  31576. extra: 4721 / 4541,
  31577. bottom: 82 / 4803
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(6, "feet"),
  31582. weight: math.unit(150, "lb"),
  31583. name: "Back",
  31584. image: {
  31585. source: "./media/characters/casselene-yaro/back.svg",
  31586. extra: 4569 / 4377,
  31587. bottom: 69 / 4638
  31588. }
  31589. },
  31590. dressed: {
  31591. height: math.unit(6, "feet"),
  31592. weight: math.unit(150, "lb"),
  31593. name: "Dressed",
  31594. image: {
  31595. source: "./media/characters/casselene-yaro/dressed.svg",
  31596. extra: 4721 / 4541,
  31597. bottom: 82 / 4803
  31598. }
  31599. },
  31600. maw: {
  31601. height: math.unit(1, "feet"),
  31602. name: "Maw",
  31603. image: {
  31604. source: "./media/characters/casselene-yaro/maw.svg"
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Macro",
  31611. height: math.unit(190, "feet"),
  31612. default: true
  31613. },
  31614. ]
  31615. ))
  31616. characterMakers.push(() => makeCharacter(
  31617. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31618. {
  31619. front: {
  31620. height: math.unit(10, "feet"),
  31621. weight: math.unit(15015, "lb"),
  31622. name: "Front",
  31623. image: {
  31624. source: "./media/characters/platine/front.svg",
  31625. extra: 1741/1650,
  31626. bottom: 84/1825
  31627. }
  31628. },
  31629. side: {
  31630. height: math.unit(10, "feet"),
  31631. weight: math.unit(15015, "lb"),
  31632. name: "Side",
  31633. image: {
  31634. source: "./media/characters/platine/side.svg",
  31635. extra: 1790/1705,
  31636. bottom: 29/1819
  31637. }
  31638. },
  31639. },
  31640. [
  31641. {
  31642. name: "Normal",
  31643. height: math.unit(10, "feet"),
  31644. default: true
  31645. },
  31646. {
  31647. name: "Macro",
  31648. height: math.unit(100, "feet")
  31649. },
  31650. {
  31651. name: "Megamacro",
  31652. height: math.unit(1000, "feet")
  31653. },
  31654. ]
  31655. ))
  31656. characterMakers.push(() => makeCharacter(
  31657. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31658. {
  31659. front: {
  31660. height: math.unit(15 + 5 / 12, "feet"),
  31661. weight: math.unit(4600, "lb"),
  31662. name: "Front",
  31663. image: {
  31664. source: "./media/characters/neapolitan-ananassa/front.svg",
  31665. extra: 2903 / 2736,
  31666. bottom: 0 / 2903
  31667. }
  31668. },
  31669. side: {
  31670. height: math.unit(15 + 5 / 12, "feet"),
  31671. weight: math.unit(4600, "lb"),
  31672. name: "Side",
  31673. image: {
  31674. source: "./media/characters/neapolitan-ananassa/side.svg",
  31675. extra: 2925 / 2719,
  31676. bottom: 0 / 2925
  31677. }
  31678. },
  31679. back: {
  31680. height: math.unit(15 + 5 / 12, "feet"),
  31681. weight: math.unit(4600, "lb"),
  31682. name: "Back",
  31683. image: {
  31684. source: "./media/characters/neapolitan-ananassa/back.svg",
  31685. extra: 2903 / 2736,
  31686. bottom: 0 / 2903
  31687. }
  31688. },
  31689. },
  31690. [
  31691. {
  31692. name: "Normal",
  31693. height: math.unit(15 + 5 / 12, "feet"),
  31694. default: true
  31695. },
  31696. {
  31697. name: "Post-Millenium",
  31698. height: math.unit(35 + 5 / 12, "feet")
  31699. },
  31700. {
  31701. name: "Post-Era",
  31702. height: math.unit(450 + 5 / 12, "feet")
  31703. },
  31704. ]
  31705. ))
  31706. characterMakers.push(() => makeCharacter(
  31707. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31708. {
  31709. front: {
  31710. height: math.unit(300, "meters"),
  31711. weight: math.unit(125000, "tonnes"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/pazuzu/front.svg",
  31715. extra: 877 / 794,
  31716. bottom: 47 / 924
  31717. }
  31718. },
  31719. },
  31720. [
  31721. {
  31722. name: "Macro",
  31723. height: math.unit(300, "meters"),
  31724. default: true
  31725. },
  31726. ]
  31727. ))
  31728. characterMakers.push(() => makeCharacter(
  31729. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31730. {
  31731. side: {
  31732. height: math.unit(10 + 7 / 12, "feet"),
  31733. weight: math.unit(2.5, "tons"),
  31734. name: "Side",
  31735. image: {
  31736. source: "./media/characters/aasha/side.svg",
  31737. extra: 1345 / 1245,
  31738. bottom: 111 / 1456
  31739. }
  31740. },
  31741. back: {
  31742. height: math.unit(10 + 7 / 12, "feet"),
  31743. weight: math.unit(2.5, "tons"),
  31744. name: "Back",
  31745. image: {
  31746. source: "./media/characters/aasha/back.svg",
  31747. extra: 1133 / 1057,
  31748. bottom: 257 / 1390
  31749. }
  31750. },
  31751. },
  31752. [
  31753. {
  31754. name: "Normal",
  31755. height: math.unit(10 + 7 / 12, "feet"),
  31756. default: true
  31757. },
  31758. ]
  31759. ))
  31760. characterMakers.push(() => makeCharacter(
  31761. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31762. {
  31763. front: {
  31764. height: math.unit(6 + 3 / 12, "feet"),
  31765. name: "Front",
  31766. image: {
  31767. source: "./media/characters/nevan/front.svg",
  31768. extra: 704 / 704,
  31769. bottom: 28 / 732
  31770. }
  31771. },
  31772. back: {
  31773. height: math.unit(6 + 3 / 12, "feet"),
  31774. name: "Back",
  31775. image: {
  31776. source: "./media/characters/nevan/back.svg",
  31777. extra: 714 / 714,
  31778. bottom: 21 / 735
  31779. }
  31780. },
  31781. frontFlaccid: {
  31782. height: math.unit(6 + 3 / 12, "feet"),
  31783. name: "Front (Flaccid)",
  31784. image: {
  31785. source: "./media/characters/nevan/front-flaccid.svg",
  31786. extra: 704 / 704,
  31787. bottom: 28 / 732
  31788. }
  31789. },
  31790. frontErect: {
  31791. height: math.unit(6 + 3 / 12, "feet"),
  31792. name: "Front (Erect)",
  31793. image: {
  31794. source: "./media/characters/nevan/front-erect.svg",
  31795. extra: 704 / 704,
  31796. bottom: 28 / 732
  31797. }
  31798. },
  31799. backFlaccid: {
  31800. height: math.unit(6 + 3 / 12, "feet"),
  31801. name: "Back (Flaccid)",
  31802. image: {
  31803. source: "./media/characters/nevan/back-flaccid.svg",
  31804. extra: 714 / 714,
  31805. bottom: 21 / 735
  31806. }
  31807. },
  31808. },
  31809. [
  31810. {
  31811. name: "Normal",
  31812. height: math.unit(6 + 3 / 12, "feet"),
  31813. default: true
  31814. },
  31815. ]
  31816. ))
  31817. characterMakers.push(() => makeCharacter(
  31818. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31819. {
  31820. front: {
  31821. height: math.unit(4, "feet"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/arhan/front.svg",
  31825. extra: 3368 / 3133,
  31826. bottom: 0 / 3368
  31827. }
  31828. },
  31829. side: {
  31830. height: math.unit(4, "feet"),
  31831. name: "Side",
  31832. image: {
  31833. source: "./media/characters/arhan/side.svg",
  31834. extra: 3347 / 3105,
  31835. bottom: 0 / 3347
  31836. }
  31837. },
  31838. tongue: {
  31839. height: math.unit(1.42, "feet"),
  31840. name: "Tongue",
  31841. image: {
  31842. source: "./media/characters/arhan/tongue.svg"
  31843. }
  31844. },
  31845. head: {
  31846. height: math.unit(0.85, "feet"),
  31847. name: "Head",
  31848. image: {
  31849. source: "./media/characters/arhan/head.svg"
  31850. }
  31851. },
  31852. },
  31853. [
  31854. {
  31855. name: "Normal",
  31856. height: math.unit(4, "feet"),
  31857. default: true
  31858. },
  31859. ]
  31860. ))
  31861. characterMakers.push(() => makeCharacter(
  31862. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31863. {
  31864. front: {
  31865. height: math.unit(5 + 7.5 / 12, "feet"),
  31866. weight: math.unit(120, "lb"),
  31867. name: "Front",
  31868. image: {
  31869. source: "./media/characters/digi-duncan/front.svg",
  31870. extra: 330 / 326,
  31871. bottom: 16 / 346
  31872. }
  31873. },
  31874. side: {
  31875. height: math.unit(5 + 7.5 / 12, "feet"),
  31876. weight: math.unit(120, "lb"),
  31877. name: "Side",
  31878. image: {
  31879. source: "./media/characters/digi-duncan/side.svg",
  31880. extra: 341 / 337,
  31881. bottom: 1 / 342
  31882. }
  31883. },
  31884. back: {
  31885. height: math.unit(5 + 7.5 / 12, "feet"),
  31886. weight: math.unit(120, "lb"),
  31887. name: "Back",
  31888. image: {
  31889. source: "./media/characters/digi-duncan/back.svg",
  31890. extra: 330 / 326,
  31891. bottom: 12 / 342
  31892. }
  31893. },
  31894. },
  31895. [
  31896. {
  31897. name: "Speck",
  31898. height: math.unit(0.25, "mm")
  31899. },
  31900. {
  31901. name: "Micro",
  31902. height: math.unit(5, "mm")
  31903. },
  31904. {
  31905. name: "Tiny",
  31906. height: math.unit(0.5, "inches"),
  31907. default: true
  31908. },
  31909. {
  31910. name: "Human",
  31911. height: math.unit(5 + 7.5 / 12, "feet")
  31912. },
  31913. {
  31914. name: "Minigiant",
  31915. height: math.unit(8 + 5.25, "feet")
  31916. },
  31917. {
  31918. name: "Giant",
  31919. height: math.unit(2000, "feet")
  31920. },
  31921. {
  31922. name: "Mega",
  31923. height: math.unit(371.1, "miles")
  31924. },
  31925. ]
  31926. ))
  31927. characterMakers.push(() => makeCharacter(
  31928. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31929. {
  31930. front: {
  31931. height: math.unit(2, "meters"),
  31932. weight: math.unit(350, "kg"),
  31933. name: "Front",
  31934. image: {
  31935. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31936. extra: 898 / 838,
  31937. bottom: 9 / 907
  31938. }
  31939. },
  31940. },
  31941. [
  31942. {
  31943. name: "Micro",
  31944. height: math.unit(8, "meters")
  31945. },
  31946. {
  31947. name: "Normal",
  31948. height: math.unit(50, "meters"),
  31949. default: true
  31950. },
  31951. {
  31952. name: "Macro",
  31953. height: math.unit(500, "meters")
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31959. {
  31960. front: {
  31961. height: math.unit(6 + 6 / 12, "feet"),
  31962. name: "Front",
  31963. image: {
  31964. source: "./media/characters/khardesh/front.svg",
  31965. extra: 1788/1596,
  31966. bottom: 66/1854
  31967. }
  31968. },
  31969. back: {
  31970. height: math.unit(6 + 6 / 12, "feet"),
  31971. name: "Back",
  31972. image: {
  31973. source: "./media/characters/khardesh/back.svg",
  31974. extra: 1781/1584,
  31975. bottom: 68/1849
  31976. }
  31977. },
  31978. },
  31979. [
  31980. {
  31981. name: "Normal",
  31982. height: math.unit(6 + 6 / 12, "feet"),
  31983. default: true
  31984. },
  31985. {
  31986. name: "Normal+",
  31987. height: math.unit(4, "meters")
  31988. },
  31989. {
  31990. name: "Macro",
  31991. height: math.unit(50, "meters")
  31992. },
  31993. {
  31994. name: "Macro+",
  31995. height: math.unit(100, "meters")
  31996. },
  31997. {
  31998. name: "Megamacro",
  31999. height: math.unit(20, "km")
  32000. },
  32001. ]
  32002. ))
  32003. characterMakers.push(() => makeCharacter(
  32004. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32005. {
  32006. front: {
  32007. height: math.unit(6, "feet"),
  32008. weight: math.unit(150, "lb"),
  32009. name: "Front",
  32010. image: {
  32011. source: "./media/characters/kosho/front.svg",
  32012. extra: 1847 / 1847,
  32013. bottom: 86 / 1933
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Second-stage micro",
  32020. height: math.unit(0.5, "inches")
  32021. },
  32022. {
  32023. name: "First-stage micro",
  32024. height: math.unit(6, "inches")
  32025. },
  32026. {
  32027. name: "Normal",
  32028. height: math.unit(6, "feet"),
  32029. default: true
  32030. },
  32031. {
  32032. name: "First-stage macro",
  32033. height: math.unit(72, "feet")
  32034. },
  32035. {
  32036. name: "Second-stage macro",
  32037. height: math.unit(864, "feet")
  32038. },
  32039. ]
  32040. ))
  32041. characterMakers.push(() => makeCharacter(
  32042. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32043. {
  32044. normal: {
  32045. height: math.unit(4 + 6 / 12, "feet"),
  32046. name: "Normal",
  32047. image: {
  32048. source: "./media/characters/hydra/normal.svg",
  32049. extra: 2833 / 2634,
  32050. bottom: 68 / 2901
  32051. }
  32052. },
  32053. smol: {
  32054. height: math.unit(0.705, "inches"),
  32055. name: "Smol",
  32056. image: {
  32057. source: "./media/characters/hydra/smol.svg",
  32058. extra: 2715 / 2540,
  32059. bottom: 0 / 2715
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(4 + 6 / 12, "feet"),
  32067. default: true
  32068. }
  32069. ]
  32070. ))
  32071. characterMakers.push(() => makeCharacter(
  32072. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32073. {
  32074. front: {
  32075. height: math.unit(0.6, "cm"),
  32076. name: "Front",
  32077. image: {
  32078. source: "./media/characters/daz/front.svg",
  32079. extra: 1682 / 1164,
  32080. bottom: 42 / 1724
  32081. }
  32082. },
  32083. },
  32084. [
  32085. {
  32086. name: "Normal",
  32087. height: math.unit(0.6, "cm"),
  32088. default: true
  32089. },
  32090. ]
  32091. ))
  32092. characterMakers.push(() => makeCharacter(
  32093. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32094. {
  32095. front: {
  32096. height: math.unit(6, "feet"),
  32097. weight: math.unit(235, "lb"),
  32098. name: "Front",
  32099. image: {
  32100. source: "./media/characters/theo-pangolin/front.svg",
  32101. extra: 1996 / 1969,
  32102. bottom: 115 / 2111
  32103. }
  32104. },
  32105. back: {
  32106. height: math.unit(6, "feet"),
  32107. weight: math.unit(235, "lb"),
  32108. name: "Back",
  32109. image: {
  32110. source: "./media/characters/theo-pangolin/back.svg",
  32111. extra: 1979 / 1979,
  32112. bottom: 40 / 2019
  32113. }
  32114. },
  32115. feral: {
  32116. height: math.unit(2, "feet"),
  32117. weight: math.unit(30, "lb"),
  32118. name: "Feral",
  32119. image: {
  32120. source: "./media/characters/theo-pangolin/feral.svg",
  32121. extra: 803 / 791,
  32122. bottom: 181 / 984
  32123. }
  32124. },
  32125. footFive: {
  32126. height: math.unit(1.43, "feet"),
  32127. name: "Foot (Five Toes)",
  32128. image: {
  32129. source: "./media/characters/theo-pangolin/foot-five.svg"
  32130. }
  32131. },
  32132. footFour: {
  32133. height: math.unit(1.43, "feet"),
  32134. name: "Foot (Four Toes)",
  32135. image: {
  32136. source: "./media/characters/theo-pangolin/foot-four.svg"
  32137. }
  32138. },
  32139. handFour: {
  32140. height: math.unit(0.81, "feet"),
  32141. name: "Hand (Four Fingers)",
  32142. image: {
  32143. source: "./media/characters/theo-pangolin/hand-four.svg"
  32144. }
  32145. },
  32146. handThree: {
  32147. height: math.unit(0.81, "feet"),
  32148. name: "Hand (Three Fingers)",
  32149. image: {
  32150. source: "./media/characters/theo-pangolin/hand-three.svg"
  32151. }
  32152. },
  32153. headFront: {
  32154. height: math.unit(1.37, "feet"),
  32155. name: "Head (Front)",
  32156. image: {
  32157. source: "./media/characters/theo-pangolin/head-front.svg"
  32158. }
  32159. },
  32160. headSide: {
  32161. height: math.unit(1.43, "feet"),
  32162. name: "Head (Side)",
  32163. image: {
  32164. source: "./media/characters/theo-pangolin/head-side.svg"
  32165. }
  32166. },
  32167. tongue: {
  32168. height: math.unit(2.29, "feet"),
  32169. name: "Tongue",
  32170. image: {
  32171. source: "./media/characters/theo-pangolin/tongue.svg"
  32172. }
  32173. },
  32174. },
  32175. [
  32176. {
  32177. name: "Normal",
  32178. height: math.unit(6, "feet")
  32179. },
  32180. {
  32181. name: "Macro",
  32182. height: math.unit(400, "feet"),
  32183. default: true
  32184. },
  32185. ]
  32186. ))
  32187. characterMakers.push(() => makeCharacter(
  32188. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32189. {
  32190. front: {
  32191. height: math.unit(6, "inches"),
  32192. weight: math.unit(0.036, "kg"),
  32193. name: "Front",
  32194. image: {
  32195. source: "./media/characters/renée/front.svg",
  32196. extra: 900 / 886,
  32197. bottom: 8 / 908
  32198. }
  32199. },
  32200. },
  32201. [
  32202. {
  32203. name: "Nano",
  32204. height: math.unit(1, "nm")
  32205. },
  32206. {
  32207. name: "Micro",
  32208. height: math.unit(1, "mm")
  32209. },
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(6, "inches")
  32213. },
  32214. {
  32215. name: "Macro",
  32216. height: math.unit(2000, "feet"),
  32217. default: true
  32218. },
  32219. {
  32220. name: "Megamacro",
  32221. height: math.unit(2, "km")
  32222. },
  32223. {
  32224. name: "Gigamacro",
  32225. height: math.unit(2000, "km")
  32226. },
  32227. {
  32228. name: "Teramacro",
  32229. height: math.unit(250000, "km")
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32235. {
  32236. front: {
  32237. height: math.unit(4, "meters"),
  32238. weight: math.unit(150, "kg"),
  32239. name: "Front",
  32240. image: {
  32241. source: "./media/characters/caledvwlch/front.svg",
  32242. extra: 1757/1537,
  32243. bottom: 31/1788
  32244. }
  32245. },
  32246. side: {
  32247. height: math.unit(4, "meters"),
  32248. weight: math.unit(150, "kg"),
  32249. name: "Side",
  32250. image: {
  32251. source: "./media/characters/caledvwlch/side.svg",
  32252. extra: 1605 / 1536,
  32253. bottom: 31 / 1636
  32254. }
  32255. },
  32256. back: {
  32257. height: math.unit(4, "meters"),
  32258. weight: math.unit(150, "kg"),
  32259. name: "Back",
  32260. image: {
  32261. source: "./media/characters/caledvwlch/back.svg",
  32262. extra: 1635 / 1565,
  32263. bottom: 27 / 1662
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "\"Incognito\"",
  32270. height: math.unit(4, "meters")
  32271. },
  32272. {
  32273. name: "Small rampage",
  32274. height: math.unit(600, "meters")
  32275. },
  32276. {
  32277. name: "Mega",
  32278. height: math.unit(30, "km")
  32279. },
  32280. {
  32281. name: "Home-size",
  32282. height: math.unit(50, "km"),
  32283. default: true
  32284. },
  32285. {
  32286. name: "Giga",
  32287. height: math.unit(300, "km")
  32288. },
  32289. {
  32290. name: "Lounging",
  32291. height: math.unit(11000, "km")
  32292. },
  32293. {
  32294. name: "Planet snacking",
  32295. height: math.unit(2000000, "km")
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32301. {
  32302. front: {
  32303. height: math.unit(6, "feet"),
  32304. weight: math.unit(215, "lb"),
  32305. name: "Front",
  32306. image: {
  32307. source: "./media/characters/sapphire-svell/front.svg",
  32308. extra: 495 / 455,
  32309. bottom: 20 / 515
  32310. }
  32311. },
  32312. back: {
  32313. height: math.unit(6, "feet"),
  32314. weight: math.unit(216, "lb"),
  32315. name: "Back",
  32316. image: {
  32317. source: "./media/characters/sapphire-svell/back.svg",
  32318. extra: 497 / 477,
  32319. bottom: 7 / 504
  32320. }
  32321. },
  32322. maw: {
  32323. height: math.unit(1.57, "feet"),
  32324. name: "Maw",
  32325. image: {
  32326. source: "./media/characters/sapphire-svell/maw.svg"
  32327. }
  32328. },
  32329. foot: {
  32330. height: math.unit(1.07, "feet"),
  32331. name: "Foot",
  32332. image: {
  32333. source: "./media/characters/sapphire-svell/foot.svg"
  32334. }
  32335. },
  32336. toering: {
  32337. height: math.unit(1.7, "inch"),
  32338. name: "Toering",
  32339. image: {
  32340. source: "./media/characters/sapphire-svell/toering.svg"
  32341. }
  32342. },
  32343. },
  32344. [
  32345. {
  32346. name: "Normal",
  32347. height: math.unit(300, "feet"),
  32348. default: true
  32349. },
  32350. {
  32351. name: "Augmented",
  32352. height: math.unit(1250, "feet")
  32353. },
  32354. {
  32355. name: "Unleashed",
  32356. height: math.unit(3000, "feet")
  32357. },
  32358. ]
  32359. ))
  32360. characterMakers.push(() => makeCharacter(
  32361. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32362. {
  32363. side: {
  32364. height: math.unit(2 + 3 / 12, "feet"),
  32365. weight: math.unit(110, "lb"),
  32366. name: "Side",
  32367. image: {
  32368. source: "./media/characters/glitch-flux/side.svg",
  32369. extra: 997 / 805,
  32370. bottom: 20 / 1017
  32371. }
  32372. },
  32373. },
  32374. [
  32375. {
  32376. name: "Normal",
  32377. height: math.unit(2 + 3 / 12, "feet"),
  32378. default: true
  32379. },
  32380. ]
  32381. ))
  32382. characterMakers.push(() => makeCharacter(
  32383. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32384. {
  32385. front: {
  32386. height: math.unit(4, "meters"),
  32387. name: "Front",
  32388. image: {
  32389. source: "./media/characters/mid/front.svg",
  32390. extra: 507 / 476,
  32391. bottom: 17 / 524
  32392. }
  32393. },
  32394. back: {
  32395. height: math.unit(4, "meters"),
  32396. name: "Back",
  32397. image: {
  32398. source: "./media/characters/mid/back.svg",
  32399. extra: 519 / 487,
  32400. bottom: 7 / 526
  32401. }
  32402. },
  32403. stuck: {
  32404. height: math.unit(2.2, "meters"),
  32405. name: "Stuck",
  32406. image: {
  32407. source: "./media/characters/mid/stuck.svg",
  32408. extra: 1951 / 1869,
  32409. bottom: 88 / 2039
  32410. }
  32411. }
  32412. },
  32413. [
  32414. {
  32415. name: "Normal",
  32416. height: math.unit(4, "meters"),
  32417. default: true
  32418. },
  32419. {
  32420. name: "Big",
  32421. height: math.unit(10, "meters")
  32422. },
  32423. {
  32424. name: "Macro",
  32425. height: math.unit(800, "meters")
  32426. },
  32427. {
  32428. name: "Megamacro",
  32429. height: math.unit(100, "km")
  32430. },
  32431. {
  32432. name: "Overgrown",
  32433. height: math.unit(1, "parsec")
  32434. },
  32435. ]
  32436. ))
  32437. characterMakers.push(() => makeCharacter(
  32438. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32439. {
  32440. front: {
  32441. height: math.unit(2.5, "meters"),
  32442. weight: math.unit(225, "kg"),
  32443. name: "Front",
  32444. image: {
  32445. source: "./media/characters/iris/front.svg",
  32446. extra: 3348 / 3251,
  32447. bottom: 205 / 3553
  32448. }
  32449. },
  32450. maw: {
  32451. height: math.unit(0.56, "meter"),
  32452. name: "Maw",
  32453. image: {
  32454. source: "./media/characters/iris/maw.svg"
  32455. }
  32456. },
  32457. },
  32458. [
  32459. {
  32460. name: "Mewter cat",
  32461. height: math.unit(1.2, "meters")
  32462. },
  32463. {
  32464. name: "Normal",
  32465. height: math.unit(2.5, "meters"),
  32466. default: true
  32467. },
  32468. {
  32469. name: "Minimacro",
  32470. height: math.unit(18, "feet")
  32471. },
  32472. {
  32473. name: "Macro",
  32474. height: math.unit(140, "feet")
  32475. },
  32476. {
  32477. name: "Macro+",
  32478. height: math.unit(180, "meters")
  32479. },
  32480. {
  32481. name: "Megamacro",
  32482. height: math.unit(2746, "meters")
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(135, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/axel/front.svg",
  32495. extra: 908 / 908,
  32496. bottom: 58 / 966
  32497. }
  32498. },
  32499. side: {
  32500. height: math.unit(6, "feet"),
  32501. weight: math.unit(135, "lb"),
  32502. name: "Side",
  32503. image: {
  32504. source: "./media/characters/axel/side.svg",
  32505. extra: 958 / 958,
  32506. bottom: 11 / 969
  32507. }
  32508. },
  32509. back: {
  32510. height: math.unit(6, "feet"),
  32511. weight: math.unit(135, "lb"),
  32512. name: "Back",
  32513. image: {
  32514. source: "./media/characters/axel/back.svg",
  32515. extra: 887 / 887,
  32516. bottom: 34 / 921
  32517. }
  32518. },
  32519. head: {
  32520. height: math.unit(1.07, "feet"),
  32521. name: "Head",
  32522. image: {
  32523. source: "./media/characters/axel/head.svg"
  32524. }
  32525. },
  32526. beak: {
  32527. height: math.unit(1.4, "feet"),
  32528. name: "Beak",
  32529. image: {
  32530. source: "./media/characters/axel/beak.svg"
  32531. }
  32532. },
  32533. beakSide: {
  32534. height: math.unit(1.4, "feet"),
  32535. name: "Beak Side",
  32536. image: {
  32537. source: "./media/characters/axel/beak-side.svg"
  32538. }
  32539. },
  32540. sheath: {
  32541. height: math.unit(0.5, "feet"),
  32542. name: "Sheath",
  32543. image: {
  32544. source: "./media/characters/axel/sheath.svg"
  32545. }
  32546. },
  32547. dick: {
  32548. height: math.unit(0.98, "feet"),
  32549. name: "Dick",
  32550. image: {
  32551. source: "./media/characters/axel/dick.svg"
  32552. }
  32553. },
  32554. },
  32555. [
  32556. {
  32557. name: "Macro",
  32558. height: math.unit(68, "meters"),
  32559. default: true
  32560. },
  32561. ]
  32562. ))
  32563. characterMakers.push(() => makeCharacter(
  32564. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32565. {
  32566. front: {
  32567. height: math.unit(3.5, "meters"),
  32568. weight: math.unit(1200, "kg"),
  32569. name: "Front",
  32570. image: {
  32571. source: "./media/characters/joanna/front.svg",
  32572. extra: 1596 / 1488,
  32573. bottom: 29 / 1625
  32574. }
  32575. },
  32576. back: {
  32577. height: math.unit(3.5, "meters"),
  32578. weight: math.unit(1200, "kg"),
  32579. name: "Back",
  32580. image: {
  32581. source: "./media/characters/joanna/back.svg",
  32582. extra: 1594 / 1495,
  32583. bottom: 26 / 1620
  32584. }
  32585. },
  32586. frontShorts: {
  32587. height: math.unit(3.5, "meters"),
  32588. weight: math.unit(1200, "kg"),
  32589. name: "Front (Shorts)",
  32590. image: {
  32591. source: "./media/characters/joanna/front-shorts.svg",
  32592. extra: 1596 / 1488,
  32593. bottom: 29 / 1625
  32594. }
  32595. },
  32596. frontBiker: {
  32597. height: math.unit(3.5, "meters"),
  32598. weight: math.unit(1200, "kg"),
  32599. name: "Front (Biker)",
  32600. image: {
  32601. source: "./media/characters/joanna/front-biker.svg",
  32602. extra: 1596 / 1488,
  32603. bottom: 29 / 1625
  32604. }
  32605. },
  32606. backBiker: {
  32607. height: math.unit(3.5, "meters"),
  32608. weight: math.unit(1200, "kg"),
  32609. name: "Back (Biker)",
  32610. image: {
  32611. source: "./media/characters/joanna/back-biker.svg",
  32612. extra: 1594 / 1495,
  32613. bottom: 88 / 1682
  32614. }
  32615. },
  32616. bikeLeft: {
  32617. height: math.unit(2.4, "meters"),
  32618. weight: math.unit(1600, "kg"),
  32619. name: "Bike (Left)",
  32620. image: {
  32621. source: "./media/characters/joanna/bike-left.svg",
  32622. extra: 720 / 720,
  32623. bottom: 8 / 728
  32624. }
  32625. },
  32626. bikeRight: {
  32627. height: math.unit(2.4, "meters"),
  32628. weight: math.unit(1600, "kg"),
  32629. name: "Bike (Right)",
  32630. image: {
  32631. source: "./media/characters/joanna/bike-right.svg",
  32632. extra: 720 / 720,
  32633. bottom: 8 / 728
  32634. }
  32635. },
  32636. },
  32637. [
  32638. {
  32639. name: "Incognito",
  32640. height: math.unit(3.5, "meters")
  32641. },
  32642. {
  32643. name: "Casual Big",
  32644. height: math.unit(200, "meters")
  32645. },
  32646. {
  32647. name: "Macro",
  32648. height: math.unit(600, "meters")
  32649. },
  32650. {
  32651. name: "Original",
  32652. height: math.unit(20, "km"),
  32653. default: true
  32654. },
  32655. {
  32656. name: "Giga",
  32657. height: math.unit(400, "km")
  32658. },
  32659. {
  32660. name: "Lounging",
  32661. height: math.unit(1500, "km")
  32662. },
  32663. {
  32664. name: "Planetary",
  32665. height: math.unit(200000, "km")
  32666. },
  32667. ]
  32668. ))
  32669. characterMakers.push(() => makeCharacter(
  32670. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32671. {
  32672. front: {
  32673. height: math.unit(6, "feet"),
  32674. weight: math.unit(150, "lb"),
  32675. name: "Front",
  32676. image: {
  32677. source: "./media/characters/hugo-sigil/front.svg",
  32678. extra: 522 / 500,
  32679. bottom: 2 / 524
  32680. }
  32681. },
  32682. back: {
  32683. height: math.unit(6, "feet"),
  32684. weight: math.unit(150, "lb"),
  32685. name: "Back",
  32686. image: {
  32687. source: "./media/characters/hugo-sigil/back.svg",
  32688. extra: 519 / 495,
  32689. bottom: 5 / 524
  32690. }
  32691. },
  32692. maw: {
  32693. height: math.unit(1.4, "feet"),
  32694. weight: math.unit(150, "lb"),
  32695. name: "Maw",
  32696. image: {
  32697. source: "./media/characters/hugo-sigil/maw.svg"
  32698. }
  32699. },
  32700. feet: {
  32701. height: math.unit(1.56, "feet"),
  32702. weight: math.unit(150, "lb"),
  32703. name: "Feet",
  32704. image: {
  32705. source: "./media/characters/hugo-sigil/feet.svg",
  32706. extra: 177 / 177,
  32707. bottom: 12 / 189
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(6, "feet")
  32715. },
  32716. {
  32717. name: "Macro",
  32718. height: math.unit(200, "feet"),
  32719. default: true
  32720. },
  32721. ]
  32722. ))
  32723. characterMakers.push(() => makeCharacter(
  32724. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32725. {
  32726. front: {
  32727. height: math.unit(6, "feet"),
  32728. weight: math.unit(150, "lb"),
  32729. name: "Front",
  32730. image: {
  32731. source: "./media/characters/peri/front.svg",
  32732. extra: 2354 / 2233,
  32733. bottom: 49 / 2403
  32734. }
  32735. },
  32736. },
  32737. [
  32738. {
  32739. name: "Really Small",
  32740. height: math.unit(1, "nm")
  32741. },
  32742. {
  32743. name: "Micro",
  32744. height: math.unit(4, "inches")
  32745. },
  32746. {
  32747. name: "Normal",
  32748. height: math.unit(7, "inches"),
  32749. default: true
  32750. },
  32751. {
  32752. name: "Macro",
  32753. height: math.unit(400, "feet")
  32754. },
  32755. {
  32756. name: "Megamacro",
  32757. height: math.unit(100, "miles")
  32758. },
  32759. ]
  32760. ))
  32761. characterMakers.push(() => makeCharacter(
  32762. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32763. {
  32764. frontSlim: {
  32765. height: math.unit(7, "feet"),
  32766. name: "Front (Slim)",
  32767. image: {
  32768. source: "./media/characters/issilora/front-slim.svg",
  32769. extra: 529 / 449,
  32770. bottom: 53 / 582
  32771. }
  32772. },
  32773. sideSlim: {
  32774. height: math.unit(7, "feet"),
  32775. name: "Side (Slim)",
  32776. image: {
  32777. source: "./media/characters/issilora/side-slim.svg",
  32778. extra: 570 / 480,
  32779. bottom: 30 / 600
  32780. }
  32781. },
  32782. backSlim: {
  32783. height: math.unit(7, "feet"),
  32784. name: "Back (Slim)",
  32785. image: {
  32786. source: "./media/characters/issilora/back-slim.svg",
  32787. extra: 537 / 455,
  32788. bottom: 46 / 583
  32789. }
  32790. },
  32791. frontBuff: {
  32792. height: math.unit(7, "feet"),
  32793. name: "Front (Buff)",
  32794. image: {
  32795. source: "./media/characters/issilora/front-buff.svg",
  32796. extra: 2310 / 2035,
  32797. bottom: 335 / 2645
  32798. }
  32799. },
  32800. head: {
  32801. height: math.unit(1.94, "feet"),
  32802. name: "Head",
  32803. image: {
  32804. source: "./media/characters/issilora/head.svg"
  32805. }
  32806. },
  32807. },
  32808. [
  32809. {
  32810. name: "Minimum",
  32811. height: math.unit(7, "feet")
  32812. },
  32813. {
  32814. name: "Comfortable",
  32815. height: math.unit(17, "feet")
  32816. },
  32817. {
  32818. name: "Fun Size",
  32819. height: math.unit(47, "feet")
  32820. },
  32821. {
  32822. name: "Natural Macro",
  32823. height: math.unit(137, "feet"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "Maximum Kaiju",
  32828. height: math.unit(397, "feet")
  32829. },
  32830. ]
  32831. ))
  32832. characterMakers.push(() => makeCharacter(
  32833. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32834. {
  32835. front: {
  32836. height: math.unit(50 + 9/12, "feet"),
  32837. weight: math.unit(32.8, "tons"),
  32838. name: "Front",
  32839. image: {
  32840. source: "./media/characters/irb'iiritaahn/front.svg",
  32841. extra: 1878/1826,
  32842. bottom: 326/2204
  32843. }
  32844. },
  32845. back: {
  32846. height: math.unit(50 + 9/12, "feet"),
  32847. weight: math.unit(32.8, "tons"),
  32848. name: "Back",
  32849. image: {
  32850. source: "./media/characters/irb'iiritaahn/back.svg",
  32851. extra: 2052/2018,
  32852. bottom: 152/2204
  32853. }
  32854. },
  32855. head: {
  32856. height: math.unit(12.86, "feet"),
  32857. name: "Head",
  32858. image: {
  32859. source: "./media/characters/irb'iiritaahn/head.svg"
  32860. }
  32861. },
  32862. maw: {
  32863. height: math.unit(9.66, "feet"),
  32864. name: "Maw",
  32865. image: {
  32866. source: "./media/characters/irb'iiritaahn/maw.svg"
  32867. }
  32868. },
  32869. frontDick: {
  32870. height: math.unit(8.78461, "feet"),
  32871. name: "Front Dick",
  32872. image: {
  32873. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32874. }
  32875. },
  32876. rearDick: {
  32877. height: math.unit(8.78461, "feet"),
  32878. name: "Rear Dick",
  32879. image: {
  32880. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32881. }
  32882. },
  32883. rearDickUnfolded: {
  32884. height: math.unit(8.78, "feet"),
  32885. name: "Rear Dick (Unfolded)",
  32886. image: {
  32887. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32888. }
  32889. },
  32890. wings: {
  32891. height: math.unit(43, "feet"),
  32892. name: "Wings",
  32893. image: {
  32894. source: "./media/characters/irb'iiritaahn/wings.svg"
  32895. }
  32896. },
  32897. },
  32898. [
  32899. {
  32900. name: "Macro",
  32901. height: math.unit(50 + 9/12, "feet"),
  32902. default: true
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32908. {
  32909. front: {
  32910. height: math.unit(205, "cm"),
  32911. weight: math.unit(102, "kg"),
  32912. name: "Front",
  32913. image: {
  32914. source: "./media/characters/irbisgreif/front.svg",
  32915. extra: 785/706,
  32916. bottom: 13/798
  32917. }
  32918. },
  32919. back: {
  32920. height: math.unit(205, "cm"),
  32921. weight: math.unit(102, "kg"),
  32922. name: "Back",
  32923. image: {
  32924. source: "./media/characters/irbisgreif/back.svg",
  32925. extra: 713/701,
  32926. bottom: 26/739
  32927. }
  32928. },
  32929. frontDressed: {
  32930. height: math.unit(216, "cm"),
  32931. weight: math.unit(102, "kg"),
  32932. name: "Front-dressed",
  32933. image: {
  32934. source: "./media/characters/irbisgreif/front-dressed.svg",
  32935. extra: 902/776,
  32936. bottom: 14/916
  32937. }
  32938. },
  32939. sideDressed: {
  32940. height: math.unit(195, "cm"),
  32941. weight: math.unit(102, "kg"),
  32942. name: "Side-dressed",
  32943. image: {
  32944. source: "./media/characters/irbisgreif/side-dressed.svg",
  32945. extra: 788/688,
  32946. bottom: 21/809
  32947. }
  32948. },
  32949. backDressed: {
  32950. height: math.unit(216, "cm"),
  32951. weight: math.unit(102, "kg"),
  32952. name: "Back-dressed",
  32953. image: {
  32954. source: "./media/characters/irbisgreif/back-dressed.svg",
  32955. extra: 901/783,
  32956. bottom: 10/911
  32957. }
  32958. },
  32959. dick: {
  32960. height: math.unit(0.49, "feet"),
  32961. name: "Dick",
  32962. image: {
  32963. source: "./media/characters/irbisgreif/dick.svg"
  32964. }
  32965. },
  32966. wingTop: {
  32967. height: math.unit(1.93 , "feet"),
  32968. name: "Wing-top",
  32969. image: {
  32970. source: "./media/characters/irbisgreif/wing-top.svg"
  32971. }
  32972. },
  32973. wingBottom: {
  32974. height: math.unit(1.93 , "feet"),
  32975. name: "Wing-bottom",
  32976. image: {
  32977. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32978. }
  32979. },
  32980. },
  32981. [
  32982. {
  32983. name: "Normal",
  32984. height: math.unit(216, "cm"),
  32985. default: true
  32986. },
  32987. ]
  32988. ))
  32989. characterMakers.push(() => makeCharacter(
  32990. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32991. {
  32992. front: {
  32993. height: math.unit(6, "feet"),
  32994. weight: math.unit(150, "lb"),
  32995. name: "Front",
  32996. image: {
  32997. source: "./media/characters/pride/front.svg",
  32998. extra: 1299/1230,
  32999. bottom: 18/1317
  33000. }
  33001. },
  33002. },
  33003. [
  33004. {
  33005. name: "Normal",
  33006. height: math.unit(7, "feet")
  33007. },
  33008. {
  33009. name: "Mini-macro",
  33010. height: math.unit(11, "feet")
  33011. },
  33012. {
  33013. name: "Macro",
  33014. height: math.unit(15, "meters"),
  33015. default: true
  33016. },
  33017. {
  33018. name: "Macro+",
  33019. height: math.unit(40, "meters")
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33025. {
  33026. front: {
  33027. height: math.unit(4 + 2 / 12, "feet"),
  33028. weight: math.unit(95, "lb"),
  33029. name: "Front",
  33030. image: {
  33031. source: "./media/characters/vaelophis-nyx/front.svg",
  33032. extra: 2532/2330,
  33033. bottom: 0/2532
  33034. }
  33035. },
  33036. back: {
  33037. height: math.unit(4 + 2 / 12, "feet"),
  33038. weight: math.unit(95, "lb"),
  33039. name: "Back",
  33040. image: {
  33041. source: "./media/characters/vaelophis-nyx/back.svg",
  33042. extra: 2484/2361,
  33043. bottom: 0/2484
  33044. }
  33045. },
  33046. feralSide: {
  33047. height: math.unit(2 + 1/12, "feet"),
  33048. weight: math.unit(20, "lb"),
  33049. name: "Feral (Side)",
  33050. image: {
  33051. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33052. extra: 1721/1581,
  33053. bottom: 70/1791
  33054. }
  33055. },
  33056. feralLazing: {
  33057. height: math.unit(1.08, "feet"),
  33058. weight: math.unit(20, "lb"),
  33059. name: "Feral (Lazing)",
  33060. image: {
  33061. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33062. extra: 822/822,
  33063. bottom: 248/1070
  33064. }
  33065. },
  33066. ear: {
  33067. height: math.unit(0.416, "feet"),
  33068. name: "Ear",
  33069. image: {
  33070. source: "./media/characters/vaelophis-nyx/ear.svg"
  33071. }
  33072. },
  33073. eye: {
  33074. height: math.unit(0.0748, "feet"),
  33075. name: "Eye",
  33076. image: {
  33077. source: "./media/characters/vaelophis-nyx/eye.svg"
  33078. }
  33079. },
  33080. mouth: {
  33081. height: math.unit(0.378, "feet"),
  33082. name: "Mouth",
  33083. image: {
  33084. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33085. }
  33086. },
  33087. spade: {
  33088. height: math.unit(0.55, "feet"),
  33089. name: "Spade",
  33090. image: {
  33091. source: "./media/characters/vaelophis-nyx/spade.svg"
  33092. }
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Normal",
  33098. height: math.unit(4 + 2/12, "feet"),
  33099. default: true
  33100. },
  33101. ]
  33102. ))
  33103. characterMakers.push(() => makeCharacter(
  33104. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33105. {
  33106. front: {
  33107. height: math.unit(7, "feet"),
  33108. weight: math.unit(231, "lb"),
  33109. name: "Front",
  33110. image: {
  33111. source: "./media/characters/flux/front.svg",
  33112. extra: 919/871,
  33113. bottom: 0/919
  33114. }
  33115. },
  33116. back: {
  33117. height: math.unit(7, "feet"),
  33118. weight: math.unit(231, "lb"),
  33119. name: "Back",
  33120. image: {
  33121. source: "./media/characters/flux/back.svg",
  33122. extra: 1040/992,
  33123. bottom: 0/1040
  33124. }
  33125. },
  33126. frontDressed: {
  33127. height: math.unit(7, "feet"),
  33128. weight: math.unit(231, "lb"),
  33129. name: "Front (Dressed)",
  33130. image: {
  33131. source: "./media/characters/flux/front-dressed.svg",
  33132. extra: 919/871,
  33133. bottom: 0/919
  33134. }
  33135. },
  33136. feralSide: {
  33137. height: math.unit(5, "feet"),
  33138. weight: math.unit(150, "lb"),
  33139. name: "Feral (Side)",
  33140. image: {
  33141. source: "./media/characters/flux/feral-side.svg",
  33142. extra: 598/528,
  33143. bottom: 28/626
  33144. }
  33145. },
  33146. head: {
  33147. height: math.unit(1.585, "feet"),
  33148. name: "Head",
  33149. image: {
  33150. source: "./media/characters/flux/head.svg"
  33151. }
  33152. },
  33153. headSide: {
  33154. height: math.unit(1.74, "feet"),
  33155. name: "Head (Side)",
  33156. image: {
  33157. source: "./media/characters/flux/head-side.svg"
  33158. }
  33159. },
  33160. headSideFire: {
  33161. height: math.unit(1.76, "feet"),
  33162. name: "Head (Side, Fire)",
  33163. image: {
  33164. source: "./media/characters/flux/head-side-fire.svg"
  33165. }
  33166. },
  33167. },
  33168. [
  33169. {
  33170. name: "Normal",
  33171. height: math.unit(7, "feet"),
  33172. default: true
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33178. {
  33179. front: {
  33180. height: math.unit(9, "feet"),
  33181. weight: math.unit(1012, "lb"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/ulfra-lupae/front.svg",
  33185. extra: 1083/1011,
  33186. bottom: 67/1150
  33187. }
  33188. },
  33189. },
  33190. [
  33191. {
  33192. name: "Micro",
  33193. height: math.unit(6, "inches")
  33194. },
  33195. {
  33196. name: "Socializing",
  33197. height: math.unit(6 + 5/12, "feet")
  33198. },
  33199. {
  33200. name: "Normal",
  33201. height: math.unit(9, "feet"),
  33202. default: true
  33203. },
  33204. {
  33205. name: "Macro",
  33206. height: math.unit(150, "feet")
  33207. },
  33208. ]
  33209. ))
  33210. characterMakers.push(() => makeCharacter(
  33211. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33212. {
  33213. front: {
  33214. height: math.unit(5 + 2/12, "feet"),
  33215. weight: math.unit(120, "lb"),
  33216. name: "Front",
  33217. image: {
  33218. source: "./media/characters/timber/front.svg",
  33219. extra: 2814/2705,
  33220. bottom: 181/2995
  33221. }
  33222. },
  33223. },
  33224. [
  33225. {
  33226. name: "Normal",
  33227. height: math.unit(5 + 2/12, "feet"),
  33228. default: true
  33229. },
  33230. ]
  33231. ))
  33232. characterMakers.push(() => makeCharacter(
  33233. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33234. {
  33235. front: {
  33236. height: math.unit(9, "feet"),
  33237. name: "Front",
  33238. image: {
  33239. source: "./media/characters/nicki/front.svg",
  33240. extra: 1240/990,
  33241. bottom: 45/1285
  33242. },
  33243. form: "anthro",
  33244. default: true
  33245. },
  33246. side: {
  33247. height: math.unit(9, "feet"),
  33248. name: "Side",
  33249. image: {
  33250. source: "./media/characters/nicki/side.svg",
  33251. extra: 1047/973,
  33252. bottom: 61/1108
  33253. },
  33254. form: "anthro"
  33255. },
  33256. back: {
  33257. height: math.unit(9, "feet"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/nicki/back.svg",
  33261. extra: 1006/965,
  33262. bottom: 39/1045
  33263. },
  33264. form: "anthro"
  33265. },
  33266. taur: {
  33267. height: math.unit(15, "feet"),
  33268. name: "Taur",
  33269. image: {
  33270. source: "./media/characters/nicki/taur.svg",
  33271. extra: 1592/1347,
  33272. bottom: 0/1592
  33273. },
  33274. form: "taur",
  33275. default: true
  33276. },
  33277. },
  33278. [
  33279. {
  33280. name: "Normal",
  33281. height: math.unit(9, "feet"),
  33282. form: "anthro",
  33283. default: true
  33284. },
  33285. {
  33286. name: "Normal",
  33287. height: math.unit(15, "feet"),
  33288. form: "taur",
  33289. default: true
  33290. }
  33291. ],
  33292. {
  33293. "anthro": {
  33294. name: "Anthro",
  33295. default: true
  33296. },
  33297. "taur": {
  33298. name: "Taur"
  33299. }
  33300. }
  33301. ))
  33302. characterMakers.push(() => makeCharacter(
  33303. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33304. {
  33305. front: {
  33306. height: math.unit(7 + 10/12, "feet"),
  33307. weight: math.unit(3.5, "tons"),
  33308. name: "Front",
  33309. image: {
  33310. source: "./media/characters/lee/front.svg",
  33311. extra: 1773/1615,
  33312. bottom: 86/1859
  33313. }
  33314. },
  33315. hand: {
  33316. height: math.unit(1.78, "feet"),
  33317. name: "Hand",
  33318. image: {
  33319. source: "./media/characters/lee/hand.svg"
  33320. }
  33321. },
  33322. maw: {
  33323. height: math.unit(1.18, "feet"),
  33324. name: "Maw",
  33325. image: {
  33326. source: "./media/characters/lee/maw.svg"
  33327. }
  33328. },
  33329. },
  33330. [
  33331. {
  33332. name: "Normal",
  33333. height: math.unit(7 + 10/12, "feet"),
  33334. default: true
  33335. },
  33336. ]
  33337. ))
  33338. characterMakers.push(() => makeCharacter(
  33339. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33340. {
  33341. front: {
  33342. height: math.unit(9, "feet"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/guti/front.svg",
  33346. extra: 4551/4355,
  33347. bottom: 123/4674
  33348. }
  33349. },
  33350. tongue: {
  33351. height: math.unit(1, "feet"),
  33352. name: "Tongue",
  33353. image: {
  33354. source: "./media/characters/guti/tongue.svg"
  33355. }
  33356. },
  33357. paw: {
  33358. height: math.unit(1.18, "feet"),
  33359. name: "Paw",
  33360. image: {
  33361. source: "./media/characters/guti/paw.svg"
  33362. }
  33363. },
  33364. },
  33365. [
  33366. {
  33367. name: "Normal",
  33368. height: math.unit(9, "feet"),
  33369. default: true
  33370. },
  33371. ]
  33372. ))
  33373. characterMakers.push(() => makeCharacter(
  33374. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33375. {
  33376. side: {
  33377. height: math.unit(5, "meters"),
  33378. name: "Side",
  33379. image: {
  33380. source: "./media/characters/vesper/side.svg",
  33381. extra: 1605/1518,
  33382. bottom: 0/1605
  33383. }
  33384. },
  33385. },
  33386. [
  33387. {
  33388. name: "Small",
  33389. height: math.unit(5, "meters")
  33390. },
  33391. {
  33392. name: "Sage",
  33393. height: math.unit(100, "meters"),
  33394. default: true
  33395. },
  33396. {
  33397. name: "Fun Size",
  33398. height: math.unit(600, "meters")
  33399. },
  33400. {
  33401. name: "Goddess",
  33402. height: math.unit(20000, "km")
  33403. },
  33404. {
  33405. name: "Maximum",
  33406. height: math.unit(5, "galaxies")
  33407. },
  33408. ]
  33409. ))
  33410. characterMakers.push(() => makeCharacter(
  33411. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33412. {
  33413. front: {
  33414. height: math.unit(6 + 3/12, "feet"),
  33415. weight: math.unit(190, "lb"),
  33416. name: "Front",
  33417. image: {
  33418. source: "./media/characters/gawain/front.svg",
  33419. extra: 2222/2139,
  33420. bottom: 90/2312
  33421. }
  33422. },
  33423. back: {
  33424. height: math.unit(6 + 3/12, "feet"),
  33425. weight: math.unit(190, "lb"),
  33426. name: "Back",
  33427. image: {
  33428. source: "./media/characters/gawain/back.svg",
  33429. extra: 2199/2111,
  33430. bottom: 73/2272
  33431. }
  33432. },
  33433. },
  33434. [
  33435. {
  33436. name: "Normal",
  33437. height: math.unit(6 + 3/12, "feet"),
  33438. default: true
  33439. },
  33440. ]
  33441. ))
  33442. characterMakers.push(() => makeCharacter(
  33443. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33444. {
  33445. side: {
  33446. height: math.unit(3.5, "meters"),
  33447. weight: math.unit(16000, "lb"),
  33448. name: "Side",
  33449. image: {
  33450. source: "./media/characters/dascalti/side.svg",
  33451. extra: 392/273,
  33452. bottom: 47/439
  33453. }
  33454. },
  33455. breath: {
  33456. height: math.unit(7.4, "feet"),
  33457. name: "Breath",
  33458. image: {
  33459. source: "./media/characters/dascalti/breath.svg"
  33460. }
  33461. },
  33462. fed: {
  33463. height: math.unit(3.6, "meters"),
  33464. weight: math.unit(16000, "lb"),
  33465. name: "Fed",
  33466. image: {
  33467. source: "./media/characters/dascalti/fed.svg",
  33468. extra: 1419/820,
  33469. bottom: 95/1514
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(3.5, "meters"),
  33477. default: true
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(3 + 5/12, "feet"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/mauve/front.svg",
  33489. extra: 1126/1033,
  33490. bottom: 65/1191
  33491. }
  33492. },
  33493. side: {
  33494. height: math.unit(3 + 5/12, "feet"),
  33495. name: "Side",
  33496. image: {
  33497. source: "./media/characters/mauve/side.svg",
  33498. extra: 1089/1001,
  33499. bottom: 29/1118
  33500. }
  33501. },
  33502. back: {
  33503. height: math.unit(3 + 5/12, "feet"),
  33504. name: "Back",
  33505. image: {
  33506. source: "./media/characters/mauve/back.svg",
  33507. extra: 1173/1053,
  33508. bottom: 109/1282
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(3 + 5/12, "feet"),
  33516. default: true
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(6 + 3/12, "feet"),
  33525. weight: math.unit(430, "lb"),
  33526. name: "Front",
  33527. image: {
  33528. source: "./media/characters/carlos/front.svg",
  33529. extra: 1964/1913,
  33530. bottom: 70/2034
  33531. }
  33532. },
  33533. },
  33534. [
  33535. {
  33536. name: "Normal",
  33537. height: math.unit(6 + 3/12, "feet"),
  33538. default: true
  33539. },
  33540. ]
  33541. ))
  33542. characterMakers.push(() => makeCharacter(
  33543. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33544. {
  33545. back: {
  33546. height: math.unit(5 + 10/12, "feet"),
  33547. weight: math.unit(200, "lb"),
  33548. name: "Back",
  33549. image: {
  33550. source: "./media/characters/jax/back.svg",
  33551. extra: 764/739,
  33552. bottom: 25/789
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Normal",
  33559. height: math.unit(5 + 10/12, "feet"),
  33560. default: true
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(8, "feet"),
  33569. weight: math.unit(250, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/eikthynir/front.svg",
  33573. extra: 1332/1166,
  33574. bottom: 82/1414
  33575. }
  33576. },
  33577. back: {
  33578. height: math.unit(8, "feet"),
  33579. weight: math.unit(250, "lb"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/eikthynir/back.svg",
  33583. extra: 1342/1190,
  33584. bottom: 19/1361
  33585. }
  33586. },
  33587. dick: {
  33588. height: math.unit(2.35, "feet"),
  33589. name: "Dick",
  33590. image: {
  33591. source: "./media/characters/eikthynir/dick.svg"
  33592. }
  33593. },
  33594. },
  33595. [
  33596. {
  33597. name: "Normal",
  33598. height: math.unit(8, "feet"),
  33599. default: true
  33600. },
  33601. ]
  33602. ))
  33603. characterMakers.push(() => makeCharacter(
  33604. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33605. {
  33606. front: {
  33607. height: math.unit(99, "meters"),
  33608. weight: math.unit(13000, "tons"),
  33609. name: "Front",
  33610. image: {
  33611. source: "./media/characters/zlmos/front.svg",
  33612. extra: 2202/1992,
  33613. bottom: 315/2517
  33614. }
  33615. },
  33616. },
  33617. [
  33618. {
  33619. name: "Macro",
  33620. height: math.unit(99, "meters"),
  33621. default: true
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(6 + 5/12, "feet"),
  33630. name: "Front",
  33631. image: {
  33632. source: "./media/characters/purri/front.svg",
  33633. extra: 1698/1610,
  33634. bottom: 32/1730
  33635. }
  33636. },
  33637. frontAlt: {
  33638. height: math.unit(6 + 5/12, "feet"),
  33639. name: "Front (Alt)",
  33640. image: {
  33641. source: "./media/characters/purri/front-alt.svg",
  33642. extra: 450/420,
  33643. bottom: 26/476
  33644. }
  33645. },
  33646. boots: {
  33647. height: math.unit(5.5, "feet"),
  33648. name: "Boots",
  33649. image: {
  33650. source: "./media/characters/purri/boots.svg",
  33651. extra: 905/853,
  33652. bottom: 18/923
  33653. }
  33654. },
  33655. lying: {
  33656. height: math.unit(2, "feet"),
  33657. name: "Lying",
  33658. image: {
  33659. source: "./media/characters/purri/lying.svg",
  33660. extra: 940/843,
  33661. bottom: 146/1086
  33662. }
  33663. },
  33664. devious: {
  33665. height: math.unit(1.77, "feet"),
  33666. name: "Devious",
  33667. image: {
  33668. source: "./media/characters/purri/devious.svg",
  33669. extra: 1440/1155,
  33670. bottom: 147/1587
  33671. }
  33672. },
  33673. bean: {
  33674. height: math.unit(1.94, "feet"),
  33675. name: "Bean",
  33676. image: {
  33677. source: "./media/characters/purri/bean.svg"
  33678. }
  33679. },
  33680. },
  33681. [
  33682. {
  33683. name: "Micro",
  33684. height: math.unit(1, "mm")
  33685. },
  33686. {
  33687. name: "Normal",
  33688. height: math.unit(6 + 5/12, "feet"),
  33689. default: true
  33690. },
  33691. {
  33692. name: "Macro :3c",
  33693. height: math.unit(2, "miles")
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(6 + 2/12, "feet"),
  33702. weight: math.unit(250, "lb"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/moonlight/front.svg",
  33706. extra: 1044/908,
  33707. bottom: 56/1100
  33708. }
  33709. },
  33710. feral: {
  33711. height: math.unit(3 + 1/12, "feet"),
  33712. weight: math.unit(50, "kg"),
  33713. name: "Feral",
  33714. image: {
  33715. source: "./media/characters/moonlight/feral.svg",
  33716. extra: 3705/2791,
  33717. bottom: 145/3850
  33718. }
  33719. },
  33720. paw: {
  33721. height: math.unit(1, "feet"),
  33722. name: "Paw",
  33723. image: {
  33724. source: "./media/characters/moonlight/paw.svg"
  33725. }
  33726. },
  33727. paws: {
  33728. height: math.unit(0.98, "feet"),
  33729. name: "Paws",
  33730. image: {
  33731. source: "./media/characters/moonlight/paws.svg",
  33732. extra: 939/939,
  33733. bottom: 50/989
  33734. }
  33735. },
  33736. mouth: {
  33737. height: math.unit(0.48, "feet"),
  33738. name: "Mouth",
  33739. image: {
  33740. source: "./media/characters/moonlight/mouth.svg"
  33741. }
  33742. },
  33743. dick: {
  33744. height: math.unit(1.46, "feet"),
  33745. name: "Dick",
  33746. image: {
  33747. source: "./media/characters/moonlight/dick.svg"
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(6 + 2/12, "feet"),
  33755. default: true
  33756. },
  33757. {
  33758. name: "Macro",
  33759. height: math.unit(300, "feet")
  33760. },
  33761. {
  33762. name: "Macro+",
  33763. height: math.unit(1, "mile")
  33764. },
  33765. {
  33766. name: "Mt. Moon",
  33767. height: math.unit(5, "miles")
  33768. },
  33769. {
  33770. name: "Megamacro",
  33771. height: math.unit(15, "miles")
  33772. },
  33773. ]
  33774. ))
  33775. characterMakers.push(() => makeCharacter(
  33776. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33777. {
  33778. back: {
  33779. height: math.unit(6, "feet"),
  33780. weight: math.unit(150, "lb"),
  33781. name: "Back",
  33782. image: {
  33783. source: "./media/characters/sylen/back.svg",
  33784. extra: 1335/1273,
  33785. bottom: 107/1442
  33786. }
  33787. },
  33788. },
  33789. [
  33790. {
  33791. name: "Normal",
  33792. height: math.unit(5 + 5/12, "feet")
  33793. },
  33794. {
  33795. name: "Megamacro",
  33796. height: math.unit(3, "miles"),
  33797. default: true
  33798. },
  33799. ]
  33800. ))
  33801. characterMakers.push(() => makeCharacter(
  33802. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33803. {
  33804. front: {
  33805. height: math.unit(6, "feet"),
  33806. weight: math.unit(190, "lb"),
  33807. name: "Front",
  33808. image: {
  33809. source: "./media/characters/huttser/front.svg",
  33810. extra: 1152/1058,
  33811. bottom: 23/1175
  33812. }
  33813. },
  33814. side: {
  33815. height: math.unit(6, "feet"),
  33816. weight: math.unit(190, "lb"),
  33817. name: "Side",
  33818. image: {
  33819. source: "./media/characters/huttser/side.svg",
  33820. extra: 1174/1065,
  33821. bottom: 18/1192
  33822. }
  33823. },
  33824. back: {
  33825. height: math.unit(6, "feet"),
  33826. weight: math.unit(190, "lb"),
  33827. name: "Back",
  33828. image: {
  33829. source: "./media/characters/huttser/back.svg",
  33830. extra: 1158/1056,
  33831. bottom: 12/1170
  33832. }
  33833. },
  33834. },
  33835. [
  33836. ]
  33837. ))
  33838. characterMakers.push(() => makeCharacter(
  33839. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33840. {
  33841. side: {
  33842. height: math.unit(12 + 9/12, "feet"),
  33843. weight: math.unit(15000, "lb"),
  33844. name: "Side",
  33845. image: {
  33846. source: "./media/characters/faan/side.svg",
  33847. extra: 2747/2697,
  33848. bottom: 0/2747
  33849. }
  33850. },
  33851. front: {
  33852. height: math.unit(12 + 9/12, "feet"),
  33853. weight: math.unit(15000, "lb"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/faan/front.svg",
  33857. extra: 607/571,
  33858. bottom: 24/631
  33859. }
  33860. },
  33861. head: {
  33862. height: math.unit(2.85, "feet"),
  33863. name: "Head",
  33864. image: {
  33865. source: "./media/characters/faan/head.svg"
  33866. }
  33867. },
  33868. headAlt: {
  33869. height: math.unit(3.13, "feet"),
  33870. name: "Head-alt",
  33871. image: {
  33872. source: "./media/characters/faan/head-alt.svg"
  33873. }
  33874. },
  33875. },
  33876. [
  33877. {
  33878. name: "Normal",
  33879. height: math.unit(12 + 9/12, "feet"),
  33880. default: true
  33881. },
  33882. ]
  33883. ))
  33884. characterMakers.push(() => makeCharacter(
  33885. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33886. {
  33887. front: {
  33888. height: math.unit(6, "feet"),
  33889. weight: math.unit(300, "lb"),
  33890. name: "Front",
  33891. image: {
  33892. source: "./media/characters/tanio/front.svg",
  33893. extra: 711/673,
  33894. bottom: 25/736
  33895. }
  33896. },
  33897. },
  33898. [
  33899. {
  33900. name: "Normal",
  33901. height: math.unit(6, "feet"),
  33902. default: true
  33903. },
  33904. ]
  33905. ))
  33906. characterMakers.push(() => makeCharacter(
  33907. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33908. {
  33909. front: {
  33910. height: math.unit(3, "inches"),
  33911. name: "Front",
  33912. image: {
  33913. source: "./media/characters/noboru/front.svg",
  33914. extra: 1039/932,
  33915. bottom: 18/1057
  33916. }
  33917. },
  33918. },
  33919. [
  33920. {
  33921. name: "Micro",
  33922. height: math.unit(3, "inches"),
  33923. default: true
  33924. },
  33925. ]
  33926. ))
  33927. characterMakers.push(() => makeCharacter(
  33928. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33929. {
  33930. front: {
  33931. height: math.unit(1.85, "meters"),
  33932. weight: math.unit(80, "kg"),
  33933. name: "Front",
  33934. image: {
  33935. source: "./media/characters/daniel-barrett/front.svg",
  33936. extra: 355/337,
  33937. bottom: 9/364
  33938. }
  33939. },
  33940. },
  33941. [
  33942. {
  33943. name: "Pico",
  33944. height: math.unit(0.0433, "mm")
  33945. },
  33946. {
  33947. name: "Nano",
  33948. height: math.unit(1.5, "mm")
  33949. },
  33950. {
  33951. name: "Micro",
  33952. height: math.unit(5.3, "cm"),
  33953. default: true
  33954. },
  33955. {
  33956. name: "Normal",
  33957. height: math.unit(1.85, "meters")
  33958. },
  33959. {
  33960. name: "Macro",
  33961. height: math.unit(64.7, "meters")
  33962. },
  33963. {
  33964. name: "Megamacro",
  33965. height: math.unit(2.26, "km")
  33966. },
  33967. {
  33968. name: "Gigamacro",
  33969. height: math.unit(79, "km")
  33970. },
  33971. {
  33972. name: "Teramacro",
  33973. height: math.unit(2765, "km")
  33974. },
  33975. {
  33976. name: "Petamacro",
  33977. height: math.unit(96678, "km")
  33978. },
  33979. ]
  33980. ))
  33981. characterMakers.push(() => makeCharacter(
  33982. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33983. {
  33984. front: {
  33985. height: math.unit(30, "meters"),
  33986. weight: math.unit(400, "tons"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/zeel/front.svg",
  33990. extra: 2599/2599,
  33991. bottom: 226/2825
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Macro",
  33998. height: math.unit(30, "meters"),
  33999. default: true
  34000. },
  34001. ]
  34002. ))
  34003. characterMakers.push(() => makeCharacter(
  34004. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34005. {
  34006. front: {
  34007. height: math.unit(6 + 7/12, "feet"),
  34008. weight: math.unit(210, "lb"),
  34009. name: "Front",
  34010. image: {
  34011. source: "./media/characters/tarn/front.svg",
  34012. extra: 3517/3220,
  34013. bottom: 91/3608
  34014. }
  34015. },
  34016. back: {
  34017. height: math.unit(6 + 7/12, "feet"),
  34018. weight: math.unit(210, "lb"),
  34019. name: "Back",
  34020. image: {
  34021. source: "./media/characters/tarn/back.svg",
  34022. extra: 3566/3241,
  34023. bottom: 34/3600
  34024. }
  34025. },
  34026. dick: {
  34027. height: math.unit(1.65, "feet"),
  34028. name: "Dick",
  34029. image: {
  34030. source: "./media/characters/tarn/dick.svg"
  34031. }
  34032. },
  34033. paw: {
  34034. height: math.unit(1.80, "feet"),
  34035. name: "Paw",
  34036. image: {
  34037. source: "./media/characters/tarn/paw.svg"
  34038. }
  34039. },
  34040. tongue: {
  34041. height: math.unit(0.97, "feet"),
  34042. name: "Tongue",
  34043. image: {
  34044. source: "./media/characters/tarn/tongue.svg"
  34045. }
  34046. },
  34047. },
  34048. [
  34049. {
  34050. name: "Micro",
  34051. height: math.unit(4, "inches")
  34052. },
  34053. {
  34054. name: "Normal",
  34055. height: math.unit(6 + 7/12, "feet"),
  34056. default: true
  34057. },
  34058. {
  34059. name: "Macro",
  34060. height: math.unit(300, "feet")
  34061. },
  34062. ]
  34063. ))
  34064. characterMakers.push(() => makeCharacter(
  34065. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34066. {
  34067. front: {
  34068. height: math.unit(5 + 7/12, "feet"),
  34069. weight: math.unit(80, "kg"),
  34070. name: "Front",
  34071. image: {
  34072. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34073. extra: 3023/2865,
  34074. bottom: 33/3056
  34075. }
  34076. },
  34077. back: {
  34078. height: math.unit(5 + 7/12, "feet"),
  34079. weight: math.unit(80, "kg"),
  34080. name: "Back",
  34081. image: {
  34082. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34083. extra: 3020/2886,
  34084. bottom: 30/3050
  34085. }
  34086. },
  34087. dick: {
  34088. height: math.unit(0.98, "feet"),
  34089. name: "Dick",
  34090. image: {
  34091. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34092. }
  34093. },
  34094. anatomy: {
  34095. height: math.unit(2.86, "feet"),
  34096. name: "Anatomy",
  34097. image: {
  34098. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34099. }
  34100. },
  34101. },
  34102. [
  34103. {
  34104. name: "Really Small",
  34105. height: math.unit(2, "inches")
  34106. },
  34107. {
  34108. name: "Micro",
  34109. height: math.unit(5.583, "inches")
  34110. },
  34111. {
  34112. name: "Normal",
  34113. height: math.unit(5 + 7/12, "feet"),
  34114. default: true
  34115. },
  34116. {
  34117. name: "Macro",
  34118. height: math.unit(67, "feet")
  34119. },
  34120. {
  34121. name: "Megamacro",
  34122. height: math.unit(134, "feet")
  34123. },
  34124. ]
  34125. ))
  34126. characterMakers.push(() => makeCharacter(
  34127. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34128. {
  34129. front: {
  34130. height: math.unit(9, "feet"),
  34131. weight: math.unit(120, "lb"),
  34132. name: "Front",
  34133. image: {
  34134. source: "./media/characters/sally/front.svg",
  34135. extra: 1506/1349,
  34136. bottom: 66/1572
  34137. }
  34138. },
  34139. },
  34140. [
  34141. {
  34142. name: "Normal",
  34143. height: math.unit(9, "feet"),
  34144. default: true
  34145. },
  34146. ]
  34147. ))
  34148. characterMakers.push(() => makeCharacter(
  34149. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34150. {
  34151. front: {
  34152. height: math.unit(8, "feet"),
  34153. weight: math.unit(900, "lb"),
  34154. name: "Front",
  34155. image: {
  34156. source: "./media/characters/owen/front.svg",
  34157. extra: 1761/1657,
  34158. bottom: 74/1835
  34159. }
  34160. },
  34161. side: {
  34162. height: math.unit(8, "feet"),
  34163. weight: math.unit(900, "lb"),
  34164. name: "Side",
  34165. image: {
  34166. source: "./media/characters/owen/side.svg",
  34167. extra: 1797/1734,
  34168. bottom: 30/1827
  34169. }
  34170. },
  34171. back: {
  34172. height: math.unit(8, "feet"),
  34173. weight: math.unit(900, "lb"),
  34174. name: "Back",
  34175. image: {
  34176. source: "./media/characters/owen/back.svg",
  34177. extra: 1796/1706,
  34178. bottom: 59/1855
  34179. }
  34180. },
  34181. maw: {
  34182. height: math.unit(1.76, "feet"),
  34183. name: "Maw",
  34184. image: {
  34185. source: "./media/characters/owen/maw.svg"
  34186. }
  34187. },
  34188. },
  34189. [
  34190. {
  34191. name: "Normal",
  34192. height: math.unit(8, "feet"),
  34193. default: true
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34199. {
  34200. front: {
  34201. height: math.unit(4, "feet"),
  34202. weight: math.unit(400, "lb"),
  34203. name: "Front",
  34204. image: {
  34205. source: "./media/characters/ryth/front.svg",
  34206. extra: 1920/1748,
  34207. bottom: 42/1962
  34208. }
  34209. },
  34210. back: {
  34211. height: math.unit(4, "feet"),
  34212. weight: math.unit(400, "lb"),
  34213. name: "Back",
  34214. image: {
  34215. source: "./media/characters/ryth/back.svg",
  34216. extra: 1897/1690,
  34217. bottom: 89/1986
  34218. }
  34219. },
  34220. mouth: {
  34221. height: math.unit(1.39, "feet"),
  34222. name: "Mouth",
  34223. image: {
  34224. source: "./media/characters/ryth/mouth.svg"
  34225. }
  34226. },
  34227. tailmaw: {
  34228. height: math.unit(1.23, "feet"),
  34229. name: "Tailmaw",
  34230. image: {
  34231. source: "./media/characters/ryth/tailmaw.svg"
  34232. }
  34233. },
  34234. goia: {
  34235. height: math.unit(4, "meters"),
  34236. weight: math.unit(10800, "lb"),
  34237. name: "Goia",
  34238. image: {
  34239. source: "./media/characters/ryth/goia.svg",
  34240. extra: 745/640,
  34241. bottom: 107/852
  34242. }
  34243. },
  34244. goiaFront: {
  34245. height: math.unit(4, "meters"),
  34246. weight: math.unit(10800, "lb"),
  34247. name: "Goia (Front)",
  34248. image: {
  34249. source: "./media/characters/ryth/goia-front.svg",
  34250. extra: 750/586,
  34251. bottom: 114/864
  34252. }
  34253. },
  34254. goiaMaw: {
  34255. height: math.unit(5.55, "feet"),
  34256. name: "Goia Maw",
  34257. image: {
  34258. source: "./media/characters/ryth/goia-maw.svg"
  34259. }
  34260. },
  34261. goiaForepaw: {
  34262. height: math.unit(3.5, "feet"),
  34263. name: "Goia Forepaw",
  34264. image: {
  34265. source: "./media/characters/ryth/goia-forepaw.svg"
  34266. }
  34267. },
  34268. goiaHindpaw: {
  34269. height: math.unit(5.55, "feet"),
  34270. name: "Goia Hindpaw",
  34271. image: {
  34272. source: "./media/characters/ryth/goia-hindpaw.svg"
  34273. }
  34274. },
  34275. },
  34276. [
  34277. {
  34278. name: "Normal",
  34279. height: math.unit(4, "feet"),
  34280. default: true
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34286. {
  34287. front: {
  34288. height: math.unit(7, "feet"),
  34289. weight: math.unit(180, "lb"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/necrolance/front.svg",
  34293. extra: 1062/947,
  34294. bottom: 41/1103
  34295. }
  34296. },
  34297. back: {
  34298. height: math.unit(7, "feet"),
  34299. weight: math.unit(180, "lb"),
  34300. name: "Back",
  34301. image: {
  34302. source: "./media/characters/necrolance/back.svg",
  34303. extra: 1045/984,
  34304. bottom: 14/1059
  34305. }
  34306. },
  34307. wing: {
  34308. height: math.unit(2.67, "feet"),
  34309. name: "Wing",
  34310. image: {
  34311. source: "./media/characters/necrolance/wing.svg"
  34312. }
  34313. },
  34314. },
  34315. [
  34316. {
  34317. name: "Normal",
  34318. height: math.unit(7, "feet"),
  34319. default: true
  34320. },
  34321. ]
  34322. ))
  34323. characterMakers.push(() => makeCharacter(
  34324. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34325. {
  34326. front: {
  34327. height: math.unit(76, "meters"),
  34328. weight: math.unit(30000, "tons"),
  34329. name: "Front",
  34330. image: {
  34331. source: "./media/characters/tyler/front.svg",
  34332. extra: 1640/1640,
  34333. bottom: 114/1754
  34334. }
  34335. },
  34336. },
  34337. [
  34338. {
  34339. name: "Macro",
  34340. height: math.unit(76, "meters"),
  34341. default: true
  34342. },
  34343. ]
  34344. ))
  34345. characterMakers.push(() => makeCharacter(
  34346. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34347. {
  34348. front: {
  34349. height: math.unit(4 + 11/12, "feet"),
  34350. weight: math.unit(132, "lb"),
  34351. name: "Front",
  34352. image: {
  34353. source: "./media/characters/icey/front.svg",
  34354. extra: 2750/2550,
  34355. bottom: 33/2783
  34356. }
  34357. },
  34358. back: {
  34359. height: math.unit(4 + 11/12, "feet"),
  34360. weight: math.unit(132, "lb"),
  34361. name: "Back",
  34362. image: {
  34363. source: "./media/characters/icey/back.svg",
  34364. extra: 2624/2481,
  34365. bottom: 35/2659
  34366. }
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Normal",
  34372. height: math.unit(4 + 11/12, "feet"),
  34373. default: true
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34379. {
  34380. front: {
  34381. height: math.unit(100, "feet"),
  34382. weight: math.unit(0, "lb"),
  34383. name: "Front",
  34384. image: {
  34385. source: "./media/characters/smile/front.svg",
  34386. extra: 2983/2912,
  34387. bottom: 162/3145
  34388. }
  34389. },
  34390. back: {
  34391. height: math.unit(100, "feet"),
  34392. weight: math.unit(0, "lb"),
  34393. name: "Back",
  34394. image: {
  34395. source: "./media/characters/smile/back.svg",
  34396. extra: 3143/3031,
  34397. bottom: 91/3234
  34398. }
  34399. },
  34400. head: {
  34401. height: math.unit(26.3, "feet"),
  34402. weight: math.unit(0, "lb"),
  34403. name: "Head",
  34404. image: {
  34405. source: "./media/characters/smile/head.svg"
  34406. }
  34407. },
  34408. collar: {
  34409. height: math.unit(5.3, "feet"),
  34410. weight: math.unit(0, "lb"),
  34411. name: "Collar",
  34412. image: {
  34413. source: "./media/characters/smile/collar.svg"
  34414. }
  34415. },
  34416. },
  34417. [
  34418. {
  34419. name: "Macro",
  34420. height: math.unit(100, "feet"),
  34421. default: true
  34422. },
  34423. ]
  34424. ))
  34425. characterMakers.push(() => makeCharacter(
  34426. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34427. {
  34428. dragon: {
  34429. height: math.unit(26, "feet"),
  34430. weight: math.unit(36, "tons"),
  34431. name: "Dragon",
  34432. image: {
  34433. source: "./media/characters/arimphae/dragon.svg",
  34434. extra: 1574/983,
  34435. bottom: 357/1931
  34436. }
  34437. },
  34438. drake: {
  34439. height: math.unit(9, "feet"),
  34440. weight: math.unit(1.5, "tons"),
  34441. name: "Drake",
  34442. image: {
  34443. source: "./media/characters/arimphae/drake.svg",
  34444. extra: 1120/925,
  34445. bottom: 435/1555
  34446. }
  34447. },
  34448. },
  34449. [
  34450. {
  34451. name: "Small",
  34452. height: math.unit(26*5/9, "feet")
  34453. },
  34454. {
  34455. name: "Normal",
  34456. height: math.unit(26, "feet"),
  34457. default: true
  34458. },
  34459. ]
  34460. ))
  34461. characterMakers.push(() => makeCharacter(
  34462. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34463. {
  34464. front: {
  34465. height: math.unit(8 + 9/12, "feet"),
  34466. name: "Front",
  34467. image: {
  34468. source: "./media/characters/xander/front.svg",
  34469. extra: 1237/974,
  34470. bottom: 94/1331
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(8 + 9/12, "feet"),
  34478. default: true
  34479. },
  34480. {
  34481. name: "Gaze Grabber",
  34482. height: math.unit(13 + 8/12, "feet")
  34483. },
  34484. {
  34485. name: "Jaw Dropper",
  34486. height: math.unit(27, "feet")
  34487. },
  34488. {
  34489. name: "Show Stopper",
  34490. height: math.unit(136, "feet")
  34491. },
  34492. {
  34493. name: "Superstar",
  34494. height: math.unit(1.9e6, "miles")
  34495. },
  34496. ]
  34497. ))
  34498. characterMakers.push(() => makeCharacter(
  34499. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34500. {
  34501. side: {
  34502. height: math.unit(2100, "feet"),
  34503. name: "Side",
  34504. image: {
  34505. source: "./media/characters/osiris/side.svg",
  34506. extra: 1105/939,
  34507. bottom: 167/1272
  34508. }
  34509. },
  34510. },
  34511. [
  34512. {
  34513. name: "Macro",
  34514. height: math.unit(2100, "feet"),
  34515. default: true
  34516. },
  34517. ]
  34518. ))
  34519. characterMakers.push(() => makeCharacter(
  34520. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34521. {
  34522. front: {
  34523. height: math.unit(6 + 8/12, "feet"),
  34524. weight: math.unit(225, "lb"),
  34525. name: "Front",
  34526. image: {
  34527. source: "./media/characters/rhys-londe/front.svg",
  34528. extra: 2258/2141,
  34529. bottom: 188/2446
  34530. }
  34531. },
  34532. back: {
  34533. height: math.unit(6 + 8/12, "feet"),
  34534. weight: math.unit(225, "lb"),
  34535. name: "Back",
  34536. image: {
  34537. source: "./media/characters/rhys-londe/back.svg",
  34538. extra: 2237/2137,
  34539. bottom: 63/2300
  34540. }
  34541. },
  34542. frontNsfw: {
  34543. height: math.unit(6 + 8/12, "feet"),
  34544. weight: math.unit(225, "lb"),
  34545. name: "Front (NSFW)",
  34546. image: {
  34547. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34548. extra: 2258/2141,
  34549. bottom: 188/2446
  34550. }
  34551. },
  34552. backNsfw: {
  34553. height: math.unit(6 + 8/12, "feet"),
  34554. weight: math.unit(225, "lb"),
  34555. name: "Back (NSFW)",
  34556. image: {
  34557. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34558. extra: 2237/2137,
  34559. bottom: 63/2300
  34560. }
  34561. },
  34562. dick: {
  34563. height: math.unit(30, "inches"),
  34564. name: "Dick",
  34565. image: {
  34566. source: "./media/characters/rhys-londe/dick.svg"
  34567. }
  34568. },
  34569. maw: {
  34570. height: math.unit(1.6, "feet"),
  34571. name: "Maw",
  34572. image: {
  34573. source: "./media/characters/rhys-londe/maw.svg"
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Normal",
  34580. height: math.unit(6 + 8/12, "feet"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34587. {
  34588. front: {
  34589. height: math.unit(3 + 10/12, "feet"),
  34590. weight: math.unit(90, "lb"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/taivas-ensim/front.svg",
  34594. extra: 1327/1216,
  34595. bottom: 96/1423
  34596. }
  34597. },
  34598. back: {
  34599. height: math.unit(3 + 10/12, "feet"),
  34600. weight: math.unit(90, "lb"),
  34601. name: "Back",
  34602. image: {
  34603. source: "./media/characters/taivas-ensim/back.svg",
  34604. extra: 1355/1247,
  34605. bottom: 11/1366
  34606. }
  34607. },
  34608. frontNsfw: {
  34609. height: math.unit(3 + 10/12, "feet"),
  34610. weight: math.unit(90, "lb"),
  34611. name: "Front (NSFW)",
  34612. image: {
  34613. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34614. extra: 1327/1216,
  34615. bottom: 96/1423
  34616. }
  34617. },
  34618. backNsfw: {
  34619. height: math.unit(3 + 10/12, "feet"),
  34620. weight: math.unit(90, "lb"),
  34621. name: "Back (NSFW)",
  34622. image: {
  34623. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34624. extra: 1355/1247,
  34625. bottom: 11/1366
  34626. }
  34627. },
  34628. },
  34629. [
  34630. {
  34631. name: "Normal",
  34632. height: math.unit(3 + 10/12, "feet"),
  34633. default: true
  34634. },
  34635. ]
  34636. ))
  34637. characterMakers.push(() => makeCharacter(
  34638. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34639. {
  34640. front: {
  34641. height: math.unit(9 + 6/12, "feet"),
  34642. weight: math.unit(940, "lb"),
  34643. name: "Front",
  34644. image: {
  34645. source: "./media/characters/byliss/front.svg",
  34646. extra: 1327/1290,
  34647. bottom: 82/1409
  34648. }
  34649. },
  34650. back: {
  34651. height: math.unit(9 + 6/12, "feet"),
  34652. weight: math.unit(940, "lb"),
  34653. name: "Back",
  34654. image: {
  34655. source: "./media/characters/byliss/back.svg",
  34656. extra: 1376/1349,
  34657. bottom: 9/1385
  34658. }
  34659. },
  34660. frontNsfw: {
  34661. height: math.unit(9 + 6/12, "feet"),
  34662. weight: math.unit(940, "lb"),
  34663. name: "Front (NSFW)",
  34664. image: {
  34665. source: "./media/characters/byliss/front-nsfw.svg",
  34666. extra: 1327/1290,
  34667. bottom: 82/1409
  34668. }
  34669. },
  34670. backNsfw: {
  34671. height: math.unit(9 + 6/12, "feet"),
  34672. weight: math.unit(940, "lb"),
  34673. name: "Back (NSFW)",
  34674. image: {
  34675. source: "./media/characters/byliss/back-nsfw.svg",
  34676. extra: 1376/1349,
  34677. bottom: 9/1385
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(9 + 6/12, "feet"),
  34685. default: true
  34686. },
  34687. ]
  34688. ))
  34689. characterMakers.push(() => makeCharacter(
  34690. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34691. {
  34692. front: {
  34693. height: math.unit(5 + 2/12, "feet"),
  34694. weight: math.unit(200, "lb"),
  34695. name: "Front",
  34696. image: {
  34697. source: "./media/characters/noraly/front.svg",
  34698. extra: 4985/4773,
  34699. bottom: 150/5135
  34700. }
  34701. },
  34702. full: {
  34703. height: math.unit(5 + 2/12, "feet"),
  34704. weight: math.unit(164, "lb"),
  34705. name: "Full",
  34706. image: {
  34707. source: "./media/characters/noraly/full.svg",
  34708. extra: 1114/1059,
  34709. bottom: 35/1149
  34710. }
  34711. },
  34712. fuller: {
  34713. height: math.unit(5 + 2/12, "feet"),
  34714. weight: math.unit(230, "lb"),
  34715. name: "Fuller",
  34716. image: {
  34717. source: "./media/characters/noraly/fuller.svg",
  34718. extra: 1114/1059,
  34719. bottom: 35/1149
  34720. }
  34721. },
  34722. fullest: {
  34723. height: math.unit(5 + 2/12, "feet"),
  34724. weight: math.unit(300, "lb"),
  34725. name: "Fullest",
  34726. image: {
  34727. source: "./media/characters/noraly/fullest.svg",
  34728. extra: 1114/1059,
  34729. bottom: 35/1149
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(5 + 2/12, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34743. {
  34744. front: {
  34745. height: math.unit(5 + 2/12, "feet"),
  34746. weight: math.unit(210, "lb"),
  34747. name: "Front",
  34748. image: {
  34749. source: "./media/characters/pera/front.svg",
  34750. extra: 1560/1531,
  34751. bottom: 165/1725
  34752. }
  34753. },
  34754. back: {
  34755. height: math.unit(5 + 2/12, "feet"),
  34756. weight: math.unit(210, "lb"),
  34757. name: "Back",
  34758. image: {
  34759. source: "./media/characters/pera/back.svg",
  34760. extra: 1523/1493,
  34761. bottom: 152/1675
  34762. }
  34763. },
  34764. dick: {
  34765. height: math.unit(2.4, "feet"),
  34766. name: "Dick",
  34767. image: {
  34768. source: "./media/characters/pera/dick.svg"
  34769. }
  34770. },
  34771. },
  34772. [
  34773. {
  34774. name: "Normal",
  34775. height: math.unit(5 + 2/12, "feet"),
  34776. default: true
  34777. },
  34778. ]
  34779. ))
  34780. characterMakers.push(() => makeCharacter(
  34781. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34782. {
  34783. front: {
  34784. height: math.unit(12, "feet"),
  34785. weight: math.unit(3200, "lb"),
  34786. name: "Front",
  34787. image: {
  34788. source: "./media/characters/julian/front.svg",
  34789. extra: 2962/2701,
  34790. bottom: 184/3146
  34791. }
  34792. },
  34793. maw: {
  34794. height: math.unit(5.35, "feet"),
  34795. name: "Maw",
  34796. image: {
  34797. source: "./media/characters/julian/maw.svg"
  34798. }
  34799. },
  34800. paw: {
  34801. height: math.unit(3.07, "feet"),
  34802. name: "Paw",
  34803. image: {
  34804. source: "./media/characters/julian/paw.svg"
  34805. }
  34806. },
  34807. },
  34808. [
  34809. {
  34810. name: "Default",
  34811. height: math.unit(12, "feet"),
  34812. default: true
  34813. },
  34814. {
  34815. name: "Big",
  34816. height: math.unit(50, "feet")
  34817. },
  34818. {
  34819. name: "Really Big",
  34820. height: math.unit(1, "mile")
  34821. },
  34822. {
  34823. name: "Extremely Big",
  34824. height: math.unit(100, "miles")
  34825. },
  34826. {
  34827. name: "Planet Hugger",
  34828. height: math.unit(200, "megameters")
  34829. },
  34830. {
  34831. name: "Unreasonably Big",
  34832. height: math.unit(1e300, "meters")
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34838. {
  34839. solgooleo: {
  34840. height: math.unit(4, "meters"),
  34841. weight: math.unit(6000*1.5, "kg"),
  34842. volume: math.unit(6000, "liters"),
  34843. name: "Solgooleo",
  34844. image: {
  34845. source: "./media/characters/pi/solgooleo.svg",
  34846. extra: 388/331,
  34847. bottom: 29/417
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(4, "meters"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34861. {
  34862. front: {
  34863. height: math.unit(8, "feet"),
  34864. weight: math.unit(4, "tons"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/shaun/front.svg",
  34868. extra: 503/495,
  34869. bottom: 20/523
  34870. }
  34871. },
  34872. back: {
  34873. height: math.unit(8, "feet"),
  34874. weight: math.unit(4, "tons"),
  34875. name: "Back",
  34876. image: {
  34877. source: "./media/characters/shaun/back.svg",
  34878. extra: 487/480,
  34879. bottom: 20/507
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Lorg",
  34886. height: math.unit(8, "feet"),
  34887. default: true
  34888. },
  34889. ]
  34890. ))
  34891. characterMakers.push(() => makeCharacter(
  34892. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34893. {
  34894. frontAnthro: {
  34895. height: math.unit(7, "feet"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/sini/front-anthro.svg",
  34899. extra: 726/678,
  34900. bottom: 35/761
  34901. },
  34902. form: "anthro",
  34903. default: true
  34904. },
  34905. backAnthro: {
  34906. height: math.unit(7, "feet"),
  34907. name: "Back",
  34908. image: {
  34909. source: "./media/characters/sini/back-anthro.svg",
  34910. extra: 743/701,
  34911. bottom: 12/755
  34912. },
  34913. form: "anthro",
  34914. },
  34915. frontAnthroNsfw: {
  34916. height: math.unit(7, "feet"),
  34917. name: "Front (NSFW)",
  34918. image: {
  34919. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34920. extra: 726/678,
  34921. bottom: 35/761
  34922. },
  34923. form: "anthro"
  34924. },
  34925. backAnthroNsfw: {
  34926. height: math.unit(7, "feet"),
  34927. name: "Back (NSFW)",
  34928. image: {
  34929. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34930. extra: 743/701,
  34931. bottom: 12/755
  34932. },
  34933. form: "anthro",
  34934. },
  34935. mawAnthro: {
  34936. height: math.unit(2.14, "feet"),
  34937. name: "Maw",
  34938. image: {
  34939. source: "./media/characters/sini/maw-anthro.svg"
  34940. },
  34941. form: "anthro"
  34942. },
  34943. dick: {
  34944. height: math.unit(1.45, "feet"),
  34945. name: "Dick",
  34946. image: {
  34947. source: "./media/characters/sini/dick-anthro.svg"
  34948. },
  34949. form: "anthro"
  34950. },
  34951. feral: {
  34952. height: math.unit(16, "feet"),
  34953. name: "Feral",
  34954. image: {
  34955. source: "./media/characters/sini/feral.svg",
  34956. extra: 814/605,
  34957. bottom: 11/825
  34958. },
  34959. form: "feral",
  34960. default: true
  34961. },
  34962. feralNsfw: {
  34963. height: math.unit(16, "feet"),
  34964. name: "Feral (NSFW)",
  34965. image: {
  34966. source: "./media/characters/sini/feral-nsfw.svg",
  34967. extra: 814/605,
  34968. bottom: 11/825
  34969. },
  34970. form: "feral"
  34971. },
  34972. mawFeral: {
  34973. height: math.unit(5.66, "feet"),
  34974. name: "Maw",
  34975. image: {
  34976. source: "./media/characters/sini/maw-feral.svg"
  34977. },
  34978. form: "feral",
  34979. },
  34980. pawFeral: {
  34981. height: math.unit(5.17, "feet"),
  34982. name: "Paw",
  34983. image: {
  34984. source: "./media/characters/sini/paw-feral.svg"
  34985. },
  34986. form: "feral",
  34987. },
  34988. rumpFeral: {
  34989. height: math.unit(13.11, "feet"),
  34990. name: "Rump",
  34991. image: {
  34992. source: "./media/characters/sini/rump-feral.svg"
  34993. },
  34994. form: "feral",
  34995. },
  34996. dickFeral: {
  34997. height: math.unit(1, "feet"),
  34998. name: "Dick",
  34999. image: {
  35000. source: "./media/characters/sini/dick-feral.svg"
  35001. },
  35002. form: "feral",
  35003. },
  35004. eyeFeral: {
  35005. height: math.unit(1.23, "feet"),
  35006. name: "Eye",
  35007. image: {
  35008. source: "./media/characters/sini/eye-feral.svg"
  35009. },
  35010. form: "feral",
  35011. },
  35012. },
  35013. [
  35014. {
  35015. name: "Normal",
  35016. height: math.unit(7, "feet"),
  35017. default: true,
  35018. form: "anthro"
  35019. },
  35020. {
  35021. name: "Normal",
  35022. height: math.unit(16, "feet"),
  35023. default: true,
  35024. form: "feral"
  35025. },
  35026. ],
  35027. {
  35028. "anthro": {
  35029. name: "Anthro",
  35030. default: true
  35031. },
  35032. "feral": {
  35033. name: "Feral",
  35034. }
  35035. }
  35036. ))
  35037. characterMakers.push(() => makeCharacter(
  35038. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35039. {
  35040. side: {
  35041. height: math.unit(47.2, "meters"),
  35042. weight: math.unit(10000, "tons"),
  35043. name: "Side",
  35044. image: {
  35045. source: "./media/characters/raylldo/side.svg",
  35046. extra: 2363/642,
  35047. bottom: 221/2584
  35048. }
  35049. },
  35050. top: {
  35051. height: math.unit(240, "meters"),
  35052. weight: math.unit(10000, "tons"),
  35053. name: "Top",
  35054. image: {
  35055. source: "./media/characters/raylldo/top.svg"
  35056. }
  35057. },
  35058. bottom: {
  35059. height: math.unit(240, "meters"),
  35060. weight: math.unit(10000, "tons"),
  35061. name: "Bottom",
  35062. image: {
  35063. source: "./media/characters/raylldo/bottom.svg"
  35064. }
  35065. },
  35066. head: {
  35067. height: math.unit(38.6, "meters"),
  35068. name: "Head",
  35069. image: {
  35070. source: "./media/characters/raylldo/head.svg",
  35071. extra: 1335/1112,
  35072. bottom: 0/1335
  35073. }
  35074. },
  35075. maw: {
  35076. height: math.unit(16.37, "meters"),
  35077. name: "Maw",
  35078. image: {
  35079. source: "./media/characters/raylldo/maw.svg",
  35080. extra: 883/660,
  35081. bottom: 0/883
  35082. },
  35083. extraAttributes: {
  35084. preyCapacity: {
  35085. name: "Capacity",
  35086. power: 3,
  35087. type: "volume",
  35088. base: math.unit(1000, "people")
  35089. },
  35090. tongueSize: {
  35091. name: "Tongue Size",
  35092. power: 2,
  35093. type: "area",
  35094. base: math.unit(21, "m^2")
  35095. }
  35096. }
  35097. },
  35098. forepaw: {
  35099. height: math.unit(18, "meters"),
  35100. name: "Forepaw",
  35101. image: {
  35102. source: "./media/characters/raylldo/forepaw.svg"
  35103. }
  35104. },
  35105. hindpaw: {
  35106. height: math.unit(23, "meters"),
  35107. name: "Hindpaw",
  35108. image: {
  35109. source: "./media/characters/raylldo/hindpaw.svg"
  35110. }
  35111. },
  35112. genitals: {
  35113. height: math.unit(42, "meters"),
  35114. name: "Genitals",
  35115. image: {
  35116. source: "./media/characters/raylldo/genitals.svg"
  35117. }
  35118. },
  35119. },
  35120. [
  35121. {
  35122. name: "Normal",
  35123. height: math.unit(47.2, "meters"),
  35124. default: true
  35125. },
  35126. ]
  35127. ))
  35128. characterMakers.push(() => makeCharacter(
  35129. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35130. {
  35131. anthroFront: {
  35132. height: math.unit(9, "feet"),
  35133. weight: math.unit(600, "lb"),
  35134. name: "Anthro (Front)",
  35135. image: {
  35136. source: "./media/characters/glint/anthro-front.svg",
  35137. extra: 1097/1018,
  35138. bottom: 28/1125
  35139. }
  35140. },
  35141. anthroBack: {
  35142. height: math.unit(9, "feet"),
  35143. weight: math.unit(600, "lb"),
  35144. name: "Anthro (Back)",
  35145. image: {
  35146. source: "./media/characters/glint/anthro-back.svg",
  35147. extra: 1154/997,
  35148. bottom: 36/1190
  35149. }
  35150. },
  35151. feral: {
  35152. height: math.unit(11, "feet"),
  35153. weight: math.unit(50000, "lb"),
  35154. name: "Feral",
  35155. image: {
  35156. source: "./media/characters/glint/feral.svg",
  35157. extra: 3035/1585,
  35158. bottom: 1169/4204
  35159. }
  35160. },
  35161. dickAnthro: {
  35162. height: math.unit(0.7, "meters"),
  35163. name: "Dick (Anthro)",
  35164. image: {
  35165. source: "./media/characters/glint/dick-anthro.svg"
  35166. }
  35167. },
  35168. dickFeral: {
  35169. height: math.unit(2.65, "meters"),
  35170. name: "Dick (Feral)",
  35171. image: {
  35172. source: "./media/characters/glint/dick-feral.svg"
  35173. }
  35174. },
  35175. slitHidden: {
  35176. height: math.unit(5.85, "meters"),
  35177. name: "Slit (Hidden)",
  35178. image: {
  35179. source: "./media/characters/glint/slit-hidden.svg"
  35180. }
  35181. },
  35182. slitErect: {
  35183. height: math.unit(5.85, "meters"),
  35184. name: "Slit (Erect)",
  35185. image: {
  35186. source: "./media/characters/glint/slit-erect.svg"
  35187. }
  35188. },
  35189. mawAnthro: {
  35190. height: math.unit(0.63, "meters"),
  35191. name: "Maw (Anthro)",
  35192. image: {
  35193. source: "./media/characters/glint/maw.svg"
  35194. }
  35195. },
  35196. mawFeral: {
  35197. height: math.unit(2.89, "meters"),
  35198. name: "Maw (Feral)",
  35199. image: {
  35200. source: "./media/characters/glint/maw.svg"
  35201. }
  35202. },
  35203. },
  35204. [
  35205. {
  35206. name: "Normal",
  35207. height: math.unit(9, "feet"),
  35208. default: true
  35209. },
  35210. ]
  35211. ))
  35212. characterMakers.push(() => makeCharacter(
  35213. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35214. {
  35215. side: {
  35216. height: math.unit(15, "feet"),
  35217. weight: math.unit(5000, "kg"),
  35218. name: "Side",
  35219. image: {
  35220. source: "./media/characters/kairne/side.svg",
  35221. extra: 979/811,
  35222. bottom: 13/992
  35223. }
  35224. },
  35225. front: {
  35226. height: math.unit(15, "feet"),
  35227. weight: math.unit(5000, "kg"),
  35228. name: "Front",
  35229. image: {
  35230. source: "./media/characters/kairne/front.svg",
  35231. extra: 908/814,
  35232. bottom: 26/934
  35233. }
  35234. },
  35235. sideNsfw: {
  35236. height: math.unit(15, "feet"),
  35237. weight: math.unit(5000, "kg"),
  35238. name: "Side (NSFW)",
  35239. image: {
  35240. source: "./media/characters/kairne/side-nsfw.svg",
  35241. extra: 979/811,
  35242. bottom: 13/992
  35243. }
  35244. },
  35245. frontNsfw: {
  35246. height: math.unit(15, "feet"),
  35247. weight: math.unit(5000, "kg"),
  35248. name: "Front (NSFW)",
  35249. image: {
  35250. source: "./media/characters/kairne/front-nsfw.svg",
  35251. extra: 908/814,
  35252. bottom: 26/934
  35253. }
  35254. },
  35255. dickCaged: {
  35256. height: math.unit(0.65, "meters"),
  35257. name: "Dick-caged",
  35258. image: {
  35259. source: "./media/characters/kairne/dick-caged.svg"
  35260. }
  35261. },
  35262. dick: {
  35263. height: math.unit(0.79, "meters"),
  35264. name: "Dick",
  35265. image: {
  35266. source: "./media/characters/kairne/dick.svg"
  35267. }
  35268. },
  35269. genitals: {
  35270. height: math.unit(1.29, "meters"),
  35271. name: "Genitals",
  35272. image: {
  35273. source: "./media/characters/kairne/genitals.svg"
  35274. }
  35275. },
  35276. maw: {
  35277. height: math.unit(1.73, "meters"),
  35278. name: "Maw",
  35279. image: {
  35280. source: "./media/characters/kairne/maw.svg"
  35281. }
  35282. },
  35283. },
  35284. [
  35285. {
  35286. name: "Normal",
  35287. height: math.unit(15, "feet"),
  35288. default: true
  35289. },
  35290. ]
  35291. ))
  35292. characterMakers.push(() => makeCharacter(
  35293. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35294. {
  35295. front: {
  35296. height: math.unit(5 + 8/12, "feet"),
  35297. weight: math.unit(139, "lb"),
  35298. name: "Front",
  35299. image: {
  35300. source: "./media/characters/biscuit-jackal/front.svg",
  35301. extra: 2106/1961,
  35302. bottom: 58/2164
  35303. }
  35304. },
  35305. back: {
  35306. height: math.unit(5 + 8/12, "feet"),
  35307. weight: math.unit(139, "lb"),
  35308. name: "Back",
  35309. image: {
  35310. source: "./media/characters/biscuit-jackal/back.svg",
  35311. extra: 2132/1976,
  35312. bottom: 57/2189
  35313. }
  35314. },
  35315. werejackal: {
  35316. height: math.unit(6 + 3/12, "feet"),
  35317. weight: math.unit(188, "lb"),
  35318. name: "Werejackal",
  35319. image: {
  35320. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35321. extra: 2373/2178,
  35322. bottom: 53/2426
  35323. }
  35324. },
  35325. },
  35326. [
  35327. {
  35328. name: "Normal",
  35329. height: math.unit(5 + 8/12, "feet"),
  35330. default: true
  35331. },
  35332. ]
  35333. ))
  35334. characterMakers.push(() => makeCharacter(
  35335. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35336. {
  35337. front: {
  35338. height: math.unit(140, "cm"),
  35339. weight: math.unit(45, "kg"),
  35340. name: "Front",
  35341. image: {
  35342. source: "./media/characters/tayra-white/front.svg",
  35343. extra: 2229/2192,
  35344. bottom: 75/2304
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Normal",
  35351. height: math.unit(140, "cm"),
  35352. default: true
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(4 + 5/12, "feet"),
  35361. name: "Front",
  35362. image: {
  35363. source: "./media/characters/scoop/front.svg",
  35364. extra: 1257/1136,
  35365. bottom: 69/1326
  35366. }
  35367. },
  35368. back: {
  35369. height: math.unit(4 + 5/12, "feet"),
  35370. name: "Back",
  35371. image: {
  35372. source: "./media/characters/scoop/back.svg",
  35373. extra: 1321/1152,
  35374. bottom: 32/1353
  35375. }
  35376. },
  35377. maw: {
  35378. height: math.unit(0.68, "feet"),
  35379. name: "Maw",
  35380. image: {
  35381. source: "./media/characters/scoop/maw.svg"
  35382. }
  35383. },
  35384. },
  35385. [
  35386. {
  35387. name: "Really Small",
  35388. height: math.unit(1, "mm")
  35389. },
  35390. {
  35391. name: "Micro",
  35392. height: math.unit(1, "inch")
  35393. },
  35394. {
  35395. name: "Normal",
  35396. height: math.unit(4 + 5/12, "feet"),
  35397. default: true
  35398. },
  35399. {
  35400. name: "Macro",
  35401. height: math.unit(200, "feet")
  35402. },
  35403. {
  35404. name: "Megamacro",
  35405. height: math.unit(3240, "feet")
  35406. },
  35407. {
  35408. name: "Teramacro",
  35409. height: math.unit(2500, "miles")
  35410. },
  35411. ]
  35412. ))
  35413. characterMakers.push(() => makeCharacter(
  35414. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35415. {
  35416. front: {
  35417. height: math.unit(15 + 7/12, "feet"),
  35418. weight: math.unit(1150, "tons"),
  35419. name: "Front",
  35420. image: {
  35421. source: "./media/characters/saphinara/front.svg",
  35422. extra: 1837/1643,
  35423. bottom: 84/1921
  35424. },
  35425. form: "normal",
  35426. default: true
  35427. },
  35428. side: {
  35429. height: math.unit(15 + 7/12, "feet"),
  35430. weight: math.unit(1150, "tons"),
  35431. name: "Side",
  35432. image: {
  35433. source: "./media/characters/saphinara/side.svg",
  35434. extra: 605/547,
  35435. bottom: 6/611
  35436. },
  35437. form: "normal"
  35438. },
  35439. back: {
  35440. height: math.unit(15 + 7/12, "feet"),
  35441. weight: math.unit(1150, "tons"),
  35442. name: "Back",
  35443. image: {
  35444. source: "./media/characters/saphinara/back.svg",
  35445. extra: 591/531,
  35446. bottom: 13/604
  35447. },
  35448. form: "normal"
  35449. },
  35450. frontTail: {
  35451. height: math.unit(15 + 7/12, "feet"),
  35452. weight: math.unit(1150, "tons"),
  35453. name: "Front (Full Tail)",
  35454. image: {
  35455. source: "./media/characters/saphinara/front-tail.svg",
  35456. extra: 2256/1630,
  35457. bottom: 261/2517
  35458. },
  35459. form: "normal"
  35460. },
  35461. insides: {
  35462. height: math.unit(11.92, "feet"),
  35463. name: "Insides",
  35464. image: {
  35465. source: "./media/characters/saphinara/insides.svg"
  35466. },
  35467. form: "normal"
  35468. },
  35469. head: {
  35470. height: math.unit(4.17, "feet"),
  35471. name: "Head",
  35472. image: {
  35473. source: "./media/characters/saphinara/head.svg"
  35474. },
  35475. form: "normal"
  35476. },
  35477. tongue: {
  35478. height: math.unit(4.60, "feet"),
  35479. name: "Tongue",
  35480. image: {
  35481. source: "./media/characters/saphinara/tongue.svg"
  35482. },
  35483. form: "normal"
  35484. },
  35485. headEnraged: {
  35486. height: math.unit(5.55, "feet"),
  35487. name: "Head (Enraged)",
  35488. image: {
  35489. source: "./media/characters/saphinara/head-enraged.svg"
  35490. },
  35491. form: "normal"
  35492. },
  35493. wings: {
  35494. height: math.unit(11.95, "feet"),
  35495. name: "Wings",
  35496. image: {
  35497. source: "./media/characters/saphinara/wings.svg"
  35498. },
  35499. form: "normal"
  35500. },
  35501. feathers: {
  35502. height: math.unit(8.92, "feet"),
  35503. name: "Feathers",
  35504. image: {
  35505. source: "./media/characters/saphinara/feathers.svg"
  35506. },
  35507. form: "normal"
  35508. },
  35509. shackles: {
  35510. height: math.unit(2, "feet"),
  35511. name: "Shackles",
  35512. image: {
  35513. source: "./media/characters/saphinara/shackles.svg"
  35514. },
  35515. form: "normal"
  35516. },
  35517. eyes: {
  35518. height: math.unit(1.331, "feet"),
  35519. name: "Eyes",
  35520. image: {
  35521. source: "./media/characters/saphinara/eyes.svg"
  35522. },
  35523. form: "normal"
  35524. },
  35525. eyesEnraged: {
  35526. height: math.unit(1.331, "feet"),
  35527. name: "Eyes (Enraged)",
  35528. image: {
  35529. source: "./media/characters/saphinara/eyes-enraged.svg"
  35530. },
  35531. form: "normal"
  35532. },
  35533. trueFormSide: {
  35534. height: math.unit(200, "feet"),
  35535. weight: math.unit(1e7, "tons"),
  35536. name: "Side",
  35537. image: {
  35538. source: "./media/characters/saphinara/true-form-side.svg",
  35539. extra: 1399/770,
  35540. bottom: 97/1496
  35541. },
  35542. form: "true-form",
  35543. default: true
  35544. },
  35545. trueFormMaw: {
  35546. height: math.unit(71.5, "feet"),
  35547. name: "Maw",
  35548. image: {
  35549. source: "./media/characters/saphinara/true-form-maw.svg",
  35550. extra: 2302/1453,
  35551. bottom: 0/2302
  35552. },
  35553. form: "true-form"
  35554. },
  35555. meowberusSide: {
  35556. height: math.unit(75, "feet"),
  35557. weight: math.unit(180000, "kg"),
  35558. preyCapacity: math.unit(50000, "people"),
  35559. name: "Side",
  35560. image: {
  35561. source: "./media/characters/saphinara/meowberus-side.svg",
  35562. extra: 1400/711,
  35563. bottom: 126/1526
  35564. },
  35565. form: "meowberus",
  35566. extraAttributes: {
  35567. "pawArea": {
  35568. name: "Paw Size",
  35569. power: 2,
  35570. type: "area",
  35571. base: math.unit(35, "m^2")
  35572. }
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Normal",
  35579. height: math.unit(15 + 7/12, "feet"),
  35580. default: true,
  35581. form: "normal"
  35582. },
  35583. {
  35584. name: "Angry",
  35585. height: math.unit(30 + 6/12, "feet"),
  35586. form: "normal"
  35587. },
  35588. {
  35589. name: "Enraged",
  35590. height: math.unit(102 + 1/12, "feet"),
  35591. form: "normal"
  35592. },
  35593. {
  35594. name: "True",
  35595. height: math.unit(200, "feet"),
  35596. default: true,
  35597. form: "true-form"
  35598. },
  35599. {
  35600. name: "Normal",
  35601. height: math.unit(75, "feet"),
  35602. default: true,
  35603. form: "meowberus"
  35604. },
  35605. ],
  35606. {
  35607. "normal": {
  35608. name: "Normal",
  35609. default: true
  35610. },
  35611. "true-form": {
  35612. name: "True Form"
  35613. },
  35614. "meowberus": {
  35615. name: "Meowberus",
  35616. },
  35617. }
  35618. ))
  35619. characterMakers.push(() => makeCharacter(
  35620. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35621. {
  35622. front: {
  35623. height: math.unit(6 + 8/12, "feet"),
  35624. weight: math.unit(300, "lb"),
  35625. name: "Front",
  35626. image: {
  35627. source: "./media/characters/jrain/front.svg",
  35628. extra: 3039/2865,
  35629. bottom: 399/3438
  35630. }
  35631. },
  35632. back: {
  35633. height: math.unit(6 + 8/12, "feet"),
  35634. weight: math.unit(300, "lb"),
  35635. name: "Back",
  35636. image: {
  35637. source: "./media/characters/jrain/back.svg",
  35638. extra: 3089/2938,
  35639. bottom: 172/3261
  35640. }
  35641. },
  35642. head: {
  35643. height: math.unit(2.14, "feet"),
  35644. name: "Head",
  35645. image: {
  35646. source: "./media/characters/jrain/head.svg"
  35647. }
  35648. },
  35649. maw: {
  35650. height: math.unit(1.77, "feet"),
  35651. name: "Maw",
  35652. image: {
  35653. source: "./media/characters/jrain/maw.svg"
  35654. }
  35655. },
  35656. leftHand: {
  35657. height: math.unit(1.1, "feet"),
  35658. name: "Left Hand",
  35659. image: {
  35660. source: "./media/characters/jrain/left-hand.svg"
  35661. }
  35662. },
  35663. rightHand: {
  35664. height: math.unit(1.1, "feet"),
  35665. name: "Right Hand",
  35666. image: {
  35667. source: "./media/characters/jrain/right-hand.svg"
  35668. }
  35669. },
  35670. eye: {
  35671. height: math.unit(0.35, "feet"),
  35672. name: "Eye",
  35673. image: {
  35674. source: "./media/characters/jrain/eye.svg"
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(6 + 8/12, "feet"),
  35682. default: true
  35683. },
  35684. {
  35685. name: "Casually Large",
  35686. height: math.unit(25, "feet")
  35687. },
  35688. {
  35689. name: "Giant",
  35690. height: math.unit(100, "feet")
  35691. },
  35692. {
  35693. name: "Kaiju",
  35694. height: math.unit(300, "feet")
  35695. },
  35696. ]
  35697. ))
  35698. characterMakers.push(() => makeCharacter(
  35699. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35700. {
  35701. dragon: {
  35702. height: math.unit(5, "meters"),
  35703. name: "Dragon",
  35704. image: {
  35705. source: "./media/characters/sabrina/dragon.svg",
  35706. extra: 3670 / 2365,
  35707. bottom: 333 / 4003
  35708. }
  35709. },
  35710. gryphon: {
  35711. height: math.unit(3, "meters"),
  35712. name: "Gryphon",
  35713. image: {
  35714. source: "./media/characters/sabrina/gryphon.svg",
  35715. extra: 1576 / 945,
  35716. bottom: 71 / 1647
  35717. }
  35718. },
  35719. snake: {
  35720. height: math.unit(12, "meters"),
  35721. name: "Snake",
  35722. image: {
  35723. source: "./media/characters/sabrina/snake.svg",
  35724. extra: 1758 / 1320,
  35725. bottom: 186 / 1944
  35726. }
  35727. },
  35728. collar: {
  35729. height: math.unit(1.86, "meters"),
  35730. name: "Collar",
  35731. image: {
  35732. source: "./media/characters/sabrina/collar.svg"
  35733. }
  35734. },
  35735. eye: {
  35736. height: math.unit(0.53, "meters"),
  35737. name: "Eye",
  35738. image: {
  35739. source: "./media/characters/sabrina/eye.svg"
  35740. }
  35741. },
  35742. foot: {
  35743. height: math.unit(1.86, "meters"),
  35744. name: "Foot",
  35745. image: {
  35746. source: "./media/characters/sabrina/foot.svg"
  35747. }
  35748. },
  35749. hand: {
  35750. height: math.unit(1.32, "meters"),
  35751. name: "Hand",
  35752. image: {
  35753. source: "./media/characters/sabrina/hand.svg"
  35754. }
  35755. },
  35756. head: {
  35757. height: math.unit(2.44, "meters"),
  35758. name: "Head",
  35759. image: {
  35760. source: "./media/characters/sabrina/head.svg"
  35761. }
  35762. },
  35763. headAngry: {
  35764. height: math.unit(2.44, "meters"),
  35765. name: "Head (Angry))",
  35766. image: {
  35767. source: "./media/characters/sabrina/head-angry.svg"
  35768. }
  35769. },
  35770. maw: {
  35771. height: math.unit(1.65, "meters"),
  35772. name: "Maw",
  35773. image: {
  35774. source: "./media/characters/sabrina/maw.svg"
  35775. }
  35776. },
  35777. spikes: {
  35778. height: math.unit(1.69, "meters"),
  35779. name: "Spikes",
  35780. image: {
  35781. source: "./media/characters/sabrina/spikes.svg"
  35782. }
  35783. },
  35784. stomach: {
  35785. height: math.unit(1.15, "meters"),
  35786. name: "Stomach",
  35787. image: {
  35788. source: "./media/characters/sabrina/stomach.svg"
  35789. }
  35790. },
  35791. tongue: {
  35792. height: math.unit(1.27, "meters"),
  35793. name: "Tongue",
  35794. image: {
  35795. source: "./media/characters/sabrina/tongue.svg"
  35796. }
  35797. },
  35798. wingDorsal: {
  35799. height: math.unit(4.85, "meters"),
  35800. name: "Wing (Dorsal)",
  35801. image: {
  35802. source: "./media/characters/sabrina/wing-dorsal.svg"
  35803. }
  35804. },
  35805. wingVentral: {
  35806. height: math.unit(4.85, "meters"),
  35807. name: "Wing (Ventral)",
  35808. image: {
  35809. source: "./media/characters/sabrina/wing-ventral.svg"
  35810. }
  35811. },
  35812. },
  35813. [
  35814. {
  35815. name: "Normal",
  35816. height: math.unit(5, "meters"),
  35817. default: true
  35818. },
  35819. ]
  35820. ))
  35821. characterMakers.push(() => makeCharacter(
  35822. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35823. {
  35824. frontMaid: {
  35825. height: math.unit(5 + 5/12, "feet"),
  35826. weight: math.unit(130, "lb"),
  35827. name: "Front (Maid)",
  35828. image: {
  35829. source: "./media/characters/midnight-tales/front-maid.svg",
  35830. extra: 489/454,
  35831. bottom: 61/550
  35832. }
  35833. },
  35834. frontFormal: {
  35835. height: math.unit(5 + 5/12, "feet"),
  35836. weight: math.unit(130, "lb"),
  35837. name: "Front (Formal)",
  35838. image: {
  35839. source: "./media/characters/midnight-tales/front-formal.svg",
  35840. extra: 489/454,
  35841. bottom: 61/550
  35842. }
  35843. },
  35844. back: {
  35845. height: math.unit(5 + 5/12, "feet"),
  35846. weight: math.unit(130, "lb"),
  35847. name: "Back",
  35848. image: {
  35849. source: "./media/characters/midnight-tales/back.svg",
  35850. extra: 498/456,
  35851. bottom: 33/531
  35852. }
  35853. },
  35854. frontBeast: {
  35855. height: math.unit(40, "feet"),
  35856. weight: math.unit(64000, "lb"),
  35857. name: "Front (Beast)",
  35858. image: {
  35859. source: "./media/characters/midnight-tales/front-beast.svg",
  35860. extra: 927/860,
  35861. bottom: 53/980
  35862. }
  35863. },
  35864. backBeast: {
  35865. height: math.unit(40, "feet"),
  35866. weight: math.unit(64000, "lb"),
  35867. name: "Back (Beast)",
  35868. image: {
  35869. source: "./media/characters/midnight-tales/back-beast.svg",
  35870. extra: 929/855,
  35871. bottom: 16/945
  35872. }
  35873. },
  35874. footBeast: {
  35875. height: math.unit(6.7, "feet"),
  35876. name: "Foot (Beast)",
  35877. image: {
  35878. source: "./media/characters/midnight-tales/foot-beast.svg"
  35879. }
  35880. },
  35881. headBeast: {
  35882. height: math.unit(8, "feet"),
  35883. name: "Head (Beast)",
  35884. image: {
  35885. source: "./media/characters/midnight-tales/head-beast.svg"
  35886. }
  35887. },
  35888. },
  35889. [
  35890. {
  35891. name: "Normal",
  35892. height: math.unit(5 + 5 / 12, "feet"),
  35893. default: true
  35894. },
  35895. {
  35896. name: "Macro",
  35897. height: math.unit(25, "feet")
  35898. },
  35899. ]
  35900. ))
  35901. characterMakers.push(() => makeCharacter(
  35902. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35903. {
  35904. front: {
  35905. height: math.unit(5 + 10/12, "feet"),
  35906. name: "Front",
  35907. image: {
  35908. source: "./media/characters/argon/front.svg",
  35909. extra: 2009/1935,
  35910. bottom: 118/2127
  35911. }
  35912. },
  35913. back: {
  35914. height: math.unit(5 + 10/12, "feet"),
  35915. name: "Back",
  35916. image: {
  35917. source: "./media/characters/argon/back.svg",
  35918. extra: 2047/1992,
  35919. bottom: 20/2067
  35920. }
  35921. },
  35922. frontDressed: {
  35923. height: math.unit(5 + 10/12, "feet"),
  35924. name: "Front (Dressed)",
  35925. image: {
  35926. source: "./media/characters/argon/front-dressed.svg",
  35927. extra: 2009/1935,
  35928. bottom: 118/2127
  35929. }
  35930. },
  35931. },
  35932. [
  35933. {
  35934. name: "Normal",
  35935. height: math.unit(5 + 10/12, "feet"),
  35936. default: true
  35937. },
  35938. ]
  35939. ))
  35940. characterMakers.push(() => makeCharacter(
  35941. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35942. {
  35943. front: {
  35944. height: math.unit(8 + 6/12, "feet"),
  35945. weight: math.unit(1150, "lb"),
  35946. name: "Front",
  35947. image: {
  35948. source: "./media/characters/kichi/front.svg",
  35949. extra: 1267/1164,
  35950. bottom: 61/1328
  35951. }
  35952. },
  35953. back: {
  35954. height: math.unit(8 + 6/12, "feet"),
  35955. weight: math.unit(1150, "lb"),
  35956. name: "Back",
  35957. image: {
  35958. source: "./media/characters/kichi/back.svg",
  35959. extra: 1273/1166,
  35960. bottom: 33/1306
  35961. }
  35962. },
  35963. },
  35964. [
  35965. {
  35966. name: "Normal",
  35967. height: math.unit(8 + 6/12, "feet"),
  35968. default: true
  35969. },
  35970. ]
  35971. ))
  35972. characterMakers.push(() => makeCharacter(
  35973. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35974. {
  35975. front: {
  35976. height: math.unit(6, "feet"),
  35977. weight: math.unit(210, "lb"),
  35978. name: "Front",
  35979. image: {
  35980. source: "./media/characters/manetel-greyscale/front.svg",
  35981. extra: 350/312,
  35982. bottom: 8/358
  35983. }
  35984. },
  35985. },
  35986. [
  35987. {
  35988. name: "Micro",
  35989. height: math.unit(2, "inches")
  35990. },
  35991. {
  35992. name: "Normal",
  35993. height: math.unit(6, "feet"),
  35994. default: true
  35995. },
  35996. {
  35997. name: "Minimacro",
  35998. height: math.unit(17, "feet")
  35999. },
  36000. {
  36001. name: "Macro",
  36002. height: math.unit(117, "feet")
  36003. },
  36004. ]
  36005. ))
  36006. characterMakers.push(() => makeCharacter(
  36007. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36008. {
  36009. side: {
  36010. height: math.unit(5 + 1/12, "feet"),
  36011. weight: math.unit(418, "lb"),
  36012. name: "Side",
  36013. image: {
  36014. source: "./media/characters/softpurr/side.svg",
  36015. extra: 1993/1945,
  36016. bottom: 134/2127
  36017. }
  36018. },
  36019. front: {
  36020. height: math.unit(5 + 1/12, "feet"),
  36021. weight: math.unit(418, "lb"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/softpurr/front.svg",
  36025. extra: 1950/1856,
  36026. bottom: 174/2124
  36027. }
  36028. },
  36029. paw: {
  36030. height: math.unit(1, "feet"),
  36031. name: "Paw",
  36032. image: {
  36033. source: "./media/characters/softpurr/paw.svg"
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(5 + 1/12, "feet"),
  36041. default: true
  36042. },
  36043. ]
  36044. ))
  36045. characterMakers.push(() => makeCharacter(
  36046. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36047. {
  36048. front: {
  36049. height: math.unit(260, "meters"),
  36050. name: "Front",
  36051. image: {
  36052. source: "./media/characters/anahita/front.svg",
  36053. extra: 665/635,
  36054. bottom: 89/754
  36055. }
  36056. },
  36057. },
  36058. [
  36059. {
  36060. name: "Macro",
  36061. height: math.unit(260, "meters"),
  36062. default: true
  36063. },
  36064. ]
  36065. ))
  36066. characterMakers.push(() => makeCharacter(
  36067. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36068. {
  36069. front: {
  36070. height: math.unit(4 + 10/12, "feet"),
  36071. weight: math.unit(160, "lb"),
  36072. name: "Front",
  36073. image: {
  36074. source: "./media/characters/chip-mouse/front.svg",
  36075. extra: 3528/3408,
  36076. bottom: 0/3528
  36077. }
  36078. },
  36079. frontNsfw: {
  36080. height: math.unit(4 + 10/12, "feet"),
  36081. weight: math.unit(160, "lb"),
  36082. name: "Front (NSFW)",
  36083. image: {
  36084. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36085. extra: 3528/3408,
  36086. bottom: 0/3528
  36087. }
  36088. },
  36089. },
  36090. [
  36091. {
  36092. name: "Normal",
  36093. height: math.unit(4 + 10/12, "feet"),
  36094. default: true
  36095. },
  36096. ]
  36097. ))
  36098. characterMakers.push(() => makeCharacter(
  36099. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36100. {
  36101. side: {
  36102. height: math.unit(10, "feet"),
  36103. weight: math.unit(14000, "lb"),
  36104. name: "Side",
  36105. image: {
  36106. source: "./media/characters/kremm/side.svg",
  36107. extra: 1390/1053,
  36108. bottom: 90/1480
  36109. }
  36110. },
  36111. gut: {
  36112. height: math.unit(5.8, "feet"),
  36113. name: "Gut",
  36114. image: {
  36115. source: "./media/characters/kremm/gut.svg"
  36116. }
  36117. },
  36118. ass: {
  36119. height: math.unit(6.1, "feet"),
  36120. name: "Ass",
  36121. image: {
  36122. source: "./media/characters/kremm/ass.svg"
  36123. }
  36124. },
  36125. jaws: {
  36126. height: math.unit(2.2, "feet"),
  36127. name: "Jaws",
  36128. image: {
  36129. source: "./media/characters/kremm/jaws.svg"
  36130. }
  36131. },
  36132. dick: {
  36133. height: math.unit(4.26, "feet"),
  36134. name: "Dick",
  36135. image: {
  36136. source: "./media/characters/kremm/dick.svg"
  36137. }
  36138. },
  36139. },
  36140. [
  36141. {
  36142. name: "Normal",
  36143. height: math.unit(10, "feet"),
  36144. default: true
  36145. },
  36146. ]
  36147. ))
  36148. characterMakers.push(() => makeCharacter(
  36149. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36150. {
  36151. front: {
  36152. height: math.unit(30, "stories"),
  36153. name: "Front",
  36154. image: {
  36155. source: "./media/characters/kai/front.svg",
  36156. extra: 1892/1718,
  36157. bottom: 162/2054
  36158. }
  36159. },
  36160. },
  36161. [
  36162. {
  36163. name: "Macro",
  36164. height: math.unit(30, "stories"),
  36165. default: true
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(6 + 4/12, "feet"),
  36174. weight: math.unit(145, "lb"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/sykes/front.svg",
  36178. extra: 1321 / 1187,
  36179. bottom: 66 / 1387
  36180. }
  36181. },
  36182. back: {
  36183. height: math.unit(6 + 4/12, "feet"),
  36184. weight: math.unit(145, "lb"),
  36185. name: "Back",
  36186. image: {
  36187. source: "./media/characters/sykes/back.svg",
  36188. extra: 1326/1181,
  36189. bottom: 31/1357
  36190. }
  36191. },
  36192. traditionalOutfit: {
  36193. height: math.unit(6 + 4/12, "feet"),
  36194. weight: math.unit(145, "lb"),
  36195. name: "Traditional Outfit",
  36196. image: {
  36197. source: "./media/characters/sykes/traditional-outfit.svg",
  36198. extra: 1321 / 1187,
  36199. bottom: 66 / 1387
  36200. }
  36201. },
  36202. adventureOutfit: {
  36203. height: math.unit(6 + 4/12, "feet"),
  36204. weight: math.unit(145, "lb"),
  36205. name: "Adventure Outfit",
  36206. image: {
  36207. source: "./media/characters/sykes/adventure-outfit.svg",
  36208. extra: 1321 / 1187,
  36209. bottom: 66 / 1387
  36210. }
  36211. },
  36212. handLeft: {
  36213. height: math.unit(0.9, "feet"),
  36214. name: "Hand (Left)",
  36215. image: {
  36216. source: "./media/characters/sykes/hand-left.svg"
  36217. }
  36218. },
  36219. handRight: {
  36220. height: math.unit(0.839, "feet"),
  36221. name: "Hand (Right)",
  36222. image: {
  36223. source: "./media/characters/sykes/hand-right.svg"
  36224. }
  36225. },
  36226. leftFoot: {
  36227. height: math.unit(1.2, "feet"),
  36228. name: "Foot (Left)",
  36229. image: {
  36230. source: "./media/characters/sykes/foot-left.svg"
  36231. }
  36232. },
  36233. rightFoot: {
  36234. height: math.unit(1.2, "feet"),
  36235. name: "Foot (Right)",
  36236. image: {
  36237. source: "./media/characters/sykes/foot-right.svg"
  36238. }
  36239. },
  36240. maw: {
  36241. height: math.unit(1.93, "feet"),
  36242. name: "Maw",
  36243. image: {
  36244. source: "./media/characters/sykes/maw.svg"
  36245. }
  36246. },
  36247. teeth: {
  36248. height: math.unit(0.51, "feet"),
  36249. name: "Teeth",
  36250. image: {
  36251. source: "./media/characters/sykes/teeth.svg"
  36252. }
  36253. },
  36254. tongue: {
  36255. height: math.unit(2.13, "feet"),
  36256. name: "Tongue",
  36257. image: {
  36258. source: "./media/characters/sykes/tongue.svg"
  36259. }
  36260. },
  36261. uvula: {
  36262. height: math.unit(0.16, "feet"),
  36263. name: "Uvula",
  36264. image: {
  36265. source: "./media/characters/sykes/uvula.svg"
  36266. }
  36267. },
  36268. collar: {
  36269. height: math.unit(0.287, "feet"),
  36270. name: "Collar",
  36271. image: {
  36272. source: "./media/characters/sykes/collar.svg"
  36273. }
  36274. },
  36275. tail: {
  36276. height: math.unit(3.8, "feet"),
  36277. name: "Tail",
  36278. image: {
  36279. source: "./media/characters/sykes/tail.svg"
  36280. }
  36281. },
  36282. },
  36283. [
  36284. {
  36285. name: "Shrunken",
  36286. height: math.unit(5, "inches")
  36287. },
  36288. {
  36289. name: "Normal",
  36290. height: math.unit(6 + 4 / 12, "feet"),
  36291. default: true
  36292. },
  36293. {
  36294. name: "Big",
  36295. height: math.unit(15, "feet")
  36296. },
  36297. ]
  36298. ))
  36299. characterMakers.push(() => makeCharacter(
  36300. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36301. {
  36302. front: {
  36303. height: math.unit(5 + 8/12, "feet"),
  36304. weight: math.unit(190, "lb"),
  36305. name: "Front",
  36306. image: {
  36307. source: "./media/characters/oven-otter/front.svg",
  36308. extra: 1809/1740,
  36309. bottom: 181/1990
  36310. }
  36311. },
  36312. back: {
  36313. height: math.unit(5 + 8/12, "feet"),
  36314. weight: math.unit(190, "lb"),
  36315. name: "Back",
  36316. image: {
  36317. source: "./media/characters/oven-otter/back.svg",
  36318. extra: 1709/1635,
  36319. bottom: 118/1827
  36320. }
  36321. },
  36322. hand: {
  36323. height: math.unit(1.07, "feet"),
  36324. name: "Hand",
  36325. image: {
  36326. source: "./media/characters/oven-otter/hand.svg"
  36327. }
  36328. },
  36329. beans: {
  36330. height: math.unit(1.74, "feet"),
  36331. name: "Beans",
  36332. image: {
  36333. source: "./media/characters/oven-otter/beans.svg"
  36334. }
  36335. },
  36336. },
  36337. [
  36338. {
  36339. name: "Micro",
  36340. height: math.unit(0.5, "inches")
  36341. },
  36342. {
  36343. name: "Normal",
  36344. height: math.unit(5 + 8/12, "feet"),
  36345. default: true
  36346. },
  36347. {
  36348. name: "Macro",
  36349. height: math.unit(250, "feet")
  36350. },
  36351. {
  36352. name: "Really High",
  36353. height: math.unit(420, "feet")
  36354. },
  36355. ]
  36356. ))
  36357. characterMakers.push(() => makeCharacter(
  36358. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36359. {
  36360. front: {
  36361. height: math.unit(5, "meters"),
  36362. weight: math.unit(292000000000000, "kg"),
  36363. name: "Front",
  36364. image: {
  36365. source: "./media/characters/devourer/front.svg",
  36366. extra: 1800/1733,
  36367. bottom: 211/2011
  36368. }
  36369. },
  36370. maw: {
  36371. height: math.unit(1.1, "meter"),
  36372. name: "Maw",
  36373. image: {
  36374. source: "./media/characters/devourer/maw.svg"
  36375. }
  36376. },
  36377. },
  36378. [
  36379. {
  36380. name: "Small",
  36381. height: math.unit(3, "meters")
  36382. },
  36383. {
  36384. name: "Large",
  36385. height: math.unit(5, "meters"),
  36386. default: true
  36387. },
  36388. ]
  36389. ))
  36390. characterMakers.push(() => makeCharacter(
  36391. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36392. {
  36393. front: {
  36394. height: math.unit(6, "feet"),
  36395. weight: math.unit(400, "lb"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/ellarby/front.svg",
  36399. extra: 1909/1763,
  36400. bottom: 80/1989
  36401. }
  36402. },
  36403. back: {
  36404. height: math.unit(6, "feet"),
  36405. weight: math.unit(400, "lb"),
  36406. name: "Back",
  36407. image: {
  36408. source: "./media/characters/ellarby/back.svg",
  36409. extra: 1914/1784,
  36410. bottom: 172/2086
  36411. }
  36412. },
  36413. },
  36414. [
  36415. {
  36416. name: "Mischief",
  36417. height: math.unit(18, "inches")
  36418. },
  36419. {
  36420. name: "Trouble",
  36421. height: math.unit(12, "feet")
  36422. },
  36423. {
  36424. name: "Havoc",
  36425. height: math.unit(200, "feet"),
  36426. default: true
  36427. },
  36428. {
  36429. name: "Pandemonium",
  36430. height: math.unit(1, "mile")
  36431. },
  36432. {
  36433. name: "Catastrophe",
  36434. height: math.unit(100, "miles")
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36440. {
  36441. front: {
  36442. height: math.unit(4.7, "meters"),
  36443. weight: math.unit(6500, "kg"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/vex/front.svg",
  36447. extra: 1288/1140,
  36448. bottom: 100/1388
  36449. }
  36450. },
  36451. },
  36452. [
  36453. {
  36454. name: "Normal",
  36455. height: math.unit(4.7, "meters"),
  36456. default: true
  36457. },
  36458. ]
  36459. ))
  36460. characterMakers.push(() => makeCharacter(
  36461. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36462. {
  36463. normal: {
  36464. height: math.unit(6, "feet"),
  36465. weight: math.unit(350, "lb"),
  36466. name: "Normal",
  36467. image: {
  36468. source: "./media/characters/teshy/normal.svg",
  36469. extra: 1795/1735,
  36470. bottom: 16/1811
  36471. }
  36472. },
  36473. monsterFront: {
  36474. height: math.unit(12, "feet"),
  36475. weight: math.unit(4700, "lb"),
  36476. name: "Monster (Front)",
  36477. image: {
  36478. source: "./media/characters/teshy/monster-front.svg",
  36479. extra: 2042/2034,
  36480. bottom: 128/2170
  36481. }
  36482. },
  36483. monsterSide: {
  36484. height: math.unit(12, "feet"),
  36485. weight: math.unit(4700, "lb"),
  36486. name: "Monster (Side)",
  36487. image: {
  36488. source: "./media/characters/teshy/monster-side.svg",
  36489. extra: 2067/2056,
  36490. bottom: 70/2137
  36491. }
  36492. },
  36493. monsterBack: {
  36494. height: math.unit(12, "feet"),
  36495. weight: math.unit(4700, "lb"),
  36496. name: "Monster (Back)",
  36497. image: {
  36498. source: "./media/characters/teshy/monster-back.svg",
  36499. extra: 1921/1914,
  36500. bottom: 171/2092
  36501. }
  36502. },
  36503. },
  36504. [
  36505. {
  36506. name: "Normal",
  36507. height: math.unit(6, "feet"),
  36508. default: true
  36509. },
  36510. ]
  36511. ))
  36512. characterMakers.push(() => makeCharacter(
  36513. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36514. {
  36515. front: {
  36516. height: math.unit(6, "feet"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/ramey/front.svg",
  36520. extra: 790/787,
  36521. bottom: 27/817
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(6, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(5 + 5/12, "feet"),
  36538. weight: math.unit(120, "lb"),
  36539. name: "Front",
  36540. image: {
  36541. source: "./media/characters/phirae/front.svg",
  36542. extra: 2491/2436,
  36543. bottom: 38/2529
  36544. }
  36545. },
  36546. },
  36547. [
  36548. {
  36549. name: "Normal",
  36550. height: math.unit(5 + 5/12, "feet"),
  36551. default: true
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36557. {
  36558. front: {
  36559. height: math.unit(5 + 3/12, "feet"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/stagglas/front.svg",
  36563. extra: 962/882,
  36564. bottom: 53/1015
  36565. }
  36566. },
  36567. feral: {
  36568. height: math.unit(335, "cm"),
  36569. name: "Feral",
  36570. image: {
  36571. source: "./media/characters/stagglas/feral.svg",
  36572. extra: 1732/1090,
  36573. bottom: 48/1780
  36574. }
  36575. },
  36576. },
  36577. [
  36578. {
  36579. name: "Normal",
  36580. height: math.unit(5 + 3/12, "feet"),
  36581. default: true
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(5 + 4/12, "feet"),
  36590. weight: math.unit(145, "lb"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/starra/front.svg",
  36594. extra: 1790/1691,
  36595. bottom: 91/1881
  36596. }
  36597. },
  36598. },
  36599. [
  36600. {
  36601. name: "Normal",
  36602. height: math.unit(5 + 4/12, "feet"),
  36603. default: true
  36604. },
  36605. ]
  36606. ))
  36607. characterMakers.push(() => makeCharacter(
  36608. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36609. {
  36610. front: {
  36611. height: math.unit(2.2, "meters"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36615. extra: 1248/972,
  36616. bottom: 38/1286
  36617. }
  36618. },
  36619. },
  36620. [
  36621. {
  36622. name: "Normal",
  36623. height: math.unit(2.2, "meters"),
  36624. default: true
  36625. },
  36626. ]
  36627. ))
  36628. characterMakers.push(() => makeCharacter(
  36629. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36630. {
  36631. side: {
  36632. height: math.unit(8 + 2/12, "feet"),
  36633. weight: math.unit(1240, "lb"),
  36634. name: "Side",
  36635. image: {
  36636. source: "./media/characters/mika-valentine/side.svg",
  36637. extra: 2670/2501,
  36638. bottom: 250/2920
  36639. }
  36640. },
  36641. },
  36642. [
  36643. {
  36644. name: "Normal",
  36645. height: math.unit(8 + 2/12, "feet"),
  36646. default: true
  36647. },
  36648. ]
  36649. ))
  36650. characterMakers.push(() => makeCharacter(
  36651. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36652. {
  36653. front: {
  36654. height: math.unit(7 + 2/12, "feet"),
  36655. name: "Front",
  36656. image: {
  36657. source: "./media/characters/xoltol/front.svg",
  36658. extra: 2212/2124,
  36659. bottom: 84/2296
  36660. }
  36661. },
  36662. side: {
  36663. height: math.unit(7 + 2/12, "feet"),
  36664. name: "Side",
  36665. image: {
  36666. source: "./media/characters/xoltol/side.svg",
  36667. extra: 2273/2197,
  36668. bottom: 26/2299
  36669. }
  36670. },
  36671. hand: {
  36672. height: math.unit(2.5, "feet"),
  36673. name: "Hand",
  36674. image: {
  36675. source: "./media/characters/xoltol/hand.svg"
  36676. }
  36677. },
  36678. },
  36679. [
  36680. {
  36681. name: "Small-ish",
  36682. height: math.unit(5 + 11/12, "feet")
  36683. },
  36684. {
  36685. name: "Normal",
  36686. height: math.unit(7 + 2/12, "feet")
  36687. },
  36688. {
  36689. name: "\"Macro\"",
  36690. height: math.unit(14 + 9/12, "feet"),
  36691. default: true
  36692. },
  36693. {
  36694. name: "Alternate Height",
  36695. height: math.unit(20, "feet")
  36696. },
  36697. {
  36698. name: "Actually Macro",
  36699. height: math.unit(100, "feet")
  36700. },
  36701. ]
  36702. ))
  36703. characterMakers.push(() => makeCharacter(
  36704. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36705. {
  36706. front: {
  36707. height: math.unit(5 + 2/12, "feet"),
  36708. name: "Front",
  36709. image: {
  36710. source: "./media/characters/kotetsu-redwood/front.svg",
  36711. extra: 1053/942,
  36712. bottom: 60/1113
  36713. }
  36714. },
  36715. },
  36716. [
  36717. {
  36718. name: "Normal",
  36719. height: math.unit(5 + 2/12, "feet"),
  36720. default: true
  36721. },
  36722. ]
  36723. ))
  36724. characterMakers.push(() => makeCharacter(
  36725. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36726. {
  36727. front: {
  36728. height: math.unit(2.4, "meters"),
  36729. weight: math.unit(125, "kg"),
  36730. name: "Front",
  36731. image: {
  36732. source: "./media/characters/lilith/front.svg",
  36733. extra: 1590/1513,
  36734. bottom: 203/1793
  36735. }
  36736. },
  36737. },
  36738. [
  36739. {
  36740. name: "Humanoid",
  36741. height: math.unit(2.4, "meters")
  36742. },
  36743. {
  36744. name: "Normal",
  36745. height: math.unit(6, "meters"),
  36746. default: true
  36747. },
  36748. {
  36749. name: "Largest",
  36750. height: math.unit(55, "meters")
  36751. },
  36752. ]
  36753. ))
  36754. characterMakers.push(() => makeCharacter(
  36755. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36756. {
  36757. front: {
  36758. height: math.unit(8 + 4/12, "feet"),
  36759. weight: math.unit(535, "lb"),
  36760. name: "Front",
  36761. image: {
  36762. source: "./media/characters/beh'kah-bolger/front.svg",
  36763. extra: 1660/1603,
  36764. bottom: 37/1697
  36765. }
  36766. },
  36767. },
  36768. [
  36769. {
  36770. name: "Normal",
  36771. height: math.unit(8 + 4/12, "feet"),
  36772. default: true
  36773. },
  36774. {
  36775. name: "Kaiju",
  36776. height: math.unit(250, "feet")
  36777. },
  36778. {
  36779. name: "Still Growing",
  36780. height: math.unit(10, "miles")
  36781. },
  36782. {
  36783. name: "Continental",
  36784. height: math.unit(5000, "miles")
  36785. },
  36786. {
  36787. name: "Final Form",
  36788. height: math.unit(2500000, "miles")
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(7 + 2/12, "feet"),
  36797. weight: math.unit(230, "kg"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/tatyana-milewska/front.svg",
  36801. extra: 1199/1150,
  36802. bottom: 86/1285
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Normal",
  36809. height: math.unit(7 + 2/12, "feet"),
  36810. default: true
  36811. },
  36812. {
  36813. name: "Big",
  36814. height: math.unit(12, "feet")
  36815. },
  36816. {
  36817. name: "Minimacro",
  36818. height: math.unit(20, "feet")
  36819. },
  36820. {
  36821. name: "Macro",
  36822. height: math.unit(120, "feet")
  36823. },
  36824. ]
  36825. ))
  36826. characterMakers.push(() => makeCharacter(
  36827. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36828. {
  36829. front: {
  36830. height: math.unit(7 + 8/12, "feet"),
  36831. weight: math.unit(152, "kg"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/helen-arri/front.svg",
  36835. extra: 440/423,
  36836. bottom: 14/454
  36837. }
  36838. },
  36839. back: {
  36840. height: math.unit(7 + 8/12, "feet"),
  36841. weight: math.unit(152, "kg"),
  36842. name: "Back",
  36843. image: {
  36844. source: "./media/characters/helen-arri/back.svg",
  36845. extra: 443/426,
  36846. bottom: 8/451
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(7 + 8/12, "feet"),
  36854. default: true
  36855. },
  36856. {
  36857. name: "Big",
  36858. height: math.unit(14, "feet")
  36859. },
  36860. {
  36861. name: "Minimacro",
  36862. height: math.unit(24, "feet")
  36863. },
  36864. {
  36865. name: "Macro",
  36866. height: math.unit(140, "feet")
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(6, "meters"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/ehanu-rehu/front.svg",
  36878. extra: 1800/1800,
  36879. bottom: 59/1859
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(6, "meters"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(7 + 3/12, "feet"),
  36896. name: "Front",
  36897. image: {
  36898. source: "./media/characters/renholder/front.svg",
  36899. extra: 3096/2960,
  36900. bottom: 250/3346
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal Bat",
  36907. height: math.unit(7 + 3/12, "feet"),
  36908. default: true
  36909. },
  36910. {
  36911. name: "Slightly Tall Bat",
  36912. height: math.unit(100, "feet")
  36913. },
  36914. {
  36915. name: "Big Bat",
  36916. height: math.unit(1000, "feet")
  36917. },
  36918. {
  36919. name: "City-Sized Bat",
  36920. height: math.unit(200000, "feet")
  36921. },
  36922. {
  36923. name: "Bigger Bat",
  36924. height: math.unit(10000, "miles")
  36925. },
  36926. {
  36927. name: "Solar Sized Bat",
  36928. height: math.unit(100, "AU")
  36929. },
  36930. {
  36931. name: "Galactic Bat",
  36932. height: math.unit(200000, "lightyears")
  36933. },
  36934. {
  36935. name: "Universally Known Bat",
  36936. height: math.unit(1, "universe")
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36942. {
  36943. front: {
  36944. height: math.unit(6 + 11/12, "feet"),
  36945. weight: math.unit(250, "lb"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/cookiecat/front.svg",
  36949. extra: 893/827,
  36950. bottom: 14/907
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Micro",
  36957. height: math.unit(3, "inches")
  36958. },
  36959. {
  36960. name: "Normal",
  36961. height: math.unit(6 + 11/12, "feet"),
  36962. default: true
  36963. },
  36964. {
  36965. name: "Macro",
  36966. height: math.unit(100, "feet")
  36967. },
  36968. {
  36969. name: "Macro+",
  36970. height: math.unit(404, "feet")
  36971. },
  36972. {
  36973. name: "Megamacro",
  36974. height: math.unit(165, "miles")
  36975. },
  36976. {
  36977. name: "Planetary",
  36978. height: math.unit(4600, "miles")
  36979. },
  36980. ]
  36981. ))
  36982. characterMakers.push(() => makeCharacter(
  36983. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36984. {
  36985. front: {
  36986. height: math.unit(10 + 3/12, "feet"),
  36987. weight: math.unit(1500, "lb"),
  36988. name: "Front",
  36989. image: {
  36990. source: "./media/characters/tux-kusanagi/front.svg",
  36991. extra: 944/840,
  36992. bottom: 39/983
  36993. }
  36994. },
  36995. back: {
  36996. height: math.unit(10 + 3/12, "feet"),
  36997. weight: math.unit(1500, "lb"),
  36998. name: "Back",
  36999. image: {
  37000. source: "./media/characters/tux-kusanagi/back.svg",
  37001. extra: 941/842,
  37002. bottom: 28/969
  37003. }
  37004. },
  37005. rump: {
  37006. height: math.unit(5.25, "feet"),
  37007. name: "Rump",
  37008. image: {
  37009. source: "./media/characters/tux-kusanagi/rump.svg"
  37010. }
  37011. },
  37012. beak: {
  37013. height: math.unit(1.54, "feet"),
  37014. name: "Beak",
  37015. image: {
  37016. source: "./media/characters/tux-kusanagi/beak.svg"
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(10 + 3/12, "feet"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(58, "feet"),
  37033. weight: math.unit(200, "tons"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/uzarmazari/front.svg",
  37037. extra: 1575/1455,
  37038. bottom: 152/1727
  37039. }
  37040. },
  37041. back: {
  37042. height: math.unit(58, "feet"),
  37043. weight: math.unit(200, "tons"),
  37044. name: "Back",
  37045. image: {
  37046. source: "./media/characters/uzarmazari/back.svg",
  37047. extra: 1585/1510,
  37048. bottom: 157/1742
  37049. }
  37050. },
  37051. head: {
  37052. height: math.unit(26, "feet"),
  37053. name: "Head",
  37054. image: {
  37055. source: "./media/characters/uzarmazari/head.svg"
  37056. }
  37057. },
  37058. },
  37059. [
  37060. {
  37061. name: "Normal",
  37062. height: math.unit(58, "feet"),
  37063. default: true
  37064. },
  37065. ]
  37066. ))
  37067. characterMakers.push(() => makeCharacter(
  37068. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37069. {
  37070. side: {
  37071. height: math.unit(15, "feet"),
  37072. name: "Side",
  37073. image: {
  37074. source: "./media/characters/akitu/side.svg",
  37075. extra: 1421/1321,
  37076. bottom: 157/1578
  37077. }
  37078. },
  37079. front: {
  37080. height: math.unit(15, "feet"),
  37081. name: "Front",
  37082. image: {
  37083. source: "./media/characters/akitu/front.svg",
  37084. extra: 1435/1326,
  37085. bottom: 232/1667
  37086. }
  37087. },
  37088. },
  37089. [
  37090. {
  37091. name: "Normal",
  37092. height: math.unit(15, "feet"),
  37093. default: true
  37094. },
  37095. ]
  37096. ))
  37097. characterMakers.push(() => makeCharacter(
  37098. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37099. {
  37100. front: {
  37101. height: math.unit(10 + 8/12, "feet"),
  37102. name: "Front",
  37103. image: {
  37104. source: "./media/characters/azalie-croixland/front.svg",
  37105. extra: 1972/1856,
  37106. bottom: 31/2003
  37107. }
  37108. },
  37109. },
  37110. [
  37111. {
  37112. name: "Original Height",
  37113. height: math.unit(5 + 4/12, "feet")
  37114. },
  37115. {
  37116. name: "Normal Height",
  37117. height: math.unit(10 + 8/12, "feet"),
  37118. default: true
  37119. },
  37120. ]
  37121. ))
  37122. characterMakers.push(() => makeCharacter(
  37123. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37124. {
  37125. side: {
  37126. height: math.unit(7 + 1/12, "feet"),
  37127. weight: math.unit(245, "lb"),
  37128. name: "Side",
  37129. image: {
  37130. source: "./media/characters/kavus-kazian/side.svg",
  37131. extra: 349/342,
  37132. bottom: 15/364
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(7 + 1/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37146. {
  37147. normalFront: {
  37148. height: math.unit(5 + 11/12, "feet"),
  37149. name: "Front",
  37150. image: {
  37151. source: "./media/characters/moonlight-rose/normal-front.svg",
  37152. extra: 1980/1825,
  37153. bottom: 18/1998
  37154. },
  37155. form: "normal",
  37156. default: true
  37157. },
  37158. normalBack: {
  37159. height: math.unit(5 + 11/12, "feet"),
  37160. name: "Back",
  37161. image: {
  37162. source: "./media/characters/moonlight-rose/normal-back.svg",
  37163. extra: 2010/1839,
  37164. bottom: 10/2020
  37165. },
  37166. form: "normal"
  37167. },
  37168. demonFront: {
  37169. height: math.unit(1.5, "earths"),
  37170. name: "Front",
  37171. image: {
  37172. source: "./media/characters/moonlight-rose/demon.svg",
  37173. extra: 1400/1294,
  37174. bottom: 45/1445
  37175. },
  37176. form: "demon",
  37177. default: true
  37178. },
  37179. terraFront: {
  37180. height: math.unit(1.5, "earths"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/moonlight-rose/terra.svg"
  37184. },
  37185. form: "terra",
  37186. default: true
  37187. },
  37188. jupiterFront: {
  37189. height: math.unit(69911*2, "km"),
  37190. name: "Front",
  37191. image: {
  37192. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37193. extra: 1367/1286,
  37194. bottom: 55/1422
  37195. },
  37196. form: "jupiter",
  37197. default: true
  37198. },
  37199. neptuneFront: {
  37200. height: math.unit(24622*2, "feet"),
  37201. name: "Front",
  37202. image: {
  37203. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37204. extra: 1851/1712,
  37205. bottom: 0/1851
  37206. },
  37207. form: "neptune",
  37208. default: true
  37209. },
  37210. },
  37211. [
  37212. {
  37213. name: "\"Natural\" Height",
  37214. height: math.unit(5 + 11/12, "feet"),
  37215. form: "normal"
  37216. },
  37217. {
  37218. name: "Smallest comfortable size",
  37219. height: math.unit(40, "meters"),
  37220. form: "normal"
  37221. },
  37222. {
  37223. name: "Common size",
  37224. height: math.unit(50, "km"),
  37225. form: "normal",
  37226. default: true
  37227. },
  37228. {
  37229. name: "Normal",
  37230. height: math.unit(1.5, "earths"),
  37231. form: "demon",
  37232. default: true
  37233. },
  37234. {
  37235. name: "Universal",
  37236. height: math.unit(15, "universes"),
  37237. form: "demon"
  37238. },
  37239. {
  37240. name: "Earth",
  37241. height: math.unit(1.5, "earths"),
  37242. form: "terra",
  37243. default: true
  37244. },
  37245. {
  37246. name: "Super Earth",
  37247. height: math.unit(67.5, "earths"),
  37248. form: "terra"
  37249. },
  37250. {
  37251. name: "Doesn't fit in a solar system...",
  37252. height: math.unit(1, "galaxy"),
  37253. form: "terra"
  37254. },
  37255. {
  37256. name: "Saturn",
  37257. height: math.unit(58232*2, "km"),
  37258. form: "jupiter"
  37259. },
  37260. {
  37261. name: "Jupiter",
  37262. height: math.unit(69911*2, "km"),
  37263. form: "jupiter",
  37264. default: true
  37265. },
  37266. {
  37267. name: "HD 100546 b",
  37268. height: math.unit(482938, "km"),
  37269. form: "jupiter"
  37270. },
  37271. {
  37272. name: "Enceladus",
  37273. height: math.unit(513*2, "km"),
  37274. form: "neptune"
  37275. },
  37276. {
  37277. name: "Europe",
  37278. height: math.unit(1560*2, "km"),
  37279. form: "neptune"
  37280. },
  37281. {
  37282. name: "Neptune",
  37283. height: math.unit(24622*2, "km"),
  37284. form: "neptune",
  37285. default: true
  37286. },
  37287. {
  37288. name: "CoRoT-9b",
  37289. height: math.unit(75067*2, "km"),
  37290. form: "neptune"
  37291. },
  37292. ],
  37293. {
  37294. "normal": {
  37295. name: "Normal",
  37296. default: true
  37297. },
  37298. "demon": {
  37299. name: "Demon"
  37300. },
  37301. "terra": {
  37302. name: "Terra"
  37303. },
  37304. "jupiter": {
  37305. name: "Jupiter"
  37306. },
  37307. "neptune": {
  37308. name: "Neptune"
  37309. }
  37310. }
  37311. ))
  37312. characterMakers.push(() => makeCharacter(
  37313. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37314. {
  37315. front: {
  37316. height: math.unit(16, "feet"),
  37317. weight: math.unit(610, "kg"),
  37318. name: "Front",
  37319. image: {
  37320. source: "./media/characters/huckle/front.svg",
  37321. extra: 1731/1625,
  37322. bottom: 33/1764
  37323. }
  37324. },
  37325. back: {
  37326. height: math.unit(16, "feet"),
  37327. weight: math.unit(610, "kg"),
  37328. name: "Back",
  37329. image: {
  37330. source: "./media/characters/huckle/back.svg",
  37331. extra: 1738/1651,
  37332. bottom: 37/1775
  37333. }
  37334. },
  37335. laughing: {
  37336. height: math.unit(3.75, "feet"),
  37337. name: "Laughing",
  37338. image: {
  37339. source: "./media/characters/huckle/laughing.svg"
  37340. }
  37341. },
  37342. angry: {
  37343. height: math.unit(4.15, "feet"),
  37344. name: "Angry",
  37345. image: {
  37346. source: "./media/characters/huckle/angry.svg"
  37347. }
  37348. },
  37349. },
  37350. [
  37351. {
  37352. name: "Normal",
  37353. height: math.unit(16, "feet"),
  37354. default: true
  37355. },
  37356. {
  37357. name: "Mini Macro",
  37358. height: math.unit(463, "feet")
  37359. },
  37360. {
  37361. name: "Macro",
  37362. height: math.unit(1680, "meters")
  37363. },
  37364. {
  37365. name: "Mega Macro",
  37366. height: math.unit(175, "km")
  37367. },
  37368. {
  37369. name: "Terra Macro",
  37370. height: math.unit(32, "gigameters")
  37371. },
  37372. {
  37373. name: "Multiverse+",
  37374. height: math.unit(2.56e23, "yottameters")
  37375. },
  37376. ]
  37377. ))
  37378. characterMakers.push(() => makeCharacter(
  37379. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37380. {
  37381. front: {
  37382. height: math.unit(6 + 9/12, "feet"),
  37383. weight: math.unit(280, "lb"),
  37384. name: "Front",
  37385. image: {
  37386. source: "./media/characters/candy/front.svg",
  37387. extra: 234/217,
  37388. bottom: 11/245
  37389. }
  37390. },
  37391. },
  37392. [
  37393. {
  37394. name: "Really Small",
  37395. height: math.unit(0.1, "nm")
  37396. },
  37397. {
  37398. name: "Micro",
  37399. height: math.unit(2, "inches")
  37400. },
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(6 + 9/12, "feet"),
  37404. default: true
  37405. },
  37406. {
  37407. name: "Small Macro",
  37408. height: math.unit(69, "feet")
  37409. },
  37410. {
  37411. name: "Macro",
  37412. height: math.unit(160, "feet")
  37413. },
  37414. {
  37415. name: "Megamacro",
  37416. height: math.unit(22000, "miles")
  37417. },
  37418. {
  37419. name: "Gigamacro",
  37420. height: math.unit(50000, "miles")
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(4, "feet"),
  37429. weight: math.unit(90, "lb"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/joey-mcdonald/front.svg",
  37433. extra: 1059/852,
  37434. bottom: 33/1092
  37435. }
  37436. },
  37437. back: {
  37438. height: math.unit(4, "feet"),
  37439. weight: math.unit(90, "lb"),
  37440. name: "Back",
  37441. image: {
  37442. source: "./media/characters/joey-mcdonald/back.svg",
  37443. extra: 1077/879,
  37444. bottom: 5/1082
  37445. }
  37446. },
  37447. frontKobold: {
  37448. height: math.unit(4, "feet"),
  37449. weight: math.unit(100, "lb"),
  37450. name: "Front-kobold",
  37451. image: {
  37452. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37453. extra: 1480/1367,
  37454. bottom: 0/1480
  37455. }
  37456. },
  37457. backKobold: {
  37458. height: math.unit(4, "feet"),
  37459. weight: math.unit(100, "lb"),
  37460. name: "Back-kobold",
  37461. image: {
  37462. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37463. extra: 1449/1361,
  37464. bottom: 0/1449
  37465. }
  37466. },
  37467. },
  37468. [
  37469. {
  37470. name: "Normal",
  37471. height: math.unit(4, "feet"),
  37472. default: true
  37473. },
  37474. ]
  37475. ))
  37476. characterMakers.push(() => makeCharacter(
  37477. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37478. {
  37479. front: {
  37480. height: math.unit(12 + 6/12, "feet"),
  37481. name: "Front",
  37482. image: {
  37483. source: "./media/characters/kass-lockheed/front.svg",
  37484. extra: 354/343,
  37485. bottom: 9/363
  37486. }
  37487. },
  37488. back: {
  37489. height: math.unit(12 + 6/12, "feet"),
  37490. name: "Back",
  37491. image: {
  37492. source: "./media/characters/kass-lockheed/back.svg",
  37493. extra: 364/352,
  37494. bottom: 3/367
  37495. }
  37496. },
  37497. dick: {
  37498. height: math.unit(3.12, "feet"),
  37499. name: "Dick",
  37500. image: {
  37501. source: "./media/characters/kass-lockheed/dick.svg"
  37502. }
  37503. },
  37504. head: {
  37505. height: math.unit(2.6, "feet"),
  37506. name: "Head",
  37507. image: {
  37508. source: "./media/characters/kass-lockheed/head.svg"
  37509. }
  37510. },
  37511. bleh: {
  37512. height: math.unit(2.85, "feet"),
  37513. name: "Bleh",
  37514. image: {
  37515. source: "./media/characters/kass-lockheed/bleh.svg"
  37516. }
  37517. },
  37518. smug: {
  37519. height: math.unit(2.85, "feet"),
  37520. name: "Smug",
  37521. image: {
  37522. source: "./media/characters/kass-lockheed/smug.svg"
  37523. }
  37524. },
  37525. },
  37526. [
  37527. {
  37528. name: "Normal",
  37529. height: math.unit(12 + 6/12, "feet"),
  37530. default: true
  37531. },
  37532. ]
  37533. ))
  37534. characterMakers.push(() => makeCharacter(
  37535. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37536. {
  37537. front: {
  37538. height: math.unit(6 + 2/12, "feet"),
  37539. name: "Front",
  37540. image: {
  37541. source: "./media/characters/taylor/front.svg",
  37542. extra: 639/495,
  37543. bottom: 12/651
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(6 + 2/12, "feet"),
  37551. default: true
  37552. },
  37553. {
  37554. name: "Big",
  37555. height: math.unit(15, "feet")
  37556. },
  37557. {
  37558. name: "Lorg",
  37559. height: math.unit(80, "feet")
  37560. },
  37561. {
  37562. name: "Too Lorg",
  37563. height: math.unit(120, "feet")
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37569. {
  37570. front: {
  37571. height: math.unit(15, "feet"),
  37572. name: "Front",
  37573. image: {
  37574. source: "./media/characters/kaizer/front.svg",
  37575. extra: 1612/1436,
  37576. bottom: 43/1655
  37577. }
  37578. },
  37579. },
  37580. [
  37581. {
  37582. name: "Normal",
  37583. height: math.unit(15, "feet"),
  37584. default: true
  37585. },
  37586. ]
  37587. ))
  37588. characterMakers.push(() => makeCharacter(
  37589. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37590. {
  37591. front: {
  37592. height: math.unit(2, "feet"),
  37593. weight: math.unit(30, "lb"),
  37594. name: "Front",
  37595. image: {
  37596. source: "./media/characters/sandy/front.svg",
  37597. extra: 1439/1307,
  37598. bottom: 194/1633
  37599. }
  37600. },
  37601. },
  37602. [
  37603. {
  37604. name: "Normal",
  37605. height: math.unit(2, "feet"),
  37606. default: true
  37607. },
  37608. ]
  37609. ))
  37610. characterMakers.push(() => makeCharacter(
  37611. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37612. {
  37613. front: {
  37614. height: math.unit(3, "feet"),
  37615. name: "Front",
  37616. image: {
  37617. source: "./media/characters/mellvi/front.svg",
  37618. extra: 1831/1630,
  37619. bottom: 58/1889
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(3, "feet"),
  37627. default: true
  37628. },
  37629. ]
  37630. ))
  37631. characterMakers.push(() => makeCharacter(
  37632. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37633. {
  37634. front: {
  37635. height: math.unit(5 + 11/12, "feet"),
  37636. weight: math.unit(200, "lb"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/shirou/front.svg",
  37640. extra: 2491/2383,
  37641. bottom: 189/2680
  37642. }
  37643. },
  37644. back: {
  37645. height: math.unit(5 + 11/12, "feet"),
  37646. weight: math.unit(200, "lb"),
  37647. name: "Back",
  37648. image: {
  37649. source: "./media/characters/shirou/back.svg",
  37650. extra: 2554/2450,
  37651. bottom: 76/2630
  37652. }
  37653. },
  37654. },
  37655. [
  37656. {
  37657. name: "Normal",
  37658. height: math.unit(5 + 11/12, "feet"),
  37659. default: true
  37660. },
  37661. ]
  37662. ))
  37663. characterMakers.push(() => makeCharacter(
  37664. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37665. {
  37666. front: {
  37667. height: math.unit(6 + 3/12, "feet"),
  37668. weight: math.unit(177, "lb"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/noryu/front.svg",
  37672. extra: 973/885,
  37673. bottom: 10/983
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(6 + 3/12, "feet"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(5 + 6/12, "feet"),
  37690. weight: math.unit(170, "lb"),
  37691. name: "Front",
  37692. image: {
  37693. source: "./media/characters/mevolas-rubenido/front.svg",
  37694. extra: 2109/1901,
  37695. bottom: 96/2205
  37696. }
  37697. },
  37698. },
  37699. [
  37700. {
  37701. name: "Normal",
  37702. height: math.unit(5 + 6/12, "feet"),
  37703. default: true
  37704. },
  37705. ]
  37706. ))
  37707. characterMakers.push(() => makeCharacter(
  37708. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37709. {
  37710. front: {
  37711. height: math.unit(100, "feet"),
  37712. name: "Front",
  37713. image: {
  37714. source: "./media/characters/dee/front.svg",
  37715. extra: 2153/2036,
  37716. bottom: 59/2212
  37717. }
  37718. },
  37719. back: {
  37720. height: math.unit(100, "feet"),
  37721. name: "Back",
  37722. image: {
  37723. source: "./media/characters/dee/back.svg",
  37724. extra: 2183/2058,
  37725. bottom: 75/2258
  37726. }
  37727. },
  37728. foot: {
  37729. height: math.unit(19.43, "feet"),
  37730. name: "Foot",
  37731. image: {
  37732. source: "./media/characters/dee/foot.svg"
  37733. }
  37734. },
  37735. hoof: {
  37736. height: math.unit(20.6, "feet"),
  37737. name: "Hoof",
  37738. image: {
  37739. source: "./media/characters/dee/hoof.svg"
  37740. }
  37741. },
  37742. },
  37743. [
  37744. {
  37745. name: "Macro",
  37746. height: math.unit(100, "feet"),
  37747. default: true
  37748. },
  37749. ]
  37750. ))
  37751. characterMakers.push(() => makeCharacter(
  37752. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37753. {
  37754. front: {
  37755. height: math.unit(5 + 6/12, "feet"),
  37756. name: "Front",
  37757. image: {
  37758. source: "./media/characters/teh/front.svg",
  37759. extra: 1002/847,
  37760. bottom: 62/1064
  37761. }
  37762. },
  37763. },
  37764. [
  37765. {
  37766. name: "Normal",
  37767. height: math.unit(5 + 6/12, "feet"),
  37768. default: true
  37769. },
  37770. ]
  37771. ))
  37772. characterMakers.push(() => makeCharacter(
  37773. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37774. {
  37775. side: {
  37776. height: math.unit(6 + 1/12, "feet"),
  37777. weight: math.unit(204, "lb"),
  37778. name: "Side",
  37779. image: {
  37780. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37781. extra: 974/775,
  37782. bottom: 169/1143
  37783. }
  37784. },
  37785. sitting: {
  37786. height: math.unit(6 + 2/12, "feet"),
  37787. weight: math.unit(204, "lb"),
  37788. name: "Sitting",
  37789. image: {
  37790. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37791. extra: 1175/964,
  37792. bottom: 378/1553
  37793. }
  37794. },
  37795. },
  37796. [
  37797. {
  37798. name: "Normal",
  37799. height: math.unit(6 + 1/12, "feet"),
  37800. default: true
  37801. },
  37802. ]
  37803. ))
  37804. characterMakers.push(() => makeCharacter(
  37805. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37806. {
  37807. front: {
  37808. height: math.unit(6, "inches"),
  37809. name: "Front",
  37810. image: {
  37811. source: "./media/characters/tululi/front.svg",
  37812. extra: 1997/1876,
  37813. bottom: 20/2017
  37814. }
  37815. },
  37816. },
  37817. [
  37818. {
  37819. name: "Normal",
  37820. height: math.unit(6, "inches"),
  37821. default: true
  37822. },
  37823. ]
  37824. ))
  37825. characterMakers.push(() => makeCharacter(
  37826. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37827. {
  37828. front: {
  37829. height: math.unit(4 + 1/12, "feet"),
  37830. name: "Front",
  37831. image: {
  37832. source: "./media/characters/star/front.svg",
  37833. extra: 1493/1189,
  37834. bottom: 48/1541
  37835. }
  37836. },
  37837. },
  37838. [
  37839. {
  37840. name: "Normal",
  37841. height: math.unit(4 + 1/12, "feet"),
  37842. default: true
  37843. },
  37844. ]
  37845. ))
  37846. characterMakers.push(() => makeCharacter(
  37847. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37848. {
  37849. front: {
  37850. height: math.unit(6 + 3/12, "feet"),
  37851. name: "Front",
  37852. image: {
  37853. source: "./media/characters/comet/front.svg",
  37854. extra: 1681/1462,
  37855. bottom: 26/1707
  37856. }
  37857. },
  37858. },
  37859. [
  37860. {
  37861. name: "Normal",
  37862. height: math.unit(6 + 3/12, "feet"),
  37863. default: true
  37864. },
  37865. ]
  37866. ))
  37867. characterMakers.push(() => makeCharacter(
  37868. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37869. {
  37870. front: {
  37871. height: math.unit(950, "feet"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/vortex/front.svg",
  37875. extra: 1497/1434,
  37876. bottom: 56/1553
  37877. }
  37878. },
  37879. maw: {
  37880. height: math.unit(285, "feet"),
  37881. name: "Maw",
  37882. image: {
  37883. source: "./media/characters/vortex/maw.svg"
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Macro",
  37890. height: math.unit(950, "feet"),
  37891. default: true
  37892. },
  37893. ]
  37894. ))
  37895. characterMakers.push(() => makeCharacter(
  37896. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37897. {
  37898. front: {
  37899. height: math.unit(600, "feet"),
  37900. weight: math.unit(0.02, "grams"),
  37901. name: "Front",
  37902. image: {
  37903. source: "./media/characters/doodle/front.svg",
  37904. extra: 1578/1413,
  37905. bottom: 37/1615
  37906. }
  37907. },
  37908. },
  37909. [
  37910. {
  37911. name: "Macro",
  37912. height: math.unit(600, "feet"),
  37913. default: true
  37914. },
  37915. ]
  37916. ))
  37917. characterMakers.push(() => makeCharacter(
  37918. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37919. {
  37920. front: {
  37921. height: math.unit(6 + 6/12, "feet"),
  37922. name: "Front",
  37923. image: {
  37924. source: "./media/characters/jai/front.svg",
  37925. extra: 1645/1534,
  37926. bottom: 115/1760
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(6 + 6/12, "feet"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(6 + 8/12, "feet"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/pixel/front.svg",
  37946. extra: 1900/1735,
  37947. bottom: 63/1963
  37948. }
  37949. },
  37950. },
  37951. [
  37952. {
  37953. name: "Normal",
  37954. height: math.unit(6 + 8/12, "feet"),
  37955. default: true
  37956. },
  37957. ]
  37958. ))
  37959. characterMakers.push(() => makeCharacter(
  37960. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37961. {
  37962. back: {
  37963. height: math.unit(4 + 1/12, "feet"),
  37964. weight: math.unit(75, "lb"),
  37965. name: "Back",
  37966. image: {
  37967. source: "./media/characters/rhett/back.svg",
  37968. extra: 930/878,
  37969. bottom: 25/955
  37970. }
  37971. },
  37972. front: {
  37973. height: math.unit(4 + 1/12, "feet"),
  37974. weight: math.unit(75, "lb"),
  37975. name: "Front",
  37976. image: {
  37977. source: "./media/characters/rhett/front.svg",
  37978. extra: 1682/1586,
  37979. bottom: 92/1774
  37980. }
  37981. },
  37982. },
  37983. [
  37984. {
  37985. name: "Micro",
  37986. height: math.unit(8, "inches")
  37987. },
  37988. {
  37989. name: "Tiny",
  37990. height: math.unit(2, "feet")
  37991. },
  37992. {
  37993. name: "Normal",
  37994. height: math.unit(4 + 1/12, "feet"),
  37995. default: true
  37996. },
  37997. ]
  37998. ))
  37999. characterMakers.push(() => makeCharacter(
  38000. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38001. {
  38002. front: {
  38003. height: math.unit(3 + 3/12, "feet"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/penny/front.svg",
  38007. extra: 1406/1311,
  38008. bottom: 26/1432
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(3 + 3/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(4 + 11/12, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/monty/front.svg",
  38028. extra: 1479/1209,
  38029. bottom: 0/1479
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Normal",
  38036. height: math.unit(4 + 11/12, "feet"),
  38037. default: true
  38038. },
  38039. ]
  38040. ))
  38041. characterMakers.push(() => makeCharacter(
  38042. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38043. {
  38044. front: {
  38045. height: math.unit(8 + 4/12, "feet"),
  38046. name: "Front",
  38047. image: {
  38048. source: "./media/characters/sterling/front.svg",
  38049. extra: 1420/1236,
  38050. bottom: 27/1447
  38051. }
  38052. },
  38053. },
  38054. [
  38055. {
  38056. name: "Normal",
  38057. height: math.unit(8 + 4/12, "feet"),
  38058. default: true
  38059. },
  38060. ]
  38061. ))
  38062. characterMakers.push(() => makeCharacter(
  38063. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38064. {
  38065. front: {
  38066. height: math.unit(15, "feet"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/marble/front.svg",
  38070. extra: 973/937,
  38071. bottom: 32/1005
  38072. }
  38073. },
  38074. },
  38075. [
  38076. {
  38077. name: "Normal",
  38078. height: math.unit(15, "feet"),
  38079. default: true
  38080. },
  38081. ]
  38082. ))
  38083. characterMakers.push(() => makeCharacter(
  38084. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38085. {
  38086. front: {
  38087. height: math.unit(3, "inches"),
  38088. name: "Front",
  38089. image: {
  38090. source: "./media/characters/powder/front.svg",
  38091. extra: 1504/1334,
  38092. bottom: 518/2022
  38093. }
  38094. },
  38095. },
  38096. [
  38097. {
  38098. name: "Normal",
  38099. height: math.unit(3, "inches"),
  38100. default: true
  38101. },
  38102. ]
  38103. ))
  38104. characterMakers.push(() => makeCharacter(
  38105. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38106. {
  38107. front: {
  38108. height: math.unit(4 + 5/12, "feet"),
  38109. name: "Front",
  38110. image: {
  38111. source: "./media/characters/joey-raccoon/front.svg",
  38112. extra: 1273/1197,
  38113. bottom: 0/1273
  38114. }
  38115. },
  38116. },
  38117. [
  38118. {
  38119. name: "Normal",
  38120. height: math.unit(4 + 5/12, "feet"),
  38121. default: true
  38122. },
  38123. ]
  38124. ))
  38125. characterMakers.push(() => makeCharacter(
  38126. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38127. {
  38128. front: {
  38129. height: math.unit(8 + 4/12, "feet"),
  38130. name: "Front",
  38131. image: {
  38132. source: "./media/characters/vick/front.svg",
  38133. extra: 2187/2118,
  38134. bottom: 47/2234
  38135. }
  38136. },
  38137. },
  38138. [
  38139. {
  38140. name: "Normal",
  38141. height: math.unit(8 + 4/12, "feet"),
  38142. default: true
  38143. },
  38144. ]
  38145. ))
  38146. characterMakers.push(() => makeCharacter(
  38147. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38148. {
  38149. front: {
  38150. height: math.unit(5 + 5/12, "feet"),
  38151. name: "Front",
  38152. image: {
  38153. source: "./media/characters/mitsy/front.svg",
  38154. extra: 1842/1695,
  38155. bottom: 0/1842
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Normal",
  38162. height: math.unit(5 + 5/12, "feet"),
  38163. default: true
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(6 + 3/12, "feet"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/silvy/front.svg",
  38175. extra: 1995/1836,
  38176. bottom: 225/2220
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(6 + 3/12, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(3 + 8/12, "feet"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/rodney/front.svg",
  38196. extra: 1956/1747,
  38197. bottom: 31/1987
  38198. }
  38199. },
  38200. frontDressed: {
  38201. height: math.unit(2.9, "feet"),
  38202. name: "Front (Dressed)",
  38203. image: {
  38204. source: "./media/characters/rodney/front-dressed.svg",
  38205. extra: 1382/1241,
  38206. bottom: 385/1767
  38207. }
  38208. },
  38209. },
  38210. [
  38211. {
  38212. name: "Normal",
  38213. height: math.unit(3 + 8/12, "feet"),
  38214. default: true
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(5 + 9/12, "feet"),
  38223. weight: math.unit(194, "lbs"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/zakail-sudekai/front.svg",
  38227. extra: 2696/2533,
  38228. bottom: 248/2944
  38229. }
  38230. },
  38231. maw: {
  38232. height: math.unit(1.35, "feet"),
  38233. name: "Maw",
  38234. image: {
  38235. source: "./media/characters/zakail-sudekai/maw.svg"
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(5 + 9/12, "feet"),
  38243. default: true
  38244. },
  38245. ]
  38246. ))
  38247. characterMakers.push(() => makeCharacter(
  38248. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38249. {
  38250. front: {
  38251. height: math.unit(8 + 4/12, "feet"),
  38252. weight: math.unit(1200, "lb"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/eleanor/front.svg",
  38256. extra: 1226/1192,
  38257. bottom: 52/1278
  38258. }
  38259. },
  38260. back: {
  38261. height: math.unit(8 + 4/12, "feet"),
  38262. weight: math.unit(1200, "lb"),
  38263. name: "Back",
  38264. image: {
  38265. source: "./media/characters/eleanor/back.svg",
  38266. extra: 1242/1184,
  38267. bottom: 60/1302
  38268. }
  38269. },
  38270. head: {
  38271. height: math.unit(2.62, "feet"),
  38272. name: "Head",
  38273. image: {
  38274. source: "./media/characters/eleanor/head.svg"
  38275. }
  38276. },
  38277. },
  38278. [
  38279. {
  38280. name: "Normal",
  38281. height: math.unit(8 + 4/12, "feet"),
  38282. default: true
  38283. },
  38284. ]
  38285. ))
  38286. characterMakers.push(() => makeCharacter(
  38287. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38288. {
  38289. front: {
  38290. height: math.unit(8 + 4/12, "feet"),
  38291. weight: math.unit(750, "lb"),
  38292. name: "Front",
  38293. image: {
  38294. source: "./media/characters/tanya/front.svg",
  38295. extra: 1749/1615,
  38296. bottom: 33/1782
  38297. }
  38298. },
  38299. },
  38300. [
  38301. {
  38302. name: "Normal",
  38303. height: math.unit(8 + 4/12, "feet"),
  38304. default: true
  38305. },
  38306. ]
  38307. ))
  38308. characterMakers.push(() => makeCharacter(
  38309. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38310. {
  38311. front: {
  38312. height: math.unit(5, "feet"),
  38313. weight: math.unit(225, "lb"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/cindy/front.svg",
  38317. extra: 1320/1250,
  38318. bottom: 42/1362
  38319. }
  38320. },
  38321. frontDressed: {
  38322. height: math.unit(5, "feet"),
  38323. weight: math.unit(225, "lb"),
  38324. name: "Front (Dressed)",
  38325. image: {
  38326. source: "./media/characters/cindy/front-dressed.svg",
  38327. extra: 1320/1250,
  38328. bottom: 42/1362
  38329. }
  38330. },
  38331. back: {
  38332. height: math.unit(5, "feet"),
  38333. weight: math.unit(225, "lb"),
  38334. name: "Back",
  38335. image: {
  38336. source: "./media/characters/cindy/back.svg",
  38337. extra: 1384/1346,
  38338. bottom: 14/1398
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(5, "feet"),
  38346. default: true
  38347. },
  38348. ]
  38349. ))
  38350. characterMakers.push(() => makeCharacter(
  38351. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38352. {
  38353. front: {
  38354. height: math.unit(6 + 9/12, "feet"),
  38355. weight: math.unit(440, "lb"),
  38356. name: "Front",
  38357. image: {
  38358. source: "./media/characters/wilbur-owen/front.svg",
  38359. extra: 1575/1448,
  38360. bottom: 72/1647
  38361. }
  38362. },
  38363. back: {
  38364. height: math.unit(6 + 9/12, "feet"),
  38365. weight: math.unit(440, "lb"),
  38366. name: "Back",
  38367. image: {
  38368. source: "./media/characters/wilbur-owen/back.svg",
  38369. extra: 1578/1445,
  38370. bottom: 36/1614
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(6 + 9/12, "feet"),
  38378. default: true
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38384. {
  38385. front: {
  38386. height: math.unit(6 + 5/12, "feet"),
  38387. weight: math.unit(650, "lb"),
  38388. name: "Front",
  38389. image: {
  38390. source: "./media/characters/keegan/front.svg",
  38391. extra: 2387/2198,
  38392. bottom: 33/2420
  38393. }
  38394. },
  38395. side: {
  38396. height: math.unit(6 + 5/12, "feet"),
  38397. weight: math.unit(650, "lb"),
  38398. name: "Side",
  38399. image: {
  38400. source: "./media/characters/keegan/side.svg",
  38401. extra: 2390/2202,
  38402. bottom: 47/2437
  38403. }
  38404. },
  38405. back: {
  38406. height: math.unit(6 + 5/12, "feet"),
  38407. weight: math.unit(650, "lb"),
  38408. name: "Back",
  38409. image: {
  38410. source: "./media/characters/keegan/back.svg",
  38411. extra: 2418/2268,
  38412. bottom: 15/2433
  38413. }
  38414. },
  38415. frontSfw: {
  38416. height: math.unit(6 + 5/12, "feet"),
  38417. weight: math.unit(650, "lb"),
  38418. name: "Front (SFW)",
  38419. image: {
  38420. source: "./media/characters/keegan/front-sfw.svg",
  38421. extra: 2387/2198,
  38422. bottom: 33/2420
  38423. }
  38424. },
  38425. beans: {
  38426. height: math.unit(1.85, "feet"),
  38427. name: "Beans",
  38428. image: {
  38429. source: "./media/characters/keegan/beans.svg"
  38430. }
  38431. },
  38432. },
  38433. [
  38434. {
  38435. name: "Normal",
  38436. height: math.unit(6 + 5/12, "feet"),
  38437. default: true
  38438. },
  38439. ]
  38440. ))
  38441. characterMakers.push(() => makeCharacter(
  38442. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38443. {
  38444. front: {
  38445. height: math.unit(9, "feet"),
  38446. name: "Front",
  38447. image: {
  38448. source: "./media/characters/colton/front.svg",
  38449. extra: 1589/1326,
  38450. bottom: 139/1728
  38451. }
  38452. },
  38453. },
  38454. [
  38455. {
  38456. name: "Normal",
  38457. height: math.unit(9, "feet"),
  38458. default: true
  38459. },
  38460. ]
  38461. ))
  38462. characterMakers.push(() => makeCharacter(
  38463. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38464. {
  38465. front: {
  38466. height: math.unit(2 + 9/12, "feet"),
  38467. name: "Front",
  38468. image: {
  38469. source: "./media/characters/bora/front.svg",
  38470. extra: 1265/1250,
  38471. bottom: 24/1289
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Normal",
  38478. height: math.unit(2 + 9/12, "feet"),
  38479. default: true
  38480. },
  38481. ]
  38482. ))
  38483. characterMakers.push(() => makeCharacter(
  38484. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38485. {
  38486. front: {
  38487. height: math.unit(8, "feet"),
  38488. name: "Front",
  38489. image: {
  38490. source: "./media/characters/myu-myu/front.svg",
  38491. extra: 1949/1857,
  38492. bottom: 90/2039
  38493. }
  38494. },
  38495. },
  38496. [
  38497. {
  38498. name: "Normal",
  38499. height: math.unit(8, "feet"),
  38500. default: true
  38501. },
  38502. {
  38503. name: "Big",
  38504. height: math.unit(15, "feet")
  38505. },
  38506. {
  38507. name: "BIG",
  38508. height: math.unit(25, "feet")
  38509. },
  38510. ]
  38511. ))
  38512. characterMakers.push(() => makeCharacter(
  38513. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38514. {
  38515. side: {
  38516. height: math.unit(7 + 5/12, "feet"),
  38517. weight: math.unit(2800, "lb"),
  38518. name: "Side",
  38519. image: {
  38520. source: "./media/characters/haloren/side.svg",
  38521. extra: 1793/409,
  38522. bottom: 59/1852
  38523. }
  38524. },
  38525. frontPaw: {
  38526. height: math.unit(2.36, "feet"),
  38527. name: "Front paw",
  38528. image: {
  38529. source: "./media/characters/haloren/front-paw.svg"
  38530. }
  38531. },
  38532. hindPaw: {
  38533. height: math.unit(3.18, "feet"),
  38534. name: "Hind paw",
  38535. image: {
  38536. source: "./media/characters/haloren/hind-paw.svg"
  38537. }
  38538. },
  38539. maw: {
  38540. height: math.unit(5.05, "feet"),
  38541. name: "Maw",
  38542. image: {
  38543. source: "./media/characters/haloren/maw.svg"
  38544. }
  38545. },
  38546. dick: {
  38547. height: math.unit(2.90, "feet"),
  38548. name: "Dick",
  38549. image: {
  38550. source: "./media/characters/haloren/dick.svg"
  38551. }
  38552. },
  38553. },
  38554. [
  38555. {
  38556. name: "Normal",
  38557. height: math.unit(7 + 5/12, "feet"),
  38558. default: true
  38559. },
  38560. {
  38561. name: "Enhanced",
  38562. height: math.unit(14 + 3/12, "feet")
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38568. {
  38569. front: {
  38570. height: math.unit(171, "cm"),
  38571. name: "Front",
  38572. image: {
  38573. source: "./media/characters/kimmy/front.svg",
  38574. extra: 1491/1435,
  38575. bottom: 53/1544
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Small",
  38582. height: math.unit(9, "cm")
  38583. },
  38584. {
  38585. name: "Normal",
  38586. height: math.unit(171, "cm"),
  38587. default: true
  38588. },
  38589. ]
  38590. ))
  38591. characterMakers.push(() => makeCharacter(
  38592. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38593. {
  38594. front: {
  38595. height: math.unit(8, "feet"),
  38596. weight: math.unit(300, "lb"),
  38597. name: "Front",
  38598. image: {
  38599. source: "./media/characters/galeboomer/front.svg",
  38600. extra: 4651/4415,
  38601. bottom: 162/4813
  38602. }
  38603. },
  38604. back: {
  38605. height: math.unit(8, "feet"),
  38606. weight: math.unit(300, "lb"),
  38607. name: "Back",
  38608. image: {
  38609. source: "./media/characters/galeboomer/back.svg",
  38610. extra: 4544/4314,
  38611. bottom: 16/4560
  38612. }
  38613. },
  38614. frontAlt: {
  38615. height: math.unit(8, "feet"),
  38616. weight: math.unit(300, "lb"),
  38617. name: "Front (Alt)",
  38618. image: {
  38619. source: "./media/characters/galeboomer/front-alt.svg",
  38620. extra: 4458/4228,
  38621. bottom: 68/4526
  38622. }
  38623. },
  38624. maw: {
  38625. height: math.unit(1.2, "feet"),
  38626. name: "Maw",
  38627. image: {
  38628. source: "./media/characters/galeboomer/maw.svg"
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(8, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(5 + 9/12, "feet"),
  38645. weight: math.unit(120, "lb"),
  38646. name: "Front",
  38647. image: {
  38648. source: "./media/characters/chyr/front.svg",
  38649. extra: 1323/1254,
  38650. bottom: 63/1386
  38651. }
  38652. },
  38653. back: {
  38654. height: math.unit(5 + 9/12, "feet"),
  38655. weight: math.unit(120, "lb"),
  38656. name: "Back",
  38657. image: {
  38658. source: "./media/characters/chyr/back.svg",
  38659. extra: 1323/1252,
  38660. bottom: 48/1371
  38661. }
  38662. },
  38663. },
  38664. [
  38665. {
  38666. name: "Normal",
  38667. height: math.unit(5 + 9/12, "feet"),
  38668. default: true
  38669. },
  38670. ]
  38671. ))
  38672. characterMakers.push(() => makeCharacter(
  38673. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38674. {
  38675. front: {
  38676. height: math.unit(7, "feet"),
  38677. weight: math.unit(310, "lb"),
  38678. name: "Front",
  38679. image: {
  38680. source: "./media/characters/solarus/front.svg",
  38681. extra: 2415/2021,
  38682. bottom: 103/2518
  38683. }
  38684. },
  38685. back: {
  38686. height: math.unit(7, "feet"),
  38687. weight: math.unit(310, "lb"),
  38688. name: "Back",
  38689. image: {
  38690. source: "./media/characters/solarus/back.svg",
  38691. extra: 2463/2089,
  38692. bottom: 79/2542
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(7, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(16, "feet"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38712. extra: 1844/1780,
  38713. bottom: 58/1902
  38714. }
  38715. },
  38716. winterCoat: {
  38717. height: math.unit(16, "feet"),
  38718. name: "Winter Coat",
  38719. image: {
  38720. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38721. extra: 1807/1775,
  38722. bottom: 69/1876
  38723. }
  38724. },
  38725. },
  38726. [
  38727. {
  38728. name: "Normal",
  38729. height: math.unit(16, "feet"),
  38730. default: true
  38731. },
  38732. {
  38733. name: "Chicago Size",
  38734. height: math.unit(560, "feet")
  38735. },
  38736. ]
  38737. ))
  38738. characterMakers.push(() => makeCharacter(
  38739. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38740. {
  38741. front: {
  38742. height: math.unit(11 + 6/12, "feet"),
  38743. weight: math.unit(1366, "lb"),
  38744. name: "Front",
  38745. image: {
  38746. source: "./media/characters/lexor/front.svg",
  38747. extra: 1560/1481,
  38748. bottom: 211/1771
  38749. }
  38750. },
  38751. back: {
  38752. height: math.unit(11 + 6/12, "feet"),
  38753. weight: math.unit(1366, "lb"),
  38754. name: "Back",
  38755. image: {
  38756. source: "./media/characters/lexor/back.svg",
  38757. extra: 1614/1533,
  38758. bottom: 76/1690
  38759. }
  38760. },
  38761. maw: {
  38762. height: math.unit(3, "feet"),
  38763. name: "Maw",
  38764. image: {
  38765. source: "./media/characters/lexor/maw.svg"
  38766. }
  38767. },
  38768. dick: {
  38769. height: math.unit(2.59, "feet"),
  38770. name: "Dick",
  38771. image: {
  38772. source: "./media/characters/lexor/dick.svg"
  38773. }
  38774. },
  38775. },
  38776. [
  38777. {
  38778. name: "Normal",
  38779. height: math.unit(11 + 6/12, "feet"),
  38780. default: true
  38781. },
  38782. ]
  38783. ))
  38784. characterMakers.push(() => makeCharacter(
  38785. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38786. {
  38787. front: {
  38788. height: math.unit(5 + 8/12, "feet"),
  38789. name: "Front",
  38790. image: {
  38791. source: "./media/characters/magnum/front.svg",
  38792. extra: 942/855,
  38793. bottom: 26/968
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(5 + 8/12, "feet"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(18 + 4/12, "feet"),
  38810. weight: math.unit(1500, "kg"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/solas-sharpsman/front.svg",
  38814. extra: 1698/1589,
  38815. bottom: 0/1698
  38816. }
  38817. },
  38818. },
  38819. [
  38820. {
  38821. name: "Normal",
  38822. height: math.unit(18 + 4/12, "feet"),
  38823. default: true
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(5 + 5/12, "feet"),
  38832. weight: math.unit(180, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/october/front.svg",
  38836. extra: 1800/1650,
  38837. bottom: 0/1800
  38838. }
  38839. },
  38840. frontNsfw: {
  38841. height: math.unit(5 + 5/12, "feet"),
  38842. weight: math.unit(180, "lb"),
  38843. name: "Front (NSFW)",
  38844. image: {
  38845. source: "./media/characters/october/front-nsfw.svg",
  38846. extra: 1392/1307,
  38847. bottom: 42/1434
  38848. }
  38849. },
  38850. },
  38851. [
  38852. {
  38853. name: "Normal",
  38854. height: math.unit(5 + 5/12, "feet"),
  38855. default: true
  38856. },
  38857. ]
  38858. ))
  38859. characterMakers.push(() => makeCharacter(
  38860. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38861. {
  38862. front: {
  38863. height: math.unit(8 + 6/12, "feet"),
  38864. name: "Front",
  38865. image: {
  38866. source: "./media/characters/essynkardi/front.svg",
  38867. extra: 1914/1846,
  38868. bottom: 22/1936
  38869. }
  38870. },
  38871. },
  38872. [
  38873. {
  38874. name: "Normal",
  38875. height: math.unit(8 + 6/12, "feet"),
  38876. default: true
  38877. },
  38878. ]
  38879. ))
  38880. characterMakers.push(() => makeCharacter(
  38881. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38882. {
  38883. front: {
  38884. height: math.unit(6 + 6/12, "feet"),
  38885. weight: math.unit(7, "lb"),
  38886. name: "Front",
  38887. image: {
  38888. source: "./media/characters/icky/front.svg",
  38889. extra: 813/782,
  38890. bottom: 66/879
  38891. }
  38892. },
  38893. back: {
  38894. height: math.unit(6 + 6/12, "feet"),
  38895. weight: math.unit(7, "lb"),
  38896. name: "Back",
  38897. image: {
  38898. source: "./media/characters/icky/back.svg",
  38899. extra: 754/735,
  38900. bottom: 56/810
  38901. }
  38902. },
  38903. },
  38904. [
  38905. {
  38906. name: "Normal",
  38907. height: math.unit(6 + 6/12, "feet"),
  38908. default: true
  38909. },
  38910. ]
  38911. ))
  38912. characterMakers.push(() => makeCharacter(
  38913. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38914. {
  38915. front: {
  38916. height: math.unit(15, "feet"),
  38917. name: "Front",
  38918. image: {
  38919. source: "./media/characters/rojas/front.svg",
  38920. extra: 1462/1408,
  38921. bottom: 95/1557
  38922. }
  38923. },
  38924. back: {
  38925. height: math.unit(15, "feet"),
  38926. name: "Back",
  38927. image: {
  38928. source: "./media/characters/rojas/back.svg",
  38929. extra: 1023/954,
  38930. bottom: 28/1051
  38931. }
  38932. },
  38933. },
  38934. [
  38935. {
  38936. name: "Normal",
  38937. height: math.unit(15, "feet"),
  38938. default: true
  38939. },
  38940. ]
  38941. ))
  38942. characterMakers.push(() => makeCharacter(
  38943. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38944. {
  38945. frontHuman: {
  38946. height: math.unit(5 + 7/12, "feet"),
  38947. name: "Front (Human)",
  38948. image: {
  38949. source: "./media/characters/alek-dryagan/front-human.svg",
  38950. extra: 1687/1667,
  38951. bottom: 69/1756
  38952. }
  38953. },
  38954. backHuman: {
  38955. height: math.unit(5 + 7/12, "feet"),
  38956. name: "Back (Human)",
  38957. image: {
  38958. source: "./media/characters/alek-dryagan/back-human.svg",
  38959. extra: 1670/1649,
  38960. bottom: 65/1735
  38961. }
  38962. },
  38963. frontDemi: {
  38964. height: math.unit(65, "feet"),
  38965. name: "Front (Demi)",
  38966. image: {
  38967. source: "./media/characters/alek-dryagan/front-demi.svg",
  38968. extra: 1669/1642,
  38969. bottom: 49/1718
  38970. }
  38971. },
  38972. backDemi: {
  38973. height: math.unit(65, "feet"),
  38974. name: "Back (Demi)",
  38975. image: {
  38976. source: "./media/characters/alek-dryagan/back-demi.svg",
  38977. extra: 1658/1637,
  38978. bottom: 40/1698
  38979. }
  38980. },
  38981. mawHuman: {
  38982. height: math.unit(0.3, "feet"),
  38983. name: "Maw (Human)",
  38984. image: {
  38985. source: "./media/characters/alek-dryagan/maw-human.svg"
  38986. }
  38987. },
  38988. mawDemi: {
  38989. height: math.unit(3.8, "feet"),
  38990. name: "Maw (Demi)",
  38991. image: {
  38992. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38993. }
  38994. },
  38995. },
  38996. [
  38997. {
  38998. name: "Normal",
  38999. height: math.unit(5 + 7/12, "feet"),
  39000. default: true
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39006. {
  39007. frontHuman: {
  39008. height: math.unit(5 + 2/12, "feet"),
  39009. name: "Front (Human)",
  39010. image: {
  39011. source: "./media/characters/gen/front-human.svg",
  39012. extra: 1627/1538,
  39013. bottom: 71/1698
  39014. }
  39015. },
  39016. backHuman: {
  39017. height: math.unit(5 + 2/12, "feet"),
  39018. name: "Back (Human)",
  39019. image: {
  39020. source: "./media/characters/gen/back-human.svg",
  39021. extra: 1638/1548,
  39022. bottom: 69/1707
  39023. }
  39024. },
  39025. frontDemi: {
  39026. height: math.unit(5 + 2/12, "feet"),
  39027. name: "Front (Demi)",
  39028. image: {
  39029. source: "./media/characters/gen/front-demi.svg",
  39030. extra: 1627/1538,
  39031. bottom: 71/1698
  39032. }
  39033. },
  39034. backDemi: {
  39035. height: math.unit(5 + 2/12, "feet"),
  39036. name: "Back (Demi)",
  39037. image: {
  39038. source: "./media/characters/gen/back-demi.svg",
  39039. extra: 1638/1548,
  39040. bottom: 69/1707
  39041. }
  39042. },
  39043. },
  39044. [
  39045. {
  39046. name: "Normal",
  39047. height: math.unit(5 + 2/12, "feet"),
  39048. default: true
  39049. },
  39050. ]
  39051. ))
  39052. characterMakers.push(() => makeCharacter(
  39053. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39054. {
  39055. frontImp: {
  39056. height: math.unit(1 + 11/12, "feet"),
  39057. name: "Front (Imp)",
  39058. image: {
  39059. source: "./media/characters/max-kobold/front-imp.svg",
  39060. extra: 1238/1134,
  39061. bottom: 81/1319
  39062. }
  39063. },
  39064. backImp: {
  39065. height: math.unit(1 + 11/12, "feet"),
  39066. name: "Back (Imp)",
  39067. image: {
  39068. source: "./media/characters/max-kobold/back-imp.svg",
  39069. extra: 1334/1175,
  39070. bottom: 34/1368
  39071. }
  39072. },
  39073. frontDemi: {
  39074. height: math.unit(5 + 9/12, "feet"),
  39075. name: "Front (Demi)",
  39076. image: {
  39077. source: "./media/characters/max-kobold/front-demi.svg",
  39078. extra: 1715/1685,
  39079. bottom: 54/1769
  39080. }
  39081. },
  39082. backDemi: {
  39083. height: math.unit(5 + 9/12, "feet"),
  39084. name: "Back (Demi)",
  39085. image: {
  39086. source: "./media/characters/max-kobold/back-demi.svg",
  39087. extra: 1752/1729,
  39088. bottom: 41/1793
  39089. }
  39090. },
  39091. handImp: {
  39092. height: math.unit(0.45, "feet"),
  39093. name: "Hand (Imp)",
  39094. image: {
  39095. source: "./media/characters/max-kobold/hand.svg"
  39096. }
  39097. },
  39098. pawImp: {
  39099. height: math.unit(0.46, "feet"),
  39100. name: "Paw (Imp)",
  39101. image: {
  39102. source: "./media/characters/max-kobold/paw.svg"
  39103. }
  39104. },
  39105. handDemi: {
  39106. height: math.unit(0.80, "feet"),
  39107. name: "Hand (Demi)",
  39108. image: {
  39109. source: "./media/characters/max-kobold/hand.svg"
  39110. }
  39111. },
  39112. pawDemi: {
  39113. height: math.unit(1.1, "feet"),
  39114. name: "Paw (Demi)",
  39115. image: {
  39116. source: "./media/characters/max-kobold/paw.svg"
  39117. }
  39118. },
  39119. headImp: {
  39120. height: math.unit(1.33, "feet"),
  39121. name: "Head (Imp)",
  39122. image: {
  39123. source: "./media/characters/max-kobold/head-imp.svg"
  39124. }
  39125. },
  39126. mawImp: {
  39127. height: math.unit(0.75, "feet"),
  39128. name: "Maw (Imp)",
  39129. image: {
  39130. source: "./media/characters/max-kobold/maw-imp.svg"
  39131. }
  39132. },
  39133. mawDemi: {
  39134. height: math.unit(0.42, "feet"),
  39135. name: "Maw (Demi)",
  39136. image: {
  39137. source: "./media/characters/max-kobold/maw-demi.svg"
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Normal",
  39144. height: math.unit(1 + 11/12, "feet"),
  39145. default: true
  39146. },
  39147. ]
  39148. ))
  39149. characterMakers.push(() => makeCharacter(
  39150. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39151. {
  39152. front: {
  39153. height: math.unit(7 + 5/12, "feet"),
  39154. name: "Front",
  39155. image: {
  39156. source: "./media/characters/carbon/front.svg",
  39157. extra: 1754/1689,
  39158. bottom: 65/1819
  39159. }
  39160. },
  39161. back: {
  39162. height: math.unit(7 + 5/12, "feet"),
  39163. name: "Back",
  39164. image: {
  39165. source: "./media/characters/carbon/back.svg",
  39166. extra: 1762/1695,
  39167. bottom: 24/1786
  39168. }
  39169. },
  39170. frontGigantamax: {
  39171. height: math.unit(150, "feet"),
  39172. name: "Front (Gigantamax)",
  39173. image: {
  39174. source: "./media/characters/carbon/front-gigantamax.svg",
  39175. extra: 1826/1669,
  39176. bottom: 59/1885
  39177. }
  39178. },
  39179. backGigantamax: {
  39180. height: math.unit(150, "feet"),
  39181. name: "Back (Gigantamax)",
  39182. image: {
  39183. source: "./media/characters/carbon/back-gigantamax.svg",
  39184. extra: 1796/1653,
  39185. bottom: 53/1849
  39186. }
  39187. },
  39188. maw: {
  39189. height: math.unit(0.48, "feet"),
  39190. name: "Maw",
  39191. image: {
  39192. source: "./media/characters/carbon/maw.svg"
  39193. }
  39194. },
  39195. mawGigantamax: {
  39196. height: math.unit(7.5, "feet"),
  39197. name: "Maw (Gigantamax)",
  39198. image: {
  39199. source: "./media/characters/carbon/maw-gigantamax.svg"
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(7 + 5/12, "feet"),
  39207. default: true
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(6, "feet"),
  39216. name: "Front",
  39217. image: {
  39218. source: "./media/characters/maverick/front.svg",
  39219. extra: 1672/1661,
  39220. bottom: 85/1757
  39221. }
  39222. },
  39223. back: {
  39224. height: math.unit(6, "feet"),
  39225. name: "Back",
  39226. image: {
  39227. source: "./media/characters/maverick/back.svg",
  39228. extra: 1642/1631,
  39229. bottom: 38/1680
  39230. }
  39231. },
  39232. },
  39233. [
  39234. {
  39235. name: "Normal",
  39236. height: math.unit(6, "feet"),
  39237. default: true
  39238. },
  39239. ]
  39240. ))
  39241. characterMakers.push(() => makeCharacter(
  39242. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39243. {
  39244. front: {
  39245. height: math.unit(15, "feet"),
  39246. weight: math.unit(615, "lb"),
  39247. name: "Front",
  39248. image: {
  39249. source: "./media/characters/grockle/front.svg",
  39250. extra: 1535/1427,
  39251. bottom: 56/1591
  39252. }
  39253. },
  39254. },
  39255. [
  39256. {
  39257. name: "Normal",
  39258. height: math.unit(15, "feet"),
  39259. default: true
  39260. },
  39261. {
  39262. name: "Large",
  39263. height: math.unit(150, "feet")
  39264. },
  39265. {
  39266. name: "Macro",
  39267. height: math.unit(1876, "feet")
  39268. },
  39269. {
  39270. name: "Mega Macro",
  39271. height: math.unit(121940, "feet")
  39272. },
  39273. {
  39274. name: "Giga Macro",
  39275. height: math.unit(750, "km")
  39276. },
  39277. {
  39278. name: "Tera Macro",
  39279. height: math.unit(750000, "km")
  39280. },
  39281. {
  39282. name: "Galactic",
  39283. height: math.unit(1.4e5, "km")
  39284. },
  39285. {
  39286. name: "Godlike",
  39287. height: math.unit(9.8e280, "galaxies")
  39288. },
  39289. ]
  39290. ))
  39291. characterMakers.push(() => makeCharacter(
  39292. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39293. {
  39294. front: {
  39295. height: math.unit(11, "meters"),
  39296. weight: math.unit(20, "tonnes"),
  39297. name: "Front",
  39298. image: {
  39299. source: "./media/characters/alistair/front.svg",
  39300. extra: 1265/1009,
  39301. bottom: 93/1358
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(11, "meters"),
  39309. default: true
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39315. {
  39316. front: {
  39317. height: math.unit(5 + 8/12, "feet"),
  39318. name: "Front",
  39319. image: {
  39320. source: "./media/characters/haruka/front.svg",
  39321. extra: 2012/1952,
  39322. bottom: 0/2012
  39323. }
  39324. },
  39325. },
  39326. [
  39327. {
  39328. name: "Normal",
  39329. height: math.unit(5 + 8/12, "feet"),
  39330. default: true
  39331. },
  39332. ]
  39333. ))
  39334. characterMakers.push(() => makeCharacter(
  39335. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39336. {
  39337. back: {
  39338. height: math.unit(9, "feet"),
  39339. name: "Back",
  39340. image: {
  39341. source: "./media/characters/vivian-sylveon/back.svg",
  39342. extra: 1853/1714,
  39343. bottom: 0/1853
  39344. }
  39345. },
  39346. },
  39347. [
  39348. {
  39349. name: "Normal",
  39350. height: math.unit(9, "feet"),
  39351. default: true
  39352. },
  39353. {
  39354. name: "Macro",
  39355. height: math.unit(500, "feet")
  39356. },
  39357. {
  39358. name: "Megamacro",
  39359. height: math.unit(600, "miles")
  39360. },
  39361. {
  39362. name: "Gigamacro",
  39363. height: math.unit(30000, "miles")
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39369. {
  39370. anthro: {
  39371. height: math.unit(5 + 10/12, "feet"),
  39372. weight: math.unit(100, "lb"),
  39373. name: "Anthro",
  39374. image: {
  39375. source: "./media/characters/daiki/anthro.svg",
  39376. extra: 1115/1027,
  39377. bottom: 69/1184
  39378. }
  39379. },
  39380. feral: {
  39381. height: math.unit(200, "feet"),
  39382. name: "Feral",
  39383. image: {
  39384. source: "./media/characters/daiki/feral.svg",
  39385. extra: 1256/313,
  39386. bottom: 39/1295
  39387. }
  39388. },
  39389. feralHead: {
  39390. height: math.unit(171, "feet"),
  39391. name: "Feral Head",
  39392. image: {
  39393. source: "./media/characters/daiki/feral-head.svg"
  39394. }
  39395. },
  39396. manaDragon: {
  39397. height: math.unit(170, "meters"),
  39398. name: "Mana-dragon",
  39399. image: {
  39400. source: "./media/characters/daiki/mana-dragon.svg",
  39401. extra: 763/420,
  39402. bottom: 97/860
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Normal",
  39409. height: math.unit(5 + 10/12, "feet"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39416. {
  39417. fullyEquippedFront: {
  39418. height: math.unit(3 + 1/12, "feet"),
  39419. weight: math.unit(24, "lb"),
  39420. name: "Fully Equipped (Front)",
  39421. image: {
  39422. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39423. extra: 687/605,
  39424. bottom: 18/705
  39425. }
  39426. },
  39427. fullyEquippedBack: {
  39428. height: math.unit(3 + 1/12, "feet"),
  39429. weight: math.unit(24, "lb"),
  39430. name: "Fully Equipped (Back)",
  39431. image: {
  39432. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39433. extra: 689/590,
  39434. bottom: 18/707
  39435. }
  39436. },
  39437. dailyWear: {
  39438. height: math.unit(3 + 1/12, "feet"),
  39439. weight: math.unit(24, "lb"),
  39440. name: "Daily Wear",
  39441. image: {
  39442. source: "./media/characters/tea-spot/daily-wear.svg",
  39443. extra: 701/620,
  39444. bottom: 21/722
  39445. }
  39446. },
  39447. maidWork: {
  39448. height: math.unit(3 + 1/12, "feet"),
  39449. weight: math.unit(24, "lb"),
  39450. name: "Maid Work",
  39451. image: {
  39452. source: "./media/characters/tea-spot/maid-work.svg",
  39453. extra: 693/609,
  39454. bottom: 15/708
  39455. }
  39456. },
  39457. },
  39458. [
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(3 + 1/12, "feet"),
  39462. default: true
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39468. {
  39469. front: {
  39470. height: math.unit(175, "cm"),
  39471. weight: math.unit(75, "kg"),
  39472. name: "Front",
  39473. image: {
  39474. source: "./media/characters/chee/front.svg",
  39475. extra: 1796/1740,
  39476. bottom: 40/1836
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Micro-Micro",
  39483. height: math.unit(1, "nm")
  39484. },
  39485. {
  39486. name: "Micro-erst",
  39487. height: math.unit(1, "micrometer")
  39488. },
  39489. {
  39490. name: "Micro-er",
  39491. height: math.unit(1, "cm")
  39492. },
  39493. {
  39494. name: "Normal",
  39495. height: math.unit(175, "cm"),
  39496. default: true
  39497. },
  39498. {
  39499. name: "Macro",
  39500. height: math.unit(100, "m")
  39501. },
  39502. {
  39503. name: "Macro-er",
  39504. height: math.unit(1, "km")
  39505. },
  39506. {
  39507. name: "Macro-erst",
  39508. height: math.unit(10, "km")
  39509. },
  39510. {
  39511. name: "Macro-Macro",
  39512. height: math.unit(100, "km")
  39513. },
  39514. ]
  39515. ))
  39516. characterMakers.push(() => makeCharacter(
  39517. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39518. {
  39519. front: {
  39520. height: math.unit(11 + 9/12, "feet"),
  39521. weight: math.unit(935, "lb"),
  39522. name: "Front",
  39523. image: {
  39524. source: "./media/characters/kingsley/front.svg",
  39525. extra: 1803/1674,
  39526. bottom: 127/1930
  39527. }
  39528. },
  39529. frontNude: {
  39530. height: math.unit(11 + 9/12, "feet"),
  39531. weight: math.unit(935, "lb"),
  39532. name: "Front (Nude)",
  39533. image: {
  39534. source: "./media/characters/kingsley/front-nude.svg",
  39535. extra: 1803/1674,
  39536. bottom: 127/1930
  39537. }
  39538. },
  39539. },
  39540. [
  39541. {
  39542. name: "Normal",
  39543. height: math.unit(11 + 9/12, "feet"),
  39544. default: true
  39545. },
  39546. ]
  39547. ))
  39548. characterMakers.push(() => makeCharacter(
  39549. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39550. {
  39551. side: {
  39552. height: math.unit(9, "feet"),
  39553. name: "Side",
  39554. image: {
  39555. source: "./media/characters/rymel/side.svg",
  39556. extra: 792/469,
  39557. bottom: 121/913
  39558. }
  39559. },
  39560. maw: {
  39561. height: math.unit(2.4, "meters"),
  39562. name: "Maw",
  39563. image: {
  39564. source: "./media/characters/rymel/maw.svg"
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "House Drake",
  39571. height: math.unit(2, "feet")
  39572. },
  39573. {
  39574. name: "Reduced",
  39575. height: math.unit(4.5, "feet")
  39576. },
  39577. {
  39578. name: "Normal",
  39579. height: math.unit(9, "feet"),
  39580. default: true
  39581. },
  39582. ]
  39583. ))
  39584. characterMakers.push(() => makeCharacter(
  39585. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39586. {
  39587. front: {
  39588. height: math.unit(1.74, "meters"),
  39589. weight: math.unit(55, "kg"),
  39590. name: "Front",
  39591. image: {
  39592. source: "./media/characters/rubus/front.svg",
  39593. extra: 1894/1742,
  39594. bottom: 44/1938
  39595. }
  39596. },
  39597. },
  39598. [
  39599. {
  39600. name: "Normal",
  39601. height: math.unit(1.74, "meters"),
  39602. default: true
  39603. },
  39604. ]
  39605. ))
  39606. characterMakers.push(() => makeCharacter(
  39607. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39608. {
  39609. front: {
  39610. height: math.unit(5 + 2/12, "feet"),
  39611. weight: math.unit(112, "lb"),
  39612. name: "Front",
  39613. image: {
  39614. source: "./media/characters/cassie-kingston/front.svg",
  39615. extra: 1438/1390,
  39616. bottom: 47/1485
  39617. }
  39618. },
  39619. },
  39620. [
  39621. {
  39622. name: "Normal",
  39623. height: math.unit(5 + 2/12, "feet"),
  39624. default: true
  39625. },
  39626. {
  39627. name: "Macro",
  39628. height: math.unit(128, "feet")
  39629. },
  39630. {
  39631. name: "Megamacro",
  39632. height: math.unit(2.56, "miles")
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(7, "feet"),
  39641. name: "Front",
  39642. image: {
  39643. source: "./media/characters/fox/front.svg",
  39644. extra: 1798/1703,
  39645. bottom: 55/1853
  39646. }
  39647. },
  39648. back: {
  39649. height: math.unit(7, "feet"),
  39650. name: "Back",
  39651. image: {
  39652. source: "./media/characters/fox/back.svg",
  39653. extra: 1748/1649,
  39654. bottom: 32/1780
  39655. }
  39656. },
  39657. head: {
  39658. height: math.unit(1.95, "feet"),
  39659. name: "Head",
  39660. image: {
  39661. source: "./media/characters/fox/head.svg"
  39662. }
  39663. },
  39664. dick: {
  39665. height: math.unit(1.33, "feet"),
  39666. name: "Dick",
  39667. image: {
  39668. source: "./media/characters/fox/dick.svg"
  39669. }
  39670. },
  39671. foot: {
  39672. height: math.unit(1, "feet"),
  39673. name: "Foot",
  39674. image: {
  39675. source: "./media/characters/fox/foot.svg"
  39676. }
  39677. },
  39678. paw: {
  39679. height: math.unit(0.92, "feet"),
  39680. name: "Paw",
  39681. image: {
  39682. source: "./media/characters/fox/paw.svg"
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Small",
  39689. height: math.unit(3, "inches")
  39690. },
  39691. {
  39692. name: "\"Realistic\"",
  39693. height: math.unit(7, "feet")
  39694. },
  39695. {
  39696. name: "Normal",
  39697. height: math.unit(150, "feet"),
  39698. default: true
  39699. },
  39700. {
  39701. name: "BIG",
  39702. height: math.unit(1200, "feet")
  39703. },
  39704. {
  39705. name: "👀",
  39706. height: math.unit(5, "miles")
  39707. },
  39708. {
  39709. name: "👀👀👀",
  39710. height: math.unit(64, "miles")
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(625, "feet"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/asonja-rossa/front.svg",
  39722. extra: 1833/1686,
  39723. bottom: 24/1857
  39724. }
  39725. },
  39726. back: {
  39727. height: math.unit(625, "feet"),
  39728. name: "Back",
  39729. image: {
  39730. source: "./media/characters/asonja-rossa/back.svg",
  39731. extra: 1852/1753,
  39732. bottom: 26/1878
  39733. }
  39734. },
  39735. },
  39736. [
  39737. {
  39738. name: "Macro",
  39739. height: math.unit(625, "feet"),
  39740. default: true
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39746. {
  39747. side: {
  39748. height: math.unit(8, "feet"),
  39749. name: "Side",
  39750. image: {
  39751. source: "./media/characters/rezukii/side.svg",
  39752. extra: 979/542,
  39753. bottom: 87/1066
  39754. }
  39755. },
  39756. sitting: {
  39757. height: math.unit(14.6, "feet"),
  39758. name: "Sitting",
  39759. image: {
  39760. source: "./media/characters/rezukii/sitting.svg",
  39761. extra: 1023/813,
  39762. bottom: 45/1068
  39763. }
  39764. },
  39765. },
  39766. [
  39767. {
  39768. name: "Tiny",
  39769. height: math.unit(2, "feet")
  39770. },
  39771. {
  39772. name: "Smol",
  39773. height: math.unit(4, "feet")
  39774. },
  39775. {
  39776. name: "Normal",
  39777. height: math.unit(8, "feet"),
  39778. default: true
  39779. },
  39780. {
  39781. name: "Big",
  39782. height: math.unit(12, "feet")
  39783. },
  39784. {
  39785. name: "Macro",
  39786. height: math.unit(30, "feet")
  39787. },
  39788. ]
  39789. ))
  39790. characterMakers.push(() => makeCharacter(
  39791. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39792. {
  39793. front: {
  39794. height: math.unit(14, "feet"),
  39795. weight: math.unit(9.5, "tonnes"),
  39796. name: "Front",
  39797. image: {
  39798. source: "./media/characters/dawnheart/front.svg",
  39799. extra: 2792/2675,
  39800. bottom: 64/2856
  39801. }
  39802. },
  39803. },
  39804. [
  39805. {
  39806. name: "Normal",
  39807. height: math.unit(14, "feet"),
  39808. default: true
  39809. },
  39810. ]
  39811. ))
  39812. characterMakers.push(() => makeCharacter(
  39813. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39814. {
  39815. front: {
  39816. height: math.unit(1.7, "m"),
  39817. name: "Front",
  39818. image: {
  39819. source: "./media/characters/gladi/front.svg",
  39820. extra: 1460/1362,
  39821. bottom: 19/1479
  39822. }
  39823. },
  39824. back: {
  39825. height: math.unit(1.7, "m"),
  39826. name: "Back",
  39827. image: {
  39828. source: "./media/characters/gladi/back.svg",
  39829. extra: 1459/1357,
  39830. bottom: 12/1471
  39831. }
  39832. },
  39833. feral: {
  39834. height: math.unit(2.05, "m"),
  39835. name: "Feral",
  39836. image: {
  39837. source: "./media/characters/gladi/feral.svg",
  39838. extra: 821/557,
  39839. bottom: 91/912
  39840. }
  39841. },
  39842. },
  39843. [
  39844. {
  39845. name: "Shortest",
  39846. height: math.unit(70, "cm")
  39847. },
  39848. {
  39849. name: "Normal",
  39850. height: math.unit(1.7, "m")
  39851. },
  39852. {
  39853. name: "Macro",
  39854. height: math.unit(10, "m"),
  39855. default: true
  39856. },
  39857. {
  39858. name: "Tallest",
  39859. height: math.unit(200, "m")
  39860. },
  39861. ]
  39862. ))
  39863. characterMakers.push(() => makeCharacter(
  39864. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39865. {
  39866. front: {
  39867. height: math.unit(5 + 7/12, "feet"),
  39868. weight: math.unit(2, "tons"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/erdno/front.svg",
  39872. extra: 1234/1129,
  39873. bottom: 35/1269
  39874. }
  39875. },
  39876. angled: {
  39877. height: math.unit(5 + 7/12, "feet"),
  39878. weight: math.unit(2, "tons"),
  39879. name: "Angled",
  39880. image: {
  39881. source: "./media/characters/erdno/angled.svg",
  39882. extra: 1185/1139,
  39883. bottom: 36/1221
  39884. }
  39885. },
  39886. side: {
  39887. height: math.unit(5 + 7/12, "feet"),
  39888. weight: math.unit(2, "tons"),
  39889. name: "Side",
  39890. image: {
  39891. source: "./media/characters/erdno/side.svg",
  39892. extra: 1191/1144,
  39893. bottom: 40/1231
  39894. }
  39895. },
  39896. back: {
  39897. height: math.unit(5 + 7/12, "feet"),
  39898. weight: math.unit(2, "tons"),
  39899. name: "Back",
  39900. image: {
  39901. source: "./media/characters/erdno/back.svg",
  39902. extra: 1202/1146,
  39903. bottom: 17/1219
  39904. }
  39905. },
  39906. frontNsfw: {
  39907. height: math.unit(5 + 7/12, "feet"),
  39908. weight: math.unit(2, "tons"),
  39909. name: "Front (NSFW)",
  39910. image: {
  39911. source: "./media/characters/erdno/front-nsfw.svg",
  39912. extra: 1234/1129,
  39913. bottom: 35/1269
  39914. }
  39915. },
  39916. angledNsfw: {
  39917. height: math.unit(5 + 7/12, "feet"),
  39918. weight: math.unit(2, "tons"),
  39919. name: "Angled (NSFW)",
  39920. image: {
  39921. source: "./media/characters/erdno/angled-nsfw.svg",
  39922. extra: 1185/1139,
  39923. bottom: 36/1221
  39924. }
  39925. },
  39926. sideNsfw: {
  39927. height: math.unit(5 + 7/12, "feet"),
  39928. weight: math.unit(2, "tons"),
  39929. name: "Side (NSFW)",
  39930. image: {
  39931. source: "./media/characters/erdno/side-nsfw.svg",
  39932. extra: 1191/1144,
  39933. bottom: 40/1231
  39934. }
  39935. },
  39936. backNsfw: {
  39937. height: math.unit(5 + 7/12, "feet"),
  39938. weight: math.unit(2, "tons"),
  39939. name: "Back (NSFW)",
  39940. image: {
  39941. source: "./media/characters/erdno/back-nsfw.svg",
  39942. extra: 1202/1146,
  39943. bottom: 17/1219
  39944. }
  39945. },
  39946. frontHyper: {
  39947. height: math.unit(5 + 7/12, "feet"),
  39948. weight: math.unit(2, "tons"),
  39949. name: "Front (Hyper)",
  39950. image: {
  39951. source: "./media/characters/erdno/front-hyper.svg",
  39952. extra: 1298/1136,
  39953. bottom: 35/1333
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Normal",
  39960. height: math.unit(5 + 7/12, "feet"),
  39961. default: true
  39962. },
  39963. {
  39964. name: "Big",
  39965. height: math.unit(5.7, "meters")
  39966. },
  39967. {
  39968. name: "Macro",
  39969. height: math.unit(5.7, "kilometers")
  39970. },
  39971. {
  39972. name: "Megamacro",
  39973. height: math.unit(5.7, "earths")
  39974. },
  39975. ]
  39976. ))
  39977. characterMakers.push(() => makeCharacter(
  39978. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39979. {
  39980. front: {
  39981. height: math.unit(5 + 10/12, "feet"),
  39982. weight: math.unit(150, "lb"),
  39983. name: "Front",
  39984. image: {
  39985. source: "./media/characters/jamie/front.svg",
  39986. extra: 1908/1768,
  39987. bottom: 19/1927
  39988. }
  39989. },
  39990. },
  39991. [
  39992. {
  39993. name: "Minimum",
  39994. height: math.unit(2, "cm")
  39995. },
  39996. {
  39997. name: "Micro",
  39998. height: math.unit(3, "inches")
  39999. },
  40000. {
  40001. name: "Normal",
  40002. height: math.unit(5 + 10/12, "feet"),
  40003. default: true
  40004. },
  40005. {
  40006. name: "Macro",
  40007. height: math.unit(150, "feet")
  40008. },
  40009. {
  40010. name: "Megamacro",
  40011. height: math.unit(10000, "m")
  40012. },
  40013. ]
  40014. ))
  40015. characterMakers.push(() => makeCharacter(
  40016. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40017. {
  40018. front: {
  40019. height: math.unit(2, "meters"),
  40020. weight: math.unit(100, "kg"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/shiron/front.svg",
  40024. extra: 2103/1985,
  40025. bottom: 98/2201
  40026. }
  40027. },
  40028. back: {
  40029. height: math.unit(2, "meters"),
  40030. weight: math.unit(100, "kg"),
  40031. name: "Back",
  40032. image: {
  40033. source: "./media/characters/shiron/back.svg",
  40034. extra: 2110/2015,
  40035. bottom: 89/2199
  40036. }
  40037. },
  40038. hand: {
  40039. height: math.unit(0.96, "feet"),
  40040. name: "Hand",
  40041. image: {
  40042. source: "./media/characters/shiron/hand.svg"
  40043. }
  40044. },
  40045. foot: {
  40046. height: math.unit(1.464, "feet"),
  40047. name: "Foot",
  40048. image: {
  40049. source: "./media/characters/shiron/foot.svg"
  40050. }
  40051. },
  40052. },
  40053. [
  40054. {
  40055. name: "Normal",
  40056. height: math.unit(2, "meters")
  40057. },
  40058. {
  40059. name: "Macro",
  40060. height: math.unit(500, "meters"),
  40061. default: true
  40062. },
  40063. {
  40064. name: "Megamacro",
  40065. height: math.unit(20, "km")
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(6, "feet"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/sam/front.svg",
  40077. extra: 849/826,
  40078. bottom: 19/868
  40079. }
  40080. },
  40081. },
  40082. [
  40083. {
  40084. name: "Normal",
  40085. height: math.unit(6, "feet"),
  40086. default: true
  40087. },
  40088. ]
  40089. ))
  40090. characterMakers.push(() => makeCharacter(
  40091. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40092. {
  40093. front: {
  40094. height: math.unit(8 + 4/12, "feet"),
  40095. weight: math.unit(122, "kg"),
  40096. name: "Front",
  40097. image: {
  40098. source: "./media/characters/namori-kurogawa/front.svg",
  40099. extra: 1894/1576,
  40100. bottom: 34/1928
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Normal",
  40107. height: math.unit(8 + 4/12, "feet"),
  40108. default: true
  40109. },
  40110. ]
  40111. ))
  40112. characterMakers.push(() => makeCharacter(
  40113. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40114. {
  40115. front: {
  40116. height: math.unit(9, "feet"),
  40117. weight: math.unit(621, "lb"),
  40118. name: "Front",
  40119. image: {
  40120. source: "./media/characters/unmru/front.svg",
  40121. extra: 1853/1747,
  40122. bottom: 73/1926
  40123. }
  40124. },
  40125. side: {
  40126. height: math.unit(9, "feet"),
  40127. weight: math.unit(621, "lb"),
  40128. name: "Side",
  40129. image: {
  40130. source: "./media/characters/unmru/side.svg",
  40131. extra: 1781/1671,
  40132. bottom: 127/1908
  40133. }
  40134. },
  40135. back: {
  40136. height: math.unit(9, "feet"),
  40137. weight: math.unit(621, "lb"),
  40138. name: "Back",
  40139. image: {
  40140. source: "./media/characters/unmru/back.svg",
  40141. extra: 1894/1765,
  40142. bottom: 75/1969
  40143. }
  40144. },
  40145. dick: {
  40146. height: math.unit(3, "feet"),
  40147. weight: math.unit(35, "lb"),
  40148. name: "Dick",
  40149. image: {
  40150. source: "./media/characters/unmru/dick.svg"
  40151. }
  40152. },
  40153. },
  40154. [
  40155. {
  40156. name: "Normal",
  40157. height: math.unit(9, "feet")
  40158. },
  40159. {
  40160. name: "Natural",
  40161. height: math.unit(27, "feet"),
  40162. default: true
  40163. },
  40164. {
  40165. name: "Giant",
  40166. height: math.unit(90, "feet")
  40167. },
  40168. {
  40169. name: "Kaiju",
  40170. height: math.unit(270, "feet")
  40171. },
  40172. {
  40173. name: "Macro",
  40174. height: math.unit(900, "feet")
  40175. },
  40176. {
  40177. name: "Macro+",
  40178. height: math.unit(2700, "feet")
  40179. },
  40180. {
  40181. name: "Megamacro",
  40182. height: math.unit(9000, "feet")
  40183. },
  40184. {
  40185. name: "City-Crushing",
  40186. height: math.unit(27000, "feet")
  40187. },
  40188. {
  40189. name: "Mountain-Mashing",
  40190. height: math.unit(90000, "feet")
  40191. },
  40192. {
  40193. name: "Earth-Eclipsing",
  40194. height: math.unit(2.7e8, "feet")
  40195. },
  40196. {
  40197. name: "Sol-Swallowing",
  40198. height: math.unit(9e10, "feet")
  40199. },
  40200. {
  40201. name: "Majoris-Munching",
  40202. height: math.unit(2.7e13, "feet")
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40208. {
  40209. front: {
  40210. height: math.unit(1, "inch"),
  40211. name: "Front",
  40212. image: {
  40213. source: "./media/characters/squeaks-mouse/front.svg",
  40214. extra: 352/308,
  40215. bottom: 25/377
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Micro",
  40222. height: math.unit(1, "inch"),
  40223. default: true
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40229. {
  40230. side: {
  40231. height: math.unit(35, "feet"),
  40232. name: "Side",
  40233. image: {
  40234. source: "./media/characters/sayko/side.svg",
  40235. extra: 1697/1021,
  40236. bottom: 82/1779
  40237. }
  40238. },
  40239. head: {
  40240. height: math.unit(16, "feet"),
  40241. name: "Head",
  40242. image: {
  40243. source: "./media/characters/sayko/head.svg"
  40244. }
  40245. },
  40246. forepaw: {
  40247. height: math.unit(7.85, "feet"),
  40248. name: "Forepaw",
  40249. image: {
  40250. source: "./media/characters/sayko/forepaw.svg"
  40251. }
  40252. },
  40253. hindpaw: {
  40254. height: math.unit(8.8, "feet"),
  40255. name: "Hindpaw",
  40256. image: {
  40257. source: "./media/characters/sayko/hindpaw.svg"
  40258. }
  40259. },
  40260. },
  40261. [
  40262. {
  40263. name: "Normal",
  40264. height: math.unit(35, "feet"),
  40265. default: true
  40266. },
  40267. {
  40268. name: "Colossus",
  40269. height: math.unit(100, "meters")
  40270. },
  40271. {
  40272. name: "\"Small\" Deity",
  40273. height: math.unit(1, "km")
  40274. },
  40275. {
  40276. name: "\"Large\" Deity",
  40277. height: math.unit(15, "km")
  40278. },
  40279. ]
  40280. ))
  40281. characterMakers.push(() => makeCharacter(
  40282. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40283. {
  40284. front: {
  40285. height: math.unit(6, "feet"),
  40286. weight: math.unit(250, "lb"),
  40287. name: "Front",
  40288. image: {
  40289. source: "./media/characters/mukiro/front.svg",
  40290. extra: 1368/1310,
  40291. bottom: 34/1402
  40292. }
  40293. },
  40294. },
  40295. [
  40296. {
  40297. name: "Normal",
  40298. height: math.unit(6, "feet"),
  40299. default: true
  40300. },
  40301. ]
  40302. ))
  40303. characterMakers.push(() => makeCharacter(
  40304. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40305. {
  40306. front: {
  40307. height: math.unit(12 + 4/12, "feet"),
  40308. name: "Front",
  40309. image: {
  40310. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40311. extra: 1346/1311,
  40312. bottom: 65/1411
  40313. }
  40314. },
  40315. },
  40316. [
  40317. {
  40318. name: "Base",
  40319. height: math.unit(12 + 4/12, "feet"),
  40320. default: true
  40321. },
  40322. {
  40323. name: "Macro",
  40324. height: math.unit(150, "feet")
  40325. },
  40326. {
  40327. name: "Mega",
  40328. height: math.unit(2, "miles")
  40329. },
  40330. {
  40331. name: "Demi God",
  40332. height: math.unit(4, "AU")
  40333. },
  40334. {
  40335. name: "God Size",
  40336. height: math.unit(1, "universe")
  40337. },
  40338. ]
  40339. ))
  40340. characterMakers.push(() => makeCharacter(
  40341. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40342. {
  40343. front: {
  40344. height: math.unit(3 + 3/12, "feet"),
  40345. weight: math.unit(88, "lb"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/trey/front.svg",
  40349. extra: 1815/1509,
  40350. bottom: 60/1875
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Normal",
  40357. height: math.unit(3 + 3/12, "feet"),
  40358. default: true
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40364. {
  40365. front: {
  40366. height: math.unit(4, "meters"),
  40367. name: "Front",
  40368. image: {
  40369. source: "./media/characters/adelonda/front.svg",
  40370. extra: 1077/982,
  40371. bottom: 39/1116
  40372. }
  40373. },
  40374. back: {
  40375. height: math.unit(4, "meters"),
  40376. name: "Back",
  40377. image: {
  40378. source: "./media/characters/adelonda/back.svg",
  40379. extra: 1105/1003,
  40380. bottom: 25/1130
  40381. }
  40382. },
  40383. feral: {
  40384. height: math.unit(40/1.5, "meters"),
  40385. name: "Feral",
  40386. image: {
  40387. source: "./media/characters/adelonda/feral.svg",
  40388. extra: 597/271,
  40389. bottom: 387/984
  40390. }
  40391. },
  40392. },
  40393. [
  40394. {
  40395. name: "Normal",
  40396. height: math.unit(4, "meters"),
  40397. default: true
  40398. },
  40399. ]
  40400. ))
  40401. characterMakers.push(() => makeCharacter(
  40402. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40403. {
  40404. front: {
  40405. height: math.unit(8 + 4/12, "feet"),
  40406. weight: math.unit(670, "lb"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/acadiel/front.svg",
  40410. extra: 1901/1595,
  40411. bottom: 142/2043
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Normal",
  40418. height: math.unit(8 + 4/12, "feet"),
  40419. default: true
  40420. },
  40421. {
  40422. name: "Macro",
  40423. height: math.unit(200, "feet")
  40424. },
  40425. ]
  40426. ))
  40427. characterMakers.push(() => makeCharacter(
  40428. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40429. {
  40430. front: {
  40431. height: math.unit(6 + 2/12, "feet"),
  40432. weight: math.unit(185, "lb"),
  40433. name: "Front",
  40434. image: {
  40435. source: "./media/characters/kayne-ein/front.svg",
  40436. extra: 1780/1560,
  40437. bottom: 81/1861
  40438. }
  40439. },
  40440. },
  40441. [
  40442. {
  40443. name: "Normal",
  40444. height: math.unit(6 + 2/12, "feet"),
  40445. default: true
  40446. },
  40447. {
  40448. name: "Transformation Stage",
  40449. height: math.unit(15, "feet")
  40450. },
  40451. {
  40452. name: "Macro",
  40453. height: math.unit(150, "feet")
  40454. },
  40455. {
  40456. name: "Earth's Shadow",
  40457. height: math.unit(6200, "miles")
  40458. },
  40459. {
  40460. name: "Universal Demon",
  40461. height: math.unit(28e9, "parsecs")
  40462. },
  40463. {
  40464. name: "Multiverse God",
  40465. height: math.unit(3, "multiverses")
  40466. },
  40467. ]
  40468. ))
  40469. characterMakers.push(() => makeCharacter(
  40470. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40471. {
  40472. front: {
  40473. height: math.unit(5 + 5/12, "feet"),
  40474. name: "Front",
  40475. image: {
  40476. source: "./media/characters/fawn/front.svg",
  40477. extra: 1873/1731,
  40478. bottom: 95/1968
  40479. }
  40480. },
  40481. back: {
  40482. height: math.unit(5 + 5/12, "feet"),
  40483. name: "Back",
  40484. image: {
  40485. source: "./media/characters/fawn/back.svg",
  40486. extra: 1813/1700,
  40487. bottom: 14/1827
  40488. }
  40489. },
  40490. hoof: {
  40491. height: math.unit(1.45, "feet"),
  40492. name: "Hoof",
  40493. image: {
  40494. source: "./media/characters/fawn/hoof.svg"
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Normal",
  40501. height: math.unit(5 + 5/12, "feet"),
  40502. default: true
  40503. },
  40504. ]
  40505. ))
  40506. characterMakers.push(() => makeCharacter(
  40507. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40508. {
  40509. front: {
  40510. height: math.unit(2 + 5/12, "feet"),
  40511. name: "Front",
  40512. image: {
  40513. source: "./media/characters/orion/front.svg",
  40514. extra: 1366/1304,
  40515. bottom: 43/1409
  40516. }
  40517. },
  40518. paw: {
  40519. height: math.unit(0.52, "feet"),
  40520. name: "Paw",
  40521. image: {
  40522. source: "./media/characters/orion/paw.svg"
  40523. }
  40524. },
  40525. },
  40526. [
  40527. {
  40528. name: "Normal",
  40529. height: math.unit(2 + 5/12, "feet"),
  40530. default: true
  40531. },
  40532. ]
  40533. ))
  40534. characterMakers.push(() => makeCharacter(
  40535. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40536. {
  40537. front: {
  40538. height: math.unit(5 + 10/12, "feet"),
  40539. name: "Front",
  40540. image: {
  40541. source: "./media/characters/vera/front.svg",
  40542. extra: 1680/1575,
  40543. bottom: 49/1729
  40544. }
  40545. },
  40546. back: {
  40547. height: math.unit(5 + 10/12, "feet"),
  40548. name: "Back",
  40549. image: {
  40550. source: "./media/characters/vera/back.svg",
  40551. extra: 1700/1588,
  40552. bottom: 18/1718
  40553. }
  40554. },
  40555. arcanine: {
  40556. height: math.unit(6 + 8/12, "feet"),
  40557. name: "Arcanine",
  40558. image: {
  40559. source: "./media/characters/vera/arcanine.svg",
  40560. extra: 1590/1511,
  40561. bottom: 71/1661
  40562. }
  40563. },
  40564. maw: {
  40565. height: math.unit(0.82, "feet"),
  40566. name: "Maw",
  40567. image: {
  40568. source: "./media/characters/vera/maw.svg"
  40569. }
  40570. },
  40571. mawArcanine: {
  40572. height: math.unit(0.97, "feet"),
  40573. name: "Maw (Arcanine)",
  40574. image: {
  40575. source: "./media/characters/vera/maw-arcanine.svg"
  40576. }
  40577. },
  40578. paw: {
  40579. height: math.unit(0.75, "feet"),
  40580. name: "Paw",
  40581. image: {
  40582. source: "./media/characters/vera/paw.svg"
  40583. }
  40584. },
  40585. pawprint: {
  40586. height: math.unit(0.52, "feet"),
  40587. name: "Pawprint",
  40588. image: {
  40589. source: "./media/characters/vera/pawprint.svg"
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(5 + 10/12, "feet"),
  40597. default: true
  40598. },
  40599. {
  40600. name: "Macro",
  40601. height: math.unit(75, "feet")
  40602. },
  40603. ]
  40604. ))
  40605. characterMakers.push(() => makeCharacter(
  40606. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40607. {
  40608. front: {
  40609. height: math.unit(4, "feet"),
  40610. weight: math.unit(40, "lb"),
  40611. name: "Front",
  40612. image: {
  40613. source: "./media/characters/orvan-rabbit/front.svg",
  40614. extra: 1896/1642,
  40615. bottom: 29/1925
  40616. }
  40617. },
  40618. },
  40619. [
  40620. {
  40621. name: "Normal",
  40622. height: math.unit(4, "feet"),
  40623. default: true
  40624. },
  40625. ]
  40626. ))
  40627. characterMakers.push(() => makeCharacter(
  40628. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40629. {
  40630. front: {
  40631. height: math.unit(6, "feet"),
  40632. weight: math.unit(168, "lb"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/lisa/front.svg",
  40636. extra: 2065/1867,
  40637. bottom: 46/2111
  40638. }
  40639. },
  40640. back: {
  40641. height: math.unit(6, "feet"),
  40642. weight: math.unit(168, "lb"),
  40643. name: "Back",
  40644. image: {
  40645. source: "./media/characters/lisa/back.svg",
  40646. extra: 1982/1838,
  40647. bottom: 29/2011
  40648. }
  40649. },
  40650. maw: {
  40651. height: math.unit(0.81, "feet"),
  40652. name: "Maw",
  40653. image: {
  40654. source: "./media/characters/lisa/maw.svg"
  40655. }
  40656. },
  40657. paw: {
  40658. height: math.unit(0.9, "feet"),
  40659. name: "Paw",
  40660. image: {
  40661. source: "./media/characters/lisa/paw.svg"
  40662. }
  40663. },
  40664. caribousune: {
  40665. height: math.unit(7 + 2/12, "feet"),
  40666. weight: math.unit(268, "lb"),
  40667. name: "Caribousune",
  40668. image: {
  40669. source: "./media/characters/lisa/caribousune.svg",
  40670. extra: 1843/1633,
  40671. bottom: 29/1872
  40672. }
  40673. },
  40674. frontCaribousune: {
  40675. height: math.unit(7 + 2/12, "feet"),
  40676. weight: math.unit(268, "lb"),
  40677. name: "Front (Caribousune)",
  40678. image: {
  40679. source: "./media/characters/lisa/front-caribousune.svg",
  40680. extra: 1818/1638,
  40681. bottom: 52/1870
  40682. }
  40683. },
  40684. sideCaribousune: {
  40685. height: math.unit(7 + 2/12, "feet"),
  40686. weight: math.unit(268, "lb"),
  40687. name: "Side (Caribousune)",
  40688. image: {
  40689. source: "./media/characters/lisa/side-caribousune.svg",
  40690. extra: 1851/1635,
  40691. bottom: 16/1867
  40692. }
  40693. },
  40694. backCaribousune: {
  40695. height: math.unit(7 + 2/12, "feet"),
  40696. weight: math.unit(268, "lb"),
  40697. name: "Back (Caribousune)",
  40698. image: {
  40699. source: "./media/characters/lisa/back-caribousune.svg",
  40700. extra: 1801/1604,
  40701. bottom: 44/1845
  40702. }
  40703. },
  40704. caribou: {
  40705. height: math.unit(7 + 2/12, "feet"),
  40706. weight: math.unit(268, "lb"),
  40707. name: "Caribou",
  40708. image: {
  40709. source: "./media/characters/lisa/caribou.svg",
  40710. extra: 1843/1633,
  40711. bottom: 29/1872
  40712. }
  40713. },
  40714. frontCaribou: {
  40715. height: math.unit(7 + 2/12, "feet"),
  40716. weight: math.unit(268, "lb"),
  40717. name: "Front (Caribou)",
  40718. image: {
  40719. source: "./media/characters/lisa/front-caribou.svg",
  40720. extra: 1818/1638,
  40721. bottom: 52/1870
  40722. }
  40723. },
  40724. sideCaribou: {
  40725. height: math.unit(7 + 2/12, "feet"),
  40726. weight: math.unit(268, "lb"),
  40727. name: "Side (Caribou)",
  40728. image: {
  40729. source: "./media/characters/lisa/side-caribou.svg",
  40730. extra: 1851/1635,
  40731. bottom: 16/1867
  40732. }
  40733. },
  40734. backCaribou: {
  40735. height: math.unit(7 + 2/12, "feet"),
  40736. weight: math.unit(268, "lb"),
  40737. name: "Back (Caribou)",
  40738. image: {
  40739. source: "./media/characters/lisa/back-caribou.svg",
  40740. extra: 1801/1604,
  40741. bottom: 44/1845
  40742. }
  40743. },
  40744. mawCaribou: {
  40745. height: math.unit(1.45, "feet"),
  40746. name: "Maw (Caribou)",
  40747. image: {
  40748. source: "./media/characters/lisa/maw-caribou.svg"
  40749. }
  40750. },
  40751. mawCaribousune: {
  40752. height: math.unit(1.45, "feet"),
  40753. name: "Maw (Caribousune)",
  40754. image: {
  40755. source: "./media/characters/lisa/maw-caribousune.svg"
  40756. }
  40757. },
  40758. pawCaribousune: {
  40759. height: math.unit(1.61, "feet"),
  40760. name: "Paw (Caribou)",
  40761. image: {
  40762. source: "./media/characters/lisa/paw-caribousune.svg"
  40763. }
  40764. },
  40765. },
  40766. [
  40767. {
  40768. name: "Normal",
  40769. height: math.unit(6, "feet")
  40770. },
  40771. {
  40772. name: "God Size",
  40773. height: math.unit(72, "feet"),
  40774. default: true
  40775. },
  40776. {
  40777. name: "Towering",
  40778. height: math.unit(288, "feet")
  40779. },
  40780. {
  40781. name: "City Size",
  40782. height: math.unit(48384, "feet")
  40783. },
  40784. {
  40785. name: "Continental",
  40786. height: math.unit(4200, "miles")
  40787. },
  40788. {
  40789. name: "Planet Eater",
  40790. height: math.unit(42, "earths")
  40791. },
  40792. {
  40793. name: "Star Swallower",
  40794. height: math.unit(42, "solarradii")
  40795. },
  40796. {
  40797. name: "System Swallower",
  40798. height: math.unit(84000, "AU")
  40799. },
  40800. {
  40801. name: "Galaxy Gobbler",
  40802. height: math.unit(42, "galaxies")
  40803. },
  40804. {
  40805. name: "Universe Devourer",
  40806. height: math.unit(42, "universes")
  40807. },
  40808. {
  40809. name: "Multiverse Muncher",
  40810. height: math.unit(42, "multiverses")
  40811. },
  40812. ]
  40813. ))
  40814. characterMakers.push(() => makeCharacter(
  40815. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40816. {
  40817. front: {
  40818. height: math.unit(36, "feet"),
  40819. name: "Front",
  40820. image: {
  40821. source: "./media/characters/shadow-rat/front.svg",
  40822. extra: 1845/1758,
  40823. bottom: 83/1928
  40824. }
  40825. },
  40826. },
  40827. [
  40828. {
  40829. name: "Macro",
  40830. height: math.unit(36, "feet"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40837. {
  40838. side: {
  40839. height: math.unit(8, "feet"),
  40840. weight: math.unit(2630, "lb"),
  40841. name: "Side",
  40842. image: {
  40843. source: "./media/characters/torallia/side.svg",
  40844. extra: 2164/2021,
  40845. bottom: 371/2535
  40846. }
  40847. },
  40848. },
  40849. [
  40850. {
  40851. name: "Mortal Interaction",
  40852. height: math.unit(8, "feet")
  40853. },
  40854. {
  40855. name: "Natural",
  40856. height: math.unit(24, "feet"),
  40857. default: true
  40858. },
  40859. {
  40860. name: "Giant",
  40861. height: math.unit(80, "feet")
  40862. },
  40863. {
  40864. name: "Kaiju",
  40865. height: math.unit(240, "feet")
  40866. },
  40867. {
  40868. name: "Macro",
  40869. height: math.unit(800, "feet")
  40870. },
  40871. {
  40872. name: "Macro+",
  40873. height: math.unit(2400, "feet")
  40874. },
  40875. {
  40876. name: "Macro++",
  40877. height: math.unit(8000, "feet")
  40878. },
  40879. {
  40880. name: "City-Crushing",
  40881. height: math.unit(24000, "feet")
  40882. },
  40883. {
  40884. name: "Mountain-Mashing",
  40885. height: math.unit(80000, "feet")
  40886. },
  40887. {
  40888. name: "District Demolisher",
  40889. height: math.unit(240000, "feet")
  40890. },
  40891. {
  40892. name: "Tri-County Terror",
  40893. height: math.unit(800000, "feet")
  40894. },
  40895. {
  40896. name: "State Smasher",
  40897. height: math.unit(2.4e6, "feet")
  40898. },
  40899. {
  40900. name: "Nation Nemesis",
  40901. height: math.unit(8e6, "feet")
  40902. },
  40903. {
  40904. name: "Continent Cracker",
  40905. height: math.unit(2.4e7, "feet")
  40906. },
  40907. {
  40908. name: "Planet-Pillaging",
  40909. height: math.unit(8e7, "feet")
  40910. },
  40911. {
  40912. name: "Earth-Eclipsing",
  40913. height: math.unit(2.4e8, "feet")
  40914. },
  40915. {
  40916. name: "Jovian-Jostling",
  40917. height: math.unit(8e8, "feet")
  40918. },
  40919. {
  40920. name: "Gas Giant Gulper",
  40921. height: math.unit(2.4e9, "feet")
  40922. },
  40923. {
  40924. name: "Astral Annihilator",
  40925. height: math.unit(8e9, "feet")
  40926. },
  40927. {
  40928. name: "Celestial Conqueror",
  40929. height: math.unit(2.4e10, "feet")
  40930. },
  40931. {
  40932. name: "Sol-Swallowing",
  40933. height: math.unit(8e10, "feet")
  40934. },
  40935. {
  40936. name: "Hunter of the Heavens",
  40937. height: math.unit(2.4e13, "feet")
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(6 + 8/12, "feet"),
  40946. weight: math.unit(250, "kilograms"),
  40947. volume: math.unit(28, "liters"),
  40948. name: "Front",
  40949. image: {
  40950. source: "./media/characters/rebecca-pawlson/front.svg",
  40951. extra: 1737/1596,
  40952. bottom: 107/1844
  40953. }
  40954. },
  40955. back: {
  40956. height: math.unit(6 + 8/12, "feet"),
  40957. weight: math.unit(250, "kilograms"),
  40958. volume: math.unit(28, "liters"),
  40959. name: "Back",
  40960. image: {
  40961. source: "./media/characters/rebecca-pawlson/back.svg",
  40962. extra: 1702/1523,
  40963. bottom: 86/1788
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Normal",
  40970. height: math.unit(6 + 8/12, "feet")
  40971. },
  40972. {
  40973. name: "Mini Macro",
  40974. height: math.unit(10, "feet"),
  40975. default: true
  40976. },
  40977. {
  40978. name: "Macro",
  40979. height: math.unit(100, "feet")
  40980. },
  40981. {
  40982. name: "Mega Macro",
  40983. height: math.unit(2500, "feet")
  40984. },
  40985. {
  40986. name: "Giga Macro",
  40987. height: math.unit(50, "miles")
  40988. },
  40989. ]
  40990. ))
  40991. characterMakers.push(() => makeCharacter(
  40992. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40993. {
  40994. front: {
  40995. height: math.unit(7 + 6/12, "feet"),
  40996. weight: math.unit(600, "lb"),
  40997. name: "Front",
  40998. image: {
  40999. source: "./media/characters/moxie-nova/front.svg",
  41000. extra: 1734/1652,
  41001. bottom: 41/1775
  41002. }
  41003. },
  41004. },
  41005. [
  41006. {
  41007. name: "Normal",
  41008. height: math.unit(7 + 6/12, "feet"),
  41009. default: true
  41010. },
  41011. ]
  41012. ))
  41013. characterMakers.push(() => makeCharacter(
  41014. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41015. {
  41016. goat: {
  41017. height: math.unit(4, "feet"),
  41018. weight: math.unit(180, "lb"),
  41019. name: "Goat",
  41020. image: {
  41021. source: "./media/characters/tiffany/goat.svg",
  41022. extra: 1845/1595,
  41023. bottom: 106/1951
  41024. }
  41025. },
  41026. front: {
  41027. height: math.unit(5, "feet"),
  41028. weight: math.unit(150, "lb"),
  41029. name: "Foxcoon",
  41030. image: {
  41031. source: "./media/characters/tiffany/foxcoon.svg",
  41032. extra: 1941/1845,
  41033. bottom: 58/1999
  41034. }
  41035. },
  41036. },
  41037. [
  41038. {
  41039. name: "Normal",
  41040. height: math.unit(5, "feet"),
  41041. default: true
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41047. {
  41048. front: {
  41049. height: math.unit(8, "feet"),
  41050. weight: math.unit(300, "lb"),
  41051. name: "Front",
  41052. image: {
  41053. source: "./media/characters/raxinath/front.svg",
  41054. extra: 1407/1309,
  41055. bottom: 39/1446
  41056. }
  41057. },
  41058. back: {
  41059. height: math.unit(8, "feet"),
  41060. weight: math.unit(300, "lb"),
  41061. name: "Back",
  41062. image: {
  41063. source: "./media/characters/raxinath/back.svg",
  41064. extra: 1405/1315,
  41065. bottom: 9/1414
  41066. }
  41067. },
  41068. },
  41069. [
  41070. {
  41071. name: "Speck",
  41072. height: math.unit(0.5, "nm")
  41073. },
  41074. {
  41075. name: "Micro",
  41076. height: math.unit(3, "inches")
  41077. },
  41078. {
  41079. name: "Kobold",
  41080. height: math.unit(3, "feet")
  41081. },
  41082. {
  41083. name: "Normal",
  41084. height: math.unit(8, "feet"),
  41085. default: true
  41086. },
  41087. {
  41088. name: "Giant",
  41089. height: math.unit(50, "feet")
  41090. },
  41091. {
  41092. name: "Macro",
  41093. height: math.unit(1000, "feet")
  41094. },
  41095. {
  41096. name: "Megamacro",
  41097. height: math.unit(1, "mile")
  41098. },
  41099. ]
  41100. ))
  41101. characterMakers.push(() => makeCharacter(
  41102. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41103. {
  41104. front: {
  41105. height: math.unit(10, "feet"),
  41106. weight: math.unit(1442, "lb"),
  41107. name: "Front",
  41108. image: {
  41109. source: "./media/characters/mal-dragon/front.svg",
  41110. extra: 1515/1444,
  41111. bottom: 113/1628
  41112. }
  41113. },
  41114. back: {
  41115. height: math.unit(10, "feet"),
  41116. weight: math.unit(1442, "lb"),
  41117. name: "Back",
  41118. image: {
  41119. source: "./media/characters/mal-dragon/back.svg",
  41120. extra: 1527/1434,
  41121. bottom: 25/1552
  41122. }
  41123. },
  41124. },
  41125. [
  41126. {
  41127. name: "Mortal Interaction",
  41128. height: math.unit(10, "feet"),
  41129. default: true
  41130. },
  41131. {
  41132. name: "Large",
  41133. height: math.unit(30, "feet")
  41134. },
  41135. {
  41136. name: "Kaiju",
  41137. height: math.unit(300, "feet")
  41138. },
  41139. {
  41140. name: "Megamacro",
  41141. height: math.unit(10000, "feet")
  41142. },
  41143. {
  41144. name: "Continent Cracker",
  41145. height: math.unit(30000000, "feet")
  41146. },
  41147. {
  41148. name: "Sol-Swallowing",
  41149. height: math.unit(1e11, "feet")
  41150. },
  41151. {
  41152. name: "Light Universal",
  41153. height: math.unit(5, "universes")
  41154. },
  41155. {
  41156. name: "Universe Atoms",
  41157. height: math.unit(1.829e9, "universes")
  41158. },
  41159. {
  41160. name: "Light Multiversal",
  41161. height: math.unit(5, "multiverses")
  41162. },
  41163. {
  41164. name: "Multiverse Atoms",
  41165. height: math.unit(1.829e9, "multiverses")
  41166. },
  41167. {
  41168. name: "Fabric of Time",
  41169. height: math.unit(1e262, "multiverses")
  41170. },
  41171. ]
  41172. ))
  41173. characterMakers.push(() => makeCharacter(
  41174. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41175. {
  41176. front: {
  41177. height: math.unit(9, "feet"),
  41178. weight: math.unit(1050, "lb"),
  41179. name: "Front",
  41180. image: {
  41181. source: "./media/characters/tabitha/front.svg",
  41182. extra: 2083/1994,
  41183. bottom: 68/2151
  41184. }
  41185. },
  41186. },
  41187. [
  41188. {
  41189. name: "Baseline",
  41190. height: math.unit(9, "feet"),
  41191. default: true
  41192. },
  41193. {
  41194. name: "Giant",
  41195. height: math.unit(90, "feet")
  41196. },
  41197. {
  41198. name: "Macro",
  41199. height: math.unit(900, "feet")
  41200. },
  41201. {
  41202. name: "Megamacro",
  41203. height: math.unit(9000, "feet")
  41204. },
  41205. {
  41206. name: "City-Crushing",
  41207. height: math.unit(27000, "feet")
  41208. },
  41209. {
  41210. name: "Mountain-Mashing",
  41211. height: math.unit(90000, "feet")
  41212. },
  41213. {
  41214. name: "Nation Nemesis",
  41215. height: math.unit(9e6, "feet")
  41216. },
  41217. {
  41218. name: "Continent Cracker",
  41219. height: math.unit(27e6, "feet")
  41220. },
  41221. {
  41222. name: "Earth-Eclipsing",
  41223. height: math.unit(2.7e8, "feet")
  41224. },
  41225. {
  41226. name: "Gas Giant Gulper",
  41227. height: math.unit(2.7e9, "feet")
  41228. },
  41229. {
  41230. name: "Sol-Swallowing",
  41231. height: math.unit(9e10, "feet")
  41232. },
  41233. {
  41234. name: "Galaxy Gulper",
  41235. height: math.unit(9, "galaxies")
  41236. },
  41237. {
  41238. name: "Cosmos Churner",
  41239. height: math.unit(9, "universes")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41245. {
  41246. front: {
  41247. height: math.unit(160, "cm"),
  41248. weight: math.unit(55, "kg"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/tow/front.svg",
  41252. extra: 1751/1722,
  41253. bottom: 74/1825
  41254. }
  41255. },
  41256. },
  41257. [
  41258. {
  41259. name: "Norm",
  41260. height: math.unit(160, "cm")
  41261. },
  41262. {
  41263. name: "Casual",
  41264. height: math.unit(3200, "m"),
  41265. default: true
  41266. },
  41267. {
  41268. name: "Show-Off",
  41269. height: math.unit(160, "km")
  41270. },
  41271. ]
  41272. ))
  41273. characterMakers.push(() => makeCharacter(
  41274. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41275. {
  41276. front: {
  41277. height: math.unit(7 + 11/12, "feet"),
  41278. weight: math.unit(342.8, "lb"),
  41279. name: "Front",
  41280. image: {
  41281. source: "./media/characters/vivian-orca-dragon/front.svg",
  41282. extra: 1890/1865,
  41283. bottom: 28/1918
  41284. }
  41285. },
  41286. },
  41287. [
  41288. {
  41289. name: "Micro",
  41290. height: math.unit(5, "inches")
  41291. },
  41292. {
  41293. name: "Normal",
  41294. height: math.unit(7 + 11/12, "feet"),
  41295. default: true
  41296. },
  41297. {
  41298. name: "Macro",
  41299. height: math.unit(395 + 7/12, "feet")
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41305. {
  41306. side: {
  41307. height: math.unit(10, "feet"),
  41308. weight: math.unit(1442, "lb"),
  41309. name: "Side",
  41310. image: {
  41311. source: "./media/characters/lotherakon/side.svg",
  41312. extra: 1604/1497,
  41313. bottom: 89/1693
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Mortal Interaction",
  41320. height: math.unit(10, "feet")
  41321. },
  41322. {
  41323. name: "Large",
  41324. height: math.unit(30, "feet"),
  41325. default: true
  41326. },
  41327. {
  41328. name: "Giant",
  41329. height: math.unit(100, "feet")
  41330. },
  41331. {
  41332. name: "Kaiju",
  41333. height: math.unit(300, "feet")
  41334. },
  41335. {
  41336. name: "Macro",
  41337. height: math.unit(1000, "feet")
  41338. },
  41339. {
  41340. name: "Macro+",
  41341. height: math.unit(3000, "feet")
  41342. },
  41343. {
  41344. name: "Megamacro",
  41345. height: math.unit(10000, "feet")
  41346. },
  41347. {
  41348. name: "City-Crushing",
  41349. height: math.unit(30000, "feet")
  41350. },
  41351. {
  41352. name: "Continent Cracker",
  41353. height: math.unit(30e6, "feet")
  41354. },
  41355. {
  41356. name: "Earth Eclipsing",
  41357. height: math.unit(3e8, "feet")
  41358. },
  41359. {
  41360. name: "Gas Giant Gulper",
  41361. height: math.unit(3e9, "feet")
  41362. },
  41363. {
  41364. name: "Sol-Swallowing",
  41365. height: math.unit(1e11, "feet")
  41366. },
  41367. {
  41368. name: "System Swallower",
  41369. height: math.unit(3e14, "feet")
  41370. },
  41371. {
  41372. name: "Galaxy Gulper",
  41373. height: math.unit(10, "galaxies")
  41374. },
  41375. {
  41376. name: "Light Universal",
  41377. height: math.unit(5, "universes")
  41378. },
  41379. {
  41380. name: "Universe Palm",
  41381. height: math.unit(20, "universes")
  41382. },
  41383. {
  41384. name: "Light Multiversal",
  41385. height: math.unit(5, "multiverses")
  41386. },
  41387. {
  41388. name: "Multiverse Palm",
  41389. height: math.unit(20, "multiverses")
  41390. },
  41391. {
  41392. name: "Inferno Incarnate",
  41393. height: math.unit(1e7, "multiverses")
  41394. },
  41395. ]
  41396. ))
  41397. characterMakers.push(() => makeCharacter(
  41398. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41399. {
  41400. front: {
  41401. height: math.unit(8, "feet"),
  41402. weight: math.unit(1200, "lb"),
  41403. name: "Front",
  41404. image: {
  41405. source: "./media/characters/malithee/front.svg",
  41406. extra: 1675/1640,
  41407. bottom: 162/1837
  41408. }
  41409. },
  41410. },
  41411. [
  41412. {
  41413. name: "Mortal Interaction",
  41414. height: math.unit(8, "feet"),
  41415. default: true
  41416. },
  41417. {
  41418. name: "Large",
  41419. height: math.unit(24, "feet")
  41420. },
  41421. {
  41422. name: "Kaiju",
  41423. height: math.unit(240, "feet")
  41424. },
  41425. {
  41426. name: "Megamacro",
  41427. height: math.unit(8000, "feet")
  41428. },
  41429. {
  41430. name: "Continent Cracker",
  41431. height: math.unit(24e6, "feet")
  41432. },
  41433. {
  41434. name: "Earth-Eclipsing",
  41435. height: math.unit(2.4e8, "feet")
  41436. },
  41437. {
  41438. name: "Sol-Swallowing",
  41439. height: math.unit(8e10, "feet")
  41440. },
  41441. {
  41442. name: "Galaxy Gulper",
  41443. height: math.unit(8, "galaxies")
  41444. },
  41445. {
  41446. name: "Light Universal",
  41447. height: math.unit(4, "universes")
  41448. },
  41449. {
  41450. name: "Universe Atoms",
  41451. height: math.unit(1.829e9, "universes")
  41452. },
  41453. {
  41454. name: "Light Multiversal",
  41455. height: math.unit(4, "multiverses")
  41456. },
  41457. {
  41458. name: "Multiverse Atoms",
  41459. height: math.unit(1.829e9, "multiverses")
  41460. },
  41461. {
  41462. name: "Nigh-Omnipresence",
  41463. height: math.unit(8e261, "multiverses")
  41464. },
  41465. ]
  41466. ))
  41467. characterMakers.push(() => makeCharacter(
  41468. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41469. {
  41470. front: {
  41471. height: math.unit(10, "feet"),
  41472. weight: math.unit(1500, "lb"),
  41473. name: "Front",
  41474. image: {
  41475. source: "./media/characters/miles-thestia/front.svg",
  41476. extra: 1812/1727,
  41477. bottom: 86/1898
  41478. }
  41479. },
  41480. back: {
  41481. height: math.unit(10, "feet"),
  41482. weight: math.unit(1500, "lb"),
  41483. name: "Back",
  41484. image: {
  41485. source: "./media/characters/miles-thestia/back.svg",
  41486. extra: 1799/1690,
  41487. bottom: 47/1846
  41488. }
  41489. },
  41490. frontNsfw: {
  41491. height: math.unit(10, "feet"),
  41492. weight: math.unit(1500, "lb"),
  41493. name: "Front (NSFW)",
  41494. image: {
  41495. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41496. extra: 1812/1727,
  41497. bottom: 86/1898
  41498. }
  41499. },
  41500. },
  41501. [
  41502. {
  41503. name: "Mini-Macro",
  41504. height: math.unit(10, "feet"),
  41505. default: true
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41511. {
  41512. front: {
  41513. height: math.unit(25, "feet"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/titan-s-wulf/front.svg",
  41517. extra: 1560/1484,
  41518. bottom: 76/1636
  41519. }
  41520. },
  41521. },
  41522. [
  41523. {
  41524. name: "Smallest",
  41525. height: math.unit(25, "feet"),
  41526. default: true
  41527. },
  41528. {
  41529. name: "Normal",
  41530. height: math.unit(200, "feet")
  41531. },
  41532. {
  41533. name: "Macro",
  41534. height: math.unit(200000, "feet")
  41535. },
  41536. {
  41537. name: "Multiversal Original",
  41538. height: math.unit(10000, "multiverses")
  41539. },
  41540. ]
  41541. ))
  41542. characterMakers.push(() => makeCharacter(
  41543. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41544. {
  41545. front: {
  41546. height: math.unit(8, "feet"),
  41547. weight: math.unit(553, "lb"),
  41548. name: "Front",
  41549. image: {
  41550. source: "./media/characters/tawendeh/front.svg",
  41551. extra: 2365/2268,
  41552. bottom: 83/2448
  41553. }
  41554. },
  41555. frontClothed: {
  41556. height: math.unit(8, "feet"),
  41557. weight: math.unit(553, "lb"),
  41558. name: "Front (Clothed)",
  41559. image: {
  41560. source: "./media/characters/tawendeh/front-clothed.svg",
  41561. extra: 2365/2268,
  41562. bottom: 83/2448
  41563. }
  41564. },
  41565. back: {
  41566. height: math.unit(8, "feet"),
  41567. weight: math.unit(553, "lb"),
  41568. name: "Back",
  41569. image: {
  41570. source: "./media/characters/tawendeh/back.svg",
  41571. extra: 2397/2294,
  41572. bottom: 42/2439
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Mortal Interaction",
  41579. height: math.unit(8, "feet"),
  41580. default: true
  41581. },
  41582. {
  41583. name: "Giant",
  41584. height: math.unit(80, "feet")
  41585. },
  41586. {
  41587. name: "Macro",
  41588. height: math.unit(800, "feet")
  41589. },
  41590. {
  41591. name: "Megamacro",
  41592. height: math.unit(8000, "feet")
  41593. },
  41594. {
  41595. name: "City-Crushing",
  41596. height: math.unit(24000, "feet")
  41597. },
  41598. {
  41599. name: "Mountain-Mashing",
  41600. height: math.unit(80000, "feet")
  41601. },
  41602. {
  41603. name: "Nation Nemesis",
  41604. height: math.unit(8e6, "feet")
  41605. },
  41606. {
  41607. name: "Continent Cracker",
  41608. height: math.unit(24e6, "feet")
  41609. },
  41610. {
  41611. name: "Earth-Eclipsing",
  41612. height: math.unit(2.4e8, "feet")
  41613. },
  41614. {
  41615. name: "Gas Giant Gulper",
  41616. height: math.unit(2.4e9, "feet")
  41617. },
  41618. {
  41619. name: "Sol-Swallowing",
  41620. height: math.unit(8e10, "feet")
  41621. },
  41622. {
  41623. name: "Galaxy Gulper",
  41624. height: math.unit(8, "galaxies")
  41625. },
  41626. {
  41627. name: "Cosmos Churner",
  41628. height: math.unit(8, "universes")
  41629. },
  41630. {
  41631. name: "Omnipotent Otter",
  41632. height: math.unit(80, "universes")
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(2.6, "meters"),
  41641. weight: math.unit(900, "kg"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/neesha/front.svg",
  41645. extra: 1803/1653,
  41646. bottom: 128/1931
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Normal",
  41653. height: math.unit(2.6, "meters"),
  41654. default: true
  41655. },
  41656. {
  41657. name: "Macro",
  41658. height: math.unit(50, "meters")
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41664. {
  41665. front: {
  41666. height: math.unit(5, "feet"),
  41667. weight: math.unit(185, "lb"),
  41668. name: "Front",
  41669. image: {
  41670. source: "./media/characters/kyera/front.svg",
  41671. extra: 1875/1790,
  41672. bottom: 96/1971
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Normal",
  41679. height: math.unit(5, "feet"),
  41680. default: true
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(7 + 6/12, "feet"),
  41689. weight: math.unit(540, "lb"),
  41690. name: "Front",
  41691. image: {
  41692. source: "./media/characters/yuko/front.svg",
  41693. extra: 1282/1222,
  41694. bottom: 101/1383
  41695. }
  41696. },
  41697. frontClothed: {
  41698. height: math.unit(7 + 6/12, "feet"),
  41699. weight: math.unit(540, "lb"),
  41700. name: "Front (Clothed)",
  41701. image: {
  41702. source: "./media/characters/yuko/front-clothed.svg",
  41703. extra: 1282/1222,
  41704. bottom: 101/1383
  41705. }
  41706. },
  41707. },
  41708. [
  41709. {
  41710. name: "Normal",
  41711. height: math.unit(7 + 6/12, "feet"),
  41712. default: true
  41713. },
  41714. {
  41715. name: "Macro",
  41716. height: math.unit(26 + 9/12, "feet")
  41717. },
  41718. {
  41719. name: "Megamacro",
  41720. height: math.unit(300, "feet")
  41721. },
  41722. {
  41723. name: "Gigamacro",
  41724. height: math.unit(5000, "feet")
  41725. },
  41726. {
  41727. name: "Planetary",
  41728. height: math.unit(10000, "miles")
  41729. },
  41730. ]
  41731. ))
  41732. characterMakers.push(() => makeCharacter(
  41733. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41734. {
  41735. front: {
  41736. height: math.unit(8 + 2/12, "feet"),
  41737. weight: math.unit(600, "lb"),
  41738. name: "Front",
  41739. image: {
  41740. source: "./media/characters/deam-nitrel/front.svg",
  41741. extra: 1308/1234,
  41742. bottom: 125/1433
  41743. }
  41744. },
  41745. },
  41746. [
  41747. {
  41748. name: "Normal",
  41749. height: math.unit(8 + 2/12, "feet"),
  41750. default: true
  41751. },
  41752. ]
  41753. ))
  41754. characterMakers.push(() => makeCharacter(
  41755. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41756. {
  41757. front: {
  41758. height: math.unit(6.1, "feet"),
  41759. weight: math.unit(180, "lb"),
  41760. name: "Front",
  41761. image: {
  41762. source: "./media/characters/skyress/front.svg",
  41763. extra: 1045/915,
  41764. bottom: 28/1073
  41765. }
  41766. },
  41767. maw: {
  41768. height: math.unit(1, "feet"),
  41769. name: "Maw",
  41770. image: {
  41771. source: "./media/characters/skyress/maw.svg"
  41772. }
  41773. },
  41774. },
  41775. [
  41776. {
  41777. name: "Normal",
  41778. height: math.unit(6.1, "feet"),
  41779. default: true
  41780. },
  41781. {
  41782. name: "Macro",
  41783. height: math.unit(200, "feet")
  41784. },
  41785. ]
  41786. ))
  41787. characterMakers.push(() => makeCharacter(
  41788. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41789. {
  41790. front: {
  41791. height: math.unit(4 + 2/12, "feet"),
  41792. weight: math.unit(40, "kg"),
  41793. name: "Front",
  41794. image: {
  41795. source: "./media/characters/amethyst-jones/front.svg",
  41796. extra: 1220/1150,
  41797. bottom: 101/1321
  41798. }
  41799. },
  41800. },
  41801. [
  41802. {
  41803. name: "Normal",
  41804. height: math.unit(4 + 2/12, "feet"),
  41805. default: true
  41806. },
  41807. ]
  41808. ))
  41809. characterMakers.push(() => makeCharacter(
  41810. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41811. {
  41812. front: {
  41813. height: math.unit(1.7, "m"),
  41814. weight: math.unit(135, "lb"),
  41815. name: "Front",
  41816. image: {
  41817. source: "./media/characters/jade/front.svg",
  41818. extra: 1818/1767,
  41819. bottom: 32/1850
  41820. }
  41821. },
  41822. back: {
  41823. height: math.unit(1.7, "m"),
  41824. weight: math.unit(135, "lb"),
  41825. name: "Back",
  41826. image: {
  41827. source: "./media/characters/jade/back.svg",
  41828. extra: 1869/1809,
  41829. bottom: 35/1904
  41830. }
  41831. },
  41832. hand: {
  41833. height: math.unit(0.24, "m"),
  41834. name: "Hand",
  41835. image: {
  41836. source: "./media/characters/jade/hand.svg"
  41837. }
  41838. },
  41839. foot: {
  41840. height: math.unit(0.263, "m"),
  41841. name: "Foot",
  41842. image: {
  41843. source: "./media/characters/jade/foot.svg"
  41844. }
  41845. },
  41846. dick: {
  41847. height: math.unit(0.47, "m"),
  41848. name: "Dick",
  41849. image: {
  41850. source: "./media/characters/jade/dick.svg"
  41851. }
  41852. },
  41853. },
  41854. [
  41855. {
  41856. name: "Micro",
  41857. height: math.unit(22, "cm")
  41858. },
  41859. {
  41860. name: "Normal",
  41861. height: math.unit(1.7, "m"),
  41862. default: true
  41863. },
  41864. {
  41865. name: "Macro",
  41866. height: math.unit(152, "m")
  41867. },
  41868. ]
  41869. ))
  41870. characterMakers.push(() => makeCharacter(
  41871. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41872. {
  41873. front: {
  41874. height: math.unit(100, "miles"),
  41875. weight: math.unit(20000, "tons"),
  41876. name: "Front",
  41877. image: {
  41878. source: "./media/characters/cookie/front.svg",
  41879. extra: 1125/1070,
  41880. bottom: 30/1155
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Big",
  41887. height: math.unit(50, "feet")
  41888. },
  41889. {
  41890. name: "Macro",
  41891. height: math.unit(100, "miles"),
  41892. default: true
  41893. },
  41894. {
  41895. name: "Megamacro",
  41896. height: math.unit(90000, "miles")
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41902. {
  41903. front: {
  41904. height: math.unit(6, "feet"),
  41905. weight: math.unit(145, "lb"),
  41906. name: "Front",
  41907. image: {
  41908. source: "./media/characters/farzian/front.svg",
  41909. extra: 1902/1693,
  41910. bottom: 108/2010
  41911. }
  41912. },
  41913. },
  41914. [
  41915. {
  41916. name: "Macro",
  41917. height: math.unit(500, "feet"),
  41918. default: true
  41919. },
  41920. ]
  41921. ))
  41922. characterMakers.push(() => makeCharacter(
  41923. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41924. {
  41925. front: {
  41926. height: math.unit(3 + 6/12, "feet"),
  41927. weight: math.unit(50, "lb"),
  41928. name: "Front",
  41929. image: {
  41930. source: "./media/characters/kimberly-tilson/front.svg",
  41931. extra: 1400/1322,
  41932. bottom: 36/1436
  41933. }
  41934. },
  41935. back: {
  41936. height: math.unit(3 + 6/12, "feet"),
  41937. weight: math.unit(50, "lb"),
  41938. name: "Back",
  41939. image: {
  41940. source: "./media/characters/kimberly-tilson/back.svg",
  41941. extra: 1370/1307,
  41942. bottom: 20/1390
  41943. }
  41944. },
  41945. },
  41946. [
  41947. {
  41948. name: "Normal",
  41949. height: math.unit(3 + 6/12, "feet"),
  41950. default: true
  41951. },
  41952. ]
  41953. ))
  41954. characterMakers.push(() => makeCharacter(
  41955. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41956. {
  41957. front: {
  41958. height: math.unit(1148, "feet"),
  41959. weight: math.unit(34057, "lb"),
  41960. name: "Front",
  41961. image: {
  41962. source: "./media/characters/harthos/front.svg",
  41963. extra: 1391/1339,
  41964. bottom: 13/1404
  41965. }
  41966. },
  41967. },
  41968. [
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(1148, "feet"),
  41972. default: true
  41973. },
  41974. ]
  41975. ))
  41976. characterMakers.push(() => makeCharacter(
  41977. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41978. {
  41979. front: {
  41980. height: math.unit(15, "feet"),
  41981. name: "Front",
  41982. image: {
  41983. source: "./media/characters/hypatia/front.svg",
  41984. extra: 1653/1591,
  41985. bottom: 79/1732
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Normal",
  41992. height: math.unit(15, "feet")
  41993. },
  41994. {
  41995. name: "Small",
  41996. height: math.unit(300, "feet")
  41997. },
  41998. {
  41999. name: "Macro",
  42000. height: math.unit(2500, "feet"),
  42001. default: true
  42002. },
  42003. {
  42004. name: "Mega Macro",
  42005. height: math.unit(1500, "miles")
  42006. },
  42007. {
  42008. name: "Giga Macro",
  42009. height: math.unit(1.5e6, "miles")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42015. {
  42016. front: {
  42017. height: math.unit(6, "feet"),
  42018. weight: math.unit(200, "lb"),
  42019. name: "Front",
  42020. image: {
  42021. source: "./media/characters/wulver/front.svg",
  42022. extra: 1724/1632,
  42023. bottom: 130/1854
  42024. }
  42025. },
  42026. frontNsfw: {
  42027. height: math.unit(6, "feet"),
  42028. weight: math.unit(200, "lb"),
  42029. name: "Front (NSFW)",
  42030. image: {
  42031. source: "./media/characters/wulver/front-nsfw.svg",
  42032. extra: 1724/1632,
  42033. bottom: 130/1854
  42034. }
  42035. },
  42036. },
  42037. [
  42038. {
  42039. name: "Human-Sized",
  42040. height: math.unit(6, "feet")
  42041. },
  42042. {
  42043. name: "Normal",
  42044. height: math.unit(4, "meters"),
  42045. default: true
  42046. },
  42047. {
  42048. name: "Large",
  42049. height: math.unit(6, "m")
  42050. },
  42051. ]
  42052. ))
  42053. characterMakers.push(() => makeCharacter(
  42054. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42055. {
  42056. front: {
  42057. height: math.unit(7, "feet"),
  42058. name: "Front",
  42059. image: {
  42060. source: "./media/characters/maru/front.svg",
  42061. extra: 1595/1570,
  42062. bottom: 0/1595
  42063. }
  42064. },
  42065. },
  42066. [
  42067. {
  42068. name: "Normal",
  42069. height: math.unit(7, "feet"),
  42070. default: true
  42071. },
  42072. {
  42073. name: "Macro",
  42074. height: math.unit(700, "feet")
  42075. },
  42076. {
  42077. name: "Mega Macro",
  42078. height: math.unit(25, "miles")
  42079. },
  42080. ]
  42081. ))
  42082. characterMakers.push(() => makeCharacter(
  42083. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42084. {
  42085. front: {
  42086. height: math.unit(6, "feet"),
  42087. weight: math.unit(170, "lb"),
  42088. name: "Front",
  42089. image: {
  42090. source: "./media/characters/xenon/front.svg",
  42091. extra: 1376/1305,
  42092. bottom: 56/1432
  42093. }
  42094. },
  42095. back: {
  42096. height: math.unit(6, "feet"),
  42097. weight: math.unit(170, "lb"),
  42098. name: "Back",
  42099. image: {
  42100. source: "./media/characters/xenon/back.svg",
  42101. extra: 1328/1259,
  42102. bottom: 95/1423
  42103. }
  42104. },
  42105. maw: {
  42106. height: math.unit(0.52, "feet"),
  42107. name: "Maw",
  42108. image: {
  42109. source: "./media/characters/xenon/maw.svg"
  42110. }
  42111. },
  42112. handLeft: {
  42113. height: math.unit(0.82 * 169 / 153, "feet"),
  42114. name: "Hand (Left)",
  42115. image: {
  42116. source: "./media/characters/xenon/hand-left.svg"
  42117. }
  42118. },
  42119. handRight: {
  42120. height: math.unit(0.82, "feet"),
  42121. name: "Hand (Right)",
  42122. image: {
  42123. source: "./media/characters/xenon/hand-right.svg"
  42124. }
  42125. },
  42126. footLeft: {
  42127. height: math.unit(1.13, "feet"),
  42128. name: "Foot (Left)",
  42129. image: {
  42130. source: "./media/characters/xenon/foot-left.svg"
  42131. }
  42132. },
  42133. footRight: {
  42134. height: math.unit(1.13 * 194 / 196, "feet"),
  42135. name: "Foot (Right)",
  42136. image: {
  42137. source: "./media/characters/xenon/foot-right.svg"
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Micro",
  42144. height: math.unit(0.8, "inches")
  42145. },
  42146. {
  42147. name: "Normal",
  42148. height: math.unit(6, "feet")
  42149. },
  42150. {
  42151. name: "Macro",
  42152. height: math.unit(50, "feet"),
  42153. default: true
  42154. },
  42155. {
  42156. name: "Macro+",
  42157. height: math.unit(250, "feet")
  42158. },
  42159. {
  42160. name: "Megamacro",
  42161. height: math.unit(1500, "feet")
  42162. },
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42167. {
  42168. front: {
  42169. height: math.unit(7 + 5/12, "feet"),
  42170. name: "Front",
  42171. image: {
  42172. source: "./media/characters/zane/front.svg",
  42173. extra: 1260/1203,
  42174. bottom: 94/1354
  42175. }
  42176. },
  42177. back: {
  42178. height: math.unit(5.05, "feet"),
  42179. name: "Back",
  42180. image: {
  42181. source: "./media/characters/zane/back.svg",
  42182. extra: 893/829,
  42183. bottom: 30/923
  42184. }
  42185. },
  42186. werewolf: {
  42187. height: math.unit(11, "feet"),
  42188. name: "Werewolf",
  42189. image: {
  42190. source: "./media/characters/zane/werewolf.svg",
  42191. extra: 1383/1323,
  42192. bottom: 89/1472
  42193. }
  42194. },
  42195. foot: {
  42196. height: math.unit(1.46, "feet"),
  42197. name: "Foot",
  42198. image: {
  42199. source: "./media/characters/zane/foot.svg"
  42200. }
  42201. },
  42202. footFront: {
  42203. height: math.unit(0.784, "feet"),
  42204. name: "Foot (Front)",
  42205. image: {
  42206. source: "./media/characters/zane/foot-front.svg"
  42207. }
  42208. },
  42209. dick: {
  42210. height: math.unit(1.95, "feet"),
  42211. name: "Dick",
  42212. image: {
  42213. source: "./media/characters/zane/dick.svg"
  42214. }
  42215. },
  42216. dickWerewolf: {
  42217. height: math.unit(3.77, "feet"),
  42218. name: "Dick (Werewolf)",
  42219. image: {
  42220. source: "./media/characters/zane/dick.svg"
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Normal",
  42227. height: math.unit(7 + 5/12, "feet"),
  42228. default: true
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42234. {
  42235. front: {
  42236. height: math.unit(6 + 2/12, "feet"),
  42237. weight: math.unit(284, "lb"),
  42238. name: "Front",
  42239. image: {
  42240. source: "./media/characters/benni-desparque/front.svg",
  42241. extra: 1353/1126,
  42242. bottom: 69/1422
  42243. }
  42244. },
  42245. },
  42246. [
  42247. {
  42248. name: "Civilian",
  42249. height: math.unit(6 + 2/12, "feet")
  42250. },
  42251. {
  42252. name: "Normal",
  42253. height: math.unit(98, "feet"),
  42254. default: true
  42255. },
  42256. {
  42257. name: "Kaiju Fighter",
  42258. height: math.unit(268, "feet")
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(5, "feet"),
  42267. weight: math.unit(105, "lb"),
  42268. name: "Front",
  42269. image: {
  42270. source: "./media/characters/maxine/front.svg",
  42271. extra: 1386/1250,
  42272. bottom: 71/1457
  42273. }
  42274. },
  42275. },
  42276. [
  42277. {
  42278. name: "Normal",
  42279. height: math.unit(5, "feet"),
  42280. default: true
  42281. },
  42282. ]
  42283. ))
  42284. characterMakers.push(() => makeCharacter(
  42285. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42286. {
  42287. front: {
  42288. height: math.unit(11 + 7/12, "feet"),
  42289. weight: math.unit(9576, "lb"),
  42290. name: "Front",
  42291. image: {
  42292. source: "./media/characters/scaly/front.svg",
  42293. extra: 888/867,
  42294. bottom: 36/924
  42295. }
  42296. },
  42297. },
  42298. [
  42299. {
  42300. name: "Normal",
  42301. height: math.unit(11 + 7/12, "feet"),
  42302. default: true
  42303. },
  42304. ]
  42305. ))
  42306. characterMakers.push(() => makeCharacter(
  42307. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42308. {
  42309. front: {
  42310. height: math.unit(6 + 3/12, "feet"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/saelria/front.svg",
  42314. extra: 1243/1138,
  42315. bottom: 46/1289
  42316. }
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Micro",
  42322. height: math.unit(6, "inches"),
  42323. },
  42324. {
  42325. name: "Normal",
  42326. height: math.unit(6 + 3/12, "feet"),
  42327. default: true
  42328. },
  42329. {
  42330. name: "Macro",
  42331. height: math.unit(25, "feet")
  42332. },
  42333. ]
  42334. ))
  42335. characterMakers.push(() => makeCharacter(
  42336. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42337. {
  42338. front: {
  42339. height: math.unit(80, "meters"),
  42340. weight: math.unit(7000, "tonnes"),
  42341. name: "Front",
  42342. image: {
  42343. source: "./media/characters/tef/front.svg",
  42344. extra: 2036/1991,
  42345. bottom: 54/2090
  42346. }
  42347. },
  42348. back: {
  42349. height: math.unit(80, "meters"),
  42350. weight: math.unit(7000, "tonnes"),
  42351. name: "Back",
  42352. image: {
  42353. source: "./media/characters/tef/back.svg",
  42354. extra: 2036/1991,
  42355. bottom: 54/2090
  42356. }
  42357. },
  42358. },
  42359. [
  42360. {
  42361. name: "Macro",
  42362. height: math.unit(80, "meters"),
  42363. default: true
  42364. },
  42365. ]
  42366. ))
  42367. characterMakers.push(() => makeCharacter(
  42368. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42369. {
  42370. front: {
  42371. height: math.unit(13, "feet"),
  42372. weight: math.unit(6, "tons"),
  42373. name: "Front",
  42374. image: {
  42375. source: "./media/characters/rover/front.svg",
  42376. extra: 1233/1156,
  42377. bottom: 50/1283
  42378. }
  42379. },
  42380. back: {
  42381. height: math.unit(13, "feet"),
  42382. weight: math.unit(6, "tons"),
  42383. name: "Back",
  42384. image: {
  42385. source: "./media/characters/rover/back.svg",
  42386. extra: 1327/1258,
  42387. bottom: 39/1366
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Normal",
  42394. height: math.unit(13, "feet"),
  42395. default: true
  42396. },
  42397. {
  42398. name: "Macro",
  42399. height: math.unit(1300, "feet")
  42400. },
  42401. {
  42402. name: "Megamacro",
  42403. height: math.unit(1300, "miles")
  42404. },
  42405. {
  42406. name: "Gigamacro",
  42407. height: math.unit(1300000, "miles")
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(6, "feet"),
  42416. weight: math.unit(150, "lb"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/ariz/front.svg",
  42420. extra: 1401/1346,
  42421. bottom: 5/1406
  42422. }
  42423. },
  42424. },
  42425. [
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(10, "feet"),
  42429. default: true
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(6, "feet"),
  42438. weight: math.unit(140, "lb"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/sigrun/front.svg",
  42442. extra: 1418/1359,
  42443. bottom: 27/1445
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Macro",
  42450. height: math.unit(35, "feet"),
  42451. default: true
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(6, "feet"),
  42460. weight: math.unit(150, "lb"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/numin/front.svg",
  42464. extra: 1433/1388,
  42465. bottom: 12/1445
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Macro",
  42472. height: math.unit(21.5, "km"),
  42473. default: true
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(6, "feet"),
  42482. weight: math.unit(463, "lb"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/melwa/front.svg",
  42486. extra: 1307/1248,
  42487. bottom: 93/1400
  42488. }
  42489. },
  42490. },
  42491. [
  42492. {
  42493. name: "Macro",
  42494. height: math.unit(50, "meters"),
  42495. default: true
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(325, "feet"),
  42504. name: "Front",
  42505. image: {
  42506. source: "./media/characters/zorkaiju/front.svg",
  42507. extra: 1955/1814,
  42508. bottom: 40/1995
  42509. }
  42510. },
  42511. frontExtended: {
  42512. height: math.unit(325, "feet"),
  42513. name: "Front (Extended)",
  42514. image: {
  42515. source: "./media/characters/zorkaiju/front-extended.svg",
  42516. extra: 1955/1814,
  42517. bottom: 40/1995
  42518. }
  42519. },
  42520. side: {
  42521. height: math.unit(325, "feet"),
  42522. name: "Side",
  42523. image: {
  42524. source: "./media/characters/zorkaiju/side.svg",
  42525. extra: 1495/1396,
  42526. bottom: 17/1512
  42527. }
  42528. },
  42529. sideExtended: {
  42530. height: math.unit(325, "feet"),
  42531. name: "Side (Extended)",
  42532. image: {
  42533. source: "./media/characters/zorkaiju/side-extended.svg",
  42534. extra: 1495/1396,
  42535. bottom: 17/1512
  42536. }
  42537. },
  42538. back: {
  42539. height: math.unit(325, "feet"),
  42540. name: "Back",
  42541. image: {
  42542. source: "./media/characters/zorkaiju/back.svg",
  42543. extra: 1959/1821,
  42544. bottom: 31/1990
  42545. }
  42546. },
  42547. backExtended: {
  42548. height: math.unit(325, "feet"),
  42549. name: "Back (Extended)",
  42550. image: {
  42551. source: "./media/characters/zorkaiju/back-extended.svg",
  42552. extra: 1959/1821,
  42553. bottom: 31/1990
  42554. }
  42555. },
  42556. hand: {
  42557. height: math.unit(58.4, "feet"),
  42558. name: "Hand",
  42559. image: {
  42560. source: "./media/characters/zorkaiju/hand.svg"
  42561. }
  42562. },
  42563. handExtended: {
  42564. height: math.unit(61.4, "feet"),
  42565. name: "Hand (Extended)",
  42566. image: {
  42567. source: "./media/characters/zorkaiju/hand-extended.svg"
  42568. }
  42569. },
  42570. foot: {
  42571. height: math.unit(95, "feet"),
  42572. name: "Foot",
  42573. image: {
  42574. source: "./media/characters/zorkaiju/foot.svg"
  42575. }
  42576. },
  42577. leftArm: {
  42578. height: math.unit(59, "feet"),
  42579. name: "Left Arm",
  42580. image: {
  42581. source: "./media/characters/zorkaiju/left-arm.svg"
  42582. }
  42583. },
  42584. rightArm: {
  42585. height: math.unit(59, "feet"),
  42586. name: "Right Arm",
  42587. image: {
  42588. source: "./media/characters/zorkaiju/right-arm.svg"
  42589. }
  42590. },
  42591. leftArmExtended: {
  42592. height: math.unit(59 * 1.033546, "feet"),
  42593. name: "Left Arm (Extended)",
  42594. image: {
  42595. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42596. }
  42597. },
  42598. rightArmExtended: {
  42599. height: math.unit(59 * 1.0496, "feet"),
  42600. name: "Right Arm (Extended)",
  42601. image: {
  42602. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42603. }
  42604. },
  42605. tail: {
  42606. height: math.unit(104, "feet"),
  42607. name: "Tail",
  42608. image: {
  42609. source: "./media/characters/zorkaiju/tail.svg"
  42610. }
  42611. },
  42612. tailExtended: {
  42613. height: math.unit(104, "feet"),
  42614. name: "Tail (Extended)",
  42615. image: {
  42616. source: "./media/characters/zorkaiju/tail-extended.svg"
  42617. }
  42618. },
  42619. tailBottom: {
  42620. height: math.unit(104, "feet"),
  42621. name: "Tail Bottom",
  42622. image: {
  42623. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42624. }
  42625. },
  42626. crystal: {
  42627. height: math.unit(27.54, "feet"),
  42628. name: "Crystal",
  42629. image: {
  42630. source: "./media/characters/zorkaiju/crystal.svg"
  42631. }
  42632. },
  42633. },
  42634. [
  42635. {
  42636. name: "Kaiju",
  42637. height: math.unit(325, "feet"),
  42638. default: true
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42644. {
  42645. front: {
  42646. height: math.unit(6 + 1/12, "feet"),
  42647. weight: math.unit(115, "lb"),
  42648. name: "Front",
  42649. image: {
  42650. source: "./media/characters/bailey-belfry/front.svg",
  42651. extra: 1240/1121,
  42652. bottom: 101/1341
  42653. }
  42654. },
  42655. },
  42656. [
  42657. {
  42658. name: "Normal",
  42659. height: math.unit(6 + 1/12, "feet"),
  42660. default: true
  42661. },
  42662. ]
  42663. ))
  42664. characterMakers.push(() => makeCharacter(
  42665. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42666. {
  42667. side: {
  42668. height: math.unit(4, "meters"),
  42669. weight: math.unit(250, "kg"),
  42670. name: "Side",
  42671. image: {
  42672. source: "./media/characters/blacky/side.svg",
  42673. extra: 1027/919,
  42674. bottom: 43/1070
  42675. }
  42676. },
  42677. maw: {
  42678. height: math.unit(1, "meters"),
  42679. name: "Maw",
  42680. image: {
  42681. source: "./media/characters/blacky/maw.svg"
  42682. }
  42683. },
  42684. paw: {
  42685. height: math.unit(1, "meters"),
  42686. name: "Paw",
  42687. image: {
  42688. source: "./media/characters/blacky/paw.svg"
  42689. }
  42690. },
  42691. },
  42692. [
  42693. {
  42694. name: "Normal",
  42695. height: math.unit(4, "meters"),
  42696. default: true
  42697. },
  42698. ]
  42699. ))
  42700. characterMakers.push(() => makeCharacter(
  42701. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42702. {
  42703. front: {
  42704. height: math.unit(170, "cm"),
  42705. weight: math.unit(66, "kg"),
  42706. name: "Front",
  42707. image: {
  42708. source: "./media/characters/thux-ei/front.svg",
  42709. extra: 1109/1011,
  42710. bottom: 8/1117
  42711. }
  42712. },
  42713. },
  42714. [
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(170, "cm"),
  42718. default: true
  42719. },
  42720. ]
  42721. ))
  42722. characterMakers.push(() => makeCharacter(
  42723. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42724. {
  42725. front: {
  42726. height: math.unit(5, "feet"),
  42727. weight: math.unit(120, "lb"),
  42728. name: "Front",
  42729. image: {
  42730. source: "./media/characters/roxanne-voltaire/front.svg",
  42731. extra: 1901/1779,
  42732. bottom: 53/1954
  42733. }
  42734. },
  42735. },
  42736. [
  42737. {
  42738. name: "Normal",
  42739. height: math.unit(5, "feet"),
  42740. default: true
  42741. },
  42742. {
  42743. name: "Giant",
  42744. height: math.unit(50, "feet")
  42745. },
  42746. {
  42747. name: "Titan",
  42748. height: math.unit(500, "feet")
  42749. },
  42750. {
  42751. name: "Macro",
  42752. height: math.unit(5000, "feet")
  42753. },
  42754. {
  42755. name: "Megamacro",
  42756. height: math.unit(50000, "feet")
  42757. },
  42758. {
  42759. name: "Gigamacro",
  42760. height: math.unit(500000, "feet")
  42761. },
  42762. {
  42763. name: "Teramacro",
  42764. height: math.unit(5e6, "feet")
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42770. {
  42771. front: {
  42772. height: math.unit(6 + 2/12, "feet"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/squeaks/front.svg",
  42776. extra: 1823/1768,
  42777. bottom: 138/1961
  42778. }
  42779. },
  42780. },
  42781. [
  42782. {
  42783. name: "Micro",
  42784. height: math.unit(0.5, "inches")
  42785. },
  42786. {
  42787. name: "Normal",
  42788. height: math.unit(6 + 2/12, "feet"),
  42789. default: true
  42790. },
  42791. {
  42792. name: "Macro",
  42793. height: math.unit(600, "feet")
  42794. },
  42795. ]
  42796. ))
  42797. characterMakers.push(() => makeCharacter(
  42798. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42799. {
  42800. front: {
  42801. height: math.unit(1.72, "meters"),
  42802. name: "Front",
  42803. image: {
  42804. source: "./media/characters/archinger/front.svg",
  42805. extra: 1861/1675,
  42806. bottom: 125/1986
  42807. }
  42808. },
  42809. back: {
  42810. height: math.unit(1.72, "meters"),
  42811. name: "Back",
  42812. image: {
  42813. source: "./media/characters/archinger/back.svg",
  42814. extra: 1844/1701,
  42815. bottom: 104/1948
  42816. }
  42817. },
  42818. cock: {
  42819. height: math.unit(0.59, "feet"),
  42820. name: "Cock",
  42821. image: {
  42822. source: "./media/characters/archinger/cock.svg"
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(1.72, "meters"),
  42830. default: true
  42831. },
  42832. {
  42833. name: "Macro",
  42834. height: math.unit(84, "meters")
  42835. },
  42836. {
  42837. name: "Macro+",
  42838. height: math.unit(112, "meters")
  42839. },
  42840. {
  42841. name: "Macro++",
  42842. height: math.unit(960, "meters")
  42843. },
  42844. {
  42845. name: "Macro+++",
  42846. height: math.unit(4, "km")
  42847. },
  42848. {
  42849. name: "Macro++++",
  42850. height: math.unit(48, "km")
  42851. },
  42852. {
  42853. name: "Macro+++++",
  42854. height: math.unit(4500, "km")
  42855. },
  42856. ]
  42857. ))
  42858. characterMakers.push(() => makeCharacter(
  42859. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42860. {
  42861. front: {
  42862. height: math.unit(5 + 5/12, "feet"),
  42863. name: "Front",
  42864. image: {
  42865. source: "./media/characters/alsnapz/front.svg",
  42866. extra: 1157/1065,
  42867. bottom: 42/1199
  42868. }
  42869. },
  42870. },
  42871. [
  42872. {
  42873. name: "Normal",
  42874. height: math.unit(5 + 5/12, "feet"),
  42875. default: true
  42876. },
  42877. ]
  42878. ))
  42879. characterMakers.push(() => makeCharacter(
  42880. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42881. {
  42882. side: {
  42883. height: math.unit(3.2, "earths"),
  42884. name: "Side",
  42885. image: {
  42886. source: "./media/characters/mag/side.svg",
  42887. extra: 1331/1008,
  42888. bottom: 52/1383
  42889. }
  42890. },
  42891. wing: {
  42892. height: math.unit(1.94, "earths"),
  42893. name: "Wing",
  42894. image: {
  42895. source: "./media/characters/mag/wing.svg"
  42896. }
  42897. },
  42898. dick: {
  42899. height: math.unit(1.8, "earths"),
  42900. name: "Dick",
  42901. image: {
  42902. source: "./media/characters/mag/dick.svg"
  42903. }
  42904. },
  42905. ass: {
  42906. height: math.unit(1.33, "earths"),
  42907. name: "Ass",
  42908. image: {
  42909. source: "./media/characters/mag/ass.svg"
  42910. }
  42911. },
  42912. head: {
  42913. height: math.unit(1.1, "earths"),
  42914. name: "Head",
  42915. image: {
  42916. source: "./media/characters/mag/head.svg"
  42917. }
  42918. },
  42919. maw: {
  42920. height: math.unit(1.62, "earths"),
  42921. name: "Maw",
  42922. image: {
  42923. source: "./media/characters/mag/maw.svg"
  42924. }
  42925. },
  42926. },
  42927. [
  42928. {
  42929. name: "Small",
  42930. height: math.unit(162, "feet")
  42931. },
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(3.2, "earths"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42941. {
  42942. front: {
  42943. height: math.unit(512, "feet"),
  42944. weight: math.unit(63509, "tonnes"),
  42945. name: "Front",
  42946. image: {
  42947. source: "./media/characters/vorrel-harroc/front.svg",
  42948. extra: 1075/1063,
  42949. bottom: 62/1137
  42950. }
  42951. },
  42952. },
  42953. [
  42954. {
  42955. name: "Normal",
  42956. height: math.unit(10, "feet")
  42957. },
  42958. {
  42959. name: "Macro",
  42960. height: math.unit(512, "feet"),
  42961. default: true
  42962. },
  42963. {
  42964. name: "Megamacro",
  42965. height: math.unit(256, "miles")
  42966. },
  42967. {
  42968. name: "Gigamacro",
  42969. height: math.unit(4096, "miles")
  42970. },
  42971. ]
  42972. ))
  42973. characterMakers.push(() => makeCharacter(
  42974. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42975. {
  42976. side: {
  42977. height: math.unit(50, "feet"),
  42978. name: "Side",
  42979. image: {
  42980. source: "./media/characters/froimar/side.svg",
  42981. extra: 855/638,
  42982. bottom: 99/954
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Macro",
  42989. height: math.unit(50, "feet"),
  42990. default: true
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42996. {
  42997. front: {
  42998. height: math.unit(210, "miles"),
  42999. name: "Front",
  43000. image: {
  43001. source: "./media/characters/timothy/front.svg",
  43002. extra: 1007/943,
  43003. bottom: 62/1069
  43004. }
  43005. },
  43006. frontSkirt: {
  43007. height: math.unit(210, "miles"),
  43008. name: "Front (Skirt)",
  43009. image: {
  43010. source: "./media/characters/timothy/front-skirt.svg",
  43011. extra: 1007/943,
  43012. bottom: 62/1069
  43013. }
  43014. },
  43015. frontCoat: {
  43016. height: math.unit(210, "miles"),
  43017. name: "Front (Coat)",
  43018. image: {
  43019. source: "./media/characters/timothy/front-coat.svg",
  43020. extra: 1007/943,
  43021. bottom: 62/1069
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Macro",
  43028. height: math.unit(210, "miles"),
  43029. default: true
  43030. },
  43031. {
  43032. name: "Megamacro",
  43033. height: math.unit(210000, "miles")
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(188, "feet"),
  43042. name: "Front",
  43043. image: {
  43044. source: "./media/characters/pyotr/front.svg",
  43045. extra: 1912/1826,
  43046. bottom: 18/1930
  43047. }
  43048. },
  43049. },
  43050. [
  43051. {
  43052. name: "Macro",
  43053. height: math.unit(188, "feet"),
  43054. default: true
  43055. },
  43056. {
  43057. name: "Megamacro",
  43058. height: math.unit(8, "miles")
  43059. },
  43060. ]
  43061. ))
  43062. characterMakers.push(() => makeCharacter(
  43063. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43064. {
  43065. side: {
  43066. height: math.unit(10, "feet"),
  43067. weight: math.unit(4500, "lb"),
  43068. name: "Side",
  43069. image: {
  43070. source: "./media/characters/ackart/side.svg",
  43071. extra: 1776/1668,
  43072. bottom: 116/1892
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(10, "feet"),
  43080. default: true
  43081. },
  43082. ]
  43083. ))
  43084. characterMakers.push(() => makeCharacter(
  43085. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43086. {
  43087. side: {
  43088. height: math.unit(21, "feet"),
  43089. name: "Side",
  43090. image: {
  43091. source: "./media/characters/nolow/side.svg",
  43092. extra: 1484/1434,
  43093. bottom: 85/1569
  43094. }
  43095. },
  43096. sideErect: {
  43097. height: math.unit(21, "feet"),
  43098. name: "Side-erect",
  43099. image: {
  43100. source: "./media/characters/nolow/side-erect.svg",
  43101. extra: 1484/1434,
  43102. bottom: 85/1569
  43103. }
  43104. },
  43105. },
  43106. [
  43107. {
  43108. name: "Regular",
  43109. height: math.unit(12, "feet")
  43110. },
  43111. {
  43112. name: "Big Chee",
  43113. height: math.unit(21, "feet"),
  43114. default: true
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43120. {
  43121. front: {
  43122. height: math.unit(7, "feet"),
  43123. weight: math.unit(250, "lb"),
  43124. name: "Front",
  43125. image: {
  43126. source: "./media/characters/nines/front.svg",
  43127. extra: 1741/1607,
  43128. bottom: 41/1782
  43129. }
  43130. },
  43131. side: {
  43132. height: math.unit(7, "feet"),
  43133. weight: math.unit(250, "lb"),
  43134. name: "Side",
  43135. image: {
  43136. source: "./media/characters/nines/side.svg",
  43137. extra: 1854/1735,
  43138. bottom: 93/1947
  43139. }
  43140. },
  43141. back: {
  43142. height: math.unit(7, "feet"),
  43143. weight: math.unit(250, "lb"),
  43144. name: "Back",
  43145. image: {
  43146. source: "./media/characters/nines/back.svg",
  43147. extra: 1748/1615,
  43148. bottom: 20/1768
  43149. }
  43150. },
  43151. },
  43152. [
  43153. {
  43154. name: "Megamacro",
  43155. height: math.unit(99, "km"),
  43156. default: true
  43157. },
  43158. ]
  43159. ))
  43160. characterMakers.push(() => makeCharacter(
  43161. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43162. {
  43163. front: {
  43164. height: math.unit(5 + 10/12, "feet"),
  43165. weight: math.unit(210, "lb"),
  43166. name: "Front",
  43167. image: {
  43168. source: "./media/characters/zenith/front.svg",
  43169. extra: 1531/1452,
  43170. bottom: 198/1729
  43171. }
  43172. },
  43173. back: {
  43174. height: math.unit(5 + 10/12, "feet"),
  43175. weight: math.unit(210, "lb"),
  43176. name: "Back",
  43177. image: {
  43178. source: "./media/characters/zenith/back.svg",
  43179. extra: 1571/1487,
  43180. bottom: 75/1646
  43181. }
  43182. },
  43183. },
  43184. [
  43185. {
  43186. name: "Normal",
  43187. height: math.unit(5 + 10/12, "feet"),
  43188. default: true
  43189. }
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(4, "feet"),
  43197. weight: math.unit(60, "lb"),
  43198. name: "Front",
  43199. image: {
  43200. source: "./media/characters/jasper/front.svg",
  43201. extra: 1450/1379,
  43202. bottom: 19/1469
  43203. }
  43204. },
  43205. },
  43206. [
  43207. {
  43208. name: "Normal",
  43209. height: math.unit(4, "feet"),
  43210. default: true
  43211. },
  43212. ]
  43213. ))
  43214. characterMakers.push(() => makeCharacter(
  43215. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43216. {
  43217. front: {
  43218. height: math.unit(6 + 5/12, "feet"),
  43219. weight: math.unit(290, "lb"),
  43220. name: "Front",
  43221. image: {
  43222. source: "./media/characters/tiberius-thyben/front.svg",
  43223. extra: 757/739,
  43224. bottom: 39/796
  43225. }
  43226. },
  43227. },
  43228. [
  43229. {
  43230. name: "Micro",
  43231. height: math.unit(1.5, "inches")
  43232. },
  43233. {
  43234. name: "Normal",
  43235. height: math.unit(6 + 5/12, "feet"),
  43236. default: true
  43237. },
  43238. {
  43239. name: "Macro",
  43240. height: math.unit(300, "feet")
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(5 + 6/12, "feet"),
  43249. weight: math.unit(60, "kg"),
  43250. name: "Front",
  43251. image: {
  43252. source: "./media/characters/sabre/front.svg",
  43253. extra: 738/671,
  43254. bottom: 27/765
  43255. }
  43256. },
  43257. },
  43258. [
  43259. {
  43260. name: "Teeny",
  43261. height: math.unit(2, "inches")
  43262. },
  43263. {
  43264. name: "Smol",
  43265. height: math.unit(8, "inches")
  43266. },
  43267. {
  43268. name: "Normal",
  43269. height: math.unit(5 + 6/12, "feet"),
  43270. default: true
  43271. },
  43272. {
  43273. name: "Mini-Macro",
  43274. height: math.unit(15, "feet")
  43275. },
  43276. {
  43277. name: "Macro",
  43278. height: math.unit(50, "feet")
  43279. },
  43280. ]
  43281. ))
  43282. characterMakers.push(() => makeCharacter(
  43283. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43284. {
  43285. front: {
  43286. height: math.unit(6 + 4/12, "feet"),
  43287. weight: math.unit(170, "lb"),
  43288. name: "Front",
  43289. image: {
  43290. source: "./media/characters/charlie/front.svg",
  43291. extra: 1348/1228,
  43292. bottom: 15/1363
  43293. }
  43294. },
  43295. },
  43296. [
  43297. {
  43298. name: "Macro",
  43299. height: math.unit(1700, "meters"),
  43300. default: true
  43301. },
  43302. {
  43303. name: "MegaMacro",
  43304. height: math.unit(20400, "meters")
  43305. },
  43306. ]
  43307. ))
  43308. characterMakers.push(() => makeCharacter(
  43309. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43310. {
  43311. front: {
  43312. height: math.unit(6 + 3/12, "feet"),
  43313. weight: math.unit(185, "lb"),
  43314. name: "Front",
  43315. image: {
  43316. source: "./media/characters/susan-grant/front.svg",
  43317. extra: 1351/1327,
  43318. bottom: 26/1377
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Normal",
  43325. height: math.unit(6 + 3/12, "feet"),
  43326. default: true
  43327. },
  43328. {
  43329. name: "Macro",
  43330. height: math.unit(225, "feet")
  43331. },
  43332. {
  43333. name: "Macro+",
  43334. height: math.unit(900, "feet")
  43335. },
  43336. {
  43337. name: "MegaMacro",
  43338. height: math.unit(14400, "feet")
  43339. },
  43340. ]
  43341. ))
  43342. characterMakers.push(() => makeCharacter(
  43343. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43344. {
  43345. front: {
  43346. height: math.unit(5 + 4/12, "feet"),
  43347. weight: math.unit(110, "lb"),
  43348. name: "Front",
  43349. image: {
  43350. source: "./media/characters/axel-isanov/front.svg",
  43351. extra: 1096/1065,
  43352. bottom: 13/1109
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Normal",
  43359. height: math.unit(5 + 4/12, "feet"),
  43360. default: true
  43361. },
  43362. ]
  43363. ))
  43364. characterMakers.push(() => makeCharacter(
  43365. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43366. {
  43367. front: {
  43368. height: math.unit(9, "feet"),
  43369. weight: math.unit(467, "lb"),
  43370. name: "Front",
  43371. image: {
  43372. source: "./media/characters/necahual/front.svg",
  43373. extra: 920/873,
  43374. bottom: 26/946
  43375. }
  43376. },
  43377. back: {
  43378. height: math.unit(9, "feet"),
  43379. weight: math.unit(467, "lb"),
  43380. name: "Back",
  43381. image: {
  43382. source: "./media/characters/necahual/back.svg",
  43383. extra: 930/884,
  43384. bottom: 16/946
  43385. }
  43386. },
  43387. frontUnderwear: {
  43388. height: math.unit(9, "feet"),
  43389. weight: math.unit(467, "lb"),
  43390. name: "Front (Underwear)",
  43391. image: {
  43392. source: "./media/characters/necahual/front-underwear.svg",
  43393. extra: 920/873,
  43394. bottom: 26/946
  43395. }
  43396. },
  43397. frontDressed: {
  43398. height: math.unit(9, "feet"),
  43399. weight: math.unit(467, "lb"),
  43400. name: "Front (Dressed)",
  43401. image: {
  43402. source: "./media/characters/necahual/front-dressed.svg",
  43403. extra: 920/873,
  43404. bottom: 26/946
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Comprsesed",
  43411. height: math.unit(9, "feet")
  43412. },
  43413. {
  43414. name: "Natural",
  43415. height: math.unit(15, "feet"),
  43416. default: true
  43417. },
  43418. {
  43419. name: "Boosted",
  43420. height: math.unit(50, "feet")
  43421. },
  43422. {
  43423. name: "Boosted+",
  43424. height: math.unit(150, "feet")
  43425. },
  43426. {
  43427. name: "Max",
  43428. height: math.unit(500, "feet")
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43434. {
  43435. front: {
  43436. height: math.unit(22 + 1/12, "feet"),
  43437. weight: math.unit(3200, "lb"),
  43438. name: "Front",
  43439. image: {
  43440. source: "./media/characters/theo-acacia/front.svg",
  43441. extra: 1796/1741,
  43442. bottom: 83/1879
  43443. }
  43444. },
  43445. frontUnderwear: {
  43446. height: math.unit(22 + 1/12, "feet"),
  43447. weight: math.unit(3200, "lb"),
  43448. name: "Front (Underwear)",
  43449. image: {
  43450. source: "./media/characters/theo-acacia/front-underwear.svg",
  43451. extra: 1796/1741,
  43452. bottom: 83/1879
  43453. }
  43454. },
  43455. frontNude: {
  43456. height: math.unit(22 + 1/12, "feet"),
  43457. weight: math.unit(3200, "lb"),
  43458. name: "Front (Nude)",
  43459. image: {
  43460. source: "./media/characters/theo-acacia/front-nude.svg",
  43461. extra: 1796/1741,
  43462. bottom: 83/1879
  43463. }
  43464. },
  43465. },
  43466. [
  43467. {
  43468. name: "Normal",
  43469. height: math.unit(22 + 1/12, "feet"),
  43470. default: true
  43471. },
  43472. ]
  43473. ))
  43474. characterMakers.push(() => makeCharacter(
  43475. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43476. {
  43477. front: {
  43478. height: math.unit(20, "feet"),
  43479. name: "Front",
  43480. image: {
  43481. source: "./media/characters/astra/front.svg",
  43482. extra: 1850/1714,
  43483. bottom: 106/1956
  43484. }
  43485. },
  43486. frontUndressed: {
  43487. height: math.unit(20, "feet"),
  43488. name: "Front (Undressed)",
  43489. image: {
  43490. source: "./media/characters/astra/front-undressed.svg",
  43491. extra: 1926/1749,
  43492. bottom: 0/1926
  43493. }
  43494. },
  43495. hand: {
  43496. height: math.unit(1.53, "feet"),
  43497. name: "Hand",
  43498. image: {
  43499. source: "./media/characters/astra/hand.svg"
  43500. }
  43501. },
  43502. paw: {
  43503. height: math.unit(1.53, "feet"),
  43504. name: "Paw",
  43505. image: {
  43506. source: "./media/characters/astra/paw.svg"
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Smallest",
  43513. height: math.unit(20, "feet")
  43514. },
  43515. {
  43516. name: "Normal",
  43517. height: math.unit(1e9, "miles"),
  43518. default: true
  43519. },
  43520. {
  43521. name: "Larger",
  43522. height: math.unit(5, "multiverses")
  43523. },
  43524. {
  43525. name: "Largest",
  43526. height: math.unit(1e9, "multiverses")
  43527. },
  43528. ]
  43529. ))
  43530. characterMakers.push(() => makeCharacter(
  43531. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43532. {
  43533. front: {
  43534. height: math.unit(8, "feet"),
  43535. name: "Front",
  43536. image: {
  43537. source: "./media/characters/breanna/front.svg",
  43538. extra: 1912/1632,
  43539. bottom: 33/1945
  43540. }
  43541. },
  43542. },
  43543. [
  43544. {
  43545. name: "Smallest",
  43546. height: math.unit(8, "feet")
  43547. },
  43548. {
  43549. name: "Normal",
  43550. height: math.unit(1, "mile"),
  43551. default: true
  43552. },
  43553. {
  43554. name: "Maximum",
  43555. height: math.unit(1500000000000, "lightyears")
  43556. },
  43557. ]
  43558. ))
  43559. characterMakers.push(() => makeCharacter(
  43560. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43561. {
  43562. front: {
  43563. height: math.unit(5 + 11/12, "feet"),
  43564. weight: math.unit(155, "lb"),
  43565. name: "Front",
  43566. image: {
  43567. source: "./media/characters/cai/front.svg",
  43568. extra: 1823/1702,
  43569. bottom: 32/1855
  43570. }
  43571. },
  43572. back: {
  43573. height: math.unit(5 + 11/12, "feet"),
  43574. weight: math.unit(155, "lb"),
  43575. name: "Back",
  43576. image: {
  43577. source: "./media/characters/cai/back.svg",
  43578. extra: 1809/1708,
  43579. bottom: 31/1840
  43580. }
  43581. },
  43582. },
  43583. [
  43584. {
  43585. name: "Normal",
  43586. height: math.unit(5 + 11/12, "feet"),
  43587. default: true
  43588. },
  43589. {
  43590. name: "Big",
  43591. height: math.unit(15, "feet")
  43592. },
  43593. {
  43594. name: "Macro",
  43595. height: math.unit(200, "feet")
  43596. },
  43597. ]
  43598. ))
  43599. characterMakers.push(() => makeCharacter(
  43600. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43601. {
  43602. front: {
  43603. height: math.unit(5 + 6/12, "feet"),
  43604. weight: math.unit(160, "lb"),
  43605. name: "Front",
  43606. image: {
  43607. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43608. extra: 1227/1174,
  43609. bottom: 37/1264
  43610. }
  43611. },
  43612. },
  43613. [
  43614. {
  43615. name: "Macro",
  43616. height: math.unit(444, "meters"),
  43617. default: true
  43618. },
  43619. ]
  43620. ))
  43621. characterMakers.push(() => makeCharacter(
  43622. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43623. {
  43624. front: {
  43625. height: math.unit(18 + 7/12, "feet"),
  43626. name: "Front",
  43627. image: {
  43628. source: "./media/characters/rex/front.svg",
  43629. extra: 1941/1807,
  43630. bottom: 66/2007
  43631. }
  43632. },
  43633. back: {
  43634. height: math.unit(18 + 7/12, "feet"),
  43635. name: "Back",
  43636. image: {
  43637. source: "./media/characters/rex/back.svg",
  43638. extra: 1937/1822,
  43639. bottom: 42/1979
  43640. }
  43641. },
  43642. boot: {
  43643. height: math.unit(3.45, "feet"),
  43644. name: "Boot",
  43645. image: {
  43646. source: "./media/characters/rex/boot.svg"
  43647. }
  43648. },
  43649. paw: {
  43650. height: math.unit(4.17, "feet"),
  43651. name: "Paw",
  43652. image: {
  43653. source: "./media/characters/rex/paw.svg"
  43654. }
  43655. },
  43656. head: {
  43657. height: math.unit(6.728, "feet"),
  43658. name: "Head",
  43659. image: {
  43660. source: "./media/characters/rex/head.svg"
  43661. }
  43662. },
  43663. },
  43664. [
  43665. {
  43666. name: "Nano",
  43667. height: math.unit(18 + 7/12, "feet")
  43668. },
  43669. {
  43670. name: "Micro",
  43671. height: math.unit(1.5, "megameters")
  43672. },
  43673. {
  43674. name: "Normal",
  43675. height: math.unit(440, "megameters"),
  43676. default: true
  43677. },
  43678. {
  43679. name: "Macro",
  43680. height: math.unit(2.5, "gigameters")
  43681. },
  43682. {
  43683. name: "Gigamacro",
  43684. height: math.unit(2, "galaxies")
  43685. },
  43686. ]
  43687. ))
  43688. characterMakers.push(() => makeCharacter(
  43689. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43690. {
  43691. side: {
  43692. height: math.unit(32, "feet"),
  43693. weight: math.unit(250000, "lb"),
  43694. name: "Side",
  43695. image: {
  43696. source: "./media/characters/silverwing/side.svg",
  43697. extra: 1100/1019,
  43698. bottom: 204/1304
  43699. }
  43700. },
  43701. },
  43702. [
  43703. {
  43704. name: "Normal",
  43705. height: math.unit(32, "feet"),
  43706. default: true
  43707. },
  43708. ]
  43709. ))
  43710. characterMakers.push(() => makeCharacter(
  43711. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43712. {
  43713. front: {
  43714. height: math.unit(6 + 6/12, "feet"),
  43715. weight: math.unit(350, "lb"),
  43716. name: "Front",
  43717. image: {
  43718. source: "./media/characters/tristan-hawthorne/front.svg",
  43719. extra: 1159/1124,
  43720. bottom: 37/1196
  43721. },
  43722. form: "labrador",
  43723. default: true
  43724. },
  43725. skunkFront: {
  43726. height: math.unit(4 + 6/12, "feet"),
  43727. weight: math.unit(120, "lb"),
  43728. name: "Front",
  43729. image: {
  43730. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43731. extra: 1609/1551,
  43732. bottom: 169/1778
  43733. },
  43734. form: "skunk",
  43735. default: true
  43736. },
  43737. },
  43738. [
  43739. {
  43740. name: "Normal",
  43741. height: math.unit(6 + 6/12, "feet"),
  43742. form: "labrador",
  43743. default: true
  43744. },
  43745. {
  43746. name: "Normal",
  43747. height: math.unit(4 + 6/12, "feet"),
  43748. form: "skunk",
  43749. default: true
  43750. },
  43751. ],
  43752. {
  43753. "labrador": {
  43754. name: "Labrador",
  43755. default: true
  43756. },
  43757. "skunk": {
  43758. name: "Skunk"
  43759. }
  43760. }
  43761. ))
  43762. characterMakers.push(() => makeCharacter(
  43763. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43764. {
  43765. front: {
  43766. height: math.unit(5 + 11/12, "feet"),
  43767. weight: math.unit(190, "lb"),
  43768. name: "Front",
  43769. image: {
  43770. source: "./media/characters/mizu/front.svg",
  43771. extra: 1988/1788,
  43772. bottom: 14/2002
  43773. }
  43774. },
  43775. },
  43776. [
  43777. {
  43778. name: "Normal",
  43779. height: math.unit(5 + 11/12, "feet"),
  43780. default: true
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43786. {
  43787. front: {
  43788. height: math.unit(1.7, "feet"),
  43789. weight: math.unit(50, "lb"),
  43790. name: "Front",
  43791. image: {
  43792. source: "./media/characters/dechroma/front.svg",
  43793. extra: 1095/859,
  43794. bottom: 64/1159
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Normal",
  43801. height: math.unit(1.7, "feet"),
  43802. default: true
  43803. },
  43804. ]
  43805. ))
  43806. characterMakers.push(() => makeCharacter(
  43807. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43808. {
  43809. side: {
  43810. height: math.unit(30, "feet"),
  43811. name: "Side",
  43812. image: {
  43813. source: "./media/characters/veluren-thanazel/side.svg",
  43814. extra: 1611/633,
  43815. bottom: 118/1729
  43816. }
  43817. },
  43818. front: {
  43819. height: math.unit(30, "feet"),
  43820. name: "Front",
  43821. image: {
  43822. source: "./media/characters/veluren-thanazel/front.svg",
  43823. extra: 1486/636,
  43824. bottom: 238/1724
  43825. }
  43826. },
  43827. head: {
  43828. height: math.unit(21.4, "feet"),
  43829. name: "Head",
  43830. image: {
  43831. source: "./media/characters/veluren-thanazel/head.svg"
  43832. }
  43833. },
  43834. genitals: {
  43835. height: math.unit(19.4, "feet"),
  43836. name: "Genitals",
  43837. image: {
  43838. source: "./media/characters/veluren-thanazel/genitals.svg"
  43839. }
  43840. },
  43841. },
  43842. [
  43843. {
  43844. name: "Social",
  43845. height: math.unit(6, "feet")
  43846. },
  43847. {
  43848. name: "Play",
  43849. height: math.unit(12, "feet")
  43850. },
  43851. {
  43852. name: "True",
  43853. height: math.unit(30, "feet"),
  43854. default: true
  43855. },
  43856. ]
  43857. ))
  43858. characterMakers.push(() => makeCharacter(
  43859. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43860. {
  43861. front: {
  43862. height: math.unit(7 + 6/12, "feet"),
  43863. weight: math.unit(500, "kg"),
  43864. name: "Front",
  43865. image: {
  43866. source: "./media/characters/arcturas/front.svg",
  43867. extra: 1700/1500,
  43868. bottom: 145/1845
  43869. }
  43870. },
  43871. },
  43872. [
  43873. {
  43874. name: "Normal",
  43875. height: math.unit(7 + 6/12, "feet"),
  43876. default: true
  43877. },
  43878. ]
  43879. ))
  43880. characterMakers.push(() => makeCharacter(
  43881. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43882. {
  43883. side: {
  43884. height: math.unit(6, "feet"),
  43885. weight: math.unit(2, "tons"),
  43886. name: "Side",
  43887. image: {
  43888. source: "./media/characters/vitaen/side.svg",
  43889. extra: 1157/617,
  43890. bottom: 122/1279
  43891. }
  43892. },
  43893. },
  43894. [
  43895. {
  43896. name: "Normal",
  43897. height: math.unit(6, "feet"),
  43898. default: true
  43899. },
  43900. ]
  43901. ))
  43902. characterMakers.push(() => makeCharacter(
  43903. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43904. {
  43905. front: {
  43906. height: math.unit(19, "feet"),
  43907. name: "Front",
  43908. image: {
  43909. source: "./media/characters/fia-dreamweaver/front.svg",
  43910. extra: 1630/1504,
  43911. bottom: 25/1655
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Normal",
  43918. height: math.unit(19, "feet"),
  43919. default: true
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43925. {
  43926. front: {
  43927. height: math.unit(5 + 4/12, "feet"),
  43928. name: "Front",
  43929. image: {
  43930. source: "./media/characters/artan/front.svg",
  43931. extra: 1618/1535,
  43932. bottom: 46/1664
  43933. }
  43934. },
  43935. back: {
  43936. height: math.unit(5 + 4/12, "feet"),
  43937. name: "Back",
  43938. image: {
  43939. source: "./media/characters/artan/back.svg",
  43940. extra: 1618/1543,
  43941. bottom: 31/1649
  43942. }
  43943. },
  43944. },
  43945. [
  43946. {
  43947. name: "Normal",
  43948. height: math.unit(5 + 4/12, "feet"),
  43949. default: true
  43950. },
  43951. ]
  43952. ))
  43953. characterMakers.push(() => makeCharacter(
  43954. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43955. {
  43956. side: {
  43957. height: math.unit(182, "cm"),
  43958. weight: math.unit(1000, "lb"),
  43959. name: "Side",
  43960. image: {
  43961. source: "./media/characters/silver-dragon/side.svg",
  43962. extra: 710/287,
  43963. bottom: 88/798
  43964. }
  43965. },
  43966. },
  43967. [
  43968. {
  43969. name: "Normal",
  43970. height: math.unit(182, "cm"),
  43971. default: true
  43972. },
  43973. ]
  43974. ))
  43975. characterMakers.push(() => makeCharacter(
  43976. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43977. {
  43978. side: {
  43979. height: math.unit(6 + 6/12, "feet"),
  43980. weight: math.unit(1.5, "tons"),
  43981. name: "Side",
  43982. image: {
  43983. source: "./media/characters/zephyr/side.svg",
  43984. extra: 1433/586,
  43985. bottom: 109/1542
  43986. }
  43987. },
  43988. },
  43989. [
  43990. {
  43991. name: "Normal",
  43992. height: math.unit(6 + 6/12, "feet"),
  43993. default: true
  43994. },
  43995. ]
  43996. ))
  43997. characterMakers.push(() => makeCharacter(
  43998. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43999. {
  44000. side: {
  44001. height: math.unit(1, "feet"),
  44002. name: "Side",
  44003. image: {
  44004. source: "./media/characters/vixye/side.svg",
  44005. extra: 632/541,
  44006. bottom: 0/632
  44007. }
  44008. },
  44009. },
  44010. [
  44011. {
  44012. name: "Normal",
  44013. height: math.unit(1, "feet"),
  44014. default: true
  44015. },
  44016. {
  44017. name: "True",
  44018. height: math.unit(1e15, "multiverses")
  44019. },
  44020. ]
  44021. ))
  44022. characterMakers.push(() => makeCharacter(
  44023. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44024. {
  44025. front: {
  44026. height: math.unit(8 + 2/12, "feet"),
  44027. weight: math.unit(650, "lb"),
  44028. name: "Front",
  44029. image: {
  44030. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44031. extra: 1174/1137,
  44032. bottom: 82/1256
  44033. }
  44034. },
  44035. back: {
  44036. height: math.unit(8 + 2/12, "feet"),
  44037. weight: math.unit(650, "lb"),
  44038. name: "Back",
  44039. image: {
  44040. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44041. extra: 1204/1157,
  44042. bottom: 46/1250
  44043. }
  44044. },
  44045. },
  44046. [
  44047. {
  44048. name: "Wildform",
  44049. height: math.unit(8 + 2/12, "feet"),
  44050. default: true
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44056. {
  44057. front: {
  44058. height: math.unit(18, "feet"),
  44059. name: "Front",
  44060. image: {
  44061. source: "./media/characters/cyphin/front.svg",
  44062. extra: 970/886,
  44063. bottom: 42/1012
  44064. }
  44065. },
  44066. back: {
  44067. height: math.unit(18, "feet"),
  44068. name: "Back",
  44069. image: {
  44070. source: "./media/characters/cyphin/back.svg",
  44071. extra: 1009/894,
  44072. bottom: 24/1033
  44073. }
  44074. },
  44075. head: {
  44076. height: math.unit(5.05, "feet"),
  44077. name: "Head",
  44078. image: {
  44079. source: "./media/characters/cyphin/head.svg"
  44080. }
  44081. },
  44082. tailbud: {
  44083. height: math.unit(5, "feet"),
  44084. name: "Tailbud",
  44085. image: {
  44086. source: "./media/characters/cyphin/tailbud.svg"
  44087. }
  44088. },
  44089. },
  44090. [
  44091. ]
  44092. ))
  44093. characterMakers.push(() => makeCharacter(
  44094. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44095. {
  44096. side: {
  44097. height: math.unit(10, "feet"),
  44098. weight: math.unit(6, "tons"),
  44099. name: "Side",
  44100. image: {
  44101. source: "./media/characters/raijin/side.svg",
  44102. extra: 1529/613,
  44103. bottom: 337/1866
  44104. }
  44105. },
  44106. },
  44107. [
  44108. {
  44109. name: "Normal",
  44110. height: math.unit(10, "feet"),
  44111. default: true
  44112. },
  44113. ]
  44114. ))
  44115. characterMakers.push(() => makeCharacter(
  44116. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44117. {
  44118. side: {
  44119. height: math.unit(9, "feet"),
  44120. name: "Side",
  44121. image: {
  44122. source: "./media/characters/nilghais/side.svg",
  44123. extra: 1047/744,
  44124. bottom: 91/1138
  44125. }
  44126. },
  44127. head: {
  44128. height: math.unit(3.14, "feet"),
  44129. name: "Head",
  44130. image: {
  44131. source: "./media/characters/nilghais/head.svg"
  44132. }
  44133. },
  44134. mouth: {
  44135. height: math.unit(4.6, "feet"),
  44136. name: "Mouth",
  44137. image: {
  44138. source: "./media/characters/nilghais/mouth.svg"
  44139. }
  44140. },
  44141. wings: {
  44142. height: math.unit(24, "feet"),
  44143. name: "Wings",
  44144. image: {
  44145. source: "./media/characters/nilghais/wings.svg"
  44146. }
  44147. },
  44148. ass: {
  44149. height: math.unit(6.12, "feet"),
  44150. name: "Ass",
  44151. image: {
  44152. source: "./media/characters/nilghais/ass.svg"
  44153. }
  44154. },
  44155. },
  44156. [
  44157. {
  44158. name: "Normal",
  44159. height: math.unit(9, "feet"),
  44160. default: true
  44161. },
  44162. ]
  44163. ))
  44164. characterMakers.push(() => makeCharacter(
  44165. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44166. {
  44167. regular: {
  44168. height: math.unit(16 + 2/12, "feet"),
  44169. weight: math.unit(2300, "lb"),
  44170. name: "Regular",
  44171. image: {
  44172. source: "./media/characters/zolgar/regular.svg",
  44173. extra: 1246/1004,
  44174. bottom: 124/1370
  44175. }
  44176. },
  44177. boxers: {
  44178. height: math.unit(16 + 2/12, "feet"),
  44179. weight: math.unit(2300, "lb"),
  44180. name: "Boxers",
  44181. image: {
  44182. source: "./media/characters/zolgar/boxers.svg",
  44183. extra: 1246/1004,
  44184. bottom: 124/1370
  44185. }
  44186. },
  44187. armored: {
  44188. height: math.unit(16 + 2/12, "feet"),
  44189. weight: math.unit(2300, "lb"),
  44190. name: "Armored",
  44191. image: {
  44192. source: "./media/characters/zolgar/armored.svg",
  44193. extra: 1246/1004,
  44194. bottom: 124/1370
  44195. }
  44196. },
  44197. goth: {
  44198. height: math.unit(16 + 2/12, "feet"),
  44199. weight: math.unit(2300, "lb"),
  44200. name: "Goth",
  44201. image: {
  44202. source: "./media/characters/zolgar/goth.svg",
  44203. extra: 1246/1004,
  44204. bottom: 124/1370
  44205. }
  44206. },
  44207. },
  44208. [
  44209. {
  44210. name: "Shrunken Down",
  44211. height: math.unit(9 + 2/12, "feet")
  44212. },
  44213. {
  44214. name: "Normal",
  44215. height: math.unit(16 + 2/12, "feet"),
  44216. default: true
  44217. },
  44218. ]
  44219. ))
  44220. characterMakers.push(() => makeCharacter(
  44221. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44222. {
  44223. front: {
  44224. height: math.unit(6, "feet"),
  44225. weight: math.unit(168, "lb"),
  44226. name: "Front",
  44227. image: {
  44228. source: "./media/characters/luca/front.svg",
  44229. extra: 841/667,
  44230. bottom: 102/943
  44231. }
  44232. },
  44233. },
  44234. [
  44235. {
  44236. name: "Normal",
  44237. height: math.unit(6, "feet"),
  44238. default: true
  44239. },
  44240. ]
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44244. {
  44245. side: {
  44246. height: math.unit(7 + 3/12, "feet"),
  44247. weight: math.unit(312, "lb"),
  44248. name: "Side",
  44249. image: {
  44250. source: "./media/characters/zezo/side.svg",
  44251. extra: 1192/1067,
  44252. bottom: 63/1255
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(7 + 3/12, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(5 + 5/12, "feet"),
  44269. weight: math.unit(170, "lb"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/mayso/front.svg",
  44273. extra: 1215/1108,
  44274. bottom: 16/1231
  44275. }
  44276. },
  44277. },
  44278. [
  44279. {
  44280. name: "Normal",
  44281. height: math.unit(5 + 5/12, "feet"),
  44282. default: true
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44288. {
  44289. front: {
  44290. height: math.unit(4 + 3/12, "feet"),
  44291. weight: math.unit(80, "lb"),
  44292. name: "Front",
  44293. image: {
  44294. source: "./media/characters/hess/front.svg",
  44295. extra: 1200/1123,
  44296. bottom: 16/1216
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(4 + 3/12, "feet"),
  44304. default: true
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44310. {
  44311. front: {
  44312. height: math.unit(1.9, "meters"),
  44313. name: "Front",
  44314. image: {
  44315. source: "./media/characters/ashgar/front.svg",
  44316. extra: 1177/1146,
  44317. bottom: 99/1276
  44318. }
  44319. },
  44320. back: {
  44321. height: math.unit(1.9, "meters"),
  44322. name: "Back",
  44323. image: {
  44324. source: "./media/characters/ashgar/back.svg",
  44325. extra: 1201/1183,
  44326. bottom: 53/1254
  44327. }
  44328. },
  44329. feral: {
  44330. height: math.unit(1.4, "meters"),
  44331. name: "Feral",
  44332. image: {
  44333. source: "./media/characters/ashgar/feral.svg",
  44334. extra: 370/345,
  44335. bottom: 45/415
  44336. }
  44337. },
  44338. },
  44339. [
  44340. {
  44341. name: "Normal",
  44342. height: math.unit(1.9, "meters"),
  44343. default: true
  44344. },
  44345. ]
  44346. ))
  44347. characterMakers.push(() => makeCharacter(
  44348. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44349. {
  44350. regular: {
  44351. height: math.unit(6, "feet"),
  44352. weight: math.unit(220, "lb"),
  44353. name: "Regular",
  44354. image: {
  44355. source: "./media/characters/phillip/regular.svg",
  44356. extra: 1373/1277,
  44357. bottom: 75/1448
  44358. }
  44359. },
  44360. dressed: {
  44361. height: math.unit(6, "feet"),
  44362. weight: math.unit(220, "lb"),
  44363. name: "Dressed",
  44364. image: {
  44365. source: "./media/characters/phillip/dressed.svg",
  44366. extra: 1373/1277,
  44367. bottom: 75/1448
  44368. }
  44369. },
  44370. paw: {
  44371. height: math.unit(1.44, "feet"),
  44372. name: "Paw",
  44373. image: {
  44374. source: "./media/characters/phillip/paw.svg"
  44375. }
  44376. },
  44377. },
  44378. [
  44379. {
  44380. name: "Normal",
  44381. height: math.unit(6, "feet"),
  44382. default: true
  44383. },
  44384. ]
  44385. ))
  44386. characterMakers.push(() => makeCharacter(
  44387. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44388. {
  44389. side: {
  44390. height: math.unit(42, "feet"),
  44391. name: "Side",
  44392. image: {
  44393. source: "./media/characters/uvula/side.svg",
  44394. extra: 683/586,
  44395. bottom: 60/743
  44396. }
  44397. },
  44398. front: {
  44399. height: math.unit(42, "feet"),
  44400. name: "Front",
  44401. image: {
  44402. source: "./media/characters/uvula/front.svg",
  44403. extra: 705/613,
  44404. bottom: 54/759
  44405. }
  44406. },
  44407. maw: {
  44408. height: math.unit(23.5, "feet"),
  44409. name: "Maw",
  44410. image: {
  44411. source: "./media/characters/uvula/maw.svg"
  44412. }
  44413. },
  44414. },
  44415. [
  44416. {
  44417. name: "Original Size",
  44418. height: math.unit(14, "inches")
  44419. },
  44420. {
  44421. name: "Human Size",
  44422. height: math.unit(6, "feet")
  44423. },
  44424. {
  44425. name: "Big",
  44426. height: math.unit(42, "feet"),
  44427. default: true
  44428. },
  44429. {
  44430. name: "Bigger",
  44431. height: math.unit(100, "feet")
  44432. },
  44433. ]
  44434. ))
  44435. characterMakers.push(() => makeCharacter(
  44436. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44437. {
  44438. front: {
  44439. height: math.unit(5 + 11/12, "feet"),
  44440. name: "Front",
  44441. image: {
  44442. source: "./media/characters/lannah/front.svg",
  44443. extra: 1208/1113,
  44444. bottom: 97/1305
  44445. }
  44446. },
  44447. },
  44448. [
  44449. {
  44450. name: "Normal",
  44451. height: math.unit(5 + 11/12, "feet"),
  44452. default: true
  44453. },
  44454. ]
  44455. ))
  44456. characterMakers.push(() => makeCharacter(
  44457. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44458. {
  44459. front: {
  44460. height: math.unit(6 + 3/12, "feet"),
  44461. weight: math.unit(3.5, "tons"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/emberflame/front.svg",
  44465. extra: 1198/672,
  44466. bottom: 82/1280
  44467. }
  44468. },
  44469. side: {
  44470. height: math.unit(6 + 3/12, "feet"),
  44471. weight: math.unit(3.5, "tons"),
  44472. name: "Side",
  44473. image: {
  44474. source: "./media/characters/emberflame/side.svg",
  44475. extra: 938/527,
  44476. bottom: 56/994
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(6 + 3/12, "feet"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44490. {
  44491. side: {
  44492. height: math.unit(17.5, "feet"),
  44493. weight: math.unit(35, "tons"),
  44494. name: "Side",
  44495. image: {
  44496. source: "./media/characters/sophie-ambrose/side.svg",
  44497. extra: 1573/1242,
  44498. bottom: 71/1644
  44499. }
  44500. },
  44501. maw: {
  44502. height: math.unit(7.4, "feet"),
  44503. name: "Maw",
  44504. image: {
  44505. source: "./media/characters/sophie-ambrose/maw.svg"
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Normal",
  44512. height: math.unit(17.5, "feet"),
  44513. default: true
  44514. },
  44515. ]
  44516. ))
  44517. characterMakers.push(() => makeCharacter(
  44518. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44519. {
  44520. front: {
  44521. height: math.unit(280, "feet"),
  44522. weight: math.unit(550, "tons"),
  44523. name: "Front",
  44524. image: {
  44525. source: "./media/characters/king-mugi/front.svg",
  44526. extra: 1102/947,
  44527. bottom: 104/1206
  44528. }
  44529. },
  44530. },
  44531. [
  44532. {
  44533. name: "King Mugi",
  44534. height: math.unit(280, "feet"),
  44535. default: true
  44536. },
  44537. ]
  44538. ))
  44539. characterMakers.push(() => makeCharacter(
  44540. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44541. {
  44542. front: {
  44543. height: math.unit(64, "meters"),
  44544. name: "Front",
  44545. image: {
  44546. source: "./media/characters/nova-fox/front.svg",
  44547. extra: 1310/1246,
  44548. bottom: 65/1375
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Macro",
  44555. height: math.unit(64, "meters"),
  44556. default: true
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44562. {
  44563. front: {
  44564. height: math.unit(6 + 3/12, "feet"),
  44565. weight: math.unit(170, "lb"),
  44566. name: "Front",
  44567. image: {
  44568. source: "./media/characters/sam-bat/front.svg",
  44569. extra: 1601/1411,
  44570. bottom: 125/1726
  44571. }
  44572. },
  44573. back: {
  44574. height: math.unit(6 + 3/12, "feet"),
  44575. weight: math.unit(170, "lb"),
  44576. name: "Back",
  44577. image: {
  44578. source: "./media/characters/sam-bat/back.svg",
  44579. extra: 1577/1405,
  44580. bottom: 58/1635
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(6 + 3/12, "feet"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44594. {
  44595. front: {
  44596. height: math.unit(59, "feet"),
  44597. weight: math.unit(40000, "lb"),
  44598. name: "Front",
  44599. image: {
  44600. source: "./media/characters/inari/front.svg",
  44601. extra: 1884/1350,
  44602. bottom: 95/1979
  44603. }
  44604. },
  44605. },
  44606. [
  44607. {
  44608. name: "Gigantamax",
  44609. height: math.unit(59, "feet"),
  44610. default: true
  44611. },
  44612. ]
  44613. ))
  44614. characterMakers.push(() => makeCharacter(
  44615. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44616. {
  44617. front: {
  44618. height: math.unit(5 + 8/12, "feet"),
  44619. name: "Front",
  44620. image: {
  44621. source: "./media/characters/elizabeth/front.svg",
  44622. extra: 1395/1298,
  44623. bottom: 54/1449
  44624. }
  44625. },
  44626. mouth: {
  44627. height: math.unit(1.97, "feet"),
  44628. name: "Mouth",
  44629. image: {
  44630. source: "./media/characters/elizabeth/mouth.svg"
  44631. }
  44632. },
  44633. foot: {
  44634. height: math.unit(1.17, "feet"),
  44635. name: "Foot",
  44636. image: {
  44637. source: "./media/characters/elizabeth/foot.svg"
  44638. }
  44639. },
  44640. },
  44641. [
  44642. {
  44643. name: "Normal",
  44644. height: math.unit(5 + 8/12, "feet"),
  44645. default: true
  44646. },
  44647. {
  44648. name: "Minimacro",
  44649. height: math.unit(18, "feet")
  44650. },
  44651. {
  44652. name: "Macro",
  44653. height: math.unit(180, "feet")
  44654. },
  44655. ]
  44656. ))
  44657. characterMakers.push(() => makeCharacter(
  44658. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44659. {
  44660. front: {
  44661. height: math.unit(5 + 2/12, "feet"),
  44662. name: "Front",
  44663. image: {
  44664. source: "./media/characters/october-gossamer/front.svg",
  44665. extra: 505/454,
  44666. bottom: 7/512
  44667. }
  44668. },
  44669. back: {
  44670. height: math.unit(5 + 2/12, "feet"),
  44671. name: "Back",
  44672. image: {
  44673. source: "./media/characters/october-gossamer/back.svg",
  44674. extra: 501/454,
  44675. bottom: 11/512
  44676. }
  44677. },
  44678. },
  44679. [
  44680. {
  44681. name: "Normal",
  44682. height: math.unit(5 + 2/12, "feet"),
  44683. default: true
  44684. },
  44685. ]
  44686. ))
  44687. characterMakers.push(() => makeCharacter(
  44688. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44689. {
  44690. front: {
  44691. height: math.unit(5, "feet"),
  44692. name: "Front",
  44693. image: {
  44694. source: "./media/characters/epiglottis/front.svg",
  44695. extra: 923/849,
  44696. bottom: 17/940
  44697. }
  44698. },
  44699. },
  44700. [
  44701. {
  44702. name: "Original Size",
  44703. height: math.unit(10, "inches")
  44704. },
  44705. {
  44706. name: "Human Size",
  44707. height: math.unit(5, "feet"),
  44708. default: true
  44709. },
  44710. {
  44711. name: "Big",
  44712. height: math.unit(25, "feet")
  44713. },
  44714. {
  44715. name: "Bigger",
  44716. height: math.unit(50, "feet")
  44717. },
  44718. {
  44719. name: "oh lawd",
  44720. height: math.unit(75, "feet")
  44721. },
  44722. ]
  44723. ))
  44724. characterMakers.push(() => makeCharacter(
  44725. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44726. {
  44727. front: {
  44728. height: math.unit(2 + 4/12, "feet"),
  44729. weight: math.unit(60, "lb"),
  44730. name: "Front",
  44731. image: {
  44732. source: "./media/characters/lerm/front.svg",
  44733. extra: 796/790,
  44734. bottom: 79/875
  44735. }
  44736. },
  44737. },
  44738. [
  44739. {
  44740. name: "Normal",
  44741. height: math.unit(2 + 4/12, "feet"),
  44742. default: true
  44743. },
  44744. ]
  44745. ))
  44746. characterMakers.push(() => makeCharacter(
  44747. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44748. {
  44749. front: {
  44750. height: math.unit(5.5, "feet"),
  44751. weight: math.unit(130, "lb"),
  44752. name: "Front",
  44753. image: {
  44754. source: "./media/characters/xena-nebadon/front.svg",
  44755. extra: 1828/1730,
  44756. bottom: 79/1907
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Tiny Puppy",
  44763. height: math.unit(3, "inches")
  44764. },
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(5.5, "feet"),
  44768. default: true
  44769. },
  44770. {
  44771. name: "Lotta Lady",
  44772. height: math.unit(12, "feet")
  44773. },
  44774. {
  44775. name: "Pretty Big",
  44776. height: math.unit(100, "feet")
  44777. },
  44778. {
  44779. name: "Big",
  44780. height: math.unit(500, "feet")
  44781. },
  44782. {
  44783. name: "Skyscraper Toys",
  44784. height: math.unit(2500, "feet")
  44785. },
  44786. {
  44787. name: "Plane Catcher",
  44788. height: math.unit(8, "miles")
  44789. },
  44790. {
  44791. name: "Planet Toys",
  44792. height: math.unit(15, "earths")
  44793. },
  44794. {
  44795. name: "Stardust",
  44796. height: math.unit(0.25, "galaxies")
  44797. },
  44798. {
  44799. name: "Snacks",
  44800. height: math.unit(70, "universes")
  44801. },
  44802. ]
  44803. ))
  44804. characterMakers.push(() => makeCharacter(
  44805. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44806. {
  44807. front: {
  44808. height: math.unit(1.6, "meters"),
  44809. weight: math.unit(60, "kg"),
  44810. name: "Front",
  44811. image: {
  44812. source: "./media/characters/bounty/front.svg",
  44813. extra: 1426/1308,
  44814. bottom: 15/1441
  44815. }
  44816. },
  44817. back: {
  44818. height: math.unit(1.6, "meters"),
  44819. weight: math.unit(60, "kg"),
  44820. name: "Back",
  44821. image: {
  44822. source: "./media/characters/bounty/back.svg",
  44823. extra: 1417/1307,
  44824. bottom: 8/1425
  44825. }
  44826. },
  44827. },
  44828. [
  44829. {
  44830. name: "Normal",
  44831. height: math.unit(1.6, "meters"),
  44832. default: true
  44833. },
  44834. {
  44835. name: "Macro",
  44836. height: math.unit(300, "meters")
  44837. },
  44838. ]
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44842. {
  44843. front: {
  44844. height: math.unit(2 + 8/12, "feet"),
  44845. weight: math.unit(15, "lb"),
  44846. name: "Front",
  44847. image: {
  44848. source: "./media/characters/mochi/front.svg",
  44849. extra: 1022/852,
  44850. bottom: 435/1457
  44851. }
  44852. },
  44853. back: {
  44854. height: math.unit(2 + 8/12, "feet"),
  44855. weight: math.unit(15, "lb"),
  44856. name: "Back",
  44857. image: {
  44858. source: "./media/characters/mochi/back.svg",
  44859. extra: 1335/1119,
  44860. bottom: 39/1374
  44861. }
  44862. },
  44863. bird: {
  44864. height: math.unit(2 + 8/12, "feet"),
  44865. weight: math.unit(15, "lb"),
  44866. name: "Bird",
  44867. image: {
  44868. source: "./media/characters/mochi/bird.svg",
  44869. extra: 1251/1113,
  44870. bottom: 178/1429
  44871. }
  44872. },
  44873. kaiju: {
  44874. height: math.unit(154, "feet"),
  44875. weight: math.unit(1e7, "lb"),
  44876. name: "Kaiju",
  44877. image: {
  44878. source: "./media/characters/mochi/kaiju.svg",
  44879. extra: 460/324,
  44880. bottom: 40/500
  44881. }
  44882. },
  44883. head: {
  44884. height: math.unit(1.21, "feet"),
  44885. name: "Head",
  44886. image: {
  44887. source: "./media/characters/mochi/head.svg"
  44888. }
  44889. },
  44890. alternateTail: {
  44891. height: math.unit(2 + 8/12, "feet"),
  44892. weight: math.unit(45, "lb"),
  44893. name: "Alternate Tail",
  44894. image: {
  44895. source: "./media/characters/mochi/alternate-tail.svg",
  44896. extra: 139/76,
  44897. bottom: 45/184
  44898. }
  44899. },
  44900. },
  44901. [
  44902. {
  44903. name: "Micro",
  44904. height: math.unit(2, "inches")
  44905. },
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(2 + 8/12, "feet"),
  44909. default: true
  44910. },
  44911. {
  44912. name: "Macro",
  44913. height: math.unit(106, "feet")
  44914. },
  44915. ]
  44916. ))
  44917. characterMakers.push(() => makeCharacter(
  44918. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44919. {
  44920. front: {
  44921. height: math.unit(5.67, "feet"),
  44922. weight: math.unit(135, "lb"),
  44923. name: "Front",
  44924. image: {
  44925. source: "./media/characters/sarel/front.svg",
  44926. extra: 865/788,
  44927. bottom: 97/962
  44928. }
  44929. },
  44930. back: {
  44931. height: math.unit(5.67, "feet"),
  44932. weight: math.unit(135, "lb"),
  44933. name: "Back",
  44934. image: {
  44935. source: "./media/characters/sarel/back.svg",
  44936. extra: 857/777,
  44937. bottom: 32/889
  44938. }
  44939. },
  44940. chozoan: {
  44941. height: math.unit(5.67, "feet"),
  44942. weight: math.unit(135, "lb"),
  44943. name: "Chozoan",
  44944. image: {
  44945. source: "./media/characters/sarel/chozoan.svg",
  44946. extra: 865/788,
  44947. bottom: 97/962
  44948. }
  44949. },
  44950. current: {
  44951. height: math.unit(5.67, "feet"),
  44952. weight: math.unit(135, "lb"),
  44953. name: "Current",
  44954. image: {
  44955. source: "./media/characters/sarel/current.svg",
  44956. extra: 865/788,
  44957. bottom: 97/962
  44958. }
  44959. },
  44960. head: {
  44961. height: math.unit(1.77, "feet"),
  44962. name: "Head",
  44963. image: {
  44964. source: "./media/characters/sarel/head.svg"
  44965. }
  44966. },
  44967. claws: {
  44968. height: math.unit(1.8, "feet"),
  44969. name: "Claws",
  44970. image: {
  44971. source: "./media/characters/sarel/claws.svg"
  44972. }
  44973. },
  44974. clawsAlt: {
  44975. height: math.unit(1.8, "feet"),
  44976. name: "Claws-alt",
  44977. image: {
  44978. source: "./media/characters/sarel/claws-alt.svg"
  44979. }
  44980. },
  44981. },
  44982. [
  44983. {
  44984. name: "Normal",
  44985. height: math.unit(5.67, "feet"),
  44986. default: true
  44987. },
  44988. ]
  44989. ))
  44990. characterMakers.push(() => makeCharacter(
  44991. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44992. {
  44993. front: {
  44994. height: math.unit(5500, "feet"),
  44995. name: "Front",
  44996. image: {
  44997. source: "./media/characters/alyonia/front.svg",
  44998. extra: 1200/1135,
  44999. bottom: 29/1229
  45000. }
  45001. },
  45002. back: {
  45003. height: math.unit(5500, "feet"),
  45004. name: "Back",
  45005. image: {
  45006. source: "./media/characters/alyonia/back.svg",
  45007. extra: 1205/1138,
  45008. bottom: 10/1215
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Small",
  45015. height: math.unit(10, "feet")
  45016. },
  45017. {
  45018. name: "Macro",
  45019. height: math.unit(500, "feet")
  45020. },
  45021. {
  45022. name: "Mega Macro",
  45023. height: math.unit(5500, "feet"),
  45024. default: true
  45025. },
  45026. {
  45027. name: "Mega Macro+",
  45028. height: math.unit(500000, "feet")
  45029. },
  45030. {
  45031. name: "Giga Macro",
  45032. height: math.unit(3000, "miles")
  45033. },
  45034. {
  45035. name: "Tera Macro",
  45036. height: math.unit(2.8e6, "miles")
  45037. },
  45038. {
  45039. name: "Galactic",
  45040. height: math.unit(120000, "lightyears")
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45046. {
  45047. werewolf: {
  45048. height: math.unit(8, "feet"),
  45049. weight: math.unit(425, "lb"),
  45050. name: "Werewolf",
  45051. image: {
  45052. source: "./media/characters/autumn/werewolf.svg",
  45053. extra: 2154/2031,
  45054. bottom: 160/2314
  45055. }
  45056. },
  45057. human: {
  45058. height: math.unit(5 + 8/12, "feet"),
  45059. weight: math.unit(150, "lb"),
  45060. name: "Human",
  45061. image: {
  45062. source: "./media/characters/autumn/human.svg",
  45063. extra: 1200/1149,
  45064. bottom: 30/1230
  45065. }
  45066. },
  45067. },
  45068. [
  45069. {
  45070. name: "Normal",
  45071. height: math.unit(8, "feet"),
  45072. default: true
  45073. },
  45074. ]
  45075. ))
  45076. characterMakers.push(() => makeCharacter(
  45077. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45078. {
  45079. front: {
  45080. height: math.unit(8 + 5/12, "feet"),
  45081. weight: math.unit(825, "lb"),
  45082. name: "Front",
  45083. image: {
  45084. source: "./media/characters/cobalt-charizard/front.svg",
  45085. extra: 1268/1155,
  45086. bottom: 122/1390
  45087. }
  45088. },
  45089. side: {
  45090. height: math.unit(8 + 5/12, "feet"),
  45091. weight: math.unit(825, "lb"),
  45092. name: "Side",
  45093. image: {
  45094. source: "./media/characters/cobalt-charizard/side.svg",
  45095. extra: 1348/1257,
  45096. bottom: 58/1406
  45097. }
  45098. },
  45099. gMax: {
  45100. height: math.unit(134 + 11/12, "feet"),
  45101. name: "G-Max",
  45102. image: {
  45103. source: "./media/characters/cobalt-charizard/g-max.svg",
  45104. extra: 1835/1541,
  45105. bottom: 151/1986
  45106. }
  45107. },
  45108. },
  45109. [
  45110. {
  45111. name: "Normal",
  45112. height: math.unit(8 + 5/12, "feet"),
  45113. default: true
  45114. },
  45115. ]
  45116. ))
  45117. characterMakers.push(() => makeCharacter(
  45118. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45119. {
  45120. front: {
  45121. height: math.unit(6 + 3/12, "feet"),
  45122. weight: math.unit(210, "lb"),
  45123. name: "Front",
  45124. image: {
  45125. source: "./media/characters/stella/front.svg",
  45126. extra: 3549/3335,
  45127. bottom: 51/3600
  45128. }
  45129. },
  45130. },
  45131. [
  45132. {
  45133. name: "Normal",
  45134. height: math.unit(6 + 3/12, "feet"),
  45135. default: true
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(5, "feet"),
  45144. weight: math.unit(90, "lb"),
  45145. name: "Front",
  45146. image: {
  45147. source: "./media/characters/riley-bishop/front.svg",
  45148. extra: 1450/1428,
  45149. bottom: 152/1602
  45150. }
  45151. },
  45152. },
  45153. [
  45154. {
  45155. name: "Normal",
  45156. height: math.unit(5, "feet"),
  45157. default: true
  45158. },
  45159. ]
  45160. ))
  45161. characterMakers.push(() => makeCharacter(
  45162. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45163. {
  45164. side: {
  45165. height: math.unit(8 + 2/12, "feet"),
  45166. weight: math.unit(500, "kg"),
  45167. name: "Side",
  45168. image: {
  45169. source: "./media/characters/theo-arcanine/side.svg",
  45170. extra: 1342/1074,
  45171. bottom: 111/1453
  45172. }
  45173. },
  45174. },
  45175. [
  45176. {
  45177. name: "Normal",
  45178. height: math.unit(8 + 2/12, "feet"),
  45179. default: true
  45180. },
  45181. ]
  45182. ))
  45183. characterMakers.push(() => makeCharacter(
  45184. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45185. {
  45186. front: {
  45187. height: math.unit(4, "feet"),
  45188. name: "Front",
  45189. image: {
  45190. source: "./media/characters/kali/front.svg",
  45191. extra: 1921/1357,
  45192. bottom: 70/1991
  45193. }
  45194. },
  45195. },
  45196. [
  45197. {
  45198. name: "Normal",
  45199. height: math.unit(4, "feet"),
  45200. default: true
  45201. },
  45202. {
  45203. name: "Macro",
  45204. height: math.unit(32, "meters")
  45205. },
  45206. {
  45207. name: "Macro+",
  45208. height: math.unit(150, "meters")
  45209. },
  45210. {
  45211. name: "Megamacro",
  45212. height: math.unit(7500, "meters")
  45213. },
  45214. {
  45215. name: "Megamacro+",
  45216. height: math.unit(80, "kilometers")
  45217. },
  45218. ]
  45219. ))
  45220. characterMakers.push(() => makeCharacter(
  45221. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45222. {
  45223. side: {
  45224. height: math.unit(5 + 11/12, "feet"),
  45225. weight: math.unit(236, "lb"),
  45226. name: "Side",
  45227. image: {
  45228. source: "./media/characters/gapp/side.svg",
  45229. extra: 775/340,
  45230. bottom: 58/833
  45231. }
  45232. },
  45233. mouth: {
  45234. height: math.unit(2.98, "feet"),
  45235. name: "Mouth",
  45236. image: {
  45237. source: "./media/characters/gapp/mouth.svg"
  45238. }
  45239. },
  45240. },
  45241. [
  45242. {
  45243. name: "Normal",
  45244. height: math.unit(5 + 1/12, "feet"),
  45245. default: true
  45246. },
  45247. ]
  45248. ))
  45249. characterMakers.push(() => makeCharacter(
  45250. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45251. {
  45252. front: {
  45253. height: math.unit(6, "feet"),
  45254. name: "Front",
  45255. image: {
  45256. source: "./media/characters/persephone/front.svg",
  45257. extra: 1895/1717,
  45258. bottom: 96/1991
  45259. }
  45260. },
  45261. back: {
  45262. height: math.unit(6, "feet"),
  45263. name: "Back",
  45264. image: {
  45265. source: "./media/characters/persephone/back.svg",
  45266. extra: 1868/1679,
  45267. bottom: 26/1894
  45268. }
  45269. },
  45270. casual: {
  45271. height: math.unit(6, "feet"),
  45272. name: "Casual",
  45273. image: {
  45274. source: "./media/characters/persephone/casual.svg",
  45275. extra: 1713/1541,
  45276. bottom: 76/1789
  45277. }
  45278. },
  45279. },
  45280. [
  45281. {
  45282. name: "Human Size",
  45283. height: math.unit(6, "feet")
  45284. },
  45285. {
  45286. name: "Big Steppy",
  45287. height: math.unit(600, "meters"),
  45288. default: true
  45289. },
  45290. {
  45291. name: "Galaxy Brain",
  45292. height: math.unit(1, "zettameter")
  45293. },
  45294. ]
  45295. ))
  45296. characterMakers.push(() => makeCharacter(
  45297. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45298. {
  45299. front: {
  45300. height: math.unit(1.85, "meters"),
  45301. name: "Front",
  45302. image: {
  45303. source: "./media/characters/riley-foxthing/front.svg",
  45304. extra: 1495/1354,
  45305. bottom: 122/1617
  45306. }
  45307. },
  45308. frontAlt: {
  45309. height: math.unit(1.85, "meters"),
  45310. name: "Front (Alt)",
  45311. image: {
  45312. source: "./media/characters/riley-foxthing/front-alt.svg",
  45313. extra: 1572/1389,
  45314. bottom: 116/1688
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Normal Sized",
  45321. height: math.unit(1.85, "meters"),
  45322. default: true
  45323. },
  45324. {
  45325. name: "Quite Sizable",
  45326. height: math.unit(5, "meters")
  45327. },
  45328. {
  45329. name: "Rather Large",
  45330. height: math.unit(20, "meters")
  45331. },
  45332. {
  45333. name: "Macro",
  45334. height: math.unit(450, "meters")
  45335. },
  45336. {
  45337. name: "Giga",
  45338. height: math.unit(5, "km")
  45339. },
  45340. ]
  45341. ))
  45342. characterMakers.push(() => makeCharacter(
  45343. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45344. {
  45345. front: {
  45346. height: math.unit(6, "feet"),
  45347. weight: math.unit(200, "lb"),
  45348. name: "Front",
  45349. image: {
  45350. source: "./media/characters/blizzard/front.svg",
  45351. extra: 1136/990,
  45352. bottom: 136/1272
  45353. }
  45354. },
  45355. back: {
  45356. height: math.unit(6, "feet"),
  45357. weight: math.unit(200, "lb"),
  45358. name: "Back",
  45359. image: {
  45360. source: "./media/characters/blizzard/back.svg",
  45361. extra: 1175/1034,
  45362. bottom: 97/1272
  45363. }
  45364. },
  45365. sitting: {
  45366. height: math.unit(3.725, "feet"),
  45367. weight: math.unit(200, "lb"),
  45368. name: "Sitting",
  45369. image: {
  45370. source: "./media/characters/blizzard/sitting.svg",
  45371. extra: 581/485,
  45372. bottom: 90/671
  45373. }
  45374. },
  45375. frontWizard: {
  45376. height: math.unit(7.9, "feet"),
  45377. weight: math.unit(200, "lb"),
  45378. name: "Front (Wizard)",
  45379. image: {
  45380. source: "./media/characters/blizzard/front-wizard.svg"
  45381. }
  45382. },
  45383. backWizard: {
  45384. height: math.unit(7.9, "feet"),
  45385. weight: math.unit(200, "lb"),
  45386. name: "Back (Wizard)",
  45387. image: {
  45388. source: "./media/characters/blizzard/back-wizard.svg"
  45389. }
  45390. },
  45391. frontNsfw: {
  45392. height: math.unit(6, "feet"),
  45393. weight: math.unit(200, "lb"),
  45394. name: "Front (NSFW)",
  45395. image: {
  45396. source: "./media/characters/blizzard/front-nsfw.svg",
  45397. extra: 1136/990,
  45398. bottom: 136/1272
  45399. }
  45400. },
  45401. backNsfw: {
  45402. height: math.unit(6, "feet"),
  45403. weight: math.unit(200, "lb"),
  45404. name: "Back (NSFW)",
  45405. image: {
  45406. source: "./media/characters/blizzard/back-nsfw.svg",
  45407. extra: 1175/1034,
  45408. bottom: 97/1272
  45409. }
  45410. },
  45411. sittingNsfw: {
  45412. height: math.unit(3.725, "feet"),
  45413. weight: math.unit(200, "lb"),
  45414. name: "Sitting (NSFW)",
  45415. image: {
  45416. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45417. extra: 581/485,
  45418. bottom: 90/671
  45419. }
  45420. },
  45421. wizardFrontNsfw: {
  45422. height: math.unit(7.9, "feet"),
  45423. weight: math.unit(200, "lb"),
  45424. name: "Wizard (Front, NSFW)",
  45425. image: {
  45426. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45427. }
  45428. },
  45429. },
  45430. [
  45431. {
  45432. name: "Normal",
  45433. height: math.unit(6, "feet"),
  45434. default: true
  45435. },
  45436. ]
  45437. ))
  45438. characterMakers.push(() => makeCharacter(
  45439. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45440. {
  45441. front: {
  45442. height: math.unit(5 + 2/12, "feet"),
  45443. name: "Front",
  45444. image: {
  45445. source: "./media/characters/lumi/front.svg",
  45446. extra: 1328/1268,
  45447. bottom: 103/1431
  45448. }
  45449. },
  45450. back: {
  45451. height: math.unit(5 + 2/12, "feet"),
  45452. name: "Back",
  45453. image: {
  45454. source: "./media/characters/lumi/back.svg",
  45455. extra: 1381/1327,
  45456. bottom: 43/1424
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(5 + 2/12, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(5 + 9/12, "feet"),
  45473. name: "Front",
  45474. image: {
  45475. source: "./media/characters/aliya-cotton/front.svg",
  45476. extra: 577/564,
  45477. bottom: 29/606
  45478. }
  45479. },
  45480. },
  45481. [
  45482. {
  45483. name: "Normal",
  45484. height: math.unit(5 + 9/12, "feet"),
  45485. default: true
  45486. },
  45487. ]
  45488. ))
  45489. characterMakers.push(() => makeCharacter(
  45490. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45491. {
  45492. front: {
  45493. height: math.unit(2.7, "meters"),
  45494. weight: math.unit(25000, "lb"),
  45495. name: "Front",
  45496. image: {
  45497. source: "./media/characters/noah-luxray/front.svg",
  45498. extra: 1644/825,
  45499. bottom: 339/1983
  45500. }
  45501. },
  45502. side: {
  45503. height: math.unit(2.97, "meters"),
  45504. weight: math.unit(25000, "lb"),
  45505. name: "Side",
  45506. image: {
  45507. source: "./media/characters/noah-luxray/side.svg",
  45508. extra: 1319/650,
  45509. bottom: 163/1482
  45510. }
  45511. },
  45512. dick: {
  45513. height: math.unit(7.4, "feet"),
  45514. weight: math.unit(2500, "lb"),
  45515. name: "Dick",
  45516. image: {
  45517. source: "./media/characters/noah-luxray/dick.svg"
  45518. }
  45519. },
  45520. dickAlt: {
  45521. height: math.unit(10.83, "feet"),
  45522. weight: math.unit(2500, "lb"),
  45523. name: "Dick-alt",
  45524. image: {
  45525. source: "./media/characters/noah-luxray/dick-alt.svg"
  45526. }
  45527. },
  45528. },
  45529. [
  45530. {
  45531. name: "BIG",
  45532. height: math.unit(2.7, "meters"),
  45533. default: true
  45534. },
  45535. ]
  45536. ))
  45537. characterMakers.push(() => makeCharacter(
  45538. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45539. {
  45540. standing: {
  45541. height: math.unit(183, "cm"),
  45542. weight: math.unit(68, "kg"),
  45543. name: "Standing",
  45544. image: {
  45545. source: "./media/characters/arion/standing.svg",
  45546. extra: 1869/1807,
  45547. bottom: 93/1962
  45548. }
  45549. },
  45550. reclining: {
  45551. height: math.unit(70.5, "cm"),
  45552. weight: math.unit(68, "lb"),
  45553. name: "Reclining",
  45554. image: {
  45555. source: "./media/characters/arion/reclining.svg",
  45556. extra: 937/870,
  45557. bottom: 63/1000
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Colossus Size, Low",
  45564. height: math.unit(33, "meters"),
  45565. default: true
  45566. },
  45567. {
  45568. name: "Colossus Size, Mid",
  45569. height: math.unit(52, "meters")
  45570. },
  45571. {
  45572. name: "Colossus Size, High",
  45573. height: math.unit(60, "meters")
  45574. },
  45575. {
  45576. name: "Titan Size, Low",
  45577. height: math.unit(91, "meters"),
  45578. },
  45579. {
  45580. name: "Titan Size, Mid",
  45581. height: math.unit(122, "meters")
  45582. },
  45583. {
  45584. name: "Titan Size, High",
  45585. height: math.unit(162, "meters")
  45586. },
  45587. ]
  45588. ))
  45589. characterMakers.push(() => makeCharacter(
  45590. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45591. {
  45592. front: {
  45593. height: math.unit(53, "meters"),
  45594. name: "Front",
  45595. image: {
  45596. source: "./media/characters/stellar-marbey/front.svg",
  45597. extra: 1913/1805,
  45598. bottom: 92/2005
  45599. }
  45600. },
  45601. back: {
  45602. height: math.unit(53, "meters"),
  45603. name: "Back",
  45604. image: {
  45605. source: "./media/characters/stellar-marbey/back.svg",
  45606. extra: 1960/1851,
  45607. bottom: 28/1988
  45608. }
  45609. },
  45610. mouth: {
  45611. height: math.unit(3.5, "meters"),
  45612. name: "Mouth",
  45613. image: {
  45614. source: "./media/characters/stellar-marbey/mouth.svg"
  45615. }
  45616. },
  45617. },
  45618. [
  45619. {
  45620. name: "Macro",
  45621. height: math.unit(53, "meters"),
  45622. default: true
  45623. },
  45624. ]
  45625. ))
  45626. characterMakers.push(() => makeCharacter(
  45627. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45628. {
  45629. front: {
  45630. height: math.unit(8 + 1/12, "feet"),
  45631. weight: math.unit(233, "lb"),
  45632. name: "Front",
  45633. image: {
  45634. source: "./media/characters/matsu/front.svg",
  45635. extra: 832/772,
  45636. bottom: 40/872
  45637. }
  45638. },
  45639. back: {
  45640. height: math.unit(8 + 1/12, "feet"),
  45641. weight: math.unit(233, "lb"),
  45642. name: "Back",
  45643. image: {
  45644. source: "./media/characters/matsu/back.svg",
  45645. extra: 839/780,
  45646. bottom: 47/886
  45647. }
  45648. },
  45649. },
  45650. [
  45651. {
  45652. name: "Normal",
  45653. height: math.unit(8 + 1/12, "feet"),
  45654. default: true
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45660. {
  45661. front: {
  45662. height: math.unit(4, "feet"),
  45663. weight: math.unit(148, "lb"),
  45664. name: "Front",
  45665. image: {
  45666. source: "./media/characters/thiz/front.svg",
  45667. extra: 1913/1748,
  45668. bottom: 62/1975
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(4, "feet"),
  45676. default: true
  45677. },
  45678. ]
  45679. ))
  45680. characterMakers.push(() => makeCharacter(
  45681. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45682. {
  45683. front: {
  45684. height: math.unit(7 + 6/12, "feet"),
  45685. weight: math.unit(267, "lb"),
  45686. name: "Front",
  45687. image: {
  45688. source: "./media/characters/marcel/front.svg",
  45689. extra: 1221/1096,
  45690. bottom: 76/1297
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(7 + 6/12, "feet"),
  45698. default: true
  45699. },
  45700. ]
  45701. ))
  45702. characterMakers.push(() => makeCharacter(
  45703. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45704. {
  45705. side: {
  45706. height: math.unit(42, "meters"),
  45707. name: "Side",
  45708. image: {
  45709. source: "./media/characters/flake/side.svg",
  45710. extra: 1525/1306,
  45711. bottom: 209/1734
  45712. }
  45713. },
  45714. },
  45715. [
  45716. {
  45717. name: "Normal",
  45718. height: math.unit(42, "meters"),
  45719. default: true
  45720. },
  45721. ]
  45722. ))
  45723. characterMakers.push(() => makeCharacter(
  45724. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45725. {
  45726. dressed: {
  45727. height: math.unit(6 + 4/12, "feet"),
  45728. weight: math.unit(520, "lb"),
  45729. name: "Dressed",
  45730. image: {
  45731. source: "./media/characters/someonne/dressed.svg",
  45732. extra: 1020/1010,
  45733. bottom: 178/1198
  45734. }
  45735. },
  45736. undressed: {
  45737. height: math.unit(6 + 4/12, "feet"),
  45738. weight: math.unit(520, "lb"),
  45739. name: "Undressed",
  45740. image: {
  45741. source: "./media/characters/someonne/undressed.svg",
  45742. extra: 1019/1014,
  45743. bottom: 169/1188
  45744. }
  45745. },
  45746. },
  45747. [
  45748. {
  45749. name: "Normal",
  45750. height: math.unit(6 + 4/12, "feet"),
  45751. default: true
  45752. },
  45753. ]
  45754. ))
  45755. characterMakers.push(() => makeCharacter(
  45756. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45757. {
  45758. front: {
  45759. height: math.unit(3, "feet"),
  45760. weight: math.unit(30, "lb"),
  45761. name: "Front",
  45762. image: {
  45763. source: "./media/characters/till/front.svg",
  45764. extra: 892/823,
  45765. bottom: 55/947
  45766. }
  45767. },
  45768. },
  45769. [
  45770. {
  45771. name: "Normal",
  45772. height: math.unit(3, "feet"),
  45773. default: true
  45774. },
  45775. ]
  45776. ))
  45777. characterMakers.push(() => makeCharacter(
  45778. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45779. {
  45780. front: {
  45781. height: math.unit(9 + 8/12, "feet"),
  45782. weight: math.unit(800, "lb"),
  45783. name: "Front",
  45784. image: {
  45785. source: "./media/characters/sydney-heki/front.svg",
  45786. extra: 1360/1300,
  45787. bottom: 22/1382
  45788. }
  45789. },
  45790. back: {
  45791. height: math.unit(9 + 8/12, "feet"),
  45792. weight: math.unit(800, "lb"),
  45793. name: "Back",
  45794. image: {
  45795. source: "./media/characters/sydney-heki/back.svg",
  45796. extra: 1356/1293,
  45797. bottom: 12/1368
  45798. }
  45799. },
  45800. frontDressed: {
  45801. height: math.unit(9 + 8/12, "feet"),
  45802. weight: math.unit(800, "lb"),
  45803. name: "Front-dressed",
  45804. image: {
  45805. source: "./media/characters/sydney-heki/front-dressed.svg",
  45806. extra: 1360/1300,
  45807. bottom: 22/1382
  45808. }
  45809. },
  45810. },
  45811. [
  45812. {
  45813. name: "Normal",
  45814. height: math.unit(9 + 8/12, "feet"),
  45815. default: true
  45816. },
  45817. {
  45818. name: "Macro",
  45819. height: math.unit(500, "feet")
  45820. },
  45821. {
  45822. name: "Megamacro",
  45823. height: math.unit(3.6, "miles")
  45824. },
  45825. ]
  45826. ))
  45827. characterMakers.push(() => makeCharacter(
  45828. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45829. {
  45830. front: {
  45831. height: math.unit(200, "cm"),
  45832. weight: math.unit(250, "lb"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/fowler-karlsson/front.svg",
  45836. extra: 897/845,
  45837. bottom: 123/1020
  45838. }
  45839. },
  45840. back: {
  45841. height: math.unit(200, "cm"),
  45842. weight: math.unit(250, "lb"),
  45843. name: "Back",
  45844. image: {
  45845. source: "./media/characters/fowler-karlsson/back.svg",
  45846. extra: 999/944,
  45847. bottom: 26/1025
  45848. }
  45849. },
  45850. dick: {
  45851. height: math.unit(1.92, "feet"),
  45852. weight: math.unit(150, "lb"),
  45853. name: "Dick",
  45854. image: {
  45855. source: "./media/characters/fowler-karlsson/dick.svg"
  45856. }
  45857. },
  45858. },
  45859. [
  45860. {
  45861. name: "Normal",
  45862. height: math.unit(200, "cm"),
  45863. default: true
  45864. },
  45865. {
  45866. name: "Smaller Macro",
  45867. height: math.unit(90, "m")
  45868. },
  45869. {
  45870. name: "Macro",
  45871. height: math.unit(150, "m")
  45872. },
  45873. {
  45874. name: "Bigger Macro",
  45875. height: math.unit(300, "m")
  45876. },
  45877. ]
  45878. ))
  45879. characterMakers.push(() => makeCharacter(
  45880. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45881. {
  45882. side: {
  45883. height: math.unit(8 + 2/12, "feet"),
  45884. weight: math.unit(1, "tonne"),
  45885. name: "Side",
  45886. image: {
  45887. source: "./media/characters/rylide/side.svg",
  45888. extra: 1318/1034,
  45889. bottom: 106/1424
  45890. }
  45891. },
  45892. sitting: {
  45893. height: math.unit(303, "cm"),
  45894. weight: math.unit(1, "tonne"),
  45895. name: "Sitting",
  45896. image: {
  45897. source: "./media/characters/rylide/sitting.svg",
  45898. extra: 1303/1103,
  45899. bottom: 36/1339
  45900. }
  45901. },
  45902. },
  45903. [
  45904. {
  45905. name: "Normal",
  45906. height: math.unit(8 + 2/12, "feet"),
  45907. default: true
  45908. },
  45909. ]
  45910. ))
  45911. characterMakers.push(() => makeCharacter(
  45912. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45913. {
  45914. front: {
  45915. height: math.unit(5 + 10/12, "feet"),
  45916. weight: math.unit(160, "lb"),
  45917. name: "Front",
  45918. image: {
  45919. source: "./media/characters/pudask/front.svg",
  45920. extra: 1616/1590,
  45921. bottom: 161/1777
  45922. }
  45923. },
  45924. },
  45925. [
  45926. {
  45927. name: "Ferret Height",
  45928. height: math.unit(2 + 5/12, "feet")
  45929. },
  45930. {
  45931. name: "Canon Height",
  45932. height: math.unit(5 + 10/12, "feet"),
  45933. default: true
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45939. {
  45940. front: {
  45941. height: math.unit(3 + 6/12, "feet"),
  45942. weight: math.unit(60, "lb"),
  45943. name: "Front",
  45944. image: {
  45945. source: "./media/characters/ramita/front.svg",
  45946. extra: 1402/1232,
  45947. bottom: 62/1464
  45948. }
  45949. },
  45950. dressed: {
  45951. height: math.unit(3 + 6/12, "feet"),
  45952. weight: math.unit(60, "lb"),
  45953. name: "Dressed",
  45954. image: {
  45955. source: "./media/characters/ramita/dressed.svg",
  45956. extra: 1534/1249,
  45957. bottom: 50/1584
  45958. }
  45959. },
  45960. },
  45961. [
  45962. {
  45963. name: "Normal",
  45964. height: math.unit(3 + 6/12, "feet"),
  45965. default: true
  45966. },
  45967. ]
  45968. ))
  45969. characterMakers.push(() => makeCharacter(
  45970. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45971. {
  45972. front: {
  45973. height: math.unit(8, "feet"),
  45974. name: "Front",
  45975. image: {
  45976. source: "./media/characters/ark/front.svg",
  45977. extra: 772/693,
  45978. bottom: 45/817
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(8, "feet"),
  45986. default: true
  45987. },
  45988. ]
  45989. ))
  45990. characterMakers.push(() => makeCharacter(
  45991. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45992. {
  45993. front: {
  45994. height: math.unit(6, "feet"),
  45995. weight: math.unit(250, "lb"),
  45996. volume: math.unit(5/8, "gallons"),
  45997. name: "Front",
  45998. image: {
  45999. source: "./media/characters/ludwig-horn/front.svg",
  46000. extra: 1782/1635,
  46001. bottom: 96/1878
  46002. }
  46003. },
  46004. back: {
  46005. height: math.unit(6, "feet"),
  46006. weight: math.unit(250, "lb"),
  46007. volume: math.unit(5/8, "gallons"),
  46008. name: "Back",
  46009. image: {
  46010. source: "./media/characters/ludwig-horn/back.svg",
  46011. extra: 1874/1729,
  46012. bottom: 27/1901
  46013. }
  46014. },
  46015. dick: {
  46016. height: math.unit(1.05, "feet"),
  46017. weight: math.unit(15, "lb"),
  46018. volume: math.unit(5/8, "gallons"),
  46019. name: "Dick",
  46020. image: {
  46021. source: "./media/characters/ludwig-horn/dick.svg"
  46022. }
  46023. },
  46024. },
  46025. [
  46026. {
  46027. name: "Small",
  46028. height: math.unit(6, "feet")
  46029. },
  46030. {
  46031. name: "Typical",
  46032. height: math.unit(12, "feet"),
  46033. default: true
  46034. },
  46035. {
  46036. name: "Building",
  46037. height: math.unit(80, "feet")
  46038. },
  46039. {
  46040. name: "Town",
  46041. height: math.unit(800, "feet")
  46042. },
  46043. {
  46044. name: "Kingdom",
  46045. height: math.unit(80000, "feet")
  46046. },
  46047. {
  46048. name: "Planet",
  46049. height: math.unit(8000000, "feet")
  46050. },
  46051. {
  46052. name: "Universe",
  46053. height: math.unit(8000000000, "feet")
  46054. },
  46055. {
  46056. name: "Transcended",
  46057. height: math.unit(8e27, "feet")
  46058. },
  46059. ]
  46060. ))
  46061. characterMakers.push(() => makeCharacter(
  46062. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46063. {
  46064. front: {
  46065. height: math.unit(5, "feet"),
  46066. weight: math.unit(50, "kg"),
  46067. name: "Front",
  46068. image: {
  46069. source: "./media/characters/biot-avery/front.svg",
  46070. extra: 1295/1232,
  46071. bottom: 86/1381
  46072. }
  46073. },
  46074. },
  46075. [
  46076. {
  46077. name: "Normal",
  46078. height: math.unit(5, "feet"),
  46079. default: true
  46080. },
  46081. ]
  46082. ))
  46083. characterMakers.push(() => makeCharacter(
  46084. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46085. {
  46086. front: {
  46087. height: math.unit(6, "feet"),
  46088. name: "Front",
  46089. image: {
  46090. source: "./media/characters/kitsune-kiro/front.svg",
  46091. extra: 1270/1158,
  46092. bottom: 42/1312
  46093. }
  46094. },
  46095. frontAlt: {
  46096. height: math.unit(6, "feet"),
  46097. name: "Front-alt",
  46098. image: {
  46099. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46100. extra: 1130/1081,
  46101. bottom: 36/1166
  46102. }
  46103. },
  46104. },
  46105. [
  46106. {
  46107. name: "Smol",
  46108. height: math.unit(3, "feet")
  46109. },
  46110. {
  46111. name: "Normal",
  46112. height: math.unit(6, "feet"),
  46113. default: true
  46114. },
  46115. ]
  46116. ))
  46117. characterMakers.push(() => makeCharacter(
  46118. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46119. {
  46120. front: {
  46121. height: math.unit(6, "feet"),
  46122. weight: math.unit(125, "lb"),
  46123. name: "Front",
  46124. image: {
  46125. source: "./media/characters/jack-thatcher/front.svg",
  46126. extra: 1474/1370,
  46127. bottom: 26/1500
  46128. }
  46129. },
  46130. back: {
  46131. height: math.unit(6, "feet"),
  46132. weight: math.unit(125, "lb"),
  46133. name: "Back",
  46134. image: {
  46135. source: "./media/characters/jack-thatcher/back.svg",
  46136. extra: 1489/1384,
  46137. bottom: 18/1507
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Normal",
  46144. height: math.unit(6, "feet"),
  46145. default: true
  46146. },
  46147. {
  46148. name: "Macro",
  46149. height: math.unit(75, "feet")
  46150. },
  46151. {
  46152. name: "Macro-er",
  46153. height: math.unit(250, "feet")
  46154. },
  46155. ]
  46156. ))
  46157. characterMakers.push(() => makeCharacter(
  46158. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46159. {
  46160. front: {
  46161. height: math.unit(7, "feet"),
  46162. weight: math.unit(110, "kg"),
  46163. name: "Front",
  46164. image: {
  46165. source: "./media/characters/max-hyper/front.svg",
  46166. extra: 1969/1881,
  46167. bottom: 49/2018
  46168. }
  46169. },
  46170. },
  46171. [
  46172. {
  46173. name: "Normal",
  46174. height: math.unit(7, "feet"),
  46175. default: true
  46176. },
  46177. ]
  46178. ))
  46179. characterMakers.push(() => makeCharacter(
  46180. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46181. {
  46182. front: {
  46183. height: math.unit(5 + 5/12, "feet"),
  46184. weight: math.unit(160, "lb"),
  46185. name: "Front",
  46186. image: {
  46187. source: "./media/characters/spook/front.svg",
  46188. extra: 794/791,
  46189. bottom: 54/848
  46190. }
  46191. },
  46192. back: {
  46193. height: math.unit(5 + 5/12, "feet"),
  46194. weight: math.unit(160, "lb"),
  46195. name: "Back",
  46196. image: {
  46197. source: "./media/characters/spook/back.svg",
  46198. extra: 812/798,
  46199. bottom: 32/844
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(5 + 5/12, "feet"),
  46207. default: true
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46213. {
  46214. front: {
  46215. height: math.unit(18, "feet"),
  46216. name: "Front",
  46217. image: {
  46218. source: "./media/characters/xeaduulix/front.svg",
  46219. extra: 1380/1166,
  46220. bottom: 110/1490
  46221. }
  46222. },
  46223. back: {
  46224. height: math.unit(18, "feet"),
  46225. name: "Back",
  46226. image: {
  46227. source: "./media/characters/xeaduulix/back.svg",
  46228. extra: 1592/1170,
  46229. bottom: 128/1720
  46230. }
  46231. },
  46232. frontNsfw: {
  46233. height: math.unit(18, "feet"),
  46234. name: "Front (NSFW)",
  46235. image: {
  46236. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46237. extra: 1380/1166,
  46238. bottom: 110/1490
  46239. }
  46240. },
  46241. backNsfw: {
  46242. height: math.unit(18, "feet"),
  46243. name: "Back (NSFW)",
  46244. image: {
  46245. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46246. extra: 1592/1170,
  46247. bottom: 128/1720
  46248. }
  46249. },
  46250. },
  46251. [
  46252. {
  46253. name: "Normal",
  46254. height: math.unit(18, "feet"),
  46255. default: true
  46256. },
  46257. ]
  46258. ))
  46259. characterMakers.push(() => makeCharacter(
  46260. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46261. {
  46262. spreadWings: {
  46263. height: math.unit(20, "feet"),
  46264. name: "Spread Wings",
  46265. image: {
  46266. source: "./media/characters/fledge/spread-wings.svg",
  46267. extra: 693/635,
  46268. bottom: 26/719
  46269. }
  46270. },
  46271. front: {
  46272. height: math.unit(20, "feet"),
  46273. name: "Front",
  46274. image: {
  46275. source: "./media/characters/fledge/front.svg",
  46276. extra: 684/637,
  46277. bottom: 18/702
  46278. }
  46279. },
  46280. frontAlt: {
  46281. height: math.unit(20, "feet"),
  46282. name: "Front (Alt)",
  46283. image: {
  46284. source: "./media/characters/fledge/front-alt.svg",
  46285. extra: 708/664,
  46286. bottom: 13/721
  46287. }
  46288. },
  46289. back: {
  46290. height: math.unit(20, "feet"),
  46291. name: "Back",
  46292. image: {
  46293. source: "./media/characters/fledge/back.svg",
  46294. extra: 718/634,
  46295. bottom: 22/740
  46296. }
  46297. },
  46298. head: {
  46299. height: math.unit(5.55, "feet"),
  46300. name: "Head",
  46301. image: {
  46302. source: "./media/characters/fledge/head.svg"
  46303. }
  46304. },
  46305. headAlt: {
  46306. height: math.unit(5.1, "feet"),
  46307. name: "Head (Alt)",
  46308. image: {
  46309. source: "./media/characters/fledge/head-alt.svg"
  46310. }
  46311. },
  46312. },
  46313. [
  46314. {
  46315. name: "Small",
  46316. height: math.unit(6 + 2/12, "feet")
  46317. },
  46318. {
  46319. name: "Big",
  46320. height: math.unit(20, "feet"),
  46321. default: true
  46322. },
  46323. {
  46324. name: "Giant",
  46325. height: math.unit(100, "feet")
  46326. },
  46327. {
  46328. name: "Macro",
  46329. height: math.unit(200, "feet")
  46330. },
  46331. ]
  46332. ))
  46333. characterMakers.push(() => makeCharacter(
  46334. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46335. {
  46336. front: {
  46337. height: math.unit(1, "meter"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/atlas-morenai/front.svg",
  46341. extra: 1275/1043,
  46342. bottom: 19/1294
  46343. }
  46344. },
  46345. back: {
  46346. height: math.unit(1, "meter"),
  46347. name: "Back",
  46348. image: {
  46349. source: "./media/characters/atlas-morenai/back.svg",
  46350. extra: 1141/1001,
  46351. bottom: 25/1166
  46352. }
  46353. },
  46354. },
  46355. [
  46356. {
  46357. name: "Normal",
  46358. height: math.unit(1, "meter"),
  46359. default: true
  46360. },
  46361. {
  46362. name: "Magic-Infused",
  46363. height: math.unit(5, "meters")
  46364. },
  46365. ]
  46366. ))
  46367. characterMakers.push(() => makeCharacter(
  46368. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46369. {
  46370. front: {
  46371. height: math.unit(5, "meters"),
  46372. name: "Front",
  46373. image: {
  46374. source: "./media/characters/cintia/front.svg",
  46375. extra: 1312/1228,
  46376. bottom: 38/1350
  46377. }
  46378. },
  46379. back: {
  46380. height: math.unit(5, "meters"),
  46381. name: "Back",
  46382. image: {
  46383. source: "./media/characters/cintia/back.svg",
  46384. extra: 1260/1166,
  46385. bottom: 98/1358
  46386. }
  46387. },
  46388. frontDick: {
  46389. height: math.unit(5, "meters"),
  46390. name: "Front (Dick)",
  46391. image: {
  46392. source: "./media/characters/cintia/front-dick.svg",
  46393. extra: 1312/1228,
  46394. bottom: 38/1350
  46395. }
  46396. },
  46397. backDick: {
  46398. height: math.unit(5, "meters"),
  46399. name: "Back (Dick)",
  46400. image: {
  46401. source: "./media/characters/cintia/back-dick.svg",
  46402. extra: 1260/1166,
  46403. bottom: 98/1358
  46404. }
  46405. },
  46406. bust: {
  46407. height: math.unit(1.97, "meters"),
  46408. name: "Bust",
  46409. image: {
  46410. source: "./media/characters/cintia/bust.svg",
  46411. extra: 617/565,
  46412. bottom: 0/617
  46413. }
  46414. },
  46415. },
  46416. [
  46417. {
  46418. name: "Normal",
  46419. height: math.unit(5, "meters"),
  46420. default: true
  46421. },
  46422. ]
  46423. ))
  46424. characterMakers.push(() => makeCharacter(
  46425. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46426. {
  46427. side: {
  46428. height: math.unit(100, "feet"),
  46429. name: "Side",
  46430. image: {
  46431. source: "./media/characters/denora/side.svg",
  46432. extra: 875/803,
  46433. bottom: 9/884
  46434. }
  46435. },
  46436. },
  46437. [
  46438. {
  46439. name: "Standard",
  46440. height: math.unit(100, "feet"),
  46441. default: true
  46442. },
  46443. {
  46444. name: "Grand",
  46445. height: math.unit(1000, "feet")
  46446. },
  46447. {
  46448. name: "Conquering",
  46449. height: math.unit(10000, "feet")
  46450. },
  46451. ]
  46452. ))
  46453. characterMakers.push(() => makeCharacter(
  46454. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46455. {
  46456. dressed: {
  46457. height: math.unit(8 + 5/12, "feet"),
  46458. weight: math.unit(700, "lb"),
  46459. name: "Dressed",
  46460. image: {
  46461. source: "./media/characters/kiva/dressed.svg",
  46462. extra: 1102/1055,
  46463. bottom: 60/1162
  46464. }
  46465. },
  46466. nude: {
  46467. height: math.unit(8 + 5/12, "feet"),
  46468. weight: math.unit(700, "lb"),
  46469. name: "Nude",
  46470. image: {
  46471. source: "./media/characters/kiva/nude.svg",
  46472. extra: 1102/1055,
  46473. bottom: 60/1162
  46474. }
  46475. },
  46476. },
  46477. [
  46478. {
  46479. name: "Base Height",
  46480. height: math.unit(8 + 5/12, "feet"),
  46481. default: true
  46482. },
  46483. {
  46484. name: "Macro",
  46485. height: math.unit(100, "feet")
  46486. },
  46487. {
  46488. name: "Max",
  46489. height: math.unit(3280, "feet")
  46490. },
  46491. ]
  46492. ))
  46493. characterMakers.push(() => makeCharacter(
  46494. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46495. {
  46496. front: {
  46497. height: math.unit(6 + 8/12, "feet"),
  46498. weight: math.unit(250, "lb"),
  46499. name: "Front",
  46500. image: {
  46501. source: "./media/characters/ztragon/front.svg",
  46502. extra: 1825/1684,
  46503. bottom: 98/1923
  46504. }
  46505. },
  46506. },
  46507. [
  46508. {
  46509. name: "Normal",
  46510. height: math.unit(6 + 8/12, "feet"),
  46511. default: true
  46512. },
  46513. {
  46514. name: "Macro",
  46515. height: math.unit(80, "feet")
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46521. {
  46522. front: {
  46523. height: math.unit(10.4, "feet"),
  46524. weight: math.unit(2, "tons"),
  46525. name: "Front",
  46526. image: {
  46527. source: "./media/characters/yesenia/front.svg",
  46528. extra: 1479/1474,
  46529. bottom: 233/1712
  46530. }
  46531. },
  46532. },
  46533. [
  46534. {
  46535. name: "Normal",
  46536. height: math.unit(10.4, "feet"),
  46537. default: true
  46538. },
  46539. ]
  46540. ))
  46541. characterMakers.push(() => makeCharacter(
  46542. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46543. {
  46544. normal: {
  46545. height: math.unit(6 + 1/12, "feet"),
  46546. weight: math.unit(180, "lb"),
  46547. name: "Normal",
  46548. image: {
  46549. source: "./media/characters/leanne-lycheborne/normal.svg",
  46550. extra: 1748/1660,
  46551. bottom: 98/1846
  46552. }
  46553. },
  46554. were: {
  46555. height: math.unit(12, "feet"),
  46556. weight: math.unit(1600, "lb"),
  46557. name: "Were",
  46558. image: {
  46559. source: "./media/characters/leanne-lycheborne/were.svg",
  46560. extra: 1485/1432,
  46561. bottom: 66/1551
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(6 + 1/12, "feet"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46575. {
  46576. side: {
  46577. height: math.unit(13, "feet"),
  46578. name: "Side",
  46579. image: {
  46580. source: "./media/characters/kira-tyler/side.svg",
  46581. extra: 693/393,
  46582. bottom: 58/751
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Normal",
  46589. height: math.unit(13, "feet"),
  46590. default: true
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46596. {
  46597. front: {
  46598. height: math.unit(10.3, "feet"),
  46599. weight: math.unit(150, "lb"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/blaze/front.svg",
  46603. extra: 1378/1286,
  46604. bottom: 172/1550
  46605. }
  46606. },
  46607. },
  46608. [
  46609. {
  46610. name: "Normal",
  46611. height: math.unit(10.3, "feet"),
  46612. default: true
  46613. },
  46614. ]
  46615. ))
  46616. characterMakers.push(() => makeCharacter(
  46617. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46618. {
  46619. side: {
  46620. height: math.unit(2, "meters"),
  46621. weight: math.unit(400, "kg"),
  46622. name: "Side",
  46623. image: {
  46624. source: "./media/characters/anu/side.svg",
  46625. extra: 506/394,
  46626. bottom: 18/524
  46627. }
  46628. },
  46629. },
  46630. [
  46631. {
  46632. name: "Humanoid",
  46633. height: math.unit(2, "meters")
  46634. },
  46635. {
  46636. name: "Normal",
  46637. height: math.unit(5, "meters"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46644. {
  46645. front: {
  46646. height: math.unit(5 + 5/12, "feet"),
  46647. weight: math.unit(170, "lb"),
  46648. name: "Front",
  46649. image: {
  46650. source: "./media/characters/synx-the-lynx/front.svg",
  46651. extra: 1893/1745,
  46652. bottom: 17/1910
  46653. }
  46654. },
  46655. side: {
  46656. height: math.unit(5 + 5/12, "feet"),
  46657. weight: math.unit(170, "lb"),
  46658. name: "Side",
  46659. image: {
  46660. source: "./media/characters/synx-the-lynx/side.svg",
  46661. extra: 1884/1740,
  46662. bottom: 39/1923
  46663. }
  46664. },
  46665. back: {
  46666. height: math.unit(5 + 5/12, "feet"),
  46667. weight: math.unit(170, "lb"),
  46668. name: "Back",
  46669. image: {
  46670. source: "./media/characters/synx-the-lynx/back.svg",
  46671. extra: 1903/1755,
  46672. bottom: 14/1917
  46673. }
  46674. },
  46675. },
  46676. [
  46677. {
  46678. name: "Normal",
  46679. height: math.unit(5 + 5/12, "feet"),
  46680. default: true
  46681. },
  46682. ]
  46683. ))
  46684. characterMakers.push(() => makeCharacter(
  46685. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46686. {
  46687. back: {
  46688. height: math.unit(15, "feet"),
  46689. name: "Back",
  46690. image: {
  46691. source: "./media/characters/nadezda-fex/back.svg",
  46692. extra: 1695/1481,
  46693. bottom: 25/1720
  46694. }
  46695. },
  46696. },
  46697. [
  46698. {
  46699. name: "Normal",
  46700. height: math.unit(15, "feet"),
  46701. default: true
  46702. },
  46703. {
  46704. name: "Macro",
  46705. height: math.unit(2.5, "miles")
  46706. },
  46707. {
  46708. name: "Goddess",
  46709. height: math.unit(2, "multiverses")
  46710. },
  46711. ]
  46712. ))
  46713. characterMakers.push(() => makeCharacter(
  46714. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46715. {
  46716. front: {
  46717. height: math.unit(216, "cm"),
  46718. name: "Front",
  46719. image: {
  46720. source: "./media/characters/lev/front.svg",
  46721. extra: 1728/1670,
  46722. bottom: 82/1810
  46723. }
  46724. },
  46725. back: {
  46726. height: math.unit(216, "cm"),
  46727. name: "Back",
  46728. image: {
  46729. source: "./media/characters/lev/back.svg",
  46730. extra: 1738/1675,
  46731. bottom: 24/1762
  46732. }
  46733. },
  46734. dressed: {
  46735. height: math.unit(216, "cm"),
  46736. name: "Dressed",
  46737. image: {
  46738. source: "./media/characters/lev/dressed.svg",
  46739. extra: 1397/1351,
  46740. bottom: 73/1470
  46741. }
  46742. },
  46743. head: {
  46744. height: math.unit(0.51, "meter"),
  46745. name: "Head",
  46746. image: {
  46747. source: "./media/characters/lev/head.svg"
  46748. }
  46749. },
  46750. },
  46751. [
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(216, "cm"),
  46755. default: true
  46756. },
  46757. {
  46758. name: "Relatively Macro",
  46759. height: math.unit(80, "meters")
  46760. },
  46761. {
  46762. name: "Megamacro",
  46763. height: math.unit(21600, "meters")
  46764. },
  46765. {
  46766. name: "Megamacro+",
  46767. height: math.unit(64800, "meters")
  46768. },
  46769. ]
  46770. ))
  46771. characterMakers.push(() => makeCharacter(
  46772. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46773. {
  46774. front: {
  46775. height: math.unit(2, "meters"),
  46776. weight: math.unit(80, "kg"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/moka/front.svg",
  46780. extra: 1337/1255,
  46781. bottom: 58/1395
  46782. }
  46783. },
  46784. },
  46785. [
  46786. {
  46787. name: "Micro",
  46788. height: math.unit(15, "cm")
  46789. },
  46790. {
  46791. name: "Normal",
  46792. height: math.unit(2, "meters"),
  46793. default: true
  46794. },
  46795. {
  46796. name: "Macro",
  46797. height: math.unit(20, "meters"),
  46798. },
  46799. ]
  46800. ))
  46801. characterMakers.push(() => makeCharacter(
  46802. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46803. {
  46804. front: {
  46805. height: math.unit(9, "feet"),
  46806. weight: math.unit(240, "lb"),
  46807. name: "Front",
  46808. image: {
  46809. source: "./media/characters/kuzco/front.svg",
  46810. extra: 1593/1487,
  46811. bottom: 32/1625
  46812. }
  46813. },
  46814. side: {
  46815. height: math.unit(9, "feet"),
  46816. weight: math.unit(240, "lb"),
  46817. name: "Side",
  46818. image: {
  46819. source: "./media/characters/kuzco/side.svg",
  46820. extra: 1575/1485,
  46821. bottom: 30/1605
  46822. }
  46823. },
  46824. back: {
  46825. height: math.unit(9, "feet"),
  46826. weight: math.unit(240, "lb"),
  46827. name: "Back",
  46828. image: {
  46829. source: "./media/characters/kuzco/back.svg",
  46830. extra: 1603/1514,
  46831. bottom: 14/1617
  46832. }
  46833. },
  46834. },
  46835. [
  46836. {
  46837. name: "Normal",
  46838. height: math.unit(9, "feet"),
  46839. default: true
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46845. {
  46846. side: {
  46847. height: math.unit(2, "meters"),
  46848. weight: math.unit(300, "kg"),
  46849. name: "Side",
  46850. image: {
  46851. source: "./media/characters/ceruleus/side.svg",
  46852. extra: 1068/974,
  46853. bottom: 126/1194
  46854. }
  46855. },
  46856. maw: {
  46857. height: math.unit(0.8125, "meter"),
  46858. name: "Maw",
  46859. image: {
  46860. source: "./media/characters/ceruleus/maw.svg"
  46861. }
  46862. },
  46863. },
  46864. [
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(16, "meters"),
  46868. default: true
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(9, "feet"),
  46877. weight: math.unit(500, "kg"),
  46878. name: "Front",
  46879. image: {
  46880. source: "./media/characters/acouya/front.svg",
  46881. extra: 1660/1473,
  46882. bottom: 28/1688
  46883. }
  46884. },
  46885. },
  46886. [
  46887. {
  46888. name: "Normal",
  46889. height: math.unit(9, "feet"),
  46890. default: true
  46891. },
  46892. ]
  46893. ))
  46894. characterMakers.push(() => makeCharacter(
  46895. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46896. {
  46897. front: {
  46898. height: math.unit(5 + 6/12, "feet"),
  46899. weight: math.unit(195, "lb"),
  46900. name: "Front",
  46901. image: {
  46902. source: "./media/characters/vant/front.svg",
  46903. extra: 1396/1320,
  46904. bottom: 20/1416
  46905. }
  46906. },
  46907. back: {
  46908. height: math.unit(5 + 6/12, "feet"),
  46909. weight: math.unit(195, "lb"),
  46910. name: "Back",
  46911. image: {
  46912. source: "./media/characters/vant/back.svg",
  46913. extra: 1396/1320,
  46914. bottom: 20/1416
  46915. }
  46916. },
  46917. maw: {
  46918. height: math.unit(0.75, "feet"),
  46919. name: "Maw",
  46920. image: {
  46921. source: "./media/characters/vant/maw.svg"
  46922. }
  46923. },
  46924. paw: {
  46925. height: math.unit(1.07, "feet"),
  46926. name: "Paw",
  46927. image: {
  46928. source: "./media/characters/vant/paw.svg"
  46929. }
  46930. },
  46931. },
  46932. [
  46933. {
  46934. name: "Micro",
  46935. height: math.unit(0.25, "inches")
  46936. },
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(5 + 6/12, "feet"),
  46940. default: true
  46941. },
  46942. {
  46943. name: "Macro",
  46944. height: math.unit(75, "feet")
  46945. },
  46946. ]
  46947. ))
  46948. characterMakers.push(() => makeCharacter(
  46949. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46950. {
  46951. front: {
  46952. height: math.unit(30, "meters"),
  46953. weight: math.unit(363, "tons"),
  46954. name: "Front",
  46955. image: {
  46956. source: "./media/characters/ahra/front.svg",
  46957. extra: 1914/1814,
  46958. bottom: 46/1960
  46959. }
  46960. },
  46961. },
  46962. [
  46963. {
  46964. name: "Macro",
  46965. height: math.unit(30, "meters"),
  46966. default: true
  46967. },
  46968. ]
  46969. ))
  46970. characterMakers.push(() => makeCharacter(
  46971. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46972. {
  46973. undressed: {
  46974. height: math.unit(2, "m"),
  46975. weight: math.unit(250, "kg"),
  46976. name: "Undressed",
  46977. image: {
  46978. source: "./media/characters/coriander/undressed.svg",
  46979. extra: 1757/1606,
  46980. bottom: 107/1864
  46981. }
  46982. },
  46983. dressed: {
  46984. height: math.unit(2, "m"),
  46985. weight: math.unit(250, "kg"),
  46986. name: "Dressed",
  46987. image: {
  46988. source: "./media/characters/coriander/dressed.svg",
  46989. extra: 1757/1606,
  46990. bottom: 107/1864
  46991. }
  46992. },
  46993. },
  46994. [
  46995. {
  46996. name: "Normal",
  46997. height: math.unit(4, "meters"),
  46998. default: true
  46999. },
  47000. {
  47001. name: "XL",
  47002. height: math.unit(6, "meters")
  47003. },
  47004. {
  47005. name: "XXL",
  47006. height: math.unit(8, "meters")
  47007. },
  47008. ]
  47009. ))
  47010. characterMakers.push(() => makeCharacter(
  47011. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47012. {
  47013. front: {
  47014. height: math.unit(6, "feet"),
  47015. name: "Front",
  47016. image: {
  47017. source: "./media/characters/syrinx/front.svg",
  47018. extra: 1557/1259,
  47019. bottom: 171/1728
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Normal",
  47026. height: math.unit(6 + 3/12, "feet"),
  47027. default: true
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47033. {
  47034. front: {
  47035. height: math.unit(11 + 6/12, "feet"),
  47036. weight: math.unit(1.5, "tons"),
  47037. name: "Front",
  47038. image: {
  47039. source: "./media/characters/bor/front.svg",
  47040. extra: 1189/1109,
  47041. bottom: 170/1359
  47042. }
  47043. },
  47044. },
  47045. [
  47046. {
  47047. name: "Normal",
  47048. height: math.unit(11 + 6/12, "feet"),
  47049. default: true
  47050. },
  47051. {
  47052. name: "Macro",
  47053. height: math.unit(32 + 9/12, "feet")
  47054. },
  47055. ]
  47056. ))
  47057. characterMakers.push(() => makeCharacter(
  47058. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47059. {
  47060. anthro: {
  47061. height: math.unit(9, "feet"),
  47062. weight: math.unit(2076, "lb"),
  47063. name: "Anthro",
  47064. image: {
  47065. source: "./media/characters/abacus/anthro.svg",
  47066. extra: 1540/1494,
  47067. bottom: 233/1773
  47068. }
  47069. },
  47070. pigeon: {
  47071. height: math.unit(1, "feet"),
  47072. name: "Pigeon",
  47073. image: {
  47074. source: "./media/characters/abacus/pigeon.svg",
  47075. extra: 528/525,
  47076. bottom: 46/574
  47077. }
  47078. },
  47079. },
  47080. [
  47081. {
  47082. name: "Normal",
  47083. height: math.unit(9, "feet"),
  47084. default: true
  47085. },
  47086. ]
  47087. ))
  47088. characterMakers.push(() => makeCharacter(
  47089. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47090. {
  47091. side: {
  47092. height: math.unit(6, "feet"),
  47093. name: "Side",
  47094. image: {
  47095. source: "./media/characters/delkhan/side.svg",
  47096. extra: 1884/1786,
  47097. bottom: 308/2192
  47098. }
  47099. },
  47100. head: {
  47101. height: math.unit(3.38, "feet"),
  47102. name: "Head",
  47103. image: {
  47104. source: "./media/characters/delkhan/head.svg"
  47105. }
  47106. },
  47107. },
  47108. [
  47109. {
  47110. name: "Normal",
  47111. height: math.unit(72, "feet"),
  47112. default: true
  47113. },
  47114. {
  47115. name: "Giant",
  47116. height: math.unit(172, "feet")
  47117. },
  47118. ]
  47119. ))
  47120. characterMakers.push(() => makeCharacter(
  47121. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47122. {
  47123. standing: {
  47124. height: math.unit(6, "feet"),
  47125. name: "Standing",
  47126. image: {
  47127. source: "./media/characters/euchidat/standing.svg",
  47128. extra: 1612/1553,
  47129. bottom: 116/1728
  47130. }
  47131. },
  47132. leaning: {
  47133. height: math.unit(6, "feet"),
  47134. name: "Leaning",
  47135. image: {
  47136. source: "./media/characters/euchidat/leaning.svg",
  47137. extra: 1719/1674,
  47138. bottom: 27/1746
  47139. }
  47140. },
  47141. },
  47142. [
  47143. {
  47144. name: "Normal",
  47145. height: math.unit(175, "feet"),
  47146. default: true
  47147. },
  47148. {
  47149. name: "Megamacro",
  47150. height: math.unit(190, "miles")
  47151. },
  47152. {
  47153. name: "Gigamacro",
  47154. height: math.unit(190000, "miles")
  47155. },
  47156. ]
  47157. ))
  47158. characterMakers.push(() => makeCharacter(
  47159. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47160. {
  47161. front: {
  47162. height: math.unit(6, "feet"),
  47163. weight: math.unit(150, "lb"),
  47164. name: "Front",
  47165. image: {
  47166. source: "./media/characters/rebecca-stack/front.svg",
  47167. extra: 1256/1201,
  47168. bottom: 18/1274
  47169. }
  47170. },
  47171. },
  47172. [
  47173. {
  47174. name: "Normal",
  47175. height: math.unit(5 + 8/12, "feet"),
  47176. default: true
  47177. },
  47178. {
  47179. name: "Demolitionist",
  47180. height: math.unit(200, "feet")
  47181. },
  47182. {
  47183. name: "Out of Control",
  47184. height: math.unit(2, "miles")
  47185. },
  47186. {
  47187. name: "Giga",
  47188. height: math.unit(7200, "miles")
  47189. },
  47190. ]
  47191. ))
  47192. characterMakers.push(() => makeCharacter(
  47193. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47194. {
  47195. front: {
  47196. height: math.unit(6, "feet"),
  47197. weight: math.unit(150, "lb"),
  47198. name: "Front",
  47199. image: {
  47200. source: "./media/characters/jenny-cartwright/front.svg",
  47201. extra: 1384/1376,
  47202. bottom: 58/1442
  47203. }
  47204. },
  47205. },
  47206. [
  47207. {
  47208. name: "Normal",
  47209. height: math.unit(6 + 7/12, "feet"),
  47210. default: true
  47211. },
  47212. {
  47213. name: "Librarian",
  47214. height: math.unit(55, "feet")
  47215. },
  47216. {
  47217. name: "Sightseer",
  47218. height: math.unit(50, "miles")
  47219. },
  47220. {
  47221. name: "Giga",
  47222. height: math.unit(30000, "miles")
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47228. {
  47229. nude: {
  47230. height: math.unit(8, "feet"),
  47231. weight: math.unit(225, "lb"),
  47232. name: "Nude",
  47233. image: {
  47234. source: "./media/characters/marvy/nude.svg",
  47235. extra: 1900/1683,
  47236. bottom: 89/1989
  47237. }
  47238. },
  47239. dressed: {
  47240. height: math.unit(8, "feet"),
  47241. weight: math.unit(225, "lb"),
  47242. name: "Dressed",
  47243. image: {
  47244. source: "./media/characters/marvy/dressed.svg",
  47245. extra: 1900/1683,
  47246. bottom: 89/1989
  47247. }
  47248. },
  47249. head: {
  47250. height: math.unit(2.85, "feet"),
  47251. name: "Head",
  47252. image: {
  47253. source: "./media/characters/marvy/head.svg"
  47254. }
  47255. },
  47256. },
  47257. [
  47258. {
  47259. name: "Normal",
  47260. height: math.unit(8, "feet"),
  47261. default: true
  47262. },
  47263. ]
  47264. ))
  47265. characterMakers.push(() => makeCharacter(
  47266. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47267. {
  47268. front: {
  47269. height: math.unit(8, "feet"),
  47270. weight: math.unit(250, "lb"),
  47271. name: "Front",
  47272. image: {
  47273. source: "./media/characters/leah/front.svg",
  47274. extra: 1257/1149,
  47275. bottom: 109/1366
  47276. }
  47277. },
  47278. },
  47279. [
  47280. {
  47281. name: "Normal",
  47282. height: math.unit(8, "feet"),
  47283. default: true
  47284. },
  47285. {
  47286. name: "Minimacro",
  47287. height: math.unit(40, "feet")
  47288. },
  47289. {
  47290. name: "Macro",
  47291. height: math.unit(124, "feet")
  47292. },
  47293. {
  47294. name: "Megamacro",
  47295. height: math.unit(850, "feet")
  47296. },
  47297. ]
  47298. ))
  47299. characterMakers.push(() => makeCharacter(
  47300. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47301. {
  47302. side: {
  47303. height: math.unit(13 + 6/12, "feet"),
  47304. weight: math.unit(3200, "lb"),
  47305. name: "Side",
  47306. image: {
  47307. source: "./media/characters/alvir/side.svg",
  47308. extra: 896/589,
  47309. bottom: 26/922
  47310. }
  47311. },
  47312. },
  47313. [
  47314. {
  47315. name: "Normal",
  47316. height: math.unit(13 + 6/12, "feet"),
  47317. default: true
  47318. },
  47319. ]
  47320. ))
  47321. characterMakers.push(() => makeCharacter(
  47322. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47323. {
  47324. front: {
  47325. height: math.unit(5 + 4/12, "feet"),
  47326. weight: math.unit(236, "lb"),
  47327. name: "Front",
  47328. image: {
  47329. source: "./media/characters/zaina-khalil/front.svg",
  47330. extra: 1533/1485,
  47331. bottom: 94/1627
  47332. }
  47333. },
  47334. side: {
  47335. height: math.unit(5 + 4/12, "feet"),
  47336. weight: math.unit(236, "lb"),
  47337. name: "Side",
  47338. image: {
  47339. source: "./media/characters/zaina-khalil/side.svg",
  47340. extra: 1537/1498,
  47341. bottom: 66/1603
  47342. }
  47343. },
  47344. back: {
  47345. height: math.unit(5 + 4/12, "feet"),
  47346. weight: math.unit(236, "lb"),
  47347. name: "Back",
  47348. image: {
  47349. source: "./media/characters/zaina-khalil/back.svg",
  47350. extra: 1546/1494,
  47351. bottom: 89/1635
  47352. }
  47353. },
  47354. },
  47355. [
  47356. {
  47357. name: "Normal",
  47358. height: math.unit(5 + 4/12, "feet"),
  47359. default: true
  47360. },
  47361. ]
  47362. ))
  47363. characterMakers.push(() => makeCharacter(
  47364. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47365. {
  47366. side: {
  47367. height: math.unit(12, "feet"),
  47368. weight: math.unit(4000, "lb"),
  47369. name: "Side",
  47370. image: {
  47371. source: "./media/characters/terry/side.svg",
  47372. extra: 1518/1439,
  47373. bottom: 149/1667
  47374. }
  47375. },
  47376. },
  47377. [
  47378. {
  47379. name: "Normal",
  47380. height: math.unit(12, "feet"),
  47381. default: true
  47382. },
  47383. ]
  47384. ))
  47385. characterMakers.push(() => makeCharacter(
  47386. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47387. {
  47388. front: {
  47389. height: math.unit(12, "feet"),
  47390. weight: math.unit(1500, "lb"),
  47391. name: "Front",
  47392. image: {
  47393. source: "./media/characters/kahea/front.svg",
  47394. extra: 1722/1617,
  47395. bottom: 179/1901
  47396. }
  47397. },
  47398. },
  47399. [
  47400. {
  47401. name: "Normal",
  47402. height: math.unit(12, "feet"),
  47403. default: true
  47404. },
  47405. ]
  47406. ))
  47407. characterMakers.push(() => makeCharacter(
  47408. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47409. {
  47410. demonFront: {
  47411. height: math.unit(36, "feet"),
  47412. name: "Front",
  47413. image: {
  47414. source: "./media/characters/alex-xuria/demon-front.svg",
  47415. extra: 1705/1673,
  47416. bottom: 198/1903
  47417. },
  47418. form: "demon",
  47419. default: true
  47420. },
  47421. demonBack: {
  47422. height: math.unit(36, "feet"),
  47423. name: "Back",
  47424. image: {
  47425. source: "./media/characters/alex-xuria/demon-back.svg",
  47426. extra: 1725/1693,
  47427. bottom: 70/1795
  47428. },
  47429. form: "demon"
  47430. },
  47431. demonHead: {
  47432. height: math.unit(2.14, "meters"),
  47433. name: "Head",
  47434. image: {
  47435. source: "./media/characters/alex-xuria/demon-head.svg"
  47436. },
  47437. form: "demon"
  47438. },
  47439. demonHand: {
  47440. height: math.unit(1.61, "meters"),
  47441. name: "Hand",
  47442. image: {
  47443. source: "./media/characters/alex-xuria/demon-hand.svg"
  47444. },
  47445. form: "demon"
  47446. },
  47447. demonPaw: {
  47448. height: math.unit(1.35, "meters"),
  47449. name: "Paw",
  47450. image: {
  47451. source: "./media/characters/alex-xuria/demon-paw.svg"
  47452. },
  47453. form: "demon"
  47454. },
  47455. demonFoot: {
  47456. height: math.unit(2.2, "meters"),
  47457. name: "Foot",
  47458. image: {
  47459. source: "./media/characters/alex-xuria/demon-foot.svg"
  47460. },
  47461. form: "demon"
  47462. },
  47463. demonCock: {
  47464. height: math.unit(1.74, "meters"),
  47465. name: "Cock",
  47466. image: {
  47467. source: "./media/characters/alex-xuria/demon-cock.svg"
  47468. },
  47469. form: "demon"
  47470. },
  47471. demonTailClosed: {
  47472. height: math.unit(1.47, "meters"),
  47473. name: "Tail (Closed)",
  47474. image: {
  47475. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47476. },
  47477. form: "demon"
  47478. },
  47479. demonTailOpen: {
  47480. height: math.unit(2.85, "meters"),
  47481. name: "Tail (Open)",
  47482. image: {
  47483. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47484. },
  47485. form: "demon"
  47486. },
  47487. incubusFront: {
  47488. height: math.unit(12, "feet"),
  47489. name: "Front",
  47490. image: {
  47491. source: "./media/characters/alex-xuria/incubus-front.svg",
  47492. extra: 1754/1677,
  47493. bottom: 125/1879
  47494. },
  47495. form: "incubus",
  47496. default: true
  47497. },
  47498. incubusBack: {
  47499. height: math.unit(12, "feet"),
  47500. name: "Back",
  47501. image: {
  47502. source: "./media/characters/alex-xuria/incubus-back.svg",
  47503. extra: 1702/1647,
  47504. bottom: 30/1732
  47505. },
  47506. form: "incubus"
  47507. },
  47508. incubusHead: {
  47509. height: math.unit(3.45, "feet"),
  47510. name: "Head",
  47511. image: {
  47512. source: "./media/characters/alex-xuria/incubus-head.svg"
  47513. },
  47514. form: "incubus"
  47515. },
  47516. rabbitFront: {
  47517. height: math.unit(6, "feet"),
  47518. name: "Front",
  47519. image: {
  47520. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47521. extra: 1369/1349,
  47522. bottom: 45/1414
  47523. },
  47524. form: "rabbit",
  47525. default: true
  47526. },
  47527. rabbitSide: {
  47528. height: math.unit(6, "feet"),
  47529. name: "Side",
  47530. image: {
  47531. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47532. extra: 1370/1356,
  47533. bottom: 37/1407
  47534. },
  47535. form: "rabbit"
  47536. },
  47537. rabbitBack: {
  47538. height: math.unit(6, "feet"),
  47539. name: "Back",
  47540. image: {
  47541. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47542. extra: 1375/1358,
  47543. bottom: 43/1418
  47544. },
  47545. form: "rabbit"
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(6, "feet"),
  47552. default: true,
  47553. form: "rabbit"
  47554. },
  47555. {
  47556. name: "Incubus",
  47557. height: math.unit(12, "feet"),
  47558. default: true,
  47559. form: "incubus"
  47560. },
  47561. {
  47562. name: "Demon",
  47563. height: math.unit(36, "feet"),
  47564. default: true,
  47565. form: "demon"
  47566. }
  47567. ],
  47568. {
  47569. "demon": {
  47570. name: "Demon",
  47571. default: true
  47572. },
  47573. "incubus": {
  47574. name: "Incubus",
  47575. },
  47576. "rabbit": {
  47577. name: "Rabbit"
  47578. }
  47579. }
  47580. ))
  47581. characterMakers.push(() => makeCharacter(
  47582. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47583. {
  47584. front: {
  47585. height: math.unit(7 + 5/12, "feet"),
  47586. weight: math.unit(510, "lb"),
  47587. name: "Front",
  47588. image: {
  47589. source: "./media/characters/syrup/front.svg",
  47590. extra: 932/916,
  47591. bottom: 26/958
  47592. }
  47593. },
  47594. },
  47595. [
  47596. {
  47597. name: "Normal",
  47598. height: math.unit(7 + 5/12, "feet"),
  47599. default: true
  47600. },
  47601. {
  47602. name: "Big",
  47603. height: math.unit(50, "feet")
  47604. },
  47605. {
  47606. name: "Macro",
  47607. height: math.unit(300, "feet")
  47608. },
  47609. {
  47610. name: "Megamacro",
  47611. height: math.unit(1, "mile")
  47612. },
  47613. ]
  47614. ))
  47615. characterMakers.push(() => makeCharacter(
  47616. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47617. {
  47618. front: {
  47619. height: math.unit(6 + 9/12, "feet"),
  47620. name: "Front",
  47621. image: {
  47622. source: "./media/characters/zeimne/front.svg",
  47623. extra: 1969/1806,
  47624. bottom: 53/2022
  47625. }
  47626. },
  47627. },
  47628. [
  47629. {
  47630. name: "Normal",
  47631. height: math.unit(6 + 9/12, "feet"),
  47632. default: true
  47633. },
  47634. {
  47635. name: "Giant",
  47636. height: math.unit(550, "feet")
  47637. },
  47638. {
  47639. name: "Mega",
  47640. height: math.unit(3, "miles")
  47641. },
  47642. {
  47643. name: "Giga",
  47644. height: math.unit(250, "miles")
  47645. },
  47646. {
  47647. name: "Tera",
  47648. height: math.unit(1, "AU")
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47654. {
  47655. front: {
  47656. height: math.unit(5 + 2/12, "feet"),
  47657. name: "Front",
  47658. image: {
  47659. source: "./media/characters/grar/front.svg",
  47660. extra: 1331/1119,
  47661. bottom: 60/1391
  47662. }
  47663. },
  47664. back: {
  47665. height: math.unit(5 + 2/12, "feet"),
  47666. name: "Back",
  47667. image: {
  47668. source: "./media/characters/grar/back.svg",
  47669. extra: 1385/1169,
  47670. bottom: 23/1408
  47671. }
  47672. },
  47673. },
  47674. [
  47675. {
  47676. name: "Normal",
  47677. height: math.unit(5 + 2/12, "feet"),
  47678. default: true
  47679. },
  47680. ]
  47681. ))
  47682. characterMakers.push(() => makeCharacter(
  47683. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47684. {
  47685. front: {
  47686. height: math.unit(13 + 7/12, "feet"),
  47687. weight: math.unit(2200, "lb"),
  47688. name: "Front",
  47689. image: {
  47690. source: "./media/characters/endraya/front.svg",
  47691. extra: 1289/1215,
  47692. bottom: 50/1339
  47693. }
  47694. },
  47695. nude: {
  47696. height: math.unit(13 + 7/12, "feet"),
  47697. weight: math.unit(2200, "lb"),
  47698. name: "Nude",
  47699. image: {
  47700. source: "./media/characters/endraya/nude.svg",
  47701. extra: 1247/1171,
  47702. bottom: 40/1287
  47703. }
  47704. },
  47705. head: {
  47706. height: math.unit(2.6, "feet"),
  47707. name: "Head",
  47708. image: {
  47709. source: "./media/characters/endraya/head.svg"
  47710. }
  47711. },
  47712. slit: {
  47713. height: math.unit(3.4, "feet"),
  47714. name: "Slit",
  47715. image: {
  47716. source: "./media/characters/endraya/slit.svg"
  47717. }
  47718. },
  47719. },
  47720. [
  47721. {
  47722. name: "Normal",
  47723. height: math.unit(13 + 7/12, "feet"),
  47724. default: true
  47725. },
  47726. {
  47727. name: "Macro",
  47728. height: math.unit(200, "feet")
  47729. },
  47730. ]
  47731. ))
  47732. characterMakers.push(() => makeCharacter(
  47733. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47734. {
  47735. front: {
  47736. height: math.unit(1.81, "meters"),
  47737. weight: math.unit(69, "kg"),
  47738. name: "Front",
  47739. image: {
  47740. source: "./media/characters/rodryana/front.svg",
  47741. extra: 2002/1921,
  47742. bottom: 53/2055
  47743. }
  47744. },
  47745. back: {
  47746. height: math.unit(1.81, "meters"),
  47747. weight: math.unit(69, "kg"),
  47748. name: "Back",
  47749. image: {
  47750. source: "./media/characters/rodryana/back.svg",
  47751. extra: 1993/1926,
  47752. bottom: 48/2041
  47753. }
  47754. },
  47755. maw: {
  47756. height: math.unit(0.19769417475, "meters"),
  47757. name: "Maw",
  47758. image: {
  47759. source: "./media/characters/rodryana/maw.svg"
  47760. }
  47761. },
  47762. slit: {
  47763. height: math.unit(0.31631067961, "meters"),
  47764. name: "Slit",
  47765. image: {
  47766. source: "./media/characters/rodryana/slit.svg"
  47767. }
  47768. },
  47769. },
  47770. [
  47771. {
  47772. name: "Normal",
  47773. height: math.unit(1.81, "meters")
  47774. },
  47775. {
  47776. name: "Mini Macro",
  47777. height: math.unit(181, "meters")
  47778. },
  47779. {
  47780. name: "Macro",
  47781. height: math.unit(452, "meters"),
  47782. default: true
  47783. },
  47784. {
  47785. name: "Mega Macro",
  47786. height: math.unit(1.375, "km")
  47787. },
  47788. {
  47789. name: "Giga Macro",
  47790. height: math.unit(13.575, "km")
  47791. },
  47792. ]
  47793. ))
  47794. characterMakers.push(() => makeCharacter(
  47795. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47796. {
  47797. front: {
  47798. height: math.unit(6, "feet"),
  47799. weight: math.unit(1000, "lb"),
  47800. name: "Front",
  47801. image: {
  47802. source: "./media/characters/asaya/front.svg",
  47803. extra: 1460/1200,
  47804. bottom: 71/1531
  47805. }
  47806. },
  47807. },
  47808. [
  47809. {
  47810. name: "Normal",
  47811. height: math.unit(8, "km"),
  47812. default: true
  47813. },
  47814. ]
  47815. ))
  47816. characterMakers.push(() => makeCharacter(
  47817. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47818. {
  47819. front: {
  47820. height: math.unit(3.5, "meters"),
  47821. name: "Front",
  47822. image: {
  47823. source: "./media/characters/sarzu-and-israz/front.svg",
  47824. extra: 1570/1558,
  47825. bottom: 150/1720
  47826. },
  47827. },
  47828. back: {
  47829. height: math.unit(3.5, "meters"),
  47830. name: "Back",
  47831. image: {
  47832. source: "./media/characters/sarzu-and-israz/back.svg",
  47833. extra: 1523/1509,
  47834. bottom: 132/1655
  47835. },
  47836. },
  47837. frontFemale: {
  47838. height: math.unit(3.5, "meters"),
  47839. name: "Front (Female)",
  47840. image: {
  47841. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47842. extra: 1570/1558,
  47843. bottom: 150/1720
  47844. },
  47845. },
  47846. frontHerm: {
  47847. height: math.unit(3.5, "meters"),
  47848. name: "Front (Herm)",
  47849. image: {
  47850. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47851. extra: 1570/1558,
  47852. bottom: 150/1720
  47853. },
  47854. },
  47855. },
  47856. [
  47857. {
  47858. name: "Normal",
  47859. height: math.unit(3.5, "meters"),
  47860. default: true,
  47861. },
  47862. {
  47863. name: "Macro",
  47864. height: math.unit(65.5, "meters"),
  47865. },
  47866. ],
  47867. ))
  47868. characterMakers.push(() => makeCharacter(
  47869. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47870. {
  47871. front: {
  47872. height: math.unit(6, "feet"),
  47873. weight: math.unit(250, "lb"),
  47874. name: "Front",
  47875. image: {
  47876. source: "./media/characters/zenimma/front.svg",
  47877. extra: 1346/1320,
  47878. bottom: 58/1404
  47879. }
  47880. },
  47881. back: {
  47882. height: math.unit(6, "feet"),
  47883. weight: math.unit(250, "lb"),
  47884. name: "Back",
  47885. image: {
  47886. source: "./media/characters/zenimma/back.svg",
  47887. extra: 1324/1308,
  47888. bottom: 44/1368
  47889. }
  47890. },
  47891. dick: {
  47892. height: math.unit(1.44, "feet"),
  47893. name: "Dick",
  47894. image: {
  47895. source: "./media/characters/zenimma/dick.svg"
  47896. }
  47897. },
  47898. },
  47899. [
  47900. {
  47901. name: "Canon Height",
  47902. height: math.unit(66, "miles"),
  47903. default: true
  47904. },
  47905. ]
  47906. ))
  47907. characterMakers.push(() => makeCharacter(
  47908. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47909. {
  47910. nude: {
  47911. height: math.unit(6, "feet"),
  47912. weight: math.unit(150, "lb"),
  47913. name: "Nude",
  47914. image: {
  47915. source: "./media/characters/shavon/nude.svg",
  47916. extra: 1242/1096,
  47917. bottom: 98/1340
  47918. }
  47919. },
  47920. dressed: {
  47921. height: math.unit(6, "feet"),
  47922. weight: math.unit(150, "lb"),
  47923. name: "Dressed",
  47924. image: {
  47925. source: "./media/characters/shavon/dressed.svg",
  47926. extra: 1242/1096,
  47927. bottom: 98/1340
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Macro",
  47934. height: math.unit(255, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47941. {
  47942. front: {
  47943. height: math.unit(6, "feet"),
  47944. name: "Front",
  47945. image: {
  47946. source: "./media/characters/steph/front.svg",
  47947. extra: 1430/1330,
  47948. bottom: 54/1484
  47949. }
  47950. },
  47951. },
  47952. [
  47953. {
  47954. name: "Normal",
  47955. height: math.unit(6, "feet"),
  47956. default: true
  47957. },
  47958. ]
  47959. ))
  47960. characterMakers.push(() => makeCharacter(
  47961. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47962. {
  47963. front: {
  47964. height: math.unit(9, "feet"),
  47965. weight: math.unit(400, "lb"),
  47966. name: "Front",
  47967. image: {
  47968. source: "./media/characters/kil'aman/front.svg",
  47969. extra: 1210/1159,
  47970. bottom: 109/1319
  47971. }
  47972. },
  47973. head: {
  47974. height: math.unit(2.14, "feet"),
  47975. name: "Head",
  47976. image: {
  47977. source: "./media/characters/kil'aman/head.svg"
  47978. }
  47979. },
  47980. maw: {
  47981. height: math.unit(1.21, "feet"),
  47982. name: "Maw",
  47983. image: {
  47984. source: "./media/characters/kil'aman/maw.svg"
  47985. }
  47986. },
  47987. foot: {
  47988. height: math.unit(1.7, "feet"),
  47989. name: "Foot",
  47990. image: {
  47991. source: "./media/characters/kil'aman/foot.svg"
  47992. }
  47993. },
  47994. dick: {
  47995. height: math.unit(2.1, "feet"),
  47996. name: "Dick",
  47997. image: {
  47998. source: "./media/characters/kil'aman/dick.svg"
  47999. }
  48000. },
  48001. },
  48002. [
  48003. {
  48004. name: "Normal",
  48005. height: math.unit(9, "feet")
  48006. },
  48007. {
  48008. name: "Canon Height",
  48009. height: math.unit(10, "miles"),
  48010. default: true
  48011. },
  48012. {
  48013. name: "Maximum",
  48014. height: math.unit(6e9, "miles")
  48015. },
  48016. ]
  48017. ))
  48018. characterMakers.push(() => makeCharacter(
  48019. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48020. {
  48021. front: {
  48022. height: math.unit(90, "feet"),
  48023. weight: math.unit(675000, "lb"),
  48024. name: "Front",
  48025. image: {
  48026. source: "./media/characters/qadan/front.svg",
  48027. extra: 1012/1004,
  48028. bottom: 78/1090
  48029. }
  48030. },
  48031. back: {
  48032. height: math.unit(90, "feet"),
  48033. weight: math.unit(675000, "lb"),
  48034. name: "Back",
  48035. image: {
  48036. source: "./media/characters/qadan/back.svg",
  48037. extra: 1042/1031,
  48038. bottom: 55/1097
  48039. }
  48040. },
  48041. armored: {
  48042. height: math.unit(90, "feet"),
  48043. weight: math.unit(675000, "lb"),
  48044. name: "Armored",
  48045. image: {
  48046. source: "./media/characters/qadan/armored.svg",
  48047. extra: 1047/1037,
  48048. bottom: 48/1095
  48049. }
  48050. },
  48051. },
  48052. [
  48053. {
  48054. name: "Normal",
  48055. height: math.unit(90, "feet"),
  48056. default: true
  48057. },
  48058. ]
  48059. ))
  48060. characterMakers.push(() => makeCharacter(
  48061. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48062. {
  48063. front: {
  48064. height: math.unit(6, "feet"),
  48065. weight: math.unit(225, "lb"),
  48066. name: "Front",
  48067. image: {
  48068. source: "./media/characters/brooke/front.svg",
  48069. extra: 1050/1010,
  48070. bottom: 66/1116
  48071. }
  48072. },
  48073. back: {
  48074. height: math.unit(6, "feet"),
  48075. weight: math.unit(225, "lb"),
  48076. name: "Back",
  48077. image: {
  48078. source: "./media/characters/brooke/back.svg",
  48079. extra: 1053/1013,
  48080. bottom: 41/1094
  48081. }
  48082. },
  48083. dressed: {
  48084. height: math.unit(6, "feet"),
  48085. weight: math.unit(225, "lb"),
  48086. name: "Dressed",
  48087. image: {
  48088. source: "./media/characters/brooke/dressed.svg",
  48089. extra: 1050/1010,
  48090. bottom: 66/1116
  48091. }
  48092. },
  48093. },
  48094. [
  48095. {
  48096. name: "Canon Height",
  48097. height: math.unit(500, "miles"),
  48098. default: true
  48099. },
  48100. ]
  48101. ))
  48102. characterMakers.push(() => makeCharacter(
  48103. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48104. {
  48105. front: {
  48106. height: math.unit(6 + 2/12, "feet"),
  48107. weight: math.unit(210, "lb"),
  48108. name: "Front",
  48109. image: {
  48110. source: "./media/characters/wubs/front.svg",
  48111. extra: 1345/1325,
  48112. bottom: 70/1415
  48113. }
  48114. },
  48115. back: {
  48116. height: math.unit(6 + 2/12, "feet"),
  48117. weight: math.unit(210, "lb"),
  48118. name: "Back",
  48119. image: {
  48120. source: "./media/characters/wubs/back.svg",
  48121. extra: 1296/1275,
  48122. bottom: 58/1354
  48123. }
  48124. },
  48125. },
  48126. [
  48127. {
  48128. name: "Normal",
  48129. height: math.unit(6 + 2/12, "feet"),
  48130. default: true
  48131. },
  48132. {
  48133. name: "Macro",
  48134. height: math.unit(1000, "feet")
  48135. },
  48136. {
  48137. name: "Megamacro",
  48138. height: math.unit(1, "mile")
  48139. },
  48140. ]
  48141. ))
  48142. characterMakers.push(() => makeCharacter(
  48143. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48144. {
  48145. front: {
  48146. height: math.unit(4, "feet"),
  48147. weight: math.unit(120, "lb"),
  48148. name: "Front",
  48149. image: {
  48150. source: "./media/characters/blue/front.svg",
  48151. extra: 1636/1525,
  48152. bottom: 43/1679
  48153. }
  48154. },
  48155. back: {
  48156. height: math.unit(4, "feet"),
  48157. weight: math.unit(120, "lb"),
  48158. name: "Back",
  48159. image: {
  48160. source: "./media/characters/blue/back.svg",
  48161. extra: 1660/1560,
  48162. bottom: 57/1717
  48163. }
  48164. },
  48165. paws: {
  48166. height: math.unit(0.826, "feet"),
  48167. name: "Paws",
  48168. image: {
  48169. source: "./media/characters/blue/paws.svg"
  48170. }
  48171. },
  48172. },
  48173. [
  48174. {
  48175. name: "Micro",
  48176. height: math.unit(3, "inches")
  48177. },
  48178. {
  48179. name: "Normal",
  48180. height: math.unit(4, "feet"),
  48181. default: true
  48182. },
  48183. {
  48184. name: "Femenine Form",
  48185. height: math.unit(14, "feet")
  48186. },
  48187. {
  48188. name: "Werebat Form",
  48189. height: math.unit(18, "feet")
  48190. },
  48191. ]
  48192. ))
  48193. characterMakers.push(() => makeCharacter(
  48194. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48195. {
  48196. female: {
  48197. height: math.unit(7 + 4/12, "feet"),
  48198. weight: math.unit(243, "lb"),
  48199. name: "Female",
  48200. image: {
  48201. source: "./media/characters/kaya/female.svg",
  48202. extra: 975/898,
  48203. bottom: 34/1009
  48204. }
  48205. },
  48206. herm: {
  48207. height: math.unit(7 + 4/12, "feet"),
  48208. weight: math.unit(243, "lb"),
  48209. name: "Herm",
  48210. image: {
  48211. source: "./media/characters/kaya/herm.svg",
  48212. extra: 975/898,
  48213. bottom: 34/1009
  48214. }
  48215. },
  48216. },
  48217. [
  48218. {
  48219. name: "Normal",
  48220. height: math.unit(7 + 4/12, "feet"),
  48221. default: true
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48227. {
  48228. female: {
  48229. height: math.unit(9 + 4/12, "feet"),
  48230. weight: math.unit(398, "lb"),
  48231. name: "Female",
  48232. image: {
  48233. source: "./media/characters/kassandra/female.svg",
  48234. extra: 908/839,
  48235. bottom: 61/969
  48236. }
  48237. },
  48238. intersex: {
  48239. height: math.unit(9 + 4/12, "feet"),
  48240. weight: math.unit(398, "lb"),
  48241. name: "Intersex",
  48242. image: {
  48243. source: "./media/characters/kassandra/intersex.svg",
  48244. extra: 908/839,
  48245. bottom: 61/969
  48246. }
  48247. },
  48248. },
  48249. [
  48250. {
  48251. name: "Normal",
  48252. height: math.unit(9 + 4/12, "feet"),
  48253. default: true
  48254. },
  48255. ]
  48256. ))
  48257. characterMakers.push(() => makeCharacter(
  48258. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48259. {
  48260. front: {
  48261. height: math.unit(3, "meters"),
  48262. name: "Front",
  48263. image: {
  48264. source: "./media/characters/amy/front.svg",
  48265. extra: 1380/1343,
  48266. bottom: 70/1450
  48267. }
  48268. },
  48269. back: {
  48270. height: math.unit(3, "meters"),
  48271. name: "Back",
  48272. image: {
  48273. source: "./media/characters/amy/back.svg",
  48274. extra: 1380/1347,
  48275. bottom: 66/1446
  48276. }
  48277. },
  48278. },
  48279. [
  48280. {
  48281. name: "Normal",
  48282. height: math.unit(3, "meters"),
  48283. default: true
  48284. },
  48285. ]
  48286. ))
  48287. characterMakers.push(() => makeCharacter(
  48288. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48289. {
  48290. side: {
  48291. height: math.unit(47, "cm"),
  48292. weight: math.unit(10.8, "kg"),
  48293. name: "Side",
  48294. image: {
  48295. source: "./media/characters/alphaschakal/side.svg",
  48296. extra: 1058/568,
  48297. bottom: 62/1120
  48298. }
  48299. },
  48300. back: {
  48301. height: math.unit(78, "cm"),
  48302. weight: math.unit(10.8, "kg"),
  48303. name: "Back",
  48304. image: {
  48305. source: "./media/characters/alphaschakal/back.svg",
  48306. extra: 1102/942,
  48307. bottom: 185/1287
  48308. }
  48309. },
  48310. head: {
  48311. height: math.unit(28, "cm"),
  48312. name: "Head",
  48313. image: {
  48314. source: "./media/characters/alphaschakal/head.svg",
  48315. extra: 696/508,
  48316. bottom: 0/696
  48317. }
  48318. },
  48319. paw: {
  48320. height: math.unit(16, "cm"),
  48321. name: "Paw",
  48322. image: {
  48323. source: "./media/characters/alphaschakal/paw.svg"
  48324. }
  48325. },
  48326. },
  48327. [
  48328. {
  48329. name: "Normal",
  48330. height: math.unit(47, "cm"),
  48331. default: true
  48332. },
  48333. {
  48334. name: "Macro",
  48335. height: math.unit(340, "cm")
  48336. },
  48337. ]
  48338. ))
  48339. characterMakers.push(() => makeCharacter(
  48340. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48341. {
  48342. front: {
  48343. height: math.unit(36, "earths"),
  48344. name: "Front",
  48345. image: {
  48346. source: "./media/characters/ecobyss/front.svg",
  48347. extra: 1282/1215,
  48348. bottom: 11/1293
  48349. }
  48350. },
  48351. back: {
  48352. height: math.unit(36, "earths"),
  48353. name: "Back",
  48354. image: {
  48355. source: "./media/characters/ecobyss/back.svg",
  48356. extra: 1291/1222,
  48357. bottom: 8/1299
  48358. }
  48359. },
  48360. },
  48361. [
  48362. {
  48363. name: "Normal",
  48364. height: math.unit(36, "earths"),
  48365. default: true
  48366. },
  48367. ]
  48368. ))
  48369. characterMakers.push(() => makeCharacter(
  48370. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48371. {
  48372. front: {
  48373. height: math.unit(12, "feet"),
  48374. name: "Front",
  48375. image: {
  48376. source: "./media/characters/vasuk/front.svg",
  48377. extra: 1326/1207,
  48378. bottom: 64/1390
  48379. }
  48380. },
  48381. },
  48382. [
  48383. {
  48384. name: "Normal",
  48385. height: math.unit(12, "feet"),
  48386. default: true
  48387. },
  48388. ]
  48389. ))
  48390. characterMakers.push(() => makeCharacter(
  48391. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48392. {
  48393. side: {
  48394. height: math.unit(100, "feet"),
  48395. name: "Side",
  48396. image: {
  48397. source: "./media/characters/linneaus/side.svg",
  48398. extra: 987/807,
  48399. bottom: 47/1034
  48400. }
  48401. },
  48402. },
  48403. [
  48404. {
  48405. name: "Macro",
  48406. height: math.unit(100, "feet"),
  48407. default: true
  48408. },
  48409. ]
  48410. ))
  48411. characterMakers.push(() => makeCharacter(
  48412. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48413. {
  48414. front: {
  48415. height: math.unit(8, "feet"),
  48416. weight: math.unit(1200, "lb"),
  48417. name: "Front",
  48418. image: {
  48419. source: "./media/characters/nyterious-daligdig/front.svg",
  48420. extra: 1284/1094,
  48421. bottom: 84/1368
  48422. }
  48423. },
  48424. back: {
  48425. height: math.unit(8, "feet"),
  48426. weight: math.unit(1200, "lb"),
  48427. name: "Back",
  48428. image: {
  48429. source: "./media/characters/nyterious-daligdig/back.svg",
  48430. extra: 1301/1121,
  48431. bottom: 129/1430
  48432. }
  48433. },
  48434. mouth: {
  48435. height: math.unit(1.464, "feet"),
  48436. name: "Mouth",
  48437. image: {
  48438. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48439. }
  48440. },
  48441. },
  48442. [
  48443. {
  48444. name: "Small",
  48445. height: math.unit(8, "feet"),
  48446. default: true
  48447. },
  48448. {
  48449. name: "Normal",
  48450. height: math.unit(15, "feet")
  48451. },
  48452. {
  48453. name: "Macro",
  48454. height: math.unit(90, "feet")
  48455. },
  48456. ]
  48457. ))
  48458. characterMakers.push(() => makeCharacter(
  48459. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48460. {
  48461. front: {
  48462. height: math.unit(7 + 4/12, "feet"),
  48463. weight: math.unit(252, "lb"),
  48464. name: "Front",
  48465. image: {
  48466. source: "./media/characters/bandel/front.svg",
  48467. extra: 1946/1775,
  48468. bottom: 26/1972
  48469. }
  48470. },
  48471. back: {
  48472. height: math.unit(7 + 4/12, "feet"),
  48473. weight: math.unit(252, "lb"),
  48474. name: "Back",
  48475. image: {
  48476. source: "./media/characters/bandel/back.svg",
  48477. extra: 1940/1770,
  48478. bottom: 25/1965
  48479. }
  48480. },
  48481. maw: {
  48482. height: math.unit(2.15, "feet"),
  48483. name: "Maw",
  48484. image: {
  48485. source: "./media/characters/bandel/maw.svg"
  48486. }
  48487. },
  48488. stomach: {
  48489. height: math.unit(1.95, "feet"),
  48490. name: "Stomach",
  48491. image: {
  48492. source: "./media/characters/bandel/stomach.svg"
  48493. }
  48494. },
  48495. },
  48496. [
  48497. {
  48498. name: "Normal",
  48499. height: math.unit(7 + 4/12, "feet"),
  48500. default: true
  48501. },
  48502. ]
  48503. ))
  48504. characterMakers.push(() => makeCharacter(
  48505. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48506. {
  48507. front: {
  48508. height: math.unit(10 + 5/12, "feet"),
  48509. weight: math.unit(773.5, "kg"),
  48510. name: "Front",
  48511. image: {
  48512. source: "./media/characters/zed/front.svg",
  48513. extra: 987/941,
  48514. bottom: 52/1039
  48515. }
  48516. },
  48517. },
  48518. [
  48519. {
  48520. name: "Short",
  48521. height: math.unit(5 + 4/12, "feet")
  48522. },
  48523. {
  48524. name: "Average",
  48525. height: math.unit(10 + 5/12, "feet"),
  48526. default: true
  48527. },
  48528. {
  48529. name: "Mini-Macro",
  48530. height: math.unit(24 + 9/12, "feet")
  48531. },
  48532. {
  48533. name: "Macro",
  48534. height: math.unit(249, "feet")
  48535. },
  48536. {
  48537. name: "Mega-Macro",
  48538. height: math.unit(12490, "feet")
  48539. },
  48540. {
  48541. name: "Giga-Macro",
  48542. height: math.unit(24.9, "miles")
  48543. },
  48544. {
  48545. name: "Tera-Macro",
  48546. height: math.unit(24900, "miles")
  48547. },
  48548. {
  48549. name: "Cosmic Scale",
  48550. height: math.unit(38.9, "lightyears")
  48551. },
  48552. {
  48553. name: "Universal Scale",
  48554. height: math.unit(138e12, "lightyears")
  48555. },
  48556. ]
  48557. ))
  48558. characterMakers.push(() => makeCharacter(
  48559. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48560. {
  48561. front: {
  48562. height: math.unit(1561, "inches"),
  48563. name: "Front",
  48564. image: {
  48565. source: "./media/characters/ivan/front.svg",
  48566. extra: 1126/1071,
  48567. bottom: 26/1152
  48568. }
  48569. },
  48570. back: {
  48571. height: math.unit(1561, "inches"),
  48572. name: "Back",
  48573. image: {
  48574. source: "./media/characters/ivan/back.svg",
  48575. extra: 1134/1079,
  48576. bottom: 30/1164
  48577. }
  48578. },
  48579. },
  48580. [
  48581. {
  48582. name: "Normal",
  48583. height: math.unit(1561, "inches"),
  48584. default: true
  48585. },
  48586. ]
  48587. ))
  48588. characterMakers.push(() => makeCharacter(
  48589. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48590. {
  48591. front: {
  48592. height: math.unit(5 + 7/12, "feet"),
  48593. weight: math.unit(150, "lb"),
  48594. name: "Front",
  48595. image: {
  48596. source: "./media/characters/robin-arctic-hare/front.svg",
  48597. extra: 1148/974,
  48598. bottom: 20/1168
  48599. }
  48600. },
  48601. },
  48602. [
  48603. {
  48604. name: "Normal",
  48605. height: math.unit(5 + 7/12, "feet"),
  48606. default: true
  48607. },
  48608. ]
  48609. ))
  48610. characterMakers.push(() => makeCharacter(
  48611. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48612. {
  48613. side: {
  48614. height: math.unit(5, "feet"),
  48615. name: "Side",
  48616. image: {
  48617. source: "./media/characters/birch/side.svg",
  48618. extra: 985/796,
  48619. bottom: 111/1096
  48620. }
  48621. },
  48622. },
  48623. [
  48624. {
  48625. name: "Normal",
  48626. height: math.unit(5, "feet"),
  48627. default: true
  48628. },
  48629. ]
  48630. ))
  48631. characterMakers.push(() => makeCharacter(
  48632. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48633. {
  48634. front: {
  48635. height: math.unit(4, "feet"),
  48636. name: "Front",
  48637. image: {
  48638. source: "./media/characters/rasp/front.svg",
  48639. extra: 561/478,
  48640. bottom: 74/635
  48641. }
  48642. },
  48643. },
  48644. [
  48645. {
  48646. name: "Normal",
  48647. height: math.unit(4, "feet"),
  48648. default: true
  48649. },
  48650. ]
  48651. ))
  48652. characterMakers.push(() => makeCharacter(
  48653. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48654. {
  48655. front: {
  48656. height: math.unit(4 + 6/12, "feet"),
  48657. name: "Front",
  48658. image: {
  48659. source: "./media/characters/agatha/front.svg",
  48660. extra: 947/933,
  48661. bottom: 42/989
  48662. }
  48663. },
  48664. back: {
  48665. height: math.unit(4 + 6/12, "feet"),
  48666. name: "Back",
  48667. image: {
  48668. source: "./media/characters/agatha/back.svg",
  48669. extra: 935/922,
  48670. bottom: 48/983
  48671. }
  48672. },
  48673. },
  48674. [
  48675. {
  48676. name: "Normal",
  48677. height: math.unit(4 + 6 /12, "feet"),
  48678. default: true
  48679. },
  48680. {
  48681. name: "Max Size",
  48682. height: math.unit(500, "feet")
  48683. },
  48684. ]
  48685. ))
  48686. characterMakers.push(() => makeCharacter(
  48687. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48688. {
  48689. side: {
  48690. height: math.unit(30, "feet"),
  48691. name: "Side",
  48692. image: {
  48693. source: "./media/characters/roggy/side.svg",
  48694. extra: 909/643,
  48695. bottom: 63/972
  48696. }
  48697. },
  48698. lounging: {
  48699. height: math.unit(20, "feet"),
  48700. name: "Lounging",
  48701. image: {
  48702. source: "./media/characters/roggy/lounging.svg",
  48703. extra: 643/479,
  48704. bottom: 145/788
  48705. }
  48706. },
  48707. handpaw: {
  48708. height: math.unit(13.1, "feet"),
  48709. name: "Handpaw",
  48710. image: {
  48711. source: "./media/characters/roggy/handpaw.svg"
  48712. }
  48713. },
  48714. footpaw: {
  48715. height: math.unit(15.8, "feet"),
  48716. name: "Footpaw",
  48717. image: {
  48718. source: "./media/characters/roggy/footpaw.svg"
  48719. }
  48720. },
  48721. },
  48722. [
  48723. {
  48724. name: "Menacing",
  48725. height: math.unit(30, "feet"),
  48726. default: true
  48727. },
  48728. ]
  48729. ))
  48730. characterMakers.push(() => makeCharacter(
  48731. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48732. {
  48733. front: {
  48734. height: math.unit(5 + 7/12, "feet"),
  48735. weight: math.unit(135, "lb"),
  48736. name: "Front",
  48737. image: {
  48738. source: "./media/characters/naomi/front.svg",
  48739. extra: 1209/1154,
  48740. bottom: 129/1338
  48741. }
  48742. },
  48743. back: {
  48744. height: math.unit(5 + 7/12, "feet"),
  48745. weight: math.unit(135, "lb"),
  48746. name: "Back",
  48747. image: {
  48748. source: "./media/characters/naomi/back.svg",
  48749. extra: 1252/1190,
  48750. bottom: 23/1275
  48751. }
  48752. },
  48753. },
  48754. [
  48755. {
  48756. name: "Normal",
  48757. height: math.unit(5 + 7 /12, "feet"),
  48758. default: true
  48759. },
  48760. ]
  48761. ))
  48762. characterMakers.push(() => makeCharacter(
  48763. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48764. {
  48765. side: {
  48766. height: math.unit(35, "meters"),
  48767. name: "Side",
  48768. image: {
  48769. source: "./media/characters/kimpi/side.svg",
  48770. extra: 419/382,
  48771. bottom: 63/482
  48772. }
  48773. },
  48774. hand: {
  48775. height: math.unit(8.96, "meters"),
  48776. name: "Hand",
  48777. image: {
  48778. source: "./media/characters/kimpi/hand.svg"
  48779. }
  48780. },
  48781. },
  48782. [
  48783. {
  48784. name: "Normal",
  48785. height: math.unit(35, "meters"),
  48786. default: true
  48787. },
  48788. ]
  48789. ))
  48790. characterMakers.push(() => makeCharacter(
  48791. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48792. {
  48793. front: {
  48794. height: math.unit(4 + 4/12, "feet"),
  48795. name: "Front",
  48796. image: {
  48797. source: "./media/characters/pepper-purrloin/front.svg",
  48798. extra: 1141/1024,
  48799. bottom: 21/1162
  48800. }
  48801. },
  48802. },
  48803. [
  48804. {
  48805. name: "Normal",
  48806. height: math.unit(4 + 4/12, "feet"),
  48807. default: true
  48808. },
  48809. ]
  48810. ))
  48811. characterMakers.push(() => makeCharacter(
  48812. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48813. {
  48814. front: {
  48815. height: math.unit(6 + 2/12, "feet"),
  48816. name: "Front",
  48817. image: {
  48818. source: "./media/characters/raphael/front.svg",
  48819. extra: 1101/962,
  48820. bottom: 59/1160
  48821. }
  48822. },
  48823. },
  48824. [
  48825. {
  48826. name: "Normal",
  48827. height: math.unit(6 + 2/12, "feet"),
  48828. default: true
  48829. },
  48830. ]
  48831. ))
  48832. characterMakers.push(() => makeCharacter(
  48833. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48834. {
  48835. front: {
  48836. height: math.unit(6, "feet"),
  48837. weight: math.unit(150, "lb"),
  48838. name: "Front",
  48839. image: {
  48840. source: "./media/characters/victor-williams/front.svg",
  48841. extra: 1894/1825,
  48842. bottom: 67/1961
  48843. }
  48844. },
  48845. },
  48846. [
  48847. {
  48848. name: "Normal",
  48849. height: math.unit(6, "feet"),
  48850. default: true
  48851. },
  48852. ]
  48853. ))
  48854. characterMakers.push(() => makeCharacter(
  48855. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48856. {
  48857. front: {
  48858. height: math.unit(5 + 8/12, "feet"),
  48859. weight: math.unit(150, "lb"),
  48860. name: "Front",
  48861. image: {
  48862. source: "./media/characters/rachel/front.svg",
  48863. extra: 1902/1787,
  48864. bottom: 46/1948
  48865. }
  48866. },
  48867. },
  48868. [
  48869. {
  48870. name: "Base Height",
  48871. height: math.unit(5 + 8/12, "feet"),
  48872. default: true
  48873. },
  48874. {
  48875. name: "Macro",
  48876. height: math.unit(200, "feet")
  48877. },
  48878. {
  48879. name: "Mega Macro",
  48880. height: math.unit(1, "mile")
  48881. },
  48882. {
  48883. name: "Giga Macro",
  48884. height: math.unit(1500, "miles")
  48885. },
  48886. {
  48887. name: "Tera Macro",
  48888. height: math.unit(8000, "miles")
  48889. },
  48890. {
  48891. name: "Tera Macro+",
  48892. height: math.unit(2e5, "miles")
  48893. },
  48894. ]
  48895. ))
  48896. characterMakers.push(() => makeCharacter(
  48897. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48898. {
  48899. front: {
  48900. height: math.unit(6.5, "feet"),
  48901. name: "Front",
  48902. image: {
  48903. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48904. extra: 860/819,
  48905. bottom: 307/1167
  48906. }
  48907. },
  48908. back: {
  48909. height: math.unit(6.5, "feet"),
  48910. name: "Back",
  48911. image: {
  48912. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48913. extra: 880/837,
  48914. bottom: 395/1275
  48915. }
  48916. },
  48917. sleeping: {
  48918. height: math.unit(2.79, "feet"),
  48919. name: "Sleeping",
  48920. image: {
  48921. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48922. extra: 465/383,
  48923. bottom: 263/728
  48924. }
  48925. },
  48926. maw: {
  48927. height: math.unit(2.52, "feet"),
  48928. name: "Maw",
  48929. image: {
  48930. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48931. }
  48932. },
  48933. },
  48934. [
  48935. {
  48936. name: "Normal",
  48937. height: math.unit(6.5, "feet"),
  48938. default: true
  48939. },
  48940. ]
  48941. ))
  48942. characterMakers.push(() => makeCharacter(
  48943. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48944. {
  48945. front: {
  48946. height: math.unit(5, "feet"),
  48947. name: "Front",
  48948. image: {
  48949. source: "./media/characters/nova-nerium/front.svg",
  48950. extra: 1548/1392,
  48951. bottom: 374/1922
  48952. }
  48953. },
  48954. back: {
  48955. height: math.unit(5, "feet"),
  48956. name: "Back",
  48957. image: {
  48958. source: "./media/characters/nova-nerium/back.svg",
  48959. extra: 1658/1468,
  48960. bottom: 257/1915
  48961. }
  48962. },
  48963. },
  48964. [
  48965. {
  48966. name: "Normal",
  48967. height: math.unit(5, "feet"),
  48968. default: true
  48969. },
  48970. ]
  48971. ))
  48972. characterMakers.push(() => makeCharacter(
  48973. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48974. {
  48975. front: {
  48976. height: math.unit(5 + 4/12, "feet"),
  48977. name: "Front",
  48978. image: {
  48979. source: "./media/characters/ashe-pyriph/front.svg",
  48980. extra: 1935/1747,
  48981. bottom: 60/1995
  48982. }
  48983. },
  48984. },
  48985. [
  48986. {
  48987. name: "Normal",
  48988. height: math.unit(5 + 4/12, "feet"),
  48989. default: true
  48990. },
  48991. ]
  48992. ))
  48993. characterMakers.push(() => makeCharacter(
  48994. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48995. {
  48996. front: {
  48997. height: math.unit(8.7, "feet"),
  48998. name: "Front",
  48999. image: {
  49000. source: "./media/characters/flicker-wisp/front.svg",
  49001. extra: 1835/1613,
  49002. bottom: 449/2284
  49003. }
  49004. },
  49005. side: {
  49006. height: math.unit(8.7, "feet"),
  49007. name: "Side",
  49008. image: {
  49009. source: "./media/characters/flicker-wisp/side.svg",
  49010. extra: 1841/1642,
  49011. bottom: 336/2177
  49012. },
  49013. default: true
  49014. },
  49015. maw: {
  49016. height: math.unit(3.35, "feet"),
  49017. name: "Maw",
  49018. image: {
  49019. source: "./media/characters/flicker-wisp/maw.svg",
  49020. extra: 2338/1506,
  49021. bottom: 0/2338
  49022. }
  49023. },
  49024. ovipositor: {
  49025. height: math.unit(4.95, "feet"),
  49026. name: "Ovipositor",
  49027. image: {
  49028. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49029. }
  49030. },
  49031. egg: {
  49032. height: math.unit(0.385, "feet"),
  49033. weight: math.unit(2, "lb"),
  49034. name: "Egg",
  49035. image: {
  49036. source: "./media/characters/flicker-wisp/egg.svg"
  49037. }
  49038. },
  49039. },
  49040. [
  49041. {
  49042. name: "Normal",
  49043. height: math.unit(8.7, "feet"),
  49044. default: true
  49045. },
  49046. ]
  49047. ))
  49048. characterMakers.push(() => makeCharacter(
  49049. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49050. {
  49051. side: {
  49052. height: math.unit(11, "feet"),
  49053. name: "Side",
  49054. image: {
  49055. source: "./media/characters/faefnul/side.svg",
  49056. extra: 1100/1007,
  49057. bottom: 0/1100
  49058. }
  49059. },
  49060. },
  49061. [
  49062. {
  49063. name: "Normal",
  49064. height: math.unit(11, "feet"),
  49065. default: true
  49066. },
  49067. ]
  49068. ))
  49069. characterMakers.push(() => makeCharacter(
  49070. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49071. {
  49072. front: {
  49073. height: math.unit(6 + 2/12, "feet"),
  49074. name: "Front",
  49075. image: {
  49076. source: "./media/characters/shady/front.svg",
  49077. extra: 502/461,
  49078. bottom: 9/511
  49079. }
  49080. },
  49081. kneeling: {
  49082. height: math.unit(4.6, "feet"),
  49083. name: "Kneeling",
  49084. image: {
  49085. source: "./media/characters/shady/kneeling.svg",
  49086. extra: 1328/1219,
  49087. bottom: 117/1445
  49088. }
  49089. },
  49090. maw: {
  49091. height: math.unit(2, "feet"),
  49092. name: "Maw",
  49093. image: {
  49094. source: "./media/characters/shady/maw.svg"
  49095. }
  49096. },
  49097. },
  49098. [
  49099. {
  49100. name: "Nano",
  49101. height: math.unit(1, "mm")
  49102. },
  49103. {
  49104. name: "Micro",
  49105. height: math.unit(12, "mm")
  49106. },
  49107. {
  49108. name: "Tiny",
  49109. height: math.unit(3, "inches")
  49110. },
  49111. {
  49112. name: "Normal",
  49113. height: math.unit(6 + 2/12, "feet"),
  49114. default: true
  49115. },
  49116. {
  49117. name: "Big",
  49118. height: math.unit(15, "feet")
  49119. },
  49120. {
  49121. name: "Macro",
  49122. height: math.unit(150, "feet")
  49123. },
  49124. {
  49125. name: "Titanic",
  49126. height: math.unit(500, "feet")
  49127. },
  49128. ]
  49129. ))
  49130. characterMakers.push(() => makeCharacter(
  49131. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49132. {
  49133. front: {
  49134. height: math.unit(12, "feet"),
  49135. name: "Front",
  49136. image: {
  49137. source: "./media/characters/fenrir/front.svg",
  49138. extra: 968/875,
  49139. bottom: 22/990
  49140. }
  49141. },
  49142. },
  49143. [
  49144. {
  49145. name: "Big",
  49146. height: math.unit(12, "feet"),
  49147. default: true
  49148. },
  49149. ]
  49150. ))
  49151. characterMakers.push(() => makeCharacter(
  49152. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49153. {
  49154. front: {
  49155. height: math.unit(5 + 4/12, "feet"),
  49156. name: "Front",
  49157. image: {
  49158. source: "./media/characters/makar/front.svg",
  49159. extra: 1181/1112,
  49160. bottom: 78/1259
  49161. }
  49162. },
  49163. },
  49164. [
  49165. {
  49166. name: "Normal",
  49167. height: math.unit(5 + 4/12, "feet"),
  49168. default: true
  49169. },
  49170. ]
  49171. ))
  49172. characterMakers.push(() => makeCharacter(
  49173. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49174. {
  49175. front: {
  49176. height: math.unit(5 + 7/12, "feet"),
  49177. name: "Front",
  49178. image: {
  49179. source: "./media/characters/callow/front.svg",
  49180. extra: 1482/1304,
  49181. bottom: 23/1505
  49182. }
  49183. },
  49184. back: {
  49185. height: math.unit(5 + 7/12, "feet"),
  49186. name: "Back",
  49187. image: {
  49188. source: "./media/characters/callow/back.svg",
  49189. extra: 1484/1296,
  49190. bottom: 25/1509
  49191. }
  49192. },
  49193. },
  49194. [
  49195. {
  49196. name: "Micro",
  49197. height: math.unit(3, "inches"),
  49198. default: true
  49199. },
  49200. {
  49201. name: "Normal",
  49202. height: math.unit(5 + 7/12, "feet")
  49203. },
  49204. ]
  49205. ))
  49206. characterMakers.push(() => makeCharacter(
  49207. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49208. {
  49209. front: {
  49210. height: math.unit(6 + 2/12, "feet"),
  49211. name: "Front",
  49212. image: {
  49213. source: "./media/characters/natel/front.svg",
  49214. extra: 1833/1692,
  49215. bottom: 166/1999
  49216. }
  49217. },
  49218. },
  49219. [
  49220. {
  49221. name: "Normal",
  49222. height: math.unit(6 + 2/12, "feet"),
  49223. default: true
  49224. },
  49225. ]
  49226. ))
  49227. characterMakers.push(() => makeCharacter(
  49228. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49229. {
  49230. front: {
  49231. height: math.unit(1.75, "meters"),
  49232. name: "Front",
  49233. image: {
  49234. source: "./media/characters/misu/front.svg",
  49235. extra: 1690/1558,
  49236. bottom: 234/1924
  49237. }
  49238. },
  49239. back: {
  49240. height: math.unit(1.75, "meters"),
  49241. name: "Back",
  49242. image: {
  49243. source: "./media/characters/misu/back.svg",
  49244. extra: 1762/1618,
  49245. bottom: 146/1908
  49246. }
  49247. },
  49248. frontNude: {
  49249. height: math.unit(1.75, "meters"),
  49250. name: "Front (Nude)",
  49251. image: {
  49252. source: "./media/characters/misu/front-nude.svg",
  49253. extra: 1690/1558,
  49254. bottom: 234/1924
  49255. }
  49256. },
  49257. backNude: {
  49258. height: math.unit(1.75, "meters"),
  49259. name: "Back (Nude)",
  49260. image: {
  49261. source: "./media/characters/misu/back-nude.svg",
  49262. extra: 1762/1618,
  49263. bottom: 146/1908
  49264. }
  49265. },
  49266. frontErect: {
  49267. height: math.unit(1.75, "meters"),
  49268. name: "Front (Erect)",
  49269. image: {
  49270. source: "./media/characters/misu/front-erect.svg",
  49271. extra: 1690/1558,
  49272. bottom: 234/1924
  49273. }
  49274. },
  49275. maw: {
  49276. height: math.unit(0.47, "meters"),
  49277. name: "Maw",
  49278. image: {
  49279. source: "./media/characters/misu/maw.svg"
  49280. }
  49281. },
  49282. head: {
  49283. height: math.unit(0.35, "meters"),
  49284. name: "Head",
  49285. image: {
  49286. source: "./media/characters/misu/head.svg"
  49287. }
  49288. },
  49289. rear: {
  49290. height: math.unit(0.47, "meters"),
  49291. name: "Rear",
  49292. image: {
  49293. source: "./media/characters/misu/rear.svg"
  49294. }
  49295. },
  49296. },
  49297. [
  49298. {
  49299. name: "Normal",
  49300. height: math.unit(1.75, "meters")
  49301. },
  49302. {
  49303. name: "Not good for the people",
  49304. height: math.unit(42, "meters")
  49305. },
  49306. {
  49307. name: "Not good for the neighborhood",
  49308. height: math.unit(135, "meters")
  49309. },
  49310. {
  49311. name: "Bit bigger problem",
  49312. height: math.unit(380, "meters"),
  49313. default: true
  49314. },
  49315. {
  49316. name: "Not good for the city",
  49317. height: math.unit(1.5, "km")
  49318. },
  49319. {
  49320. name: "Not good for the county",
  49321. height: math.unit(5.5, "km")
  49322. },
  49323. {
  49324. name: "Not good for the state",
  49325. height: math.unit(25, "km")
  49326. },
  49327. {
  49328. name: "Not good for the country",
  49329. height: math.unit(125, "km")
  49330. },
  49331. {
  49332. name: "Not good for the continent",
  49333. height: math.unit(2100, "km")
  49334. },
  49335. {
  49336. name: "Not good for the planet",
  49337. height: math.unit(35000, "km")
  49338. },
  49339. {
  49340. name: "Just no",
  49341. height: math.unit(8.5e18, "km")
  49342. },
  49343. ]
  49344. ))
  49345. characterMakers.push(() => makeCharacter(
  49346. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49347. {
  49348. front: {
  49349. height: math.unit(6.5, "feet"),
  49350. name: "Front",
  49351. image: {
  49352. source: "./media/characters/poppy/front.svg",
  49353. extra: 1878/1812,
  49354. bottom: 43/1921
  49355. }
  49356. },
  49357. feet: {
  49358. height: math.unit(1.06, "feet"),
  49359. name: "Feet",
  49360. image: {
  49361. source: "./media/characters/poppy/feet.svg",
  49362. extra: 1083/1083,
  49363. bottom: 87/1170
  49364. }
  49365. },
  49366. },
  49367. [
  49368. {
  49369. name: "Human",
  49370. height: math.unit(6.5, "feet")
  49371. },
  49372. {
  49373. name: "Default",
  49374. height: math.unit(300, "feet"),
  49375. default: true
  49376. },
  49377. {
  49378. name: "Huge",
  49379. height: math.unit(850, "feet")
  49380. },
  49381. {
  49382. name: "Mega",
  49383. height: math.unit(8000, "feet")
  49384. },
  49385. {
  49386. name: "Giga",
  49387. height: math.unit(300, "miles")
  49388. },
  49389. ]
  49390. ))
  49391. characterMakers.push(() => makeCharacter(
  49392. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49393. {
  49394. bipedal: {
  49395. height: math.unit(7, "feet"),
  49396. name: "Bipedal",
  49397. image: {
  49398. source: "./media/characters/zener/bipedal.svg",
  49399. extra: 874/805,
  49400. bottom: 109/983
  49401. }
  49402. },
  49403. quadrupedal: {
  49404. height: math.unit(4.64, "feet"),
  49405. name: "Quadrupedal",
  49406. image: {
  49407. source: "./media/characters/zener/quadrupedal.svg",
  49408. extra: 638/507,
  49409. bottom: 190/828
  49410. }
  49411. },
  49412. cock: {
  49413. height: math.unit(18, "inches"),
  49414. name: "Cock",
  49415. image: {
  49416. source: "./media/characters/zener/cock.svg"
  49417. }
  49418. },
  49419. },
  49420. [
  49421. {
  49422. name: "Normal",
  49423. height: math.unit(7, "feet"),
  49424. default: true
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49430. {
  49431. nude: {
  49432. height: math.unit(5 + 6/12, "feet"),
  49433. name: "Nude",
  49434. image: {
  49435. source: "./media/characters/charlie-dog/nude.svg",
  49436. extra: 768/734,
  49437. bottom: 26/794
  49438. }
  49439. },
  49440. dressed: {
  49441. height: math.unit(5 + 6/12, "feet"),
  49442. name: "Dressed",
  49443. image: {
  49444. source: "./media/characters/charlie-dog/dressed.svg",
  49445. extra: 768/734,
  49446. bottom: 26/794
  49447. }
  49448. },
  49449. },
  49450. [
  49451. {
  49452. name: "Normal",
  49453. height: math.unit(5 + 6/12, "feet"),
  49454. default: true
  49455. },
  49456. ]
  49457. ))
  49458. characterMakers.push(() => makeCharacter(
  49459. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49460. {
  49461. front: {
  49462. height: math.unit(6 + 4/12, "feet"),
  49463. name: "Front",
  49464. image: {
  49465. source: "./media/characters/ir'istrasz/front.svg",
  49466. extra: 1014/977,
  49467. bottom: 65/1079
  49468. }
  49469. },
  49470. back: {
  49471. height: math.unit(6 + 4/12, "feet"),
  49472. name: "Back",
  49473. image: {
  49474. source: "./media/characters/ir'istrasz/back.svg",
  49475. extra: 1024/992,
  49476. bottom: 34/1058
  49477. }
  49478. },
  49479. },
  49480. [
  49481. {
  49482. name: "Normal",
  49483. height: math.unit(6 + 4/12, "feet"),
  49484. default: true
  49485. },
  49486. ]
  49487. ))
  49488. characterMakers.push(() => makeCharacter(
  49489. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49490. {
  49491. front: {
  49492. height: math.unit(5 + 8/12, "feet"),
  49493. name: "Front",
  49494. image: {
  49495. source: "./media/characters/dee-ditto/front.svg",
  49496. extra: 1874/1785,
  49497. bottom: 68/1942
  49498. }
  49499. },
  49500. back: {
  49501. height: math.unit(5 + 8/12, "feet"),
  49502. name: "Back",
  49503. image: {
  49504. source: "./media/characters/dee-ditto/back.svg",
  49505. extra: 1870/1783,
  49506. bottom: 77/1947
  49507. }
  49508. },
  49509. },
  49510. [
  49511. {
  49512. name: "Normal",
  49513. height: math.unit(5 + 8/12, "feet"),
  49514. default: true
  49515. },
  49516. ]
  49517. ))
  49518. characterMakers.push(() => makeCharacter(
  49519. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49520. {
  49521. front: {
  49522. height: math.unit(7 + 6/12, "feet"),
  49523. name: "Front",
  49524. image: {
  49525. source: "./media/characters/fey/front.svg",
  49526. extra: 995/979,
  49527. bottom: 30/1025
  49528. }
  49529. },
  49530. back: {
  49531. height: math.unit(7 + 6/12, "feet"),
  49532. name: "Back",
  49533. image: {
  49534. source: "./media/characters/fey/back.svg",
  49535. extra: 1079/1008,
  49536. bottom: 5/1084
  49537. }
  49538. },
  49539. dressed: {
  49540. height: math.unit(7 + 6/12, "feet"),
  49541. name: "Dressed",
  49542. image: {
  49543. source: "./media/characters/fey/dressed.svg",
  49544. extra: 995/979,
  49545. bottom: 30/1025
  49546. }
  49547. },
  49548. },
  49549. [
  49550. {
  49551. name: "Normal",
  49552. height: math.unit(7 + 6/12, "feet"),
  49553. default: true
  49554. },
  49555. ]
  49556. ))
  49557. characterMakers.push(() => makeCharacter(
  49558. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49559. {
  49560. standing: {
  49561. height: math.unit(17, "feet"),
  49562. name: "Standing",
  49563. image: {
  49564. source: "./media/characters/aster/standing.svg",
  49565. extra: 1798/1598,
  49566. bottom: 117/1915
  49567. }
  49568. },
  49569. },
  49570. [
  49571. {
  49572. name: "Normal",
  49573. height: math.unit(17, "feet"),
  49574. default: true
  49575. },
  49576. {
  49577. name: "Homewrecker",
  49578. height: math.unit(95, "feet")
  49579. },
  49580. {
  49581. name: "Planet Devourer",
  49582. height: math.unit(1008000, "miles")
  49583. },
  49584. ]
  49585. ))
  49586. characterMakers.push(() => makeCharacter(
  49587. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49588. {
  49589. front: {
  49590. height: math.unit(6 + 5/12, "feet"),
  49591. weight: math.unit(265, "lb"),
  49592. name: "Front",
  49593. image: {
  49594. source: "./media/characters/devon-childs/front.svg",
  49595. extra: 1795/1721,
  49596. bottom: 41/1836
  49597. }
  49598. },
  49599. side: {
  49600. height: math.unit(6 + 5/12, "feet"),
  49601. weight: math.unit(265, "lb"),
  49602. name: "Side",
  49603. image: {
  49604. source: "./media/characters/devon-childs/side.svg",
  49605. extra: 1812/1738,
  49606. bottom: 30/1842
  49607. }
  49608. },
  49609. back: {
  49610. height: math.unit(6 + 5/12, "feet"),
  49611. weight: math.unit(265, "lb"),
  49612. name: "Back",
  49613. image: {
  49614. source: "./media/characters/devon-childs/back.svg",
  49615. extra: 1808/1735,
  49616. bottom: 23/1831
  49617. }
  49618. },
  49619. hand: {
  49620. height: math.unit(1.464, "feet"),
  49621. name: "Hand",
  49622. image: {
  49623. source: "./media/characters/devon-childs/hand.svg"
  49624. }
  49625. },
  49626. foot: {
  49627. height: math.unit(1.6, "feet"),
  49628. name: "Foot",
  49629. image: {
  49630. source: "./media/characters/devon-childs/foot.svg"
  49631. }
  49632. },
  49633. },
  49634. [
  49635. {
  49636. name: "Micro",
  49637. height: math.unit(7, "cm")
  49638. },
  49639. {
  49640. name: "Normal",
  49641. height: math.unit(6 + 5/12, "feet"),
  49642. default: true
  49643. },
  49644. {
  49645. name: "Macro",
  49646. height: math.unit(154, "feet")
  49647. },
  49648. ]
  49649. ))
  49650. characterMakers.push(() => makeCharacter(
  49651. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49652. {
  49653. front: {
  49654. height: math.unit(6, "feet"),
  49655. weight: math.unit(180, "lb"),
  49656. name: "Front",
  49657. image: {
  49658. source: "./media/characters/lydemox-vir/front.svg",
  49659. extra: 1632/1435,
  49660. bottom: 58/1690
  49661. }
  49662. },
  49663. frontSFW: {
  49664. height: math.unit(6, "feet"),
  49665. weight: math.unit(180, "lb"),
  49666. name: "Front (SFW)",
  49667. image: {
  49668. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49669. extra: 1632/1435,
  49670. bottom: 58/1690
  49671. }
  49672. },
  49673. back: {
  49674. height: math.unit(6, "feet"),
  49675. weight: math.unit(180, "lb"),
  49676. name: "Back",
  49677. image: {
  49678. source: "./media/characters/lydemox-vir/back.svg",
  49679. extra: 1593/1408,
  49680. bottom: 31/1624
  49681. }
  49682. },
  49683. paw: {
  49684. height: math.unit(1.85, "feet"),
  49685. name: "Paw",
  49686. image: {
  49687. source: "./media/characters/lydemox-vir/paw.svg"
  49688. }
  49689. },
  49690. dick: {
  49691. height: math.unit(1.8, "feet"),
  49692. name: "Dick",
  49693. image: {
  49694. source: "./media/characters/lydemox-vir/dick.svg"
  49695. }
  49696. },
  49697. },
  49698. [
  49699. {
  49700. name: "Macro",
  49701. height: math.unit(100, "feet"),
  49702. default: true
  49703. },
  49704. {
  49705. name: "Teramacro",
  49706. height: math.unit(1, "earth")
  49707. },
  49708. {
  49709. name: "Planetary",
  49710. height: math.unit(20, "earths")
  49711. },
  49712. ]
  49713. ))
  49714. characterMakers.push(() => makeCharacter(
  49715. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49716. {
  49717. front: {
  49718. height: math.unit(15 + 8/12, "feet"),
  49719. weight: math.unit(1237, "kg"),
  49720. name: "Front",
  49721. image: {
  49722. source: "./media/characters/mia/front.svg",
  49723. extra: 1573/1446,
  49724. bottom: 58/1631
  49725. }
  49726. },
  49727. },
  49728. [
  49729. {
  49730. name: "Small",
  49731. height: math.unit(9 + 5/12, "feet")
  49732. },
  49733. {
  49734. name: "Normal",
  49735. height: math.unit(15 + 8/12, "feet"),
  49736. default: true
  49737. },
  49738. ]
  49739. ))
  49740. characterMakers.push(() => makeCharacter(
  49741. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49742. {
  49743. front: {
  49744. height: math.unit(10 + 6/12, "feet"),
  49745. weight: math.unit(1.3, "tons"),
  49746. name: "Front",
  49747. image: {
  49748. source: "./media/characters/mr-graves/front.svg",
  49749. extra: 1779/1695,
  49750. bottom: 198/1977
  49751. }
  49752. },
  49753. },
  49754. [
  49755. {
  49756. name: "Normal",
  49757. height: math.unit(10 + 6 /12, "feet"),
  49758. default: true
  49759. },
  49760. ]
  49761. ))
  49762. characterMakers.push(() => makeCharacter(
  49763. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49764. {
  49765. dressedFront: {
  49766. height: math.unit(5 + 8/12, "feet"),
  49767. weight: math.unit(125, "lb"),
  49768. name: "Dressed (Front)",
  49769. image: {
  49770. source: "./media/characters/jess/dressed-front.svg",
  49771. extra: 1176/1152,
  49772. bottom: 42/1218
  49773. }
  49774. },
  49775. dressedSide: {
  49776. height: math.unit(5 + 8/12, "feet"),
  49777. weight: math.unit(125, "lb"),
  49778. name: "Dressed (Side)",
  49779. image: {
  49780. source: "./media/characters/jess/dressed-side.svg",
  49781. extra: 1204/1190,
  49782. bottom: 6/1210
  49783. }
  49784. },
  49785. nudeFront: {
  49786. height: math.unit(5 + 8/12, "feet"),
  49787. weight: math.unit(125, "lb"),
  49788. name: "Nude (Front)",
  49789. image: {
  49790. source: "./media/characters/jess/nude-front.svg",
  49791. extra: 1176/1152,
  49792. bottom: 42/1218
  49793. }
  49794. },
  49795. nudeSide: {
  49796. height: math.unit(5 + 8/12, "feet"),
  49797. weight: math.unit(125, "lb"),
  49798. name: "Nude (Side)",
  49799. image: {
  49800. source: "./media/characters/jess/nude-side.svg",
  49801. extra: 1204/1190,
  49802. bottom: 6/1210
  49803. }
  49804. },
  49805. organsFront: {
  49806. height: math.unit(2.83799342105, "feet"),
  49807. name: "Organs (Front)",
  49808. image: {
  49809. source: "./media/characters/jess/organs-front.svg"
  49810. }
  49811. },
  49812. organsSide: {
  49813. height: math.unit(2.64225290474, "feet"),
  49814. name: "Organs (Side)",
  49815. image: {
  49816. source: "./media/characters/jess/organs-side.svg"
  49817. }
  49818. },
  49819. digestiveTractFront: {
  49820. height: math.unit(2.8106580871, "feet"),
  49821. name: "Digestive Tract (Front)",
  49822. image: {
  49823. source: "./media/characters/jess/digestive-tract-front.svg"
  49824. }
  49825. },
  49826. digestiveTractSide: {
  49827. height: math.unit(2.54365045014, "feet"),
  49828. name: "Digestive Tract (Side)",
  49829. image: {
  49830. source: "./media/characters/jess/digestive-tract-side.svg"
  49831. }
  49832. },
  49833. respiratorySystemFront: {
  49834. height: math.unit(1.11196233456, "feet"),
  49835. name: "Respiratory System (Front)",
  49836. image: {
  49837. source: "./media/characters/jess/respiratory-system-front.svg"
  49838. }
  49839. },
  49840. respiratorySystemSide: {
  49841. height: math.unit(0.89327966297, "feet"),
  49842. name: "Respiratory System (Side)",
  49843. image: {
  49844. source: "./media/characters/jess/respiratory-system-side.svg"
  49845. }
  49846. },
  49847. urinaryTractFront: {
  49848. height: math.unit(1.16126356186, "feet"),
  49849. name: "Urinary Tract (Front)",
  49850. image: {
  49851. source: "./media/characters/jess/urinary-tract-front.svg"
  49852. }
  49853. },
  49854. urinaryTractSide: {
  49855. height: math.unit(1.20910039627, "feet"),
  49856. name: "Urinary Tract (Side)",
  49857. image: {
  49858. source: "./media/characters/jess/urinary-tract-side.svg"
  49859. }
  49860. },
  49861. reproductiveOrgansFront: {
  49862. height: math.unit(0.48422591566, "feet"),
  49863. name: "Reproductive Organs (Front)",
  49864. image: {
  49865. source: "./media/characters/jess/reproductive-organs-front.svg"
  49866. }
  49867. },
  49868. reproductiveOrgansSide: {
  49869. height: math.unit(0.61553314481, "feet"),
  49870. name: "Reproductive Organs (Side)",
  49871. image: {
  49872. source: "./media/characters/jess/reproductive-organs-side.svg"
  49873. }
  49874. },
  49875. breastsFront: {
  49876. height: math.unit(0.47690395121, "feet"),
  49877. name: "Breasts (Front)",
  49878. image: {
  49879. source: "./media/characters/jess/breasts-front.svg"
  49880. }
  49881. },
  49882. breastsSide: {
  49883. height: math.unit(0.30556998307, "feet"),
  49884. name: "Breasts (Side)",
  49885. image: {
  49886. source: "./media/characters/jess/breasts-side.svg"
  49887. }
  49888. },
  49889. heartFront: {
  49890. height: math.unit(0.53011022622, "feet"),
  49891. name: "Heart (Front)",
  49892. image: {
  49893. source: "./media/characters/jess/heart-front.svg"
  49894. }
  49895. },
  49896. heartSide: {
  49897. height: math.unit(0.51790695213, "feet"),
  49898. name: "Heart (Side)",
  49899. image: {
  49900. source: "./media/characters/jess/heart-side.svg"
  49901. }
  49902. },
  49903. earsAndNoseFront: {
  49904. height: math.unit(0.29385483995, "feet"),
  49905. name: "Ears and Nose (Front)",
  49906. image: {
  49907. source: "./media/characters/jess/ears-and-nose-front.svg"
  49908. }
  49909. },
  49910. earsAndNoseSide: {
  49911. height: math.unit(0.18109658741, "feet"),
  49912. name: "Ears and Nose (Side)",
  49913. image: {
  49914. source: "./media/characters/jess/ears-and-nose-side.svg"
  49915. }
  49916. },
  49917. },
  49918. [
  49919. {
  49920. name: "Normal",
  49921. height: math.unit(5 + 8/12, "feet"),
  49922. default: true
  49923. },
  49924. ]
  49925. ))
  49926. characterMakers.push(() => makeCharacter(
  49927. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49928. {
  49929. front: {
  49930. height: math.unit(6, "feet"),
  49931. weight: math.unit(6.64467e-7, "grams"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/wimpering/front.svg",
  49935. extra: 597/587,
  49936. bottom: 34/631
  49937. }
  49938. },
  49939. },
  49940. [
  49941. {
  49942. name: "Micro",
  49943. height: math.unit(0.4, "mm"),
  49944. default: true
  49945. },
  49946. ]
  49947. ))
  49948. characterMakers.push(() => makeCharacter(
  49949. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49950. {
  49951. front: {
  49952. height: math.unit(5 + 2/12, "feet"),
  49953. weight: math.unit(110, "lb"),
  49954. name: "Front",
  49955. image: {
  49956. source: "./media/characters/keltre/front.svg",
  49957. extra: 1099/1057,
  49958. bottom: 22/1121
  49959. }
  49960. },
  49961. back: {
  49962. height: math.unit(5 + 2/12, "feet"),
  49963. weight: math.unit(110, "lb"),
  49964. name: "Back",
  49965. image: {
  49966. source: "./media/characters/keltre/back.svg",
  49967. extra: 1095/1053,
  49968. bottom: 17/1112
  49969. }
  49970. },
  49971. dressed: {
  49972. height: math.unit(5 + 2/12, "feet"),
  49973. weight: math.unit(110, "lb"),
  49974. name: "Dressed",
  49975. image: {
  49976. source: "./media/characters/keltre/dressed.svg",
  49977. extra: 1099/1057,
  49978. bottom: 22/1121
  49979. }
  49980. },
  49981. winter: {
  49982. height: math.unit(5 + 2/12, "feet"),
  49983. weight: math.unit(110, "lb"),
  49984. name: "Winter",
  49985. image: {
  49986. source: "./media/characters/keltre/winter.svg",
  49987. extra: 1099/1057,
  49988. bottom: 22/1121
  49989. }
  49990. },
  49991. head: {
  49992. height: math.unit(1.61 * 0.86, "feet"),
  49993. name: "Head",
  49994. image: {
  49995. source: "./media/characters/keltre/head.svg",
  49996. extra: 534/421,
  49997. bottom: 0/534
  49998. }
  49999. },
  50000. hand: {
  50001. height: math.unit(1.3 * 0.86, "feet"),
  50002. name: "Hand",
  50003. image: {
  50004. source: "./media/characters/keltre/hand.svg"
  50005. }
  50006. },
  50007. foot: {
  50008. height: math.unit(1.8 * 0.86, "feet"),
  50009. name: "Foot",
  50010. image: {
  50011. source: "./media/characters/keltre/foot.svg"
  50012. }
  50013. },
  50014. },
  50015. [
  50016. {
  50017. name: "Fine",
  50018. height: math.unit(1, "inch")
  50019. },
  50020. {
  50021. name: "Dimnutive",
  50022. height: math.unit(4, "inches")
  50023. },
  50024. {
  50025. name: "Tiny",
  50026. height: math.unit(1, "foot")
  50027. },
  50028. {
  50029. name: "Small",
  50030. height: math.unit(3, "feet")
  50031. },
  50032. {
  50033. name: "Normal",
  50034. height: math.unit(5 + 2/12, "feet"),
  50035. default: true
  50036. },
  50037. ]
  50038. ))
  50039. characterMakers.push(() => makeCharacter(
  50040. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50041. {
  50042. front: {
  50043. height: math.unit(6 + 2/12, "feet"),
  50044. name: "Front",
  50045. image: {
  50046. source: "./media/characters/nox/front.svg",
  50047. extra: 1917/1830,
  50048. bottom: 74/1991
  50049. }
  50050. },
  50051. back: {
  50052. height: math.unit(6 + 2/12, "feet"),
  50053. name: "Back",
  50054. image: {
  50055. source: "./media/characters/nox/back.svg",
  50056. extra: 1896/1815,
  50057. bottom: 21/1917
  50058. }
  50059. },
  50060. head: {
  50061. height: math.unit(1.1, "feet"),
  50062. name: "Head",
  50063. image: {
  50064. source: "./media/characters/nox/head.svg",
  50065. extra: 874/704,
  50066. bottom: 0/874
  50067. }
  50068. },
  50069. tattoo: {
  50070. height: math.unit(0.729, "feet"),
  50071. name: "Tattoo",
  50072. image: {
  50073. source: "./media/characters/nox/tattoo.svg"
  50074. }
  50075. },
  50076. },
  50077. [
  50078. {
  50079. name: "Normal",
  50080. height: math.unit(6 + 2/12, "feet")
  50081. },
  50082. {
  50083. name: "Gigamacro",
  50084. height: math.unit(2, "earths"),
  50085. default: true
  50086. },
  50087. {
  50088. name: "Cosmic",
  50089. height: math.unit(867, "yottameters")
  50090. },
  50091. ]
  50092. ))
  50093. characterMakers.push(() => makeCharacter(
  50094. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50095. {
  50096. front: {
  50097. height: math.unit(6, "feet"),
  50098. weight: math.unit(150, "lb"),
  50099. name: "Front",
  50100. image: {
  50101. source: "./media/characters/caspian/front.svg",
  50102. extra: 1443/1359,
  50103. bottom: 0/1443
  50104. }
  50105. },
  50106. back: {
  50107. height: math.unit(6, "feet"),
  50108. weight: math.unit(150, "lb"),
  50109. name: "Back",
  50110. image: {
  50111. source: "./media/characters/caspian/back.svg",
  50112. extra: 1379/1309,
  50113. bottom: 0/1379
  50114. }
  50115. },
  50116. head: {
  50117. height: math.unit(0.9, "feet"),
  50118. name: "Head",
  50119. image: {
  50120. source: "./media/characters/caspian/head.svg",
  50121. extra: 692/492,
  50122. bottom: 0/692
  50123. }
  50124. },
  50125. headAlt: {
  50126. height: math.unit(0.95, "feet"),
  50127. name: "Head (Alt)",
  50128. image: {
  50129. source: "./media/characters/caspian/head-alt.svg",
  50130. extra: 668/508,
  50131. bottom: 0/668
  50132. }
  50133. },
  50134. hand: {
  50135. height: math.unit(0.8, "feet"),
  50136. name: "Hand",
  50137. image: {
  50138. source: "./media/characters/caspian/hand.svg"
  50139. }
  50140. },
  50141. paw: {
  50142. height: math.unit(0.95, "feet"),
  50143. name: "Paw",
  50144. image: {
  50145. source: "./media/characters/caspian/paw.svg"
  50146. }
  50147. },
  50148. },
  50149. [
  50150. {
  50151. name: "Normal",
  50152. height: math.unit(162, "feet"),
  50153. default: true
  50154. },
  50155. ]
  50156. ))
  50157. characterMakers.push(() => makeCharacter(
  50158. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50159. {
  50160. front: {
  50161. height: math.unit(6, "feet"),
  50162. name: "Front",
  50163. image: {
  50164. source: "./media/characters/myra-aisling/front.svg",
  50165. extra: 1268/1166,
  50166. bottom: 73/1341
  50167. }
  50168. },
  50169. back: {
  50170. height: math.unit(6, "feet"),
  50171. name: "Back",
  50172. image: {
  50173. source: "./media/characters/myra-aisling/back.svg",
  50174. extra: 1249/1149,
  50175. bottom: 79/1328
  50176. }
  50177. },
  50178. dressed: {
  50179. height: math.unit(6, "feet"),
  50180. name: "Dressed",
  50181. image: {
  50182. source: "./media/characters/myra-aisling/dressed.svg",
  50183. extra: 1290/1189,
  50184. bottom: 47/1337
  50185. }
  50186. },
  50187. hand: {
  50188. height: math.unit(1.1, "feet"),
  50189. name: "Hand",
  50190. image: {
  50191. source: "./media/characters/myra-aisling/hand.svg"
  50192. }
  50193. },
  50194. paw: {
  50195. height: math.unit(1.23, "feet"),
  50196. name: "Paw",
  50197. image: {
  50198. source: "./media/characters/myra-aisling/paw.svg"
  50199. }
  50200. },
  50201. },
  50202. [
  50203. {
  50204. name: "Normal",
  50205. height: math.unit(160, "feet"),
  50206. default: true
  50207. },
  50208. ]
  50209. ))
  50210. characterMakers.push(() => makeCharacter(
  50211. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50212. {
  50213. front: {
  50214. height: math.unit(6, "feet"),
  50215. name: "Front",
  50216. image: {
  50217. source: "./media/characters/tenley-sidero/front.svg",
  50218. extra: 1365/1276,
  50219. bottom: 47/1412
  50220. }
  50221. },
  50222. back: {
  50223. height: math.unit(6, "feet"),
  50224. name: "Back",
  50225. image: {
  50226. source: "./media/characters/tenley-sidero/back.svg",
  50227. extra: 1383/1283,
  50228. bottom: 35/1418
  50229. }
  50230. },
  50231. dressed: {
  50232. height: math.unit(6, "feet"),
  50233. name: "Dressed",
  50234. image: {
  50235. source: "./media/characters/tenley-sidero/dressed.svg",
  50236. extra: 1364/1275,
  50237. bottom: 42/1406
  50238. }
  50239. },
  50240. head: {
  50241. height: math.unit(1.47, "feet"),
  50242. name: "Head",
  50243. image: {
  50244. source: "./media/characters/tenley-sidero/head.svg",
  50245. extra: 610/490,
  50246. bottom: 0/610
  50247. }
  50248. },
  50249. },
  50250. [
  50251. {
  50252. name: "Normal",
  50253. height: math.unit(154, "feet"),
  50254. default: true
  50255. },
  50256. ]
  50257. ))
  50258. characterMakers.push(() => makeCharacter(
  50259. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50260. {
  50261. front: {
  50262. height: math.unit(5, "inches"),
  50263. name: "Front",
  50264. image: {
  50265. source: "./media/characters/mallory/front.svg",
  50266. extra: 1919/1678,
  50267. bottom: 29/1948
  50268. }
  50269. },
  50270. hand: {
  50271. height: math.unit(0.73, "inches"),
  50272. name: "Hand",
  50273. image: {
  50274. source: "./media/characters/mallory/hand.svg"
  50275. }
  50276. },
  50277. paw: {
  50278. height: math.unit(0.68, "inches"),
  50279. name: "Paw",
  50280. image: {
  50281. source: "./media/characters/mallory/paw.svg"
  50282. }
  50283. },
  50284. },
  50285. [
  50286. {
  50287. name: "Small",
  50288. height: math.unit(5, "inches"),
  50289. default: true
  50290. },
  50291. ]
  50292. ))
  50293. characterMakers.push(() => makeCharacter(
  50294. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50295. {
  50296. naked: {
  50297. height: math.unit(6, "feet"),
  50298. name: "Naked",
  50299. image: {
  50300. source: "./media/characters/mab/naked.svg",
  50301. extra: 1855/1757,
  50302. bottom: 208/2063
  50303. }
  50304. },
  50305. outside: {
  50306. height: math.unit(6, "feet"),
  50307. name: "Outside",
  50308. image: {
  50309. source: "./media/characters/mab/outside.svg",
  50310. extra: 1855/1757,
  50311. bottom: 208/2063
  50312. }
  50313. },
  50314. party: {
  50315. height: math.unit(6, "feet"),
  50316. name: "Party",
  50317. image: {
  50318. source: "./media/characters/mab/party.svg",
  50319. extra: 1855/1757,
  50320. bottom: 208/2063
  50321. }
  50322. },
  50323. },
  50324. [
  50325. {
  50326. name: "Normal",
  50327. height: math.unit(165, "feet"),
  50328. default: true
  50329. },
  50330. ]
  50331. ))
  50332. characterMakers.push(() => makeCharacter(
  50333. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50334. {
  50335. feral: {
  50336. height: math.unit(12, "feet"),
  50337. weight: math.unit(20000, "lb"),
  50338. name: "Side",
  50339. image: {
  50340. source: "./media/characters/winter/feral.svg",
  50341. extra: 1286/943,
  50342. bottom: 112/1398
  50343. },
  50344. form: "feral",
  50345. default: true
  50346. },
  50347. feralNsfw: {
  50348. height: math.unit(12, "feet"),
  50349. weight: math.unit(20000, "lb"),
  50350. name: "Side (NSFW)",
  50351. image: {
  50352. source: "./media/characters/winter/feral-nsfw.svg",
  50353. extra: 1286/943,
  50354. bottom: 112/1398
  50355. },
  50356. form: "feral"
  50357. },
  50358. dick: {
  50359. height: math.unit(3.79, "feet"),
  50360. name: "Dick",
  50361. image: {
  50362. source: "./media/characters/winter/dick.svg"
  50363. },
  50364. form: "feral"
  50365. },
  50366. anthro: {
  50367. height: math.unit(12, "feet"),
  50368. weight: math.unit(10, "tons"),
  50369. name: "Anthro",
  50370. image: {
  50371. source: "./media/characters/winter/anthro.svg",
  50372. extra: 1701/1553,
  50373. bottom: 64/1765
  50374. },
  50375. form: "anthro",
  50376. default: true
  50377. },
  50378. },
  50379. [
  50380. {
  50381. name: "Big",
  50382. height: math.unit(12, "feet"),
  50383. default: true,
  50384. form: "feral"
  50385. },
  50386. {
  50387. name: "Big",
  50388. height: math.unit(12, "feet"),
  50389. default: true,
  50390. form: "anthro"
  50391. },
  50392. ],
  50393. {
  50394. "feral": {
  50395. name: "Feral",
  50396. default: true
  50397. },
  50398. "anthro": {
  50399. name: "Anthro"
  50400. }
  50401. }
  50402. ))
  50403. characterMakers.push(() => makeCharacter(
  50404. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50405. {
  50406. front: {
  50407. height: math.unit(4.1, "inches"),
  50408. name: "Front",
  50409. image: {
  50410. source: "./media/characters/alto/front.svg",
  50411. extra: 736/627,
  50412. bottom: 90/826
  50413. }
  50414. },
  50415. },
  50416. [
  50417. {
  50418. name: "Normal",
  50419. height: math.unit(4.1, "inches"),
  50420. default: true
  50421. },
  50422. ]
  50423. ))
  50424. characterMakers.push(() => makeCharacter(
  50425. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50426. {
  50427. sitting: {
  50428. height: math.unit(3, "feet"),
  50429. name: "Sitting",
  50430. image: {
  50431. source: "./media/characters/ratstrid-v/sitting.svg",
  50432. extra: 355/310,
  50433. bottom: 136/491
  50434. }
  50435. },
  50436. },
  50437. [
  50438. {
  50439. name: "Normal",
  50440. height: math.unit(3, "feet"),
  50441. default: true
  50442. },
  50443. ]
  50444. ))
  50445. characterMakers.push(() => makeCharacter(
  50446. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50447. {
  50448. back: {
  50449. height: math.unit(6, "feet"),
  50450. weight: math.unit(450, "lb"),
  50451. name: "Back",
  50452. image: {
  50453. source: "./media/characters/siz/back.svg",
  50454. extra: 1449/1274,
  50455. bottom: 13/1462
  50456. }
  50457. },
  50458. },
  50459. [
  50460. {
  50461. name: "Smallest",
  50462. height: math.unit(18 + 3/12, "feet")
  50463. },
  50464. {
  50465. name: "Modest",
  50466. height: math.unit(56 + 8/12, "feet"),
  50467. default: true
  50468. },
  50469. {
  50470. name: "Largest",
  50471. height: math.unit(3590, "feet")
  50472. },
  50473. ]
  50474. ))
  50475. characterMakers.push(() => makeCharacter(
  50476. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50477. {
  50478. front: {
  50479. height: math.unit(5 + 9/12, "feet"),
  50480. weight: math.unit(150, "lb"),
  50481. name: "Front",
  50482. image: {
  50483. source: "./media/characters/ven/front.svg",
  50484. extra: 1372/1320,
  50485. bottom: 73/1445
  50486. }
  50487. },
  50488. side: {
  50489. height: math.unit(5 + 9/12, "feet"),
  50490. weight: math.unit(1150, "lb"),
  50491. name: "Side",
  50492. image: {
  50493. source: "./media/characters/ven/side.svg",
  50494. extra: 1119/1070,
  50495. bottom: 42/1161
  50496. },
  50497. default: true
  50498. },
  50499. },
  50500. [
  50501. {
  50502. name: "Normal",
  50503. height: math.unit(5 + 9/12, "feet"),
  50504. default: true
  50505. },
  50506. ]
  50507. ))
  50508. characterMakers.push(() => makeCharacter(
  50509. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50510. {
  50511. front: {
  50512. height: math.unit(12, "feet"),
  50513. weight: math.unit(1000, "kg"),
  50514. name: "Front",
  50515. image: {
  50516. source: "./media/characters/maple/front.svg",
  50517. extra: 1193/1081,
  50518. bottom: 22/1215
  50519. }
  50520. },
  50521. },
  50522. [
  50523. {
  50524. name: "Compressed",
  50525. height: math.unit(7, "feet")
  50526. },
  50527. {
  50528. name: "Normal",
  50529. height: math.unit(12, "feet"),
  50530. default: true
  50531. },
  50532. ]
  50533. ))
  50534. characterMakers.push(() => makeCharacter(
  50535. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50536. {
  50537. front: {
  50538. height: math.unit(9, "feet"),
  50539. weight: math.unit(1500, "lb"),
  50540. name: "Front",
  50541. image: {
  50542. source: "./media/characters/nora/front.svg",
  50543. extra: 1348/1286,
  50544. bottom: 218/1566
  50545. }
  50546. },
  50547. erect: {
  50548. height: math.unit(9, "feet"),
  50549. weight: math.unit(11500, "lb"),
  50550. name: "Erect",
  50551. image: {
  50552. source: "./media/characters/nora/erect.svg",
  50553. extra: 1488/1433,
  50554. bottom: 133/1621
  50555. }
  50556. },
  50557. },
  50558. [
  50559. {
  50560. name: "Normal",
  50561. height: math.unit(9, "feet"),
  50562. default: true
  50563. },
  50564. ]
  50565. ))
  50566. characterMakers.push(() => makeCharacter(
  50567. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50568. {
  50569. front: {
  50570. height: math.unit(25, "feet"),
  50571. weight: math.unit(27500, "lb"),
  50572. name: "Front",
  50573. image: {
  50574. source: "./media/characters/north-caudin/front.svg",
  50575. extra: 1184/1082,
  50576. bottom: 23/1207
  50577. }
  50578. },
  50579. },
  50580. [
  50581. {
  50582. name: "Compressed",
  50583. height: math.unit(10, "feet")
  50584. },
  50585. {
  50586. name: "Normal",
  50587. height: math.unit(25, "feet"),
  50588. default: true
  50589. },
  50590. ]
  50591. ))
  50592. characterMakers.push(() => makeCharacter(
  50593. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50594. {
  50595. front: {
  50596. height: math.unit(9, "feet"),
  50597. weight: math.unit(1250, "lb"),
  50598. name: "Front",
  50599. image: {
  50600. source: "./media/characters/merrian/front.svg",
  50601. extra: 2393/2304,
  50602. bottom: 40/2433
  50603. }
  50604. },
  50605. },
  50606. [
  50607. {
  50608. name: "Normal",
  50609. height: math.unit(9, "feet"),
  50610. default: true
  50611. },
  50612. ]
  50613. ))
  50614. characterMakers.push(() => makeCharacter(
  50615. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50616. {
  50617. front: {
  50618. height: math.unit(9, "feet"),
  50619. weight: math.unit(1000, "lb"),
  50620. name: "Front",
  50621. image: {
  50622. source: "./media/characters/hazel/front.svg",
  50623. extra: 2351/2298,
  50624. bottom: 38/2389
  50625. }
  50626. },
  50627. },
  50628. [
  50629. {
  50630. name: "Normal",
  50631. height: math.unit(9, "feet"),
  50632. default: true
  50633. },
  50634. ]
  50635. ))
  50636. characterMakers.push(() => makeCharacter(
  50637. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50638. {
  50639. front: {
  50640. height: math.unit(13, "feet"),
  50641. weight: math.unit(3200, "lb"),
  50642. name: "Front",
  50643. image: {
  50644. source: "./media/characters/emma/front.svg",
  50645. extra: 2263/2029,
  50646. bottom: 68/2331
  50647. }
  50648. },
  50649. },
  50650. [
  50651. {
  50652. name: "Normal",
  50653. height: math.unit(13, "feet"),
  50654. default: true
  50655. },
  50656. ]
  50657. ))
  50658. characterMakers.push(() => makeCharacter(
  50659. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50660. {
  50661. front: {
  50662. height: math.unit(11 + 9/12, "feet"),
  50663. weight: math.unit(2500, "lb"),
  50664. name: "Front",
  50665. image: {
  50666. source: "./media/characters/ilumina/front.svg",
  50667. extra: 2248/2209,
  50668. bottom: 164/2412
  50669. }
  50670. },
  50671. },
  50672. [
  50673. {
  50674. name: "Normal",
  50675. height: math.unit(11 + 9/12, "feet"),
  50676. default: true
  50677. },
  50678. ]
  50679. ))
  50680. characterMakers.push(() => makeCharacter(
  50681. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50682. {
  50683. front: {
  50684. height: math.unit(8 + 10/12, "feet"),
  50685. weight: math.unit(1350, "lb"),
  50686. name: "Front",
  50687. image: {
  50688. source: "./media/characters/moonshine/front.svg",
  50689. extra: 2395/2288,
  50690. bottom: 40/2435
  50691. }
  50692. },
  50693. },
  50694. [
  50695. {
  50696. name: "Normal",
  50697. height: math.unit(8 + 10/12, "feet"),
  50698. default: true
  50699. },
  50700. ]
  50701. ))
  50702. characterMakers.push(() => makeCharacter(
  50703. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50704. {
  50705. front: {
  50706. height: math.unit(14, "feet"),
  50707. weight: math.unit(3400, "lb"),
  50708. name: "Front",
  50709. image: {
  50710. source: "./media/characters/aletia/front.svg",
  50711. extra: 1185/1052,
  50712. bottom: 21/1206
  50713. }
  50714. },
  50715. },
  50716. [
  50717. {
  50718. name: "Compressed",
  50719. height: math.unit(8, "feet")
  50720. },
  50721. {
  50722. name: "Normal",
  50723. height: math.unit(14, "feet"),
  50724. default: true
  50725. },
  50726. ]
  50727. ))
  50728. characterMakers.push(() => makeCharacter(
  50729. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50730. {
  50731. front: {
  50732. height: math.unit(17, "feet"),
  50733. weight: math.unit(6500, "lb"),
  50734. name: "Front",
  50735. image: {
  50736. source: "./media/characters/deidra/front.svg",
  50737. extra: 1201/1081,
  50738. bottom: 16/1217
  50739. }
  50740. },
  50741. },
  50742. [
  50743. {
  50744. name: "Compressed",
  50745. height: math.unit(9 + 6/12, "feet")
  50746. },
  50747. {
  50748. name: "Normal",
  50749. height: math.unit(17, "feet"),
  50750. default: true
  50751. },
  50752. ]
  50753. ))
  50754. characterMakers.push(() => makeCharacter(
  50755. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50756. {
  50757. front: {
  50758. height: math.unit(7 + 4/12, "feet"),
  50759. weight: math.unit(280, "lb"),
  50760. name: "Front",
  50761. image: {
  50762. source: "./media/characters/freki-yrmori/front.svg",
  50763. extra: 1286/1182,
  50764. bottom: 29/1315
  50765. }
  50766. },
  50767. maw: {
  50768. height: math.unit(0.9, "feet"),
  50769. name: "Maw",
  50770. image: {
  50771. source: "./media/characters/freki-yrmori/maw.svg"
  50772. }
  50773. },
  50774. },
  50775. [
  50776. {
  50777. name: "Normal",
  50778. height: math.unit(7 + 4/12, "feet"),
  50779. default: true
  50780. },
  50781. {
  50782. name: "Macro",
  50783. height: math.unit(38.5, "meters")
  50784. },
  50785. ]
  50786. ))
  50787. characterMakers.push(() => makeCharacter(
  50788. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50789. {
  50790. side: {
  50791. height: math.unit(47.2, "meters"),
  50792. weight: math.unit(10000, "tons"),
  50793. name: "Side",
  50794. image: {
  50795. source: "./media/characters/aetherios/side.svg",
  50796. extra: 2363/642,
  50797. bottom: 221/2584
  50798. }
  50799. },
  50800. top: {
  50801. height: math.unit(240, "meters"),
  50802. weight: math.unit(10000, "tons"),
  50803. name: "Top",
  50804. image: {
  50805. source: "./media/characters/aetherios/top.svg"
  50806. }
  50807. },
  50808. bottom: {
  50809. height: math.unit(240, "meters"),
  50810. weight: math.unit(10000, "tons"),
  50811. name: "Bottom",
  50812. image: {
  50813. source: "./media/characters/aetherios/bottom.svg"
  50814. }
  50815. },
  50816. head: {
  50817. height: math.unit(38.6, "meters"),
  50818. name: "Head",
  50819. image: {
  50820. source: "./media/characters/aetherios/head.svg",
  50821. extra: 1335/1112,
  50822. bottom: 0/1335
  50823. }
  50824. },
  50825. front: {
  50826. height: math.unit(29, "meters"),
  50827. name: "Front",
  50828. image: {
  50829. source: "./media/characters/aetherios/front.svg",
  50830. extra: 1266/953,
  50831. bottom: 158/1424
  50832. }
  50833. },
  50834. maw: {
  50835. height: math.unit(16.37, "meters"),
  50836. name: "Maw",
  50837. image: {
  50838. source: "./media/characters/aetherios/maw.svg",
  50839. extra: 748/637,
  50840. bottom: 0/748
  50841. },
  50842. extraAttributes: {
  50843. preyCapacity: {
  50844. name: "Capacity",
  50845. power: 3,
  50846. type: "volume",
  50847. base: math.unit(1000, "people")
  50848. },
  50849. tongueSize: {
  50850. name: "Tongue Size",
  50851. power: 2,
  50852. type: "area",
  50853. base: math.unit(21, "m^2")
  50854. }
  50855. }
  50856. },
  50857. forepaw: {
  50858. height: math.unit(18, "meters"),
  50859. name: "Forepaw",
  50860. image: {
  50861. source: "./media/characters/aetherios/forepaw.svg"
  50862. }
  50863. },
  50864. hindpaw: {
  50865. height: math.unit(23, "meters"),
  50866. name: "Hindpaw",
  50867. image: {
  50868. source: "./media/characters/aetherios/hindpaw.svg"
  50869. }
  50870. },
  50871. genitals: {
  50872. height: math.unit(42, "meters"),
  50873. name: "Genitals",
  50874. image: {
  50875. source: "./media/characters/aetherios/genitals.svg"
  50876. }
  50877. },
  50878. },
  50879. [
  50880. {
  50881. name: "Normal",
  50882. height: math.unit(47.2, "meters"),
  50883. default: true
  50884. },
  50885. {
  50886. name: "Macro",
  50887. height: math.unit(160, "meters")
  50888. },
  50889. {
  50890. name: "Mega",
  50891. height: math.unit(1.87, "km")
  50892. },
  50893. {
  50894. name: "Giga",
  50895. height: math.unit(40000, "km")
  50896. },
  50897. {
  50898. name: "Stellar",
  50899. height: math.unit(158000000, "km")
  50900. },
  50901. {
  50902. name: "Cosmic",
  50903. height: math.unit(9.46e12, "km")
  50904. },
  50905. ]
  50906. ))
  50907. characterMakers.push(() => makeCharacter(
  50908. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50909. {
  50910. front: {
  50911. height: math.unit(5 + 4/12, "feet"),
  50912. weight: math.unit(80, "lb"),
  50913. name: "Front",
  50914. image: {
  50915. source: "./media/characters/mizu-gieeg/front.svg",
  50916. extra: 850/709,
  50917. bottom: 52/902
  50918. }
  50919. },
  50920. back: {
  50921. height: math.unit(5 + 4/12, "feet"),
  50922. weight: math.unit(80, "lb"),
  50923. name: "Back",
  50924. image: {
  50925. source: "./media/characters/mizu-gieeg/back.svg",
  50926. extra: 882/745,
  50927. bottom: 25/907
  50928. }
  50929. },
  50930. },
  50931. [
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(5 + 4/12, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50941. {
  50942. front: {
  50943. height: math.unit(6, "feet"),
  50944. name: "Front",
  50945. image: {
  50946. source: "./media/characters/roselle-st-papier/front.svg",
  50947. extra: 1430/1280,
  50948. bottom: 37/1467
  50949. }
  50950. },
  50951. back: {
  50952. height: math.unit(6, "feet"),
  50953. name: "Back",
  50954. image: {
  50955. source: "./media/characters/roselle-st-papier/back.svg",
  50956. extra: 1491/1296,
  50957. bottom: 23/1514
  50958. }
  50959. },
  50960. ear: {
  50961. height: math.unit(1.26, "feet"),
  50962. name: "Ear",
  50963. image: {
  50964. source: "./media/characters/roselle-st-papier/ear.svg"
  50965. }
  50966. },
  50967. },
  50968. [
  50969. {
  50970. name: "Normal",
  50971. height: math.unit(150, "feet"),
  50972. default: true
  50973. },
  50974. ]
  50975. ))
  50976. characterMakers.push(() => makeCharacter(
  50977. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50978. {
  50979. front: {
  50980. height: math.unit(1, "inches"),
  50981. name: "Front",
  50982. image: {
  50983. source: "./media/characters/valargent/front.svg",
  50984. extra: 1825/1694,
  50985. bottom: 62/1887
  50986. }
  50987. },
  50988. back: {
  50989. height: math.unit(1, "inches"),
  50990. name: "Back",
  50991. image: {
  50992. source: "./media/characters/valargent/back.svg",
  50993. extra: 1775/1682,
  50994. bottom: 88/1863
  50995. }
  50996. },
  50997. },
  50998. [
  50999. {
  51000. name: "Micro",
  51001. height: math.unit(1, "inch"),
  51002. default: true
  51003. },
  51004. ]
  51005. ))
  51006. characterMakers.push(() => makeCharacter(
  51007. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51008. {
  51009. front: {
  51010. height: math.unit(3.4, "meters"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/zarina/front.svg",
  51014. extra: 1733/1425,
  51015. bottom: 93/1826
  51016. }
  51017. },
  51018. squatting: {
  51019. height: math.unit(2.14, "meters"),
  51020. name: "Squatting",
  51021. image: {
  51022. source: "./media/characters/zarina/squatting.svg",
  51023. extra: 1073/788,
  51024. bottom: 63/1136
  51025. }
  51026. },
  51027. back: {
  51028. height: math.unit(2.14, "meters"),
  51029. name: "Back",
  51030. image: {
  51031. source: "./media/characters/zarina/back.svg",
  51032. extra: 1128/885,
  51033. bottom: 0/1128
  51034. }
  51035. },
  51036. },
  51037. [
  51038. {
  51039. name: "Normal",
  51040. height: math.unit(3.4, "meters"),
  51041. default: true
  51042. },
  51043. {
  51044. name: "Big",
  51045. height: math.unit(5, "meters")
  51046. },
  51047. {
  51048. name: "Macro",
  51049. height: math.unit(110, "meters")
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(7, "feet"),
  51058. name: "Front",
  51059. image: {
  51060. source: "./media/characters/ventus-astro-fox/front.svg",
  51061. extra: 1792/1623,
  51062. bottom: 28/1820
  51063. }
  51064. },
  51065. back: {
  51066. height: math.unit(7, "feet"),
  51067. name: "Back",
  51068. image: {
  51069. source: "./media/characters/ventus-astro-fox/back.svg",
  51070. extra: 1789/1620,
  51071. bottom: 31/1820
  51072. }
  51073. },
  51074. outfit: {
  51075. height: math.unit(7, "feet"),
  51076. name: "Outfit",
  51077. image: {
  51078. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51079. extra: 1054/925,
  51080. bottom: 15/1069
  51081. }
  51082. },
  51083. head: {
  51084. height: math.unit(1.12, "feet"),
  51085. name: "Head",
  51086. image: {
  51087. source: "./media/characters/ventus-astro-fox/head.svg",
  51088. extra: 866/504,
  51089. bottom: 0/866
  51090. }
  51091. },
  51092. hand: {
  51093. height: math.unit(1, "feet"),
  51094. name: "Hand",
  51095. image: {
  51096. source: "./media/characters/ventus-astro-fox/hand.svg"
  51097. }
  51098. },
  51099. paw: {
  51100. height: math.unit(1.5, "feet"),
  51101. name: "Paw",
  51102. image: {
  51103. source: "./media/characters/ventus-astro-fox/paw.svg"
  51104. }
  51105. },
  51106. },
  51107. [
  51108. {
  51109. name: "Normal",
  51110. height: math.unit(7, "feet"),
  51111. default: true
  51112. },
  51113. {
  51114. name: "Macro",
  51115. height: math.unit(200, "feet")
  51116. },
  51117. {
  51118. name: "Cosmic",
  51119. height: math.unit(3, "universes")
  51120. },
  51121. ]
  51122. ))
  51123. characterMakers.push(() => makeCharacter(
  51124. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51125. {
  51126. front: {
  51127. height: math.unit(3, "meters"),
  51128. weight: math.unit(7000, "lb"),
  51129. name: "Front",
  51130. image: {
  51131. source: "./media/characters/core-t/front.svg",
  51132. extra: 5729/4941,
  51133. bottom: 1129/6858
  51134. }
  51135. },
  51136. },
  51137. [
  51138. {
  51139. name: "Big",
  51140. height: math.unit(3, "meters"),
  51141. default: true
  51142. },
  51143. ]
  51144. ))
  51145. characterMakers.push(() => makeCharacter(
  51146. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51147. {
  51148. normal: {
  51149. height: math.unit(6 + 6/12, "feet"),
  51150. weight: math.unit(275, "lb"),
  51151. name: "Front",
  51152. image: {
  51153. source: "./media/characters/cadbunny/normal.svg",
  51154. extra: 1129/947,
  51155. bottom: 93/1222
  51156. },
  51157. default: true,
  51158. form: "normal"
  51159. },
  51160. gigantamax: {
  51161. height: math.unit(26, "feet"),
  51162. weight: math.unit(16000, "lb"),
  51163. name: "Front",
  51164. image: {
  51165. source: "./media/characters/cadbunny/gigantamax.svg",
  51166. extra: 1133/944,
  51167. bottom: 90/1223
  51168. },
  51169. default: true,
  51170. form: "gigantamax"
  51171. },
  51172. },
  51173. [
  51174. {
  51175. name: "Normal",
  51176. height: math.unit(6 + 6/12, "feet"),
  51177. default: true,
  51178. form: "normal"
  51179. },
  51180. {
  51181. name: "Small",
  51182. height: math.unit(26, "feet"),
  51183. default: true,
  51184. form: "gigantamax"
  51185. },
  51186. {
  51187. name: "Large",
  51188. height: math.unit(78, "feet"),
  51189. form: "gigantamax"
  51190. },
  51191. ],
  51192. {
  51193. "normal": {
  51194. name: "Normal",
  51195. default: true
  51196. },
  51197. "gigantamax": {
  51198. name: "Gigantamax"
  51199. }
  51200. }
  51201. ))
  51202. characterMakers.push(() => makeCharacter(
  51203. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51204. {
  51205. anthroFront: {
  51206. height: math.unit(8, "feet"),
  51207. weight: math.unit(300, "lb"),
  51208. name: "Front",
  51209. image: {
  51210. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51211. extra: 1272/1176,
  51212. bottom: 53/1325
  51213. },
  51214. form: "anthro",
  51215. default: true
  51216. },
  51217. feralSide: {
  51218. height: math.unit(4, "feet"),
  51219. weight: math.unit(250, "lb"),
  51220. name: "Side",
  51221. image: {
  51222. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51223. extra: 731/621,
  51224. bottom: 0/731
  51225. },
  51226. form: "feral",
  51227. default: true
  51228. },
  51229. },
  51230. [
  51231. {
  51232. name: "Regular",
  51233. height: math.unit(8, "feet"),
  51234. form: "anthro"
  51235. },
  51236. {
  51237. name: "Macro",
  51238. height: math.unit(250, "feet"),
  51239. form: "anthro",
  51240. default: true
  51241. },
  51242. {
  51243. name: "Regular",
  51244. height: math.unit(4, "feet"),
  51245. form: "feral"
  51246. },
  51247. {
  51248. name: "Macro",
  51249. height: math.unit(125, "feet"),
  51250. form: "feral",
  51251. default: true
  51252. },
  51253. ],
  51254. {
  51255. "anthro": {
  51256. name: "Anthro",
  51257. default: true
  51258. },
  51259. "feral": {
  51260. name: "Feral",
  51261. },
  51262. }
  51263. ))
  51264. characterMakers.push(() => makeCharacter(
  51265. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51266. {
  51267. front: {
  51268. height: math.unit(11 + 10/12, "feet"),
  51269. weight: math.unit(1587, "kg"),
  51270. name: "Front",
  51271. image: {
  51272. source: "./media/characters/maple-javira-dragon/front.svg",
  51273. extra: 1136/744,
  51274. bottom: 73/1209
  51275. }
  51276. },
  51277. side: {
  51278. height: math.unit(11 + 10/12, "feet"),
  51279. weight: math.unit(1587, "kg"),
  51280. name: "Side",
  51281. image: {
  51282. source: "./media/characters/maple-javira-dragon/side.svg",
  51283. extra: 712/505,
  51284. bottom: 17/729
  51285. }
  51286. },
  51287. head: {
  51288. height: math.unit(8.05, "feet"),
  51289. name: "Head",
  51290. image: {
  51291. source: "./media/characters/maple-javira-dragon/head.svg",
  51292. extra: 1420/1344,
  51293. bottom: 0/1420
  51294. }
  51295. },
  51296. },
  51297. [
  51298. {
  51299. name: "Normal",
  51300. height: math.unit(11 + 10/12, "feet"),
  51301. default: true
  51302. },
  51303. ]
  51304. ))
  51305. characterMakers.push(() => makeCharacter(
  51306. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51307. {
  51308. front: {
  51309. height: math.unit(117, "cm"),
  51310. weight: math.unit(50, "kg"),
  51311. name: "Front",
  51312. image: {
  51313. source: "./media/characters/sonia-wyverntail/front.svg",
  51314. extra: 708/592,
  51315. bottom: 25/733
  51316. }
  51317. },
  51318. },
  51319. [
  51320. {
  51321. name: "Normal",
  51322. height: math.unit(117, "cm"),
  51323. default: true
  51324. },
  51325. ]
  51326. ))
  51327. characterMakers.push(() => makeCharacter(
  51328. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51329. {
  51330. front: {
  51331. height: math.unit(6 + 5/12, "feet"),
  51332. name: "Front",
  51333. image: {
  51334. source: "./media/characters/micah/front.svg",
  51335. extra: 1758/1546,
  51336. bottom: 214/1972
  51337. }
  51338. },
  51339. },
  51340. [
  51341. {
  51342. name: "Normal",
  51343. height: math.unit(6 + 5/12, "feet"),
  51344. default: true
  51345. },
  51346. ]
  51347. ))
  51348. characterMakers.push(() => makeCharacter(
  51349. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51350. {
  51351. front: {
  51352. height: math.unit(1.75, "meters"),
  51353. weight: math.unit(100, "kg"),
  51354. name: "Front",
  51355. image: {
  51356. source: "./media/characters/zarya/front.svg",
  51357. extra: 741/735,
  51358. bottom: 44/785
  51359. },
  51360. extraAttributes: {
  51361. "tailLength": {
  51362. name: "Tail Length",
  51363. power: 1,
  51364. type: "length",
  51365. base: math.unit(180, "cm")
  51366. },
  51367. "pawLength": {
  51368. name: "Paw Length",
  51369. power: 1,
  51370. type: "length",
  51371. base: math.unit(31, "cm")
  51372. },
  51373. }
  51374. },
  51375. side: {
  51376. height: math.unit(1.75, "meters"),
  51377. weight: math.unit(100, "kg"),
  51378. name: "Side",
  51379. image: {
  51380. source: "./media/characters/zarya/side.svg",
  51381. extra: 776/770,
  51382. bottom: 17/793
  51383. },
  51384. extraAttributes: {
  51385. "tailLength": {
  51386. name: "Tail Length",
  51387. power: 1,
  51388. type: "length",
  51389. base: math.unit(180, "cm")
  51390. },
  51391. "pawLength": {
  51392. name: "Paw Length",
  51393. power: 1,
  51394. type: "length",
  51395. base: math.unit(31, "cm")
  51396. },
  51397. }
  51398. },
  51399. back: {
  51400. height: math.unit(1.75, "meters"),
  51401. weight: math.unit(100, "kg"),
  51402. name: "Back",
  51403. image: {
  51404. source: "./media/characters/zarya/back.svg",
  51405. extra: 741/735,
  51406. bottom: 44/785
  51407. },
  51408. extraAttributes: {
  51409. "tailLength": {
  51410. name: "Tail Length",
  51411. power: 1,
  51412. type: "length",
  51413. base: math.unit(180, "cm")
  51414. },
  51415. "pawLength": {
  51416. name: "Paw Length",
  51417. power: 1,
  51418. type: "length",
  51419. base: math.unit(31, "cm")
  51420. },
  51421. }
  51422. },
  51423. frontNoTail: {
  51424. height: math.unit(1.75, "meters"),
  51425. weight: math.unit(100, "kg"),
  51426. name: "Front (No Tail)",
  51427. image: {
  51428. source: "./media/characters/zarya/front-no-tail.svg",
  51429. extra: 741/735,
  51430. bottom: 44/785
  51431. },
  51432. extraAttributes: {
  51433. "tailLength": {
  51434. name: "Tail Length",
  51435. power: 1,
  51436. type: "length",
  51437. base: math.unit(180, "cm")
  51438. },
  51439. "pawLength": {
  51440. name: "Paw Length",
  51441. power: 1,
  51442. type: "length",
  51443. base: math.unit(31, "cm")
  51444. },
  51445. }
  51446. },
  51447. dressed: {
  51448. height: math.unit(1.75, "meters"),
  51449. weight: math.unit(100, "kg"),
  51450. name: "Dressed",
  51451. image: {
  51452. source: "./media/characters/zarya/dressed.svg",
  51453. extra: 683/672,
  51454. bottom: 79/762
  51455. },
  51456. extraAttributes: {
  51457. "tailLength": {
  51458. name: "Tail Length",
  51459. power: 1,
  51460. type: "length",
  51461. base: math.unit(180, "cm")
  51462. },
  51463. "pawLength": {
  51464. name: "Paw Length",
  51465. power: 1,
  51466. type: "length",
  51467. base: math.unit(31, "cm")
  51468. },
  51469. }
  51470. },
  51471. },
  51472. [
  51473. {
  51474. name: "Micro",
  51475. height: math.unit(5, "cm")
  51476. },
  51477. {
  51478. name: "Normal",
  51479. height: math.unit(1.75, "meters"),
  51480. default: true
  51481. },
  51482. {
  51483. name: "Macro",
  51484. height: math.unit(122, "meters")
  51485. },
  51486. ]
  51487. ))
  51488. characterMakers.push(() => makeCharacter(
  51489. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51490. {
  51491. front: {
  51492. height: math.unit(7.5, "feet"),
  51493. name: "Front",
  51494. image: {
  51495. source: "./media/characters/sven-hatisson/front.svg",
  51496. extra: 917/857,
  51497. bottom: 42/959
  51498. }
  51499. },
  51500. back: {
  51501. height: math.unit(7.5, "feet"),
  51502. name: "Back",
  51503. image: {
  51504. source: "./media/characters/sven-hatisson/back.svg",
  51505. extra: 903/856,
  51506. bottom: 15/918
  51507. }
  51508. },
  51509. },
  51510. [
  51511. {
  51512. name: "Base Height",
  51513. height: math.unit(7.5, "feet")
  51514. },
  51515. {
  51516. name: "Usual Height",
  51517. height: math.unit(13.5, "feet"),
  51518. default: true
  51519. },
  51520. {
  51521. name: "Smaller Macro",
  51522. height: math.unit(85, "feet")
  51523. },
  51524. {
  51525. name: "Moderate Macro",
  51526. height: math.unit(320, "feet")
  51527. },
  51528. {
  51529. name: "Large Macro",
  51530. height: math.unit(1000, "feet")
  51531. },
  51532. {
  51533. name: "Largest Size",
  51534. height: math.unit(2, "miles")
  51535. },
  51536. ]
  51537. ))
  51538. characterMakers.push(() => makeCharacter(
  51539. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51540. {
  51541. side: {
  51542. height: math.unit(1.8, "meters"),
  51543. weight: math.unit(275, "kg"),
  51544. name: "Side",
  51545. image: {
  51546. source: "./media/characters/terra/side.svg",
  51547. extra: 1273/1147,
  51548. bottom: 0/1273
  51549. }
  51550. },
  51551. },
  51552. [
  51553. {
  51554. name: "Normal",
  51555. height: math.unit(16.2, "meters"),
  51556. default: true
  51557. },
  51558. ]
  51559. ))
  51560. characterMakers.push(() => makeCharacter(
  51561. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51562. {
  51563. borzoiFront: {
  51564. height: math.unit(6 + 9/12, "feet"),
  51565. name: "Front",
  51566. image: {
  51567. source: "./media/characters/rae/borzoi-front.svg",
  51568. extra: 1161/1098,
  51569. bottom: 31/1192
  51570. },
  51571. form: "borzoi",
  51572. default: true
  51573. },
  51574. werewolfFront: {
  51575. height: math.unit(8 + 7/12, "feet"),
  51576. name: "Front",
  51577. image: {
  51578. source: "./media/characters/rae/werewolf-front.svg",
  51579. extra: 1411/1334,
  51580. bottom: 127/1538
  51581. },
  51582. form: "werewolf",
  51583. default: true
  51584. },
  51585. },
  51586. [
  51587. {
  51588. name: "Normal",
  51589. height: math.unit(6 + 9/12, "feet"),
  51590. default: true,
  51591. form: "borzoi"
  51592. },
  51593. {
  51594. name: "Normal",
  51595. height: math.unit(8 + 7/12, "feet"),
  51596. default: true,
  51597. form: "werewolf"
  51598. },
  51599. ],
  51600. {
  51601. "borzoi": {
  51602. name: "Borzoi",
  51603. default: true
  51604. },
  51605. "werewolf": {
  51606. name: "Werewolf",
  51607. },
  51608. }
  51609. ))
  51610. characterMakers.push(() => makeCharacter(
  51611. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51612. {
  51613. front: {
  51614. height: math.unit(8 + 7/12, "feet"),
  51615. weight: math.unit(482, "lb"),
  51616. name: "Front",
  51617. image: {
  51618. source: "./media/characters/kit/front.svg",
  51619. extra: 1247/1103,
  51620. bottom: 41/1288
  51621. }
  51622. },
  51623. back: {
  51624. height: math.unit(8 + 7/12, "feet"),
  51625. weight: math.unit(482, "lb"),
  51626. name: "Back",
  51627. image: {
  51628. source: "./media/characters/kit/back.svg",
  51629. extra: 1252/1123,
  51630. bottom: 21/1273
  51631. }
  51632. },
  51633. paw: {
  51634. height: math.unit(1.46, "feet"),
  51635. name: "Paw",
  51636. image: {
  51637. source: "./media/characters/kit/paw.svg"
  51638. }
  51639. },
  51640. },
  51641. [
  51642. {
  51643. name: "Normal",
  51644. height: math.unit(2.61, "meters"),
  51645. default: true
  51646. },
  51647. {
  51648. name: "\"Tall\"",
  51649. height: math.unit(8.21, "meters")
  51650. },
  51651. {
  51652. name: "Tall",
  51653. height: math.unit(19.6, "meters")
  51654. },
  51655. {
  51656. name: "Very Tall",
  51657. height: math.unit(57.91, "meters")
  51658. },
  51659. {
  51660. name: "Semi-Macro",
  51661. height: math.unit(138.64, "meters")
  51662. },
  51663. {
  51664. name: "Macro",
  51665. height: math.unit(831.99, "meters")
  51666. },
  51667. {
  51668. name: "EX-Macro",
  51669. height: math.unit(96451121, "meters")
  51670. },
  51671. {
  51672. name: "S1-Omnipotent",
  51673. height: math.unit(4.42074e+9, "meters")
  51674. },
  51675. {
  51676. name: "S2-Omnipotent",
  51677. height: math.unit(9.42074e+17, "meters")
  51678. },
  51679. {
  51680. name: "Omnipotent",
  51681. height: math.unit(4.23112e+24, "meters")
  51682. },
  51683. {
  51684. name: "Hypergod",
  51685. height: math.unit(5.05176e+27, "meters")
  51686. },
  51687. {
  51688. name: "Hypergod-EX",
  51689. height: math.unit(9.45532e+49, "meters")
  51690. },
  51691. {
  51692. name: "Hypergod-SP",
  51693. height: math.unit(9.45532e+195, "meters")
  51694. },
  51695. ]
  51696. ))
  51697. characterMakers.push(() => makeCharacter(
  51698. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51699. {
  51700. side: {
  51701. height: math.unit(0.6, "meters"),
  51702. weight: math.unit(24, "kg"),
  51703. name: "Side",
  51704. image: {
  51705. source: "./media/characters/celeste/side.svg",
  51706. extra: 810/517,
  51707. bottom: 53/863
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Velociraptor",
  51714. height: math.unit(0.6, "meters"),
  51715. default: true
  51716. },
  51717. {
  51718. name: "Utahraptor",
  51719. height: math.unit(1.8, "meters")
  51720. },
  51721. {
  51722. name: "Gallimimus",
  51723. height: math.unit(4.0, "meters")
  51724. },
  51725. {
  51726. name: "Large",
  51727. height: math.unit(20, "meters")
  51728. },
  51729. {
  51730. name: "Planetary",
  51731. height: math.unit(50, "megameters")
  51732. },
  51733. {
  51734. name: "Stellar",
  51735. height: math.unit(1.5, "gigameters")
  51736. },
  51737. {
  51738. name: "Galactic",
  51739. height: math.unit(100, "exameters")
  51740. },
  51741. ]
  51742. ))
  51743. characterMakers.push(() => makeCharacter(
  51744. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51745. {
  51746. front: {
  51747. height: math.unit(6, "feet"),
  51748. weight: math.unit(210, "lb"),
  51749. name: "Front",
  51750. image: {
  51751. source: "./media/characters/glacia/front.svg",
  51752. extra: 958/901,
  51753. bottom: 45/1003
  51754. }
  51755. },
  51756. },
  51757. [
  51758. {
  51759. name: "Macro",
  51760. height: math.unit(1000, "meters"),
  51761. default: true
  51762. },
  51763. ]
  51764. ))
  51765. characterMakers.push(() => makeCharacter(
  51766. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51767. {
  51768. front: {
  51769. height: math.unit(4, "meters"),
  51770. name: "Front",
  51771. image: {
  51772. source: "./media/characters/giri/front.svg",
  51773. extra: 966/894,
  51774. bottom: 21/987
  51775. }
  51776. },
  51777. },
  51778. [
  51779. {
  51780. name: "Normal",
  51781. height: math.unit(4, "meters"),
  51782. default: true
  51783. },
  51784. ]
  51785. ))
  51786. characterMakers.push(() => makeCharacter(
  51787. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51788. {
  51789. back: {
  51790. height: math.unit(4, "feet"),
  51791. weight: math.unit(37, "lb"),
  51792. name: "Back",
  51793. image: {
  51794. source: "./media/characters/tin/back.svg",
  51795. extra: 845/780,
  51796. bottom: 28/873
  51797. }
  51798. },
  51799. },
  51800. [
  51801. {
  51802. name: "Normal",
  51803. height: math.unit(4, "feet"),
  51804. default: true
  51805. },
  51806. ]
  51807. ))
  51808. characterMakers.push(() => makeCharacter(
  51809. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51810. {
  51811. front: {
  51812. height: math.unit(25, "feet"),
  51813. name: "Front",
  51814. image: {
  51815. source: "./media/characters/cadenza-vivace/front.svg",
  51816. extra: 1842/1578,
  51817. bottom: 30/1872
  51818. }
  51819. },
  51820. },
  51821. [
  51822. {
  51823. name: "Macro",
  51824. height: math.unit(25, "feet"),
  51825. default: true
  51826. },
  51827. ]
  51828. ))
  51829. characterMakers.push(() => makeCharacter(
  51830. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51831. {
  51832. front: {
  51833. height: math.unit(10, "feet"),
  51834. weight: math.unit(625, "kg"),
  51835. name: "Front",
  51836. image: {
  51837. source: "./media/characters/zain/front.svg",
  51838. extra: 1682/1498,
  51839. bottom: 223/1905
  51840. }
  51841. },
  51842. back: {
  51843. height: math.unit(10, "feet"),
  51844. weight: math.unit(625, "kg"),
  51845. name: "Back",
  51846. image: {
  51847. source: "./media/characters/zain/back.svg",
  51848. extra: 1814/1657,
  51849. bottom: 152/1966
  51850. }
  51851. },
  51852. head: {
  51853. height: math.unit(10, "feet"),
  51854. weight: math.unit(625, "kg"),
  51855. name: "Head",
  51856. image: {
  51857. source: "./media/characters/zain/head.svg",
  51858. extra: 1059/762,
  51859. bottom: 0/1059
  51860. }
  51861. },
  51862. },
  51863. [
  51864. {
  51865. name: "Normal",
  51866. height: math.unit(10, "feet"),
  51867. default: true
  51868. },
  51869. ]
  51870. ))
  51871. characterMakers.push(() => makeCharacter(
  51872. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51873. {
  51874. front: {
  51875. height: math.unit(6 + 5/12, "feet"),
  51876. weight: math.unit(750, "lb"),
  51877. name: "Front",
  51878. image: {
  51879. source: "./media/characters/ruchex/front.svg",
  51880. extra: 877/820,
  51881. bottom: 17/894
  51882. },
  51883. extraAttributes: {
  51884. "width": {
  51885. name: "Width",
  51886. power: 1,
  51887. type: "length",
  51888. base: math.unit(4.757, "feet")
  51889. },
  51890. }
  51891. },
  51892. },
  51893. [
  51894. {
  51895. name: "Normal",
  51896. height: math.unit(6 + 5/12, "feet"),
  51897. default: true
  51898. },
  51899. ]
  51900. ))
  51901. characterMakers.push(() => makeCharacter(
  51902. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51903. {
  51904. dressedFront: {
  51905. height: math.unit(191, "cm"),
  51906. weight: math.unit(80, "kg"),
  51907. name: "Front",
  51908. image: {
  51909. source: "./media/characters/buster/dressed-front.svg",
  51910. extra: 1022/973,
  51911. bottom: 69/1091
  51912. }
  51913. },
  51914. dressedBack: {
  51915. height: math.unit(191, "cm"),
  51916. weight: math.unit(80, "kg"),
  51917. name: "Back",
  51918. image: {
  51919. source: "./media/characters/buster/dressed-back.svg",
  51920. extra: 1018/970,
  51921. bottom: 55/1073
  51922. }
  51923. },
  51924. nudeFront: {
  51925. height: math.unit(191, "cm"),
  51926. weight: math.unit(80, "kg"),
  51927. name: "Front (Nude)",
  51928. image: {
  51929. source: "./media/characters/buster/nude-front.svg",
  51930. extra: 1022/973,
  51931. bottom: 69/1091
  51932. }
  51933. },
  51934. nudeBack: {
  51935. height: math.unit(191, "cm"),
  51936. weight: math.unit(80, "kg"),
  51937. name: "Back (Nude)",
  51938. image: {
  51939. source: "./media/characters/buster/nude-back.svg",
  51940. extra: 1018/970,
  51941. bottom: 55/1073
  51942. }
  51943. },
  51944. dick: {
  51945. height: math.unit(2.59, "feet"),
  51946. name: "Dick",
  51947. image: {
  51948. source: "./media/characters/buster/dick.svg"
  51949. }
  51950. },
  51951. ass: {
  51952. height: math.unit(1.2, "feet"),
  51953. name: "Ass",
  51954. image: {
  51955. source: "./media/characters/buster/ass.svg"
  51956. }
  51957. },
  51958. },
  51959. [
  51960. {
  51961. name: "Normal",
  51962. height: math.unit(191, "cm"),
  51963. default: true
  51964. },
  51965. ]
  51966. ))
  51967. characterMakers.push(() => makeCharacter(
  51968. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51969. {
  51970. side: {
  51971. height: math.unit(8.1, "feet"),
  51972. weight: math.unit(3500, "lb"),
  51973. name: "Side",
  51974. image: {
  51975. source: "./media/characters/sonya/side.svg",
  51976. extra: 1730/1317,
  51977. bottom: 86/1816
  51978. }
  51979. },
  51980. },
  51981. [
  51982. {
  51983. name: "Normal",
  51984. height: math.unit(8.1, "feet"),
  51985. default: true
  51986. },
  51987. ]
  51988. ))
  51989. characterMakers.push(() => makeCharacter(
  51990. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51991. {
  51992. front: {
  51993. height: math.unit(6, "feet"),
  51994. weight: math.unit(150, "lb"),
  51995. name: "Front",
  51996. image: {
  51997. source: "./media/characters/cadence-andrysiak/front.svg",
  51998. extra: 1164/1121,
  51999. bottom: 60/1224
  52000. }
  52001. },
  52002. back: {
  52003. height: math.unit(6, "feet"),
  52004. weight: math.unit(150, "lb"),
  52005. name: "Back",
  52006. image: {
  52007. source: "./media/characters/cadence-andrysiak/back.svg",
  52008. extra: 1200/1165,
  52009. bottom: 9/1209
  52010. }
  52011. },
  52012. dressed: {
  52013. height: math.unit(6, "feet"),
  52014. weight: math.unit(150, "lb"),
  52015. name: "Dressed",
  52016. image: {
  52017. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52018. extra: 1164/1121,
  52019. bottom: 60/1224
  52020. }
  52021. },
  52022. },
  52023. [
  52024. {
  52025. name: "Micro",
  52026. height: math.unit(1, "mm")
  52027. },
  52028. {
  52029. name: "Normal",
  52030. height: math.unit(6, "feet"),
  52031. default: true
  52032. },
  52033. ]
  52034. ))
  52035. characterMakers.push(() => makeCharacter(
  52036. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52037. {
  52038. front: {
  52039. height: math.unit(60, "inches"),
  52040. weight: math.unit(16, "lb"),
  52041. preyCapacity: math.unit(80, "liters"),
  52042. name: "Front",
  52043. image: {
  52044. source: "./media/characters/penny-lynx/front.svg",
  52045. extra: 1959/1769,
  52046. bottom: 49/2008
  52047. }
  52048. },
  52049. },
  52050. [
  52051. {
  52052. name: "Nokia",
  52053. height: math.unit(2, "inches")
  52054. },
  52055. {
  52056. name: "Desktop",
  52057. height: math.unit(24, "inches")
  52058. },
  52059. {
  52060. name: "TV",
  52061. height: math.unit(60, "inches")
  52062. },
  52063. {
  52064. name: "Jumbotron",
  52065. height: math.unit(12, "feet")
  52066. },
  52067. {
  52068. name: "Billboard",
  52069. height: math.unit(48, "feet"),
  52070. default: true
  52071. },
  52072. {
  52073. name: "IMAX",
  52074. height: math.unit(96, "feet")
  52075. },
  52076. {
  52077. name: "SINGULARITY",
  52078. height: math.unit(864938, "miles")
  52079. },
  52080. ]
  52081. ))
  52082. characterMakers.push(() => makeCharacter(
  52083. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52084. {
  52085. front: {
  52086. height: math.unit(5 + 4/12, "feet"),
  52087. weight: math.unit(230, "lb"),
  52088. name: "Front",
  52089. image: {
  52090. source: "./media/characters/sukebe/front.svg",
  52091. extra: 2130/2038,
  52092. bottom: 90/2220
  52093. }
  52094. },
  52095. back: {
  52096. height: math.unit(3.48, "feet"),
  52097. weight: math.unit(230, "lb"),
  52098. name: "Back",
  52099. image: {
  52100. source: "./media/characters/sukebe/back.svg",
  52101. extra: 1670/1604,
  52102. bottom: 0/1670
  52103. }
  52104. },
  52105. },
  52106. [
  52107. {
  52108. name: "Normal",
  52109. height: math.unit(5 + 4/12, "feet"),
  52110. default: true
  52111. },
  52112. ]
  52113. ))
  52114. characterMakers.push(() => makeCharacter(
  52115. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52116. {
  52117. front: {
  52118. height: math.unit(6, "feet"),
  52119. name: "Front",
  52120. image: {
  52121. source: "./media/characters/nylla/front.svg",
  52122. extra: 1868/1699,
  52123. bottom: 97/1965
  52124. }
  52125. },
  52126. back: {
  52127. height: math.unit(6, "feet"),
  52128. name: "Back",
  52129. image: {
  52130. source: "./media/characters/nylla/back.svg",
  52131. extra: 1889/1712,
  52132. bottom: 93/1982
  52133. }
  52134. },
  52135. frontNsfw: {
  52136. height: math.unit(6, "feet"),
  52137. name: "Front (NSFW)",
  52138. image: {
  52139. source: "./media/characters/nylla/front-nsfw.svg",
  52140. extra: 1868/1699,
  52141. bottom: 97/1965
  52142. },
  52143. extraAttributes: {
  52144. "dickLength": {
  52145. name: "Dick Length",
  52146. power: 1,
  52147. type: "length",
  52148. base: math.unit(1.4, "feet")
  52149. },
  52150. "cumVolume": {
  52151. name: "Cum Volume",
  52152. power: 3,
  52153. type: "volume",
  52154. base: math.unit(100, "mL")
  52155. },
  52156. }
  52157. },
  52158. backNsfw: {
  52159. height: math.unit(6, "feet"),
  52160. name: "Back (NSFW)",
  52161. image: {
  52162. source: "./media/characters/nylla/back-nsfw.svg",
  52163. extra: 1889/1712,
  52164. bottom: 93/1982
  52165. }
  52166. },
  52167. maw: {
  52168. height: math.unit(2.10, "feet"),
  52169. name: "Maw",
  52170. image: {
  52171. source: "./media/characters/nylla/maw.svg"
  52172. }
  52173. },
  52174. paws: {
  52175. height: math.unit(2.06, "feet"),
  52176. name: "Paws",
  52177. image: {
  52178. source: "./media/characters/nylla/paws.svg"
  52179. }
  52180. },
  52181. muzzle: {
  52182. height: math.unit(0.61, "feet"),
  52183. name: "Muzzle",
  52184. image: {
  52185. source: "./media/characters/nylla/muzzle.svg"
  52186. }
  52187. },
  52188. sheath: {
  52189. height: math.unit(1.305, "feet"),
  52190. name: "Sheath",
  52191. image: {
  52192. source: "./media/characters/nylla/sheath.svg"
  52193. }
  52194. },
  52195. },
  52196. [
  52197. {
  52198. name: "Micro",
  52199. height: math.unit(7.5, "inches")
  52200. },
  52201. {
  52202. name: "Normal",
  52203. height: math.unit(7, "feet"),
  52204. default: true
  52205. },
  52206. {
  52207. name: "Macro",
  52208. height: math.unit(60, "feet")
  52209. },
  52210. {
  52211. name: "Mega",
  52212. height: math.unit(200, "feet")
  52213. },
  52214. ]
  52215. ))
  52216. characterMakers.push(() => makeCharacter(
  52217. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52218. {
  52219. front: {
  52220. height: math.unit(10, "feet"),
  52221. weight: math.unit(2300, "lb"),
  52222. name: "Front",
  52223. image: {
  52224. source: "./media/characters/hunt3r/front.svg",
  52225. extra: 1909/1742,
  52226. bottom: 46/1955
  52227. }
  52228. },
  52229. },
  52230. [
  52231. {
  52232. name: "Normal",
  52233. height: math.unit(10, "feet"),
  52234. default: true
  52235. },
  52236. ]
  52237. ))
  52238. characterMakers.push(() => makeCharacter(
  52239. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52240. {
  52241. dressed: {
  52242. height: math.unit(11, "feet"),
  52243. weight: math.unit(18500, "lb"),
  52244. preyCapacity: math.unit(9, "people"),
  52245. name: "Dressed",
  52246. image: {
  52247. source: "./media/characters/cylphis/dressed.svg",
  52248. extra: 1028/1003,
  52249. bottom: 75/1103
  52250. },
  52251. },
  52252. undressed: {
  52253. height: math.unit(11, "feet"),
  52254. weight: math.unit(18500, "lb"),
  52255. preyCapacity: math.unit(9, "people"),
  52256. name: "Undressed",
  52257. image: {
  52258. source: "./media/characters/cylphis/undressed.svg",
  52259. extra: 1028/1003,
  52260. bottom: 75/1103
  52261. }
  52262. },
  52263. full: {
  52264. height: math.unit(11, "feet"),
  52265. weight: math.unit(18500 + 150*9, "lb"),
  52266. preyCapacity: math.unit(9, "people"),
  52267. name: "Full",
  52268. image: {
  52269. source: "./media/characters/cylphis/full.svg",
  52270. extra: 1028/1003,
  52271. bottom: 75/1103
  52272. }
  52273. },
  52274. },
  52275. [
  52276. {
  52277. name: "Small",
  52278. height: math.unit(8, "feet")
  52279. },
  52280. {
  52281. name: "Normal",
  52282. height: math.unit(11, "feet"),
  52283. default: true
  52284. },
  52285. ]
  52286. ))
  52287. characterMakers.push(() => makeCharacter(
  52288. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52289. {
  52290. front: {
  52291. height: math.unit(2 + 7/12, "feet"),
  52292. name: "Front",
  52293. image: {
  52294. source: "./media/characters/orishan/front.svg",
  52295. extra: 1058/1023,
  52296. bottom: 23/1081
  52297. }
  52298. },
  52299. back: {
  52300. height: math.unit(2 + 7/12, "feet"),
  52301. name: "Back",
  52302. image: {
  52303. source: "./media/characters/orishan/back.svg",
  52304. extra: 1058/1023,
  52305. bottom: 23/1081
  52306. }
  52307. },
  52308. },
  52309. [
  52310. {
  52311. name: "Micro",
  52312. height: math.unit(2, "cm")
  52313. },
  52314. {
  52315. name: "Normal",
  52316. height: math.unit(2 + 7/12, "feet"),
  52317. default: true
  52318. },
  52319. ]
  52320. ))
  52321. characterMakers.push(() => makeCharacter(
  52322. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52323. {
  52324. front: {
  52325. height: math.unit(3, "meters"),
  52326. weight: math.unit(508, "kg"),
  52327. name: "Front",
  52328. image: {
  52329. source: "./media/characters/seranis/front.svg",
  52330. extra: 1478/1454,
  52331. bottom: 41/1519
  52332. }
  52333. },
  52334. },
  52335. [
  52336. {
  52337. name: "Normal",
  52338. height: math.unit(3, "meters"),
  52339. default: true
  52340. },
  52341. {
  52342. name: "Macro",
  52343. height: math.unit(108, "meters")
  52344. },
  52345. {
  52346. name: "Megamacro",
  52347. height: math.unit(1250, "meters")
  52348. },
  52349. ]
  52350. ))
  52351. characterMakers.push(() => makeCharacter(
  52352. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52353. {
  52354. undressed: {
  52355. height: math.unit(5 + 3/12, "feet"),
  52356. name: "Undressed",
  52357. image: {
  52358. source: "./media/characters/ankou/undressed.svg",
  52359. extra: 1301/1213,
  52360. bottom: 87/1388
  52361. }
  52362. },
  52363. dressed: {
  52364. height: math.unit(5 + 3/12, "feet"),
  52365. name: "Dressed",
  52366. image: {
  52367. source: "./media/characters/ankou/dressed.svg",
  52368. extra: 1301/1213,
  52369. bottom: 87/1388
  52370. }
  52371. },
  52372. head: {
  52373. height: math.unit(1.61, "feet"),
  52374. name: "Head",
  52375. image: {
  52376. source: "./media/characters/ankou/head.svg"
  52377. }
  52378. },
  52379. },
  52380. [
  52381. {
  52382. name: "Normal",
  52383. height: math.unit(5 + 3/12, "feet"),
  52384. default: true
  52385. },
  52386. ]
  52387. ))
  52388. characterMakers.push(() => makeCharacter(
  52389. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52390. {
  52391. side: {
  52392. height: math.unit(6 + 3/12, "feet"),
  52393. weight: math.unit(200, "kg"),
  52394. name: "Side",
  52395. image: {
  52396. source: "./media/characters/juniper-skunktaur/side.svg",
  52397. extra: 1574/1229,
  52398. bottom: 38/1612
  52399. }
  52400. },
  52401. front: {
  52402. height: math.unit(6 + 3/12, "feet"),
  52403. weight: math.unit(200, "kg"),
  52404. name: "Front",
  52405. image: {
  52406. source: "./media/characters/juniper-skunktaur/front.svg",
  52407. extra: 1337/1278,
  52408. bottom: 22/1359
  52409. }
  52410. },
  52411. back: {
  52412. height: math.unit(6 + 3/12, "feet"),
  52413. weight: math.unit(200, "kg"),
  52414. name: "Back",
  52415. image: {
  52416. source: "./media/characters/juniper-skunktaur/back.svg",
  52417. extra: 1618/1273,
  52418. bottom: 13/1631
  52419. }
  52420. },
  52421. top: {
  52422. height: math.unit(2.62, "feet"),
  52423. weight: math.unit(200, "kg"),
  52424. name: "Top",
  52425. image: {
  52426. source: "./media/characters/juniper-skunktaur/top.svg"
  52427. }
  52428. },
  52429. },
  52430. [
  52431. {
  52432. name: "Normal",
  52433. height: math.unit(6 + 3/12, "feet"),
  52434. default: true
  52435. },
  52436. ]
  52437. ))
  52438. characterMakers.push(() => makeCharacter(
  52439. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52440. {
  52441. front: {
  52442. height: math.unit(20.5, "feet"),
  52443. name: "Front",
  52444. image: {
  52445. source: "./media/characters/rei/front.svg",
  52446. extra: 1349/1195,
  52447. bottom: 31/1380
  52448. }
  52449. },
  52450. back: {
  52451. height: math.unit(20.5, "feet"),
  52452. name: "Back",
  52453. image: {
  52454. source: "./media/characters/rei/back.svg",
  52455. extra: 1358/1204,
  52456. bottom: 22/1380
  52457. }
  52458. },
  52459. pawsDigi: {
  52460. height: math.unit(3.45, "feet"),
  52461. name: "Paws (Digi)",
  52462. image: {
  52463. source: "./media/characters/rei/paws-digi.svg"
  52464. }
  52465. },
  52466. pawsPlanti: {
  52467. height: math.unit(3.45, "feet"),
  52468. name: "Paws (Planti)",
  52469. image: {
  52470. source: "./media/characters/rei/paws-planti.svg"
  52471. }
  52472. },
  52473. },
  52474. [
  52475. {
  52476. name: "Normal",
  52477. height: math.unit(20.5, "feet"),
  52478. default: true
  52479. },
  52480. ]
  52481. ))
  52482. characterMakers.push(() => makeCharacter(
  52483. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52484. {
  52485. front: {
  52486. height: math.unit(5 + 11/12, "feet"),
  52487. name: "Front",
  52488. image: {
  52489. source: "./media/characters/carina/front.svg",
  52490. extra: 1720/1449,
  52491. bottom: 14/1734
  52492. }
  52493. },
  52494. back: {
  52495. height: math.unit(5 + 11/12, "feet"),
  52496. name: "Back",
  52497. image: {
  52498. source: "./media/characters/carina/back.svg",
  52499. extra: 1493/1445,
  52500. bottom: 17/1510
  52501. }
  52502. },
  52503. paw: {
  52504. height: math.unit(0.92, "feet"),
  52505. name: "Paw",
  52506. image: {
  52507. source: "./media/characters/carina/paw.svg"
  52508. }
  52509. },
  52510. },
  52511. [
  52512. {
  52513. name: "Normal",
  52514. height: math.unit(5 + 11/12, "feet"),
  52515. default: true
  52516. },
  52517. ]
  52518. ))
  52519. characterMakers.push(() => makeCharacter(
  52520. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52521. {
  52522. front: {
  52523. height: math.unit(4.88, "meters"),
  52524. name: "Front",
  52525. image: {
  52526. source: "./media/characters/maya/front.svg",
  52527. extra: 1222/1145,
  52528. bottom: 57/1279
  52529. }
  52530. },
  52531. },
  52532. [
  52533. {
  52534. name: "Normal",
  52535. height: math.unit(4.88, "meters"),
  52536. default: true
  52537. },
  52538. {
  52539. name: "Macro",
  52540. height: math.unit(38.1, "meters")
  52541. },
  52542. {
  52543. name: "Macro+",
  52544. height: math.unit(152.4, "meters")
  52545. },
  52546. {
  52547. name: "Macro++",
  52548. height: math.unit(16.09, "km")
  52549. },
  52550. {
  52551. name: "Mega-macro",
  52552. height: math.unit(700, "megameters")
  52553. },
  52554. ]
  52555. ))
  52556. characterMakers.push(() => makeCharacter(
  52557. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52558. {
  52559. front: {
  52560. height: math.unit(6 + 2/12, "feet"),
  52561. weight: math.unit(500, "lb"),
  52562. preyCapacity: math.unit(4, "people"),
  52563. name: "Front",
  52564. image: {
  52565. source: "./media/characters/yepir/front.svg"
  52566. }
  52567. },
  52568. side: {
  52569. height: math.unit(6 + 2/12, "feet"),
  52570. weight: math.unit(500, "lb"),
  52571. preyCapacity: math.unit(4, "people"),
  52572. name: "Side",
  52573. image: {
  52574. source: "./media/characters/yepir/side.svg"
  52575. }
  52576. },
  52577. paw: {
  52578. height: math.unit(1.05, "feet"),
  52579. name: "Paw",
  52580. image: {
  52581. source: "./media/characters/yepir/paw.svg"
  52582. }
  52583. },
  52584. },
  52585. [
  52586. {
  52587. name: "Normal",
  52588. height: math.unit(6 + 2/12, "feet"),
  52589. default: true
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52595. {
  52596. front: {
  52597. height: math.unit(5 + 4/12, "feet"),
  52598. name: "Front",
  52599. image: {
  52600. source: "./media/characters/russec/front.svg",
  52601. extra: 1926/1626,
  52602. bottom: 72/1998
  52603. }
  52604. },
  52605. back: {
  52606. height: math.unit(5 + 4/12, "feet"),
  52607. name: "Back",
  52608. image: {
  52609. source: "./media/characters/russec/back.svg",
  52610. extra: 1910/1591,
  52611. bottom: 48/1958
  52612. }
  52613. },
  52614. },
  52615. [
  52616. {
  52617. name: "Small",
  52618. height: math.unit(5 + 4/12, "feet")
  52619. },
  52620. {
  52621. name: "Normal",
  52622. height: math.unit(72, "feet"),
  52623. default: true
  52624. },
  52625. ]
  52626. ))
  52627. characterMakers.push(() => makeCharacter(
  52628. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52629. {
  52630. side: {
  52631. height: math.unit(12, "feet"),
  52632. name: "Side",
  52633. image: {
  52634. source: "./media/characters/cianus/side.svg",
  52635. extra: 808/526,
  52636. bottom: 61/869
  52637. }
  52638. },
  52639. },
  52640. [
  52641. {
  52642. name: "Normal",
  52643. height: math.unit(12, "feet"),
  52644. default: true
  52645. },
  52646. ]
  52647. ))
  52648. characterMakers.push(() => makeCharacter(
  52649. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52650. {
  52651. front: {
  52652. height: math.unit(9 + 6/12, "feet"),
  52653. weight: math.unit(300, "lb"),
  52654. name: "Front",
  52655. image: {
  52656. source: "./media/characters/ahab/front.svg",
  52657. extra: 1897/1868,
  52658. bottom: 121/2018
  52659. }
  52660. },
  52661. frontNsfw: {
  52662. height: math.unit(9 + 6/12, "feet"),
  52663. weight: math.unit(300, "lb"),
  52664. name: "Front-nsfw",
  52665. image: {
  52666. source: "./media/characters/ahab/front-nsfw.svg",
  52667. extra: 1897/1868,
  52668. bottom: 121/2018
  52669. }
  52670. },
  52671. },
  52672. [
  52673. {
  52674. name: "Normal",
  52675. height: math.unit(9 + 6/12, "feet")
  52676. },
  52677. {
  52678. name: "Macro",
  52679. height: math.unit(657, "feet"),
  52680. default: true
  52681. },
  52682. ]
  52683. ))
  52684. characterMakers.push(() => makeCharacter(
  52685. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52686. {
  52687. front: {
  52688. height: math.unit(2.69, "meters"),
  52689. weight: math.unit(132, "kg"),
  52690. name: "Front",
  52691. image: {
  52692. source: "./media/characters/aarkus/front.svg",
  52693. extra: 1400/1231,
  52694. bottom: 34/1434
  52695. }
  52696. },
  52697. back: {
  52698. height: math.unit(2.69, "meters"),
  52699. weight: math.unit(132, "kg"),
  52700. name: "Back",
  52701. image: {
  52702. source: "./media/characters/aarkus/back.svg",
  52703. extra: 1381/1218,
  52704. bottom: 30/1411
  52705. }
  52706. },
  52707. frontNsfw: {
  52708. height: math.unit(2.69, "meters"),
  52709. weight: math.unit(132, "kg"),
  52710. name: "Front (NSFW)",
  52711. image: {
  52712. source: "./media/characters/aarkus/front-nsfw.svg",
  52713. extra: 1400/1231,
  52714. bottom: 34/1434
  52715. }
  52716. },
  52717. foot: {
  52718. height: math.unit(1.45, "feet"),
  52719. name: "Foot",
  52720. image: {
  52721. source: "./media/characters/aarkus/foot.svg"
  52722. }
  52723. },
  52724. head: {
  52725. height: math.unit(2.85, "feet"),
  52726. name: "Head",
  52727. image: {
  52728. source: "./media/characters/aarkus/head.svg"
  52729. }
  52730. },
  52731. headAlt: {
  52732. height: math.unit(3.07, "feet"),
  52733. name: "Head (Alt)",
  52734. image: {
  52735. source: "./media/characters/aarkus/head-alt.svg"
  52736. }
  52737. },
  52738. mouth: {
  52739. height: math.unit(1.25, "feet"),
  52740. name: "Mouth",
  52741. image: {
  52742. source: "./media/characters/aarkus/mouth.svg"
  52743. }
  52744. },
  52745. dick: {
  52746. height: math.unit(1.77, "feet"),
  52747. name: "Dick",
  52748. image: {
  52749. source: "./media/characters/aarkus/dick.svg"
  52750. }
  52751. },
  52752. },
  52753. [
  52754. {
  52755. name: "Normal",
  52756. height: math.unit(2.69, "meters"),
  52757. default: true
  52758. },
  52759. {
  52760. name: "Macro",
  52761. height: math.unit(269, "meters")
  52762. },
  52763. {
  52764. name: "Macro+",
  52765. height: math.unit(672.5, "meters")
  52766. },
  52767. {
  52768. name: "Megamacro",
  52769. height: math.unit(2.017, "km")
  52770. },
  52771. ]
  52772. ))
  52773. characterMakers.push(() => makeCharacter(
  52774. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52775. {
  52776. front: {
  52777. height: math.unit(23.47, "cm"),
  52778. weight: math.unit(600, "grams"),
  52779. name: "Front",
  52780. image: {
  52781. source: "./media/characters/diode/front.svg",
  52782. extra: 1778/1396,
  52783. bottom: 95/1873
  52784. }
  52785. },
  52786. side: {
  52787. height: math.unit(23.47, "cm"),
  52788. weight: math.unit(600, "grams"),
  52789. name: "Side",
  52790. image: {
  52791. source: "./media/characters/diode/side.svg",
  52792. extra: 1831/1404,
  52793. bottom: 86/1917
  52794. }
  52795. },
  52796. wings: {
  52797. height: math.unit(0.683, "feet"),
  52798. name: "Wings",
  52799. image: {
  52800. source: "./media/characters/diode/wings.svg"
  52801. }
  52802. },
  52803. },
  52804. [
  52805. {
  52806. name: "Normal",
  52807. height: math.unit(23.47, "cm"),
  52808. default: true
  52809. },
  52810. ]
  52811. ))
  52812. characterMakers.push(() => makeCharacter(
  52813. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52814. {
  52815. front: {
  52816. height: math.unit(6 + 3/12, "feet"),
  52817. weight: math.unit(250, "lb"),
  52818. name: "Front",
  52819. image: {
  52820. source: "./media/characters/reika/front.svg",
  52821. extra: 1120/1078,
  52822. bottom: 86/1206
  52823. }
  52824. },
  52825. },
  52826. [
  52827. {
  52828. name: "Normal",
  52829. height: math.unit(6 + 3/12, "feet"),
  52830. default: true
  52831. },
  52832. ]
  52833. ))
  52834. characterMakers.push(() => makeCharacter(
  52835. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52836. {
  52837. front: {
  52838. height: math.unit(16 + 8/12, "feet"),
  52839. weight: math.unit(9000, "lb"),
  52840. name: "Front",
  52841. image: {
  52842. source: "./media/characters/lokuto-takama/front.svg",
  52843. extra: 1774/1632,
  52844. bottom: 147/1921
  52845. },
  52846. extraAttributes: {
  52847. "bustWidth": {
  52848. name: "Bust Width",
  52849. power: 1,
  52850. type: "length",
  52851. base: math.unit(2.4, "meters")
  52852. },
  52853. "breastWeight": {
  52854. name: "Breast Weight",
  52855. power: 3,
  52856. type: "mass",
  52857. base: math.unit(1000, "kg")
  52858. },
  52859. }
  52860. },
  52861. },
  52862. [
  52863. {
  52864. name: "Normal",
  52865. height: math.unit(16 + 8/12, "feet"),
  52866. default: true
  52867. },
  52868. ]
  52869. ))
  52870. characterMakers.push(() => makeCharacter(
  52871. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52872. {
  52873. front: {
  52874. height: math.unit(10, "cm"),
  52875. weight: math.unit(850, "grams"),
  52876. name: "Front",
  52877. image: {
  52878. source: "./media/characters/owak-bone/front.svg",
  52879. extra: 1965/1801,
  52880. bottom: 31/1996
  52881. }
  52882. },
  52883. },
  52884. [
  52885. {
  52886. name: "Normal",
  52887. height: math.unit(10, "cm"),
  52888. default: true
  52889. },
  52890. ]
  52891. ))
  52892. characterMakers.push(() => makeCharacter(
  52893. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52894. {
  52895. front: {
  52896. height: math.unit(2 + 6/12, "feet"),
  52897. weight: math.unit(9, "lb"),
  52898. name: "Front",
  52899. image: {
  52900. source: "./media/characters/muffin/front.svg",
  52901. extra: 1220/1195,
  52902. bottom: 84/1304
  52903. }
  52904. },
  52905. },
  52906. [
  52907. {
  52908. name: "Normal",
  52909. height: math.unit(2 + 6/12, "feet"),
  52910. default: true
  52911. },
  52912. ]
  52913. ))
  52914. characterMakers.push(() => makeCharacter(
  52915. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52916. {
  52917. front: {
  52918. height: math.unit(7, "feet"),
  52919. name: "Front",
  52920. image: {
  52921. source: "./media/characters/chimera/front.svg",
  52922. extra: 1752/1614,
  52923. bottom: 68/1820
  52924. }
  52925. },
  52926. },
  52927. [
  52928. {
  52929. name: "Normal",
  52930. height: math.unit(7, "feet")
  52931. },
  52932. {
  52933. name: "Gigamacro",
  52934. height: math.unit(2.9, "gigameters"),
  52935. default: true
  52936. },
  52937. {
  52938. name: "Universal",
  52939. height: math.unit(1.56e26, "yottameters")
  52940. },
  52941. ]
  52942. ))
  52943. characterMakers.push(() => makeCharacter(
  52944. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52945. {
  52946. front: {
  52947. height: math.unit(3, "feet"),
  52948. weight: math.unit(20, "lb"),
  52949. name: "Front",
  52950. image: {
  52951. source: "./media/characters/kit-fennec-fox/front.svg",
  52952. extra: 1027/932,
  52953. bottom: 16/1043
  52954. }
  52955. },
  52956. back: {
  52957. height: math.unit(3, "feet"),
  52958. weight: math.unit(20, "lb"),
  52959. name: "Back",
  52960. image: {
  52961. source: "./media/characters/kit-fennec-fox/back.svg",
  52962. extra: 1027/932,
  52963. bottom: 16/1043
  52964. }
  52965. },
  52966. },
  52967. [
  52968. {
  52969. name: "Normal",
  52970. height: math.unit(3, "feet"),
  52971. default: true
  52972. },
  52973. ]
  52974. ))
  52975. characterMakers.push(() => makeCharacter(
  52976. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52977. {
  52978. front: {
  52979. height: math.unit(167, "cm"),
  52980. name: "Front",
  52981. image: {
  52982. source: "./media/characters/blue-otter/front.svg",
  52983. extra: 1951/1920,
  52984. bottom: 31/1982
  52985. }
  52986. },
  52987. },
  52988. [
  52989. {
  52990. name: "Otter-Sized",
  52991. height: math.unit(100, "cm")
  52992. },
  52993. {
  52994. name: "Normal",
  52995. height: math.unit(167, "cm"),
  52996. default: true
  52997. },
  52998. ]
  52999. ))
  53000. characterMakers.push(() => makeCharacter(
  53001. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53002. {
  53003. front: {
  53004. height: math.unit(4 + 4/12, "feet"),
  53005. name: "Front",
  53006. image: {
  53007. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53008. extra: 1072/1067,
  53009. bottom: 117/1189
  53010. }
  53011. },
  53012. back: {
  53013. height: math.unit(4 + 4/12, "feet"),
  53014. name: "Back",
  53015. image: {
  53016. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53017. extra: 1135/1129,
  53018. bottom: 57/1192
  53019. }
  53020. },
  53021. head: {
  53022. height: math.unit(1.77, "feet"),
  53023. name: "Head",
  53024. image: {
  53025. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53026. }
  53027. },
  53028. },
  53029. [
  53030. {
  53031. name: "Normal",
  53032. height: math.unit(4 + 4/12, "feet"),
  53033. default: true
  53034. },
  53035. ]
  53036. ))
  53037. characterMakers.push(() => makeCharacter(
  53038. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53039. {
  53040. front: {
  53041. height: math.unit(2, "inches"),
  53042. name: "Front",
  53043. image: {
  53044. source: "./media/characters/carley-hartford/front.svg",
  53045. extra: 1035/988,
  53046. bottom: 23/1058
  53047. }
  53048. },
  53049. back: {
  53050. height: math.unit(2, "inches"),
  53051. name: "Back",
  53052. image: {
  53053. source: "./media/characters/carley-hartford/back.svg",
  53054. extra: 1035/988,
  53055. bottom: 23/1058
  53056. }
  53057. },
  53058. dressed: {
  53059. height: math.unit(2, "inches"),
  53060. name: "Dressed",
  53061. image: {
  53062. source: "./media/characters/carley-hartford/dressed.svg",
  53063. extra: 651/620,
  53064. bottom: 0/651
  53065. }
  53066. },
  53067. },
  53068. [
  53069. {
  53070. name: "Micro",
  53071. height: math.unit(2, "inches"),
  53072. default: true
  53073. },
  53074. {
  53075. name: "Macro",
  53076. height: math.unit(6 + 3/12, "feet")
  53077. },
  53078. ]
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(2 + 3/12, "feet"),
  53085. weight: math.unit(15 + 7/16, "lb"),
  53086. name: "Front",
  53087. image: {
  53088. source: "./media/characters/duke/front.svg",
  53089. extra: 910/815,
  53090. bottom: 30/940
  53091. }
  53092. },
  53093. },
  53094. [
  53095. {
  53096. name: "Normal",
  53097. height: math.unit(2 + 3/12, "feet"),
  53098. default: true
  53099. },
  53100. ]
  53101. ))
  53102. characterMakers.push(() => makeCharacter(
  53103. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53104. {
  53105. front: {
  53106. height: math.unit(5 + 4/12, "feet"),
  53107. weight: math.unit(156, "lb"),
  53108. name: "Front",
  53109. image: {
  53110. source: "./media/characters/dein/front.svg",
  53111. extra: 855/815,
  53112. bottom: 48/903
  53113. }
  53114. },
  53115. side: {
  53116. height: math.unit(5 + 4/12, "feet"),
  53117. weight: math.unit(156, "lb"),
  53118. name: "side",
  53119. image: {
  53120. source: "./media/characters/dein/side.svg",
  53121. extra: 846/803,
  53122. bottom: 25/871
  53123. }
  53124. },
  53125. maw: {
  53126. height: math.unit(1.45, "feet"),
  53127. name: "Maw",
  53128. image: {
  53129. source: "./media/characters/dein/maw.svg"
  53130. }
  53131. },
  53132. },
  53133. [
  53134. {
  53135. name: "Ferret Sized",
  53136. height: math.unit(2 + 5/12, "feet")
  53137. },
  53138. {
  53139. name: "Normal",
  53140. height: math.unit(5 + 4/12, "feet"),
  53141. default: true
  53142. },
  53143. ]
  53144. ))
  53145. characterMakers.push(() => makeCharacter(
  53146. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53147. {
  53148. front: {
  53149. height: math.unit(84 + 8/12, "feet"),
  53150. weight: math.unit(942180, "lb"),
  53151. name: "Front",
  53152. image: {
  53153. source: "./media/characters/daurine-arima/front.svg",
  53154. extra: 1989/1782,
  53155. bottom: 37/2026
  53156. }
  53157. },
  53158. side: {
  53159. height: math.unit(84 + 8/12, "feet"),
  53160. weight: math.unit(942180, "lb"),
  53161. name: "Side",
  53162. image: {
  53163. source: "./media/characters/daurine-arima/side.svg",
  53164. extra: 1997/1790,
  53165. bottom: 21/2018
  53166. }
  53167. },
  53168. back: {
  53169. height: math.unit(84 + 8/12, "feet"),
  53170. weight: math.unit(942180, "lb"),
  53171. name: "Back",
  53172. image: {
  53173. source: "./media/characters/daurine-arima/back.svg",
  53174. extra: 1992/1800,
  53175. bottom: 12/2004
  53176. }
  53177. },
  53178. head: {
  53179. height: math.unit(15.5, "feet"),
  53180. name: "Head",
  53181. image: {
  53182. source: "./media/characters/daurine-arima/head.svg"
  53183. }
  53184. },
  53185. headAlt: {
  53186. height: math.unit(19.19, "feet"),
  53187. name: "Head (Alt)",
  53188. image: {
  53189. source: "./media/characters/daurine-arima/head-alt.svg"
  53190. }
  53191. },
  53192. },
  53193. [
  53194. {
  53195. name: "Minimum height",
  53196. height: math.unit(8 + 10/12, "feet")
  53197. },
  53198. {
  53199. name: "Comfort height",
  53200. height: math.unit(19 + 6 /12, "feet")
  53201. },
  53202. {
  53203. name: "\"Normal\" height",
  53204. height: math.unit(28 + 10/12, "feet")
  53205. },
  53206. {
  53207. name: "Base height",
  53208. height: math.unit(84 + 8/12, "feet"),
  53209. default: true
  53210. },
  53211. {
  53212. name: "Mini-macro",
  53213. height: math.unit(2360, "feet")
  53214. },
  53215. {
  53216. name: "Macro",
  53217. height: math.unit(10, "miles")
  53218. },
  53219. {
  53220. name: "Goddess",
  53221. height: math.unit(9.99e40, "yottameters")
  53222. },
  53223. ]
  53224. ))
  53225. characterMakers.push(() => makeCharacter(
  53226. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53227. {
  53228. front: {
  53229. height: math.unit(2.3, "meters"),
  53230. name: "Front",
  53231. image: {
  53232. source: "./media/characters/cilenomon/front.svg",
  53233. extra: 1963/1778,
  53234. bottom: 54/2017
  53235. }
  53236. },
  53237. },
  53238. [
  53239. {
  53240. name: "Normal",
  53241. height: math.unit(2.3, "meters"),
  53242. default: true
  53243. },
  53244. {
  53245. name: "Big",
  53246. height: math.unit(5, "meters")
  53247. },
  53248. {
  53249. name: "Macro",
  53250. height: math.unit(30, "meters")
  53251. },
  53252. {
  53253. name: "True",
  53254. height: math.unit(1, "universe")
  53255. },
  53256. ]
  53257. ))
  53258. characterMakers.push(() => makeCharacter(
  53259. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53260. {
  53261. front: {
  53262. height: math.unit(5, "feet"),
  53263. name: "Front",
  53264. image: {
  53265. source: "./media/characters/sen-mink/front.svg",
  53266. extra: 1727/1675,
  53267. bottom: 35/1762
  53268. }
  53269. },
  53270. },
  53271. [
  53272. {
  53273. name: "Normal",
  53274. height: math.unit(5, "feet"),
  53275. default: true
  53276. },
  53277. ]
  53278. ))
  53279. characterMakers.push(() => makeCharacter(
  53280. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53281. {
  53282. front: {
  53283. height: math.unit(5.42999, "feet"),
  53284. weight: math.unit(100, "lb"),
  53285. name: "Front",
  53286. image: {
  53287. source: "./media/characters/ophois/front.svg",
  53288. extra: 1429/1286,
  53289. bottom: 60/1489
  53290. }
  53291. },
  53292. },
  53293. [
  53294. {
  53295. name: "Normal",
  53296. height: math.unit(5.42999, "feet"),
  53297. default: true
  53298. },
  53299. ]
  53300. ))
  53301. characterMakers.push(() => makeCharacter(
  53302. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53303. {
  53304. front: {
  53305. height: math.unit(2, "meters"),
  53306. name: "Front",
  53307. image: {
  53308. source: "./media/characters/riley/front.svg",
  53309. extra: 1779/1754,
  53310. bottom: 139/1918
  53311. }
  53312. },
  53313. },
  53314. [
  53315. {
  53316. name: "Normal",
  53317. height: math.unit(2, "meters"),
  53318. default: true
  53319. },
  53320. ]
  53321. ))
  53322. characterMakers.push(() => makeCharacter(
  53323. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53324. {
  53325. front: {
  53326. height: math.unit(6 + 2/12, "feet"),
  53327. weight: math.unit(195, "lb"),
  53328. preyCapacity: math.unit(6, "people"),
  53329. name: "Front",
  53330. image: {
  53331. source: "./media/characters/shuken-flash/front.svg",
  53332. extra: 1905/1739,
  53333. bottom: 65/1970
  53334. }
  53335. },
  53336. back: {
  53337. height: math.unit(6 + 2/12, "feet"),
  53338. weight: math.unit(195, "lb"),
  53339. preyCapacity: math.unit(6, "people"),
  53340. name: "Back",
  53341. image: {
  53342. source: "./media/characters/shuken-flash/back.svg",
  53343. extra: 1912/1751,
  53344. bottom: 13/1925
  53345. }
  53346. },
  53347. },
  53348. [
  53349. {
  53350. name: "Normal",
  53351. height: math.unit(6 + 2/12, "feet"),
  53352. default: true
  53353. },
  53354. ]
  53355. ))
  53356. characterMakers.push(() => makeCharacter(
  53357. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53358. {
  53359. front: {
  53360. height: math.unit(5 + 9/12, "feet"),
  53361. weight: math.unit(150, "lb"),
  53362. name: "Front",
  53363. image: {
  53364. source: "./media/characters/plat/front.svg",
  53365. extra: 1816/1703,
  53366. bottom: 43/1859
  53367. }
  53368. },
  53369. side: {
  53370. height: math.unit(5 + 9/12, "feet"),
  53371. weight: math.unit(300, "lb"),
  53372. name: "Side",
  53373. image: {
  53374. source: "./media/characters/plat/side.svg",
  53375. extra: 1824/1699,
  53376. bottom: 18/1842
  53377. }
  53378. },
  53379. },
  53380. [
  53381. {
  53382. name: "Normal",
  53383. height: math.unit(5 + 9/12, "feet"),
  53384. default: true
  53385. },
  53386. ]
  53387. ))
  53388. characterMakers.push(() => makeCharacter(
  53389. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53390. {
  53391. front: {
  53392. height: math.unit(9, "feet"),
  53393. weight: math.unit(1800, "lb"),
  53394. name: "Front",
  53395. image: {
  53396. source: "./media/characters/elaine/front.svg",
  53397. extra: 1833/1354,
  53398. bottom: 25/1858
  53399. }
  53400. },
  53401. back: {
  53402. height: math.unit(8.8, "feet"),
  53403. weight: math.unit(1800, "lb"),
  53404. name: "Back",
  53405. image: {
  53406. source: "./media/characters/elaine/back.svg",
  53407. extra: 1641/1233,
  53408. bottom: 53/1694
  53409. }
  53410. },
  53411. },
  53412. [
  53413. {
  53414. name: "Normal",
  53415. height: math.unit(9, "feet"),
  53416. default: true
  53417. },
  53418. ]
  53419. ))
  53420. characterMakers.push(() => makeCharacter(
  53421. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53422. {
  53423. front: {
  53424. height: math.unit(17 + 9/12, "feet"),
  53425. weight: math.unit(8000, "lb"),
  53426. name: "Front",
  53427. image: {
  53428. source: "./media/characters/vera-raven/front.svg",
  53429. extra: 1457/1412,
  53430. bottom: 121/1578
  53431. }
  53432. },
  53433. side: {
  53434. height: math.unit(17 + 9/12, "feet"),
  53435. weight: math.unit(8000, "lb"),
  53436. name: "Side",
  53437. image: {
  53438. source: "./media/characters/vera-raven/side.svg",
  53439. extra: 1510/1464,
  53440. bottom: 54/1564
  53441. }
  53442. },
  53443. },
  53444. [
  53445. {
  53446. name: "Normal",
  53447. height: math.unit(17 + 9/12, "feet"),
  53448. default: true
  53449. },
  53450. ]
  53451. ))
  53452. characterMakers.push(() => makeCharacter(
  53453. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53454. {
  53455. dressed: {
  53456. height: math.unit(6 + 9/12, "feet"),
  53457. name: "Dressed",
  53458. image: {
  53459. source: "./media/characters/nakisha/dressed.svg",
  53460. extra: 1909/1757,
  53461. bottom: 48/1957
  53462. }
  53463. },
  53464. nude: {
  53465. height: math.unit(6 + 9/12, "feet"),
  53466. name: "Nude",
  53467. image: {
  53468. source: "./media/characters/nakisha/nude.svg",
  53469. extra: 1917/1765,
  53470. bottom: 34/1951
  53471. }
  53472. },
  53473. },
  53474. [
  53475. {
  53476. name: "Normal",
  53477. height: math.unit(6 + 9/12, "feet"),
  53478. default: true
  53479. },
  53480. ]
  53481. ))
  53482. characterMakers.push(() => makeCharacter(
  53483. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53484. {
  53485. front: {
  53486. height: math.unit(87, "meters"),
  53487. name: "Front",
  53488. image: {
  53489. source: "./media/characters/serafin/front.svg",
  53490. extra: 1919/1776,
  53491. bottom: 65/1984
  53492. }
  53493. },
  53494. },
  53495. [
  53496. {
  53497. name: "Normal",
  53498. height: math.unit(87, "meters"),
  53499. default: true
  53500. },
  53501. ]
  53502. ))
  53503. characterMakers.push(() => makeCharacter(
  53504. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53505. {
  53506. front: {
  53507. height: math.unit(6, "feet"),
  53508. weight: math.unit(200, "lb"),
  53509. name: "Front",
  53510. image: {
  53511. source: "./media/characters/poptart/front.svg",
  53512. extra: 615/583,
  53513. bottom: 23/638
  53514. }
  53515. },
  53516. back: {
  53517. height: math.unit(6, "feet"),
  53518. weight: math.unit(200, "lb"),
  53519. name: "Back",
  53520. image: {
  53521. source: "./media/characters/poptart/back.svg",
  53522. extra: 617/584,
  53523. bottom: 22/639
  53524. }
  53525. },
  53526. frontNsfw: {
  53527. height: math.unit(6, "feet"),
  53528. weight: math.unit(200, "lb"),
  53529. name: "Front (NSFW)",
  53530. image: {
  53531. source: "./media/characters/poptart/front-nsfw.svg",
  53532. extra: 615/583,
  53533. bottom: 23/638
  53534. }
  53535. },
  53536. backNsfw: {
  53537. height: math.unit(6, "feet"),
  53538. weight: math.unit(200, "lb"),
  53539. name: "Back (NSFW)",
  53540. image: {
  53541. source: "./media/characters/poptart/back-nsfw.svg",
  53542. extra: 617/584,
  53543. bottom: 22/639
  53544. }
  53545. },
  53546. hand: {
  53547. height: math.unit(1.14, "feet"),
  53548. name: "Hand",
  53549. image: {
  53550. source: "./media/characters/poptart/hand.svg"
  53551. }
  53552. },
  53553. foot: {
  53554. height: math.unit(1.5, "feet"),
  53555. name: "Foot",
  53556. image: {
  53557. source: "./media/characters/poptart/foot.svg"
  53558. }
  53559. },
  53560. },
  53561. [
  53562. {
  53563. name: "Normal",
  53564. height: math.unit(6, "feet"),
  53565. default: true
  53566. },
  53567. {
  53568. name: "Grande",
  53569. height: math.unit(350, "feet")
  53570. },
  53571. {
  53572. name: "Massif",
  53573. height: math.unit(967, "feet")
  53574. },
  53575. ]
  53576. ))
  53577. characterMakers.push(() => makeCharacter(
  53578. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53579. {
  53580. hyenaSide: {
  53581. height: math.unit(120, "cm"),
  53582. weight: math.unit(120, "lb"),
  53583. name: "Side",
  53584. image: {
  53585. source: "./media/characters/trance/hyena-side.svg",
  53586. extra: 998/904,
  53587. bottom: 76/1074
  53588. }
  53589. },
  53590. },
  53591. [
  53592. {
  53593. name: "Normal",
  53594. height: math.unit(120, "cm"),
  53595. default: true
  53596. },
  53597. {
  53598. name: "Dire",
  53599. height: math.unit(230, "cm")
  53600. },
  53601. {
  53602. name: "Macro",
  53603. height: math.unit(37, "feet")
  53604. },
  53605. ]
  53606. ))
  53607. characterMakers.push(() => makeCharacter(
  53608. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53609. {
  53610. front: {
  53611. height: math.unit(6 + 3/12, "feet"),
  53612. name: "Front",
  53613. image: {
  53614. source: "./media/characters/michael-berretta/front.svg",
  53615. extra: 515/494,
  53616. bottom: 20/535
  53617. }
  53618. },
  53619. back: {
  53620. height: math.unit(6 + 3/12, "feet"),
  53621. name: "Back",
  53622. image: {
  53623. source: "./media/characters/michael-berretta/back.svg",
  53624. extra: 520/497,
  53625. bottom: 21/541
  53626. }
  53627. },
  53628. frontNsfw: {
  53629. height: math.unit(6 + 3/12, "feet"),
  53630. name: "Front (NSFW)",
  53631. image: {
  53632. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53633. extra: 515/494,
  53634. bottom: 20/535
  53635. }
  53636. },
  53637. dick: {
  53638. height: math.unit(1, "feet"),
  53639. name: "Dick",
  53640. image: {
  53641. source: "./media/characters/michael-berretta/dick.svg"
  53642. }
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Normal",
  53648. height: math.unit(6 + 3/12, "feet"),
  53649. default: true
  53650. },
  53651. {
  53652. name: "Big",
  53653. height: math.unit(12, "feet")
  53654. },
  53655. {
  53656. name: "Macro",
  53657. height: math.unit(187.5, "feet")
  53658. },
  53659. ]
  53660. ))
  53661. characterMakers.push(() => makeCharacter(
  53662. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53663. {
  53664. front: {
  53665. height: math.unit(9 + 9/12, "feet"),
  53666. weight: math.unit(1244, "lb"),
  53667. name: "Front",
  53668. image: {
  53669. source: "./media/characters/stella-edgecomb/front.svg",
  53670. extra: 1835/1706,
  53671. bottom: 49/1884
  53672. }
  53673. },
  53674. pen: {
  53675. height: math.unit(0.95, "feet"),
  53676. name: "Pen",
  53677. image: {
  53678. source: "./media/characters/stella-edgecomb/pen.svg"
  53679. }
  53680. },
  53681. },
  53682. [
  53683. {
  53684. name: "Cozy Bear",
  53685. height: math.unit(0.5, "inches")
  53686. },
  53687. {
  53688. name: "Normal",
  53689. height: math.unit(9 + 9/12, "feet"),
  53690. default: true
  53691. },
  53692. {
  53693. name: "Giga Bear",
  53694. height: math.unit(1, "mile")
  53695. },
  53696. {
  53697. name: "Great Bear",
  53698. height: math.unit(53, "miles")
  53699. },
  53700. {
  53701. name: "Goddess Bear",
  53702. height: math.unit(40000, "miles")
  53703. },
  53704. {
  53705. name: "Sun Bear",
  53706. height: math.unit(900000, "miles")
  53707. },
  53708. ]
  53709. ))
  53710. characterMakers.push(() => makeCharacter(
  53711. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53712. {
  53713. anthroFront: {
  53714. height: math.unit(556, "cm"),
  53715. weight: math.unit(2650, "kg"),
  53716. preyCapacity: math.unit(3, "people"),
  53717. name: "Front",
  53718. image: {
  53719. source: "./media/characters/ash´iika/front.svg",
  53720. extra: 710/673,
  53721. bottom: 15/725
  53722. },
  53723. form: "anthro",
  53724. default: true
  53725. },
  53726. anthroSide: {
  53727. height: math.unit(556, "cm"),
  53728. weight: math.unit(2650, "kg"),
  53729. preyCapacity: math.unit(3, "people"),
  53730. name: "Side",
  53731. image: {
  53732. source: "./media/characters/ash´iika/side.svg",
  53733. extra: 696/676,
  53734. bottom: 13/709
  53735. },
  53736. form: "anthro"
  53737. },
  53738. anthroDressed: {
  53739. height: math.unit(556, "cm"),
  53740. weight: math.unit(2650, "kg"),
  53741. preyCapacity: math.unit(3, "people"),
  53742. name: "Dressed",
  53743. image: {
  53744. source: "./media/characters/ash´iika/dressed.svg",
  53745. extra: 710/673,
  53746. bottom: 15/725
  53747. },
  53748. form: "anthro"
  53749. },
  53750. anthroHead: {
  53751. height: math.unit(3.5, "feet"),
  53752. name: "Head",
  53753. image: {
  53754. source: "./media/characters/ash´iika/head.svg",
  53755. extra: 348/291,
  53756. bottom: 45/393
  53757. },
  53758. form: "anthro"
  53759. },
  53760. feralSide: {
  53761. height: math.unit(870, "cm"),
  53762. weight: math.unit(17500, "kg"),
  53763. preyCapacity: math.unit(15, "people"),
  53764. name: "Side",
  53765. image: {
  53766. source: "./media/characters/ash´iika/feral.svg",
  53767. extra: 595/199,
  53768. bottom: 7/602
  53769. },
  53770. form: "feral",
  53771. default: true,
  53772. },
  53773. },
  53774. [
  53775. {
  53776. name: "Normal",
  53777. height: math.unit(556, "cm"),
  53778. default: true,
  53779. form: "anthro"
  53780. },
  53781. {
  53782. name: "Macro",
  53783. height: math.unit(88, "meters"),
  53784. form: "anthro"
  53785. },
  53786. {
  53787. name: "Normal",
  53788. height: math.unit(870, "cm"),
  53789. default: true,
  53790. form: "feral"
  53791. },
  53792. {
  53793. name: "Large",
  53794. height: math.unit(25, "meters"),
  53795. form: "feral"
  53796. },
  53797. ],
  53798. {
  53799. "anthro": {
  53800. name: "Anthro",
  53801. default: true
  53802. },
  53803. "feral": {
  53804. name: "Feral",
  53805. },
  53806. }
  53807. ))
  53808. characterMakers.push(() => makeCharacter(
  53809. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53810. {
  53811. front: {
  53812. height: math.unit(10, "feet"),
  53813. weight: math.unit(800, "lb"),
  53814. name: "Front",
  53815. image: {
  53816. source: "./media/characters/yen/front.svg",
  53817. extra: 443/411,
  53818. bottom: 6/449
  53819. }
  53820. },
  53821. sleeping: {
  53822. height: math.unit(10, "feet"),
  53823. weight: math.unit(800, "lb"),
  53824. name: "Sleeping",
  53825. image: {
  53826. source: "./media/characters/yen/sleeping.svg",
  53827. extra: 470/422,
  53828. bottom: 0/470
  53829. }
  53830. },
  53831. head: {
  53832. height: math.unit(2.2, "feet"),
  53833. name: "Head",
  53834. image: {
  53835. source: "./media/characters/yen/head.svg"
  53836. }
  53837. },
  53838. headAlt: {
  53839. height: math.unit(2.1, "feet"),
  53840. name: "Head (Alt)",
  53841. image: {
  53842. source: "./media/characters/yen/head-alt.svg"
  53843. }
  53844. },
  53845. },
  53846. [
  53847. {
  53848. name: "Normal",
  53849. height: math.unit(10, "feet"),
  53850. default: true
  53851. },
  53852. ]
  53853. ))
  53854. characterMakers.push(() => makeCharacter(
  53855. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53856. {
  53857. front: {
  53858. height: math.unit(12, "feet"),
  53859. name: "Front",
  53860. image: {
  53861. source: "./media/characters/citra/front.svg",
  53862. extra: 1950/1710,
  53863. bottom: 47/1997
  53864. }
  53865. },
  53866. },
  53867. [
  53868. {
  53869. name: "Normal",
  53870. height: math.unit(12, "feet"),
  53871. default: true
  53872. },
  53873. ]
  53874. ))
  53875. characterMakers.push(() => makeCharacter(
  53876. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53877. {
  53878. side: {
  53879. height: math.unit(7 + 10/12, "feet"),
  53880. name: "Side",
  53881. image: {
  53882. source: "./media/characters/sholstim/side.svg",
  53883. extra: 786/682,
  53884. bottom: 40/826
  53885. }
  53886. },
  53887. },
  53888. [
  53889. {
  53890. name: "Normal",
  53891. height: math.unit(7 + 10/12, "feet"),
  53892. default: true
  53893. },
  53894. ]
  53895. ))
  53896. characterMakers.push(() => makeCharacter(
  53897. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53898. {
  53899. front: {
  53900. height: math.unit(3.10, "meters"),
  53901. name: "Front",
  53902. image: {
  53903. source: "./media/characters/aggyn/front.svg",
  53904. extra: 1188/963,
  53905. bottom: 24/1212
  53906. }
  53907. },
  53908. },
  53909. [
  53910. {
  53911. name: "Normal",
  53912. height: math.unit(3.10, "meters"),
  53913. default: true
  53914. },
  53915. ]
  53916. ))
  53917. characterMakers.push(() => makeCharacter(
  53918. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53919. {
  53920. front: {
  53921. height: math.unit(7 + 5/12, "feet"),
  53922. weight: math.unit(687, "lb"),
  53923. name: "Front",
  53924. image: {
  53925. source: "./media/characters/alsandair-hergenroether/front.svg",
  53926. extra: 1251/1186,
  53927. bottom: 75/1326
  53928. }
  53929. },
  53930. back: {
  53931. height: math.unit(7 + 5/12, "feet"),
  53932. weight: math.unit(687, "lb"),
  53933. name: "Back",
  53934. image: {
  53935. source: "./media/characters/alsandair-hergenroether/back.svg",
  53936. extra: 1290/1229,
  53937. bottom: 17/1307
  53938. }
  53939. },
  53940. },
  53941. [
  53942. {
  53943. name: "Max Compression",
  53944. height: math.unit(7 + 5/12, "feet"),
  53945. default: true
  53946. },
  53947. {
  53948. name: "\"Normal\"",
  53949. height: math.unit(2, "universes")
  53950. },
  53951. ]
  53952. ))
  53953. characterMakers.push(() => makeCharacter(
  53954. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53955. {
  53956. front: {
  53957. height: math.unit(4 + 1/12, "feet"),
  53958. weight: math.unit(92, "lb"),
  53959. name: "Front",
  53960. image: {
  53961. source: "./media/characters/ie/front.svg",
  53962. extra: 1585/1352,
  53963. bottom: 91/1676
  53964. }
  53965. },
  53966. },
  53967. [
  53968. {
  53969. name: "Normal",
  53970. height: math.unit(4 + 1/12, "feet"),
  53971. default: true
  53972. },
  53973. ]
  53974. ))
  53975. characterMakers.push(() => makeCharacter(
  53976. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53977. {
  53978. anthro: {
  53979. height: math.unit(6, "feet"),
  53980. weight: math.unit(150, "lb"),
  53981. name: "Front",
  53982. image: {
  53983. source: "./media/characters/willow/anthro.svg",
  53984. extra: 1073/986,
  53985. bottom: 34/1107
  53986. },
  53987. form: "anthro",
  53988. default: true
  53989. },
  53990. taur: {
  53991. height: math.unit(6, "feet"),
  53992. weight: math.unit(150, "lb"),
  53993. name: "Side",
  53994. image: {
  53995. source: "./media/characters/willow/taur.svg",
  53996. extra: 647/512,
  53997. bottom: 136/783
  53998. },
  53999. form: "taur",
  54000. default: true
  54001. },
  54002. },
  54003. [
  54004. {
  54005. name: "Humanoid",
  54006. height: math.unit(2.7, "meters"),
  54007. form: "anthro"
  54008. },
  54009. {
  54010. name: "Normal",
  54011. height: math.unit(9, "meters"),
  54012. form: "anthro",
  54013. default: true
  54014. },
  54015. {
  54016. name: "Humanoid",
  54017. height: math.unit(2.1, "meters"),
  54018. form: "taur"
  54019. },
  54020. {
  54021. name: "Normal",
  54022. height: math.unit(7, "meters"),
  54023. form: "taur",
  54024. default: true
  54025. },
  54026. ],
  54027. {
  54028. "anthro": {
  54029. name: "Anthro",
  54030. default: true
  54031. },
  54032. "taur": {
  54033. name: "Taur",
  54034. },
  54035. }
  54036. ))
  54037. characterMakers.push(() => makeCharacter(
  54038. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54039. {
  54040. front: {
  54041. height: math.unit(2 + 5/12, "feet"),
  54042. name: "Front",
  54043. image: {
  54044. source: "./media/characters/kyan/front.svg",
  54045. extra: 460/334,
  54046. bottom: 23/483
  54047. },
  54048. extraAttributes: {
  54049. "toeLength": {
  54050. name: "Toe Length",
  54051. power: 1,
  54052. type: "length",
  54053. base: math.unit(7, "cm")
  54054. },
  54055. "toeclawLength": {
  54056. name: "Toeclaw Length",
  54057. power: 1,
  54058. type: "length",
  54059. base: math.unit(4.7, "cm")
  54060. },
  54061. "earHeight": {
  54062. name: "Ear Height",
  54063. power: 1,
  54064. type: "length",
  54065. base: math.unit(14.1, "cm")
  54066. },
  54067. }
  54068. },
  54069. paws: {
  54070. height: math.unit(0.45, "feet"),
  54071. name: "Paws",
  54072. image: {
  54073. source: "./media/characters/kyan/paws.svg",
  54074. extra: 581/581,
  54075. bottom: 114/695
  54076. }
  54077. },
  54078. },
  54079. [
  54080. {
  54081. name: "Normal",
  54082. height: math.unit(2 + 5/12, "feet"),
  54083. default: true
  54084. },
  54085. ]
  54086. ))
  54087. characterMakers.push(() => makeCharacter(
  54088. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54089. {
  54090. front: {
  54091. height: math.unit(2 + 2/3, "feet"),
  54092. name: "Front",
  54093. image: {
  54094. source: "./media/characters/xazzon/front.svg",
  54095. extra: 1109/984,
  54096. bottom: 42/1151
  54097. }
  54098. },
  54099. back: {
  54100. height: math.unit(2 + 2/3, "feet"),
  54101. name: "Back",
  54102. image: {
  54103. source: "./media/characters/xazzon/back.svg",
  54104. extra: 1095/971,
  54105. bottom: 23/1118
  54106. }
  54107. },
  54108. },
  54109. [
  54110. {
  54111. name: "Normal",
  54112. height: math.unit(2 + 2/3, "feet"),
  54113. default: true
  54114. },
  54115. ]
  54116. ))
  54117. characterMakers.push(() => makeCharacter(
  54118. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54119. {
  54120. dressed: {
  54121. height: math.unit(5 + 7/12, "feet"),
  54122. weight: math.unit(173, "lb"),
  54123. name: "Dressed",
  54124. image: {
  54125. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54126. extra: 3262/2862,
  54127. bottom: 188/3450
  54128. }
  54129. },
  54130. undressed: {
  54131. height: math.unit(5 + 7/12, "feet"),
  54132. weight: math.unit(173, "lb"),
  54133. name: "Undressed",
  54134. image: {
  54135. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54136. extra: 3262/2862,
  54137. bottom: 188/3450
  54138. }
  54139. },
  54140. },
  54141. [
  54142. {
  54143. name: "The void",
  54144. height: math.unit(7.29193e-34, "angstroms")
  54145. },
  54146. {
  54147. name: "Uh-Oh.",
  54148. height: math.unit(5.734e-7, "angstroms")
  54149. },
  54150. {
  54151. name: "Pico",
  54152. height: math.unit(0.876, "angstroms")
  54153. },
  54154. {
  54155. name: "Nano",
  54156. height: math.unit(0.000134200, "mm")
  54157. },
  54158. {
  54159. name: "Micro",
  54160. height: math.unit(0.0673020, "mm")
  54161. },
  54162. {
  54163. name: "Tiny",
  54164. height: math.unit(2.4, "mm")
  54165. },
  54166. {
  54167. name: "Actual Normal",
  54168. height: math.unit(3, "inches"),
  54169. default: true
  54170. },
  54171. {
  54172. name: "Normal",
  54173. height: math.unit(5 + 8/12, "feet")
  54174. },
  54175. {
  54176. name: "Giant",
  54177. height: math.unit(12, "feet")
  54178. },
  54179. {
  54180. name: "City Ruler",
  54181. height: math.unit(270, "meters")
  54182. },
  54183. {
  54184. name: "Giga",
  54185. height: math.unit(1117.6, "km")
  54186. },
  54187. {
  54188. name: "All-Powerful Queen",
  54189. height: math.unit(70.8, "gigameters")
  54190. },
  54191. {
  54192. name: "'Goddess'",
  54193. height: math.unit(600, "yottameters")
  54194. },
  54195. {
  54196. name: "Biggest!",
  54197. height: math.unit(4.23e5, "yottameters")
  54198. },
  54199. ]
  54200. ))
  54201. characterMakers.push(() => makeCharacter(
  54202. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54203. {
  54204. front: {
  54205. height: math.unit(8, "feet"),
  54206. weight: math.unit(300, "lb"),
  54207. name: "Front",
  54208. image: {
  54209. source: "./media/characters/khyla-shadowsong/front.svg",
  54210. extra: 861/798,
  54211. bottom: 32/893
  54212. }
  54213. },
  54214. side: {
  54215. height: math.unit(8, "feet"),
  54216. weight: math.unit(300, "lb"),
  54217. name: "Side",
  54218. image: {
  54219. source: "./media/characters/khyla-shadowsong/side.svg",
  54220. extra: 790/750,
  54221. bottom: 87/877
  54222. }
  54223. },
  54224. back: {
  54225. height: math.unit(8, "feet"),
  54226. weight: math.unit(300, "lb"),
  54227. name: "Back",
  54228. image: {
  54229. source: "./media/characters/khyla-shadowsong/back.svg",
  54230. extra: 855/808,
  54231. bottom: 14/869
  54232. }
  54233. },
  54234. head: {
  54235. height: math.unit(2.7, "feet"),
  54236. name: "Head",
  54237. image: {
  54238. source: "./media/characters/khyla-shadowsong/head.svg"
  54239. }
  54240. },
  54241. },
  54242. [
  54243. {
  54244. name: "Micro",
  54245. height: math.unit(6, "inches")
  54246. },
  54247. {
  54248. name: "Normal",
  54249. height: math.unit(8, "feet"),
  54250. default: true
  54251. },
  54252. ]
  54253. ))
  54254. characterMakers.push(() => makeCharacter(
  54255. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54256. {
  54257. hyperFront: {
  54258. height: math.unit(9 + 4/12, "feet"),
  54259. weight: math.unit(2000, "lb"),
  54260. name: "Front",
  54261. image: {
  54262. source: "./media/characters/tiden/hyper-front.svg",
  54263. extra: 400/382,
  54264. bottom: 6/406
  54265. },
  54266. form: "hyper",
  54267. },
  54268. regularFront: {
  54269. height: math.unit(7 + 10/12, "feet"),
  54270. weight: math.unit(470, "lb"),
  54271. name: "Front",
  54272. image: {
  54273. source: "./media/characters/tiden/regular-front.svg",
  54274. extra: 468/442,
  54275. bottom: 6/474
  54276. },
  54277. form: "regular",
  54278. },
  54279. },
  54280. [
  54281. {
  54282. name: "Normal",
  54283. height: math.unit(9 + 4/12, "feet"),
  54284. default: true,
  54285. form: "hyper"
  54286. },
  54287. {
  54288. name: "Normal",
  54289. height: math.unit(7 + 10/12, "feet"),
  54290. default: true,
  54291. form: "regular"
  54292. },
  54293. ],
  54294. {
  54295. "hyper": {
  54296. name: "Hyper",
  54297. default: true
  54298. },
  54299. "regular": {
  54300. name: "Regular",
  54301. },
  54302. }
  54303. ))
  54304. characterMakers.push(() => makeCharacter(
  54305. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54306. {
  54307. side: {
  54308. height: math.unit(6, "feet"),
  54309. weight: math.unit(150, "lb"),
  54310. name: "Side",
  54311. image: {
  54312. source: "./media/characters/jason-crowe/side.svg",
  54313. extra: 1771/766,
  54314. bottom: 219/1990
  54315. }
  54316. },
  54317. },
  54318. [
  54319. {
  54320. name: "Pocket Gryphon",
  54321. height: math.unit(6, "cm")
  54322. },
  54323. {
  54324. name: "Raven",
  54325. height: math.unit(60, "cm")
  54326. },
  54327. {
  54328. name: "Normal",
  54329. height: math.unit(1, "meter"),
  54330. default: true
  54331. },
  54332. ]
  54333. ))
  54334. characterMakers.push(() => makeCharacter(
  54335. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54336. {
  54337. front: {
  54338. height: math.unit(9 + 6/12, "feet"),
  54339. weight: math.unit(1100, "lb"),
  54340. name: "Front",
  54341. image: {
  54342. source: "./media/characters/django/front.svg",
  54343. extra: 1231/1136,
  54344. bottom: 34/1265
  54345. }
  54346. },
  54347. side: {
  54348. height: math.unit(9 + 6/12, "feet"),
  54349. weight: math.unit(1100, "lb"),
  54350. name: "Side",
  54351. image: {
  54352. source: "./media/characters/django/side.svg",
  54353. extra: 1267/1174,
  54354. bottom: 9/1276
  54355. }
  54356. },
  54357. },
  54358. [
  54359. {
  54360. name: "Normal",
  54361. height: math.unit(9 + 6/12, "feet"),
  54362. default: true
  54363. },
  54364. {
  54365. name: "Macro 1",
  54366. height: math.unit(50, "feet")
  54367. },
  54368. {
  54369. name: "Macro 2",
  54370. height: math.unit(500, "feet")
  54371. },
  54372. {
  54373. name: "Mega Macro",
  54374. height: math.unit(5300, "feet")
  54375. },
  54376. ]
  54377. ))
  54378. characterMakers.push(() => makeCharacter(
  54379. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54380. {
  54381. frontSfw: {
  54382. height: math.unit(120, "cm"),
  54383. weight: math.unit(15, "kg"),
  54384. name: "Front (SFW)",
  54385. image: {
  54386. source: "./media/characters/eri/front-sfw.svg",
  54387. extra: 1014/939,
  54388. bottom: 37/1051
  54389. },
  54390. form: "moth",
  54391. },
  54392. frontNsfw: {
  54393. height: math.unit(120, "cm"),
  54394. weight: math.unit(15, "kg"),
  54395. name: "Front (NSFW)",
  54396. image: {
  54397. source: "./media/characters/eri/front-nsfw.svg",
  54398. extra: 1014/939,
  54399. bottom: 37/1051
  54400. },
  54401. form: "moth",
  54402. default: true
  54403. },
  54404. egg: {
  54405. height: math.unit(10, "cm"),
  54406. name: "Egg",
  54407. image: {
  54408. source: "./media/characters/eri/egg.svg"
  54409. },
  54410. form: "egg",
  54411. default: true
  54412. },
  54413. },
  54414. [
  54415. {
  54416. name: "Normal",
  54417. height: math.unit(120, "cm"),
  54418. default: true,
  54419. form: "moth"
  54420. },
  54421. {
  54422. name: "Normal",
  54423. height: math.unit(10, "cm"),
  54424. default: true,
  54425. form: "egg"
  54426. },
  54427. ],
  54428. {
  54429. "moth": {
  54430. name: "Moth",
  54431. default: true
  54432. },
  54433. "egg": {
  54434. name: "Egg",
  54435. },
  54436. }
  54437. ))
  54438. characterMakers.push(() => makeCharacter(
  54439. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54440. {
  54441. front: {
  54442. height: math.unit(200, "feet"),
  54443. name: "Front",
  54444. image: {
  54445. source: "./media/characters/bishop-dowser/front.svg",
  54446. extra: 933/868,
  54447. bottom: 106/1039
  54448. }
  54449. },
  54450. },
  54451. [
  54452. {
  54453. name: "Giant",
  54454. height: math.unit(200, "feet"),
  54455. default: true
  54456. },
  54457. ]
  54458. ))
  54459. characterMakers.push(() => makeCharacter(
  54460. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54461. {
  54462. front: {
  54463. height: math.unit(2, "meters"),
  54464. preyCapacity: math.unit(3, "people"),
  54465. name: "Front",
  54466. image: {
  54467. source: "./media/characters/fryra/front.svg",
  54468. extra: 1025/948,
  54469. bottom: 30/1055
  54470. },
  54471. extraAttributes: {
  54472. "breastVolume": {
  54473. name: "Breast Volume",
  54474. power: 3,
  54475. type: "volume",
  54476. base: math.unit(8, "liters")
  54477. },
  54478. }
  54479. },
  54480. back: {
  54481. height: math.unit(2, "meters"),
  54482. preyCapacity: math.unit(3, "people"),
  54483. name: "Back",
  54484. image: {
  54485. source: "./media/characters/fryra/back.svg",
  54486. extra: 993/938,
  54487. bottom: 38/1031
  54488. },
  54489. extraAttributes: {
  54490. "breastVolume": {
  54491. name: "Breast Volume",
  54492. power: 3,
  54493. type: "volume",
  54494. base: math.unit(8, "liters")
  54495. },
  54496. }
  54497. },
  54498. head: {
  54499. height: math.unit(1.33, "feet"),
  54500. name: "Head",
  54501. image: {
  54502. source: "./media/characters/fryra/head.svg"
  54503. }
  54504. },
  54505. maw: {
  54506. height: math.unit(0.56, "feet"),
  54507. name: "Maw",
  54508. image: {
  54509. source: "./media/characters/fryra/maw.svg"
  54510. }
  54511. },
  54512. },
  54513. [
  54514. {
  54515. name: "Micro",
  54516. height: math.unit(5, "cm")
  54517. },
  54518. {
  54519. name: "Normal",
  54520. height: math.unit(2, "meters"),
  54521. default: true
  54522. },
  54523. {
  54524. name: "Small Macro",
  54525. height: math.unit(8, "meters")
  54526. },
  54527. {
  54528. name: "Macro",
  54529. height: math.unit(50, "meters")
  54530. },
  54531. {
  54532. name: "Megamacro",
  54533. height: math.unit(1, "km")
  54534. },
  54535. {
  54536. name: "Planetary",
  54537. height: math.unit(300000, "km")
  54538. },
  54539. {
  54540. name: "Universal",
  54541. height: math.unit(250, "lightyears")
  54542. },
  54543. {
  54544. name: "Fabric of Reality",
  54545. height: math.unit(1000, "multiverses")
  54546. },
  54547. ]
  54548. ))
  54549. characterMakers.push(() => makeCharacter(
  54550. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54551. {
  54552. frontDressed: {
  54553. height: math.unit(6 + 2/12, "feet"),
  54554. name: "Front (Dressed)",
  54555. image: {
  54556. source: "./media/characters/fiera/front-dressed.svg",
  54557. extra: 1883/1793,
  54558. bottom: 70/1953
  54559. }
  54560. },
  54561. backDressed: {
  54562. height: math.unit(6 + 2/12, "feet"),
  54563. name: "Back (Dressed)",
  54564. image: {
  54565. source: "./media/characters/fiera/back-dressed.svg",
  54566. extra: 1847/1780,
  54567. bottom: 70/1917
  54568. }
  54569. },
  54570. frontNude: {
  54571. height: math.unit(6 + 2/12, "feet"),
  54572. name: "Front (Nude)",
  54573. image: {
  54574. source: "./media/characters/fiera/front-nude.svg",
  54575. extra: 1875/1785,
  54576. bottom: 66/1941
  54577. }
  54578. },
  54579. backNude: {
  54580. height: math.unit(6 + 2/12, "feet"),
  54581. name: "Back (Nude)",
  54582. image: {
  54583. source: "./media/characters/fiera/back-nude.svg",
  54584. extra: 1855/1788,
  54585. bottom: 44/1899
  54586. }
  54587. },
  54588. maw: {
  54589. height: math.unit(1.3, "feet"),
  54590. name: "Maw",
  54591. image: {
  54592. source: "./media/characters/fiera/maw.svg"
  54593. }
  54594. },
  54595. paw: {
  54596. height: math.unit(1, "feet"),
  54597. name: "Paw",
  54598. image: {
  54599. source: "./media/characters/fiera/paw.svg"
  54600. }
  54601. },
  54602. shoe: {
  54603. height: math.unit(1.05, "feet"),
  54604. name: "Shoe",
  54605. image: {
  54606. source: "./media/characters/fiera/shoe.svg"
  54607. }
  54608. },
  54609. },
  54610. [
  54611. {
  54612. name: "Normal",
  54613. height: math.unit(6 + 2/12, "feet"),
  54614. default: true
  54615. },
  54616. {
  54617. name: "Size Difference",
  54618. height: math.unit(13, "feet")
  54619. },
  54620. {
  54621. name: "Macro",
  54622. height: math.unit(60, "feet")
  54623. },
  54624. {
  54625. name: "Mega Macro",
  54626. height: math.unit(200, "feet")
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54632. {
  54633. back: {
  54634. height: math.unit(6, "feet"),
  54635. name: "Back",
  54636. image: {
  54637. source: "./media/characters/flare/back.svg",
  54638. extra: 1883/1765,
  54639. bottom: 32/1915
  54640. }
  54641. },
  54642. },
  54643. [
  54644. {
  54645. name: "Normal",
  54646. height: math.unit(6 + 2/12, "feet"),
  54647. default: true
  54648. },
  54649. {
  54650. name: "Size Difference",
  54651. height: math.unit(13, "feet")
  54652. },
  54653. {
  54654. name: "Macro",
  54655. height: math.unit(60, "feet")
  54656. },
  54657. {
  54658. name: "Macro 2",
  54659. height: math.unit(100, "feet")
  54660. },
  54661. {
  54662. name: "Mega Macro",
  54663. height: math.unit(200, "feet")
  54664. },
  54665. ]
  54666. ))
  54667. characterMakers.push(() => makeCharacter(
  54668. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54669. {
  54670. front: {
  54671. height: math.unit(2.2, "m"),
  54672. weight: math.unit(300, "kg"),
  54673. name: "Front",
  54674. image: {
  54675. source: "./media/characters/hanna/front.svg",
  54676. extra: 1696/1502,
  54677. bottom: 206/1902
  54678. }
  54679. },
  54680. },
  54681. [
  54682. {
  54683. name: "Humanoid",
  54684. height: math.unit(2.2, "meters")
  54685. },
  54686. {
  54687. name: "Normal",
  54688. height: math.unit(4.8, "meters"),
  54689. default: true
  54690. },
  54691. ]
  54692. ))
  54693. characterMakers.push(() => makeCharacter(
  54694. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54695. {
  54696. front: {
  54697. height: math.unit(2.8, "meters"),
  54698. name: "Front",
  54699. image: {
  54700. source: "./media/characters/argo/front.svg",
  54701. extra: 731/518,
  54702. bottom: 84/815
  54703. }
  54704. },
  54705. },
  54706. [
  54707. {
  54708. name: "Normal",
  54709. height: math.unit(3, "meters"),
  54710. default: true
  54711. },
  54712. ]
  54713. ))
  54714. characterMakers.push(() => makeCharacter(
  54715. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54716. {
  54717. side: {
  54718. height: math.unit(3.8, "meters"),
  54719. name: "Side",
  54720. image: {
  54721. source: "./media/characters/sybil/side.svg",
  54722. extra: 382/361,
  54723. bottom: 25/407
  54724. }
  54725. },
  54726. },
  54727. [
  54728. {
  54729. name: "Normal",
  54730. height: math.unit(3.8, "meters"),
  54731. default: true
  54732. },
  54733. ]
  54734. ))
  54735. characterMakers.push(() => makeCharacter(
  54736. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54737. {
  54738. side: {
  54739. height: math.unit(6, "meters"),
  54740. name: "Side",
  54741. image: {
  54742. source: "./media/characters/plum/side.svg",
  54743. extra: 858/755,
  54744. bottom: 45/903
  54745. },
  54746. form: "taur",
  54747. default: true
  54748. },
  54749. back: {
  54750. height: math.unit(6.3, "meters"),
  54751. name: "Back",
  54752. image: {
  54753. source: "./media/characters/plum/back.svg",
  54754. extra: 887/813,
  54755. bottom: 32/919
  54756. },
  54757. form: "taur",
  54758. },
  54759. feral: {
  54760. height: math.unit(5.5, "meter"),
  54761. name: "Front",
  54762. image: {
  54763. source: "./media/characters/plum/feral.svg",
  54764. extra: 568/403,
  54765. bottom: 51/619
  54766. },
  54767. form: "feral",
  54768. default: true
  54769. },
  54770. head: {
  54771. height: math.unit(1.46, "meter"),
  54772. name: "Head",
  54773. image: {
  54774. source: "./media/characters/plum/head.svg"
  54775. },
  54776. form: "taur"
  54777. },
  54778. tailTop: {
  54779. height: math.unit(5.6, "meter"),
  54780. name: "Tail (Top)",
  54781. image: {
  54782. source: "./media/characters/plum/tail-top.svg"
  54783. },
  54784. form: "taur",
  54785. },
  54786. tailBottom: {
  54787. height: math.unit(5.6, "meter"),
  54788. name: "Tail (Bottom)",
  54789. image: {
  54790. source: "./media/characters/plum/tail-bottom.svg"
  54791. },
  54792. form: "taur",
  54793. },
  54794. feralHead: {
  54795. height: math.unit(2.56549521, "meter"),
  54796. name: "Head",
  54797. image: {
  54798. source: "./media/characters/plum/head.svg"
  54799. },
  54800. form: "feral"
  54801. },
  54802. feralTailTop: {
  54803. height: math.unit(5.44728435, "meter"),
  54804. name: "Tail (Top)",
  54805. image: {
  54806. source: "./media/characters/plum/tail-top.svg"
  54807. },
  54808. form: "feral",
  54809. },
  54810. feralTailBottom: {
  54811. height: math.unit(5.44728435, "meter"),
  54812. name: "Tail (Bottom)",
  54813. image: {
  54814. source: "./media/characters/plum/tail-bottom.svg"
  54815. },
  54816. form: "feral",
  54817. },
  54818. },
  54819. [
  54820. {
  54821. name: "Normal",
  54822. height: math.unit(6, "meters"),
  54823. default: true,
  54824. form: "taur"
  54825. },
  54826. {
  54827. name: "Normal",
  54828. height: math.unit(5.5, "meters"),
  54829. default: true,
  54830. form: "feral"
  54831. },
  54832. ],
  54833. {
  54834. "taur": {
  54835. name: "Taur",
  54836. default: true
  54837. },
  54838. "feral": {
  54839. name: "Feral",
  54840. },
  54841. }
  54842. ))
  54843. characterMakers.push(() => makeCharacter(
  54844. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54845. {
  54846. front: {
  54847. height: math.unit(6, "feet"),
  54848. weight: math.unit(115, "lb"),
  54849. name: "Front",
  54850. image: {
  54851. source: "./media/characters/celeste-kitsune/front.svg",
  54852. extra: 393/366,
  54853. bottom: 7/400
  54854. }
  54855. },
  54856. side: {
  54857. height: math.unit(6, "feet"),
  54858. weight: math.unit(115, "lb"),
  54859. name: "Side",
  54860. image: {
  54861. source: "./media/characters/celeste-kitsune/side.svg",
  54862. extra: 818/765,
  54863. bottom: 40/858
  54864. }
  54865. },
  54866. },
  54867. [
  54868. {
  54869. name: "Megamacro",
  54870. height: math.unit(1500, "miles"),
  54871. default: true
  54872. },
  54873. ]
  54874. ))
  54875. characterMakers.push(() => makeCharacter(
  54876. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54877. {
  54878. front: {
  54879. height: math.unit(8, "meters"),
  54880. name: "Front",
  54881. image: {
  54882. source: "./media/characters/io/front.svg",
  54883. extra: 865/722,
  54884. bottom: 58/923
  54885. }
  54886. },
  54887. back: {
  54888. height: math.unit(8, "meters"),
  54889. name: "Back",
  54890. image: {
  54891. source: "./media/characters/io/back.svg",
  54892. extra: 920/776,
  54893. bottom: 42/962
  54894. }
  54895. },
  54896. head: {
  54897. height: math.unit(5.09, "meters"),
  54898. name: "Head",
  54899. image: {
  54900. source: "./media/characters/io/head.svg"
  54901. }
  54902. },
  54903. hand: {
  54904. height: math.unit(1.6, "meters"),
  54905. name: "Hand",
  54906. image: {
  54907. source: "./media/characters/io/hand.svg"
  54908. }
  54909. },
  54910. foot: {
  54911. height: math.unit(2.4, "meters"),
  54912. name: "Foot",
  54913. image: {
  54914. source: "./media/characters/io/foot.svg"
  54915. }
  54916. },
  54917. },
  54918. [
  54919. {
  54920. name: "Normal",
  54921. height: math.unit(8, "meters"),
  54922. default: true
  54923. },
  54924. ]
  54925. ))
  54926. characterMakers.push(() => makeCharacter(
  54927. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54928. {
  54929. side: {
  54930. height: math.unit(6 + 3/12, "feet"),
  54931. weight: math.unit(225, "lb"),
  54932. name: "Side",
  54933. image: {
  54934. source: "./media/characters/silas/side.svg",
  54935. extra: 703/653,
  54936. bottom: 23/726
  54937. },
  54938. extraAttributes: {
  54939. "pawLength": {
  54940. name: "Paw Length",
  54941. power: 1,
  54942. type: "length",
  54943. base: math.unit(12, "inches")
  54944. },
  54945. "pawWidth": {
  54946. name: "Paw Width",
  54947. power: 1,
  54948. type: "length",
  54949. base: math.unit(4.5, "inches")
  54950. },
  54951. "pawArea": {
  54952. name: "Paw Area",
  54953. power: 2,
  54954. type: "area",
  54955. base: math.unit(12 * 4.5, "inches^2")
  54956. },
  54957. }
  54958. },
  54959. },
  54960. [
  54961. {
  54962. name: "Normal",
  54963. height: math.unit(6 + 3/12, "feet"),
  54964. default: true
  54965. },
  54966. ]
  54967. ))
  54968. characterMakers.push(() => makeCharacter(
  54969. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54970. {
  54971. back: {
  54972. height: math.unit(1.6, "meters"),
  54973. weight: math.unit(150, "lb"),
  54974. name: "Back",
  54975. image: {
  54976. source: "./media/characters/zari/back.svg",
  54977. extra: 424/411,
  54978. bottom: 32/456
  54979. },
  54980. extraAttributes: {
  54981. "bladderCapacity": {
  54982. name: "Bladder Size",
  54983. power: 3,
  54984. type: "volume",
  54985. base: math.unit(500, "mL")
  54986. },
  54987. "bladderFlow": {
  54988. name: "Flow Rate",
  54989. power: 3,
  54990. type: "volume",
  54991. base: math.unit(25, "mL")
  54992. },
  54993. }
  54994. },
  54995. },
  54996. [
  54997. {
  54998. name: "Normal",
  54999. height: math.unit(1.6, "meters"),
  55000. default: true
  55001. },
  55002. ]
  55003. ))
  55004. characterMakers.push(() => makeCharacter(
  55005. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55006. {
  55007. front: {
  55008. height: math.unit(25, "feet"),
  55009. weight: math.unit(5, "tons"),
  55010. name: "Front",
  55011. image: {
  55012. source: "./media/characters/charlie-human/front.svg",
  55013. extra: 1870/1740,
  55014. bottom: 102/1972
  55015. },
  55016. extraAttributes: {
  55017. "dickLength": {
  55018. name: "Dick Length",
  55019. power: 1,
  55020. type: "length",
  55021. base: math.unit(9, "feet")
  55022. },
  55023. }
  55024. },
  55025. back: {
  55026. height: math.unit(25, "feet"),
  55027. weight: math.unit(5, "tons"),
  55028. name: "Back",
  55029. image: {
  55030. source: "./media/characters/charlie-human/back.svg",
  55031. extra: 1858/1733,
  55032. bottom: 105/1963
  55033. },
  55034. extraAttributes: {
  55035. "dickLength": {
  55036. name: "Dick Length",
  55037. power: 1,
  55038. type: "length",
  55039. base: math.unit(9, "feet")
  55040. },
  55041. }
  55042. },
  55043. },
  55044. [
  55045. {
  55046. name: "\"Normal\"",
  55047. height: math.unit(6 + 4/12, "feet")
  55048. },
  55049. {
  55050. name: "Big",
  55051. height: math.unit(25, "feet"),
  55052. default: true
  55053. },
  55054. ]
  55055. ))
  55056. characterMakers.push(() => makeCharacter(
  55057. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55058. {
  55059. front: {
  55060. height: math.unit(6 + 4/12, "feet"),
  55061. weight: math.unit(320, "lb"),
  55062. name: "Front",
  55063. image: {
  55064. source: "./media/characters/ookitsu/front.svg",
  55065. extra: 1160/976,
  55066. bottom: 38/1198
  55067. }
  55068. },
  55069. frontNsfw: {
  55070. height: math.unit(6 + 4/12, "feet"),
  55071. weight: math.unit(320, "lb"),
  55072. name: "Front (NSFW)",
  55073. image: {
  55074. source: "./media/characters/ookitsu/front-nsfw.svg",
  55075. extra: 1160/976,
  55076. bottom: 38/1198
  55077. }
  55078. },
  55079. back: {
  55080. height: math.unit(6 + 4/12, "feet"),
  55081. weight: math.unit(320, "lb"),
  55082. name: "Back",
  55083. image: {
  55084. source: "./media/characters/ookitsu/back.svg",
  55085. extra: 1030/975,
  55086. bottom: 70/1100
  55087. }
  55088. },
  55089. head: {
  55090. height: math.unit(1.79, "feet"),
  55091. name: "Head",
  55092. image: {
  55093. source: "./media/characters/ookitsu/head.svg"
  55094. }
  55095. },
  55096. hand: {
  55097. height: math.unit(0.92, "feet"),
  55098. name: "Hand",
  55099. image: {
  55100. source: "./media/characters/ookitsu/hand.svg"
  55101. }
  55102. },
  55103. tails: {
  55104. height: math.unit(3.3, "feet"),
  55105. name: "Tails",
  55106. image: {
  55107. source: "./media/characters/ookitsu/tails.svg"
  55108. }
  55109. },
  55110. dick: {
  55111. height: math.unit(1.10833, "feet"),
  55112. name: "Dick",
  55113. image: {
  55114. source: "./media/characters/ookitsu/dick.svg"
  55115. }
  55116. },
  55117. },
  55118. [
  55119. {
  55120. name: "Normal",
  55121. height: math.unit(6 + 4/12, "feet"),
  55122. default: true
  55123. },
  55124. {
  55125. name: "Macro",
  55126. height: math.unit(30, "feet")
  55127. },
  55128. ]
  55129. ))
  55130. characterMakers.push(() => makeCharacter(
  55131. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55132. {
  55133. anthroFront: {
  55134. height: math.unit(6, "feet"),
  55135. weight: math.unit(250, "lb"),
  55136. name: "Front",
  55137. image: {
  55138. source: "./media/characters/jhusky/anthro-front.svg",
  55139. extra: 474/439,
  55140. bottom: 7/481
  55141. },
  55142. form: "anthro",
  55143. default: true
  55144. },
  55145. taurSideSfw: {
  55146. height: math.unit(6 + 4/12, "feet"),
  55147. weight: math.unit(500, "lb"),
  55148. name: "Side (SFW)",
  55149. image: {
  55150. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55151. extra: 1741/1629,
  55152. bottom: 196/1937
  55153. },
  55154. form: "taur",
  55155. default: true
  55156. },
  55157. taurSideNsfw: {
  55158. height: math.unit(6 + 4/12, "feet"),
  55159. weight: math.unit(500, "lb"),
  55160. name: "Taur (NSFW)",
  55161. image: {
  55162. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55163. extra: 1741/1629,
  55164. bottom: 196/1937
  55165. },
  55166. form: "taur",
  55167. },
  55168. },
  55169. [
  55170. {
  55171. name: "Huge",
  55172. height: math.unit(500, "feet"),
  55173. form: "anthro"
  55174. },
  55175. {
  55176. name: "Macro",
  55177. height: math.unit(1000, "feet"),
  55178. default: true,
  55179. form: "anthro"
  55180. },
  55181. {
  55182. name: "Megamacro",
  55183. height: math.unit(10000, "feet"),
  55184. form: "anthro"
  55185. },
  55186. {
  55187. name: "Huge",
  55188. height: math.unit(528, "feet"),
  55189. form: "taur"
  55190. },
  55191. {
  55192. name: "Macro",
  55193. height: math.unit(1056, "feet"),
  55194. default: true,
  55195. form: "taur"
  55196. },
  55197. {
  55198. name: "Megamacro",
  55199. height: math.unit(10556, "feet"),
  55200. form: "taur"
  55201. },
  55202. ],
  55203. {
  55204. "anthro": {
  55205. name: "Anthro",
  55206. default: true
  55207. },
  55208. "taur": {
  55209. name: "Taur",
  55210. },
  55211. }
  55212. ))
  55213. characterMakers.push(() => makeCharacter(
  55214. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55215. {
  55216. front: {
  55217. height: math.unit(8, "feet"),
  55218. weight: math.unit(500, "lb"),
  55219. name: "Front",
  55220. image: {
  55221. source: "./media/characters/armail/front.svg",
  55222. extra: 1753/1669,
  55223. bottom: 155/1908
  55224. }
  55225. },
  55226. back: {
  55227. height: math.unit(8, "feet"),
  55228. weight: math.unit(500, "lb"),
  55229. name: "Back",
  55230. image: {
  55231. source: "./media/characters/armail/back.svg",
  55232. extra: 1872/1803,
  55233. bottom: 63/1935
  55234. }
  55235. },
  55236. },
  55237. [
  55238. {
  55239. name: "Micro",
  55240. height: math.unit(0.25, "feet")
  55241. },
  55242. {
  55243. name: "Normal",
  55244. height: math.unit(8, "feet"),
  55245. default: true
  55246. },
  55247. {
  55248. name: "Mini-macro",
  55249. height: math.unit(30, "feet")
  55250. },
  55251. {
  55252. name: "Macro",
  55253. height: math.unit(400, "feet")
  55254. },
  55255. {
  55256. name: "Mega-macro",
  55257. height: math.unit(6000, "feet")
  55258. },
  55259. ]
  55260. ))
  55261. characterMakers.push(() => makeCharacter(
  55262. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55263. {
  55264. front: {
  55265. height: math.unit(6 + 7/12, "feet"),
  55266. weight: math.unit(210, "lb"),
  55267. name: "Front",
  55268. image: {
  55269. source: "./media/characters/wilfred-t-buxton/front.svg",
  55270. extra: 1068/882,
  55271. bottom: 28/1096
  55272. }
  55273. },
  55274. },
  55275. [
  55276. {
  55277. name: "Normal",
  55278. height: math.unit(6 + 7/12, "feet"),
  55279. default: true
  55280. },
  55281. ]
  55282. ))
  55283. characterMakers.push(() => makeCharacter(
  55284. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55285. {
  55286. front: {
  55287. height: math.unit(5 + 2/12, "feet"),
  55288. weight: math.unit(120, "lb"),
  55289. name: "Front",
  55290. image: {
  55291. source: "./media/characters/leighton-marrow/front.svg",
  55292. extra: 441/409,
  55293. bottom: 37/478
  55294. }
  55295. },
  55296. },
  55297. [
  55298. {
  55299. name: "Normal",
  55300. height: math.unit(5 + 2/12, "feet"),
  55301. default: true
  55302. },
  55303. ]
  55304. ))
  55305. characterMakers.push(() => makeCharacter(
  55306. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55307. {
  55308. front: {
  55309. height: math.unit(4, "meters"),
  55310. weight: math.unit(1200, "kg"),
  55311. name: "Front",
  55312. image: {
  55313. source: "./media/characters/licos/front.svg",
  55314. extra: 1727/1604,
  55315. bottom: 101/1828
  55316. },
  55317. form: "anthro",
  55318. default: true
  55319. },
  55320. taur_side: {
  55321. height: math.unit(20, "meters"),
  55322. weight: math.unit(1100000, "kg"),
  55323. name: "Side",
  55324. image: {
  55325. source: "./media/characters/licos/taur.svg",
  55326. extra: 1158/1091,
  55327. bottom: 80/1238
  55328. },
  55329. form: "taur",
  55330. default: true
  55331. },
  55332. },
  55333. [
  55334. {
  55335. name: "Normal",
  55336. height: math.unit(4, "meters"),
  55337. default: true,
  55338. form: "anthro"
  55339. },
  55340. {
  55341. name: "Normal",
  55342. height: math.unit(20, "meters"),
  55343. default: true,
  55344. form: "taur"
  55345. },
  55346. ],
  55347. {
  55348. "anthro": {
  55349. name: "Anthro",
  55350. default: true
  55351. },
  55352. "taur": {
  55353. name: "Taur",
  55354. },
  55355. }
  55356. ))
  55357. characterMakers.push(() => makeCharacter(
  55358. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55359. {
  55360. front: {
  55361. height: math.unit(10 + 3/12, "feet"),
  55362. name: "Front",
  55363. image: {
  55364. source: "./media/characters/theo-monkey/front.svg",
  55365. extra: 1735/1658,
  55366. bottom: 73/1808
  55367. }
  55368. },
  55369. back: {
  55370. height: math.unit(10 + 3/12, "feet"),
  55371. name: "Back",
  55372. image: {
  55373. source: "./media/characters/theo-monkey/back.svg",
  55374. extra: 1742/1664,
  55375. bottom: 33/1775
  55376. }
  55377. },
  55378. head: {
  55379. height: math.unit(2.29, "feet"),
  55380. name: "Head",
  55381. image: {
  55382. source: "./media/characters/theo-monkey/head.svg"
  55383. }
  55384. },
  55385. handPalm: {
  55386. height: math.unit(1.73, "feet"),
  55387. name: "Hand (Palm)",
  55388. image: {
  55389. source: "./media/characters/theo-monkey/hand-palm.svg"
  55390. }
  55391. },
  55392. handBack: {
  55393. height: math.unit(1.63, "feet"),
  55394. name: "Hand (Back)",
  55395. image: {
  55396. source: "./media/characters/theo-monkey/hand-back.svg"
  55397. }
  55398. },
  55399. footSole: {
  55400. height: math.unit(2.15, "feet"),
  55401. name: "Foot (Sole)",
  55402. image: {
  55403. source: "./media/characters/theo-monkey/foot-sole.svg"
  55404. }
  55405. },
  55406. footSide: {
  55407. height: math.unit(1.6, "feet"),
  55408. name: "Foot (Side)",
  55409. image: {
  55410. source: "./media/characters/theo-monkey/foot-side.svg"
  55411. }
  55412. },
  55413. },
  55414. [
  55415. {
  55416. name: "Normal",
  55417. height: math.unit(10 + 3/12, "feet"),
  55418. default: true
  55419. },
  55420. ]
  55421. ))
  55422. characterMakers.push(() => makeCharacter(
  55423. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55424. {
  55425. front: {
  55426. height: math.unit(11, "feet"),
  55427. weight: math.unit(3000, "lb"),
  55428. preyCapacity: math.unit(10, "people"),
  55429. name: "Front",
  55430. image: {
  55431. source: "./media/characters/brook/front.svg",
  55432. extra: 909/835,
  55433. bottom: 108/1017
  55434. }
  55435. },
  55436. back: {
  55437. height: math.unit(11, "feet"),
  55438. weight: math.unit(3000, "lb"),
  55439. preyCapacity: math.unit(10, "people"),
  55440. name: "Back",
  55441. image: {
  55442. source: "./media/characters/brook/back.svg",
  55443. extra: 976/916,
  55444. bottom: 34/1010
  55445. }
  55446. },
  55447. backAlt: {
  55448. height: math.unit(11, "feet"),
  55449. weight: math.unit(3000, "lb"),
  55450. preyCapacity: math.unit(10, "people"),
  55451. name: "Back (Alt)",
  55452. image: {
  55453. source: "./media/characters/brook/back-alt.svg",
  55454. extra: 1283/1213,
  55455. bottom: 35/1318
  55456. }
  55457. },
  55458. bust: {
  55459. height: math.unit(9.0859030837, "feet"),
  55460. weight: math.unit(3000, "lb"),
  55461. preyCapacity: math.unit(10, "people"),
  55462. name: "Bust",
  55463. image: {
  55464. source: "./media/characters/brook/bust.svg",
  55465. extra: 2043/1923,
  55466. bottom: 0/2043
  55467. }
  55468. },
  55469. },
  55470. [
  55471. {
  55472. name: "Small",
  55473. height: math.unit(11, "feet"),
  55474. default: true
  55475. },
  55476. {
  55477. name: "Towering",
  55478. height: math.unit(5, "km")
  55479. },
  55480. {
  55481. name: "Enormous",
  55482. height: math.unit(25, "earths")
  55483. },
  55484. ]
  55485. ))
  55486. characterMakers.push(() => makeCharacter(
  55487. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55488. {
  55489. front: {
  55490. height: math.unit(4, "feet"),
  55491. weight: math.unit(150, "lb"),
  55492. name: "Front",
  55493. image: {
  55494. source: "./media/characters/squishi/front.svg",
  55495. extra: 1428/1271,
  55496. bottom: 30/1458
  55497. },
  55498. extraAttributes: {
  55499. "pawSize": {
  55500. name: "Paw Size",
  55501. power: 1,
  55502. type: "length",
  55503. base: math.unit(14, "ShoeSizeMensUS"),
  55504. defaultUnit: "ShoeSizeMensUS"
  55505. },
  55506. }
  55507. },
  55508. side: {
  55509. height: math.unit(4, "feet"),
  55510. weight: math.unit(150, "lb"),
  55511. name: "Side",
  55512. image: {
  55513. source: "./media/characters/squishi/side.svg",
  55514. extra: 1428/1271,
  55515. bottom: 30/1458
  55516. },
  55517. extraAttributes: {
  55518. "pawSize": {
  55519. name: "Paw Size",
  55520. power: 1,
  55521. type: "length",
  55522. base: math.unit(14, "ShoeSizeMensUS"),
  55523. defaultUnit: "ShoeSizeMensUS"
  55524. },
  55525. }
  55526. },
  55527. back: {
  55528. height: math.unit(4, "feet"),
  55529. weight: math.unit(150, "lb"),
  55530. name: "Back",
  55531. image: {
  55532. source: "./media/characters/squishi/back.svg",
  55533. extra: 1428/1271,
  55534. bottom: 30/1458
  55535. },
  55536. extraAttributes: {
  55537. "pawSize": {
  55538. name: "Paw Size",
  55539. power: 1,
  55540. type: "length",
  55541. base: math.unit(14, "ShoeSizeMensUS"),
  55542. defaultUnit: "ShoeSizeMensUS"
  55543. },
  55544. }
  55545. },
  55546. },
  55547. [
  55548. {
  55549. name: "Normal",
  55550. height: math.unit(4, "feet"),
  55551. default: true
  55552. },
  55553. ]
  55554. ))
  55555. characterMakers.push(() => makeCharacter(
  55556. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55557. {
  55558. front: {
  55559. height: math.unit(7 + 8/12, "feet"),
  55560. weight: math.unit(333, "lb"),
  55561. name: "Front",
  55562. image: {
  55563. source: "./media/characters/vincent-vasroc/front.svg",
  55564. extra: 1962/1860,
  55565. bottom: 41/2003
  55566. }
  55567. },
  55568. back: {
  55569. height: math.unit(7 + 8/12, "feet"),
  55570. weight: math.unit(333, "lb"),
  55571. name: "Back",
  55572. image: {
  55573. source: "./media/characters/vincent-vasroc/back.svg",
  55574. extra: 1952/1815,
  55575. bottom: 33/1985
  55576. }
  55577. },
  55578. paw: {
  55579. height: math.unit(1.24, "feet"),
  55580. name: "Paw",
  55581. image: {
  55582. source: "./media/characters/vincent-vasroc/paw.svg"
  55583. }
  55584. },
  55585. ear: {
  55586. height: math.unit(0.75, "feet"),
  55587. name: "Ear",
  55588. image: {
  55589. source: "./media/characters/vincent-vasroc/ear.svg"
  55590. }
  55591. },
  55592. },
  55593. [
  55594. {
  55595. name: "Nano",
  55596. height: math.unit(92, "micrometers")
  55597. },
  55598. {
  55599. name: "Normal",
  55600. height: math.unit(7 + 8/12, "feet"),
  55601. default: true
  55602. },
  55603. ]
  55604. ))
  55605. characterMakers.push(() => makeCharacter(
  55606. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55607. {
  55608. frontNsfw: {
  55609. height: math.unit(40, "feet"),
  55610. weight: math.unit(58, "tons"),
  55611. name: "Front (NSFW)",
  55612. image: {
  55613. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55614. extra: 1265/965,
  55615. bottom: 155/1420
  55616. }
  55617. },
  55618. frontSfw: {
  55619. height: math.unit(40, "feet"),
  55620. weight: math.unit(58, "tons"),
  55621. name: "Front (SFW)",
  55622. image: {
  55623. source: "./media/characters/ru-kahn/front-sfw.svg",
  55624. extra: 1265/965,
  55625. bottom: 80/1345
  55626. }
  55627. },
  55628. },
  55629. [
  55630. {
  55631. name: "Small",
  55632. height: math.unit(4, "feet")
  55633. },
  55634. {
  55635. name: "Normal",
  55636. height: math.unit(40, "feet"),
  55637. default: true
  55638. },
  55639. {
  55640. name: "Macro",
  55641. height: math.unit(400, "feet")
  55642. },
  55643. ]
  55644. ))
  55645. characterMakers.push(() => makeCharacter(
  55646. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55647. {
  55648. frontNude: {
  55649. height: math.unit(6 + 5/12, "feet"),
  55650. name: "Front (Nude)",
  55651. image: {
  55652. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55653. extra: 1369/1366,
  55654. bottom: 68/1437
  55655. }
  55656. },
  55657. frontDressed: {
  55658. height: math.unit(6 + 5/12, "feet"),
  55659. name: "Front (Dressed)",
  55660. image: {
  55661. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55662. extra: 1369/1366,
  55663. bottom: 68/1437
  55664. }
  55665. },
  55666. },
  55667. [
  55668. {
  55669. name: "Normal",
  55670. height: math.unit(6 + 5/12, "feet"),
  55671. default: true
  55672. },
  55673. {
  55674. name: "Maximum",
  55675. height: math.unit(1930, "feet")
  55676. },
  55677. ]
  55678. ))
  55679. characterMakers.push(() => makeCharacter(
  55680. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55681. {
  55682. front: {
  55683. height: math.unit(5 + 6/12, "feet"),
  55684. name: "Front",
  55685. image: {
  55686. source: "./media/characters/kaja/front.svg",
  55687. extra: 1874/1514,
  55688. bottom: 117/1991
  55689. }
  55690. },
  55691. },
  55692. [
  55693. {
  55694. name: "Normal",
  55695. height: math.unit(5 + 6/12, "feet"),
  55696. default: true
  55697. },
  55698. ]
  55699. ))
  55700. characterMakers.push(() => makeCharacter(
  55701. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55702. {
  55703. front: {
  55704. height: math.unit(5 + 9/12, "feet"),
  55705. weight: math.unit(200, "lb"),
  55706. name: "Front",
  55707. image: {
  55708. source: "./media/characters/mark-smith/front.svg",
  55709. extra: 1004/943,
  55710. bottom: 58/1062
  55711. }
  55712. },
  55713. back: {
  55714. height: math.unit(5 + 9/12, "feet"),
  55715. weight: math.unit(200, "lb"),
  55716. name: "Back",
  55717. image: {
  55718. source: "./media/characters/mark-smith/back.svg",
  55719. extra: 1023/953,
  55720. bottom: 24/1047
  55721. }
  55722. },
  55723. head: {
  55724. height: math.unit(1.82, "feet"),
  55725. name: "Head",
  55726. image: {
  55727. source: "./media/characters/mark-smith/head.svg"
  55728. }
  55729. },
  55730. hand: {
  55731. height: math.unit(1.4, "feet"),
  55732. name: "Hand",
  55733. image: {
  55734. source: "./media/characters/mark-smith/hand.svg"
  55735. }
  55736. },
  55737. paw: {
  55738. height: math.unit(1.69, "feet"),
  55739. name: "Paw",
  55740. image: {
  55741. source: "./media/characters/mark-smith/paw.svg"
  55742. }
  55743. },
  55744. },
  55745. [
  55746. {
  55747. name: "Micro",
  55748. height: math.unit(0.25, "inches")
  55749. },
  55750. {
  55751. name: "Normal",
  55752. height: math.unit(5 + 9/12, "feet"),
  55753. default: true
  55754. },
  55755. {
  55756. name: "Macro",
  55757. height: math.unit(500, "feet")
  55758. },
  55759. ]
  55760. ))
  55761. characterMakers.push(() => makeCharacter(
  55762. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55763. {
  55764. frontNude: {
  55765. height: math.unit(6, "feet"),
  55766. name: "Front (Nude)",
  55767. image: {
  55768. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55769. extra: 1384/1321,
  55770. bottom: 57/1441
  55771. }
  55772. },
  55773. frontDressed: {
  55774. height: math.unit(6, "feet"),
  55775. name: "Front (Dressed)",
  55776. image: {
  55777. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55778. extra: 1384/1321,
  55779. bottom: 57/1441
  55780. }
  55781. },
  55782. },
  55783. [
  55784. {
  55785. name: "Normal",
  55786. height: math.unit(6, "feet"),
  55787. default: true
  55788. },
  55789. {
  55790. name: "Maximum",
  55791. height: math.unit(1776, "feet")
  55792. },
  55793. ]
  55794. ))
  55795. characterMakers.push(() => makeCharacter(
  55796. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55797. {
  55798. front: {
  55799. height: math.unit(2 + 4/12, "feet"),
  55800. weight: math.unit(350, "lb"),
  55801. name: "Front",
  55802. image: {
  55803. source: "./media/characters/devos/front.svg",
  55804. extra: 958/852,
  55805. bottom: 143/1101
  55806. }
  55807. },
  55808. },
  55809. [
  55810. {
  55811. name: "Base",
  55812. height: math.unit(2 + 4/12, "feet"),
  55813. default: true
  55814. },
  55815. ]
  55816. ))
  55817. characterMakers.push(() => makeCharacter(
  55818. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55819. {
  55820. front: {
  55821. height: math.unit(9 + 2/12, "feet"),
  55822. name: "Front",
  55823. image: {
  55824. source: "./media/characters/hiveheart/front.svg",
  55825. extra: 394/364,
  55826. bottom: 65/459
  55827. }
  55828. },
  55829. back: {
  55830. height: math.unit(9 + 2/12, "feet"),
  55831. name: "Back",
  55832. image: {
  55833. source: "./media/characters/hiveheart/back.svg",
  55834. extra: 374/357,
  55835. bottom: 63/437
  55836. }
  55837. },
  55838. },
  55839. [
  55840. {
  55841. name: "Base",
  55842. height: math.unit(9 + 2/12, "feet"),
  55843. default: true
  55844. },
  55845. ]
  55846. ))
  55847. characterMakers.push(() => makeCharacter(
  55848. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55849. {
  55850. front: {
  55851. height: math.unit(2.5, "inches"),
  55852. weight: math.unit(0.6, "oz"),
  55853. name: "Front",
  55854. image: {
  55855. source: "./media/characters/bryn/front.svg",
  55856. extra: 1480/1205,
  55857. bottom: 27/1507
  55858. }
  55859. },
  55860. back: {
  55861. height: math.unit(2.5, "inches"),
  55862. weight: math.unit(0.6, "oz"),
  55863. name: "Back",
  55864. image: {
  55865. source: "./media/characters/bryn/back.svg",
  55866. extra: 1475/1201,
  55867. bottom: 39/1514
  55868. }
  55869. },
  55870. foot: {
  55871. height: math.unit(0.4, "inches"),
  55872. name: "Foot",
  55873. image: {
  55874. source: "./media/characters/bryn/foot.svg"
  55875. }
  55876. },
  55877. },
  55878. [
  55879. {
  55880. name: "Normal",
  55881. height: math.unit(2.5, "inches"),
  55882. default: true
  55883. },
  55884. ]
  55885. ))
  55886. characterMakers.push(() => makeCharacter(
  55887. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55888. {
  55889. side: {
  55890. height: math.unit(7, "feet"),
  55891. weight: math.unit(657, "kg"),
  55892. name: "Side",
  55893. image: {
  55894. source: "./media/characters/delta/side.svg",
  55895. extra: 781/212,
  55896. bottom: 7/788
  55897. },
  55898. extraAttributes: {
  55899. "wingspan": {
  55900. name: "Wingspan",
  55901. power: 1,
  55902. type: "length",
  55903. base: math.unit(48, "feet")
  55904. },
  55905. "length": {
  55906. name: "Length",
  55907. power: 1,
  55908. type: "length",
  55909. base: math.unit(21, "feet")
  55910. },
  55911. "pawSize": {
  55912. name: "Paw Size",
  55913. power: 2,
  55914. type: "area",
  55915. base: math.unit(1.5*1.4, "feet^2")
  55916. },
  55917. }
  55918. },
  55919. },
  55920. [
  55921. {
  55922. name: "Normal",
  55923. height: math.unit(6, "feet"),
  55924. default: true
  55925. },
  55926. ]
  55927. ))
  55928. characterMakers.push(() => makeCharacter(
  55929. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55930. {
  55931. front: {
  55932. height: math.unit(6, "feet"),
  55933. name: "Front",
  55934. image: {
  55935. source: "./media/characters/pyrow/front.svg",
  55936. extra: 513/486,
  55937. bottom: 14/527
  55938. }
  55939. },
  55940. frontWing: {
  55941. height: math.unit(6, "feet"),
  55942. name: "Front (Wing)",
  55943. image: {
  55944. source: "./media/characters/pyrow/front-wing.svg",
  55945. extra: 539/383,
  55946. bottom: 20/559
  55947. }
  55948. },
  55949. back: {
  55950. height: math.unit(6, "feet"),
  55951. name: "Back",
  55952. image: {
  55953. source: "./media/characters/pyrow/back.svg",
  55954. extra: 500/473,
  55955. bottom: 9/509
  55956. }
  55957. },
  55958. },
  55959. [
  55960. {
  55961. name: "Normal",
  55962. height: math.unit(6, "feet"),
  55963. default: true
  55964. },
  55965. ]
  55966. ))
  55967. characterMakers.push(() => makeCharacter(
  55968. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55969. {
  55970. front: {
  55971. height: math.unit(5, "meters"),
  55972. weight: math.unit(3, "tonnes"),
  55973. name: "Front",
  55974. image: {
  55975. source: "./media/characters/velikan/front.svg",
  55976. extra: 867/744,
  55977. bottom: 71/938
  55978. },
  55979. extraAttributes: {
  55980. "shoeSize": {
  55981. name: "Shoe Size",
  55982. power: 1,
  55983. type: "length",
  55984. base: math.unit(135, "ShoeSizeUK"),
  55985. defaultUnit: "ShoeSizeUK"
  55986. },
  55987. }
  55988. },
  55989. },
  55990. [
  55991. {
  55992. name: "Normal",
  55993. height: math.unit(5, "meters"),
  55994. default: true
  55995. },
  55996. {
  55997. name: "Macro",
  55998. height: math.unit(1, "km")
  55999. },
  56000. {
  56001. name: "Mega Macro",
  56002. height: math.unit(100, "km")
  56003. },
  56004. {
  56005. name: "Giga Macro",
  56006. height: math.unit(2, "megameters")
  56007. },
  56008. {
  56009. name: "Planetary",
  56010. height: math.unit(22, "megameters")
  56011. },
  56012. {
  56013. name: "Solar",
  56014. height: math.unit(8, "gigameters")
  56015. },
  56016. {
  56017. name: "Cosmic",
  56018. height: math.unit(10, "zettameters")
  56019. },
  56020. {
  56021. name: "Omni",
  56022. height: math.unit(9e260, "multiverses")
  56023. },
  56024. ]
  56025. ))
  56026. characterMakers.push(() => makeCharacter(
  56027. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56028. {
  56029. front: {
  56030. height: math.unit(4 + 3/12, "feet"),
  56031. weight: math.unit(90, "lb"),
  56032. name: "Front",
  56033. image: {
  56034. source: "./media/characters/sabiki/front.svg",
  56035. extra: 1662/1423,
  56036. bottom: 65/1727
  56037. }
  56038. },
  56039. },
  56040. [
  56041. {
  56042. name: "Normal",
  56043. height: math.unit(4 + 3/12, "feet"),
  56044. default: true
  56045. },
  56046. ]
  56047. ))
  56048. characterMakers.push(() => makeCharacter(
  56049. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56050. {
  56051. frontSfw: {
  56052. height: math.unit(2, "mm"),
  56053. name: "Front (SFW)",
  56054. image: {
  56055. source: "./media/characters/carmel/front-sfw.svg",
  56056. extra: 1131/1006,
  56057. bottom: 66/1197
  56058. }
  56059. },
  56060. frontNsfw: {
  56061. height: math.unit(2, "mm"),
  56062. name: "Front (NSFW)",
  56063. image: {
  56064. source: "./media/characters/carmel/front-nsfw.svg",
  56065. extra: 1131/1006,
  56066. bottom: 66/1197
  56067. }
  56068. },
  56069. foot: {
  56070. height: math.unit(0.3, "mm"),
  56071. name: "Foot",
  56072. image: {
  56073. source: "./media/characters/carmel/foot.svg"
  56074. }
  56075. },
  56076. tongue: {
  56077. height: math.unit(0.71, "mm"),
  56078. name: "Tongue",
  56079. image: {
  56080. source: "./media/characters/carmel/tongue.svg"
  56081. }
  56082. },
  56083. dick: {
  56084. height: math.unit(0.085, "mm"),
  56085. name: "Dick",
  56086. image: {
  56087. source: "./media/characters/carmel/dick.svg"
  56088. }
  56089. },
  56090. },
  56091. [
  56092. {
  56093. name: "Micro",
  56094. height: math.unit(2, "mm"),
  56095. default: true
  56096. },
  56097. {
  56098. name: "Normal",
  56099. height: math.unit(4 + 8/12, "feet")
  56100. },
  56101. {
  56102. name: "Mega Macro",
  56103. height: math.unit(250, "feet")
  56104. },
  56105. {
  56106. name: "BIGGER",
  56107. height: math.unit(1000, "feet")
  56108. },
  56109. {
  56110. name: "BIGGEST",
  56111. height: math.unit(2, "miles")
  56112. },
  56113. ]
  56114. ))
  56115. characterMakers.push(() => makeCharacter(
  56116. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56117. {
  56118. front: {
  56119. height: math.unit(6.5, "feet"),
  56120. weight: math.unit(198, "lb"),
  56121. name: "Front",
  56122. image: {
  56123. source: "./media/characters/tamani/anthro.svg",
  56124. extra: 930/890,
  56125. bottom: 34/964
  56126. },
  56127. form: "anthro",
  56128. default: true
  56129. },
  56130. side: {
  56131. height: math.unit(6, "feet"),
  56132. weight: math.unit(198*2, "lb"),
  56133. name: "Side",
  56134. image: {
  56135. source: "./media/characters/tamani/feral.svg",
  56136. extra: 559/519,
  56137. bottom: 43/602
  56138. },
  56139. form: "feral"
  56140. },
  56141. },
  56142. [
  56143. {
  56144. name: "Normal",
  56145. height: math.unit(6.5, "feet"),
  56146. default: true,
  56147. form: "anthro"
  56148. },
  56149. {
  56150. name: "Normal",
  56151. height: math.unit(6, "feet"),
  56152. default: true,
  56153. form: "feral"
  56154. },
  56155. ],
  56156. {
  56157. "anthro": {
  56158. name: "Anthro",
  56159. default: true
  56160. },
  56161. "feral": {
  56162. name: "Feral",
  56163. },
  56164. }
  56165. ))
  56166. characterMakers.push(() => makeCharacter(
  56167. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56168. {
  56169. front: {
  56170. height: math.unit(4 + 1/12, "feet"),
  56171. weight: math.unit(114, "lb"),
  56172. name: "Front",
  56173. image: {
  56174. source: "./media/characters/dex/front.svg",
  56175. extra: 787/680,
  56176. bottom: 18/805
  56177. }
  56178. },
  56179. side: {
  56180. height: math.unit(4 + 1/12, "feet"),
  56181. weight: math.unit(114, "lb"),
  56182. name: "Side",
  56183. image: {
  56184. source: "./media/characters/dex/side.svg",
  56185. extra: 785/680,
  56186. bottom: 12/797
  56187. }
  56188. },
  56189. back: {
  56190. height: math.unit(4 + 1/12, "feet"),
  56191. weight: math.unit(114, "lb"),
  56192. name: "Back",
  56193. image: {
  56194. source: "./media/characters/dex/back.svg",
  56195. extra: 785/681,
  56196. bottom: 17/802
  56197. }
  56198. },
  56199. loungewear: {
  56200. height: math.unit(4 + 1/12, "feet"),
  56201. weight: math.unit(114, "lb"),
  56202. name: "Loungewear",
  56203. image: {
  56204. source: "./media/characters/dex/loungewear.svg",
  56205. extra: 787/680,
  56206. bottom: 18/805
  56207. }
  56208. },
  56209. workout: {
  56210. height: math.unit(4 + 1/12, "feet"),
  56211. weight: math.unit(114, "lb"),
  56212. name: "Workout",
  56213. image: {
  56214. source: "./media/characters/dex/workout.svg",
  56215. extra: 787/680,
  56216. bottom: 18/805
  56217. }
  56218. },
  56219. schoolUniform: {
  56220. height: math.unit(4 + 1/12, "feet"),
  56221. weight: math.unit(114, "lb"),
  56222. name: "School-uniform",
  56223. image: {
  56224. source: "./media/characters/dex/school-uniform.svg",
  56225. extra: 787/680,
  56226. bottom: 18/805
  56227. }
  56228. },
  56229. maw: {
  56230. height: math.unit(0.55, "feet"),
  56231. name: "Maw",
  56232. image: {
  56233. source: "./media/characters/dex/maw.svg"
  56234. }
  56235. },
  56236. paw: {
  56237. height: math.unit(0.87, "feet"),
  56238. name: "Paw",
  56239. image: {
  56240. source: "./media/characters/dex/paw.svg"
  56241. }
  56242. },
  56243. bust: {
  56244. height: math.unit(1.67, "feet"),
  56245. name: "Bust",
  56246. image: {
  56247. source: "./media/characters/dex/bust.svg"
  56248. }
  56249. },
  56250. },
  56251. [
  56252. {
  56253. name: "Normal",
  56254. height: math.unit(4 + 1/12, "feet"),
  56255. default: true
  56256. },
  56257. ]
  56258. ))
  56259. characterMakers.push(() => makeCharacter(
  56260. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56261. {
  56262. front: {
  56263. height: math.unit(4 + 3/12, "feet"),
  56264. weight: math.unit(60, "lb"),
  56265. name: "Front",
  56266. image: {
  56267. source: "./media/characters/silke/front.svg",
  56268. extra: 1334/1122,
  56269. bottom: 21/1355
  56270. }
  56271. },
  56272. back: {
  56273. height: math.unit(4 + 3/12, "feet"),
  56274. weight: math.unit(60, "lb"),
  56275. name: "Back",
  56276. image: {
  56277. source: "./media/characters/silke/back.svg",
  56278. extra: 1328/1092,
  56279. bottom: 16/1344
  56280. }
  56281. },
  56282. dressed: {
  56283. height: math.unit(4 + 3/12, "feet"),
  56284. weight: math.unit(60, "lb"),
  56285. name: "Dressed",
  56286. image: {
  56287. source: "./media/characters/silke/dressed.svg",
  56288. extra: 1334/1122,
  56289. bottom: 43/1377
  56290. }
  56291. },
  56292. },
  56293. [
  56294. {
  56295. name: "Normal",
  56296. height: math.unit(4 + 3/12, "feet"),
  56297. default: true
  56298. },
  56299. ]
  56300. ))
  56301. characterMakers.push(() => makeCharacter(
  56302. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56303. {
  56304. front: {
  56305. height: math.unit(1.58, "meters"),
  56306. weight: math.unit(47, "kg"),
  56307. name: "Front",
  56308. image: {
  56309. source: "./media/characters/wireshark/front.svg",
  56310. extra: 883/838,
  56311. bottom: 66/949
  56312. }
  56313. },
  56314. },
  56315. [
  56316. {
  56317. name: "Normal",
  56318. height: math.unit(1.58, "meters"),
  56319. default: true
  56320. },
  56321. ]
  56322. ))
  56323. characterMakers.push(() => makeCharacter(
  56324. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56325. {
  56326. front: {
  56327. height: math.unit(6, "meters"),
  56328. weight: math.unit(15000, "kg"),
  56329. name: "Front",
  56330. image: {
  56331. source: "./media/characters/gallagher/front.svg",
  56332. extra: 532/493,
  56333. bottom: 0/532
  56334. }
  56335. },
  56336. },
  56337. [
  56338. {
  56339. name: "Normal",
  56340. height: math.unit(6, "meters"),
  56341. default: true
  56342. },
  56343. ]
  56344. ))
  56345. characterMakers.push(() => makeCharacter(
  56346. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56347. {
  56348. front: {
  56349. height: math.unit(2.4, "meters"),
  56350. weight: math.unit(270, "kg"),
  56351. name: "Front",
  56352. image: {
  56353. source: "./media/characters/alice/front.svg",
  56354. extra: 950/900,
  56355. bottom: 36/986
  56356. }
  56357. },
  56358. side: {
  56359. height: math.unit(2.4, "meters"),
  56360. weight: math.unit(270, "kg"),
  56361. name: "Side",
  56362. image: {
  56363. source: "./media/characters/alice/side.svg",
  56364. extra: 921/876,
  56365. bottom: 19/940
  56366. }
  56367. },
  56368. dressed: {
  56369. height: math.unit(2.4, "meters"),
  56370. weight: math.unit(270, "kg"),
  56371. name: "Dressed",
  56372. image: {
  56373. source: "./media/characters/alice/dressed.svg",
  56374. extra: 905/850,
  56375. bottom: 81/986
  56376. }
  56377. },
  56378. fishnet: {
  56379. height: math.unit(2.4, "meters"),
  56380. weight: math.unit(270, "kg"),
  56381. name: "Fishnet",
  56382. image: {
  56383. source: "./media/characters/alice/fishnet.svg",
  56384. extra: 905/850,
  56385. bottom: 81/986
  56386. }
  56387. },
  56388. },
  56389. [
  56390. {
  56391. name: "Normal",
  56392. height: math.unit(2.4, "meters"),
  56393. default: true
  56394. },
  56395. ]
  56396. ))
  56397. characterMakers.push(() => makeCharacter(
  56398. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56399. {
  56400. front: {
  56401. height: math.unit(175.25, "feet"),
  56402. name: "Front",
  56403. image: {
  56404. source: "./media/characters/fio/front.svg",
  56405. extra: 1883/1591,
  56406. bottom: 34/1917
  56407. }
  56408. },
  56409. },
  56410. [
  56411. {
  56412. name: "Normal",
  56413. height: math.unit(175.25, "cm"),
  56414. default: true
  56415. },
  56416. ]
  56417. ))
  56418. characterMakers.push(() => makeCharacter(
  56419. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56420. {
  56421. side: {
  56422. height: math.unit(6, "meters"),
  56423. weight: math.unit(3400, "kg"),
  56424. preyCapacity: math.unit(1700, "liters"),
  56425. name: "Side",
  56426. image: {
  56427. source: "./media/characters/hass/side.svg",
  56428. extra: 1058/997,
  56429. bottom: 177/1235
  56430. }
  56431. },
  56432. feeding: {
  56433. height: math.unit(6*0.63, "meters"),
  56434. weight: math.unit(3400, "kg"),
  56435. preyCapacity: math.unit(1700, "liters"),
  56436. name: "Feeding",
  56437. image: {
  56438. source: "./media/characters/hass/feeding.svg",
  56439. extra: 689/579,
  56440. bottom: 146/835
  56441. }
  56442. },
  56443. guts: {
  56444. height: math.unit(6, "meters"),
  56445. weight: math.unit(3400, "kg"),
  56446. name: "Guts",
  56447. image: {
  56448. source: "./media/characters/hass/guts.svg",
  56449. extra: 1223/1198,
  56450. bottom: 182/1405
  56451. }
  56452. },
  56453. dickFront: {
  56454. height: math.unit(1.4, "meters"),
  56455. name: "Dick (Front)",
  56456. image: {
  56457. source: "./media/characters/hass/dick-front.svg"
  56458. }
  56459. },
  56460. dickSide: {
  56461. height: math.unit(1.3, "meters"),
  56462. name: "Dick (Side)",
  56463. image: {
  56464. source: "./media/characters/hass/dick-side.svg"
  56465. }
  56466. },
  56467. dickBack: {
  56468. height: math.unit(1.4, "meters"),
  56469. name: "Dick (Back)",
  56470. image: {
  56471. source: "./media/characters/hass/dick-back.svg"
  56472. }
  56473. },
  56474. },
  56475. [
  56476. {
  56477. name: "Normal",
  56478. height: math.unit(6, "meters"),
  56479. default: true
  56480. },
  56481. ]
  56482. ))
  56483. characterMakers.push(() => makeCharacter(
  56484. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56485. {
  56486. front: {
  56487. height: math.unit(4, "feet"),
  56488. weight: math.unit(60, "lb"),
  56489. name: "Front",
  56490. image: {
  56491. source: "./media/characters/hickory-finnegan/front.svg",
  56492. extra: 444/411,
  56493. bottom: 10/454
  56494. }
  56495. },
  56496. side: {
  56497. height: math.unit(4, "feet"),
  56498. weight: math.unit(60, "lb"),
  56499. name: "Side",
  56500. image: {
  56501. source: "./media/characters/hickory-finnegan/side.svg",
  56502. extra: 444/411,
  56503. bottom: 10/454
  56504. }
  56505. },
  56506. back: {
  56507. height: math.unit(4, "feet"),
  56508. weight: math.unit(60, "lb"),
  56509. name: "Back",
  56510. image: {
  56511. source: "./media/characters/hickory-finnegan/back.svg",
  56512. extra: 444/411,
  56513. bottom: 10/454
  56514. }
  56515. },
  56516. },
  56517. [
  56518. {
  56519. name: "Normal",
  56520. height: math.unit(4, "feet"),
  56521. default: true
  56522. },
  56523. ]
  56524. ))
  56525. characterMakers.push(() => makeCharacter(
  56526. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56527. {
  56528. snivy_front: {
  56529. height: math.unit(2, "feet"),
  56530. weight: math.unit(17.9, "lb"),
  56531. name: "Front",
  56532. image: {
  56533. source: "./media/characters/robin-phox/snivy-front.svg",
  56534. extra: 569/504,
  56535. bottom: 33/602
  56536. },
  56537. form: "snivy",
  56538. default: true
  56539. },
  56540. snivy_frontNsfw: {
  56541. height: math.unit(2, "feet"),
  56542. weight: math.unit(17.9, "lb"),
  56543. name: "Front (NSFW)",
  56544. image: {
  56545. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56546. extra: 569/504,
  56547. bottom: 33/602
  56548. },
  56549. form: "snivy",
  56550. },
  56551. snivy_back: {
  56552. height: math.unit(2, "feet"),
  56553. weight: math.unit(17.9, "lb"),
  56554. name: "Back",
  56555. image: {
  56556. source: "./media/characters/robin-phox/snivy-back.svg",
  56557. extra: 577/508,
  56558. bottom: 21/598
  56559. },
  56560. form: "snivy",
  56561. },
  56562. snivy_foot: {
  56563. height: math.unit(0.68, "feet"),
  56564. name: "Foot",
  56565. image: {
  56566. source: "./media/characters/robin-phox/snivy-foot.svg"
  56567. },
  56568. form: "snivy",
  56569. },
  56570. snivy_sole: {
  56571. height: math.unit(0.68, "feet"),
  56572. name: "Sole",
  56573. image: {
  56574. source: "./media/characters/robin-phox/snivy-sole.svg"
  56575. },
  56576. form: "snivy",
  56577. },
  56578. yoshi_front: {
  56579. height: math.unit(6, "feet"),
  56580. weight: math.unit(150, "lb"),
  56581. name: "Front",
  56582. image: {
  56583. source: "./media/characters/robin-phox/yoshi-front.svg",
  56584. extra: 890/792,
  56585. bottom: 29/919
  56586. },
  56587. form: "yoshi",
  56588. default: true
  56589. },
  56590. yoshi_frontNsfw: {
  56591. height: math.unit(6, "feet"),
  56592. weight: math.unit(150, "lb"),
  56593. name: "Front (NSFW)",
  56594. image: {
  56595. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56596. extra: 890/792,
  56597. bottom: 29/919
  56598. },
  56599. form: "yoshi",
  56600. },
  56601. yoshi_back: {
  56602. height: math.unit(6, "feet"),
  56603. weight: math.unit(150, "lb"),
  56604. name: "Back",
  56605. image: {
  56606. source: "./media/characters/robin-phox/yoshi-back.svg",
  56607. extra: 890/792,
  56608. bottom: 29/919
  56609. },
  56610. form: "yoshi",
  56611. },
  56612. yoshi_foot: {
  56613. height: math.unit(1.5, "feet"),
  56614. name: "Foot",
  56615. image: {
  56616. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56617. },
  56618. form: "yoshi",
  56619. },
  56620. delphox_front: {
  56621. height: math.unit(4 + 11/12, "feet"),
  56622. weight: math.unit(86, "lb"),
  56623. name: "Front",
  56624. image: {
  56625. source: "./media/characters/robin-phox/delphox-front.svg",
  56626. extra: 1266/1069,
  56627. bottom: 32/1298
  56628. },
  56629. form: "delphox",
  56630. default: true
  56631. },
  56632. delphox_frontNsfw: {
  56633. height: math.unit(4 + 11/12, "feet"),
  56634. weight: math.unit(86, "lb"),
  56635. name: "Front (NSFW)",
  56636. image: {
  56637. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56638. extra: 1266/1069,
  56639. bottom: 32/1298
  56640. },
  56641. form: "delphox",
  56642. },
  56643. delphox_back: {
  56644. height: math.unit(4 + 11/12, "feet"),
  56645. weight: math.unit(86, "lb"),
  56646. name: "Back",
  56647. image: {
  56648. source: "./media/characters/robin-phox/delphox-back.svg",
  56649. extra: 1269/1083,
  56650. bottom: 15/1284
  56651. },
  56652. form: "delphox",
  56653. },
  56654. mienshao_front: {
  56655. height: math.unit(4 + 7/12, "feet"),
  56656. weight: math.unit(78.3, "lb"),
  56657. name: "Front",
  56658. image: {
  56659. source: "./media/characters/robin-phox/mienshao-front.svg",
  56660. extra: 1052/970,
  56661. bottom: 108/1160
  56662. },
  56663. form: "mienshao",
  56664. default: true
  56665. },
  56666. mienshao_frontNsfw: {
  56667. height: math.unit(4 + 7/12, "feet"),
  56668. weight: math.unit(78.3, "lb"),
  56669. name: "Front (NSFW)",
  56670. image: {
  56671. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56672. extra: 1052/970,
  56673. bottom: 108/1160
  56674. },
  56675. form: "mienshao",
  56676. },
  56677. mienshao_back: {
  56678. height: math.unit(4 + 7/12, "feet"),
  56679. weight: math.unit(78.3, "lb"),
  56680. name: "Back",
  56681. image: {
  56682. source: "./media/characters/robin-phox/mienshao-back.svg",
  56683. extra: 1102/982,
  56684. bottom: 32/1134
  56685. },
  56686. form: "mienshao",
  56687. },
  56688. inteleon_front: {
  56689. height: math.unit(6 + 3/12, "feet"),
  56690. weight: math.unit(99.6, "lb"),
  56691. name: "Front",
  56692. image: {
  56693. source: "./media/characters/robin-phox/inteleon-front.svg",
  56694. extra: 910/799,
  56695. bottom: 76/986
  56696. },
  56697. form: "inteleon",
  56698. default: true
  56699. },
  56700. inteleon_frontNsfw: {
  56701. height: math.unit(6 + 3/12, "feet"),
  56702. weight: math.unit(99.6, "lb"),
  56703. name: "Front (NSFW)",
  56704. image: {
  56705. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56706. extra: 910/799,
  56707. bottom: 76/986
  56708. },
  56709. form: "inteleon",
  56710. },
  56711. inteleon_back: {
  56712. height: math.unit(6 + 3/12, "feet"),
  56713. weight: math.unit(99.6, "lb"),
  56714. name: "Back",
  56715. image: {
  56716. source: "./media/characters/robin-phox/inteleon-back.svg",
  56717. extra: 907/796,
  56718. bottom: 25/932
  56719. },
  56720. form: "inteleon",
  56721. },
  56722. reshiram_front: {
  56723. height: math.unit(10 + 6/12, "feet"),
  56724. weight: math.unit(727.5, "lb"),
  56725. name: "Front",
  56726. image: {
  56727. source: "./media/characters/robin-phox/reshiram-front.svg",
  56728. extra: 1198/940,
  56729. bottom: 123/1321
  56730. },
  56731. form: "reshiram",
  56732. },
  56733. reshiram_frontNsfw: {
  56734. height: math.unit(10 + 6/12, "feet"),
  56735. weight: math.unit(727.5, "lb"),
  56736. name: "Front-nsfw",
  56737. image: {
  56738. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56739. extra: 1198/940,
  56740. bottom: 123/1321
  56741. },
  56742. form: "reshiram",
  56743. },
  56744. reshiram_back: {
  56745. height: math.unit(10 + 6/12, "feet"),
  56746. weight: math.unit(727.5, "lb"),
  56747. name: "Back",
  56748. image: {
  56749. source: "./media/characters/robin-phox/reshiram-back.svg",
  56750. extra: 1024/904,
  56751. bottom: 85/1109
  56752. },
  56753. form: "reshiram",
  56754. },
  56755. samurott_front: {
  56756. height: math.unit(8, "feet"),
  56757. weight: math.unit(208.6, "lb"),
  56758. name: "Front",
  56759. image: {
  56760. source: "./media/characters/robin-phox/samurott-front.svg",
  56761. extra: 1048/984,
  56762. bottom: 100/1148
  56763. },
  56764. form: "samurott",
  56765. },
  56766. samurott_frontNsfw: {
  56767. height: math.unit(8, "feet"),
  56768. weight: math.unit(208.6, "lb"),
  56769. name: "Front-nsfw",
  56770. image: {
  56771. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56772. extra: 1048/984,
  56773. bottom: 100/1148
  56774. },
  56775. form: "samurott",
  56776. },
  56777. samurott_back: {
  56778. height: math.unit(8, "feet"),
  56779. weight: math.unit(208.6, "lb"),
  56780. name: "Back",
  56781. image: {
  56782. source: "./media/characters/robin-phox/samurott-back.svg",
  56783. extra: 1110/1042,
  56784. bottom: 12/1122
  56785. },
  56786. form: "samurott",
  56787. },
  56788. samurott_feral: {
  56789. height: math.unit(4 + 11/12, "feet"),
  56790. weight: math.unit(208.6, "lb"),
  56791. name: "Feral",
  56792. image: {
  56793. source: "./media/characters/robin-phox/samurott-feral.svg",
  56794. extra: 766/681,
  56795. bottom: 108/874
  56796. },
  56797. form: "samurott",
  56798. },
  56799. },
  56800. [
  56801. {
  56802. name: "Normal",
  56803. height: math.unit(2, "feet"),
  56804. default: true,
  56805. form: "snivy"
  56806. },
  56807. {
  56808. name: "Normal",
  56809. height: math.unit(6, "feet"),
  56810. default: true,
  56811. form: "yoshi"
  56812. },
  56813. {
  56814. name: "Normal",
  56815. height: math.unit(4 + 11/12, "feet"),
  56816. default: true,
  56817. form: "delphox"
  56818. },
  56819. {
  56820. name: "Normal",
  56821. height: math.unit(4 + 7/12, "feet"),
  56822. default: true,
  56823. form: "mienshao"
  56824. },
  56825. {
  56826. name: "Normal",
  56827. height: math.unit(6 + 3/12, "feet"),
  56828. default: true,
  56829. form: "inteleon"
  56830. },
  56831. {
  56832. name: "Normal",
  56833. height: math.unit(10 + 6/12, "feet"),
  56834. default: true,
  56835. form: "reshiram"
  56836. },
  56837. {
  56838. name: "Normal",
  56839. height: math.unit(8, "feet"),
  56840. default: true,
  56841. form: "samurott"
  56842. },
  56843. {
  56844. name: "Macro",
  56845. height: math.unit(500, "feet"),
  56846. allForms: true
  56847. },
  56848. {
  56849. name: "Mega Macro",
  56850. height: math.unit(10, "earths"),
  56851. allForms: true
  56852. },
  56853. {
  56854. name: "Giga Macro",
  56855. height: math.unit(1, "galaxy"),
  56856. allForms: true
  56857. },
  56858. {
  56859. name: "Godly Macro",
  56860. height: math.unit(1e10, "multiverses"),
  56861. allForms: true
  56862. },
  56863. ],
  56864. {
  56865. "snivy": {
  56866. name: "Snivy",
  56867. default: true
  56868. },
  56869. "yoshi": {
  56870. name: "Yoshi",
  56871. },
  56872. "delphox": {
  56873. name: "Delphox",
  56874. },
  56875. "mienshao": {
  56876. name: "Mienshao",
  56877. },
  56878. "inteleon": {
  56879. name: "Inteleon",
  56880. },
  56881. "reshiram": {
  56882. name: "Reshiram",
  56883. },
  56884. "samurott": {
  56885. name: "Samurott",
  56886. },
  56887. }
  56888. ))
  56889. characterMakers.push(() => makeCharacter(
  56890. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56891. {
  56892. front: {
  56893. height: math.unit(4, "feet"),
  56894. name: "Front",
  56895. image: {
  56896. source: "./media/characters/ash-leung/front.svg",
  56897. extra: 1916/1792,
  56898. bottom: 50/1966
  56899. }
  56900. },
  56901. },
  56902. [
  56903. {
  56904. name: "Atomic",
  56905. height: math.unit(1, "angstrom")
  56906. },
  56907. {
  56908. name: "Microscopic",
  56909. height: math.unit(4000, "angstroms")
  56910. },
  56911. {
  56912. name: "Speck",
  56913. height: math.unit(1, "mm")
  56914. },
  56915. {
  56916. name: "Small",
  56917. height: math.unit(1, "inch")
  56918. },
  56919. {
  56920. name: "Normal",
  56921. height: math.unit(4, "feet"),
  56922. default: true
  56923. },
  56924. ]
  56925. ))
  56926. characterMakers.push(() => makeCharacter(
  56927. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56928. {
  56929. frontDressed: {
  56930. height: math.unit(2.08, "meters"),
  56931. weight: math.unit(175, "lb"),
  56932. name: "Front (Dressed)",
  56933. image: {
  56934. source: "./media/characters/carie/front-dressed.svg",
  56935. extra: 456/417,
  56936. bottom: 7/463
  56937. }
  56938. },
  56939. backDressed: {
  56940. height: math.unit(2.08, "meters"),
  56941. weight: math.unit(175, "lb"),
  56942. name: "Back (Dressed)",
  56943. image: {
  56944. source: "./media/characters/carie/back-dressed.svg",
  56945. extra: 455/414,
  56946. bottom: 11/466
  56947. }
  56948. },
  56949. front: {
  56950. height: math.unit(2, "meters"),
  56951. weight: math.unit(175, "lb"),
  56952. name: "Front",
  56953. image: {
  56954. source: "./media/characters/carie/front.svg",
  56955. extra: 438/399,
  56956. bottom: 12/450
  56957. }
  56958. },
  56959. back: {
  56960. height: math.unit(2, "meters"),
  56961. weight: math.unit(175, "lb"),
  56962. name: "Back",
  56963. image: {
  56964. source: "./media/characters/carie/back.svg",
  56965. extra: 438/397,
  56966. bottom: 7/445
  56967. }
  56968. },
  56969. },
  56970. [
  56971. {
  56972. name: "Normal",
  56973. height: math.unit(2.08, "meters"),
  56974. default: true
  56975. },
  56976. {
  56977. name: "Macro",
  56978. height: math.unit(2.08e3, "meters")
  56979. },
  56980. {
  56981. name: "Mega Macro",
  56982. height: math.unit(2.08e6, "meters")
  56983. },
  56984. {
  56985. name: "Giga Macro",
  56986. height: math.unit(2.08e9, "meters")
  56987. },
  56988. {
  56989. name: "Tera Macro",
  56990. height: math.unit(2.08e12, "meters")
  56991. },
  56992. {
  56993. name: "Peta Macro",
  56994. height: math.unit(2.08e15, "meters")
  56995. },
  56996. {
  56997. name: "Exa Macro",
  56998. height: math.unit(2.08e18, "meters")
  56999. },
  57000. {
  57001. name: "Zetta Macro",
  57002. height: math.unit(2.08e21, "meters")
  57003. },
  57004. {
  57005. name: "Yotta Macro",
  57006. height: math.unit(2.08e24, "meters")
  57007. },
  57008. ]
  57009. ))
  57010. characterMakers.push(() => makeCharacter(
  57011. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57012. {
  57013. front: {
  57014. height: math.unit(5 + 2/12, "feet"),
  57015. weight: math.unit(120, "lb"),
  57016. name: "Front",
  57017. image: {
  57018. source: "./media/characters/sai-bree/front.svg",
  57019. extra: 1843/1702,
  57020. bottom: 91/1934
  57021. }
  57022. },
  57023. back: {
  57024. height: math.unit(5 + 2/12, "feet"),
  57025. weight: math.unit(120, "lb"),
  57026. name: "Back",
  57027. image: {
  57028. source: "./media/characters/sai-bree/back.svg",
  57029. extra: 1809/1637,
  57030. bottom: 56/1865
  57031. }
  57032. },
  57033. },
  57034. [
  57035. {
  57036. name: "Normal",
  57037. height: math.unit(5 + 2/12, "feet"),
  57038. default: true
  57039. },
  57040. {
  57041. name: "Macro",
  57042. height: math.unit(500, "feet")
  57043. },
  57044. ]
  57045. ))
  57046. characterMakers.push(() => makeCharacter(
  57047. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57048. {
  57049. side: {
  57050. height: math.unit(0.77, "meters"),
  57051. weight: math.unit(120, "lb"),
  57052. name: "Side",
  57053. image: {
  57054. source: "./media/characters/davwyn/side.svg",
  57055. extra: 1557/1225,
  57056. bottom: 131/1688
  57057. }
  57058. },
  57059. front: {
  57060. height: math.unit(0.835410, "meters"),
  57061. weight: math.unit(120, "lb"),
  57062. name: "Front",
  57063. image: {
  57064. source: "./media/characters/davwyn/front.svg",
  57065. extra: 870/843,
  57066. bottom: 175/1045
  57067. }
  57068. },
  57069. },
  57070. [
  57071. {
  57072. name: "Minidrake",
  57073. height: math.unit(0.77/4, "meters")
  57074. },
  57075. {
  57076. name: "Normal",
  57077. height: math.unit(0.77, "meters"),
  57078. default: true
  57079. },
  57080. ]
  57081. ))
  57082. characterMakers.push(() => makeCharacter(
  57083. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57084. {
  57085. front: {
  57086. height: math.unit(10 + 3/12, "feet"),
  57087. weight: math.unit(2857, "lb"),
  57088. name: "Front",
  57089. image: {
  57090. source: "./media/characters/balans/front.svg",
  57091. extra: 427/402,
  57092. bottom: 26/453
  57093. }
  57094. },
  57095. side: {
  57096. height: math.unit(10 + 3/12, "feet"),
  57097. weight: math.unit(2857, "lb"),
  57098. name: "Side",
  57099. image: {
  57100. source: "./media/characters/balans/side.svg",
  57101. extra: 397/371,
  57102. bottom: 17/414
  57103. }
  57104. },
  57105. back: {
  57106. height: math.unit(10 + 3/12, "feet"),
  57107. weight: math.unit(2857, "lb"),
  57108. name: "Back",
  57109. image: {
  57110. source: "./media/characters/balans/back.svg",
  57111. extra: 408/381,
  57112. bottom: 14/422
  57113. }
  57114. },
  57115. hand: {
  57116. height: math.unit(1.15, "feet"),
  57117. name: "Hand",
  57118. image: {
  57119. source: "./media/characters/balans/hand.svg"
  57120. }
  57121. },
  57122. footRest: {
  57123. height: math.unit(3.1, "feet"),
  57124. name: "Foot (Rest)",
  57125. image: {
  57126. source: "./media/characters/balans/foot-rest.svg"
  57127. }
  57128. },
  57129. footActive: {
  57130. height: math.unit(3.5, "feet"),
  57131. name: "Foot (Active)",
  57132. image: {
  57133. source: "./media/characters/balans/foot-active.svg"
  57134. }
  57135. },
  57136. },
  57137. [
  57138. {
  57139. name: "Normal",
  57140. height: math.unit(10 + 3/12, "feet"),
  57141. default: true
  57142. },
  57143. ]
  57144. ))
  57145. characterMakers.push(() => makeCharacter(
  57146. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57147. {
  57148. side: {
  57149. height: math.unit(9, "meters"),
  57150. weight: math.unit(114, "tonnes"),
  57151. name: "Side",
  57152. image: {
  57153. source: "./media/characters/eldkveikir/side.svg",
  57154. extra: 1927/338,
  57155. bottom: 42/1969
  57156. }
  57157. },
  57158. sitting: {
  57159. height: math.unit(13.4, "meters"),
  57160. weight: math.unit(114, "tonnes"),
  57161. name: "Sitting",
  57162. image: {
  57163. source: "./media/characters/eldkveikir/sitting.svg",
  57164. extra: 1108/963,
  57165. bottom: 610/1718
  57166. }
  57167. },
  57168. maw: {
  57169. height: math.unit(8.36, "meters"),
  57170. name: "Maw",
  57171. image: {
  57172. source: "./media/characters/eldkveikir/maw.svg"
  57173. }
  57174. },
  57175. hand: {
  57176. height: math.unit(4.84, "meters"),
  57177. name: "Hand",
  57178. image: {
  57179. source: "./media/characters/eldkveikir/hand.svg"
  57180. }
  57181. },
  57182. foot: {
  57183. height: math.unit(6.9, "meters"),
  57184. name: "Foot",
  57185. image: {
  57186. source: "./media/characters/eldkveikir/foot.svg"
  57187. }
  57188. },
  57189. genitals: {
  57190. height: math.unit(9.6, "meters"),
  57191. name: "Genitals",
  57192. image: {
  57193. source: "./media/characters/eldkveikir/genitals.svg"
  57194. }
  57195. },
  57196. },
  57197. [
  57198. {
  57199. name: "Normal",
  57200. height: math.unit(9, "meters"),
  57201. default: true
  57202. },
  57203. ]
  57204. ))
  57205. characterMakers.push(() => makeCharacter(
  57206. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57207. {
  57208. front: {
  57209. height: math.unit(14, "feet"),
  57210. weight: math.unit(4100, "lb"),
  57211. name: "Front",
  57212. image: {
  57213. source: "./media/characters/arrow/front.svg",
  57214. extra: 330/318,
  57215. bottom: 56/386
  57216. }
  57217. },
  57218. },
  57219. [
  57220. {
  57221. name: "Normal",
  57222. height: math.unit(14, "feet"),
  57223. default: true
  57224. },
  57225. {
  57226. name: "Minimacro",
  57227. height: math.unit(63, "feet")
  57228. },
  57229. {
  57230. name: "Macro",
  57231. height: math.unit(630, "feet")
  57232. },
  57233. {
  57234. name: "Megamacro",
  57235. height: math.unit(12600, "feet")
  57236. },
  57237. {
  57238. name: "Gigamacro",
  57239. height: math.unit(18000, "miles")
  57240. },
  57241. ]
  57242. ))
  57243. characterMakers.push(() => makeCharacter(
  57244. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57245. {
  57246. front: {
  57247. height: math.unit(10, "feet"),
  57248. weight: math.unit(2.4, "tons"),
  57249. name: "Front",
  57250. image: {
  57251. source: "./media/characters/3yk-k0-unit/front.svg",
  57252. extra: 573/561,
  57253. bottom: 33/606
  57254. }
  57255. },
  57256. back: {
  57257. height: math.unit(10, "feet"),
  57258. weight: math.unit(2.4, "tons"),
  57259. name: "Back",
  57260. image: {
  57261. source: "./media/characters/3yk-k0-unit/back.svg",
  57262. extra: 614/573,
  57263. bottom: 32/646
  57264. }
  57265. },
  57266. maw: {
  57267. height: math.unit(2.15, "feet"),
  57268. name: "Maw",
  57269. image: {
  57270. source: "./media/characters/3yk-k0-unit/maw.svg"
  57271. }
  57272. },
  57273. },
  57274. [
  57275. {
  57276. name: "Normal",
  57277. height: math.unit(10, "feet"),
  57278. default: true
  57279. },
  57280. ]
  57281. ))
  57282. characterMakers.push(() => makeCharacter(
  57283. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57284. {
  57285. front: {
  57286. height: math.unit(8 + 8/12, "feet"),
  57287. name: "Front",
  57288. image: {
  57289. source: "./media/characters/nemo/front.svg",
  57290. extra: 1308/1217,
  57291. bottom: 57/1365
  57292. }
  57293. },
  57294. },
  57295. [
  57296. {
  57297. name: "Normal",
  57298. height: math.unit(8 + 8/12, "feet"),
  57299. default: true
  57300. },
  57301. ]
  57302. ))
  57303. characterMakers.push(() => makeCharacter(
  57304. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57305. {
  57306. front: {
  57307. height: math.unit(8, "feet"),
  57308. weight: math.unit(760, "lb"),
  57309. name: "Front",
  57310. image: {
  57311. source: "./media/characters/rexx/front.svg",
  57312. extra: 786/750,
  57313. bottom: 17/803
  57314. },
  57315. extraAttributes: {
  57316. "pawLength": {
  57317. name: "Paw Length",
  57318. power: 1,
  57319. type: "length",
  57320. base: math.unit(27, "inches")
  57321. },
  57322. }
  57323. },
  57324. },
  57325. [
  57326. {
  57327. name: "Micro",
  57328. height: math.unit(2, "inches")
  57329. },
  57330. {
  57331. name: "Normal",
  57332. height: math.unit(8, "feet"),
  57333. default: true
  57334. },
  57335. {
  57336. name: "Macro",
  57337. height: math.unit(150, "feet")
  57338. },
  57339. ]
  57340. ))
  57341. characterMakers.push(() => makeCharacter(
  57342. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57343. {
  57344. front: {
  57345. height: math.unit(18, "feet"),
  57346. weight: math.unit(1975, "lb"),
  57347. name: "Front",
  57348. image: {
  57349. source: "./media/characters/draco/front.svg",
  57350. extra: 1325/1241,
  57351. bottom: 83/1408
  57352. }
  57353. },
  57354. back: {
  57355. height: math.unit(18, "feet"),
  57356. weight: math.unit(1975, "lb"),
  57357. name: "Back",
  57358. image: {
  57359. source: "./media/characters/draco/back.svg",
  57360. extra: 1332/1250,
  57361. bottom: 43/1375
  57362. }
  57363. },
  57364. dick: {
  57365. height: math.unit(7.5, "feet"),
  57366. name: "Dick",
  57367. image: {
  57368. source: "./media/characters/draco/dick.svg"
  57369. }
  57370. },
  57371. },
  57372. [
  57373. {
  57374. name: "Normal",
  57375. height: math.unit(18, "feet"),
  57376. default: true
  57377. },
  57378. ]
  57379. ))
  57380. characterMakers.push(() => makeCharacter(
  57381. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57382. {
  57383. front: {
  57384. height: math.unit(3.2, "meters"),
  57385. name: "Front",
  57386. image: {
  57387. source: "./media/characters/harriett/front.svg",
  57388. extra: 1966/1915,
  57389. bottom: 9/1975
  57390. }
  57391. },
  57392. },
  57393. [
  57394. {
  57395. name: "Normal",
  57396. height: math.unit(3.2, "meters"),
  57397. default: true
  57398. },
  57399. ]
  57400. ))
  57401. characterMakers.push(() => makeCharacter(
  57402. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57403. {
  57404. sitting: {
  57405. height: math.unit(0.8, "meter"),
  57406. name: "Sitting",
  57407. image: {
  57408. source: "./media/characters/serpentus/sitting.svg",
  57409. extra: 293/290,
  57410. bottom: 140/433
  57411. }
  57412. },
  57413. },
  57414. [
  57415. {
  57416. name: "Normal",
  57417. height: math.unit(0.8, "meter"),
  57418. default: true
  57419. },
  57420. ]
  57421. ))
  57422. characterMakers.push(() => makeCharacter(
  57423. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57424. {
  57425. front: {
  57426. height: math.unit(5.7174385736, "feet"),
  57427. name: "Front",
  57428. image: {
  57429. source: "./media/characters/nova-polecat/front.svg",
  57430. extra: 1317/1216,
  57431. bottom: 92/1409
  57432. }
  57433. },
  57434. },
  57435. [
  57436. {
  57437. name: "Normal",
  57438. height: math.unit(5.7174385736, "feet"),
  57439. default: true
  57440. },
  57441. ]
  57442. ))
  57443. characterMakers.push(() => makeCharacter(
  57444. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57445. {
  57446. front: {
  57447. height: math.unit(5 + 4/12, "feet"),
  57448. weight: math.unit(250, "lb"),
  57449. name: "Front",
  57450. image: {
  57451. source: "./media/characters/mook/front.svg",
  57452. extra: 1088/1037,
  57453. bottom: 132/1220
  57454. }
  57455. },
  57456. back: {
  57457. height: math.unit(5 + 1/12, "feet"),
  57458. weight: math.unit(250, "lb"),
  57459. name: "Back",
  57460. image: {
  57461. source: "./media/characters/mook/back.svg",
  57462. extra: 1184/905,
  57463. bottom: 96/1280
  57464. }
  57465. },
  57466. head: {
  57467. height: math.unit(1.85, "feet"),
  57468. name: "Head",
  57469. image: {
  57470. source: "./media/characters/mook/head.svg"
  57471. }
  57472. },
  57473. hand: {
  57474. height: math.unit(1.9, "feet"),
  57475. name: "Hand",
  57476. image: {
  57477. source: "./media/characters/mook/hand.svg"
  57478. }
  57479. },
  57480. palm: {
  57481. height: math.unit(1.84, "feet"),
  57482. name: "Palm",
  57483. image: {
  57484. source: "./media/characters/mook/palm.svg"
  57485. }
  57486. },
  57487. foot: {
  57488. height: math.unit(1.44, "feet"),
  57489. name: "Foot",
  57490. image: {
  57491. source: "./media/characters/mook/foot.svg"
  57492. }
  57493. },
  57494. sole: {
  57495. height: math.unit(1.44, "feet"),
  57496. name: "Sole",
  57497. image: {
  57498. source: "./media/characters/mook/sole.svg"
  57499. }
  57500. },
  57501. },
  57502. [
  57503. {
  57504. name: "Normal",
  57505. height: math.unit(5 + 4/12, "feet"),
  57506. default: true
  57507. },
  57508. {
  57509. name: "Big",
  57510. height: math.unit(12, "feet")
  57511. },
  57512. ]
  57513. ))
  57514. characterMakers.push(() => makeCharacter(
  57515. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57516. {
  57517. front: {
  57518. height: math.unit(6 + 10/12, "feet"),
  57519. weight: math.unit(233, "lb"),
  57520. name: "Front",
  57521. image: {
  57522. source: "./media/characters/kayla/front.svg",
  57523. extra: 1850/1775,
  57524. bottom: 65/1915
  57525. }
  57526. },
  57527. },
  57528. [
  57529. {
  57530. name: "Normal",
  57531. height: math.unit(6 + 10/12, "feet"),
  57532. default: true
  57533. },
  57534. {
  57535. name: "Amazonian",
  57536. height: math.unit(12 + 5/12, "feet")
  57537. },
  57538. {
  57539. name: "Mini Giantess",
  57540. height: math.unit(26, "feet")
  57541. },
  57542. {
  57543. name: "Giantess",
  57544. height: math.unit(200, "feet")
  57545. },
  57546. {
  57547. name: "Mega Giantess",
  57548. height: math.unit(2500, "feet")
  57549. },
  57550. {
  57551. name: "City Sized",
  57552. height: math.unit(50, "miles")
  57553. },
  57554. {
  57555. name: "Country Sized",
  57556. height: math.unit(500, "miles")
  57557. },
  57558. {
  57559. name: "Continent Sized",
  57560. height: math.unit(2500, "miles")
  57561. },
  57562. {
  57563. name: "Planet Sized",
  57564. height: math.unit(10000, "miles")
  57565. },
  57566. {
  57567. name: "Star Sized",
  57568. height: math.unit(5e6, "miles")
  57569. },
  57570. {
  57571. name: "Solar System Sized",
  57572. height: math.unit(125, "AU")
  57573. },
  57574. {
  57575. name: "Galaxy Sized",
  57576. height: math.unit(300e3, "lightyears")
  57577. },
  57578. {
  57579. name: "Universe Sized",
  57580. height: math.unit(200e9, "lightyears")
  57581. },
  57582. {
  57583. name: "Multiverse Sized",
  57584. height: math.unit(20, "exauniverses")
  57585. },
  57586. {
  57587. name: "Mother of Existence",
  57588. height: math.unit(1e6, "yottauniverses")
  57589. },
  57590. ]
  57591. ))
  57592. characterMakers.push(() => makeCharacter(
  57593. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57594. {
  57595. side: {
  57596. height: math.unit(9.5, "meters"),
  57597. name: "Side",
  57598. image: {
  57599. source: "./media/characters/kulve-ragnarok/side.svg",
  57600. extra: 364/326,
  57601. bottom: 50/414
  57602. }
  57603. },
  57604. },
  57605. [
  57606. {
  57607. name: "Normal",
  57608. height: math.unit(9.5, "meters"),
  57609. default: true
  57610. },
  57611. ]
  57612. ))
  57613. characterMakers.push(() => makeCharacter(
  57614. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57615. {
  57616. front: {
  57617. height: math.unit(8 + 9/12, "feet"),
  57618. name: "Front",
  57619. image: {
  57620. source: "./media/characters/atlas-goat/front.svg",
  57621. extra: 1462/1323,
  57622. bottom: 12/1474
  57623. }
  57624. },
  57625. },
  57626. [
  57627. {
  57628. name: "Normal",
  57629. height: math.unit(8 + 9/12, "feet"),
  57630. default: true
  57631. },
  57632. {
  57633. name: "Skyline",
  57634. height: math.unit(845, "feet")
  57635. },
  57636. {
  57637. name: "Orbital",
  57638. height: math.unit(93000, "miles")
  57639. },
  57640. {
  57641. name: "Constellation",
  57642. height: math.unit(27000, "lightyears")
  57643. },
  57644. ]
  57645. ))
  57646. characterMakers.push(() => makeCharacter(
  57647. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57648. {
  57649. side: {
  57650. height: math.unit(1.8, "meters"),
  57651. weight: math.unit(120, "kg"),
  57652. name: "Side",
  57653. image: {
  57654. source: "./media/characters/xie-ling/side.svg",
  57655. extra: 646/574,
  57656. bottom: 44/690
  57657. }
  57658. },
  57659. },
  57660. [
  57661. {
  57662. name: "Tiny",
  57663. height: math.unit(1.80, "meters")
  57664. },
  57665. {
  57666. name: "Small",
  57667. height: math.unit(6, "meters")
  57668. },
  57669. {
  57670. name: "Medium",
  57671. height: math.unit(15, "meters")
  57672. },
  57673. {
  57674. name: "Normal",
  57675. height: math.unit(30, "meters"),
  57676. default: true
  57677. },
  57678. {
  57679. name: "Above Normal",
  57680. height: math.unit(60, "meters")
  57681. },
  57682. {
  57683. name: "Big",
  57684. height: math.unit(220, "meters")
  57685. },
  57686. {
  57687. name: "Giant",
  57688. height: math.unit(2.2, "km")
  57689. },
  57690. {
  57691. name: "Macro",
  57692. height: math.unit(25, "km")
  57693. },
  57694. {
  57695. name: "Mega Macro",
  57696. height: math.unit(350, "km")
  57697. },
  57698. {
  57699. name: "Mega Macro+",
  57700. height: math.unit(5000, "km")
  57701. },
  57702. {
  57703. name: "Goddess",
  57704. height: math.unit(3, "multiverses")
  57705. },
  57706. ]
  57707. ))
  57708. characterMakers.push(() => makeCharacter(
  57709. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57710. {
  57711. frontSfw: {
  57712. height: math.unit(5 + 11/12, "feet"),
  57713. weight: math.unit(210, "lb"),
  57714. name: "Front",
  57715. image: {
  57716. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57717. extra: 1928/1821,
  57718. bottom: 45/1973
  57719. }
  57720. },
  57721. backSfw: {
  57722. height: math.unit(5 + 11/12, "feet"),
  57723. weight: math.unit(210, "lb"),
  57724. name: "Back",
  57725. image: {
  57726. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57727. extra: 1920/1813,
  57728. bottom: 34/1954
  57729. }
  57730. },
  57731. frontNsfw: {
  57732. height: math.unit(5 + 11/12, "feet"),
  57733. weight: math.unit(210, "lb"),
  57734. name: "Front (NSFW)",
  57735. image: {
  57736. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57737. extra: 1928/1821,
  57738. bottom: 45/1973
  57739. }
  57740. },
  57741. backNsfw: {
  57742. height: math.unit(5 + 11/12, "feet"),
  57743. weight: math.unit(210, "lb"),
  57744. name: "Back (NSFW)",
  57745. image: {
  57746. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57747. extra: 1920/1813,
  57748. bottom: 34/1954
  57749. }
  57750. },
  57751. },
  57752. [
  57753. {
  57754. name: "Normal",
  57755. height: math.unit(5 + 11/12, "feet"),
  57756. default: true
  57757. },
  57758. {
  57759. name: "Goddess",
  57760. height: math.unit(20 + 3/12, "feet")
  57761. },
  57762. {
  57763. name: "Breaker of Man",
  57764. height: math.unit(329 + 9/12, "feet")
  57765. },
  57766. {
  57767. name: "Solar Justice",
  57768. height: math.unit(0.6, "solarradii")
  57769. },
  57770. {
  57771. name: "She Who Judges",
  57772. height: math.unit(1, "universe")
  57773. },
  57774. ]
  57775. ))
  57776. characterMakers.push(() => makeCharacter(
  57777. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57778. {
  57779. casual_front: {
  57780. height: math.unit(6 + 1/12, "feet"),
  57781. weight: math.unit(190, "lb"),
  57782. preyCapacity: math.unit(1, "people"),
  57783. name: "Front",
  57784. image: {
  57785. source: "./media/characters/managarmr/casual-front.svg",
  57786. extra: 411/381,
  57787. bottom: 15/426
  57788. },
  57789. extraAttributes: {
  57790. "pawSize": {
  57791. name: "Paw Size",
  57792. power: 1,
  57793. type: "length",
  57794. base: math.unit(0.2, "meters")
  57795. },
  57796. },
  57797. form: "casual",
  57798. },
  57799. casual_back: {
  57800. height: math.unit(6 + 1/12, "feet"),
  57801. weight: math.unit(190, "lb"),
  57802. preyCapacity: math.unit(1, "people"),
  57803. name: "Back",
  57804. image: {
  57805. source: "./media/characters/managarmr/casual-back.svg",
  57806. extra: 413/383,
  57807. bottom: 13/426
  57808. },
  57809. extraAttributes: {
  57810. "pawSize": {
  57811. name: "Paw Size",
  57812. power: 1,
  57813. type: "length",
  57814. base: math.unit(0.2, "meters")
  57815. },
  57816. },
  57817. form: "casual",
  57818. },
  57819. base_front: {
  57820. height: math.unit(7, "feet"),
  57821. weight: math.unit(210, "lb"),
  57822. preyCapacity: math.unit(2, "people"),
  57823. name: "Front",
  57824. image: {
  57825. source: "./media/characters/managarmr/base-front.svg",
  57826. extra: 580/485,
  57827. bottom: 32/612
  57828. },
  57829. extraAttributes: {
  57830. "wingspan": {
  57831. name: "Wingspan",
  57832. power: 1,
  57833. type: "length",
  57834. base: math.unit(4, "meters")
  57835. },
  57836. "pawSize": {
  57837. name: "Paw Size",
  57838. power: 1,
  57839. type: "length",
  57840. base: math.unit(0.2, "meters")
  57841. },
  57842. },
  57843. form: "base",
  57844. },
  57845. "true-divine_front": {
  57846. height: math.unit(40, "feet"),
  57847. weight: math.unit(39000, "lb"),
  57848. preyCapacity: math.unit(375, "people"),
  57849. name: "Front",
  57850. image: {
  57851. source: "./media/characters/managarmr/true-divine-front.svg",
  57852. extra: 725/573,
  57853. bottom: 120/845
  57854. },
  57855. extraAttributes: {
  57856. "wingspan": {
  57857. name: "Wingspan",
  57858. power: 1,
  57859. type: "length",
  57860. base: math.unit(20, "meters")
  57861. },
  57862. "pawSize": {
  57863. name: "Paw Size",
  57864. power: 1,
  57865. type: "length",
  57866. base: math.unit(1.5, "meters")
  57867. },
  57868. },
  57869. form: "true-divine",
  57870. },
  57871. },
  57872. [
  57873. {
  57874. name: "Normal",
  57875. height: math.unit(6 + 1/12, "feet"),
  57876. form: "casual",
  57877. default: true
  57878. },
  57879. {
  57880. name: "Normal",
  57881. height: math.unit(7, "feet"),
  57882. form: "base",
  57883. default: true
  57884. },
  57885. ],
  57886. {
  57887. "casual": {
  57888. name: "Casual",
  57889. default: true
  57890. },
  57891. "base": {
  57892. name: "Base",
  57893. },
  57894. "true-divine": {
  57895. name: "True Divine",
  57896. },
  57897. }
  57898. ))
  57899. characterMakers.push(() => makeCharacter(
  57900. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  57901. {
  57902. front: {
  57903. height: math.unit(1.8, "meters"),
  57904. weight: math.unit(110, "kg"),
  57905. name: "Front",
  57906. image: {
  57907. source: "./media/characters/mystra/front.svg",
  57908. extra: 529/442,
  57909. bottom: 31/560
  57910. }
  57911. },
  57912. frontLewd: {
  57913. height: math.unit(1.8, "meters"),
  57914. weight: math.unit(110, "kg"),
  57915. name: "Front (Lewd)",
  57916. image: {
  57917. source: "./media/characters/mystra/front-lewd.svg",
  57918. extra: 529/442,
  57919. bottom: 31/560
  57920. }
  57921. },
  57922. head: {
  57923. height: math.unit(1.63, "feet"),
  57924. name: "Head",
  57925. image: {
  57926. source: "./media/characters/mystra/head.svg"
  57927. }
  57928. },
  57929. paw: {
  57930. height: math.unit(1.9, "feet"),
  57931. name: "Paw",
  57932. image: {
  57933. source: "./media/characters/mystra/paw.svg"
  57934. }
  57935. },
  57936. },
  57937. [
  57938. {
  57939. name: "Incognito",
  57940. height: math.unit(2.3, "meters")
  57941. },
  57942. {
  57943. name: "Small Macro",
  57944. height: math.unit(300, "meters")
  57945. },
  57946. {
  57947. name: "Small Mega",
  57948. height: math.unit(2, "km")
  57949. },
  57950. {
  57951. name: "Mega",
  57952. height: math.unit(30, "km")
  57953. },
  57954. {
  57955. name: "Small Giga",
  57956. height: math.unit(100, "km")
  57957. },
  57958. {
  57959. name: "Giga",
  57960. height: math.unit(1000, "km"),
  57961. default: true
  57962. },
  57963. {
  57964. name: "Continental",
  57965. height: math.unit(5000, "km")
  57966. },
  57967. {
  57968. name: "Terra",
  57969. height: math.unit(20000, "km")
  57970. },
  57971. {
  57972. name: "Solar",
  57973. height: math.unit(2e6, "km")
  57974. },
  57975. {
  57976. name: "Galactic",
  57977. height: math.unit(528502, "lightyears")
  57978. },
  57979. {
  57980. name: "Universal",
  57981. height: math.unit(20, "universes")
  57982. },
  57983. ]
  57984. ))
  57985. characterMakers.push(() => makeCharacter(
  57986. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  57987. {
  57988. front: {
  57989. height: math.unit(2, "meters"),
  57990. weight: math.unit(140, "kg"),
  57991. name: "Front",
  57992. image: {
  57993. source: "./media/characters/caleb/front.svg",
  57994. extra: 873/817,
  57995. bottom: 47/920
  57996. }
  57997. },
  57998. back: {
  57999. height: math.unit(2, "meters"),
  58000. weight: math.unit(140, "kg"),
  58001. name: "Back",
  58002. image: {
  58003. source: "./media/characters/caleb/back.svg",
  58004. extra: 877/828,
  58005. bottom: 24/901
  58006. }
  58007. },
  58008. snakeTail: {
  58009. height: math.unit(1.44, "feet"),
  58010. name: "Snake Tail",
  58011. image: {
  58012. source: "./media/characters/caleb/snake-tail.svg"
  58013. }
  58014. },
  58015. dick: {
  58016. height: math.unit(2.6, "feet"),
  58017. name: "Dick",
  58018. image: {
  58019. source: "./media/characters/caleb/dick.svg"
  58020. }
  58021. },
  58022. },
  58023. [
  58024. {
  58025. name: "Incognito",
  58026. height: math.unit(3, "meters")
  58027. },
  58028. {
  58029. name: "Home Size",
  58030. height: math.unit(200, "meters"),
  58031. default: true
  58032. },
  58033. {
  58034. name: "Macro",
  58035. height: math.unit(500, "meters")
  58036. },
  58037. {
  58038. name: "Big Macro",
  58039. height: math.unit(5, "km")
  58040. },
  58041. {
  58042. name: "Giga",
  58043. height: math.unit(250, "km")
  58044. },
  58045. {
  58046. name: "Giga+",
  58047. height: math.unit(5000, "km")
  58048. },
  58049. {
  58050. name: "Small Terra",
  58051. height: math.unit(35e3, "km")
  58052. },
  58053. {
  58054. name: "Terra",
  58055. height: math.unit(2e6, "km")
  58056. },
  58057. {
  58058. name: "Terra+",
  58059. height: math.unit(1.5e6, "km")
  58060. },
  58061. ]
  58062. ))
  58063. characterMakers.push(() => makeCharacter(
  58064. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58065. {
  58066. front: {
  58067. height: math.unit(2, "meters"),
  58068. weight: math.unit(120, "kg"),
  58069. name: "Front",
  58070. image: {
  58071. source: "./media/characters/gilirian/front.svg",
  58072. extra: 805/737,
  58073. bottom: 13/818
  58074. }
  58075. },
  58076. side: {
  58077. height: math.unit(2, "meters"),
  58078. weight: math.unit(120, "kg"),
  58079. name: "Side",
  58080. image: {
  58081. source: "./media/characters/gilirian/side.svg",
  58082. extra: 810/746,
  58083. bottom: 6/816
  58084. }
  58085. },
  58086. back: {
  58087. height: math.unit(2, "meters"),
  58088. weight: math.unit(120, "kg"),
  58089. name: "Back",
  58090. image: {
  58091. source: "./media/characters/gilirian/back.svg",
  58092. extra: 815/745,
  58093. bottom: 15/830
  58094. }
  58095. },
  58096. frontNsfw: {
  58097. height: math.unit(2, "meters"),
  58098. weight: math.unit(120, "kg"),
  58099. name: "Front (NSFW)",
  58100. image: {
  58101. source: "./media/characters/gilirian/front-nsfw.svg",
  58102. extra: 805/737,
  58103. bottom: 13/818
  58104. }
  58105. },
  58106. sideNsfw: {
  58107. height: math.unit(2, "meters"),
  58108. weight: math.unit(120, "kg"),
  58109. name: "Side (NSFW)",
  58110. image: {
  58111. source: "./media/characters/gilirian/side-nsfw.svg",
  58112. extra: 810/746,
  58113. bottom: 6/816
  58114. }
  58115. },
  58116. },
  58117. [
  58118. {
  58119. name: "Incognito",
  58120. height: math.unit(2, "meters"),
  58121. default: true
  58122. },
  58123. {
  58124. name: "Macro",
  58125. height: math.unit(250, "meters")
  58126. },
  58127. {
  58128. name: "Big Macro",
  58129. height: math.unit(1500, "meters")
  58130. },
  58131. {
  58132. name: "Mega",
  58133. height: math.unit(40, "km")
  58134. },
  58135. {
  58136. name: "Giga",
  58137. height: math.unit(300, "km")
  58138. },
  58139. {
  58140. name: "Extra Giga",
  58141. height: math.unit(5000, "km")
  58142. },
  58143. {
  58144. name: "Small Terra",
  58145. height: math.unit(10e3, "km")
  58146. },
  58147. {
  58148. name: "Terra",
  58149. height: math.unit(3e5, "km")
  58150. },
  58151. {
  58152. name: "Galactic",
  58153. height: math.unit(369950, "lightyears")
  58154. },
  58155. ]
  58156. ))
  58157. characterMakers.push(() => makeCharacter(
  58158. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58159. {
  58160. front: {
  58161. height: math.unit(2.5, "meters"),
  58162. weight: math.unit(230, "lb"),
  58163. name: "Front",
  58164. image: {
  58165. source: "./media/characters/tarken/front.svg",
  58166. extra: 764/720,
  58167. bottom: 49/813
  58168. }
  58169. },
  58170. back: {
  58171. height: math.unit(2.5, "meters"),
  58172. weight: math.unit(230, "lb"),
  58173. name: "Back",
  58174. image: {
  58175. source: "./media/characters/tarken/back.svg",
  58176. extra: 756/720,
  58177. bottom: 35/791
  58178. }
  58179. },
  58180. frontNsfw: {
  58181. height: math.unit(2.5, "meters"),
  58182. weight: math.unit(230, "lb"),
  58183. name: "Front (NSFW)",
  58184. image: {
  58185. source: "./media/characters/tarken/front-nsfw.svg",
  58186. extra: 764/720,
  58187. bottom: 49/813
  58188. }
  58189. },
  58190. backNsfw: {
  58191. height: math.unit(2.5, "meters"),
  58192. weight: math.unit(230, "lb"),
  58193. name: "Back (NSFW)",
  58194. image: {
  58195. source: "./media/characters/tarken/back-nsfw.svg",
  58196. extra: 756/720,
  58197. bottom: 35/791
  58198. }
  58199. },
  58200. head: {
  58201. height: math.unit(2.22, "feet"),
  58202. name: "Head",
  58203. image: {
  58204. source: "./media/characters/tarken/head.svg"
  58205. }
  58206. },
  58207. tail: {
  58208. height: math.unit(5.25, "feet"),
  58209. name: "Tail",
  58210. image: {
  58211. source: "./media/characters/tarken/tail.svg"
  58212. }
  58213. },
  58214. dick: {
  58215. height: math.unit(1.95, "feet"),
  58216. name: "Dick",
  58217. image: {
  58218. source: "./media/characters/tarken/dick.svg"
  58219. }
  58220. },
  58221. hand: {
  58222. height: math.unit(1.78, "feet"),
  58223. name: "Hand",
  58224. image: {
  58225. source: "./media/characters/tarken/hand.svg"
  58226. }
  58227. },
  58228. beam: {
  58229. height: math.unit(1.5, "feet"),
  58230. name: "Beam",
  58231. image: {
  58232. source: "./media/characters/tarken/beam.svg"
  58233. }
  58234. },
  58235. },
  58236. [
  58237. {
  58238. name: "Original Size",
  58239. height: math.unit(2.5, "meters")
  58240. },
  58241. {
  58242. name: "Macro",
  58243. height: math.unit(150, "meters"),
  58244. default: true
  58245. },
  58246. {
  58247. name: "Macro+",
  58248. height: math.unit(300, "meters")
  58249. },
  58250. {
  58251. name: "Mega",
  58252. height: math.unit(2, "km")
  58253. },
  58254. {
  58255. name: "Mega+",
  58256. height: math.unit(35, "km")
  58257. },
  58258.  {
  58259. name: "Mega++",
  58260. height: math.unit(60, "km")
  58261. },
  58262. {
  58263. name: "Giga",
  58264. height: math.unit(200, "km")
  58265. },
  58266. {
  58267. name: "Giga+",
  58268. height: math.unit(2500, "km")
  58269. },
  58270. {
  58271. name: "Giga++",
  58272. height: math.unit(6600, "km")
  58273. },
  58274. {
  58275. name: "Terra",
  58276. height: math.unit(20000, "km")
  58277. },
  58278. {
  58279. name: "Terra+",
  58280. height: math.unit(300000, "km")
  58281. },
  58282. ]
  58283. ))
  58284. characterMakers.push(() => makeCharacter(
  58285. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58286. {
  58287. magpie_dressed: {
  58288. height: math.unit(1.7, "meters"),
  58289. weight: math.unit(70, "kg"),
  58290. name: "Dressed",
  58291. image: {
  58292. source: "./media/characters/otreus/magpie-dressed.svg",
  58293. extra: 691/672,
  58294. bottom: 116/807
  58295. },
  58296. form: "magpie",
  58297. default: true
  58298. },
  58299. magpie_nude: {
  58300. height: math.unit(1.7, "meters"),
  58301. weight: math.unit(70, "kg"),
  58302. name: "Nude",
  58303. image: {
  58304. source: "./media/characters/otreus/magpie-nude.svg",
  58305. extra: 691/672,
  58306. bottom: 116/807
  58307. },
  58308. form: "magpie",
  58309. },
  58310. magpie_dressedLewd: {
  58311. height: math.unit(1.7, "meters"),
  58312. weight: math.unit(70, "kg"),
  58313. name: "Dressed (Lewd)",
  58314. image: {
  58315. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58316. extra: 691/672,
  58317. bottom: 116/807
  58318. },
  58319. form: "magpie",
  58320. },
  58321. magpie_nudeLewd: {
  58322. height: math.unit(1.7, "meters"),
  58323. weight: math.unit(70, "kg"),
  58324. name: "Nude (Lewd)",
  58325. image: {
  58326. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58327. extra: 691/672,
  58328. bottom: 116/807
  58329. },
  58330. form: "magpie",
  58331. },
  58332. magpie_leftFoot: {
  58333. height: math.unit(1.58, "feet"),
  58334. name: "Left Foot",
  58335. image: {
  58336. source: "./media/characters/otreus/magpie-left-foot.svg"
  58337. },
  58338. form: "magpie",
  58339. },
  58340. magpie_rightFoot: {
  58341. height: math.unit(1.58, "feet"),
  58342. name: "Right Foot",
  58343. image: {
  58344. source: "./media/characters/otreus/magpie-right-foot.svg"
  58345. },
  58346. form: "magpie",
  58347. },
  58348. magpie_wingspan: {
  58349. height: math.unit(2, "meters"),
  58350. weight: math.unit(70, "kg"),
  58351. name: "Wingspan",
  58352. image: {
  58353. source: "./media/characters/otreus/magpie-wingspan.svg"
  58354. },
  58355. extraAttributes: {
  58356. "wingspan": {
  58357. name: "Wingspan",
  58358. power: 1,
  58359. type: "length",
  58360. base: math.unit(3.35, "meters")
  58361. },
  58362. },
  58363. form: "magpie",
  58364. },
  58365. hippogriff_dressed: {
  58366. height: math.unit(1.7, "meters"),
  58367. weight: math.unit(70, "kg"),
  58368. name: "Dressed",
  58369. image: {
  58370. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58371. extra: 710/689,
  58372. bottom: 67/777
  58373. },
  58374. form: "hippogriff",
  58375. default: true
  58376. },
  58377. hippogriff_nude: {
  58378. height: math.unit(1.7, "meters"),
  58379. weight: math.unit(70, "kg"),
  58380. name: "Nude",
  58381. image: {
  58382. source: "./media/characters/otreus/hippogriff-nude.svg",
  58383. extra: 710/689,
  58384. bottom: 67/777
  58385. },
  58386. form: "hippogriff",
  58387. },
  58388. hippogriff_dressedLewd: {
  58389. height: math.unit(1.7, "meters"),
  58390. weight: math.unit(70, "kg"),
  58391. name: "Dressed (Lewd)",
  58392. image: {
  58393. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58394. extra: 710/689,
  58395. bottom: 67/777
  58396. },
  58397. form: "hippogriff",
  58398. },
  58399. hippogriff_nudeLewd: {
  58400. height: math.unit(1.7, "meters"),
  58401. weight: math.unit(70, "kg"),
  58402. name: "Nude (Lewd)",
  58403. image: {
  58404. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58405. extra: 710/689,
  58406. bottom: 67/777
  58407. },
  58408. form: "hippogriff",
  58409. },
  58410. },
  58411. [
  58412. {
  58413. name: "Original Size",
  58414. height: math.unit(1.7, "meters"),
  58415. allForms: true
  58416. },
  58417. {
  58418. name: "Incognito Size",
  58419. height: math.unit(2, "meters"),
  58420. allForms: true
  58421. },
  58422. {
  58423. name: "Mega",
  58424. height: math.unit(2, "km"),
  58425. allForms: true
  58426. },
  58427. {
  58428. name: "Mega+",
  58429. height: math.unit(40, "km"),
  58430. allForms: true
  58431. },
  58432. {
  58433. name: "Giga",
  58434. height: math.unit(250, "km"),
  58435. allForms: true
  58436. },
  58437. {
  58438. name: "Giga+",
  58439. height: math.unit(3000, "km"),
  58440. allForms: true
  58441. },
  58442. {
  58443. name: "Terra",
  58444. height: math.unit(20000, "km"),
  58445. allForms: true
  58446. },
  58447. {
  58448. name: "Solar (Home Size)",
  58449. height: math.unit(3e6, "km"),
  58450. allForms: true,
  58451. default: true
  58452. },
  58453. ],
  58454. {
  58455. "magpie": {
  58456. name: "Magpie",
  58457. default: true
  58458. },
  58459. "hippogriff": {
  58460. name: "Hippogriff",
  58461. },
  58462. }
  58463. ))
  58464. characterMakers.push(() => makeCharacter(
  58465. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58466. {
  58467. frontDressed: {
  58468. height: math.unit(1.8, "meters"),
  58469. weight: math.unit(90, "kg"),
  58470. name: "Front (Dressed)",
  58471. image: {
  58472. source: "./media/characters/thalia/front-dressed.svg",
  58473. extra: 478/402,
  58474. bottom: 55/533
  58475. }
  58476. },
  58477. backDressed: {
  58478. height: math.unit(1.8, "meters"),
  58479. weight: math.unit(90, "kg"),
  58480. name: "Back (Dressed)",
  58481. image: {
  58482. source: "./media/characters/thalia/back-dressed.svg",
  58483. extra: 500/424,
  58484. bottom: 15/515
  58485. }
  58486. },
  58487. frontNude: {
  58488. height: math.unit(1.8, "meters"),
  58489. weight: math.unit(90, "kg"),
  58490. name: "Front (Nude)",
  58491. image: {
  58492. source: "./media/characters/thalia/front-nude.svg",
  58493. extra: 478/402,
  58494. bottom: 55/533
  58495. }
  58496. },
  58497. backNude: {
  58498. height: math.unit(1.8, "meters"),
  58499. weight: math.unit(90, "kg"),
  58500. name: "Back (Nude)",
  58501. image: {
  58502. source: "./media/characters/thalia/back-nude.svg",
  58503. extra: 500/424,
  58504. bottom: 15/515
  58505. }
  58506. },
  58507. },
  58508. [
  58509. {
  58510. name: "Incognito",
  58511. height: math.unit(3, "meters")
  58512. },
  58513. {
  58514. name: "Macro",
  58515. height: math.unit(500, "meters")
  58516. },
  58517. {
  58518. name: "Mega",
  58519. height: math.unit(5, "km")
  58520. },
  58521. {
  58522. name: "Mega+",
  58523. height: math.unit(30, "km")
  58524. },
  58525. {
  58526. name: "Giga",
  58527. height: math.unit(350, "km")
  58528. },
  58529. {
  58530. name: "Giga+",
  58531. height: math.unit(4000, "km")
  58532. },
  58533. {
  58534. name: "Terra",
  58535. height: math.unit(35000, "km")
  58536. },
  58537. {
  58538. name: "Original Size",
  58539. height: math.unit(130000, "km")
  58540. },
  58541. {
  58542. name: "Solar (Home Size)",
  58543. height: math.unit(4e6, "km"),
  58544. default: true
  58545. },
  58546. ]
  58547. ))
  58548. characterMakers.push(() => makeCharacter(
  58549. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58550. {
  58551. front: {
  58552. height: math.unit(1.8, "meters"),
  58553. weight: math.unit(95, "kg"),
  58554. name: "Front",
  58555. image: {
  58556. source: "./media/characters/shango/front.svg",
  58557. extra: 1925/1774,
  58558. bottom: 67/1992
  58559. }
  58560. },
  58561. back: {
  58562. height: math.unit(1.8, "meters"),
  58563. weight: math.unit(95, "kg"),
  58564. name: "Back",
  58565. image: {
  58566. source: "./media/characters/shango/back.svg",
  58567. extra: 1915/1766,
  58568. bottom: 52/1967
  58569. }
  58570. },
  58571. frontLewd: {
  58572. height: math.unit(1.8, "meters"),
  58573. weight: math.unit(95, "kg"),
  58574. name: "Front (Lewd)",
  58575. image: {
  58576. source: "./media/characters/shango/front-lewd.svg",
  58577. extra: 1925/1774,
  58578. bottom: 67/1992
  58579. }
  58580. },
  58581. backLewd: {
  58582. height: math.unit(1.8, "meters"),
  58583. weight: math.unit(95, "kg"),
  58584. name: "Back (Lewd)",
  58585. image: {
  58586. source: "./media/characters/shango/back-lewd.svg",
  58587. extra: 1915/1766,
  58588. bottom: 52/1967
  58589. }
  58590. },
  58591. maw: {
  58592. height: math.unit(1.64, "feet"),
  58593. name: "Maw",
  58594. image: {
  58595. source: "./media/characters/shango/maw.svg"
  58596. }
  58597. },
  58598. dick: {
  58599. height: math.unit(2.14, "feet"),
  58600. name: "Dick",
  58601. image: {
  58602. source: "./media/characters/shango/dick.svg"
  58603. }
  58604. },
  58605. },
  58606. [
  58607. {
  58608. name: "Incognito",
  58609. height: math.unit(1.8, "meters")
  58610. },
  58611. {
  58612. name: "Home Size",
  58613. height: math.unit(60, "meters"),
  58614. default: true
  58615. },
  58616. {
  58617. name: "Macro",
  58618. height: math.unit(450, "meters")
  58619. },
  58620. {
  58621. name: "Mega",
  58622. height: math.unit(6, "km")
  58623. },
  58624. {
  58625. name: "Mega+",
  58626. height: math.unit(35, "km")
  58627. },
  58628. {
  58629. name: "Giga",
  58630. height: math.unit(500, "km")
  58631. },
  58632. {
  58633. name: "Giga+",
  58634. height: math.unit(5000, "km")
  58635. },
  58636. {
  58637. name: "Terra",
  58638. height: math.unit(60000, "km")
  58639. },
  58640. {
  58641. name: "Terra+",
  58642. height: math.unit(400000, "km")
  58643. },
  58644. ]
  58645. ))
  58646. characterMakers.push(() => makeCharacter(
  58647. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  58648. {
  58649. front: {
  58650. height: math.unit(2, "meters"),
  58651. weight: math.unit(95, "kg"),
  58652. name: "Front",
  58653. image: {
  58654. source: "./media/characters/osiris-gryphon/front.svg",
  58655. extra: 1508/1313,
  58656. bottom: 87/1595
  58657. }
  58658. },
  58659. back: {
  58660. height: math.unit(2, "meters"),
  58661. weight: math.unit(95, "kg"),
  58662. name: "Back",
  58663. image: {
  58664. source: "./media/characters/osiris-gryphon/back.svg",
  58665. extra: 1436/1309,
  58666. bottom: 64/1500
  58667. }
  58668. },
  58669. frontLewd: {
  58670. height: math.unit(2, "meters"),
  58671. weight: math.unit(95, "kg"),
  58672. name: "Front-lewd",
  58673. image: {
  58674. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  58675. extra: 1508/1313,
  58676. bottom: 87/1595
  58677. }
  58678. },
  58679. wing: {
  58680. height: math.unit(6.3333, "feet"),
  58681. name: "Wing",
  58682. image: {
  58683. source: "./media/characters/osiris-gryphon/wing.svg"
  58684. }
  58685. },
  58686. },
  58687. [
  58688. {
  58689. name: "Incognito",
  58690. height: math.unit(2, "meters")
  58691. },
  58692. {
  58693. name: "Home Size",
  58694. height: math.unit(30, "meters"),
  58695. default: true
  58696. },
  58697. {
  58698. name: "Macro",
  58699. height: math.unit(100, "meters")
  58700. },
  58701. {
  58702. name: "Macro+",
  58703. height: math.unit(350, "meters")
  58704. },
  58705. {
  58706. name: "Mega",
  58707. height: math.unit(40, "km")
  58708. },
  58709. {
  58710. name: "Giga",
  58711. height: math.unit(300, "km")
  58712. },
  58713. {
  58714. name: "Giga+",
  58715. height: math.unit(2000, "km")
  58716. },
  58717. {
  58718. name: "Terra",
  58719. height: math.unit(30000, "km")
  58720. },
  58721. ]
  58722. ))
  58723. characterMakers.push(() => makeCharacter(
  58724. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  58725. {
  58726. front: {
  58727. height: math.unit(2.5, "meters"),
  58728. weight: math.unit(200, "kg"),
  58729. name: "Front",
  58730. image: {
  58731. source: "./media/characters/atlas-dragon/front.svg",
  58732. extra: 745/462,
  58733. bottom: 36/781
  58734. }
  58735. },
  58736. back: {
  58737. height: math.unit(2.5, "meters"),
  58738. weight: math.unit(200, "kg"),
  58739. name: "Back",
  58740. image: {
  58741. source: "./media/characters/atlas-dragon/back.svg",
  58742. extra: 848/822,
  58743. bottom: 57/905
  58744. }
  58745. },
  58746. frontLewd: {
  58747. height: math.unit(2.5, "meters"),
  58748. weight: math.unit(200, "kg"),
  58749. name: "Front (Lewd)",
  58750. image: {
  58751. source: "./media/characters/atlas-dragon/front-lewd.svg",
  58752. extra: 745/462,
  58753. bottom: 36/781
  58754. }
  58755. },
  58756. backLewd: {
  58757. height: math.unit(2.5, "meters"),
  58758. weight: math.unit(200, "kg"),
  58759. name: "Back (Lewd)",
  58760. image: {
  58761. source: "./media/characters/atlas-dragon/back-lewd.svg",
  58762. extra: 848/822,
  58763. bottom: 57/905
  58764. }
  58765. },
  58766. },
  58767. [
  58768. {
  58769. name: "Incognito",
  58770. height: math.unit(2.5, "meters")
  58771. },
  58772. {
  58773. name: "Small Macro",
  58774. height: math.unit(50, "meters")
  58775. },
  58776. {
  58777. name: "Macro",
  58778. height: math.unit(350, "meters")
  58779. },
  58780. {
  58781. name: "Mega",
  58782. height: math.unit(5.5, "kilometers")
  58783. },
  58784. {
  58785. name: "Mega+",
  58786. height: math.unit(50, "km")
  58787. },
  58788. {
  58789. name: "Giga",
  58790. height: math.unit(350, "km")
  58791. },
  58792. {
  58793. name: "Giga+",
  58794. height: math.unit(2000, "km")
  58795. },
  58796. {
  58797. name: "Giga++",
  58798. height: math.unit(6500, "km")
  58799. },
  58800. {
  58801. name: "Terra",
  58802. height: math.unit(30000, "km")
  58803. },
  58804. {
  58805. name: "Terra+",
  58806. height: math.unit(250000, "km")
  58807. },
  58808. {
  58809. name: "True Size",
  58810. height: math.unit(100, "multiverses"),
  58811. default: true
  58812. },
  58813. ]
  58814. ))
  58815. characterMakers.push(() => makeCharacter(
  58816. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  58817. {
  58818. front: {
  58819. height: math.unit(1.8, "m"),
  58820. weight: math.unit(120, "kg"),
  58821. name: "Front",
  58822. image: {
  58823. source: "./media/characters/chey/front.svg",
  58824. extra: 1359/1270,
  58825. bottom: 18/1377
  58826. }
  58827. },
  58828. arm: {
  58829. height: math.unit(2.05, "feet"),
  58830. name: "Arm",
  58831. image: {
  58832. source: "./media/characters/chey/arm.svg"
  58833. }
  58834. },
  58835. head: {
  58836. height: math.unit(1.89, "feet"),
  58837. name: "Head",
  58838. image: {
  58839. source: "./media/characters/chey/head.svg"
  58840. }
  58841. },
  58842. },
  58843. [
  58844. {
  58845. name: "Original Size",
  58846. height: math.unit(5, "cm")
  58847. },
  58848. {
  58849. name: "Incognito Size",
  58850. height: math.unit(2.4, "m")
  58851. },
  58852. {
  58853. name: "Home Size",
  58854. height: math.unit(200, "meters"),
  58855. default: true
  58856. },
  58857. {
  58858. name: "Mega",
  58859. height: math.unit(2, "km")
  58860. },
  58861. {
  58862. name: "Giga (Preferred Size)",
  58863. height: math.unit(2000, "km")
  58864. },
  58865. {
  58866. name: "Giga+",
  58867. height: math.unit(6000, "km")
  58868. },
  58869. {
  58870. name: "Terra",
  58871. height: math.unit(17000, "km")
  58872. },
  58873. {
  58874. name: "Terra+",
  58875. height: math.unit(75000, "km")
  58876. },
  58877. {
  58878. name: "Terra++",
  58879. height: math.unit(225000, "km")
  58880. },
  58881. ]
  58882. ))
  58883. characterMakers.push(() => makeCharacter(
  58884. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  58885. {
  58886. side: {
  58887. height: math.unit(7.8, "meters"),
  58888. name: "Side",
  58889. image: {
  58890. source: "./media/characters/ragnarok/side.svg",
  58891. extra: 725/621,
  58892. bottom: 72/797
  58893. }
  58894. },
  58895. },
  58896. [
  58897. {
  58898. name: "Normal",
  58899. height: math.unit(7.8, "meters"),
  58900. default: true
  58901. },
  58902. ]
  58903. ))
  58904. characterMakers.push(() => makeCharacter(
  58905. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  58906. {
  58907. hyena_front: {
  58908. height: math.unit(2.1, "meters"),
  58909. weight: math.unit(110, "kg"),
  58910. name: "Front",
  58911. image: {
  58912. source: "./media/characters/nima/hyena-front.svg",
  58913. extra: 1904/1796,
  58914. bottom: 67/1971
  58915. },
  58916. form: "hyena",
  58917. },
  58918. hyena_back: {
  58919. height: math.unit(2.1, "meters"),
  58920. weight: math.unit(110, "kg"),
  58921. name: "Back",
  58922. image: {
  58923. source: "./media/characters/nima/hyena-back.svg",
  58924. extra: 1964/1884,
  58925. bottom: 35/1999
  58926. },
  58927. form: "hyena",
  58928. },
  58929. shark_front: {
  58930. height: math.unit(1.95, "meters"),
  58931. weight: math.unit(110, "kg"),
  58932. name: "Front",
  58933. image: {
  58934. source: "./media/characters/nima/shark-front.svg",
  58935. extra: 2238/2013,
  58936. bottom: 0/223
  58937. },
  58938. form: "shark",
  58939. },
  58940. paw: {
  58941. height: math.unit(1, "feet"),
  58942. name: "Paw",
  58943. image: {
  58944. source: "./media/characters/nima/paw.svg"
  58945. }
  58946. },
  58947. circlet: {
  58948. height: math.unit(0.3, "feet"),
  58949. name: "Circlet",
  58950. image: {
  58951. source: "./media/characters/nima/circlet.svg"
  58952. }
  58953. },
  58954. necklace: {
  58955. height: math.unit(1.2, "feet"),
  58956. name: "Necklace",
  58957. image: {
  58958. source: "./media/characters/nima/necklace.svg"
  58959. }
  58960. },
  58961. bracelet: {
  58962. height: math.unit(0.51, "feet"),
  58963. name: "Bracelet",
  58964. image: {
  58965. source: "./media/characters/nima/bracelet.svg"
  58966. }
  58967. },
  58968. armband: {
  58969. height: math.unit(1.3, "feet"),
  58970. name: "Armband",
  58971. image: {
  58972. source: "./media/characters/nima/armband.svg"
  58973. }
  58974. },
  58975. },
  58976. [
  58977. {
  58978. name: "Incognito",
  58979. height: math.unit(2.1, "meters"),
  58980. allForms: true
  58981. },
  58982. {
  58983. name: "Small Macro",
  58984. height: math.unit(50, "meters"),
  58985. allForms: true
  58986. },
  58987. {
  58988. name: "Macro",
  58989. height: math.unit(200, "meters"),
  58990. allForms: true
  58991. },
  58992. {
  58993. name: "Mega",
  58994. height: math.unit(2.5, "km"),
  58995. allForms: true
  58996. },
  58997. {
  58998. name: "Mega+",
  58999. height: math.unit(30, "km"),
  59000. allForms: true
  59001. },
  59002. {
  59003. name: "Giga (Home Size)",
  59004. height: math.unit(400, "km"),
  59005. allForms: true,
  59006. default: true
  59007. },
  59008. {
  59009. name: "Giga+",
  59010. height: math.unit(2500, "km"),
  59011. allForms: true
  59012. },
  59013. {
  59014. name: "Giga++",
  59015. height: math.unit(8000, "km"),
  59016. allForms: true
  59017. },
  59018. {
  59019. name: "Terra",
  59020. height: math.unit(20000, "km"),
  59021. allForms: true
  59022. },
  59023. {
  59024. name: "Terra+",
  59025. height: math.unit(70000, "km"),
  59026. allForms: true
  59027. },
  59028. {
  59029. name: "Terra++",
  59030. height: math.unit(600000, "km"),
  59031. allForms: true
  59032. },
  59033. {
  59034. name: "Galactic",
  59035. height: math.unit(40, "galaxies"),
  59036. allForms: true
  59037. },
  59038. {
  59039. name: "Universal",
  59040. height: math.unit(40, "universes"),
  59041. allForms: true
  59042. },
  59043. ],
  59044. {
  59045. "hyena": {
  59046. name: "Hyena",
  59047. default: true
  59048. },
  59049. "shark": {
  59050. name: "Shark",
  59051. },
  59052. }
  59053. ))
  59054. characterMakers.push(() => makeCharacter(
  59055. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59056. {
  59057. anthro_front: {
  59058. height: math.unit(1.5, "meters"),
  59059. name: "Front",
  59060. image: {
  59061. source: "./media/characters/adelaide/anthro-front.svg",
  59062. extra: 860/783,
  59063. bottom: 60/920
  59064. },
  59065. form: "anthro",
  59066. default: true
  59067. },
  59068. hand: {
  59069. height: math.unit(0.65, "feet"),
  59070. name: "Hand",
  59071. image: {
  59072. source: "./media/characters/adelaide/hand.svg"
  59073. },
  59074. form: "anthro"
  59075. },
  59076. foot: {
  59077. height: math.unit(1.38 * 259 / 314, "feet"),
  59078. name: "Foot",
  59079. image: {
  59080. source: "./media/characters/adelaide/foot.svg",
  59081. extra: 259/259,
  59082. bottom: 55/314
  59083. },
  59084. form: "anthro"
  59085. },
  59086. feather: {
  59087. height: math.unit(0.85, "feet"),
  59088. name: "Feather",
  59089. image: {
  59090. source: "./media/characters/adelaide/feather.svg"
  59091. },
  59092. form: "anthro"
  59093. },
  59094. feral_side: {
  59095. height: math.unit(1, "meters"),
  59096. name: "Side",
  59097. image: {
  59098. source: "./media/characters/adelaide/feral-side.svg",
  59099. extra: 550/467,
  59100. bottom: 37/587
  59101. },
  59102. form: "feral",
  59103. default: true
  59104. },
  59105. feral_hand: {
  59106. height: math.unit(0.58, "feet"),
  59107. name: "Hand",
  59108. image: {
  59109. source: "./media/characters/adelaide/hand.svg"
  59110. },
  59111. form: "feral"
  59112. },
  59113. feral_foot: {
  59114. height: math.unit(1.2 * 259 / 314, "feet"),
  59115. name: "Foot",
  59116. image: {
  59117. source: "./media/characters/adelaide/foot.svg",
  59118. extra: 259/259,
  59119. bottom: 55/314
  59120. },
  59121. form: "feral"
  59122. },
  59123. feral_feather: {
  59124. height: math.unit(0.63, "feet"),
  59125. name: "Feather",
  59126. image: {
  59127. source: "./media/characters/adelaide/feather.svg"
  59128. },
  59129. form: "feral"
  59130. },
  59131. },
  59132. [
  59133. {
  59134. name: "Normal",
  59135. height: math.unit(1.5, "meters"),
  59136. form: "anthro",
  59137. default: true
  59138. },
  59139. {
  59140. name: "Normal",
  59141. height: math.unit(1, "meters"),
  59142. form: "feral",
  59143. default: true
  59144. },
  59145. ],
  59146. {
  59147. "anthro": {
  59148. name: "Anthro",
  59149. default: true
  59150. },
  59151. "feral": {
  59152. name: "Feral",
  59153. },
  59154. }
  59155. ))
  59156. characterMakers.push(() => makeCharacter(
  59157. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59158. {
  59159. front: {
  59160. height: math.unit(2.5, "meters"),
  59161. name: "Front",
  59162. image: {
  59163. source: "./media/characters/goa/front.svg",
  59164. extra: 1109/1013,
  59165. bottom: 150/1259
  59166. }
  59167. },
  59168. },
  59169. [
  59170. {
  59171. name: "Normal",
  59172. height: math.unit(2.5, "meters"),
  59173. default: true
  59174. },
  59175. ]
  59176. ))
  59177. characterMakers.push(() => makeCharacter(
  59178. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59179. {
  59180. front: {
  59181. height: math.unit(2, "meters"),
  59182. weight: math.unit(100, "kg"),
  59183. name: "Front",
  59184. image: {
  59185. source: "./media/characters/kiki-weavile/front.svg",
  59186. extra: 357/332,
  59187. bottom: 60/417
  59188. }
  59189. },
  59190. },
  59191. [
  59192. {
  59193. name: "Normal",
  59194. height: math.unit(2, "meters"),
  59195. default: true
  59196. },
  59197. ]
  59198. ))
  59199. characterMakers.push(() => makeCharacter(
  59200. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59201. {
  59202. side: {
  59203. height: math.unit(1.6, "meters"),
  59204. name: "Side",
  59205. image: {
  59206. source: "./media/characters/liza/side.svg",
  59207. extra: 943/915,
  59208. bottom: 72/1015
  59209. }
  59210. },
  59211. },
  59212. [
  59213. {
  59214. name: "Normal",
  59215. height: math.unit(1.6, "meters"),
  59216. default: true
  59217. },
  59218. ]
  59219. ))
  59220. //characters
  59221. function makeCharacters() {
  59222. const results = [];
  59223. characterMakers.forEach(character => {
  59224. results.push(character());
  59225. });
  59226. return results;
  59227. }