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

60014 строки
1.5 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal"
  234. ]
  235. },
  236. "ram": {
  237. name: "Ram",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "demon": {
  243. name: "Demon",
  244. parents: [
  245. "supernatural"
  246. ]
  247. },
  248. "cougar": {
  249. name: "Cougar",
  250. parents: [
  251. "cat"
  252. ]
  253. },
  254. "goat": {
  255. name: "Goat",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "lion": {
  261. name: "Lion",
  262. parents: [
  263. "cat"
  264. ]
  265. },
  266. "harpy-eager": {
  267. name: "Harpy Eagle",
  268. parents: [
  269. "avian"
  270. ]
  271. },
  272. "deer": {
  273. name: "Deer",
  274. parents: [
  275. "mammal"
  276. ]
  277. },
  278. "phoenix": {
  279. name: "Phoenix",
  280. parents: [
  281. "avian"
  282. ]
  283. },
  284. "aeromorph": {
  285. name: "Aeromorph",
  286. parents: [
  287. "machine"
  288. ]
  289. },
  290. "machine": {
  291. name: "Machine",
  292. },
  293. "android": {
  294. name: "Android",
  295. parents: [
  296. "machine"
  297. ]
  298. },
  299. "jackal": {
  300. name: "Jackal",
  301. parents: [
  302. "canine"
  303. ]
  304. },
  305. "corvid": {
  306. name: "Corvid",
  307. parents: [
  308. "passerine"
  309. ]
  310. },
  311. "pharaoh-hound": {
  312. name: "Pharaoh Hound",
  313. parents: [
  314. "dog"
  315. ]
  316. },
  317. "skunk": {
  318. name: "Skunk",
  319. parents: [
  320. "mammal"
  321. ]
  322. },
  323. "shark": {
  324. name: "Shark",
  325. parents: [
  326. "fish"
  327. ]
  328. },
  329. "black-panther": {
  330. name: "Black Panther",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "umbra": {
  336. name: "Umbra",
  337. parents: [
  338. "animal"
  339. ]
  340. },
  341. "raven": {
  342. name: "Raven",
  343. parents: [
  344. "corvid"
  345. ]
  346. },
  347. "snow-leopard": {
  348. name: "Snow Leopard",
  349. parents: [
  350. "cat"
  351. ]
  352. },
  353. "barbary-lion": {
  354. name: "Barbary Lion",
  355. parents: [
  356. "lion"
  357. ]
  358. },
  359. "dra'gal": {
  360. name: "Dra'Gal",
  361. parents: [
  362. "mammal"
  363. ]
  364. },
  365. "german-shepherd": {
  366. name: "German Shepherd",
  367. parents: [
  368. "dog"
  369. ]
  370. },
  371. "bayleef": {
  372. name: "Bayleef",
  373. parents: [
  374. "pokemon",
  375. "plant",
  376. "animal"
  377. ]
  378. },
  379. "mouse": {
  380. name: "Mouse",
  381. parents: [
  382. "rodent"
  383. ]
  384. },
  385. "rat": {
  386. name: "Rat",
  387. parents: [
  388. "mammal"
  389. ]
  390. },
  391. "hoshiko-beast": {
  392. name: "Hoshiko Beast",
  393. parents: ["animal"]
  394. },
  395. "snow-jugani": {
  396. name: "Snow Jugani",
  397. parents: ["cat"]
  398. },
  399. "patamon": {
  400. name: "Patamon",
  401. parents: ["digimon", "guinea-pig"]
  402. },
  403. "digimon": {
  404. name: "Digimon",
  405. parents: [
  406. "video-games"
  407. ]
  408. },
  409. "jugani": {
  410. name: "Jugani",
  411. parents: ["cat"]
  412. },
  413. "luxray": {
  414. name: "Luxray",
  415. parents: ["pokemon", "lion"]
  416. },
  417. "mech": {
  418. name: "Mech",
  419. parents: ["machine"]
  420. },
  421. "zoid": {
  422. name: "Zoid",
  423. parents: ["mech"]
  424. },
  425. "monster": {
  426. name: "Monster",
  427. parents: ["animal"]
  428. },
  429. "foo-dog": {
  430. name: "Foo Dog",
  431. parents: ["mammal"]
  432. },
  433. "elephant": {
  434. name: "Elephant",
  435. parents: ["mammal"]
  436. },
  437. "eagle": {
  438. name: "Eagle",
  439. parents: ["bird-of-prey"]
  440. },
  441. "cow": {
  442. name: "Cow",
  443. parents: ["mammal"]
  444. },
  445. "crocodile": {
  446. name: "Crocodile",
  447. parents: ["reptile"]
  448. },
  449. "borzoi": {
  450. name: "Borzoi",
  451. parents: ["dog"]
  452. },
  453. "snake": {
  454. name: "Snake",
  455. parents: ["reptile"]
  456. },
  457. "horned-bush-viper": {
  458. name: "Horned Bush Viper",
  459. parents: ["viper"]
  460. },
  461. "cobra": {
  462. name: "Cobra",
  463. parents: ["snake"]
  464. },
  465. "harpy-eagle": {
  466. name: "Harpy Eagle",
  467. parents: ["eagle"]
  468. },
  469. "raptor": {
  470. name: "Raptor",
  471. parents: ["dinosaur"]
  472. },
  473. "dinosaur": {
  474. name: "Dinosaur",
  475. parents: ["reptile"]
  476. },
  477. "veilhound": {
  478. name: "Veilhound",
  479. parents: ["hellhound"]
  480. },
  481. "hellhound": {
  482. name: "Hellhound",
  483. parents: ["canine", "demon"]
  484. },
  485. "insect": {
  486. name: "Insect",
  487. parents: ["animal"]
  488. },
  489. "beetle": {
  490. name: "Beetle",
  491. parents: ["insect"]
  492. },
  493. "moth": {
  494. name: "Moth",
  495. parents: ["insect"]
  496. },
  497. "eastern-dragon": {
  498. name: "Eastern Dragon",
  499. parents: ["dragon"]
  500. },
  501. "jaguar": {
  502. name: "Jaguar",
  503. parents: ["cat"]
  504. },
  505. "horse": {
  506. name: "Horse",
  507. parents: ["mammal"]
  508. },
  509. "sergal": {
  510. name: "Sergal",
  511. parents: ["mammal", "avian", "vilous"]
  512. },
  513. "gryphon": {
  514. name: "Gryphon",
  515. parents: ["lion", "eagle"]
  516. },
  517. "robot": {
  518. name: "Robot",
  519. parents: ["machine"]
  520. },
  521. "medihound": {
  522. name: "Medihound",
  523. parents: ["robot", "dog"]
  524. },
  525. "sylveon": {
  526. name: "Sylveon",
  527. parents: ["pokemon"]
  528. },
  529. "catgirl": {
  530. name: "Catgirl",
  531. parents: ["mammal"]
  532. },
  533. "cowgirl": {
  534. name: "Cowgirl",
  535. parents: ["mammal"]
  536. },
  537. "pony": {
  538. name: "Pony",
  539. parents: ["horse"]
  540. },
  541. "rabbit": {
  542. name: "Rabbit",
  543. parents: ["leporidae"]
  544. },
  545. "fennec-fox": {
  546. name: "Fennec Fox",
  547. parents: ["fox"]
  548. },
  549. "azodian": {
  550. name: "Azodian",
  551. parents: ["mouse"]
  552. },
  553. "shiba-inu": {
  554. name: "Shiba Inu",
  555. parents: ["dog"]
  556. },
  557. "changeling": {
  558. name: "Changeling",
  559. parents: ["insect"]
  560. },
  561. "cheetah": {
  562. name: "Cheetah",
  563. parents: ["cat"]
  564. },
  565. "golden-jackal": {
  566. name: "Golden Jackal",
  567. parents: ["jackal"]
  568. },
  569. "manectric": {
  570. name: "Manectric",
  571. parents: ["pokemon", "wolf"]
  572. },
  573. "rat": {
  574. name: "Rat",
  575. parents: ["rodent"]
  576. },
  577. "rodent": {
  578. name: "Rodent",
  579. parents: ["mammal"]
  580. },
  581. "octocoon": {
  582. name: "Octocoon",
  583. parents: ["raccoon", "octopus"]
  584. },
  585. "octopus": {
  586. name: "Octopus",
  587. parents: ["fish"]
  588. },
  589. "werewolf": {
  590. name: "Werewolf",
  591. parents: ["wolf", "werebeast"]
  592. },
  593. "werebeast": {
  594. name: "Werebeast",
  595. parents: ["monster"]
  596. },
  597. "meerkat": {
  598. name: "Meerkat",
  599. parents: ["mammal"]
  600. },
  601. "human": {
  602. name: "Human",
  603. parents: ["mammal"]
  604. },
  605. "geth": {
  606. name: "Geth",
  607. parents: ["android"]
  608. },
  609. "husky": {
  610. name: "Husky",
  611. parents: ["dog"]
  612. },
  613. "long-eared-bat": {
  614. name: "Long Eared Bat",
  615. parents: ["bat"]
  616. },
  617. "lizard": {
  618. name: "Lizard",
  619. parents: ["reptile"]
  620. },
  621. "salamander": {
  622. name: "Salamander",
  623. parents: ["lizard"]
  624. },
  625. "chameleon": {
  626. name: "Chameleon",
  627. parents: ["lizard"]
  628. },
  629. "gecko": {
  630. name: "Gecko",
  631. parents: ["lizard"]
  632. },
  633. "kobold": {
  634. name: "Kobold",
  635. parents: ["reptile"]
  636. },
  637. "charizard": {
  638. name: "Charizard",
  639. parents: ["pokemon", "dragon"]
  640. },
  641. "lugia": {
  642. name: "Lugia",
  643. parents: ["pokemon", "avian"]
  644. },
  645. "cerberus": {
  646. name: "Cerberus",
  647. parents: ["dog"]
  648. },
  649. "tyrantrum": {
  650. name: "Tyrantrum",
  651. parents: ["pokemon"]
  652. },
  653. "lemur": {
  654. name: "Lemur",
  655. parents: ["mammal"]
  656. },
  657. "kelpie": {
  658. name: "Kelpie",
  659. parents: ["horse", "monster"]
  660. },
  661. "labrador": {
  662. name: "Labrador",
  663. parents: ["dog"]
  664. },
  665. "sylveon": {
  666. name: "Sylveon",
  667. parents: ["eeveelution"]
  668. },
  669. "eeveelution": {
  670. name: "Eeveelution",
  671. parents: ["pokemon", "cat"]
  672. },
  673. "polar-bear": {
  674. name: "Polar Bear",
  675. parents: ["bear"]
  676. },
  677. "bear": {
  678. name: "Bear",
  679. parents: ["mammal"]
  680. },
  681. "absol": {
  682. name: "Absol",
  683. parents: ["pokemon", "cat"]
  684. },
  685. "wolver": {
  686. name: "Wolver",
  687. parents: ["mammal"]
  688. },
  689. "rottweiler": {
  690. name: "Rottweiler",
  691. parents: ["dog"]
  692. },
  693. "zebra": {
  694. name: "Zebra",
  695. parents: ["horse"]
  696. },
  697. "yoshi": {
  698. name: "Yoshi",
  699. parents: ["dinosaur"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["polecat"]
  1800. },
  1801. "polecat": {
  1802. name: "Polecat",
  1803. parents: ["mustelid"]
  1804. },
  1805. "teshari": {
  1806. name: "Teshari",
  1807. parents: ["avian", "raptor"]
  1808. },
  1809. "alicorn": {
  1810. name: "Alicorn",
  1811. parents: ["horse"]
  1812. },
  1813. "atlas-moth": {
  1814. name: "Atlas Moth",
  1815. parents: ["moth"]
  1816. },
  1817. "owlbear": {
  1818. name: "Owlbear",
  1819. parents: ["owl", "bear", "monster"]
  1820. },
  1821. "owl": {
  1822. name: "Owl",
  1823. parents: ["avian"]
  1824. },
  1825. "silvertongue": {
  1826. name: "Silvertongue",
  1827. parents: ["reptile"]
  1828. },
  1829. "ahuizotl": {
  1830. name: "Ahuizotl",
  1831. parents: ["monster"]
  1832. },
  1833. "ender-dragon": {
  1834. name: "Ender Dragon",
  1835. parents: ["dragon"]
  1836. },
  1837. "bruhathkayosaurus": {
  1838. name: "Bruhathkayosaurus",
  1839. parents: ["sauropod"]
  1840. },
  1841. "sauropod": {
  1842. name: "Sauropod",
  1843. parents: ["dinosaur"]
  1844. },
  1845. "black-sable-antelope": {
  1846. name: "Black Sable Antelope",
  1847. parents: ["antelope"]
  1848. },
  1849. "slime": {
  1850. name: "Slime",
  1851. parents: ["goo"]
  1852. },
  1853. "utahraptor": {
  1854. name: "Utahraptor",
  1855. parents: ["raptor"]
  1856. },
  1857. "indian-giant-squirrel": {
  1858. name: "Indian Giant Squirrel",
  1859. parents: ["squirrel"]
  1860. },
  1861. "golden-retriever": {
  1862. name: "Golden Retriever",
  1863. parents: ["dog"]
  1864. },
  1865. "triceratops": {
  1866. name: "Triceratops",
  1867. parents: ["dinosaur"]
  1868. },
  1869. "drake": {
  1870. name: "Drake",
  1871. parents: ["dragon"]
  1872. },
  1873. "okapi": {
  1874. name: "Okapi",
  1875. parents: ["giraffe"]
  1876. },
  1877. "arctic-hare": {
  1878. name: "Arctic Hare",
  1879. parents: ["hare"]
  1880. },
  1881. "hare": {
  1882. name: "Hare",
  1883. parents: ["leporidae"]
  1884. },
  1885. "leporidae": {
  1886. name: "Leporidae",
  1887. parents: ["mammal"]
  1888. },
  1889. "leopard-gecko": {
  1890. name: "Leopard Gecko",
  1891. parents: ["gecko"]
  1892. },
  1893. "dreamspawn": {
  1894. name: "Dreamspawn",
  1895. parents: ["illusion"]
  1896. },
  1897. "illusion": {
  1898. name: "Illusion",
  1899. parents: []
  1900. },
  1901. "purrloin": {
  1902. name: "Purrloin",
  1903. parents: ["cat", "pokemon"]
  1904. },
  1905. "noivern": {
  1906. name: "Noivern",
  1907. parents: ["bat", "dragon", "pokemon"]
  1908. },
  1909. "hedgehog": {
  1910. name: "Hedgehog",
  1911. parents: ["mammal"]
  1912. },
  1913. "liger": {
  1914. name: "Liger",
  1915. parents: ["lion", "tiger", "hybrid"]
  1916. },
  1917. "hybrid": {
  1918. name: "Hybrid",
  1919. parents: []
  1920. },
  1921. "drider": {
  1922. name: "Drider",
  1923. parents: ["spider"]
  1924. },
  1925. "sabresune": {
  1926. name: "Sabresune",
  1927. parents: ["kitsune", "sabertooth-tiger"]
  1928. },
  1929. "ditto": {
  1930. name: "Ditto",
  1931. parents: ["pokemon", "goo"]
  1932. },
  1933. "amogus": {
  1934. name: "Amogus",
  1935. parents: ["deity"]
  1936. },
  1937. "ferret": {
  1938. name: "Ferret",
  1939. parents: ["mustelid"]
  1940. },
  1941. "guinea-pig": {
  1942. name: "Guinea Pig",
  1943. parents: ["rodent"]
  1944. },
  1945. "viper": {
  1946. name: "Viper",
  1947. parents: ["snake"]
  1948. },
  1949. "cinderace": {
  1950. name: "Cinderace",
  1951. parents: ["pokemon", "rabbit"]
  1952. },
  1953. "caudin": {
  1954. name: "Caudin",
  1955. parents: ["dragon"]
  1956. },
  1957. "red-winged-blackbird": {
  1958. name: "Red-Winged Blackbird",
  1959. parents: ["avian"]
  1960. },
  1961. "hooded-wheater": {
  1962. name: "Hooded Wheater",
  1963. parents: ["passerine"]
  1964. },
  1965. "passerine": {
  1966. name: "Passerine",
  1967. parents: ["avian"]
  1968. },
  1969. "gieeg": {
  1970. name: "Gieeg",
  1971. parents: ["alien"]
  1972. },
  1973. "ringtail": {
  1974. name: "Ringtail",
  1975. parents: ["raccoon"]
  1976. },
  1977. "hisuian-zoroark": {
  1978. name: "Hisuian Zoroark",
  1979. parents: ["zoroark", "hisuian"]
  1980. },
  1981. "hisuian": {
  1982. name: "Hisuian",
  1983. parents: ["regional-pokemon"]
  1984. },
  1985. "regional-pokemon": {
  1986. name: "Regional Pokemon",
  1987. parents: ["pokemon"]
  1988. },
  1989. "cybeast": {
  1990. name: "Cybeast",
  1991. parents: ["computer-virus"]
  1992. },
  1993. "javira-dragon": {
  1994. name: "Javira Dragon",
  1995. parents: ["dragon"]
  1996. },
  1997. "koopew": {
  1998. name: "Koopew",
  1999. parents: ["dragon", "alien"]
  2000. },
  2001. "nevrean": {
  2002. name: "Nevrean",
  2003. parents: ["avian", "vilous"]
  2004. },
  2005. "vilous": {
  2006. name: "Vilous Species",
  2007. parents: []
  2008. },
  2009. "titanoboa": {
  2010. name: "Titanoboa",
  2011. parents: ["snake"]
  2012. },
  2013. "raichu": {
  2014. name: "Raichu",
  2015. parents: ["pikachu"]
  2016. },
  2017. "taur": {
  2018. name: "Taur",
  2019. parents: []
  2020. },
  2021. "continental-giant-rabbit": {
  2022. name: "Continental Giant Rabbit",
  2023. parents: ["rabbit"]
  2024. },
  2025. "demigryph": {
  2026. name: "Demigryph",
  2027. parents: ["lion", "eagle"]
  2028. },
  2029. "bald-eagle": {
  2030. name: "Bald Eagle",
  2031. parents: ["eagle"]
  2032. },
  2033. "kestrel": {
  2034. name: "Kestrel",
  2035. parents: ["falcon"]
  2036. },
  2037. "mockingbird": {
  2038. name: "Mockingbird",
  2039. parents: ["songbird"]
  2040. },
  2041. "songbird": {
  2042. name: "Songbird",
  2043. parents: ["avian"]
  2044. },
  2045. "bird-of-prey": {
  2046. name: "Bird of Prey",
  2047. parents: ["avian"]
  2048. },
  2049. "marowak": {
  2050. name: "Marowak",
  2051. parents: ["pokemon", "reptile"]
  2052. },
  2053. "joltik": {
  2054. name: "Joltik",
  2055. parents: ["pokemon", "insect"]
  2056. },
  2057. "mink": {
  2058. name: "Mink",
  2059. parents: ["mustelid"]
  2060. },
  2061. "sandcat": {
  2062. name: "Sandcat",
  2063. parents: ["cat"]
  2064. },
  2065. "hrothgar": {
  2066. name: "Hrothgar",
  2067. parents: ["cat"]
  2068. },
  2069. "garchomp": {
  2070. name: "Garchomp",
  2071. parents: ["dragon", "pokemon"]
  2072. },
  2073. "nargacuga": {
  2074. name: "Nargacuga",
  2075. parents: ["monster-hunter"]
  2076. },
  2077. "sable": {
  2078. name: "Sable",
  2079. parents: ["marten"]
  2080. },
  2081. "deino": {
  2082. name: "Deino",
  2083. parents: ["pokemon", "dinosaur"]
  2084. },
  2085. "housecat": {
  2086. name: "Housecat",
  2087. parents: ["cat"]
  2088. },
  2089. "bombay-cat": {
  2090. name: "Bombay Cat",
  2091. parents: ["housecat"]
  2092. },
  2093. "maine-coon": {
  2094. name: "Maine Coon",
  2095. parents: ["housecat"]
  2096. },
  2097. "coelacanth": {
  2098. name: "Coelacanth",
  2099. parents: ["fish"]
  2100. },
  2101. "silvally": {
  2102. name: "Silvally",
  2103. parents: ["legendary-pokemon"]
  2104. },
  2105. "legendary-pokemon": {
  2106. name: "Legendary Pokemon",
  2107. parents: ["pokemon"]
  2108. },
  2109. "great-maccao": {
  2110. name: "Great Maccao",
  2111. parents: ["monster-hunter", "raptor"]
  2112. },
  2113. "shapeshifter": {
  2114. name: "shapeshifter",
  2115. parents: []
  2116. },
  2117. "obstagoon": {
  2118. name: "Obstagoon",
  2119. parents: ["zigzagoon"]
  2120. },
  2121. "thomsons-gazelle": {
  2122. name: "Thomsons Gazelle",
  2123. parents: ["gazelle"]
  2124. },
  2125. "gazelle": {
  2126. name: "Gazelle",
  2127. parents: ["antelope"]
  2128. },
  2129. "monkey": {
  2130. name: "Monkey",
  2131. parents: ["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. }
  2222. //species
  2223. function getSpeciesInfo(speciesList) {
  2224. let result = new Set();
  2225. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2226. result.add(entry)
  2227. });
  2228. return Array.from(result);
  2229. };
  2230. function getSpeciesInfoHelper(species) {
  2231. if (!speciesData[species]) {
  2232. console.warn(species + " doesn't exist");
  2233. return [];
  2234. }
  2235. if (speciesData[species].parents) {
  2236. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2237. } else {
  2238. return [species];
  2239. }
  2240. }
  2241. characterMakers.push(() => makeCharacter(
  2242. {
  2243. name: "Fen",
  2244. species: ["crux"],
  2245. description: {
  2246. title: "Bio",
  2247. text: "Very furry. Sheds on everything."
  2248. },
  2249. tags: [
  2250. "anthro",
  2251. "goo"
  2252. ]
  2253. },
  2254. {
  2255. front: {
  2256. height: math.unit(12, "feet"),
  2257. weight: math.unit(2400, "lb"),
  2258. preyCapacity: math.unit(1, "people"),
  2259. name: "Front",
  2260. image: {
  2261. source: "./media/characters/fen/front.svg",
  2262. extra: 1804/1562,
  2263. bottom: 205/2009
  2264. },
  2265. extraAttributes: {
  2266. pawSize: {
  2267. name: "Paw Size",
  2268. power: 2,
  2269. type: "area",
  2270. base: math.unit(0.35, "m^2")
  2271. }
  2272. }
  2273. },
  2274. diving: {
  2275. height: math.unit(4.9, "meters"),
  2276. weight: math.unit(2400, "lb"),
  2277. name: "Diving",
  2278. image: {
  2279. source: "./media/characters/fen/diving.svg"
  2280. }
  2281. },
  2282. sleeby: {
  2283. height: math.unit(3.45, "meters"),
  2284. weight: math.unit(2400, "lb"),
  2285. name: "Sleeby",
  2286. image: {
  2287. source: "./media/characters/fen/sleeby.svg"
  2288. }
  2289. },
  2290. goo: {
  2291. height: math.unit(12, "feet"),
  2292. weight: math.unit(3600, "lb"),
  2293. volume: math.unit(1000, "liters"),
  2294. preyCapacity: math.unit(6, "people"),
  2295. name: "Goo",
  2296. image: {
  2297. source: "./media/characters/fen/goo.svg",
  2298. extra: 1307/1071,
  2299. bottom: 134/1441
  2300. }
  2301. },
  2302. horror: {
  2303. height: math.unit(13.6, "feet"),
  2304. weight: math.unit(2400, "lb"),
  2305. preyCapacity: math.unit(1, "people"),
  2306. name: "Horror",
  2307. image: {
  2308. source: "./media/characters/fen/horror.svg",
  2309. extra: 893/797,
  2310. bottom: 0/893
  2311. }
  2312. },
  2313. gooNsfw: {
  2314. height: math.unit(12, "feet"),
  2315. weight: math.unit(3750, "lb"),
  2316. volume: math.unit(1000, "liters"),
  2317. preyCapacity: math.unit(6, "people"),
  2318. name: "Goo (NSFW)",
  2319. image: {
  2320. source: "./media/characters/fen/goo-nsfw.svg",
  2321. extra: 1875/1734,
  2322. bottom: 122/1997
  2323. }
  2324. },
  2325. maw: {
  2326. height: math.unit(5.03, "feet"),
  2327. name: "Maw",
  2328. image: {
  2329. source: "./media/characters/fen/maw.svg"
  2330. }
  2331. },
  2332. gooCeiling: {
  2333. height: math.unit(6.6, "feet"),
  2334. weight: math.unit(3000, "lb"),
  2335. volume: math.unit(1000, "liters"),
  2336. preyCapacity: math.unit(6, "people"),
  2337. name: "Maw (Goo)",
  2338. image: {
  2339. source: "./media/characters/fen/goo-maw.svg"
  2340. }
  2341. },
  2342. paw: {
  2343. height: math.unit(3.77, "feet"),
  2344. name: "Paw",
  2345. image: {
  2346. source: "./media/characters/fen/paw.svg"
  2347. },
  2348. extraAttributes: {
  2349. "toeSize": {
  2350. name: "Toe Size",
  2351. power: 2,
  2352. type: "area",
  2353. base: math.unit(0.02875, "m^2")
  2354. },
  2355. "pawSize": {
  2356. name: "Paw Size",
  2357. power: 2,
  2358. type: "area",
  2359. base: math.unit(0.378, "m^2")
  2360. },
  2361. }
  2362. },
  2363. tail: {
  2364. height: math.unit(12.1, "feet"),
  2365. name: "Tail",
  2366. image: {
  2367. source: "./media/characters/fen/tail.svg"
  2368. }
  2369. },
  2370. tailFull: {
  2371. height: math.unit(12.1, "feet"),
  2372. name: "Full Tail",
  2373. image: {
  2374. source: "./media/characters/fen/tail-full.svg"
  2375. }
  2376. },
  2377. back: {
  2378. height: math.unit(12, "feet"),
  2379. weight: math.unit(2400, "lb"),
  2380. name: "Back",
  2381. image: {
  2382. source: "./media/characters/fen/back.svg",
  2383. },
  2384. info: {
  2385. description: {
  2386. mode: "append",
  2387. text: "\n\nHe is not currently looking at you."
  2388. }
  2389. }
  2390. },
  2391. full: {
  2392. height: math.unit(1.85, "meter"),
  2393. weight: math.unit(3200, "lb"),
  2394. name: "Full",
  2395. image: {
  2396. source: "./media/characters/fen/full.svg",
  2397. extra: 1133/859,
  2398. bottom: 145/1278
  2399. },
  2400. info: {
  2401. description: {
  2402. mode: "append",
  2403. text: "\n\nMunch."
  2404. }
  2405. }
  2406. },
  2407. gooLounging: {
  2408. height: math.unit(4.53, "feet"),
  2409. weight: math.unit(3000, "lb"),
  2410. preyCapacity: math.unit(6, "people"),
  2411. name: "Goo (Lounging)",
  2412. image: {
  2413. source: "./media/characters/fen/goo-lounging.svg",
  2414. bottom: 116 / 613
  2415. }
  2416. },
  2417. lounging: {
  2418. height: math.unit(10.52, "feet"),
  2419. weight: math.unit(2400, "lb"),
  2420. name: "Lounging",
  2421. image: {
  2422. source: "./media/characters/fen/lounging.svg"
  2423. }
  2424. },
  2425. },
  2426. [
  2427. {
  2428. name: "Small",
  2429. height: math.unit(2.2428, "meter")
  2430. },
  2431. {
  2432. name: "Normal",
  2433. height: math.unit(12, "feet"),
  2434. default: true,
  2435. },
  2436. {
  2437. name: "Big",
  2438. height: math.unit(20, "feet")
  2439. },
  2440. {
  2441. name: "Minimacro",
  2442. height: math.unit(40, "feet"),
  2443. info: {
  2444. description: {
  2445. mode: "append",
  2446. text: "\n\nTOO DAMN BIG"
  2447. }
  2448. }
  2449. },
  2450. {
  2451. name: "Macro",
  2452. height: math.unit(100, "feet"),
  2453. info: {
  2454. description: {
  2455. mode: "append",
  2456. text: "\n\nTOO DAMN BIG"
  2457. }
  2458. }
  2459. },
  2460. {
  2461. name: "Megamacro",
  2462. height: math.unit(2, "miles")
  2463. },
  2464. {
  2465. name: "Gigamacro",
  2466. height: math.unit(10, "earths")
  2467. },
  2468. ]
  2469. ))
  2470. characterMakers.push(() => makeCharacter(
  2471. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2472. {
  2473. front: {
  2474. height: math.unit(183, "cm"),
  2475. weight: math.unit(80, "kg"),
  2476. name: "Front",
  2477. image: {
  2478. source: "./media/characters/sofia-fluttertail/front.svg",
  2479. bottom: 0.01,
  2480. extra: 2154 / 2081
  2481. }
  2482. },
  2483. frontAlt: {
  2484. height: math.unit(183, "cm"),
  2485. weight: math.unit(80, "kg"),
  2486. name: "Front (alt)",
  2487. image: {
  2488. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(183, "cm"),
  2493. weight: math.unit(80, "kg"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/sofia-fluttertail/back.svg"
  2497. }
  2498. },
  2499. kneeling: {
  2500. height: math.unit(125, "cm"),
  2501. weight: math.unit(80, "kg"),
  2502. name: "Kneeling",
  2503. image: {
  2504. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2505. extra: 1033 / 977,
  2506. bottom: 23.7 / 1057
  2507. }
  2508. },
  2509. maw: {
  2510. height: math.unit(183 / 5, "cm"),
  2511. name: "Maw",
  2512. image: {
  2513. source: "./media/characters/sofia-fluttertail/maw.svg"
  2514. }
  2515. },
  2516. mawcloseup: {
  2517. height: math.unit(183 / 5 * 0.41, "cm"),
  2518. name: "Maw (Closeup)",
  2519. image: {
  2520. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2521. }
  2522. },
  2523. paws: {
  2524. height: math.unit(1.17, "feet"),
  2525. name: "Paws",
  2526. image: {
  2527. source: "./media/characters/sofia-fluttertail/paws.svg",
  2528. extra: 851 / 851,
  2529. bottom: 17 / 868
  2530. }
  2531. },
  2532. },
  2533. [
  2534. {
  2535. name: "Normal",
  2536. height: math.unit(1.83, "meter")
  2537. },
  2538. {
  2539. name: "Size Thief",
  2540. height: math.unit(18, "feet")
  2541. },
  2542. {
  2543. name: "50 Foot Collie",
  2544. height: math.unit(50, "feet")
  2545. },
  2546. {
  2547. name: "Macro",
  2548. height: math.unit(96, "feet"),
  2549. default: true
  2550. },
  2551. {
  2552. name: "Megamerger",
  2553. height: math.unit(650, "feet")
  2554. },
  2555. ]
  2556. ))
  2557. characterMakers.push(() => makeCharacter(
  2558. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2559. {
  2560. front: {
  2561. height: math.unit(7, "feet"),
  2562. weight: math.unit(100, "kg"),
  2563. name: "Front",
  2564. image: {
  2565. source: "./media/characters/march/front.svg",
  2566. extra: 1992/1851,
  2567. bottom: 39/2031
  2568. }
  2569. },
  2570. foot: {
  2571. height: math.unit(0.9, "feet"),
  2572. name: "Foot",
  2573. image: {
  2574. source: "./media/characters/march/foot.svg"
  2575. }
  2576. },
  2577. },
  2578. [
  2579. {
  2580. name: "Normal",
  2581. height: math.unit(7.9, "feet")
  2582. },
  2583. {
  2584. name: "Macro",
  2585. height: math.unit(220, "meters")
  2586. },
  2587. {
  2588. name: "Megamacro",
  2589. height: math.unit(2.98, "km"),
  2590. default: true
  2591. },
  2592. {
  2593. name: "Gigamacro",
  2594. height: math.unit(15963, "km")
  2595. },
  2596. {
  2597. name: "Teramacro",
  2598. height: math.unit(2980000000, "km")
  2599. },
  2600. {
  2601. name: "Examacro",
  2602. height: math.unit(250, "parsecs")
  2603. },
  2604. ]
  2605. ))
  2606. characterMakers.push(() => makeCharacter(
  2607. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2608. {
  2609. front: {
  2610. height: math.unit(6, "feet"),
  2611. weight: math.unit(60, "kg"),
  2612. name: "Front",
  2613. image: {
  2614. source: "./media/characters/noir/front.svg",
  2615. extra: 1,
  2616. bottom: 0.032
  2617. }
  2618. },
  2619. },
  2620. [
  2621. {
  2622. name: "Normal",
  2623. height: math.unit(6.6, "feet")
  2624. },
  2625. {
  2626. name: "Macro",
  2627. height: math.unit(500, "feet")
  2628. },
  2629. {
  2630. name: "Megamacro",
  2631. height: math.unit(2.5, "km"),
  2632. default: true
  2633. },
  2634. {
  2635. name: "Gigamacro",
  2636. height: math.unit(22500, "km")
  2637. },
  2638. {
  2639. name: "Teramacro",
  2640. height: math.unit(2500000000, "km")
  2641. },
  2642. {
  2643. name: "Examacro",
  2644. height: math.unit(200, "parsecs")
  2645. },
  2646. ]
  2647. ))
  2648. characterMakers.push(() => makeCharacter(
  2649. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2650. {
  2651. front: {
  2652. height: math.unit(7, "feet"),
  2653. weight: math.unit(100, "kg"),
  2654. name: "Front",
  2655. image: {
  2656. source: "./media/characters/okuri/front.svg",
  2657. extra: 739/665,
  2658. bottom: 39/778
  2659. }
  2660. },
  2661. back: {
  2662. height: math.unit(7, "feet"),
  2663. weight: math.unit(100, "kg"),
  2664. name: "Back",
  2665. image: {
  2666. source: "./media/characters/okuri/back.svg",
  2667. extra: 734/653,
  2668. bottom: 13/747
  2669. }
  2670. },
  2671. sitting: {
  2672. height: math.unit(2.95, "feet"),
  2673. weight: math.unit(100, "kg"),
  2674. name: "Sitting",
  2675. image: {
  2676. source: "./media/characters/okuri/sitting.svg",
  2677. extra: 370/318,
  2678. bottom: 99/469
  2679. }
  2680. },
  2681. },
  2682. [
  2683. {
  2684. name: "Smallest",
  2685. height: math.unit(5 + 2/12, "feet")
  2686. },
  2687. {
  2688. name: "Smaller",
  2689. height: math.unit(300, "feet")
  2690. },
  2691. {
  2692. name: "Small",
  2693. height: math.unit(1000, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(1, "mile")
  2698. },
  2699. {
  2700. name: "Mega Macro (Small)",
  2701. height: math.unit(20, "km")
  2702. },
  2703. {
  2704. name: "Mega Macro (Large)",
  2705. height: math.unit(600, "km")
  2706. },
  2707. {
  2708. name: "Giga Macro",
  2709. height: math.unit(10000, "km")
  2710. },
  2711. {
  2712. name: "Normal",
  2713. height: math.unit(577560, "km"),
  2714. default: true
  2715. },
  2716. {
  2717. name: "Large",
  2718. height: math.unit(4, "galaxies")
  2719. },
  2720. {
  2721. name: "Largest",
  2722. height: math.unit(15, "multiverses")
  2723. },
  2724. ]
  2725. ))
  2726. characterMakers.push(() => makeCharacter(
  2727. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2728. {
  2729. front: {
  2730. height: math.unit(7, "feet"),
  2731. weight: math.unit(100, "kg"),
  2732. name: "Front",
  2733. image: {
  2734. source: "./media/characters/manny/front.svg",
  2735. extra: 1,
  2736. bottom: 0.06
  2737. }
  2738. },
  2739. back: {
  2740. height: math.unit(7, "feet"),
  2741. weight: math.unit(100, "kg"),
  2742. name: "Back",
  2743. image: {
  2744. source: "./media/characters/manny/back.svg",
  2745. extra: 1,
  2746. bottom: 0.014
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(7, "feet"),
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(78, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Macro+",
  2762. height: math.unit(300, "meters")
  2763. },
  2764. {
  2765. name: "Macro++",
  2766. height: math.unit(2400, "meters")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(5167, "meters")
  2771. },
  2772. {
  2773. name: "Gigamacro",
  2774. height: math.unit(41769, "miles")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/adake/front-1.svg"
  2787. }
  2788. },
  2789. frontAlt: {
  2790. height: math.unit(7, "feet"),
  2791. weight: math.unit(100, "kg"),
  2792. name: "Front (Alt)",
  2793. image: {
  2794. source: "./media/characters/adake/front-2.svg",
  2795. extra: 1,
  2796. bottom: 0.01
  2797. }
  2798. },
  2799. back: {
  2800. height: math.unit(7, "feet"),
  2801. weight: math.unit(100, "kg"),
  2802. name: "Back",
  2803. image: {
  2804. source: "./media/characters/adake/back.svg",
  2805. }
  2806. },
  2807. kneel: {
  2808. height: math.unit(5.385, "feet"),
  2809. weight: math.unit(100, "kg"),
  2810. name: "Kneeling",
  2811. image: {
  2812. source: "./media/characters/adake/kneel.svg",
  2813. bottom: 0.052
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(7, "feet"),
  2821. },
  2822. {
  2823. name: "Macro",
  2824. height: math.unit(78, "feet"),
  2825. default: true
  2826. },
  2827. {
  2828. name: "Macro+",
  2829. height: math.unit(300, "meters")
  2830. },
  2831. {
  2832. name: "Macro++",
  2833. height: math.unit(2400, "meters")
  2834. },
  2835. {
  2836. name: "Megamacro",
  2837. height: math.unit(5167, "meters")
  2838. },
  2839. {
  2840. name: "Gigamacro",
  2841. height: math.unit(41769, "miles")
  2842. },
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2847. {
  2848. front: {
  2849. height: math.unit(1.65, "meters"),
  2850. weight: math.unit(50, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/elijah/front.svg",
  2854. extra: 858 / 830,
  2855. bottom: 95.5 / 953.8559
  2856. }
  2857. },
  2858. back: {
  2859. height: math.unit(1.65, "meters"),
  2860. weight: math.unit(50, "kg"),
  2861. name: "Back",
  2862. image: {
  2863. source: "./media/characters/elijah/back.svg",
  2864. extra: 895 / 850,
  2865. bottom: 5.3 / 897.956
  2866. }
  2867. },
  2868. frontNsfw: {
  2869. height: math.unit(1.65, "meters"),
  2870. weight: math.unit(50, "kg"),
  2871. name: "Front (NSFW)",
  2872. image: {
  2873. source: "./media/characters/elijah/front-nsfw.svg",
  2874. extra: 858 / 830,
  2875. bottom: 95.5 / 953.8559
  2876. }
  2877. },
  2878. backNsfw: {
  2879. height: math.unit(1.65, "meters"),
  2880. weight: math.unit(50, "kg"),
  2881. name: "Back (NSFW)",
  2882. image: {
  2883. source: "./media/characters/elijah/back-nsfw.svg",
  2884. extra: 895 / 850,
  2885. bottom: 5.3 / 897.956
  2886. }
  2887. },
  2888. dick: {
  2889. height: math.unit(1, "feet"),
  2890. name: "Dick",
  2891. image: {
  2892. source: "./media/characters/elijah/dick.svg"
  2893. }
  2894. },
  2895. beakOpen: {
  2896. height: math.unit(1.25, "feet"),
  2897. name: "Beak (Open)",
  2898. image: {
  2899. source: "./media/characters/elijah/beak-open.svg"
  2900. }
  2901. },
  2902. beakShut: {
  2903. height: math.unit(1.25, "feet"),
  2904. name: "Beak (Shut)",
  2905. image: {
  2906. source: "./media/characters/elijah/beak-shut.svg"
  2907. }
  2908. },
  2909. footFlexing: {
  2910. height: math.unit(1.61, "feet"),
  2911. name: "Foot (Flexing)",
  2912. image: {
  2913. source: "./media/characters/elijah/foot-flexing.svg"
  2914. }
  2915. },
  2916. footStepping: {
  2917. height: math.unit(1.44, "feet"),
  2918. name: "Foot (Stepping)",
  2919. image: {
  2920. source: "./media/characters/elijah/foot-stepping.svg"
  2921. }
  2922. },
  2923. plantigradeLeg: {
  2924. height: math.unit(2.34, "feet"),
  2925. name: "Plantigrade Leg",
  2926. image: {
  2927. source: "./media/characters/elijah/plantigrade-leg.svg"
  2928. }
  2929. },
  2930. plantigradeFootLeft: {
  2931. height: math.unit(0.9, "feet"),
  2932. name: "Plantigrade Foot (Left)",
  2933. image: {
  2934. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2935. }
  2936. },
  2937. plantigradeFootRight: {
  2938. height: math.unit(0.9, "feet"),
  2939. name: "Plantigrade Foot (Right)",
  2940. image: {
  2941. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2942. }
  2943. },
  2944. },
  2945. [
  2946. {
  2947. name: "Normal",
  2948. height: math.unit(1.65, "meters")
  2949. },
  2950. {
  2951. name: "Macro",
  2952. height: math.unit(55, "meters"),
  2953. default: true
  2954. },
  2955. {
  2956. name: "Macro+",
  2957. height: math.unit(105, "meters")
  2958. },
  2959. ]
  2960. ))
  2961. characterMakers.push(() => makeCharacter(
  2962. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2963. {
  2964. front: {
  2965. height: math.unit(7 + 2/12, "feet"),
  2966. weight: math.unit(320, "kg"),
  2967. preyCapacity: math.unit(0.276549935, "people"),
  2968. name: "Front",
  2969. image: {
  2970. source: "./media/characters/rai/front.svg",
  2971. extra: 1802/1696,
  2972. bottom: 68/1870
  2973. },
  2974. form: "anthro",
  2975. default: true
  2976. },
  2977. frontDressed: {
  2978. height: math.unit(7 + 2/12, "feet"),
  2979. weight: math.unit(320, "kg"),
  2980. preyCapacity: math.unit(0.276549935, "people"),
  2981. name: "Front (Dressed)",
  2982. image: {
  2983. source: "./media/characters/rai/front-dressed.svg",
  2984. extra: 1802/1696,
  2985. bottom: 68/1870
  2986. },
  2987. form: "anthro"
  2988. },
  2989. side: {
  2990. height: math.unit(7 + 2/12, "feet"),
  2991. weight: math.unit(320, "kg"),
  2992. preyCapacity: math.unit(0.276549935, "people"),
  2993. name: "Side",
  2994. image: {
  2995. source: "./media/characters/rai/side.svg",
  2996. extra: 1789/1710,
  2997. bottom: 115/1904
  2998. },
  2999. form: "anthro"
  3000. },
  3001. back: {
  3002. height: math.unit(7 + 2/12, "feet"),
  3003. weight: math.unit(320, "kg"),
  3004. preyCapacity: math.unit(0.276549935, "people"),
  3005. name: "Back",
  3006. image: {
  3007. source: "./media/characters/rai/back.svg",
  3008. extra: 1770/1707,
  3009. bottom: 28/1798
  3010. },
  3011. form: "anthro"
  3012. },
  3013. feral: {
  3014. height: math.unit(9.5, "feet"),
  3015. weight: math.unit(640, "kg"),
  3016. preyCapacity: math.unit(4, "people"),
  3017. name: "Feral",
  3018. image: {
  3019. source: "./media/characters/rai/feral.svg",
  3020. extra: 945/553,
  3021. bottom: 176/1121
  3022. },
  3023. form: "feral",
  3024. default: true
  3025. },
  3026. dragon: {
  3027. height: math.unit(23, "feet"),
  3028. weight: math.unit(50000, "lb"),
  3029. name: "Dragon",
  3030. image: {
  3031. source: "./media/characters/rai/dragon.svg",
  3032. extra: 2498 / 2030,
  3033. bottom: 85.2 / 2584
  3034. },
  3035. form: "dragon",
  3036. default: true
  3037. },
  3038. maw: {
  3039. height: math.unit(1.69, "feet"),
  3040. name: "Maw",
  3041. image: {
  3042. source: "./media/characters/rai/maw.svg"
  3043. },
  3044. form: "anthro"
  3045. },
  3046. },
  3047. [
  3048. {
  3049. name: "Normal",
  3050. height: math.unit(7 + 2/12, "feet"),
  3051. form: "anthro"
  3052. },
  3053. {
  3054. name: "Big",
  3055. height: math.unit(11, "feet"),
  3056. form: "anthro"
  3057. },
  3058. {
  3059. name: "Minimacro",
  3060. height: math.unit(77, "feet"),
  3061. form: "anthro"
  3062. },
  3063. {
  3064. name: "Macro",
  3065. height: math.unit(302, "feet"),
  3066. default: true,
  3067. form: "anthro"
  3068. },
  3069. {
  3070. name: "Normal",
  3071. height: math.unit(9.5, "feet"),
  3072. form: "feral",
  3073. default: true
  3074. },
  3075. {
  3076. name: "Normal",
  3077. height: math.unit(23, "feet"),
  3078. form: "dragon",
  3079. default: true
  3080. }
  3081. ],
  3082. {
  3083. "anthro": {
  3084. name: "Anthro",
  3085. default: true
  3086. },
  3087. "feral": {
  3088. name: "Feral",
  3089. },
  3090. "dragon": {
  3091. name: "Dragon",
  3092. },
  3093. }
  3094. ))
  3095. characterMakers.push(() => makeCharacter(
  3096. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3097. {
  3098. frontDressed: {
  3099. height: math.unit(216, "feet"),
  3100. weight: math.unit(7000000, "lb"),
  3101. preyCapacity: math.unit(1321, "people"),
  3102. name: "Front (Dressed)",
  3103. image: {
  3104. source: "./media/characters/jazzy/front-dressed.svg",
  3105. extra: 2738 / 2651,
  3106. bottom: 41.8 / 2786
  3107. }
  3108. },
  3109. backDressed: {
  3110. height: math.unit(216, "feet"),
  3111. weight: math.unit(7000000, "lb"),
  3112. preyCapacity: math.unit(1321, "people"),
  3113. name: "Back (Dressed)",
  3114. image: {
  3115. source: "./media/characters/jazzy/back-dressed.svg",
  3116. extra: 2775 / 2673,
  3117. bottom: 36.8 / 2817
  3118. }
  3119. },
  3120. front: {
  3121. height: math.unit(216, "feet"),
  3122. weight: math.unit(7000000, "lb"),
  3123. preyCapacity: math.unit(1321, "people"),
  3124. name: "Front",
  3125. image: {
  3126. source: "./media/characters/jazzy/front.svg",
  3127. extra: 2738 / 2651,
  3128. bottom: 41.8 / 2786
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(216, "feet"),
  3133. weight: math.unit(7000000, "lb"),
  3134. preyCapacity: math.unit(1321, "people"),
  3135. name: "Back",
  3136. image: {
  3137. source: "./media/characters/jazzy/back.svg",
  3138. extra: 2775 / 2673,
  3139. bottom: 36.8 / 2817
  3140. }
  3141. },
  3142. maw: {
  3143. height: math.unit(20, "feet"),
  3144. name: "Maw",
  3145. image: {
  3146. source: "./media/characters/jazzy/maw.svg"
  3147. }
  3148. },
  3149. paws: {
  3150. height: math.unit(27.5, "feet"),
  3151. name: "Paws",
  3152. image: {
  3153. source: "./media/characters/jazzy/paws.svg"
  3154. }
  3155. },
  3156. eye: {
  3157. height: math.unit(4.4, "feet"),
  3158. name: "Eye",
  3159. image: {
  3160. source: "./media/characters/jazzy/eye.svg"
  3161. }
  3162. },
  3163. droneOffense: {
  3164. height: math.unit(9.5, "inches"),
  3165. name: "Drone (Offense)",
  3166. image: {
  3167. source: "./media/characters/jazzy/drone-offense.svg"
  3168. }
  3169. },
  3170. droneRecon: {
  3171. height: math.unit(9.5, "inches"),
  3172. name: "Drone (Recon)",
  3173. image: {
  3174. source: "./media/characters/jazzy/drone-recon.svg"
  3175. }
  3176. },
  3177. droneDefense: {
  3178. height: math.unit(9.5, "inches"),
  3179. name: "Drone (Defense)",
  3180. image: {
  3181. source: "./media/characters/jazzy/drone-defense.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Macro",
  3188. height: math.unit(216, "feet"),
  3189. default: true
  3190. },
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(9 + 6/12, "feet"),
  3198. weight: math.unit(700, "lb"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/flamm/front.svg",
  3202. extra: 1736/1596,
  3203. bottom: 93/1829
  3204. }
  3205. },
  3206. buff: {
  3207. height: math.unit(9 + 6/12, "feet"),
  3208. weight: math.unit(950, "lb"),
  3209. name: "Buff",
  3210. image: {
  3211. source: "./media/characters/flamm/buff.svg",
  3212. extra: 3018/2874,
  3213. bottom: 221/3239
  3214. }
  3215. },
  3216. },
  3217. [
  3218. {
  3219. name: "Normal",
  3220. height: math.unit(9.5, "feet")
  3221. },
  3222. {
  3223. name: "Macro",
  3224. height: math.unit(200, "feet"),
  3225. default: true
  3226. },
  3227. ]
  3228. ))
  3229. characterMakers.push(() => makeCharacter(
  3230. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3231. {
  3232. front: {
  3233. height: math.unit(5 + 3/12, "feet"),
  3234. weight: math.unit(60, "kg"),
  3235. name: "Front",
  3236. image: {
  3237. source: "./media/characters/zephiro/front.svg",
  3238. extra: 1873/1761,
  3239. bottom: 147/2020
  3240. }
  3241. },
  3242. side: {
  3243. height: math.unit(5 + 3/12, "feet"),
  3244. weight: math.unit(60, "kg"),
  3245. name: "Side",
  3246. image: {
  3247. source: "./media/characters/zephiro/side.svg",
  3248. extra: 1929/1827,
  3249. bottom: 65/1994
  3250. }
  3251. },
  3252. back: {
  3253. height: math.unit(5 + 3/12, "feet"),
  3254. weight: math.unit(60, "kg"),
  3255. name: "Back",
  3256. image: {
  3257. source: "./media/characters/zephiro/back.svg",
  3258. extra: 1926/1816,
  3259. bottom: 41/1967
  3260. }
  3261. },
  3262. hand: {
  3263. height: math.unit(0.68, "feet"),
  3264. name: "Hand",
  3265. image: {
  3266. source: "./media/characters/zephiro/hand.svg"
  3267. }
  3268. },
  3269. paw: {
  3270. height: math.unit(1, "feet"),
  3271. name: "Paw",
  3272. image: {
  3273. source: "./media/characters/zephiro/paw.svg"
  3274. }
  3275. },
  3276. beans: {
  3277. height: math.unit(0.93, "feet"),
  3278. name: "Beans",
  3279. image: {
  3280. source: "./media/characters/zephiro/beans.svg"
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Micro",
  3287. height: math.unit(3, "inches")
  3288. },
  3289. {
  3290. name: "Normal",
  3291. height: math.unit(5 + 3 / 12, "feet"),
  3292. default: true
  3293. },
  3294. {
  3295. name: "Macro",
  3296. height: math.unit(118, "feet")
  3297. },
  3298. ]
  3299. ))
  3300. characterMakers.push(() => makeCharacter(
  3301. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3302. {
  3303. front: {
  3304. height: math.unit(5, "feet"),
  3305. weight: math.unit(90, "kg"),
  3306. preyCapacity: math.unit(14, "people"),
  3307. name: "Front",
  3308. image: {
  3309. source: "./media/characters/fory/front.svg",
  3310. extra: 2862 / 2674,
  3311. bottom: 180 / 3043.8
  3312. },
  3313. form: "weaselbun",
  3314. default: true,
  3315. extraAttributes: {
  3316. "pawSize": {
  3317. name: "Paw Size",
  3318. power: 2,
  3319. type: "area",
  3320. base: math.unit(0.1596, "m^2")
  3321. },
  3322. "pawLength": {
  3323. name: "Paw Length",
  3324. power: 1,
  3325. type: "length",
  3326. base: math.unit(0.7, "m")
  3327. }
  3328. }
  3329. },
  3330. back: {
  3331. height: math.unit(5, "feet"),
  3332. weight: math.unit(90, "kg"),
  3333. preyCapacity: math.unit(14, "people"),
  3334. name: "Back",
  3335. image: {
  3336. source: "./media/characters/fory/back.svg",
  3337. extra: 1790/1672,
  3338. bottom: 84/1874
  3339. },
  3340. form: "weaselbun",
  3341. extraAttributes: {
  3342. "pawSize": {
  3343. name: "Paw Size",
  3344. power: 2,
  3345. type: "area",
  3346. base: math.unit(0.1596, "m^2")
  3347. },
  3348. "pawLength": {
  3349. name: "Paw Length",
  3350. power: 1,
  3351. type: "length",
  3352. base: math.unit(0.7, "m")
  3353. }
  3354. }
  3355. },
  3356. paw: {
  3357. height: math.unit(2.14, "feet"),
  3358. name: "Paw",
  3359. image: {
  3360. source: "./media/characters/fory/paw.svg"
  3361. },
  3362. form: "weaselbun",
  3363. extraAttributes: {
  3364. "pawSize": {
  3365. name: "Paw Size",
  3366. power: 2,
  3367. type: "area",
  3368. base: math.unit(0.1596, "m^2")
  3369. },
  3370. "pawLength": {
  3371. name: "Paw Length",
  3372. power: 1,
  3373. type: "length",
  3374. base: math.unit(0.48, "m")
  3375. }
  3376. }
  3377. },
  3378. bunBack: {
  3379. height: math.unit(3, "feet"),
  3380. weight: math.unit(20, "kg"),
  3381. preyCapacity: math.unit(3, "people"),
  3382. name: "Back",
  3383. image: {
  3384. source: "./media/characters/fory/bun-back.svg",
  3385. extra: 1749/1564,
  3386. bottom: 246/1995
  3387. },
  3388. form: "bun",
  3389. default: true,
  3390. extraAttributes: {
  3391. "pawSize": {
  3392. name: "Paw Size",
  3393. power: 2,
  3394. type: "area",
  3395. base: math.unit(0.072, "m^2")
  3396. },
  3397. "pawLength": {
  3398. name: "Paw Length",
  3399. power: 1,
  3400. type: "length",
  3401. base: math.unit(0.45, "m")
  3402. }
  3403. }
  3404. },
  3405. },
  3406. [
  3407. {
  3408. name: "Normal",
  3409. height: math.unit(5, "feet"),
  3410. form: "weaselbun"
  3411. },
  3412. {
  3413. name: "Macro",
  3414. height: math.unit(50, "feet"),
  3415. default: true,
  3416. form: "weaselbun"
  3417. },
  3418. {
  3419. name: "Megamacro",
  3420. height: math.unit(10, "miles"),
  3421. form: "weaselbun"
  3422. },
  3423. {
  3424. name: "Gigamacro",
  3425. height: math.unit(5, "earths"),
  3426. form: "weaselbun"
  3427. },
  3428. {
  3429. name: "Normal",
  3430. height: math.unit(3, "feet"),
  3431. default: true,
  3432. form: "bun"
  3433. },
  3434. {
  3435. name: "Fun-Size",
  3436. height: math.unit(12, "feet"),
  3437. form: "bun"
  3438. },
  3439. {
  3440. name: "Macro",
  3441. height: math.unit(100, "feet"),
  3442. form: "bun"
  3443. },
  3444. {
  3445. name: "Planetary",
  3446. height: math.unit(3, "earths"),
  3447. form: "bun"
  3448. },
  3449. ],
  3450. {
  3451. "weaselbun": {
  3452. name: "Weaselbun",
  3453. default: true
  3454. },
  3455. "bun": {
  3456. name: "Bun",
  3457. },
  3458. }
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(7, "feet"),
  3465. weight: math.unit(90, "kg"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/kurrikage/front.svg",
  3469. extra: 1845/1733,
  3470. bottom: 119/1964
  3471. }
  3472. },
  3473. back: {
  3474. height: math.unit(7, "feet"),
  3475. weight: math.unit(90, "kg"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/kurrikage/back.svg",
  3479. extra: 1790/1677,
  3480. bottom: 61/1851
  3481. }
  3482. },
  3483. dressed: {
  3484. height: math.unit(7, "feet"),
  3485. weight: math.unit(90, "kg"),
  3486. name: "Dressed",
  3487. image: {
  3488. source: "./media/characters/kurrikage/dressed.svg",
  3489. extra: 1845/1733,
  3490. bottom: 119/1964
  3491. }
  3492. },
  3493. foot: {
  3494. height: math.unit(1.5, "feet"),
  3495. name: "Foot",
  3496. image: {
  3497. source: "./media/characters/kurrikage/foot.svg"
  3498. }
  3499. },
  3500. staff: {
  3501. height: math.unit(6.7, "feet"),
  3502. name: "Staff",
  3503. image: {
  3504. source: "./media/characters/kurrikage/staff.svg"
  3505. }
  3506. },
  3507. peek: {
  3508. height: math.unit(1.05, "feet"),
  3509. name: "Peeking",
  3510. image: {
  3511. source: "./media/characters/kurrikage/peek.svg",
  3512. bottom: 0.08
  3513. }
  3514. },
  3515. },
  3516. [
  3517. {
  3518. name: "Normal",
  3519. height: math.unit(12, "feet"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Big",
  3524. height: math.unit(20, "feet")
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(500, "feet")
  3529. },
  3530. {
  3531. name: "Megamacro",
  3532. height: math.unit(20, "miles")
  3533. },
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(6, "feet"),
  3541. weight: math.unit(75, "kg"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/shingo/front.svg",
  3545. extra: 1900/1825,
  3546. bottom: 82/1982
  3547. }
  3548. },
  3549. side: {
  3550. height: math.unit(6, "feet"),
  3551. weight: math.unit(75, "kg"),
  3552. name: "Side",
  3553. image: {
  3554. source: "./media/characters/shingo/side.svg",
  3555. extra: 1930/1865,
  3556. bottom: 16/1946
  3557. }
  3558. },
  3559. back: {
  3560. height: math.unit(6, "feet"),
  3561. weight: math.unit(75, "kg"),
  3562. name: "Back",
  3563. image: {
  3564. source: "./media/characters/shingo/back.svg",
  3565. extra: 1922/1852,
  3566. bottom: 16/1938
  3567. }
  3568. },
  3569. frontDressed: {
  3570. height: math.unit(6, "feet"),
  3571. weight: math.unit(150, "lb"),
  3572. name: "Front-dressed",
  3573. image: {
  3574. source: "./media/characters/shingo/front-dressed.svg",
  3575. extra: 1900/1825,
  3576. bottom: 82/1982
  3577. }
  3578. },
  3579. paw: {
  3580. height: math.unit(1.29, "feet"),
  3581. name: "Paw",
  3582. image: {
  3583. source: "./media/characters/shingo/paw.svg"
  3584. }
  3585. },
  3586. hand: {
  3587. height: math.unit(1.07, "feet"),
  3588. name: "Hand",
  3589. image: {
  3590. source: "./media/characters/shingo/hand.svg"
  3591. }
  3592. },
  3593. frontAlt: {
  3594. height: math.unit(6, "feet"),
  3595. weight: math.unit(75, "kg"),
  3596. name: "Front (Alt)",
  3597. image: {
  3598. source: "./media/characters/shingo/front-alt.svg",
  3599. extra: 3511 / 3338,
  3600. bottom: 0.005
  3601. }
  3602. },
  3603. frontAlt2: {
  3604. height: math.unit(6, "feet"),
  3605. weight: math.unit(75, "kg"),
  3606. name: "Front (Alt 2)",
  3607. image: {
  3608. source: "./media/characters/shingo/front-alt-2.svg",
  3609. extra: 706/681,
  3610. bottom: 11/717
  3611. }
  3612. },
  3613. pawAlt: {
  3614. height: math.unit(1, "feet"),
  3615. name: "Paw (Alt)",
  3616. image: {
  3617. source: "./media/characters/shingo/paw-alt.svg"
  3618. }
  3619. },
  3620. },
  3621. [
  3622. {
  3623. name: "Micro",
  3624. height: math.unit(4, "inches")
  3625. },
  3626. {
  3627. name: "Normal",
  3628. height: math.unit(6, "feet"),
  3629. default: true
  3630. },
  3631. {
  3632. name: "Macro",
  3633. height: math.unit(108, "feet")
  3634. },
  3635. {
  3636. name: "Macro+",
  3637. height: math.unit(1500, "feet")
  3638. },
  3639. ]
  3640. ))
  3641. characterMakers.push(() => makeCharacter(
  3642. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3643. {
  3644. side: {
  3645. height: math.unit(6, "feet"),
  3646. weight: math.unit(75, "kg"),
  3647. name: "Side",
  3648. image: {
  3649. source: "./media/characters/aigey/side.svg"
  3650. }
  3651. },
  3652. },
  3653. [
  3654. {
  3655. name: "Macro",
  3656. height: math.unit(200, "feet"),
  3657. default: true
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(100, "miles")
  3662. },
  3663. ]
  3664. )
  3665. )
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(5 + 5 / 12, "feet"),
  3671. weight: math.unit(75, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/natasha/front.svg",
  3675. extra: 859 / 824,
  3676. bottom: 23 / 879.6
  3677. }
  3678. },
  3679. frontNsfw: {
  3680. height: math.unit(5 + 5 / 12, "feet"),
  3681. weight: math.unit(75, "kg"),
  3682. name: "Front (NSFW)",
  3683. image: {
  3684. source: "./media/characters/natasha/front-nsfw.svg",
  3685. extra: 859 / 824,
  3686. bottom: 23 / 879.6
  3687. }
  3688. },
  3689. frontErect: {
  3690. height: math.unit(5 + 5 / 12, "feet"),
  3691. weight: math.unit(75, "kg"),
  3692. name: "Front (Erect)",
  3693. image: {
  3694. source: "./media/characters/natasha/front-erect.svg",
  3695. extra: 859 / 824,
  3696. bottom: 23 / 879.6
  3697. }
  3698. },
  3699. back: {
  3700. height: math.unit(5 + 5 / 12, "feet"),
  3701. weight: math.unit(75, "kg"),
  3702. name: "Back",
  3703. image: {
  3704. source: "./media/characters/natasha/back.svg",
  3705. extra: 887.9 / 852.6,
  3706. bottom: 9.7 / 896.4
  3707. }
  3708. },
  3709. backAlt: {
  3710. height: math.unit(5 + 5 / 12, "feet"),
  3711. weight: math.unit(75, "kg"),
  3712. name: "Back (Alt)",
  3713. image: {
  3714. source: "./media/characters/natasha/back-alt.svg",
  3715. extra: 1236.7 / 1192,
  3716. bottom: 22.3 / 1258.2
  3717. }
  3718. },
  3719. dick: {
  3720. height: math.unit(1.772, "feet"),
  3721. name: "Dick",
  3722. image: {
  3723. source: "./media/characters/natasha/dick.svg"
  3724. }
  3725. },
  3726. paw: {
  3727. height: math.unit(0.250, "meters"),
  3728. name: "Paw",
  3729. image: {
  3730. source: "./media/characters/natasha/paw.svg"
  3731. },
  3732. extraAttributes: {
  3733. "toeSize": {
  3734. name: "Toe Size",
  3735. power: 2,
  3736. type: "area",
  3737. base: math.unit(0.0024, "m^2")
  3738. },
  3739. "padSize": {
  3740. name: "Pad Size",
  3741. power: 2,
  3742. type: "area",
  3743. base: math.unit(0.00889, "m^2")
  3744. },
  3745. "pawSize": {
  3746. name: "Paw Size",
  3747. power: 2,
  3748. type: "area",
  3749. base: math.unit(0.023667, "m^2")
  3750. },
  3751. }
  3752. },
  3753. },
  3754. [
  3755. {
  3756. name: "Shortstack",
  3757. height: math.unit(3, "feet"),
  3758. default: true
  3759. },
  3760. {
  3761. name: "Normal",
  3762. height: math.unit(5 + 5 / 12, "feet")
  3763. },
  3764. {
  3765. name: "Large",
  3766. height: math.unit(12, "feet")
  3767. },
  3768. {
  3769. name: "Macro",
  3770. height: math.unit(100, "feet")
  3771. },
  3772. {
  3773. name: "Macro+",
  3774. height: math.unit(260, "feet")
  3775. },
  3776. {
  3777. name: "Macro++",
  3778. height: math.unit(1, "mile")
  3779. },
  3780. ]
  3781. ))
  3782. characterMakers.push(() => makeCharacter(
  3783. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3784. {
  3785. front: {
  3786. height: math.unit(6, "feet"),
  3787. weight: math.unit(75, "kg"),
  3788. name: "Front",
  3789. image: {
  3790. source: "./media/characters/malik/front.svg",
  3791. extra: 1750/1561,
  3792. bottom: 80/1830
  3793. },
  3794. extraAttributes: {
  3795. "toeSize": {
  3796. name: "Toe Size",
  3797. power: 2,
  3798. type: "area",
  3799. base: math.unit(0.0159, "m^2")
  3800. },
  3801. "pawSize": {
  3802. name: "Paw Size",
  3803. power: 2,
  3804. type: "area",
  3805. base: math.unit(0.09834, "m^2")
  3806. },
  3807. }
  3808. },
  3809. side: {
  3810. height: math.unit(6, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Side",
  3813. image: {
  3814. source: "./media/characters/malik/side.svg",
  3815. extra: 1802/1685,
  3816. bottom: 42/1844
  3817. },
  3818. extraAttributes: {
  3819. "toeSize": {
  3820. name: "Toe Size",
  3821. power: 2,
  3822. type: "area",
  3823. base: math.unit(0.0159, "m^2")
  3824. },
  3825. "pawSize": {
  3826. name: "Paw Size",
  3827. power: 2,
  3828. type: "area",
  3829. base: math.unit(0.09834, "m^2")
  3830. },
  3831. }
  3832. },
  3833. back: {
  3834. height: math.unit(6, "feet"),
  3835. weight: math.unit(75, "kg"),
  3836. name: "Back",
  3837. image: {
  3838. source: "./media/characters/malik/back.svg",
  3839. extra: 1803/1607,
  3840. bottom: 33/1836
  3841. },
  3842. extraAttributes: {
  3843. "toeSize": {
  3844. name: "Toe Size",
  3845. power: 2,
  3846. type: "area",
  3847. base: math.unit(0.0159, "m^2")
  3848. },
  3849. "pawSize": {
  3850. name: "Paw Size",
  3851. power: 2,
  3852. type: "area",
  3853. base: math.unit(0.09834, "m^2")
  3854. },
  3855. }
  3856. },
  3857. },
  3858. [
  3859. {
  3860. name: "Macro",
  3861. height: math.unit(156, "feet"),
  3862. default: true
  3863. },
  3864. {
  3865. name: "Macro+",
  3866. height: math.unit(1188, "feet")
  3867. },
  3868. ]
  3869. ))
  3870. characterMakers.push(() => makeCharacter(
  3871. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3872. {
  3873. front: {
  3874. height: math.unit(6, "feet"),
  3875. weight: math.unit(75, "kg"),
  3876. name: "Front",
  3877. image: {
  3878. source: "./media/characters/sefer/front.svg",
  3879. extra: 848 / 659,
  3880. bottom: 28.3 / 876.442
  3881. }
  3882. },
  3883. back: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(75, "kg"),
  3886. name: "Back",
  3887. image: {
  3888. source: "./media/characters/sefer/back.svg",
  3889. extra: 864 / 695,
  3890. bottom: 10 / 871
  3891. }
  3892. },
  3893. frontDressed: {
  3894. height: math.unit(6, "feet"),
  3895. weight: math.unit(75, "kg"),
  3896. name: "Dressed",
  3897. image: {
  3898. source: "./media/characters/sefer/dressed.svg",
  3899. extra: 839 / 653,
  3900. bottom: 37.6 / 878
  3901. }
  3902. },
  3903. },
  3904. [
  3905. {
  3906. name: "Normal",
  3907. height: math.unit(6, "feet"),
  3908. default: true
  3909. },
  3910. {
  3911. name: "Big",
  3912. height: math.unit(8, "meters")
  3913. },
  3914. ]
  3915. ))
  3916. characterMakers.push(() => makeCharacter(
  3917. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3918. {
  3919. body: {
  3920. height: math.unit(2.2428, "meter"),
  3921. weight: math.unit(124.738, "kg"),
  3922. name: "Body",
  3923. image: {
  3924. extra: 1225 / 1050,
  3925. source: "./media/characters/north/front.svg"
  3926. }
  3927. }
  3928. },
  3929. [
  3930. {
  3931. name: "Micro",
  3932. height: math.unit(4, "inches")
  3933. },
  3934. {
  3935. name: "Macro",
  3936. height: math.unit(63, "meters")
  3937. },
  3938. {
  3939. name: "Megamacro",
  3940. height: math.unit(101, "miles"),
  3941. default: true
  3942. }
  3943. ]
  3944. ))
  3945. characterMakers.push(() => makeCharacter(
  3946. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3947. {
  3948. angled: {
  3949. height: math.unit(4, "meter"),
  3950. weight: math.unit(150, "kg"),
  3951. name: "Angled",
  3952. image: {
  3953. source: "./media/characters/talan/angled-sfw.svg",
  3954. bottom: 29 / 3734
  3955. }
  3956. },
  3957. angledNsfw: {
  3958. height: math.unit(4, "meter"),
  3959. weight: math.unit(150, "kg"),
  3960. name: "Angled (NSFW)",
  3961. image: {
  3962. source: "./media/characters/talan/angled-nsfw.svg",
  3963. bottom: 29 / 3734
  3964. }
  3965. },
  3966. frontNsfw: {
  3967. height: math.unit(4, "meter"),
  3968. weight: math.unit(150, "kg"),
  3969. name: "Front (NSFW)",
  3970. image: {
  3971. source: "./media/characters/talan/front-nsfw.svg",
  3972. bottom: 29 / 3734
  3973. }
  3974. },
  3975. sideNsfw: {
  3976. height: math.unit(4, "meter"),
  3977. weight: math.unit(150, "kg"),
  3978. name: "Side (NSFW)",
  3979. image: {
  3980. source: "./media/characters/talan/side-nsfw.svg",
  3981. bottom: 29 / 3734
  3982. }
  3983. },
  3984. back: {
  3985. height: math.unit(4, "meter"),
  3986. weight: math.unit(150, "kg"),
  3987. name: "Back",
  3988. image: {
  3989. source: "./media/characters/talan/back.svg"
  3990. }
  3991. },
  3992. dickBottom: {
  3993. height: math.unit(0.621, "meter"),
  3994. name: "Dick (Bottom)",
  3995. image: {
  3996. source: "./media/characters/talan/dick-bottom.svg"
  3997. }
  3998. },
  3999. dickTop: {
  4000. height: math.unit(0.621, "meter"),
  4001. name: "Dick (Top)",
  4002. image: {
  4003. source: "./media/characters/talan/dick-top.svg"
  4004. }
  4005. },
  4006. dickSide: {
  4007. height: math.unit(0.305, "meter"),
  4008. name: "Dick (Side)",
  4009. image: {
  4010. source: "./media/characters/talan/dick-side.svg"
  4011. }
  4012. },
  4013. dickFront: {
  4014. height: math.unit(0.305, "meter"),
  4015. name: "Dick (Front)",
  4016. image: {
  4017. source: "./media/characters/talan/dick-front.svg"
  4018. }
  4019. },
  4020. },
  4021. [
  4022. {
  4023. name: "Normal",
  4024. height: math.unit(4, "meters")
  4025. },
  4026. {
  4027. name: "Macro",
  4028. height: math.unit(100, "meters")
  4029. },
  4030. {
  4031. name: "Megamacro",
  4032. height: math.unit(2, "miles"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Gigamacro",
  4037. height: math.unit(5000, "miles")
  4038. },
  4039. {
  4040. name: "Teramacro",
  4041. height: math.unit(100, "parsecs")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4047. {
  4048. front: {
  4049. height: math.unit(2, "meter"),
  4050. weight: math.unit(90, "kg"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/gael'rathus/front.svg"
  4054. }
  4055. },
  4056. frontAlt: {
  4057. height: math.unit(2, "meter"),
  4058. weight: math.unit(90, "kg"),
  4059. name: "Front (alt)",
  4060. image: {
  4061. source: "./media/characters/gael'rathus/front-alt.svg"
  4062. }
  4063. },
  4064. frontAlt2: {
  4065. height: math.unit(2, "meter"),
  4066. weight: math.unit(90, "kg"),
  4067. name: "Front (alt 2)",
  4068. image: {
  4069. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(9, "feet"),
  4077. default: true
  4078. },
  4079. {
  4080. name: "Large",
  4081. height: math.unit(25, "feet")
  4082. },
  4083. {
  4084. name: "Macro",
  4085. height: math.unit(0.25, "miles")
  4086. },
  4087. {
  4088. name: "Megamacro",
  4089. height: math.unit(10, "miles")
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4095. {
  4096. side: {
  4097. height: math.unit(2, "meter"),
  4098. weight: math.unit(140, "kg"),
  4099. name: "Side",
  4100. image: {
  4101. source: "./media/characters/sosha/side.svg",
  4102. extra: 1170/1006,
  4103. bottom: 94/1264
  4104. }
  4105. },
  4106. maw: {
  4107. height: math.unit(2.87, "feet"),
  4108. name: "Maw",
  4109. image: {
  4110. source: "./media/characters/sosha/maw.svg",
  4111. extra: 966/865,
  4112. bottom: 0/966
  4113. }
  4114. },
  4115. cooch: {
  4116. height: math.unit(5.6, "feet"),
  4117. name: "Cooch",
  4118. image: {
  4119. source: "./media/characters/sosha/cooch.svg"
  4120. }
  4121. },
  4122. },
  4123. [
  4124. {
  4125. name: "Normal",
  4126. height: math.unit(12, "feet"),
  4127. default: true
  4128. }
  4129. ]
  4130. ))
  4131. characterMakers.push(() => makeCharacter(
  4132. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4133. {
  4134. side: {
  4135. height: math.unit(5 + 5 / 12, "feet"),
  4136. weight: math.unit(170, "kg"),
  4137. name: "Side",
  4138. image: {
  4139. source: "./media/characters/runnola/side.svg",
  4140. extra: 741 / 448,
  4141. bottom: 0.05
  4142. }
  4143. },
  4144. },
  4145. [
  4146. {
  4147. name: "Small",
  4148. height: math.unit(3, "feet")
  4149. },
  4150. {
  4151. name: "Normal",
  4152. height: math.unit(5 + 5 / 12, "feet"),
  4153. default: true
  4154. },
  4155. {
  4156. name: "Big",
  4157. height: math.unit(10, "feet")
  4158. },
  4159. ]
  4160. ))
  4161. characterMakers.push(() => makeCharacter(
  4162. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4163. {
  4164. front: {
  4165. height: math.unit(2, "meter"),
  4166. weight: math.unit(50, "kg"),
  4167. name: "Front",
  4168. image: {
  4169. source: "./media/characters/kurribird/front.svg",
  4170. bottom: 0.015
  4171. }
  4172. },
  4173. frontAlt: {
  4174. height: math.unit(1.5, "meter"),
  4175. weight: math.unit(50, "kg"),
  4176. name: "Front (Alt)",
  4177. image: {
  4178. source: "./media/characters/kurribird/front-alt.svg",
  4179. extra: 1.45
  4180. }
  4181. },
  4182. },
  4183. [
  4184. {
  4185. name: "Normal",
  4186. height: math.unit(7, "feet")
  4187. },
  4188. {
  4189. name: "Big",
  4190. height: math.unit(12, "feet"),
  4191. default: true
  4192. },
  4193. {
  4194. name: "Macro",
  4195. height: math.unit(1500, "feet")
  4196. },
  4197. {
  4198. name: "Megamacro",
  4199. height: math.unit(2, "miles")
  4200. }
  4201. ]
  4202. ))
  4203. characterMakers.push(() => makeCharacter(
  4204. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4205. {
  4206. front: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(80, "kg"),
  4209. name: "Front",
  4210. image: {
  4211. source: "./media/characters/elbial/front.svg",
  4212. extra: 1643 / 1556,
  4213. bottom: 60.2 / 1696
  4214. }
  4215. },
  4216. side: {
  4217. height: math.unit(2, "meter"),
  4218. weight: math.unit(80, "kg"),
  4219. name: "Side",
  4220. image: {
  4221. source: "./media/characters/elbial/side.svg",
  4222. extra: 1601/1528,
  4223. bottom: 97/1698
  4224. }
  4225. },
  4226. back: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(80, "kg"),
  4229. name: "Back",
  4230. image: {
  4231. source: "./media/characters/elbial/back.svg",
  4232. extra: 1653/1569,
  4233. bottom: 20/1673
  4234. }
  4235. },
  4236. frontDressed: {
  4237. height: math.unit(2, "meter"),
  4238. weight: math.unit(80, "kg"),
  4239. name: "Front (Dressed)",
  4240. image: {
  4241. source: "./media/characters/elbial/front-dressed.svg",
  4242. extra: 1638/1569,
  4243. bottom: 70/1708
  4244. }
  4245. },
  4246. genitals: {
  4247. height: math.unit(2 / 3.367, "meter"),
  4248. name: "Genitals",
  4249. image: {
  4250. source: "./media/characters/elbial/genitals.svg"
  4251. }
  4252. },
  4253. },
  4254. [
  4255. {
  4256. name: "Large",
  4257. height: math.unit(100, "feet")
  4258. },
  4259. {
  4260. name: "Macro",
  4261. height: math.unit(500, "feet"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Megamacro",
  4266. height: math.unit(10, "miles")
  4267. },
  4268. {
  4269. name: "Gigamacro",
  4270. height: math.unit(25000, "miles")
  4271. },
  4272. {
  4273. name: "Full-Size",
  4274. height: math.unit(8000000, "gigaparsecs")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4280. {
  4281. front: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(60, "kg"),
  4284. name: "Front",
  4285. image: {
  4286. source: "./media/characters/noah/front.svg"
  4287. }
  4288. },
  4289. talons: {
  4290. height: math.unit(0.315, "meter"),
  4291. name: "Talons",
  4292. image: {
  4293. source: "./media/characters/noah/talons.svg"
  4294. }
  4295. }
  4296. },
  4297. [
  4298. {
  4299. name: "Large",
  4300. height: math.unit(50, "feet")
  4301. },
  4302. {
  4303. name: "Macro",
  4304. height: math.unit(750, "feet"),
  4305. default: true
  4306. },
  4307. {
  4308. name: "Megamacro",
  4309. height: math.unit(50, "miles")
  4310. },
  4311. {
  4312. name: "Gigamacro",
  4313. height: math.unit(100000, "miles")
  4314. },
  4315. {
  4316. name: "Full-Size",
  4317. height: math.unit(3000000000, "miles")
  4318. }
  4319. ]
  4320. ))
  4321. characterMakers.push(() => makeCharacter(
  4322. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4323. {
  4324. front: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(80, "kg"),
  4327. name: "Front",
  4328. image: {
  4329. source: "./media/characters/natalya/front.svg"
  4330. }
  4331. },
  4332. back: {
  4333. height: math.unit(2, "meter"),
  4334. weight: math.unit(80, "kg"),
  4335. name: "Back",
  4336. image: {
  4337. source: "./media/characters/natalya/back.svg"
  4338. }
  4339. }
  4340. },
  4341. [
  4342. {
  4343. name: "Normal",
  4344. height: math.unit(150, "feet"),
  4345. default: true
  4346. },
  4347. {
  4348. name: "Megamacro",
  4349. height: math.unit(5, "miles")
  4350. },
  4351. {
  4352. name: "Full-Size",
  4353. height: math.unit(600, "kiloparsecs")
  4354. }
  4355. ]
  4356. ))
  4357. characterMakers.push(() => makeCharacter(
  4358. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4359. {
  4360. front: {
  4361. height: math.unit(2, "meter"),
  4362. weight: math.unit(50, "kg"),
  4363. name: "Front",
  4364. image: {
  4365. source: "./media/characters/erestrebah/front.svg",
  4366. extra: 1262/1162,
  4367. bottom: 96/1358
  4368. }
  4369. },
  4370. back: {
  4371. height: math.unit(2, "meter"),
  4372. weight: math.unit(50, "kg"),
  4373. name: "Back",
  4374. image: {
  4375. source: "./media/characters/erestrebah/back.svg",
  4376. extra: 1257/1139,
  4377. bottom: 13/1270
  4378. }
  4379. },
  4380. wing: {
  4381. height: math.unit(2, "meter"),
  4382. weight: math.unit(50, "kg"),
  4383. name: "Wing",
  4384. image: {
  4385. source: "./media/characters/erestrebah/wing.svg",
  4386. extra: 1262/1162,
  4387. bottom: 96/1358
  4388. }
  4389. },
  4390. mouth: {
  4391. height: math.unit(0.39, "feet"),
  4392. name: "Mouth",
  4393. image: {
  4394. source: "./media/characters/erestrebah/mouth.svg"
  4395. }
  4396. }
  4397. },
  4398. [
  4399. {
  4400. name: "Normal",
  4401. height: math.unit(10, "feet")
  4402. },
  4403. {
  4404. name: "Large",
  4405. height: math.unit(50, "feet"),
  4406. default: true
  4407. },
  4408. {
  4409. name: "Macro",
  4410. height: math.unit(300, "feet")
  4411. },
  4412. {
  4413. name: "Macro+",
  4414. height: math.unit(750, "feet")
  4415. },
  4416. {
  4417. name: "Megamacro",
  4418. height: math.unit(3, "miles")
  4419. }
  4420. ]
  4421. ))
  4422. characterMakers.push(() => makeCharacter(
  4423. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4424. {
  4425. front: {
  4426. height: math.unit(2, "meter"),
  4427. weight: math.unit(80, "kg"),
  4428. name: "Front",
  4429. image: {
  4430. source: "./media/characters/jennifer/front.svg",
  4431. bottom: 0.11,
  4432. extra: 1.16
  4433. }
  4434. },
  4435. frontAlt: {
  4436. height: math.unit(2, "meter"),
  4437. weight: math.unit(80, "kg"),
  4438. name: "Front (Alt)",
  4439. image: {
  4440. source: "./media/characters/jennifer/front-alt.svg"
  4441. }
  4442. }
  4443. },
  4444. [
  4445. {
  4446. name: "Canon Height",
  4447. height: math.unit(120, "feet"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Macro+",
  4452. height: math.unit(300, "feet")
  4453. },
  4454. {
  4455. name: "Megamacro",
  4456. height: math.unit(20000, "feet")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4462. {
  4463. front: {
  4464. height: math.unit(2, "meter"),
  4465. weight: math.unit(50, "kg"),
  4466. name: "Front",
  4467. image: {
  4468. source: "./media/characters/kalista/front.svg",
  4469. extra: 1314/1145,
  4470. bottom: 101/1415
  4471. }
  4472. },
  4473. back: {
  4474. height: math.unit(2, "meter"),
  4475. weight: math.unit(50, "kg"),
  4476. name: "Back",
  4477. image: {
  4478. source: "./media/characters/kalista/back.svg",
  4479. extra: 1366 / 1156,
  4480. bottom: 33.9 / 1362.78
  4481. }
  4482. }
  4483. },
  4484. [
  4485. {
  4486. name: "Uncomfortably Small",
  4487. height: math.unit(10, "feet")
  4488. },
  4489. {
  4490. name: "Small",
  4491. height: math.unit(30, "feet")
  4492. },
  4493. {
  4494. name: "Macro",
  4495. height: math.unit(100, "feet"),
  4496. default: true
  4497. },
  4498. {
  4499. name: "Macro+",
  4500. height: math.unit(2000, "feet")
  4501. },
  4502. {
  4503. name: "True Form",
  4504. height: math.unit(8924, "miles")
  4505. }
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4510. {
  4511. front: {
  4512. height: math.unit(2, "meter"),
  4513. weight: math.unit(120, "kg"),
  4514. name: "Front",
  4515. image: {
  4516. source: "./media/characters/ggv/front.svg"
  4517. }
  4518. },
  4519. side: {
  4520. height: math.unit(2, "meter"),
  4521. weight: math.unit(120, "kg"),
  4522. name: "Side",
  4523. image: {
  4524. source: "./media/characters/ggv/side.svg"
  4525. }
  4526. }
  4527. },
  4528. [
  4529. {
  4530. name: "Extremely Puny",
  4531. height: math.unit(9 + 5 / 12, "feet")
  4532. },
  4533. {
  4534. name: "Horribly Small",
  4535. height: math.unit(47.7, "miles"),
  4536. default: true
  4537. },
  4538. {
  4539. name: "Reasonably Sized",
  4540. height: math.unit(25000, "parsecs")
  4541. },
  4542. {
  4543. name: "Slightly Uncompressed",
  4544. height: math.unit(7.77e31, "parsecs")
  4545. },
  4546. {
  4547. name: "Omniversal",
  4548. height: math.unit(1e300, "meters")
  4549. },
  4550. ]
  4551. ))
  4552. characterMakers.push(() => makeCharacter(
  4553. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4554. {
  4555. front: {
  4556. height: math.unit(2, "meter"),
  4557. weight: math.unit(75, "lb"),
  4558. name: "Front",
  4559. image: {
  4560. source: "./media/characters/napalm/front.svg"
  4561. }
  4562. },
  4563. back: {
  4564. height: math.unit(2, "meter"),
  4565. weight: math.unit(75, "lb"),
  4566. name: "Back",
  4567. image: {
  4568. source: "./media/characters/napalm/back.svg"
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Standard",
  4575. height: math.unit(55, "feet"),
  4576. default: true
  4577. }
  4578. ]
  4579. ))
  4580. characterMakers.push(() => makeCharacter(
  4581. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4582. {
  4583. front: {
  4584. height: math.unit(7 + 5 / 6, "feet"),
  4585. weight: math.unit(325, "lb"),
  4586. name: "Front",
  4587. image: {
  4588. source: "./media/characters/asana/front.svg",
  4589. extra: 1133 / 1060,
  4590. bottom: 15.2 / 1148.6
  4591. }
  4592. },
  4593. back: {
  4594. height: math.unit(7 + 5 / 6, "feet"),
  4595. weight: math.unit(325, "lb"),
  4596. name: "Back",
  4597. image: {
  4598. source: "./media/characters/asana/back.svg",
  4599. extra: 1114 / 1043,
  4600. bottom: 5 / 1120
  4601. }
  4602. },
  4603. dressedDark: {
  4604. height: math.unit(7 + 5 / 6, "feet"),
  4605. weight: math.unit(325, "lb"),
  4606. name: "Dressed (Dark)",
  4607. image: {
  4608. source: "./media/characters/asana/dressed-dark.svg",
  4609. extra: 1133 / 1060,
  4610. bottom: 15.2 / 1148.6
  4611. }
  4612. },
  4613. dressedLight: {
  4614. height: math.unit(7 + 5 / 6, "feet"),
  4615. weight: math.unit(325, "lb"),
  4616. name: "Dressed (Light)",
  4617. image: {
  4618. source: "./media/characters/asana/dressed-light.svg",
  4619. extra: 1133 / 1060,
  4620. bottom: 15.2 / 1148.6
  4621. }
  4622. },
  4623. },
  4624. [
  4625. {
  4626. name: "Standard",
  4627. height: math.unit(7 + 5 / 6, "feet"),
  4628. default: true
  4629. },
  4630. {
  4631. name: "Large",
  4632. height: math.unit(10, "meters")
  4633. },
  4634. {
  4635. name: "Macro",
  4636. height: math.unit(2500, "meters")
  4637. },
  4638. {
  4639. name: "Megamacro",
  4640. height: math.unit(5e6, "meters")
  4641. },
  4642. {
  4643. name: "Examacro",
  4644. height: math.unit(5e12, "lightyears")
  4645. },
  4646. {
  4647. name: "Max Size",
  4648. height: math.unit(1e31, "lightyears")
  4649. }
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4654. {
  4655. front: {
  4656. height: math.unit(2, "meter"),
  4657. weight: math.unit(60, "kg"),
  4658. name: "Front",
  4659. image: {
  4660. source: "./media/characters/ebony/front.svg",
  4661. bottom: 0.03,
  4662. extra: 1045 / 810 + 0.03
  4663. }
  4664. },
  4665. side: {
  4666. height: math.unit(2, "meter"),
  4667. weight: math.unit(60, "kg"),
  4668. name: "Side",
  4669. image: {
  4670. source: "./media/characters/ebony/side.svg",
  4671. bottom: 0.03,
  4672. extra: 1045 / 810 + 0.03
  4673. }
  4674. },
  4675. back: {
  4676. height: math.unit(2, "meter"),
  4677. weight: math.unit(60, "kg"),
  4678. name: "Back",
  4679. image: {
  4680. source: "./media/characters/ebony/back.svg",
  4681. bottom: 0.01,
  4682. extra: 1045 / 810 + 0.01
  4683. }
  4684. },
  4685. },
  4686. [
  4687. // TODO check why I did this lol
  4688. {
  4689. name: "Standard",
  4690. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4691. default: true
  4692. },
  4693. {
  4694. name: "Macro",
  4695. height: math.unit(200, "feet")
  4696. },
  4697. {
  4698. name: "Gigamacro",
  4699. height: math.unit(13000, "km")
  4700. }
  4701. ]
  4702. ))
  4703. characterMakers.push(() => makeCharacter(
  4704. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4705. {
  4706. front: {
  4707. height: math.unit(6, "feet"),
  4708. weight: math.unit(175, "lb"),
  4709. name: "Front",
  4710. image: {
  4711. source: "./media/characters/mountain/front.svg",
  4712. extra: 972 / 955,
  4713. bottom: 64 / 1036.6
  4714. }
  4715. },
  4716. back: {
  4717. height: math.unit(6, "feet"),
  4718. weight: math.unit(175, "lb"),
  4719. name: "Back",
  4720. image: {
  4721. source: "./media/characters/mountain/back.svg",
  4722. extra: 970 / 950,
  4723. bottom: 28.25 / 999
  4724. }
  4725. },
  4726. },
  4727. [
  4728. {
  4729. name: "Large",
  4730. height: math.unit(20, "meters")
  4731. },
  4732. {
  4733. name: "Macro",
  4734. height: math.unit(300, "meters")
  4735. },
  4736. {
  4737. name: "Gigamacro",
  4738. height: math.unit(10000, "km"),
  4739. default: true
  4740. },
  4741. {
  4742. name: "Examacro",
  4743. height: math.unit(10e9, "lightyears")
  4744. }
  4745. ]
  4746. ))
  4747. characterMakers.push(() => makeCharacter(
  4748. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4749. {
  4750. front: {
  4751. height: math.unit(8, "feet"),
  4752. weight: math.unit(500, "lb"),
  4753. name: "Front",
  4754. image: {
  4755. source: "./media/characters/rick/front.svg"
  4756. }
  4757. }
  4758. },
  4759. [
  4760. {
  4761. name: "Normal",
  4762. height: math.unit(8, "feet"),
  4763. default: true
  4764. },
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(5, "km")
  4768. }
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4773. {
  4774. front: {
  4775. height: math.unit(8, "feet"),
  4776. weight: math.unit(120, "lb"),
  4777. name: "Front",
  4778. image: {
  4779. source: "./media/characters/ona/front.svg"
  4780. }
  4781. },
  4782. frontAlt: {
  4783. height: math.unit(8, "feet"),
  4784. weight: math.unit(120, "lb"),
  4785. name: "Front (Alt)",
  4786. image: {
  4787. source: "./media/characters/ona/front-alt.svg"
  4788. }
  4789. },
  4790. back: {
  4791. height: math.unit(8, "feet"),
  4792. weight: math.unit(120, "lb"),
  4793. name: "Back",
  4794. image: {
  4795. source: "./media/characters/ona/back.svg"
  4796. }
  4797. },
  4798. foot: {
  4799. height: math.unit(1.1, "feet"),
  4800. name: "Foot",
  4801. image: {
  4802. source: "./media/characters/ona/foot.svg"
  4803. }
  4804. }
  4805. },
  4806. [
  4807. {
  4808. name: "Megamacro",
  4809. height: math.unit(70, "km"),
  4810. default: true
  4811. },
  4812. {
  4813. name: "Gigamacro",
  4814. height: math.unit(681818, "miles")
  4815. },
  4816. {
  4817. name: "Examacro",
  4818. height: math.unit(3800000, "lightyears")
  4819. },
  4820. ]
  4821. ))
  4822. characterMakers.push(() => makeCharacter(
  4823. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4824. {
  4825. front: {
  4826. height: math.unit(12, "feet"),
  4827. weight: math.unit(3000, "lb"),
  4828. name: "Front",
  4829. image: {
  4830. source: "./media/characters/mech/front.svg",
  4831. extra: 2900 / 2770,
  4832. bottom: 110 / 3010
  4833. }
  4834. },
  4835. back: {
  4836. height: math.unit(12, "feet"),
  4837. weight: math.unit(3000, "lb"),
  4838. name: "Back",
  4839. image: {
  4840. source: "./media/characters/mech/back.svg",
  4841. extra: 3011 / 2890,
  4842. bottom: 94 / 3105
  4843. }
  4844. },
  4845. maw: {
  4846. height: math.unit(3.07, "feet"),
  4847. name: "Maw",
  4848. image: {
  4849. source: "./media/characters/mech/maw.svg"
  4850. }
  4851. },
  4852. head: {
  4853. height: math.unit(3.07, "feet"),
  4854. name: "Head",
  4855. image: {
  4856. source: "./media/characters/mech/head.svg"
  4857. }
  4858. },
  4859. dick: {
  4860. height: math.unit(1.43, "feet"),
  4861. name: "Dick",
  4862. image: {
  4863. source: "./media/characters/mech/dick.svg"
  4864. }
  4865. },
  4866. },
  4867. [
  4868. {
  4869. name: "Normal",
  4870. height: math.unit(12, "feet")
  4871. },
  4872. {
  4873. name: "Macro",
  4874. height: math.unit(300, "feet"),
  4875. default: true
  4876. },
  4877. {
  4878. name: "Macro+",
  4879. height: math.unit(1500, "feet")
  4880. },
  4881. ]
  4882. ))
  4883. characterMakers.push(() => makeCharacter(
  4884. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4885. {
  4886. front: {
  4887. height: math.unit(1.3, "meter"),
  4888. weight: math.unit(30, "kg"),
  4889. name: "Front",
  4890. image: {
  4891. source: "./media/characters/gregory/front.svg",
  4892. }
  4893. }
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(1.3, "meter"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(20, "meter")
  4904. }
  4905. ]
  4906. ))
  4907. characterMakers.push(() => makeCharacter(
  4908. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4909. {
  4910. front: {
  4911. height: math.unit(2.8, "meter"),
  4912. weight: math.unit(200, "kg"),
  4913. name: "Front",
  4914. image: {
  4915. source: "./media/characters/elory/front.svg",
  4916. }
  4917. }
  4918. },
  4919. [
  4920. {
  4921. name: "Normal",
  4922. height: math.unit(2.8, "meter"),
  4923. default: true
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(38, "meter")
  4928. }
  4929. ]
  4930. ))
  4931. characterMakers.push(() => makeCharacter(
  4932. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4933. {
  4934. front: {
  4935. height: math.unit(470, "feet"),
  4936. weight: math.unit(924, "tons"),
  4937. name: "Front",
  4938. image: {
  4939. source: "./media/characters/angelpatamon/front.svg",
  4940. }
  4941. }
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(470, "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Deity Size I",
  4951. height: math.unit(28651.2, "km")
  4952. },
  4953. {
  4954. name: "Deity Size II",
  4955. height: math.unit(171907.2, "km")
  4956. }
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4961. {
  4962. side: {
  4963. height: math.unit(7.2, "meter"),
  4964. weight: math.unit(8.2, "tons"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/cryae/side.svg",
  4968. extra: 3500 / 1500
  4969. }
  4970. }
  4971. },
  4972. [
  4973. {
  4974. name: "Normal",
  4975. height: math.unit(7.2, "meter"),
  4976. default: true
  4977. }
  4978. ]
  4979. ))
  4980. characterMakers.push(() => makeCharacter(
  4981. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4982. {
  4983. front: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(175, "lb"),
  4986. name: "Front",
  4987. image: {
  4988. source: "./media/characters/xera/front.svg",
  4989. extra: 2377 / 1972,
  4990. bottom: 75.5 / 2452
  4991. }
  4992. },
  4993. side: {
  4994. height: math.unit(6, "feet"),
  4995. weight: math.unit(175, "lb"),
  4996. name: "Side",
  4997. image: {
  4998. source: "./media/characters/xera/side.svg",
  4999. extra: 2345 / 2019,
  5000. bottom: 39.7 / 2384
  5001. }
  5002. },
  5003. back: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(175, "lb"),
  5006. name: "Back",
  5007. image: {
  5008. source: "./media/characters/xera/back.svg",
  5009. extra: 2095 / 1984,
  5010. bottom: 67 / 2166
  5011. }
  5012. },
  5013. },
  5014. [
  5015. {
  5016. name: "Small",
  5017. height: math.unit(10, "feet")
  5018. },
  5019. {
  5020. name: "Macro",
  5021. height: math.unit(500, "meters"),
  5022. default: true
  5023. },
  5024. {
  5025. name: "Macro+",
  5026. height: math.unit(10, "km")
  5027. },
  5028. {
  5029. name: "Gigamacro",
  5030. height: math.unit(25000, "km")
  5031. },
  5032. {
  5033. name: "Teramacro",
  5034. height: math.unit(3e6, "km")
  5035. }
  5036. ]
  5037. ))
  5038. characterMakers.push(() => makeCharacter(
  5039. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5040. {
  5041. front: {
  5042. height: math.unit(6, "feet"),
  5043. weight: math.unit(175, "lb"),
  5044. name: "Front",
  5045. image: {
  5046. source: "./media/characters/nebula/front.svg",
  5047. extra: 2566 / 2362,
  5048. bottom: 81 / 2644
  5049. }
  5050. }
  5051. },
  5052. [
  5053. {
  5054. name: "Small",
  5055. height: math.unit(4.5, "meters")
  5056. },
  5057. {
  5058. name: "Macro",
  5059. height: math.unit(1500, "meters"),
  5060. default: true
  5061. },
  5062. {
  5063. name: "Megamacro",
  5064. height: math.unit(150, "km")
  5065. },
  5066. {
  5067. name: "Gigamacro",
  5068. height: math.unit(27000, "km")
  5069. }
  5070. ]
  5071. ))
  5072. characterMakers.push(() => makeCharacter(
  5073. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5074. {
  5075. front: {
  5076. height: math.unit(6, "feet"),
  5077. weight: math.unit(225, "lb"),
  5078. name: "Front",
  5079. image: {
  5080. source: "./media/characters/abysgar/front.svg",
  5081. extra: 1739/1614,
  5082. bottom: 71/1810
  5083. }
  5084. },
  5085. frontNsfw: {
  5086. height: math.unit(6, "feet"),
  5087. weight: math.unit(225, "lb"),
  5088. name: "Front (NSFW)",
  5089. image: {
  5090. source: "./media/characters/abysgar/front-nsfw.svg",
  5091. extra: 1739/1614,
  5092. bottom: 71/1810
  5093. }
  5094. },
  5095. back: {
  5096. height: math.unit(4.6, "feet"),
  5097. weight: math.unit(225, "lb"),
  5098. name: "Back",
  5099. image: {
  5100. source: "./media/characters/abysgar/back.svg",
  5101. extra: 1384/1327,
  5102. bottom: 0/1384
  5103. }
  5104. },
  5105. head: {
  5106. height: math.unit(1.25, "feet"),
  5107. name: "Head",
  5108. image: {
  5109. source: "./media/characters/abysgar/head.svg",
  5110. extra: 669/569,
  5111. bottom: 0/669
  5112. }
  5113. },
  5114. },
  5115. [
  5116. {
  5117. name: "Small",
  5118. height: math.unit(4.5, "meters")
  5119. },
  5120. {
  5121. name: "Macro",
  5122. height: math.unit(1250, "meters"),
  5123. default: true
  5124. },
  5125. {
  5126. name: "Megamacro",
  5127. height: math.unit(125, "km")
  5128. },
  5129. {
  5130. name: "Gigamacro",
  5131. height: math.unit(26000, "km")
  5132. }
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5137. {
  5138. front: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(180, "lb"),
  5141. name: "Front",
  5142. image: {
  5143. source: "./media/characters/yakuz/front.svg"
  5144. }
  5145. }
  5146. },
  5147. [
  5148. {
  5149. name: "Small",
  5150. height: math.unit(5, "meters")
  5151. },
  5152. {
  5153. name: "Macro",
  5154. height: math.unit(1500, "meters"),
  5155. default: true
  5156. },
  5157. {
  5158. name: "Megamacro",
  5159. height: math.unit(200, "km")
  5160. },
  5161. {
  5162. name: "Gigamacro",
  5163. height: math.unit(100000, "km")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(6, "feet"),
  5172. weight: math.unit(175, "lb"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/mirova/front.svg",
  5176. extra: 3334 / 3071,
  5177. bottom: 42 / 3375.6
  5178. }
  5179. }
  5180. },
  5181. [
  5182. {
  5183. name: "Small",
  5184. height: math.unit(5, "meters")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(900, "meters"),
  5189. default: true
  5190. },
  5191. {
  5192. name: "Megamacro",
  5193. height: math.unit(135, "km")
  5194. },
  5195. {
  5196. name: "Gigamacro",
  5197. height: math.unit(20000, "km")
  5198. }
  5199. ]
  5200. ))
  5201. characterMakers.push(() => makeCharacter(
  5202. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5203. {
  5204. side: {
  5205. height: math.unit(28.35, "feet"),
  5206. weight: math.unit(99.75, "tons"),
  5207. name: "Side",
  5208. image: {
  5209. source: "./media/characters/asana-mech/side.svg",
  5210. extra: 923 / 699,
  5211. bottom: 50 / 975
  5212. }
  5213. },
  5214. chaingun: {
  5215. height: math.unit(7, "feet"),
  5216. weight: math.unit(2400, "lb"),
  5217. name: "Chaingun",
  5218. image: {
  5219. source: "./media/characters/asana-mech/chaingun.svg"
  5220. }
  5221. },
  5222. laser: {
  5223. height: math.unit(7.12, "feet"),
  5224. weight: math.unit(2000, "lb"),
  5225. name: "Laser",
  5226. image: {
  5227. source: "./media/characters/asana-mech/laser.svg"
  5228. }
  5229. },
  5230. },
  5231. [
  5232. {
  5233. name: "Normal",
  5234. height: math.unit(28.35, "feet"),
  5235. default: true
  5236. },
  5237. {
  5238. name: "Macro",
  5239. height: math.unit(2500, "feet")
  5240. },
  5241. {
  5242. name: "Megamacro",
  5243. height: math.unit(25, "miles")
  5244. },
  5245. {
  5246. name: "Examacro",
  5247. height: math.unit(6e8, "lightyears")
  5248. },
  5249. ]
  5250. ))
  5251. characterMakers.push(() => makeCharacter(
  5252. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5253. {
  5254. front: {
  5255. height: math.unit(5, "meters"),
  5256. weight: math.unit(1000, "kg"),
  5257. name: "Front",
  5258. image: {
  5259. source: "./media/characters/asche/front.svg",
  5260. extra: 1258 / 1190,
  5261. bottom: 47 / 1305
  5262. }
  5263. },
  5264. frontUnderwear: {
  5265. height: math.unit(5, "meters"),
  5266. weight: math.unit(1000, "kg"),
  5267. name: "Front (Underwear)",
  5268. image: {
  5269. source: "./media/characters/asche/front-underwear.svg",
  5270. extra: 1258 / 1190,
  5271. bottom: 47 / 1305
  5272. }
  5273. },
  5274. frontDressed: {
  5275. height: math.unit(5, "meters"),
  5276. weight: math.unit(1000, "kg"),
  5277. name: "Front (Dressed)",
  5278. image: {
  5279. source: "./media/characters/asche/front-dressed.svg",
  5280. extra: 1258 / 1190,
  5281. bottom: 47 / 1305
  5282. }
  5283. },
  5284. frontArmor: {
  5285. height: math.unit(5, "meters"),
  5286. weight: math.unit(1000, "kg"),
  5287. name: "Front (Armored)",
  5288. image: {
  5289. source: "./media/characters/asche/front-armored.svg",
  5290. extra: 1374 / 1308,
  5291. bottom: 23 / 1397
  5292. }
  5293. },
  5294. mp724: {
  5295. height: math.unit(0.96, "meters"),
  5296. weight: math.unit(38, "kg"),
  5297. name: "H&K MP724",
  5298. image: {
  5299. source: "./media/characters/asche/h&k-mp724.svg"
  5300. }
  5301. },
  5302. side: {
  5303. height: math.unit(5, "meters"),
  5304. weight: math.unit(1000, "kg"),
  5305. name: "Side",
  5306. image: {
  5307. source: "./media/characters/asche/side.svg",
  5308. extra: 1717 / 1609,
  5309. bottom: 0.005
  5310. }
  5311. },
  5312. back: {
  5313. height: math.unit(5, "meters"),
  5314. weight: math.unit(1000, "kg"),
  5315. name: "Back",
  5316. image: {
  5317. source: "./media/characters/asche/back.svg",
  5318. extra: 1570 / 1501
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "DEFCON 5",
  5325. height: math.unit(5, "meters")
  5326. },
  5327. {
  5328. name: "DEFCON 4",
  5329. height: math.unit(500, "meters"),
  5330. default: true
  5331. },
  5332. {
  5333. name: "DEFCON 3",
  5334. height: math.unit(5, "km")
  5335. },
  5336. {
  5337. name: "DEFCON 2",
  5338. height: math.unit(500, "km")
  5339. },
  5340. {
  5341. name: "DEFCON 1",
  5342. height: math.unit(500000, "km")
  5343. },
  5344. {
  5345. name: "DEFCON 0",
  5346. height: math.unit(3, "gigaparsecs")
  5347. },
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(7, "feet"),
  5355. weight: math.unit(92.7, "kg"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/gale/front.svg",
  5359. extra: 977/919,
  5360. bottom: 105/1082
  5361. }
  5362. },
  5363. side: {
  5364. height: math.unit(6.7, "feet"),
  5365. weight: math.unit(92.7, "kg"),
  5366. name: "Side",
  5367. image: {
  5368. source: "./media/characters/gale/side.svg",
  5369. extra: 978/922,
  5370. bottom: 140/1118
  5371. }
  5372. },
  5373. back: {
  5374. height: math.unit(7, "feet"),
  5375. weight: math.unit(92.7, "kg"),
  5376. name: "Back",
  5377. image: {
  5378. source: "./media/characters/gale/back.svg",
  5379. extra: 966/920,
  5380. bottom: 61/1027
  5381. }
  5382. },
  5383. maw: {
  5384. height: math.unit(2.23, "feet"),
  5385. name: "Maw",
  5386. image: {
  5387. source: "./media/characters/gale/maw.svg"
  5388. }
  5389. },
  5390. foot: {
  5391. height: math.unit(2.1, "feet"),
  5392. name: "Foot",
  5393. image: {
  5394. source: "./media/characters/gale/foot.svg"
  5395. }
  5396. },
  5397. },
  5398. [
  5399. {
  5400. name: "Normal",
  5401. height: math.unit(7, "feet")
  5402. },
  5403. {
  5404. name: "Macro",
  5405. height: math.unit(150, "feet"),
  5406. default: true
  5407. },
  5408. {
  5409. name: "Macro+",
  5410. height: math.unit(300, "feet")
  5411. },
  5412. ]
  5413. ))
  5414. characterMakers.push(() => makeCharacter(
  5415. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5416. {
  5417. front: {
  5418. height: math.unit(5 + 10/12, "feet"),
  5419. weight: math.unit(67, "kg"),
  5420. name: "Front",
  5421. image: {
  5422. source: "./media/characters/draylen/front.svg",
  5423. extra: 832/777,
  5424. bottom: 85/917
  5425. }
  5426. }
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(5 + 10/12, "feet")
  5432. },
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(150, "feet"),
  5436. default: true
  5437. }
  5438. ]
  5439. ))
  5440. characterMakers.push(() => makeCharacter(
  5441. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5442. {
  5443. front: {
  5444. height: math.unit(7 + 9 / 12, "feet"),
  5445. weight: math.unit(379, "lbs"),
  5446. name: "Front",
  5447. image: {
  5448. source: "./media/characters/chez/front.svg"
  5449. }
  5450. },
  5451. side: {
  5452. height: math.unit(7 + 9 / 12, "feet"),
  5453. weight: math.unit(379, "lbs"),
  5454. name: "Side",
  5455. image: {
  5456. source: "./media/characters/chez/side.svg"
  5457. }
  5458. }
  5459. },
  5460. [
  5461. {
  5462. name: "Normal",
  5463. height: math.unit(7 + 9 / 12, "feet"),
  5464. default: true
  5465. },
  5466. {
  5467. name: "God King",
  5468. height: math.unit(9750000, "meters")
  5469. }
  5470. ]
  5471. ))
  5472. characterMakers.push(() => makeCharacter(
  5473. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5474. {
  5475. front: {
  5476. height: math.unit(6, "feet"),
  5477. weight: math.unit(275, "lbs"),
  5478. name: "Front",
  5479. image: {
  5480. source: "./media/characters/kaylum/front.svg",
  5481. bottom: 0.01,
  5482. extra: 1166 / 1031
  5483. }
  5484. },
  5485. frontWingless: {
  5486. height: math.unit(6, "feet"),
  5487. weight: math.unit(275, "lbs"),
  5488. name: "Front (Wingless)",
  5489. image: {
  5490. source: "./media/characters/kaylum/front-wingless.svg",
  5491. bottom: 0.01,
  5492. extra: 1117 / 1031
  5493. }
  5494. }
  5495. },
  5496. [
  5497. {
  5498. name: "Normal",
  5499. height: math.unit(3.05, "meters")
  5500. },
  5501. {
  5502. name: "Master",
  5503. height: math.unit(5.5, "meters")
  5504. },
  5505. {
  5506. name: "Rampage",
  5507. height: math.unit(19, "meters")
  5508. },
  5509. {
  5510. name: "Macro Lite",
  5511. height: math.unit(37, "meters")
  5512. },
  5513. {
  5514. name: "Hyper Predator",
  5515. height: math.unit(61, "meters")
  5516. },
  5517. {
  5518. name: "Macro",
  5519. height: math.unit(138, "meters"),
  5520. default: true
  5521. }
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(5 + 5 / 12, "feet"),
  5529. weight: math.unit(120, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/geta/front.svg",
  5533. extra: 1003/933,
  5534. bottom: 21/1024
  5535. }
  5536. },
  5537. paw: {
  5538. height: math.unit(0.35, "feet"),
  5539. name: "Paw",
  5540. image: {
  5541. source: "./media/characters/geta/paw.svg"
  5542. }
  5543. },
  5544. },
  5545. [
  5546. {
  5547. name: "Micro",
  5548. height: math.unit(3, "inches"),
  5549. default: true
  5550. },
  5551. {
  5552. name: "Normal",
  5553. height: math.unit(5 + 5 / 12, "feet")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6, "feet"),
  5562. weight: math.unit(300, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/tyrnn/front.svg"
  5566. }
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Main Height",
  5572. height: math.unit(355, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Fave. Height",
  5577. height: math.unit(2400, "feet")
  5578. }
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(6, "feet"),
  5586. weight: math.unit(300, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/appledectomy/front.svg"
  5590. }
  5591. }
  5592. },
  5593. [
  5594. {
  5595. name: "Macro",
  5596. height: math.unit(2500, "feet")
  5597. },
  5598. {
  5599. name: "Megamacro",
  5600. height: math.unit(50, "miles"),
  5601. default: true
  5602. },
  5603. {
  5604. name: "Gigamacro",
  5605. height: math.unit(5000, "miles")
  5606. },
  5607. {
  5608. name: "Teramacro",
  5609. height: math.unit(250000, "miles")
  5610. },
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(200, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/vulpes/front.svg",
  5622. extra: 573 / 543,
  5623. bottom: 0.033
  5624. }
  5625. },
  5626. side: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(200, "lbs"),
  5629. name: "Side",
  5630. image: {
  5631. source: "./media/characters/vulpes/side.svg",
  5632. extra: 577 / 549,
  5633. bottom: 11 / 588
  5634. }
  5635. },
  5636. back: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(200, "lbs"),
  5639. name: "Back",
  5640. image: {
  5641. source: "./media/characters/vulpes/back.svg",
  5642. extra: 573 / 549,
  5643. bottom: 20 / 593
  5644. }
  5645. },
  5646. feet: {
  5647. height: math.unit(1.276, "feet"),
  5648. name: "Feet",
  5649. image: {
  5650. source: "./media/characters/vulpes/feet.svg"
  5651. }
  5652. },
  5653. maw: {
  5654. height: math.unit(1.18, "feet"),
  5655. name: "Maw",
  5656. image: {
  5657. source: "./media/characters/vulpes/maw.svg"
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Micro",
  5664. height: math.unit(2, "inches")
  5665. },
  5666. {
  5667. name: "Normal",
  5668. height: math.unit(6.3, "feet")
  5669. },
  5670. {
  5671. name: "Macro",
  5672. height: math.unit(850, "feet")
  5673. },
  5674. {
  5675. name: "Megamacro",
  5676. height: math.unit(7500, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Gigamacro",
  5681. height: math.unit(570000, "miles")
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5687. {
  5688. front: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(210, "lbs"),
  5691. name: "Front",
  5692. image: {
  5693. source: "./media/characters/rain-fallen/front.svg"
  5694. }
  5695. },
  5696. side: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(210, "lbs"),
  5699. name: "Side",
  5700. image: {
  5701. source: "./media/characters/rain-fallen/side.svg"
  5702. }
  5703. },
  5704. back: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(210, "lbs"),
  5707. name: "Back",
  5708. image: {
  5709. source: "./media/characters/rain-fallen/back.svg"
  5710. }
  5711. },
  5712. feral: {
  5713. height: math.unit(9, "feet"),
  5714. weight: math.unit(700, "lbs"),
  5715. name: "Feral",
  5716. image: {
  5717. source: "./media/characters/rain-fallen/feral.svg"
  5718. }
  5719. },
  5720. },
  5721. [
  5722. {
  5723. name: "Meddling with Mortals",
  5724. height: math.unit(8 + 8/12, "feet")
  5725. },
  5726. {
  5727. name: "Normal",
  5728. height: math.unit(5, "meter")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(150, "meter"),
  5733. default: true
  5734. },
  5735. {
  5736. name: "Megamacro",
  5737. height: math.unit(278e6, "meter")
  5738. },
  5739. {
  5740. name: "Gigamacro",
  5741. height: math.unit(2e9, "meter")
  5742. },
  5743. {
  5744. name: "Teramacro",
  5745. height: math.unit(8e12, "meter")
  5746. },
  5747. {
  5748. name: "Devourer",
  5749. height: math.unit(14, "zettameters")
  5750. },
  5751. {
  5752. name: "Scarlet King",
  5753. height: math.unit(18, "yottameters")
  5754. },
  5755. {
  5756. name: "Void",
  5757. height: math.unit(1e88, "yottameters")
  5758. }
  5759. ]
  5760. ))
  5761. characterMakers.push(() => makeCharacter(
  5762. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5763. {
  5764. standing: {
  5765. height: math.unit(6, "feet"),
  5766. weight: math.unit(180, "lbs"),
  5767. name: "Standing",
  5768. image: {
  5769. source: "./media/characters/zaakira/standing.svg",
  5770. extra: 1599/1504,
  5771. bottom: 39/1638
  5772. }
  5773. },
  5774. laying: {
  5775. height: math.unit(3.3, "feet"),
  5776. weight: math.unit(180, "lbs"),
  5777. name: "Laying",
  5778. image: {
  5779. source: "./media/characters/zaakira/laying.svg"
  5780. }
  5781. },
  5782. },
  5783. [
  5784. {
  5785. name: "Normal",
  5786. height: math.unit(12, "feet")
  5787. },
  5788. {
  5789. name: "Macro",
  5790. height: math.unit(279, "feet"),
  5791. default: true
  5792. }
  5793. ]
  5794. ))
  5795. characterMakers.push(() => makeCharacter(
  5796. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5797. {
  5798. femSfw: {
  5799. height: math.unit(8, "feet"),
  5800. weight: math.unit(350, "lb"),
  5801. name: "Fem",
  5802. image: {
  5803. source: "./media/characters/sigvald/fem-sfw.svg",
  5804. extra: 182 / 164,
  5805. bottom: 8.7 / 190.5
  5806. }
  5807. },
  5808. femNsfw: {
  5809. height: math.unit(8, "feet"),
  5810. weight: math.unit(350, "lb"),
  5811. name: "Fem (NSFW)",
  5812. image: {
  5813. source: "./media/characters/sigvald/fem-nsfw.svg",
  5814. extra: 182 / 164,
  5815. bottom: 8.7 / 190.5
  5816. }
  5817. },
  5818. maleNsfw: {
  5819. height: math.unit(8, "feet"),
  5820. weight: math.unit(350, "lb"),
  5821. name: "Male (NSFW)",
  5822. image: {
  5823. source: "./media/characters/sigvald/male-nsfw.svg",
  5824. extra: 182 / 164,
  5825. bottom: 8.7 / 190.5
  5826. }
  5827. },
  5828. hermNsfw: {
  5829. height: math.unit(8, "feet"),
  5830. weight: math.unit(350, "lb"),
  5831. name: "Herm (NSFW)",
  5832. image: {
  5833. source: "./media/characters/sigvald/herm-nsfw.svg",
  5834. extra: 182 / 164,
  5835. bottom: 8.7 / 190.5
  5836. }
  5837. },
  5838. dick: {
  5839. height: math.unit(2.36, "feet"),
  5840. name: "Dick",
  5841. image: {
  5842. source: "./media/characters/sigvald/dick.svg"
  5843. }
  5844. },
  5845. eye: {
  5846. height: math.unit(0.31, "feet"),
  5847. name: "Eye",
  5848. image: {
  5849. source: "./media/characters/sigvald/eye.svg"
  5850. }
  5851. },
  5852. mouth: {
  5853. height: math.unit(0.92, "feet"),
  5854. name: "Mouth",
  5855. image: {
  5856. source: "./media/characters/sigvald/mouth.svg"
  5857. }
  5858. },
  5859. paws: {
  5860. height: math.unit(2.2, "feet"),
  5861. name: "Paws",
  5862. image: {
  5863. source: "./media/characters/sigvald/paws.svg"
  5864. }
  5865. }
  5866. },
  5867. [
  5868. {
  5869. name: "Normal",
  5870. height: math.unit(8, "feet")
  5871. },
  5872. {
  5873. name: "Large",
  5874. height: math.unit(12, "feet")
  5875. },
  5876. {
  5877. name: "Larger",
  5878. height: math.unit(20, "feet")
  5879. },
  5880. {
  5881. name: "Macro",
  5882. height: math.unit(150, "feet")
  5883. },
  5884. {
  5885. name: "Macro+",
  5886. height: math.unit(200, "feet"),
  5887. default: true
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5893. {
  5894. side: {
  5895. height: math.unit(12, "feet"),
  5896. weight: math.unit(2000, "kg"),
  5897. name: "Side",
  5898. image: {
  5899. source: "./media/characters/scott/side.svg",
  5900. extra: 754 / 724,
  5901. bottom: 0.069
  5902. }
  5903. },
  5904. upright: {
  5905. height: math.unit(12, "feet"),
  5906. weight: math.unit(2000, "kg"),
  5907. name: "Upright",
  5908. image: {
  5909. source: "./media/characters/scott/upright.svg",
  5910. extra: 3881 / 3722,
  5911. bottom: 0.05
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(12, "feet"),
  5919. default: true
  5920. },
  5921. ]
  5922. ))
  5923. characterMakers.push(() => makeCharacter(
  5924. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5925. {
  5926. side: {
  5927. height: math.unit(8, "meters"),
  5928. weight: math.unit(84755, "lbs"),
  5929. name: "Side",
  5930. image: {
  5931. source: "./media/characters/tobias/side.svg",
  5932. extra: 1474 / 1096,
  5933. bottom: 38.9 / 1513.1235
  5934. }
  5935. },
  5936. },
  5937. [
  5938. {
  5939. name: "Normal",
  5940. height: math.unit(8, "meters"),
  5941. default: true
  5942. },
  5943. ]
  5944. ))
  5945. characterMakers.push(() => makeCharacter(
  5946. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5947. {
  5948. front: {
  5949. height: math.unit(5.5, "feet"),
  5950. weight: math.unit(400, "lbs"),
  5951. name: "Front",
  5952. image: {
  5953. source: "./media/characters/kieran/front.svg",
  5954. extra: 2694 / 2364,
  5955. bottom: 217 / 2908
  5956. }
  5957. },
  5958. side: {
  5959. height: math.unit(5.5, "feet"),
  5960. weight: math.unit(400, "lbs"),
  5961. name: "Side",
  5962. image: {
  5963. source: "./media/characters/kieran/side.svg",
  5964. extra: 875 / 777,
  5965. bottom: 84.6 / 959
  5966. }
  5967. },
  5968. },
  5969. [
  5970. {
  5971. name: "Normal",
  5972. height: math.unit(5.5, "feet"),
  5973. default: true
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5979. {
  5980. side: {
  5981. height: math.unit(2, "meters"),
  5982. weight: math.unit(70, "kg"),
  5983. name: "Side",
  5984. image: {
  5985. source: "./media/characters/sanya/side.svg",
  5986. bottom: 0.02,
  5987. extra: 1.02
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Small",
  5994. height: math.unit(2, "meters")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(3, "meters")
  5999. },
  6000. {
  6001. name: "Macro",
  6002. height: math.unit(16, "meters"),
  6003. default: true
  6004. },
  6005. ]
  6006. ))
  6007. characterMakers.push(() => makeCharacter(
  6008. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6009. {
  6010. front: {
  6011. height: math.unit(2, "meters"),
  6012. weight: math.unit(120, "kg"),
  6013. name: "Front",
  6014. image: {
  6015. source: "./media/characters/miranda/front.svg",
  6016. extra: 195 / 185,
  6017. bottom: 10.9 / 206.5
  6018. }
  6019. },
  6020. back: {
  6021. height: math.unit(2, "meters"),
  6022. weight: math.unit(120, "kg"),
  6023. name: "Back",
  6024. image: {
  6025. source: "./media/characters/miranda/back.svg",
  6026. extra: 201 / 193,
  6027. bottom: 2.3 / 203.7
  6028. }
  6029. },
  6030. },
  6031. [
  6032. {
  6033. name: "Normal",
  6034. height: math.unit(10, "feet"),
  6035. default: true
  6036. }
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "James", species: ["deer"], tags: ["anthro"] },
  6041. {
  6042. side: {
  6043. height: math.unit(2, "meters"),
  6044. weight: math.unit(100, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/james/front.svg",
  6048. extra: 10 / 8.5
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(8.5, "feet"),
  6056. default: true
  6057. }
  6058. ]
  6059. ))
  6060. characterMakers.push(() => makeCharacter(
  6061. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6062. {
  6063. side: {
  6064. height: math.unit(9.5, "feet"),
  6065. weight: math.unit(2500, "lbs"),
  6066. name: "Side",
  6067. image: {
  6068. source: "./media/characters/heather/side.svg"
  6069. }
  6070. },
  6071. },
  6072. [
  6073. {
  6074. name: "Normal",
  6075. height: math.unit(9.5, "feet"),
  6076. default: true
  6077. }
  6078. ]
  6079. ))
  6080. characterMakers.push(() => makeCharacter(
  6081. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6082. {
  6083. side: {
  6084. height: math.unit(6.5, "feet"),
  6085. weight: math.unit(400, "lbs"),
  6086. name: "Side",
  6087. image: {
  6088. source: "./media/characters/lukas/side.svg",
  6089. extra: 7.25 / 6.5
  6090. }
  6091. },
  6092. },
  6093. [
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(6.5, "feet"),
  6097. default: true
  6098. }
  6099. ]
  6100. ))
  6101. characterMakers.push(() => makeCharacter(
  6102. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6103. {
  6104. side: {
  6105. height: math.unit(5, "feet"),
  6106. weight: math.unit(3000, "lbs"),
  6107. name: "Side",
  6108. image: {
  6109. source: "./media/characters/louise/side.svg"
  6110. }
  6111. },
  6112. },
  6113. [
  6114. {
  6115. name: "Normal",
  6116. height: math.unit(5, "feet"),
  6117. default: true
  6118. }
  6119. ]
  6120. ))
  6121. characterMakers.push(() => makeCharacter(
  6122. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6123. {
  6124. side: {
  6125. height: math.unit(6, "feet"),
  6126. weight: math.unit(150, "lbs"),
  6127. name: "Side",
  6128. image: {
  6129. source: "./media/characters/ramona/side.svg",
  6130. extra: 871/854,
  6131. bottom: 41/912
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(6 + 4/12, "feet")
  6139. },
  6140. {
  6141. name: "Minimacro",
  6142. height: math.unit(5.3, "meters"),
  6143. default: true
  6144. },
  6145. {
  6146. name: "Macro",
  6147. height: math.unit(20, "stories")
  6148. },
  6149. {
  6150. name: "Macro+",
  6151. height: math.unit(50, "stories")
  6152. },
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6157. {
  6158. standing: {
  6159. height: math.unit(5.75, "feet"),
  6160. weight: math.unit(160, "lbs"),
  6161. name: "Standing",
  6162. image: {
  6163. source: "./media/characters/deerpuff/standing.svg",
  6164. extra: 682 / 624
  6165. }
  6166. },
  6167. sitting: {
  6168. height: math.unit(5.75 / 1.79, "feet"),
  6169. weight: math.unit(160, "lbs"),
  6170. name: "Sitting",
  6171. image: {
  6172. source: "./media/characters/deerpuff/sitting.svg",
  6173. bottom: 44 / 400,
  6174. extra: 1
  6175. }
  6176. },
  6177. taurLaying: {
  6178. height: math.unit(6, "feet"),
  6179. weight: math.unit(400, "lbs"),
  6180. name: "Taur (Laying)",
  6181. image: {
  6182. source: "./media/characters/deerpuff/taur-laying.svg"
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Puffball",
  6189. height: math.unit(6, "inches")
  6190. },
  6191. {
  6192. name: "Normalpuff",
  6193. height: math.unit(5.75, "feet")
  6194. },
  6195. {
  6196. name: "Macropuff",
  6197. height: math.unit(1500, "feet"),
  6198. default: true
  6199. },
  6200. {
  6201. name: "Megapuff",
  6202. height: math.unit(500, "miles")
  6203. },
  6204. {
  6205. name: "Gigapuff",
  6206. height: math.unit(250000, "miles")
  6207. },
  6208. {
  6209. name: "Omegapuff",
  6210. height: math.unit(1000, "lightyears")
  6211. },
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6216. {
  6217. stomping: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(170, "lbs"),
  6220. name: "Stomping",
  6221. image: {
  6222. source: "./media/characters/vivian/stomping.svg"
  6223. }
  6224. },
  6225. sitting: {
  6226. height: math.unit(6 / 1.75, "feet"),
  6227. weight: math.unit(170, "lbs"),
  6228. name: "Sitting",
  6229. image: {
  6230. source: "./media/characters/vivian/sitting.svg",
  6231. bottom: 1 / 6.4,
  6232. extra: 1,
  6233. }
  6234. },
  6235. },
  6236. [
  6237. {
  6238. name: "Normal",
  6239. height: math.unit(7, "feet"),
  6240. default: true
  6241. },
  6242. {
  6243. name: "Macro",
  6244. height: math.unit(10, "stories")
  6245. },
  6246. {
  6247. name: "Macro+",
  6248. height: math.unit(30, "stories")
  6249. },
  6250. {
  6251. name: "Megamacro",
  6252. height: math.unit(10, "miles")
  6253. },
  6254. {
  6255. name: "Megamacro+",
  6256. height: math.unit(2750000, "meters")
  6257. },
  6258. ]
  6259. ))
  6260. characterMakers.push(() => makeCharacter(
  6261. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6262. {
  6263. front: {
  6264. height: math.unit(6, "feet"),
  6265. weight: math.unit(160, "lbs"),
  6266. name: "Front",
  6267. image: {
  6268. source: "./media/characters/prince/front.svg",
  6269. extra: 1938/1682,
  6270. bottom: 45/1983
  6271. }
  6272. },
  6273. back: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(160, "lbs"),
  6276. name: "Back",
  6277. image: {
  6278. source: "./media/characters/prince/back.svg",
  6279. extra: 1955/1726,
  6280. bottom: 6/1961
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(7.75, "feet"),
  6288. default: true
  6289. },
  6290. {
  6291. name: "Not cute",
  6292. height: math.unit(17, "feet")
  6293. },
  6294. {
  6295. name: "I said NOT",
  6296. height: math.unit(91, "feet")
  6297. },
  6298. {
  6299. name: "Please stop",
  6300. height: math.unit(560, "feet")
  6301. },
  6302. {
  6303. name: "What have you done",
  6304. height: math.unit(2200, "feet")
  6305. },
  6306. {
  6307. name: "Deer God",
  6308. height: math.unit(3.6, "miles")
  6309. },
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6314. {
  6315. standing: {
  6316. height: math.unit(6, "feet"),
  6317. weight: math.unit(300, "lbs"),
  6318. name: "Standing",
  6319. image: {
  6320. source: "./media/characters/psymon/standing.svg",
  6321. extra: 1888 / 1810,
  6322. bottom: 0.05
  6323. }
  6324. },
  6325. slithering: {
  6326. height: math.unit(6, "feet"),
  6327. weight: math.unit(300, "lbs"),
  6328. name: "Slithering",
  6329. image: {
  6330. source: "./media/characters/psymon/slithering.svg",
  6331. extra: 1330 / 1224
  6332. }
  6333. },
  6334. slitheringAlt: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(300, "lbs"),
  6337. name: "Slithering (Alt)",
  6338. image: {
  6339. source: "./media/characters/psymon/slithering-alt.svg",
  6340. extra: 1330 / 1224
  6341. }
  6342. },
  6343. },
  6344. [
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(11.25, "feet"),
  6348. default: true
  6349. },
  6350. {
  6351. name: "Large",
  6352. height: math.unit(27, "feet")
  6353. },
  6354. {
  6355. name: "Giant",
  6356. height: math.unit(87, "feet")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(365, "feet")
  6361. },
  6362. {
  6363. name: "Megamacro",
  6364. height: math.unit(3, "miles")
  6365. },
  6366. {
  6367. name: "World Serpent",
  6368. height: math.unit(8000, "miles")
  6369. },
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(6, "feet"),
  6377. weight: math.unit(180, "lbs"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/daimos/front.svg",
  6381. extra: 4160 / 3897,
  6382. bottom: 0.021
  6383. }
  6384. }
  6385. },
  6386. [
  6387. {
  6388. name: "Normal",
  6389. height: math.unit(8, "feet"),
  6390. default: true
  6391. },
  6392. {
  6393. name: "Big Dog",
  6394. height: math.unit(22, "feet")
  6395. },
  6396. {
  6397. name: "Macro",
  6398. height: math.unit(127, "feet")
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(3600, "feet")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6408. {
  6409. side: {
  6410. height: math.unit(6, "feet"),
  6411. weight: math.unit(180, "lbs"),
  6412. name: "Side",
  6413. image: {
  6414. source: "./media/characters/blake/side.svg",
  6415. extra: 1212 / 1120,
  6416. bottom: 0.05
  6417. }
  6418. },
  6419. crouched: {
  6420. height: math.unit(6 * 0.57, "feet"),
  6421. weight: math.unit(180, "lbs"),
  6422. name: "Crouched",
  6423. image: {
  6424. source: "./media/characters/blake/crouched.svg",
  6425. extra: 840 / 587,
  6426. bottom: 0.04
  6427. }
  6428. },
  6429. bent: {
  6430. height: math.unit(6 * 0.75, "feet"),
  6431. weight: math.unit(180, "lbs"),
  6432. name: "Bent",
  6433. image: {
  6434. source: "./media/characters/blake/bent.svg",
  6435. extra: 592 / 544,
  6436. bottom: 0.035
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Normal",
  6443. height: math.unit(8 + 1 / 6, "feet"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Big Backside",
  6448. height: math.unit(37, "feet")
  6449. },
  6450. {
  6451. name: "Subway Shredder",
  6452. height: math.unit(72, "feet")
  6453. },
  6454. {
  6455. name: "City Carver",
  6456. height: math.unit(1675, "feet")
  6457. },
  6458. {
  6459. name: "Tectonic Tweaker",
  6460. height: math.unit(2300, "miles")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6466. {
  6467. front: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(180, "lbs"),
  6470. name: "Front",
  6471. image: {
  6472. source: "./media/characters/guisetto/front.svg",
  6473. extra: 856 / 817,
  6474. bottom: 0.06
  6475. }
  6476. },
  6477. airborne: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(180, "lbs"),
  6480. name: "Airborne",
  6481. image: {
  6482. source: "./media/characters/guisetto/airborne.svg",
  6483. extra: 584 / 525
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Normal",
  6490. height: math.unit(10 + 11 / 12, "feet"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Large",
  6495. height: math.unit(35, "feet")
  6496. },
  6497. {
  6498. name: "Macro",
  6499. height: math.unit(475, "feet")
  6500. },
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(6, "feet"),
  6508. weight: math.unit(180, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/luxor/front.svg",
  6512. extra: 2940 / 2152
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(6, "feet"),
  6517. weight: math.unit(180, "lbs"),
  6518. name: "Back",
  6519. image: {
  6520. source: "./media/characters/luxor/back.svg",
  6521. extra: 1083 / 960
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(5 + 5 / 6, "feet"),
  6529. default: true
  6530. },
  6531. {
  6532. name: "Lamp",
  6533. height: math.unit(50, "feet")
  6534. },
  6535. {
  6536. name: "Lämp",
  6537. height: math.unit(300, "feet")
  6538. },
  6539. {
  6540. name: "The sun is a lamp",
  6541. height: math.unit(250000, "miles")
  6542. },
  6543. ]
  6544. ))
  6545. characterMakers.push(() => makeCharacter(
  6546. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6547. {
  6548. front: {
  6549. height: math.unit(6, "feet"),
  6550. weight: math.unit(50, "lbs"),
  6551. name: "Front",
  6552. image: {
  6553. source: "./media/characters/huoyan/front.svg"
  6554. }
  6555. },
  6556. side: {
  6557. height: math.unit(6, "feet"),
  6558. weight: math.unit(180, "lbs"),
  6559. name: "Side",
  6560. image: {
  6561. source: "./media/characters/huoyan/side.svg"
  6562. }
  6563. },
  6564. },
  6565. [
  6566. {
  6567. name: "Chef",
  6568. height: math.unit(9, "feet")
  6569. },
  6570. {
  6571. name: "Normal",
  6572. height: math.unit(65, "feet"),
  6573. default: true
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(780, "feet")
  6578. },
  6579. {
  6580. name: "Flaming Mountain",
  6581. height: math.unit(4.8, "miles")
  6582. },
  6583. {
  6584. name: "Celestial",
  6585. height: math.unit(765000, "miles")
  6586. },
  6587. ]
  6588. ))
  6589. characterMakers.push(() => makeCharacter(
  6590. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6591. {
  6592. front: {
  6593. height: math.unit(5 + 3 / 4, "feet"),
  6594. weight: math.unit(120, "lbs"),
  6595. name: "Front",
  6596. image: {
  6597. source: "./media/characters/tails/front.svg"
  6598. }
  6599. }
  6600. },
  6601. [
  6602. {
  6603. name: "Normal",
  6604. height: math.unit(5 + 3 / 4, "feet"),
  6605. default: true
  6606. }
  6607. ]
  6608. ))
  6609. characterMakers.push(() => makeCharacter(
  6610. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6611. {
  6612. front: {
  6613. height: math.unit(4, "feet"),
  6614. weight: math.unit(50, "lbs"),
  6615. name: "Front",
  6616. image: {
  6617. source: "./media/characters/rainy/front.svg"
  6618. }
  6619. }
  6620. },
  6621. [
  6622. {
  6623. name: "Macro",
  6624. height: math.unit(800, "feet"),
  6625. default: true
  6626. }
  6627. ]
  6628. ))
  6629. characterMakers.push(() => makeCharacter(
  6630. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6631. {
  6632. front: {
  6633. height: math.unit(6, "feet"),
  6634. weight: math.unit(150, "lbs"),
  6635. name: "Front",
  6636. image: {
  6637. source: "./media/characters/rainier/front.svg"
  6638. }
  6639. }
  6640. },
  6641. [
  6642. {
  6643. name: "Micro",
  6644. height: math.unit(2, "mm"),
  6645. default: true
  6646. }
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6651. {
  6652. front: {
  6653. height: math.unit(8 + 4/12, "feet"),
  6654. weight: math.unit(450, "kilograms"),
  6655. volume: math.unit(5, "cups"),
  6656. name: "Front",
  6657. image: {
  6658. source: "./media/characters/andy-renard/front.svg",
  6659. extra: 1839/1726,
  6660. bottom: 134/1973
  6661. }
  6662. },
  6663. back: {
  6664. height: math.unit(8 + 4/12, "feet"),
  6665. weight: math.unit(450, "kilograms"),
  6666. volume: math.unit(5, "cups"),
  6667. name: "Back",
  6668. image: {
  6669. source: "./media/characters/andy-renard/back.svg",
  6670. extra: 1838/1710,
  6671. bottom: 105/1943
  6672. }
  6673. },
  6674. },
  6675. [
  6676. {
  6677. name: "Tall",
  6678. height: math.unit(8 + 4/12, "feet")
  6679. },
  6680. {
  6681. name: "Mini Macro",
  6682. height: math.unit(15, "feet"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Macro",
  6687. height: math.unit(100, "feet")
  6688. },
  6689. {
  6690. name: "Mega Macro",
  6691. height: math.unit(1000, "feet")
  6692. },
  6693. {
  6694. name: "Giga Macro",
  6695. height: math.unit(10, "miles")
  6696. },
  6697. {
  6698. name: "God Macro",
  6699. height: math.unit(1, "multiverse")
  6700. },
  6701. ]
  6702. ))
  6703. characterMakers.push(() => makeCharacter(
  6704. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6705. {
  6706. front: {
  6707. height: math.unit(6, "feet"),
  6708. weight: math.unit(210, "lbs"),
  6709. name: "Front",
  6710. image: {
  6711. source: "./media/characters/cimmaron/front-sfw.svg",
  6712. extra: 701 / 676,
  6713. bottom: 0.046
  6714. }
  6715. },
  6716. back: {
  6717. height: math.unit(6, "feet"),
  6718. weight: math.unit(210, "lbs"),
  6719. name: "Back",
  6720. image: {
  6721. source: "./media/characters/cimmaron/back-sfw.svg",
  6722. extra: 701 / 676,
  6723. bottom: 0.046
  6724. }
  6725. },
  6726. frontNsfw: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(210, "lbs"),
  6729. name: "Front (NSFW)",
  6730. image: {
  6731. source: "./media/characters/cimmaron/front-nsfw.svg",
  6732. extra: 701 / 676,
  6733. bottom: 0.046
  6734. }
  6735. },
  6736. backNsfw: {
  6737. height: math.unit(6, "feet"),
  6738. weight: math.unit(210, "lbs"),
  6739. name: "Back (NSFW)",
  6740. image: {
  6741. source: "./media/characters/cimmaron/back-nsfw.svg",
  6742. extra: 701 / 676,
  6743. bottom: 0.046
  6744. }
  6745. },
  6746. dick: {
  6747. height: math.unit(1.714, "feet"),
  6748. name: "Dick",
  6749. image: {
  6750. source: "./media/characters/cimmaron/dick.svg"
  6751. }
  6752. },
  6753. },
  6754. [
  6755. {
  6756. name: "Normal",
  6757. height: math.unit(6, "feet"),
  6758. default: true
  6759. },
  6760. {
  6761. name: "Macro Mayor",
  6762. height: math.unit(350, "meters")
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(200, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/akari/front.svg",
  6775. extra: 962 / 901,
  6776. bottom: 0.04
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(5, "inches"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Normal",
  6788. height: math.unit(7, "feet")
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(140, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/cynosura/front.svg",
  6801. extra: 437/410,
  6802. bottom: 9/446
  6803. }
  6804. },
  6805. back: {
  6806. height: math.unit(6, "feet"),
  6807. weight: math.unit(140, "lbs"),
  6808. name: "Back",
  6809. image: {
  6810. source: "./media/characters/cynosura/back.svg",
  6811. extra: 1304/1160,
  6812. bottom: 71/1375
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Micro",
  6819. height: math.unit(4, "inches")
  6820. },
  6821. {
  6822. name: "Normal",
  6823. height: math.unit(5.75, "feet"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Tall",
  6828. height: math.unit(10, "feet")
  6829. },
  6830. {
  6831. name: "Big",
  6832. height: math.unit(20, "feet")
  6833. },
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(50, "feet")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(13 + 2/12, "feet"),
  6845. weight: math.unit(800, "kg"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/gin/front.svg",
  6849. extra: 1312/1191,
  6850. bottom: 45/1357
  6851. }
  6852. },
  6853. mouth: {
  6854. height: math.unit(2.39 * 1.8, "feet"),
  6855. name: "Mouth",
  6856. image: {
  6857. source: "./media/characters/gin/mouth.svg"
  6858. }
  6859. },
  6860. hand: {
  6861. height: math.unit(1.57 * 2.19, "feet"),
  6862. name: "Hand",
  6863. image: {
  6864. source: "./media/characters/gin/hand.svg"
  6865. }
  6866. },
  6867. foot: {
  6868. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6869. name: "Foot",
  6870. image: {
  6871. source: "./media/characters/gin/foot.svg"
  6872. }
  6873. },
  6874. sole: {
  6875. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6876. name: "Sole",
  6877. image: {
  6878. source: "./media/characters/gin/sole.svg"
  6879. }
  6880. },
  6881. },
  6882. [
  6883. {
  6884. name: "Very Small",
  6885. height: math.unit(13 + 2 / 12, "feet")
  6886. },
  6887. {
  6888. name: "Micro",
  6889. height: math.unit(600, "miles")
  6890. },
  6891. {
  6892. name: "Regular",
  6893. height: math.unit(20, "earths"),
  6894. default: true
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(2.2, "solarradii")
  6899. },
  6900. {
  6901. name: "Teramacro",
  6902. height: math.unit(1.2, "galaxies")
  6903. },
  6904. {
  6905. name: "Omegamacro",
  6906. height: math.unit(200, "universes")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(6 + 1 / 6, "feet"),
  6915. weight: math.unit(178, "lbs"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/guy/front.svg"
  6919. }
  6920. }
  6921. },
  6922. [
  6923. {
  6924. name: "Normal",
  6925. height: math.unit(6 + 1 / 6, "feet"),
  6926. default: true
  6927. },
  6928. {
  6929. name: "Large",
  6930. height: math.unit(25 + 7 / 12, "feet")
  6931. },
  6932. {
  6933. name: "Macro",
  6934. height: math.unit(60 + 9 / 12, "feet")
  6935. },
  6936. {
  6937. name: "Macro+",
  6938. height: math.unit(246, "feet")
  6939. },
  6940. {
  6941. name: "Macro++",
  6942. height: math.unit(878, "feet")
  6943. }
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(9, "feet"),
  6951. weight: math.unit(800, "lbs"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/tiberius/front.svg",
  6955. extra: 2295 / 2071
  6956. }
  6957. },
  6958. back: {
  6959. height: math.unit(9, "feet"),
  6960. weight: math.unit(800, "lbs"),
  6961. name: "Back",
  6962. image: {
  6963. source: "./media/characters/tiberius/back.svg",
  6964. extra: 2373 / 2160
  6965. }
  6966. },
  6967. },
  6968. [
  6969. {
  6970. name: "Normal",
  6971. height: math.unit(9, "feet"),
  6972. default: true
  6973. }
  6974. ]
  6975. ))
  6976. characterMakers.push(() => makeCharacter(
  6977. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6978. {
  6979. front: {
  6980. height: math.unit(6, "feet"),
  6981. weight: math.unit(600, "lbs"),
  6982. name: "Front",
  6983. image: {
  6984. source: "./media/characters/surgo/front.svg",
  6985. extra: 3591 / 2227
  6986. }
  6987. },
  6988. back: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(600, "lbs"),
  6991. name: "Back",
  6992. image: {
  6993. source: "./media/characters/surgo/back.svg",
  6994. extra: 3557 / 2228
  6995. }
  6996. },
  6997. laying: {
  6998. height: math.unit(6 * 0.85, "feet"),
  6999. weight: math.unit(600, "lbs"),
  7000. name: "Laying",
  7001. image: {
  7002. source: "./media/characters/surgo/laying.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Normal",
  7009. height: math.unit(6, "feet"),
  7010. default: true
  7011. }
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7016. {
  7017. side: {
  7018. height: math.unit(6, "feet"),
  7019. weight: math.unit(150, "lbs"),
  7020. name: "Side",
  7021. image: {
  7022. source: "./media/characters/cibus/side.svg",
  7023. extra: 800 / 400
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(6, "feet"),
  7031. default: true
  7032. }
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(6, "feet"),
  7040. weight: math.unit(240, "lbs"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/nibbles/front.svg"
  7044. }
  7045. },
  7046. side: {
  7047. height: math.unit(6, "feet"),
  7048. weight: math.unit(240, "lbs"),
  7049. name: "Side",
  7050. image: {
  7051. source: "./media/characters/nibbles/side.svg"
  7052. }
  7053. },
  7054. },
  7055. [
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(9, "feet"),
  7059. default: true
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7065. {
  7066. side: {
  7067. height: math.unit(5 + 1 / 6, "feet"),
  7068. weight: math.unit(130, "lbs"),
  7069. name: "Side",
  7070. image: {
  7071. source: "./media/characters/rikky/side.svg",
  7072. extra: 851 / 801
  7073. }
  7074. },
  7075. },
  7076. [
  7077. {
  7078. name: "Normal",
  7079. height: math.unit(5 + 1 / 6, "feet")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(152, "feet"),
  7084. default: true
  7085. },
  7086. {
  7087. name: "Megamacro",
  7088. height: math.unit(7, "miles")
  7089. }
  7090. ]
  7091. ))
  7092. characterMakers.push(() => makeCharacter(
  7093. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7094. {
  7095. side: {
  7096. height: math.unit(370, "cm"),
  7097. weight: math.unit(350, "lbs"),
  7098. name: "Side",
  7099. image: {
  7100. source: "./media/characters/malfressa/side.svg"
  7101. }
  7102. },
  7103. walking: {
  7104. height: math.unit(370, "cm"),
  7105. weight: math.unit(350, "lbs"),
  7106. name: "Walking",
  7107. image: {
  7108. source: "./media/characters/malfressa/walking.svg"
  7109. }
  7110. },
  7111. feral: {
  7112. height: math.unit(2500, "cm"),
  7113. weight: math.unit(100000, "lbs"),
  7114. name: "Feral",
  7115. image: {
  7116. source: "./media/characters/malfressa/feral.svg",
  7117. extra: 2108 / 837,
  7118. bottom: 0.02
  7119. }
  7120. },
  7121. },
  7122. [
  7123. {
  7124. name: "Normal",
  7125. height: math.unit(370, "cm")
  7126. },
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(300, "meters"),
  7130. default: true
  7131. }
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7136. {
  7137. front: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(60, "kg"),
  7140. name: "Front",
  7141. image: {
  7142. source: "./media/characters/jaro/front.svg",
  7143. extra: 845/817,
  7144. bottom: 45/890
  7145. }
  7146. },
  7147. back: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(60, "kg"),
  7150. name: "Back",
  7151. image: {
  7152. source: "./media/characters/jaro/back.svg",
  7153. extra: 847/817,
  7154. bottom: 34/881
  7155. }
  7156. },
  7157. },
  7158. [
  7159. {
  7160. name: "Micro",
  7161. height: math.unit(7, "inches")
  7162. },
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(5.5, "feet"),
  7166. default: true
  7167. },
  7168. {
  7169. name: "Minimacro",
  7170. height: math.unit(20, "feet")
  7171. },
  7172. {
  7173. name: "Macro",
  7174. height: math.unit(200, "meters")
  7175. }
  7176. ]
  7177. ))
  7178. characterMakers.push(() => makeCharacter(
  7179. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7180. {
  7181. front: {
  7182. height: math.unit(6, "feet"),
  7183. weight: math.unit(195, "lb"),
  7184. name: "Front",
  7185. image: {
  7186. source: "./media/characters/rogue/front.svg"
  7187. }
  7188. },
  7189. },
  7190. [
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(90, "feet"),
  7194. default: true
  7195. },
  7196. ]
  7197. ))
  7198. characterMakers.push(() => makeCharacter(
  7199. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7200. {
  7201. standing: {
  7202. height: math.unit(5 + 8 / 12, "feet"),
  7203. weight: math.unit(140, "lb"),
  7204. name: "Standing",
  7205. image: {
  7206. source: "./media/characters/piper/standing.svg",
  7207. extra: 1440/1284,
  7208. bottom: 66/1506
  7209. }
  7210. },
  7211. running: {
  7212. height: math.unit(5 + 8 / 12, "feet"),
  7213. weight: math.unit(140, "lb"),
  7214. name: "Running",
  7215. image: {
  7216. source: "./media/characters/piper/running.svg",
  7217. extra: 3948/3655,
  7218. bottom: 0/3948
  7219. }
  7220. },
  7221. sole: {
  7222. height: math.unit(0.81, "feet"),
  7223. weight: math.unit(2, "kg"),
  7224. name: "Sole",
  7225. image: {
  7226. source: "./media/characters/piper/sole.svg"
  7227. }
  7228. },
  7229. nipple: {
  7230. height: math.unit(0.25, "feet"),
  7231. weight: math.unit(1.5, "lb"),
  7232. name: "Nipple",
  7233. image: {
  7234. source: "./media/characters/piper/nipple.svg"
  7235. }
  7236. },
  7237. head: {
  7238. height: math.unit(1.1, "feet"),
  7239. name: "Head",
  7240. image: {
  7241. source: "./media/characters/piper/head.svg"
  7242. }
  7243. },
  7244. },
  7245. [
  7246. {
  7247. name: "Micro",
  7248. height: math.unit(2, "inches")
  7249. },
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(5 + 8 / 12, "feet")
  7253. },
  7254. {
  7255. name: "Macro",
  7256. height: math.unit(250, "feet"),
  7257. default: true
  7258. },
  7259. {
  7260. name: "Megamacro",
  7261. height: math.unit(7, "miles")
  7262. },
  7263. ]
  7264. ))
  7265. characterMakers.push(() => makeCharacter(
  7266. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7267. {
  7268. front: {
  7269. height: math.unit(6, "feet"),
  7270. weight: math.unit(220, "lb"),
  7271. name: "Front",
  7272. image: {
  7273. source: "./media/characters/gemini/front.svg"
  7274. }
  7275. },
  7276. back: {
  7277. height: math.unit(6, "feet"),
  7278. weight: math.unit(220, "lb"),
  7279. name: "Back",
  7280. image: {
  7281. source: "./media/characters/gemini/back.svg"
  7282. }
  7283. },
  7284. kneeling: {
  7285. height: math.unit(6 / 1.5, "feet"),
  7286. weight: math.unit(220, "lb"),
  7287. name: "Kneeling",
  7288. image: {
  7289. source: "./media/characters/gemini/kneeling.svg",
  7290. bottom: 0.02
  7291. }
  7292. },
  7293. },
  7294. [
  7295. {
  7296. name: "Macro",
  7297. height: math.unit(300, "meters"),
  7298. default: true
  7299. },
  7300. {
  7301. name: "Megamacro",
  7302. height: math.unit(6900, "meters")
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7308. {
  7309. anthro: {
  7310. height: math.unit(2.35, "meters"),
  7311. weight: math.unit(73, "kg"),
  7312. name: "Anthro",
  7313. image: {
  7314. source: "./media/characters/alicia/anthro.svg",
  7315. extra: 2571 / 2385,
  7316. bottom: 75 / 2648
  7317. }
  7318. },
  7319. paw: {
  7320. height: math.unit(1.32, "feet"),
  7321. name: "Paw",
  7322. image: {
  7323. source: "./media/characters/alicia/paw.svg"
  7324. }
  7325. },
  7326. feral: {
  7327. height: math.unit(1.69, "meters"),
  7328. weight: math.unit(73, "kg"),
  7329. name: "Feral",
  7330. image: {
  7331. source: "./media/characters/alicia/feral.svg",
  7332. extra: 2123 / 1715,
  7333. bottom: 222 / 2349
  7334. }
  7335. },
  7336. },
  7337. [
  7338. {
  7339. name: "Normal",
  7340. height: math.unit(2.35, "meters")
  7341. },
  7342. {
  7343. name: "Macro",
  7344. height: math.unit(60, "meters"),
  7345. default: true
  7346. },
  7347. {
  7348. name: "Megamacro",
  7349. height: math.unit(10000, "kilometers")
  7350. },
  7351. ]
  7352. ))
  7353. characterMakers.push(() => makeCharacter(
  7354. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7355. {
  7356. front: {
  7357. height: math.unit(7, "feet"),
  7358. weight: math.unit(250, "lbs"),
  7359. name: "Front",
  7360. image: {
  7361. source: "./media/characters/archy/front.svg"
  7362. }
  7363. }
  7364. },
  7365. [
  7366. {
  7367. name: "Micro",
  7368. height: math.unit(1, "inch")
  7369. },
  7370. {
  7371. name: "Shorty",
  7372. height: math.unit(5, "feet")
  7373. },
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(7, "feet")
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(600, "meters"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Megamacro",
  7385. height: math.unit(1, "mile")
  7386. },
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(1.65, "meters"),
  7394. weight: math.unit(74, "kg"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/berri/front.svg",
  7398. extra: 857 / 837,
  7399. bottom: 18 / 877
  7400. }
  7401. },
  7402. bum: {
  7403. height: math.unit(1.46, "feet"),
  7404. name: "Bum",
  7405. image: {
  7406. source: "./media/characters/berri/bum.svg"
  7407. }
  7408. },
  7409. mouth: {
  7410. height: math.unit(0.44, "feet"),
  7411. name: "Mouth",
  7412. image: {
  7413. source: "./media/characters/berri/mouth.svg"
  7414. }
  7415. },
  7416. paw: {
  7417. height: math.unit(0.826, "feet"),
  7418. name: "Paw",
  7419. image: {
  7420. source: "./media/characters/berri/paw.svg"
  7421. }
  7422. },
  7423. },
  7424. [
  7425. {
  7426. name: "Normal",
  7427. height: math.unit(1.65, "meters")
  7428. },
  7429. {
  7430. name: "Macro",
  7431. height: math.unit(60, "m"),
  7432. default: true
  7433. },
  7434. {
  7435. name: "Megamacro",
  7436. height: math.unit(9.213, "km")
  7437. },
  7438. {
  7439. name: "Planet Eater",
  7440. height: math.unit(489, "megameters")
  7441. },
  7442. {
  7443. name: "Teramacro",
  7444. height: math.unit(2471635000000, "meters")
  7445. },
  7446. {
  7447. name: "Examacro",
  7448. height: math.unit(8.0624e+26, "meters")
  7449. }
  7450. ]
  7451. ))
  7452. characterMakers.push(() => makeCharacter(
  7453. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7454. {
  7455. front: {
  7456. height: math.unit(1.72, "meters"),
  7457. weight: math.unit(68, "kg"),
  7458. name: "Front",
  7459. image: {
  7460. source: "./media/characters/lexi/front.svg"
  7461. }
  7462. }
  7463. },
  7464. [
  7465. {
  7466. name: "Very Smol",
  7467. height: math.unit(10, "mm")
  7468. },
  7469. {
  7470. name: "Micro",
  7471. height: math.unit(6.8, "cm"),
  7472. default: true
  7473. },
  7474. {
  7475. name: "Normal",
  7476. height: math.unit(1.72, "m")
  7477. }
  7478. ]
  7479. ))
  7480. characterMakers.push(() => makeCharacter(
  7481. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7482. {
  7483. front: {
  7484. height: math.unit(1.69, "meters"),
  7485. weight: math.unit(68, "kg"),
  7486. name: "Front",
  7487. image: {
  7488. source: "./media/characters/martin/front.svg",
  7489. extra: 596 / 581
  7490. }
  7491. }
  7492. },
  7493. [
  7494. {
  7495. name: "Micro",
  7496. height: math.unit(6.85, "cm"),
  7497. default: true
  7498. },
  7499. {
  7500. name: "Normal",
  7501. height: math.unit(1.69, "m")
  7502. }
  7503. ]
  7504. ))
  7505. characterMakers.push(() => makeCharacter(
  7506. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7507. {
  7508. front: {
  7509. height: math.unit(1.69, "meters"),
  7510. weight: math.unit(68, "kg"),
  7511. name: "Front",
  7512. image: {
  7513. source: "./media/characters/juno/front.svg"
  7514. }
  7515. }
  7516. },
  7517. [
  7518. {
  7519. name: "Micro",
  7520. height: math.unit(7, "cm")
  7521. },
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(1.89, "m")
  7525. },
  7526. {
  7527. name: "Macro",
  7528. height: math.unit(353, "meters"),
  7529. default: true
  7530. }
  7531. ]
  7532. ))
  7533. characterMakers.push(() => makeCharacter(
  7534. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7535. {
  7536. front: {
  7537. height: math.unit(1.93, "meters"),
  7538. weight: math.unit(83, "kg"),
  7539. name: "Front",
  7540. image: {
  7541. source: "./media/characters/samantha/front.svg"
  7542. }
  7543. },
  7544. frontClothed: {
  7545. height: math.unit(1.93, "meters"),
  7546. weight: math.unit(83, "kg"),
  7547. name: "Front (Clothed)",
  7548. image: {
  7549. source: "./media/characters/samantha/front-clothed.svg"
  7550. }
  7551. },
  7552. back: {
  7553. height: math.unit(1.93, "meters"),
  7554. weight: math.unit(83, "kg"),
  7555. name: "Back",
  7556. image: {
  7557. source: "./media/characters/samantha/back.svg"
  7558. }
  7559. },
  7560. },
  7561. [
  7562. {
  7563. name: "Normal",
  7564. height: math.unit(1.93, "m")
  7565. },
  7566. {
  7567. name: "Macro",
  7568. height: math.unit(74, "meters"),
  7569. default: true
  7570. },
  7571. {
  7572. name: "Macro+",
  7573. height: math.unit(223, "meters"),
  7574. },
  7575. {
  7576. name: "Megamacro",
  7577. height: math.unit(8381, "meters"),
  7578. },
  7579. {
  7580. name: "Megamacro+",
  7581. height: math.unit(12000, "kilometers")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(1.92, "meters"),
  7590. weight: math.unit(80, "kg"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/dr-clay/front.svg"
  7594. }
  7595. },
  7596. frontClothed: {
  7597. height: math.unit(1.92, "meters"),
  7598. weight: math.unit(80, "kg"),
  7599. name: "Front (Clothed)",
  7600. image: {
  7601. source: "./media/characters/dr-clay/front-clothed.svg"
  7602. }
  7603. }
  7604. },
  7605. [
  7606. {
  7607. name: "Normal",
  7608. height: math.unit(1.92, "m")
  7609. },
  7610. {
  7611. name: "Macro",
  7612. height: math.unit(214, "meters"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Macro+",
  7617. height: math.unit(12.237, "meters"),
  7618. },
  7619. {
  7620. name: "Megamacro",
  7621. height: math.unit(557, "megameters"),
  7622. },
  7623. {
  7624. name: "Unimaginable",
  7625. height: math.unit(120e9, "lightyears")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(2, "meters"),
  7634. weight: math.unit(80, "kg"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7638. }
  7639. }
  7640. },
  7641. [
  7642. {
  7643. name: "Teramacro",
  7644. height: math.unit(500000, "lightyears"),
  7645. default: true
  7646. },
  7647. ]
  7648. ))
  7649. characterMakers.push(() => makeCharacter(
  7650. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7651. {
  7652. crux: {
  7653. height: math.unit(2, "meters"),
  7654. weight: math.unit(150, "kg"),
  7655. name: "Crux",
  7656. image: {
  7657. source: "./media/characters/vemus/crux.svg",
  7658. extra: 1074/936,
  7659. bottom: 23/1097
  7660. }
  7661. },
  7662. skunkTanuki: {
  7663. height: math.unit(2, "meters"),
  7664. weight: math.unit(150, "kg"),
  7665. name: "Skunk-Tanuki",
  7666. image: {
  7667. source: "./media/characters/vemus/skunk-tanuki.svg",
  7668. extra: 926/893,
  7669. bottom: 20/946
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Normal",
  7676. height: math.unit(4, "meters"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Big",
  7681. height: math.unit(8, "meters")
  7682. },
  7683. {
  7684. name: "Macro",
  7685. height: math.unit(100, "meters")
  7686. },
  7687. {
  7688. name: "Macro+",
  7689. height: math.unit(1500, "meters")
  7690. },
  7691. {
  7692. name: "Stellar",
  7693. height: math.unit(14e8, "meters")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(2, "meters"),
  7702. weight: math.unit(70, "kg"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/beherit/front.svg",
  7706. extra: 1234/1109,
  7707. bottom: 55/1289
  7708. }
  7709. }
  7710. },
  7711. [
  7712. {
  7713. name: "Normal",
  7714. height: math.unit(6, "feet")
  7715. },
  7716. {
  7717. name: "Lorg",
  7718. height: math.unit(25, "feet"),
  7719. default: true
  7720. },
  7721. {
  7722. name: "Lorger",
  7723. height: math.unit(75, "feet")
  7724. },
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(200, "meters")
  7728. },
  7729. ]
  7730. ))
  7731. characterMakers.push(() => makeCharacter(
  7732. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7733. {
  7734. front: {
  7735. height: math.unit(2, "meters"),
  7736. weight: math.unit(150, "kg"),
  7737. name: "Front",
  7738. image: {
  7739. source: "./media/characters/everett/front.svg",
  7740. extra: 1017/866,
  7741. bottom: 86/1103
  7742. }
  7743. },
  7744. paw: {
  7745. height: math.unit(2 / 3.6, "meters"),
  7746. name: "Paw",
  7747. image: {
  7748. source: "./media/characters/everett/paw.svg"
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(15, "feet"),
  7756. default: true
  7757. },
  7758. {
  7759. name: "Lorg",
  7760. height: math.unit(70, "feet"),
  7761. default: true
  7762. },
  7763. {
  7764. name: "Lorger",
  7765. height: math.unit(250, "feet")
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(500, "meters")
  7770. },
  7771. ]
  7772. ))
  7773. characterMakers.push(() => makeCharacter(
  7774. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7775. {
  7776. front: {
  7777. height: math.unit(2, "meters"),
  7778. weight: math.unit(86, "kg"),
  7779. name: "Front",
  7780. image: {
  7781. source: "./media/characters/rose/front.svg",
  7782. extra: 1785/1636,
  7783. bottom: 30/1815
  7784. },
  7785. form: "liom",
  7786. default: true
  7787. },
  7788. frontSporty: {
  7789. height: math.unit(2, "meters"),
  7790. weight: math.unit(86, "kg"),
  7791. name: "Front (Sporty)",
  7792. image: {
  7793. source: "./media/characters/rose/front-sporty.svg",
  7794. extra: 350/335,
  7795. bottom: 10/360
  7796. },
  7797. form: "liom"
  7798. },
  7799. frontAlt: {
  7800. height: math.unit(1.6, "meters"),
  7801. weight: math.unit(86, "kg"),
  7802. name: "Front (Alt)",
  7803. image: {
  7804. source: "./media/characters/rose/front-alt.svg",
  7805. extra: 299/283,
  7806. bottom: 3/302
  7807. },
  7808. form: "liom"
  7809. },
  7810. plush: {
  7811. height: math.unit(2, "meters"),
  7812. weight: math.unit(86/3, "kg"),
  7813. name: "Plush",
  7814. image: {
  7815. source: "./media/characters/rose/plush.svg",
  7816. extra: 361/337,
  7817. bottom: 11/372
  7818. },
  7819. form: "plush",
  7820. default: true
  7821. },
  7822. faeStanding: {
  7823. height: math.unit(10, "cm"),
  7824. weight: math.unit(10, "grams"),
  7825. name: "Standing",
  7826. image: {
  7827. source: "./media/characters/rose/fae-standing.svg",
  7828. extra: 1189/1060,
  7829. bottom: 27/1216
  7830. },
  7831. form: "fae",
  7832. default: true
  7833. },
  7834. faeSitting: {
  7835. height: math.unit(5, "cm"),
  7836. weight: math.unit(10, "grams"),
  7837. name: "Sitting",
  7838. image: {
  7839. source: "./media/characters/rose/fae-sitting.svg",
  7840. extra: 737/577,
  7841. bottom: 356/1093
  7842. },
  7843. form: "fae"
  7844. },
  7845. faePaw: {
  7846. height: math.unit(1.35, "cm"),
  7847. name: "Paw",
  7848. image: {
  7849. source: "./media/characters/rose/fae-paw.svg"
  7850. },
  7851. form: "fae"
  7852. },
  7853. },
  7854. [
  7855. {
  7856. name: "True Micro",
  7857. height: math.unit(9, "cm"),
  7858. form: "liom"
  7859. },
  7860. {
  7861. name: "Micro",
  7862. height: math.unit(16, "cm"),
  7863. form: "liom"
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(1.85, "meters"),
  7868. default: true,
  7869. form: "liom"
  7870. },
  7871. {
  7872. name: "Mini-Macro",
  7873. height: math.unit(5, "meters"),
  7874. form: "liom"
  7875. },
  7876. {
  7877. name: "Macro",
  7878. height: math.unit(15, "meters"),
  7879. form: "liom"
  7880. },
  7881. {
  7882. name: "True Macro",
  7883. height: math.unit(40, "meters"),
  7884. form: "liom"
  7885. },
  7886. {
  7887. name: "City Scale",
  7888. height: math.unit(1, "km"),
  7889. form: "liom"
  7890. },
  7891. {
  7892. name: "Plushie",
  7893. height: math.unit(9, "cm"),
  7894. form: "plush",
  7895. default: true
  7896. },
  7897. {
  7898. name: "Fae",
  7899. height: math.unit(10, "cm"),
  7900. form: "fae",
  7901. default: true
  7902. },
  7903. ],
  7904. {
  7905. "liom": {
  7906. name: "Liom"
  7907. },
  7908. "plush": {
  7909. name: "Plush"
  7910. },
  7911. "fae": {
  7912. name: "Fae Fox",
  7913. default: true
  7914. }
  7915. }
  7916. ))
  7917. characterMakers.push(() => makeCharacter(
  7918. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7919. {
  7920. front: {
  7921. height: math.unit(2, "meters"),
  7922. weight: math.unit(350, "lbs"),
  7923. name: "Front",
  7924. image: {
  7925. source: "./media/characters/regal/front.svg"
  7926. }
  7927. },
  7928. back: {
  7929. height: math.unit(2, "meters"),
  7930. weight: math.unit(350, "lbs"),
  7931. name: "Back",
  7932. image: {
  7933. source: "./media/characters/regal/back.svg"
  7934. }
  7935. },
  7936. },
  7937. [
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(350, "feet"),
  7941. default: true
  7942. }
  7943. ]
  7944. ))
  7945. characterMakers.push(() => makeCharacter(
  7946. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7947. {
  7948. front: {
  7949. height: math.unit(4 + 11 / 12, "feet"),
  7950. weight: math.unit(100, "lbs"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/opal/front.svg"
  7954. }
  7955. },
  7956. frontAlt: {
  7957. height: math.unit(4 + 11 / 12, "feet"),
  7958. weight: math.unit(100, "lbs"),
  7959. name: "Front (Alt)",
  7960. image: {
  7961. source: "./media/characters/opal/front-alt.svg"
  7962. }
  7963. },
  7964. },
  7965. [
  7966. {
  7967. name: "Small",
  7968. height: math.unit(4 + 11 / 12, "feet")
  7969. },
  7970. {
  7971. name: "Normal",
  7972. height: math.unit(20, "feet"),
  7973. default: true
  7974. },
  7975. {
  7976. name: "Macro",
  7977. height: math.unit(120, "feet")
  7978. },
  7979. {
  7980. name: "Megamacro",
  7981. height: math.unit(80, "miles")
  7982. },
  7983. {
  7984. name: "True Size",
  7985. height: math.unit(100000, "lightyears")
  7986. },
  7987. ]
  7988. ))
  7989. characterMakers.push(() => makeCharacter(
  7990. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7991. {
  7992. front: {
  7993. height: math.unit(6, "feet"),
  7994. weight: math.unit(200, "lbs"),
  7995. name: "Front",
  7996. image: {
  7997. source: "./media/characters/vector-wuff/front.svg"
  7998. }
  7999. }
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(2.8, "meters")
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(450, "meters"),
  8009. default: true
  8010. },
  8011. {
  8012. name: "Megamacro",
  8013. height: math.unit(15, "kilometers")
  8014. }
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(6, "feet"),
  8022. weight: math.unit(256, "lbs"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/dannik/front.svg"
  8026. }
  8027. }
  8028. },
  8029. [
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(69.57, "meters"),
  8033. default: true
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(120, "lbs"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/azura-saharah/front.svg"
  8046. }
  8047. },
  8048. back: {
  8049. height: math.unit(6, "feet"),
  8050. weight: math.unit(120, "lbs"),
  8051. name: "Back",
  8052. image: {
  8053. source: "./media/characters/azura-saharah/back.svg"
  8054. }
  8055. },
  8056. },
  8057. [
  8058. {
  8059. name: "Macro",
  8060. height: math.unit(100, "feet"),
  8061. default: true
  8062. },
  8063. ]
  8064. ))
  8065. characterMakers.push(() => makeCharacter(
  8066. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8067. {
  8068. side: {
  8069. height: math.unit(5 + 4 / 12, "feet"),
  8070. weight: math.unit(163, "lbs"),
  8071. name: "Side",
  8072. image: {
  8073. source: "./media/characters/kennedy/side.svg"
  8074. }
  8075. }
  8076. },
  8077. [
  8078. {
  8079. name: "Standard Doggo",
  8080. height: math.unit(5 + 4 / 12, "feet")
  8081. },
  8082. {
  8083. name: "Big Doggo",
  8084. height: math.unit(25 + 3 / 12, "feet"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(5 + 5/12, "feet"),
  8094. weight: math.unit(100, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/odios-de-lunar/front.svg",
  8098. extra: 1468/1323,
  8099. bottom: 22/1490
  8100. }
  8101. }
  8102. },
  8103. [
  8104. {
  8105. name: "Micro",
  8106. height: math.unit(3, "inches")
  8107. },
  8108. {
  8109. name: "Normal",
  8110. height: math.unit(5.5, "feet"),
  8111. default: true
  8112. },
  8113. {
  8114. name: "Macro",
  8115. height: math.unit(100, "feet")
  8116. },
  8117. ]
  8118. ))
  8119. characterMakers.push(() => makeCharacter(
  8120. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8121. {
  8122. back: {
  8123. height: math.unit(6, "feet"),
  8124. weight: math.unit(220, "lbs"),
  8125. name: "Back",
  8126. image: {
  8127. source: "./media/characters/mandake/back.svg"
  8128. }
  8129. }
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(7, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(78, "feet")
  8140. },
  8141. {
  8142. name: "Macro+",
  8143. height: math.unit(300, "meters")
  8144. },
  8145. {
  8146. name: "Macro++",
  8147. height: math.unit(2400, "feet")
  8148. },
  8149. {
  8150. name: "Megamacro",
  8151. height: math.unit(5167, "meters")
  8152. },
  8153. {
  8154. name: "Gigamacro",
  8155. height: math.unit(41769, "miles")
  8156. },
  8157. ]
  8158. ))
  8159. characterMakers.push(() => makeCharacter(
  8160. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8161. {
  8162. front: {
  8163. height: math.unit(6, "feet"),
  8164. weight: math.unit(120, "lbs"),
  8165. name: "Front",
  8166. image: {
  8167. source: "./media/characters/yozey/front.svg"
  8168. }
  8169. },
  8170. frontAlt: {
  8171. height: math.unit(6, "feet"),
  8172. weight: math.unit(120, "lbs"),
  8173. name: "Front (Alt)",
  8174. image: {
  8175. source: "./media/characters/yozey/front-alt.svg"
  8176. }
  8177. },
  8178. side: {
  8179. height: math.unit(6, "feet"),
  8180. weight: math.unit(120, "lbs"),
  8181. name: "Side",
  8182. image: {
  8183. source: "./media/characters/yozey/side.svg"
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Micro",
  8190. height: math.unit(3, "inches"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(6, "feet")
  8196. }
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(6, "feet"),
  8204. weight: math.unit(103, "lbs"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/valeska-voss/front.svg"
  8208. }
  8209. }
  8210. },
  8211. [
  8212. {
  8213. name: "Mini-Sized Sub",
  8214. height: math.unit(3.1, "inches")
  8215. },
  8216. {
  8217. name: "Mid-Sized Sub",
  8218. height: math.unit(6.2, "inches")
  8219. },
  8220. {
  8221. name: "Full-Sized Sub",
  8222. height: math.unit(9.3, "inches")
  8223. },
  8224. {
  8225. name: "Normal",
  8226. height: math.unit(5 + 2 / 12, "foot"),
  8227. default: true
  8228. },
  8229. ]
  8230. ))
  8231. characterMakers.push(() => makeCharacter(
  8232. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8233. {
  8234. front: {
  8235. height: math.unit(6, "feet"),
  8236. weight: math.unit(160, "lbs"),
  8237. name: "Front",
  8238. image: {
  8239. source: "./media/characters/gene-zeta/front.svg",
  8240. extra: 3006 / 2826,
  8241. bottom: 182 / 3188
  8242. }
  8243. }
  8244. },
  8245. [
  8246. {
  8247. name: "Micro",
  8248. height: math.unit(6, "inches")
  8249. },
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(5 + 11 / 12, "foot"),
  8253. default: true
  8254. },
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(140, "feet")
  8258. },
  8259. {
  8260. name: "Supercharged",
  8261. height: math.unit(2500, "feet")
  8262. },
  8263. ]
  8264. ))
  8265. characterMakers.push(() => makeCharacter(
  8266. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8267. {
  8268. front: {
  8269. height: math.unit(6, "feet"),
  8270. weight: math.unit(350, "lbs"),
  8271. name: "Front",
  8272. image: {
  8273. source: "./media/characters/razinox/front.svg",
  8274. extra: 1686 / 1548,
  8275. bottom: 28.2 / 1868
  8276. }
  8277. },
  8278. back: {
  8279. height: math.unit(6, "feet"),
  8280. weight: math.unit(350, "lbs"),
  8281. name: "Back",
  8282. image: {
  8283. source: "./media/characters/razinox/back.svg",
  8284. extra: 1660 / 1590,
  8285. bottom: 15 / 1665
  8286. }
  8287. },
  8288. },
  8289. [
  8290. {
  8291. name: "Normal",
  8292. height: math.unit(10 + 8 / 12, "foot")
  8293. },
  8294. {
  8295. name: "Minimacro",
  8296. height: math.unit(15, "foot")
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(60, "foot"),
  8301. default: true
  8302. },
  8303. {
  8304. name: "Megamacro",
  8305. height: math.unit(5, "miles")
  8306. },
  8307. {
  8308. name: "Gigamacro",
  8309. height: math.unit(6000, "miles")
  8310. },
  8311. ]
  8312. ))
  8313. characterMakers.push(() => makeCharacter(
  8314. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8315. {
  8316. front: {
  8317. height: math.unit(6, "feet"),
  8318. weight: math.unit(150, "lbs"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/cobalt/front.svg"
  8322. }
  8323. }
  8324. },
  8325. [
  8326. {
  8327. name: "Normal",
  8328. height: math.unit(8 + 1 / 12, "foot")
  8329. },
  8330. {
  8331. name: "Macro",
  8332. height: math.unit(111, "foot"),
  8333. default: true
  8334. },
  8335. {
  8336. name: "Supracosmic",
  8337. height: math.unit(1e42, "feet")
  8338. },
  8339. ]
  8340. ))
  8341. characterMakers.push(() => makeCharacter(
  8342. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8343. {
  8344. front: {
  8345. height: math.unit(5, "inches"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/amanda/front.svg",
  8349. extra: 926/791,
  8350. bottom: 38/964
  8351. }
  8352. },
  8353. back: {
  8354. height: math.unit(5, "inches"),
  8355. name: "Back",
  8356. image: {
  8357. source: "./media/characters/amanda/back.svg",
  8358. extra: 909/805,
  8359. bottom: 43/952
  8360. }
  8361. },
  8362. },
  8363. [
  8364. {
  8365. name: "Micro",
  8366. height: math.unit(5, "inches"),
  8367. default: true
  8368. },
  8369. ]
  8370. ))
  8371. characterMakers.push(() => makeCharacter(
  8372. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8373. {
  8374. front: {
  8375. height: math.unit(2.75, "meters"),
  8376. weight: math.unit(1200, "lb"),
  8377. name: "Front",
  8378. image: {
  8379. source: "./media/characters/teal/front.svg",
  8380. extra: 2463 / 2320,
  8381. bottom: 166 / 2629
  8382. }
  8383. },
  8384. back: {
  8385. height: math.unit(2.75, "meters"),
  8386. weight: math.unit(1200, "lb"),
  8387. name: "Back",
  8388. image: {
  8389. source: "./media/characters/teal/back.svg",
  8390. extra: 2580 / 2489,
  8391. bottom: 151 / 2731
  8392. }
  8393. },
  8394. sitting: {
  8395. height: math.unit(1.9, "meters"),
  8396. weight: math.unit(1200, "lb"),
  8397. name: "Sitting",
  8398. image: {
  8399. source: "./media/characters/teal/sitting.svg",
  8400. extra: 623 / 590,
  8401. bottom: 121 / 744
  8402. }
  8403. },
  8404. standing: {
  8405. height: math.unit(2.75, "meters"),
  8406. weight: math.unit(1200, "lb"),
  8407. name: "Standing",
  8408. image: {
  8409. source: "./media/characters/teal/standing.svg",
  8410. extra: 923 / 893,
  8411. bottom: 60 / 983
  8412. }
  8413. },
  8414. stretching: {
  8415. height: math.unit(3.65, "meters"),
  8416. weight: math.unit(1200, "lb"),
  8417. name: "Stretching",
  8418. image: {
  8419. source: "./media/characters/teal/stretching.svg",
  8420. extra: 1276 / 1244,
  8421. bottom: 0 / 1276
  8422. }
  8423. },
  8424. legged: {
  8425. height: math.unit(1.3, "meters"),
  8426. weight: math.unit(100, "lb"),
  8427. name: "Legged",
  8428. image: {
  8429. source: "./media/characters/teal/legged.svg",
  8430. extra: 462 / 437,
  8431. bottom: 24 / 486
  8432. }
  8433. },
  8434. naga: {
  8435. height: math.unit(5.4, "meters"),
  8436. weight: math.unit(4000, "lb"),
  8437. name: "Naga",
  8438. image: {
  8439. source: "./media/characters/teal/naga.svg",
  8440. extra: 1902 / 1858,
  8441. bottom: 0 / 1902
  8442. }
  8443. },
  8444. hand: {
  8445. height: math.unit(0.52, "meters"),
  8446. name: "Hand",
  8447. image: {
  8448. source: "./media/characters/teal/hand.svg"
  8449. }
  8450. },
  8451. maw: {
  8452. height: math.unit(0.43, "meters"),
  8453. name: "Maw",
  8454. image: {
  8455. source: "./media/characters/teal/maw.svg"
  8456. }
  8457. },
  8458. slit: {
  8459. height: math.unit(0.25, "meters"),
  8460. name: "Slit",
  8461. image: {
  8462. source: "./media/characters/teal/slit.svg"
  8463. }
  8464. },
  8465. },
  8466. [
  8467. {
  8468. name: "Normal",
  8469. height: math.unit(2.75, "meters"),
  8470. default: true
  8471. },
  8472. {
  8473. name: "Macro",
  8474. height: math.unit(300, "feet")
  8475. },
  8476. {
  8477. name: "Macro+",
  8478. height: math.unit(2000, "feet")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8484. {
  8485. frontCat: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(180, "lbs"),
  8488. name: "Front (Cat)",
  8489. image: {
  8490. source: "./media/characters/ravin-amulet/front-cat.svg"
  8491. }
  8492. },
  8493. frontCatAlt: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(180, "lbs"),
  8496. name: "Front (Alt, Cat)",
  8497. image: {
  8498. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8499. }
  8500. },
  8501. frontWerewolf: {
  8502. height: math.unit(6 * 1.2, "feet"),
  8503. weight: math.unit(225, "lbs"),
  8504. name: "Front (Werewolf)",
  8505. image: {
  8506. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8507. }
  8508. },
  8509. backWerewolf: {
  8510. height: math.unit(6 * 1.2, "feet"),
  8511. weight: math.unit(225, "lbs"),
  8512. name: "Back (Werewolf)",
  8513. image: {
  8514. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Nano",
  8521. height: math.unit(1, "micrometer")
  8522. },
  8523. {
  8524. name: "Micro",
  8525. height: math.unit(1, "inch")
  8526. },
  8527. {
  8528. name: "Normal",
  8529. height: math.unit(6, "feet"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Macro",
  8534. height: math.unit(60, "feet")
  8535. }
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(165, "lbs"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/fluoresce/front.svg"
  8547. }
  8548. }
  8549. },
  8550. [
  8551. {
  8552. name: "Micro",
  8553. height: math.unit(6, "cm")
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(5 + 7 / 12, "feet"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Macro",
  8562. height: math.unit(56, "feet")
  8563. },
  8564. {
  8565. name: "Megamacro",
  8566. height: math.unit(1.9, "miles")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(9 + 6 / 12, "feet"),
  8575. weight: math.unit(523, "lbs"),
  8576. name: "Side",
  8577. image: {
  8578. source: "./media/characters/aurora/side.svg",
  8579. extra: 474/393,
  8580. bottom: 5/479
  8581. }
  8582. }
  8583. },
  8584. [
  8585. {
  8586. name: "Normal",
  8587. height: math.unit(9 + 6 / 12, "feet")
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(96, "feet"),
  8592. default: true
  8593. },
  8594. {
  8595. name: "Macro+",
  8596. height: math.unit(243, "feet")
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(194, "cm"),
  8605. weight: math.unit(90, "kg"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/ranek/front.svg",
  8609. extra: 1862/1791,
  8610. bottom: 80/1942
  8611. }
  8612. },
  8613. back: {
  8614. height: math.unit(194, "cm"),
  8615. weight: math.unit(90, "kg"),
  8616. name: "Back",
  8617. image: {
  8618. source: "./media/characters/ranek/back.svg",
  8619. extra: 1853/1787,
  8620. bottom: 74/1927
  8621. }
  8622. },
  8623. feral: {
  8624. height: math.unit(30, "cm"),
  8625. weight: math.unit(1.6, "lbs"),
  8626. name: "Feral",
  8627. image: {
  8628. source: "./media/characters/ranek/feral.svg",
  8629. extra: 990/631,
  8630. bottom: 29/1019
  8631. }
  8632. },
  8633. },
  8634. [
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(194, "cm"),
  8638. default: true
  8639. },
  8640. {
  8641. name: "Macro",
  8642. height: math.unit(100, "meters")
  8643. },
  8644. ]
  8645. ))
  8646. characterMakers.push(() => makeCharacter(
  8647. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8648. {
  8649. front: {
  8650. height: math.unit(5 + 6 / 12, "feet"),
  8651. weight: math.unit(153, "lbs"),
  8652. name: "Front",
  8653. image: {
  8654. source: "./media/characters/andrew-cooper/front.svg"
  8655. }
  8656. },
  8657. },
  8658. [
  8659. {
  8660. name: "Nano",
  8661. height: math.unit(1, "mm")
  8662. },
  8663. {
  8664. name: "Micro",
  8665. height: math.unit(2, "inches")
  8666. },
  8667. {
  8668. name: "Normal",
  8669. height: math.unit(5 + 6 / 12, "feet"),
  8670. default: true
  8671. }
  8672. ]
  8673. ))
  8674. characterMakers.push(() => makeCharacter(
  8675. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8676. {
  8677. front: {
  8678. height: math.unit(6, "feet"),
  8679. weight: math.unit(180, "lbs"),
  8680. name: "Front",
  8681. image: {
  8682. source: "./media/characters/akane-sato/front.svg",
  8683. extra: 1219 / 1140
  8684. }
  8685. },
  8686. back: {
  8687. height: math.unit(6, "feet"),
  8688. weight: math.unit(180, "lbs"),
  8689. name: "Back",
  8690. image: {
  8691. source: "./media/characters/akane-sato/back.svg",
  8692. extra: 1219 / 1170
  8693. }
  8694. },
  8695. },
  8696. [
  8697. {
  8698. name: "Normal",
  8699. height: math.unit(2.5, "meters")
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(250, "meters"),
  8704. default: true
  8705. },
  8706. {
  8707. name: "Megamacro",
  8708. height: math.unit(25, "km")
  8709. },
  8710. ]
  8711. ))
  8712. characterMakers.push(() => makeCharacter(
  8713. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8714. {
  8715. front: {
  8716. height: math.unit(6, "feet"),
  8717. weight: math.unit(65, "kg"),
  8718. name: "Front",
  8719. image: {
  8720. source: "./media/characters/rook/front.svg",
  8721. extra: 960 / 950
  8722. }
  8723. }
  8724. },
  8725. [
  8726. {
  8727. name: "Normal",
  8728. height: math.unit(8.8, "feet")
  8729. },
  8730. {
  8731. name: "Macro",
  8732. height: math.unit(88, "feet"),
  8733. default: true
  8734. },
  8735. {
  8736. name: "Megamacro",
  8737. height: math.unit(8, "miles")
  8738. },
  8739. ]
  8740. ))
  8741. characterMakers.push(() => makeCharacter(
  8742. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8743. {
  8744. front: {
  8745. height: math.unit(12 + 2 / 12, "feet"),
  8746. weight: math.unit(808, "lbs"),
  8747. name: "Front",
  8748. image: {
  8749. source: "./media/characters/prodigy/front.svg"
  8750. }
  8751. }
  8752. },
  8753. [
  8754. {
  8755. name: "Normal",
  8756. height: math.unit(12 + 2 / 12, "feet"),
  8757. default: true
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(143, "feet")
  8762. },
  8763. {
  8764. name: "Macro+",
  8765. height: math.unit(400, "feet")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8771. {
  8772. front: {
  8773. height: math.unit(6, "feet"),
  8774. weight: math.unit(225, "lbs"),
  8775. name: "Front",
  8776. image: {
  8777. source: "./media/characters/daniel/front.svg"
  8778. }
  8779. },
  8780. leaning: {
  8781. height: math.unit(6, "feet"),
  8782. weight: math.unit(225, "lbs"),
  8783. name: "Leaning",
  8784. image: {
  8785. source: "./media/characters/daniel/leaning.svg"
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Macro",
  8792. height: math.unit(1000, "feet"),
  8793. default: true
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(6, "feet"),
  8802. weight: math.unit(88, "lbs"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/chiros/front.svg",
  8806. extra: 306 / 226
  8807. }
  8808. },
  8809. side: {
  8810. height: math.unit(6, "feet"),
  8811. weight: math.unit(88, "lbs"),
  8812. name: "Side",
  8813. image: {
  8814. source: "./media/characters/chiros/side.svg",
  8815. extra: 306 / 226
  8816. }
  8817. },
  8818. },
  8819. [
  8820. {
  8821. name: "Normal",
  8822. height: math.unit(6, "cm"),
  8823. default: true
  8824. },
  8825. ]
  8826. ))
  8827. characterMakers.push(() => makeCharacter(
  8828. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8829. {
  8830. front: {
  8831. height: math.unit(6, "feet"),
  8832. weight: math.unit(100, "lbs"),
  8833. name: "Front",
  8834. image: {
  8835. source: "./media/characters/selka/front.svg",
  8836. extra: 947 / 887
  8837. }
  8838. }
  8839. },
  8840. [
  8841. {
  8842. name: "Normal",
  8843. height: math.unit(5, "cm"),
  8844. default: true
  8845. },
  8846. ]
  8847. ))
  8848. characterMakers.push(() => makeCharacter(
  8849. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8850. {
  8851. front: {
  8852. height: math.unit(8 + 3 / 12, "feet"),
  8853. weight: math.unit(424, "lbs"),
  8854. name: "Front",
  8855. image: {
  8856. source: "./media/characters/verin/front.svg",
  8857. extra: 1845 / 1550
  8858. }
  8859. },
  8860. frontArmored: {
  8861. height: math.unit(8 + 3 / 12, "feet"),
  8862. weight: math.unit(424, "lbs"),
  8863. name: "Front (Armored)",
  8864. image: {
  8865. source: "./media/characters/verin/front-armor.svg",
  8866. extra: 1845 / 1550,
  8867. bottom: 0.01
  8868. }
  8869. },
  8870. back: {
  8871. height: math.unit(8 + 3 / 12, "feet"),
  8872. weight: math.unit(424, "lbs"),
  8873. name: "Back",
  8874. image: {
  8875. source: "./media/characters/verin/back.svg",
  8876. bottom: 0.1,
  8877. extra: 1
  8878. }
  8879. },
  8880. foot: {
  8881. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8882. name: "Foot",
  8883. image: {
  8884. source: "./media/characters/verin/foot.svg"
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(8 + 3 / 12, "feet")
  8892. },
  8893. {
  8894. name: "Minimacro",
  8895. height: math.unit(21, "feet"),
  8896. default: true
  8897. },
  8898. {
  8899. name: "Macro",
  8900. height: math.unit(626, "feet")
  8901. },
  8902. ]
  8903. ))
  8904. characterMakers.push(() => makeCharacter(
  8905. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8906. {
  8907. front: {
  8908. height: math.unit(2.718, "meters"),
  8909. weight: math.unit(150, "lbs"),
  8910. name: "Front",
  8911. image: {
  8912. source: "./media/characters/sovrim-terraquian/front.svg",
  8913. extra: 1752/1689,
  8914. bottom: 36/1788
  8915. }
  8916. },
  8917. back: {
  8918. height: math.unit(2.718, "meters"),
  8919. weight: math.unit(150, "lbs"),
  8920. name: "Back",
  8921. image: {
  8922. source: "./media/characters/sovrim-terraquian/back.svg",
  8923. extra: 1698/1657,
  8924. bottom: 58/1756
  8925. }
  8926. },
  8927. tongue: {
  8928. height: math.unit(2.865, "feet"),
  8929. name: "Tongue",
  8930. image: {
  8931. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8932. }
  8933. },
  8934. hand: {
  8935. height: math.unit(1.61, "feet"),
  8936. name: "Hand",
  8937. image: {
  8938. source: "./media/characters/sovrim-terraquian/hand.svg"
  8939. }
  8940. },
  8941. foot: {
  8942. height: math.unit(1.05, "feet"),
  8943. name: "Foot",
  8944. image: {
  8945. source: "./media/characters/sovrim-terraquian/foot.svg"
  8946. }
  8947. },
  8948. footAlt: {
  8949. height: math.unit(0.88, "feet"),
  8950. name: "Foot (Alt)",
  8951. image: {
  8952. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8953. }
  8954. },
  8955. },
  8956. [
  8957. {
  8958. name: "Micro",
  8959. height: math.unit(2, "inches")
  8960. },
  8961. {
  8962. name: "Small",
  8963. height: math.unit(1, "meter")
  8964. },
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(Math.E, "meters"),
  8968. default: true
  8969. },
  8970. {
  8971. name: "Macro",
  8972. height: math.unit(20, "meters")
  8973. },
  8974. {
  8975. name: "Macro+",
  8976. height: math.unit(400, "meters")
  8977. },
  8978. ]
  8979. ))
  8980. characterMakers.push(() => makeCharacter(
  8981. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8982. {
  8983. front: {
  8984. height: math.unit(7, "feet"),
  8985. weight: math.unit(489, "lbs"),
  8986. name: "Front",
  8987. image: {
  8988. source: "./media/characters/reece-silvermane/front.svg",
  8989. bottom: 0.02,
  8990. extra: 1
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(1.5, "miles"),
  8998. default: true
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(78, "kg"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/kane/front.svg",
  9011. extra: 978 / 899
  9012. }
  9013. },
  9014. },
  9015. [
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(2.1, "m"),
  9019. },
  9020. {
  9021. name: "Macro",
  9022. height: math.unit(1, "km"),
  9023. default: true
  9024. },
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(6, "feet"),
  9032. weight: math.unit(200, "kg"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/tegon/front.svg",
  9036. bottom: 0.01,
  9037. extra: 1
  9038. }
  9039. },
  9040. },
  9041. [
  9042. {
  9043. name: "Micro",
  9044. height: math.unit(1, "inch")
  9045. },
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(6 + 3 / 12, "feet"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Macro",
  9053. height: math.unit(300, "feet")
  9054. },
  9055. {
  9056. name: "Megamacro",
  9057. height: math.unit(69, "miles")
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9063. {
  9064. side: {
  9065. height: math.unit(6, "feet"),
  9066. weight: math.unit(2304, "lbs"),
  9067. name: "Side",
  9068. image: {
  9069. source: "./media/characters/arcturax/side.svg",
  9070. extra: 790 / 376,
  9071. bottom: 0.01
  9072. }
  9073. },
  9074. },
  9075. [
  9076. {
  9077. name: "Micro",
  9078. height: math.unit(2, "inch")
  9079. },
  9080. {
  9081. name: "Normal",
  9082. height: math.unit(6, "feet")
  9083. },
  9084. {
  9085. name: "Macro",
  9086. height: math.unit(39, "feet"),
  9087. default: true
  9088. },
  9089. {
  9090. name: "Megamacro",
  9091. height: math.unit(7, "miles")
  9092. },
  9093. ]
  9094. ))
  9095. characterMakers.push(() => makeCharacter(
  9096. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9097. {
  9098. front: {
  9099. height: math.unit(6, "feet"),
  9100. weight: math.unit(50, "lbs"),
  9101. name: "Front",
  9102. image: {
  9103. source: "./media/characters/sentri/front.svg",
  9104. extra: 1750 / 1570,
  9105. bottom: 0.025
  9106. }
  9107. },
  9108. frontAlt: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(50, "lbs"),
  9111. name: "Front (Alt)",
  9112. image: {
  9113. source: "./media/characters/sentri/front-alt.svg",
  9114. extra: 1750 / 1570,
  9115. bottom: 0.025
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(15, "feet"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Macro",
  9127. height: math.unit(2500, "feet")
  9128. }
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(5 + 8 / 12, "feet"),
  9136. weight: math.unit(130, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/corvin/front.svg",
  9140. extra: 1803 / 1629
  9141. }
  9142. },
  9143. frontShirt: {
  9144. height: math.unit(5 + 8 / 12, "feet"),
  9145. weight: math.unit(130, "lbs"),
  9146. name: "Front (Shirt)",
  9147. image: {
  9148. source: "./media/characters/corvin/front-shirt.svg",
  9149. extra: 1803 / 1629
  9150. }
  9151. },
  9152. frontPoncho: {
  9153. height: math.unit(5 + 8 / 12, "feet"),
  9154. weight: math.unit(130, "lbs"),
  9155. name: "Front (Poncho)",
  9156. image: {
  9157. source: "./media/characters/corvin/front-poncho.svg",
  9158. extra: 1803 / 1629
  9159. }
  9160. },
  9161. side: {
  9162. height: math.unit(5 + 8 / 12, "feet"),
  9163. weight: math.unit(130, "lbs"),
  9164. name: "Side",
  9165. image: {
  9166. source: "./media/characters/corvin/side.svg",
  9167. extra: 1012 / 945
  9168. }
  9169. },
  9170. back: {
  9171. height: math.unit(5 + 8 / 12, "feet"),
  9172. weight: math.unit(130, "lbs"),
  9173. name: "Back",
  9174. image: {
  9175. source: "./media/characters/corvin/back.svg",
  9176. extra: 1803 / 1629
  9177. }
  9178. },
  9179. },
  9180. [
  9181. {
  9182. name: "Micro",
  9183. height: math.unit(3, "inches")
  9184. },
  9185. {
  9186. name: "Normal",
  9187. height: math.unit(5 + 8 / 12, "feet")
  9188. },
  9189. {
  9190. name: "Macro",
  9191. height: math.unit(300, "feet"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Megamacro",
  9196. height: math.unit(500, "miles")
  9197. }
  9198. ]
  9199. ))
  9200. characterMakers.push(() => makeCharacter(
  9201. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9202. {
  9203. front: {
  9204. height: math.unit(6, "feet"),
  9205. weight: math.unit(135, "lbs"),
  9206. name: "Front",
  9207. image: {
  9208. source: "./media/characters/q/front.svg",
  9209. extra: 854 / 752,
  9210. bottom: 0.005
  9211. }
  9212. },
  9213. back: {
  9214. height: math.unit(6, "feet"),
  9215. weight: math.unit(130, "lbs"),
  9216. name: "Back",
  9217. image: {
  9218. source: "./media/characters/q/back.svg",
  9219. extra: 854 / 752
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Macro",
  9226. height: math.unit(90, "feet"),
  9227. default: true
  9228. },
  9229. {
  9230. name: "Extra Macro",
  9231. height: math.unit(300, "feet"),
  9232. },
  9233. {
  9234. name: "BIG WALF",
  9235. height: math.unit(750, "feet"),
  9236. },
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9241. {
  9242. front: {
  9243. height: math.unit(3, "feet"),
  9244. weight: math.unit(28, "lbs"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/citrine/front.svg"
  9248. }
  9249. }
  9250. },
  9251. [
  9252. {
  9253. name: "Normal",
  9254. height: math.unit(3, "feet"),
  9255. default: true
  9256. }
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9261. {
  9262. front: {
  9263. height: math.unit(14, "feet"),
  9264. weight: math.unit(1450, "kg"),
  9265. preyCapacity: math.unit(15, "people"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/aura-starwind/front.svg",
  9269. extra: 1440/1327,
  9270. bottom: 11/1451
  9271. }
  9272. },
  9273. side: {
  9274. height: math.unit(14, "feet"),
  9275. weight: math.unit(1450, "kg"),
  9276. preyCapacity: math.unit(15, "people"),
  9277. name: "Side",
  9278. image: {
  9279. source: "./media/characters/aura-starwind/side.svg",
  9280. extra: 1654 / 1497
  9281. }
  9282. },
  9283. taur: {
  9284. height: math.unit(18, "feet"),
  9285. weight: math.unit(5500, "kg"),
  9286. preyCapacity: math.unit(50, "people"),
  9287. name: "Taur",
  9288. image: {
  9289. source: "./media/characters/aura-starwind/taur.svg",
  9290. extra: 1760 / 1650
  9291. }
  9292. },
  9293. feral: {
  9294. height: math.unit(46, "feet"),
  9295. weight: math.unit(25000, "kg"),
  9296. preyCapacity: math.unit(120, "people"),
  9297. name: "Feral",
  9298. image: {
  9299. source: "./media/characters/aura-starwind/feral.svg"
  9300. }
  9301. },
  9302. },
  9303. [
  9304. {
  9305. name: "Normal",
  9306. height: math.unit(14, "feet"),
  9307. default: true
  9308. },
  9309. {
  9310. name: "Macro",
  9311. height: math.unit(50, "meters")
  9312. },
  9313. {
  9314. name: "Megamacro",
  9315. height: math.unit(5000, "meters")
  9316. },
  9317. {
  9318. name: "Gigamacro",
  9319. height: math.unit(100000, "kilometers")
  9320. },
  9321. ]
  9322. ))
  9323. characterMakers.push(() => makeCharacter(
  9324. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9325. {
  9326. front: {
  9327. height: math.unit(2 + 7 / 12, "feet"),
  9328. weight: math.unit(32, "lbs"),
  9329. name: "Front",
  9330. image: {
  9331. source: "./media/characters/rivet/front.svg",
  9332. extra: 1716 / 1658,
  9333. bottom: 0.03
  9334. }
  9335. },
  9336. foot: {
  9337. height: math.unit(0.551, "feet"),
  9338. name: "Rivet's Foot",
  9339. image: {
  9340. source: "./media/characters/rivet/foot.svg"
  9341. },
  9342. rename: true
  9343. }
  9344. },
  9345. [
  9346. {
  9347. name: "Micro",
  9348. height: math.unit(1.5, "inches"),
  9349. },
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(2 + 7 / 12, "feet"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Macro",
  9357. height: math.unit(85, "feet")
  9358. },
  9359. {
  9360. name: "Megamacro",
  9361. height: math.unit(2.2, "km")
  9362. }
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(5 + 9 / 12, "feet"),
  9370. weight: math.unit(150, "lbs"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/coffee/front.svg",
  9374. extra: 946/880,
  9375. bottom: 66/1012
  9376. }
  9377. },
  9378. foot: {
  9379. height: math.unit(1.29, "feet"),
  9380. name: "Foot",
  9381. image: {
  9382. source: "./media/characters/coffee/foot.svg"
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(2, "inches"),
  9390. },
  9391. {
  9392. name: "Normal",
  9393. height: math.unit(5 + 9 / 12, "feet"),
  9394. default: true
  9395. },
  9396. {
  9397. name: "Macro",
  9398. height: math.unit(800, "feet")
  9399. },
  9400. {
  9401. name: "Megamacro",
  9402. height: math.unit(25, "miles")
  9403. }
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(200, "lbs"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/chari-gal/front.svg",
  9415. extra: 1568 / 1385,
  9416. bottom: 0.047
  9417. }
  9418. },
  9419. gigantamax: {
  9420. height: math.unit(6 * 16, "feet"),
  9421. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9422. name: "Gigantamax",
  9423. image: {
  9424. source: "./media/characters/chari-gal/gigantamax.svg",
  9425. extra: 1124 / 888,
  9426. bottom: 0.03
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(5 + 7 / 12, "feet")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(200, "feet"),
  9438. default: true
  9439. }
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(150, "lbs"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/nova/front.svg",
  9451. extra: 5000 / 4722,
  9452. bottom: 0.02
  9453. }
  9454. }
  9455. },
  9456. [
  9457. {
  9458. name: "Micro-",
  9459. height: math.unit(0.8, "inches")
  9460. },
  9461. {
  9462. name: "Micro",
  9463. height: math.unit(2, "inches"),
  9464. default: true
  9465. },
  9466. ]
  9467. ))
  9468. characterMakers.push(() => makeCharacter(
  9469. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9470. {
  9471. koboldFront: {
  9472. height: math.unit(3 + 1 / 12, "feet"),
  9473. weight: math.unit(21.7, "lbs"),
  9474. name: "Front",
  9475. image: {
  9476. source: "./media/characters/argent/kobold-front.svg",
  9477. extra: 1471 / 1331,
  9478. bottom: 100.8 / 1575.5
  9479. },
  9480. form: "kobold",
  9481. default: true
  9482. },
  9483. dragonFront: {
  9484. height: math.unit(75, "inches"),
  9485. name: "Front",
  9486. image: {
  9487. source: "./media/characters/argent/dragon-front.svg",
  9488. extra: 1389/1248,
  9489. bottom: 54/1443
  9490. },
  9491. form: "dragon",
  9492. },
  9493. dragonBack: {
  9494. height: math.unit(75, "inches"),
  9495. name: "Back",
  9496. image: {
  9497. source: "./media/characters/argent/dragon-back.svg",
  9498. extra: 1399/1271,
  9499. bottom: 23/1422
  9500. },
  9501. form: "dragon",
  9502. },
  9503. dragonDressed: {
  9504. height: math.unit(75, "inches"),
  9505. name: "Dressed",
  9506. image: {
  9507. source: "./media/characters/argent/dragon-dressed.svg",
  9508. extra: 1350/1215,
  9509. bottom: 26/1376
  9510. },
  9511. form: "dragon"
  9512. },
  9513. dragonHead: {
  9514. height: math.unit(23.5, "inches"),
  9515. name: "Head",
  9516. image: {
  9517. source: "./media/characters/argent/dragon-head.svg"
  9518. },
  9519. form: "dragon",
  9520. },
  9521. },
  9522. [
  9523. {
  9524. name: "Micro",
  9525. height: math.unit(2, "inches"),
  9526. form: "kobold",
  9527. },
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(3 + 1 / 12, "feet"),
  9531. form: "kobold",
  9532. default: true
  9533. },
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(120, "feet"),
  9537. form: "kobold",
  9538. },
  9539. {
  9540. name: "Speck",
  9541. height: math.unit(1, "mm"),
  9542. form: "dragon",
  9543. },
  9544. {
  9545. name: "Tiny",
  9546. height: math.unit(1, "cm"),
  9547. form: "dragon",
  9548. },
  9549. {
  9550. name: "Micro",
  9551. height: math.unit(5, "cm"),
  9552. form: "dragon",
  9553. },
  9554. {
  9555. name: "Normal",
  9556. height: math.unit(75, "inches"),
  9557. form: "dragon",
  9558. default: true
  9559. },
  9560. {
  9561. name: "Extra Tall",
  9562. height: math.unit(9, "feet"),
  9563. form: "dragon",
  9564. },
  9565. {
  9566. name: "Inconvenient",
  9567. height: math.unit(5, "meters"),
  9568. form: "dragon",
  9569. },
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(70, "meters"),
  9573. form: "dragon",
  9574. },
  9575. {
  9576. name: "Macro+",
  9577. height: math.unit(250, "meters"),
  9578. form: "dragon",
  9579. },
  9580. {
  9581. name: "Megamacro",
  9582. height: math.unit(20, "km"),
  9583. form: "dragon",
  9584. },
  9585. {
  9586. name: "Mountainous",
  9587. height: math.unit(100, "km"),
  9588. form: "dragon",
  9589. },
  9590. {
  9591. name: "Continental",
  9592. height: math.unit(2, "megameters"),
  9593. form: "dragon",
  9594. },
  9595. {
  9596. name: "Too Big",
  9597. height: math.unit(900, "megameters"),
  9598. form: "dragon",
  9599. },
  9600. ],
  9601. {
  9602. "kobold": {
  9603. name: "Kobold",
  9604. default: true
  9605. },
  9606. "dragon": {
  9607. name: "Dragon",
  9608. },
  9609. }
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9613. {
  9614. lamp: {
  9615. height: math.unit(7 * 1559 / 989, "feet"),
  9616. name: "Magic Lamp",
  9617. image: {
  9618. source: "./media/characters/mira-al-cul/lamp.svg",
  9619. extra: 1617 / 1559
  9620. }
  9621. },
  9622. front: {
  9623. height: math.unit(7, "feet"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/mira-al-cul/front.svg",
  9627. extra: 1044 / 990
  9628. }
  9629. },
  9630. },
  9631. [
  9632. {
  9633. name: "Heavily Restricted",
  9634. height: math.unit(7 * 1559 / 989, "feet")
  9635. },
  9636. {
  9637. name: "Freshly Freed",
  9638. height: math.unit(50 * 1559 / 989, "feet")
  9639. },
  9640. {
  9641. name: "World Encompassing",
  9642. height: math.unit(10000 * 1559 / 989, "miles")
  9643. },
  9644. {
  9645. name: "Galactic",
  9646. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9647. },
  9648. {
  9649. name: "Palmed Universe",
  9650. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9651. default: true
  9652. },
  9653. {
  9654. name: "Multiversal Matriarch",
  9655. height: math.unit(8.87e10, "yottameters")
  9656. },
  9657. {
  9658. name: "Void Mother",
  9659. height: math.unit(3.14e110, "yottaparsecs")
  9660. },
  9661. {
  9662. name: "Toying with Transcendence",
  9663. height: math.unit(1e307, "meters")
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9669. {
  9670. front: {
  9671. height: math.unit(17 + 1 / 12, "feet"),
  9672. weight: math.unit(476.2 * 5, "lbs"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/kuro-shi-uchū/front.svg",
  9676. extra: 2329 / 1835,
  9677. bottom: 0.02
  9678. }
  9679. },
  9680. },
  9681. [
  9682. {
  9683. name: "Micro",
  9684. height: math.unit(2, "inches")
  9685. },
  9686. {
  9687. name: "Normal",
  9688. height: math.unit(12, "meters")
  9689. },
  9690. {
  9691. name: "Planetary",
  9692. height: math.unit(0.00929, "AU"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Universal",
  9697. height: math.unit(20, "gigaparsecs")
  9698. },
  9699. ]
  9700. ))
  9701. characterMakers.push(() => makeCharacter(
  9702. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9703. {
  9704. front: {
  9705. height: math.unit(5 + 2 / 12, "feet"),
  9706. weight: math.unit(120, "lbs"),
  9707. name: "Front",
  9708. image: {
  9709. source: "./media/characters/katherine/front.svg",
  9710. extra: 2075 / 1969
  9711. }
  9712. },
  9713. dress: {
  9714. height: math.unit(5 + 2 / 12, "feet"),
  9715. weight: math.unit(120, "lbs"),
  9716. name: "Dress",
  9717. image: {
  9718. source: "./media/characters/katherine/dress.svg",
  9719. extra: 2258 / 2064
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Micro",
  9726. height: math.unit(1, "inches"),
  9727. default: true
  9728. },
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(5 + 2 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(100, "meters")
  9736. },
  9737. {
  9738. name: "Megamacro",
  9739. height: math.unit(80, "miles")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(7 + 8 / 12, "feet"),
  9748. weight: math.unit(250, "lbs"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/yevis/front.svg",
  9752. extra: 1938 / 1755
  9753. }
  9754. }
  9755. },
  9756. [
  9757. {
  9758. name: "Mortal",
  9759. height: math.unit(7 + 8 / 12, "feet")
  9760. },
  9761. {
  9762. name: "Battle",
  9763. height: math.unit(25 + 11 / 12, "feet")
  9764. },
  9765. {
  9766. name: "Wrath",
  9767. height: math.unit(1654 + 11 / 12, "feet")
  9768. },
  9769. {
  9770. name: "Planet Destroyer",
  9771. height: math.unit(12000, "miles")
  9772. },
  9773. {
  9774. name: "Galaxy Conqueror",
  9775. height: math.unit(1.45, "zettameters"),
  9776. default: true
  9777. },
  9778. {
  9779. name: "Universal War",
  9780. height: math.unit(184, "gigaparsecs")
  9781. },
  9782. {
  9783. name: "Eternity War",
  9784. height: math.unit(1.98e55, "yottaparsecs")
  9785. },
  9786. ]
  9787. ))
  9788. characterMakers.push(() => makeCharacter(
  9789. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9790. {
  9791. front: {
  9792. height: math.unit(5 + 8 / 12, "feet"),
  9793. weight: math.unit(63, "kg"),
  9794. name: "Front",
  9795. image: {
  9796. source: "./media/characters/xavier/front.svg",
  9797. extra: 944 / 883
  9798. }
  9799. },
  9800. frontStretch: {
  9801. height: math.unit(5 + 8 / 12, "feet"),
  9802. weight: math.unit(63, "kg"),
  9803. name: "Stretching",
  9804. image: {
  9805. source: "./media/characters/xavier/front-stretch.svg",
  9806. extra: 962 / 820
  9807. }
  9808. },
  9809. },
  9810. [
  9811. {
  9812. name: "Normal",
  9813. height: math.unit(5 + 8 / 12, "feet")
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(100, "meters"),
  9818. default: true
  9819. },
  9820. {
  9821. name: "McLargeHuge",
  9822. height: math.unit(10, "miles")
  9823. },
  9824. ]
  9825. ))
  9826. characterMakers.push(() => makeCharacter(
  9827. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9828. {
  9829. front: {
  9830. height: math.unit(5 + 5 / 12, "feet"),
  9831. weight: math.unit(150, "lb"),
  9832. name: "Front",
  9833. image: {
  9834. source: "./media/characters/joshii/front.svg",
  9835. extra: 765 / 653,
  9836. bottom: 51 / 816
  9837. }
  9838. },
  9839. foot: {
  9840. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9841. name: "Foot",
  9842. image: {
  9843. source: "./media/characters/joshii/foot.svg"
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Micro",
  9850. height: math.unit(2, "inches")
  9851. },
  9852. {
  9853. name: "Normal",
  9854. height: math.unit(5 + 5 / 12, "feet")
  9855. },
  9856. {
  9857. name: "Macro",
  9858. height: math.unit(785, "feet"),
  9859. default: true
  9860. },
  9861. {
  9862. name: "Megamacro",
  9863. height: math.unit(24.5, "miles")
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9869. {
  9870. front: {
  9871. height: math.unit(6, "feet"),
  9872. weight: math.unit(150, "lb"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/goddess-elizabeth/front.svg",
  9876. extra: 1800 / 1525,
  9877. bottom: 0.005
  9878. }
  9879. },
  9880. foot: {
  9881. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9882. name: "Foot",
  9883. image: {
  9884. source: "./media/characters/goddess-elizabeth/foot.svg"
  9885. }
  9886. },
  9887. mouth: {
  9888. height: math.unit(6, "feet"),
  9889. name: "Mouth",
  9890. image: {
  9891. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9892. }
  9893. },
  9894. },
  9895. [
  9896. {
  9897. name: "Micro",
  9898. height: math.unit(12, "feet")
  9899. },
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(80, "miles"),
  9903. default: true
  9904. },
  9905. {
  9906. name: "Macro",
  9907. height: math.unit(15000, "parsecs")
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(5 + 9 / 12, "feet"),
  9916. weight: math.unit(144, "lb"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/kara/front.svg"
  9920. }
  9921. },
  9922. feet: {
  9923. height: math.unit(6 / 6.765, "feet"),
  9924. name: "Kara's Feet",
  9925. rename: true,
  9926. image: {
  9927. source: "./media/characters/kara/feet.svg"
  9928. }
  9929. },
  9930. },
  9931. [
  9932. {
  9933. name: "Normal",
  9934. height: math.unit(5 + 9 / 12, "feet")
  9935. },
  9936. {
  9937. name: "Macro",
  9938. height: math.unit(174, "feet"),
  9939. default: true
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9945. {
  9946. front: {
  9947. height: math.unit(18, "feet"),
  9948. weight: math.unit(4050, "lb"),
  9949. name: "Front",
  9950. image: {
  9951. source: "./media/characters/tyrone/front.svg",
  9952. extra: 2405 / 2270,
  9953. bottom: 182 / 2587
  9954. }
  9955. },
  9956. },
  9957. [
  9958. {
  9959. name: "Normal",
  9960. height: math.unit(18, "feet"),
  9961. default: true
  9962. },
  9963. {
  9964. name: "Macro",
  9965. height: math.unit(300, "feet")
  9966. },
  9967. {
  9968. name: "Megamacro",
  9969. height: math.unit(15, "km")
  9970. },
  9971. {
  9972. name: "Gigamacro",
  9973. height: math.unit(500, "km")
  9974. },
  9975. {
  9976. name: "Teramacro",
  9977. height: math.unit(0.5, "gigameters")
  9978. },
  9979. {
  9980. name: "Omnimacro",
  9981. height: math.unit(1e252, "yottauniverse")
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(7 + 8 / 12, "feet"),
  9990. weight: math.unit(120, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/danny/front.svg",
  9994. extra: 1490 / 1350
  9995. }
  9996. },
  9997. back: {
  9998. height: math.unit(7 + 8 / 12, "feet"),
  9999. weight: math.unit(120, "lb"),
  10000. name: "Back",
  10001. image: {
  10002. source: "./media/characters/danny/back.svg",
  10003. extra: 1490 / 1350
  10004. }
  10005. },
  10006. },
  10007. [
  10008. {
  10009. name: "Normal",
  10010. height: math.unit(7 + 8 / 12, "feet"),
  10011. default: true
  10012. },
  10013. ]
  10014. ))
  10015. characterMakers.push(() => makeCharacter(
  10016. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10017. {
  10018. front: {
  10019. height: math.unit(3.5, "inches"),
  10020. weight: math.unit(19, "grams"),
  10021. name: "Front",
  10022. image: {
  10023. source: "./media/characters/mallow/front.svg",
  10024. extra: 471 / 431
  10025. }
  10026. },
  10027. back: {
  10028. height: math.unit(3.5, "inches"),
  10029. weight: math.unit(19, "grams"),
  10030. name: "Back",
  10031. image: {
  10032. source: "./media/characters/mallow/back.svg",
  10033. extra: 471 / 431
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Normal",
  10040. height: math.unit(3.5, "inches"),
  10041. default: true
  10042. },
  10043. ]
  10044. ))
  10045. characterMakers.push(() => makeCharacter(
  10046. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10047. {
  10048. front: {
  10049. height: math.unit(9, "feet"),
  10050. weight: math.unit(230, "kg"),
  10051. name: "Front",
  10052. image: {
  10053. source: "./media/characters/starry-aqua/front.svg"
  10054. }
  10055. },
  10056. back: {
  10057. height: math.unit(9, "feet"),
  10058. weight: math.unit(230, "kg"),
  10059. name: "Back",
  10060. image: {
  10061. source: "./media/characters/starry-aqua/back.svg"
  10062. }
  10063. },
  10064. hand: {
  10065. height: math.unit(9 * 0.1168, "feet"),
  10066. name: "Hand",
  10067. image: {
  10068. source: "./media/characters/starry-aqua/hand.svg"
  10069. }
  10070. },
  10071. foot: {
  10072. height: math.unit(9 * 0.18, "feet"),
  10073. name: "Foot",
  10074. image: {
  10075. source: "./media/characters/starry-aqua/foot.svg"
  10076. }
  10077. }
  10078. },
  10079. [
  10080. {
  10081. name: "Micro",
  10082. height: math.unit(3, "inches")
  10083. },
  10084. {
  10085. name: "Normal",
  10086. height: math.unit(9, "feet")
  10087. },
  10088. {
  10089. name: "Macro",
  10090. height: math.unit(300, "feet"),
  10091. default: true
  10092. },
  10093. {
  10094. name: "Megamacro",
  10095. height: math.unit(3200, "feet")
  10096. }
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10101. {
  10102. front: {
  10103. height: math.unit(15, "feet"),
  10104. weight: math.unit(5026, "lb"),
  10105. name: "Front",
  10106. image: {
  10107. source: "./media/characters/luka-towers/front.svg",
  10108. extra: 1269/1133,
  10109. bottom: 51/1320
  10110. }
  10111. },
  10112. },
  10113. [
  10114. {
  10115. name: "Normal",
  10116. height: math.unit(15, "feet"),
  10117. default: true
  10118. },
  10119. {
  10120. name: "Minimacro",
  10121. height: math.unit(25, "feet")
  10122. },
  10123. {
  10124. name: "Macro",
  10125. height: math.unit(320, "feet")
  10126. },
  10127. {
  10128. name: "Megamacro",
  10129. height: math.unit(35000, "feet")
  10130. },
  10131. {
  10132. name: "Gigamacro",
  10133. height: math.unit(4000, "miles")
  10134. },
  10135. {
  10136. name: "Teramacro",
  10137. height: math.unit(15000, "miles")
  10138. },
  10139. ]
  10140. ))
  10141. characterMakers.push(() => makeCharacter(
  10142. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10143. {
  10144. front: {
  10145. height: math.unit(6, "feet"),
  10146. weight: math.unit(150, "lb"),
  10147. name: "Front",
  10148. image: {
  10149. source: "./media/characters/natalie-nightring/front.svg",
  10150. extra: 1,
  10151. bottom: 0.06
  10152. }
  10153. },
  10154. },
  10155. [
  10156. {
  10157. name: "Uh Oh",
  10158. height: math.unit(0.1, "mm")
  10159. },
  10160. {
  10161. name: "Small",
  10162. height: math.unit(3, "inches")
  10163. },
  10164. {
  10165. name: "Human Scale",
  10166. height: math.unit(6, "feet")
  10167. },
  10168. {
  10169. name: "Librarian",
  10170. height: math.unit(50, "feet"),
  10171. default: true
  10172. },
  10173. {
  10174. name: "Immense",
  10175. height: math.unit(200, "miles")
  10176. },
  10177. ]
  10178. ))
  10179. characterMakers.push(() => makeCharacter(
  10180. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10181. {
  10182. front: {
  10183. height: math.unit(6, "feet"),
  10184. weight: math.unit(180, "lbs"),
  10185. name: "Front",
  10186. image: {
  10187. source: "./media/characters/danni-rosie/front.svg",
  10188. extra: 1260 / 1128,
  10189. bottom: 0.022
  10190. }
  10191. },
  10192. },
  10193. [
  10194. {
  10195. name: "Micro",
  10196. height: math.unit(2, "inches"),
  10197. default: true
  10198. },
  10199. ]
  10200. ))
  10201. characterMakers.push(() => makeCharacter(
  10202. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10203. {
  10204. front: {
  10205. height: math.unit(5 + 9 / 12, "feet"),
  10206. weight: math.unit(220, "lb"),
  10207. name: "Front",
  10208. image: {
  10209. source: "./media/characters/samantha-kruse/front.svg",
  10210. extra: (985 / 935),
  10211. bottom: 0.03
  10212. }
  10213. },
  10214. frontUndressed: {
  10215. height: math.unit(5 + 9 / 12, "feet"),
  10216. weight: math.unit(220, "lb"),
  10217. name: "Front (Undressed)",
  10218. image: {
  10219. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10220. extra: (973 / 923),
  10221. bottom: 0.025
  10222. }
  10223. },
  10224. fat: {
  10225. height: math.unit(5 + 9 / 12, "feet"),
  10226. weight: math.unit(900, "lb"),
  10227. name: "Front (Fat)",
  10228. image: {
  10229. source: "./media/characters/samantha-kruse/fat.svg",
  10230. extra: 2688 / 2561
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(5 + 9 / 12, "feet"),
  10238. default: true
  10239. }
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10244. {
  10245. back: {
  10246. height: math.unit(5 + 4 / 12, "feet"),
  10247. weight: math.unit(4963, "lb"),
  10248. name: "Back",
  10249. image: {
  10250. source: "./media/characters/amelia-rosie/back.svg",
  10251. extra: 1113 / 963,
  10252. bottom: 0.01
  10253. }
  10254. },
  10255. },
  10256. [
  10257. {
  10258. name: "Level 0",
  10259. height: math.unit(5 + 4 / 12, "feet")
  10260. },
  10261. {
  10262. name: "Level 1",
  10263. height: math.unit(164597, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Level 2",
  10268. height: math.unit(956243, "miles")
  10269. },
  10270. {
  10271. name: "Level 3",
  10272. height: math.unit(29421709423, "miles")
  10273. },
  10274. {
  10275. name: "Level 4",
  10276. height: math.unit(154, "lightyears")
  10277. },
  10278. {
  10279. name: "Level 5",
  10280. height: math.unit(4738272, "lightyears")
  10281. },
  10282. {
  10283. name: "Level 6",
  10284. height: math.unit(145787152896, "lightyears")
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(5 + 11 / 12, "feet"),
  10293. weight: math.unit(65, "kg"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/rook-kitara/front.svg",
  10297. extra: 1347 / 1274,
  10298. bottom: 0.005
  10299. }
  10300. },
  10301. },
  10302. [
  10303. {
  10304. name: "Totally Unfair",
  10305. height: math.unit(1.8, "mm")
  10306. },
  10307. {
  10308. name: "Lap Rookie",
  10309. height: math.unit(1.4, "feet")
  10310. },
  10311. {
  10312. name: "Normal",
  10313. height: math.unit(5 + 11 / 12, "feet"),
  10314. default: true
  10315. },
  10316. {
  10317. name: "How Did This Happen",
  10318. height: math.unit(80, "miles")
  10319. }
  10320. ]
  10321. ))
  10322. characterMakers.push(() => makeCharacter(
  10323. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10324. {
  10325. front: {
  10326. height: math.unit(7, "feet"),
  10327. weight: math.unit(300, "lb"),
  10328. name: "Front",
  10329. image: {
  10330. source: "./media/characters/pisces/front.svg",
  10331. extra: 2255 / 2115,
  10332. bottom: 0.03
  10333. }
  10334. },
  10335. back: {
  10336. height: math.unit(7, "feet"),
  10337. weight: math.unit(300, "lb"),
  10338. name: "Back",
  10339. image: {
  10340. source: "./media/characters/pisces/back.svg",
  10341. extra: 2146 / 2055,
  10342. bottom: 0.04
  10343. }
  10344. },
  10345. },
  10346. [
  10347. {
  10348. name: "Normal",
  10349. height: math.unit(7, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Swimming Pool",
  10354. height: math.unit(12.2, "meters")
  10355. },
  10356. {
  10357. name: "Olympic Swimming Pool",
  10358. height: math.unit(56.3, "meters")
  10359. },
  10360. {
  10361. name: "Lake Superior",
  10362. height: math.unit(93900, "meters")
  10363. },
  10364. {
  10365. name: "Mediterranean Sea",
  10366. height: math.unit(644457, "meters")
  10367. },
  10368. {
  10369. name: "World's Oceans",
  10370. height: math.unit(4567491, "meters")
  10371. },
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(2.3, "meters"),
  10379. weight: math.unit(120, "kg"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/zelas/front.svg"
  10383. }
  10384. },
  10385. side: {
  10386. height: math.unit(2.3, "meters"),
  10387. weight: math.unit(120, "kg"),
  10388. name: "Side",
  10389. image: {
  10390. source: "./media/characters/zelas/side.svg"
  10391. }
  10392. },
  10393. back: {
  10394. height: math.unit(2.3, "meters"),
  10395. weight: math.unit(120, "kg"),
  10396. name: "Back",
  10397. image: {
  10398. source: "./media/characters/zelas/back.svg"
  10399. }
  10400. },
  10401. foot: {
  10402. height: math.unit(1.116, "feet"),
  10403. name: "Foot",
  10404. image: {
  10405. source: "./media/characters/zelas/foot.svg"
  10406. }
  10407. },
  10408. },
  10409. [
  10410. {
  10411. name: "Normal",
  10412. height: math.unit(2.3, "meters")
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(30, "meters"),
  10417. default: true
  10418. },
  10419. ]
  10420. ))
  10421. characterMakers.push(() => makeCharacter(
  10422. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10423. {
  10424. front: {
  10425. height: math.unit(1, "inch"),
  10426. weight: math.unit(0.21, "grams"),
  10427. name: "Front",
  10428. image: {
  10429. source: "./media/characters/talbot/front.svg",
  10430. extra: 594 / 544
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Micro",
  10437. height: math.unit(1, "inch"),
  10438. default: true
  10439. },
  10440. ]
  10441. ))
  10442. characterMakers.push(() => makeCharacter(
  10443. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10444. {
  10445. front: {
  10446. height: math.unit(3 + 3 / 12, "feet"),
  10447. weight: math.unit(51.8, "lb"),
  10448. name: "Front",
  10449. image: {
  10450. source: "./media/characters/fliss/front.svg",
  10451. extra: 840 / 640
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Teeny Tiny",
  10458. height: math.unit(1, "mm")
  10459. },
  10460. {
  10461. name: "Small",
  10462. height: math.unit(1, "inch"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Standard Sylveon",
  10467. height: math.unit(3 + 3 / 12, "feet")
  10468. },
  10469. {
  10470. name: "Large Nuisance",
  10471. height: math.unit(33, "feet")
  10472. },
  10473. {
  10474. name: "City Filler",
  10475. height: math.unit(3000, "feet")
  10476. },
  10477. {
  10478. name: "New Horizon",
  10479. height: math.unit(6000, "miles")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10485. {
  10486. front: {
  10487. height: math.unit(5, "cm"),
  10488. weight: math.unit(1.94, "g"),
  10489. name: "Front",
  10490. image: {
  10491. source: "./media/characters/fleta/front.svg",
  10492. extra: 835 / 803
  10493. }
  10494. },
  10495. back: {
  10496. height: math.unit(5, "cm"),
  10497. weight: math.unit(1.94, "g"),
  10498. name: "Back",
  10499. image: {
  10500. source: "./media/characters/fleta/back.svg",
  10501. extra: 835 / 803
  10502. }
  10503. },
  10504. },
  10505. [
  10506. {
  10507. name: "Micro",
  10508. height: math.unit(5, "cm"),
  10509. default: true
  10510. },
  10511. ]
  10512. ))
  10513. characterMakers.push(() => makeCharacter(
  10514. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10515. {
  10516. front: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(225, "lb"),
  10519. name: "Front",
  10520. image: {
  10521. source: "./media/characters/dominic/front.svg",
  10522. extra: 1770 / 1620,
  10523. bottom: 0.025
  10524. }
  10525. },
  10526. back: {
  10527. height: math.unit(6, "feet"),
  10528. weight: math.unit(225, "lb"),
  10529. name: "Back",
  10530. image: {
  10531. source: "./media/characters/dominic/back.svg",
  10532. extra: 1745 / 1620,
  10533. bottom: 0.065
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Nano",
  10540. height: math.unit(0.1, "mm")
  10541. },
  10542. {
  10543. name: "Micro-",
  10544. height: math.unit(1, "mm")
  10545. },
  10546. {
  10547. name: "Micro",
  10548. height: math.unit(4, "inches")
  10549. },
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(6 + 4 / 12, "feet"),
  10553. default: true
  10554. },
  10555. {
  10556. name: "Macro",
  10557. height: math.unit(115, "feet")
  10558. },
  10559. {
  10560. name: "Macro+",
  10561. height: math.unit(955, "feet")
  10562. },
  10563. {
  10564. name: "Megamacro",
  10565. height: math.unit(8990, "feet")
  10566. },
  10567. {
  10568. name: "Gigmacro",
  10569. height: math.unit(9310, "miles")
  10570. },
  10571. {
  10572. name: "Teramacro",
  10573. height: math.unit(1567005010, "miles")
  10574. },
  10575. {
  10576. name: "Examacro",
  10577. height: math.unit(1425, "parsecs")
  10578. },
  10579. ]
  10580. ))
  10581. characterMakers.push(() => makeCharacter(
  10582. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10583. {
  10584. front: {
  10585. height: math.unit(400, "feet"),
  10586. weight: math.unit(44444444, "lb"),
  10587. name: "Front",
  10588. image: {
  10589. source: "./media/characters/major-colonel/front.svg"
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(400, "feet"),
  10594. weight: math.unit(44444444, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/major-colonel/back.svg"
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Macro",
  10604. height: math.unit(400, "feet"),
  10605. default: true
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10611. {
  10612. catFront: {
  10613. height: math.unit(6, "feet"),
  10614. weight: math.unit(120, "lb"),
  10615. name: "Front (Cat Side)",
  10616. image: {
  10617. source: "./media/characters/axel-lycan/cat-front.svg",
  10618. extra: 430 / 402,
  10619. bottom: 43 / 472.35
  10620. }
  10621. },
  10622. catBack: {
  10623. height: math.unit(6, "feet"),
  10624. weight: math.unit(120, "lb"),
  10625. name: "Back (Cat Side)",
  10626. image: {
  10627. source: "./media/characters/axel-lycan/cat-back.svg",
  10628. extra: 447 / 419,
  10629. bottom: 23.3 / 469
  10630. }
  10631. },
  10632. wolfFront: {
  10633. height: math.unit(6, "feet"),
  10634. weight: math.unit(120, "lb"),
  10635. name: "Front (Wolf Side)",
  10636. image: {
  10637. source: "./media/characters/axel-lycan/wolf-front.svg",
  10638. extra: 485 / 456,
  10639. bottom: 19 / 504
  10640. }
  10641. },
  10642. wolfBack: {
  10643. height: math.unit(6, "feet"),
  10644. weight: math.unit(120, "lb"),
  10645. name: "Back (Wolf Side)",
  10646. image: {
  10647. source: "./media/characters/axel-lycan/wolf-back.svg",
  10648. extra: 475 / 438,
  10649. bottom: 39.2 / 514
  10650. }
  10651. },
  10652. },
  10653. [
  10654. {
  10655. name: "Macro",
  10656. height: math.unit(1, "km"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(5 + 9 / 12, "feet"),
  10666. weight: math.unit(175, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/vanrel-hyena/front.svg",
  10670. extra: 1086 / 1010,
  10671. bottom: 0.04
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(5 + 9 / 12, "feet"),
  10679. default: true
  10680. },
  10681. ]
  10682. ))
  10683. characterMakers.push(() => makeCharacter(
  10684. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10685. {
  10686. front: {
  10687. height: math.unit(6, "feet"),
  10688. weight: math.unit(103, "lb"),
  10689. name: "Front",
  10690. image: {
  10691. source: "./media/characters/abbott-absol/front.svg",
  10692. extra: 2010 / 1842
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Megamicro",
  10699. height: math.unit(0.1, "mm")
  10700. },
  10701. {
  10702. name: "Micro",
  10703. height: math.unit(1, "inch")
  10704. },
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(6, "feet"),
  10708. default: true
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(6, "feet"),
  10717. weight: math.unit(264, "lb"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/hector/front.svg",
  10721. extra: 2280 / 2130,
  10722. bottom: 0.07
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(12.25, "foot"),
  10730. default: true
  10731. },
  10732. {
  10733. name: "Macro",
  10734. height: math.unit(160, "feet")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10740. {
  10741. front: {
  10742. height: math.unit(6, "feet"),
  10743. weight: math.unit(150, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/sal/front.svg",
  10747. extra: 1846 / 1699,
  10748. bottom: 0.04
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Megamacro",
  10755. height: math.unit(10, "miles"),
  10756. default: true
  10757. },
  10758. ]
  10759. ))
  10760. characterMakers.push(() => makeCharacter(
  10761. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10762. {
  10763. front: {
  10764. height: math.unit(3, "meters"),
  10765. weight: math.unit(450, "kg"),
  10766. name: "front",
  10767. image: {
  10768. source: "./media/characters/ranger/front.svg",
  10769. extra: 2401 / 2243,
  10770. bottom: 0.05
  10771. }
  10772. },
  10773. },
  10774. [
  10775. {
  10776. name: "Normal",
  10777. height: math.unit(3, "meters"),
  10778. default: true
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(14, "feet"),
  10787. weight: math.unit(800, "kg"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/theresa/front.svg",
  10791. extra: 3575 / 3346,
  10792. bottom: 0.03
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Normal",
  10799. height: math.unit(14, "feet"),
  10800. default: true
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(3, "kg"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/ine/front.svg",
  10813. extra: 678 / 539,
  10814. bottom: 0.023
  10815. }
  10816. },
  10817. },
  10818. [
  10819. {
  10820. name: "Normal",
  10821. height: math.unit(2.265, "feet"),
  10822. default: true
  10823. },
  10824. ]
  10825. ))
  10826. characterMakers.push(() => makeCharacter(
  10827. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10828. {
  10829. front: {
  10830. height: math.unit(5, "feet"),
  10831. weight: math.unit(30, "kg"),
  10832. name: "Front",
  10833. image: {
  10834. source: "./media/characters/vial/front.svg",
  10835. extra: 1365 / 1277,
  10836. bottom: 0.04
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(5, "feet"),
  10844. default: true
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10850. {
  10851. side: {
  10852. height: math.unit(3.4, "meters"),
  10853. weight: math.unit(1000, "lb"),
  10854. name: "Side",
  10855. image: {
  10856. source: "./media/characters/rovoska/side.svg",
  10857. extra: 4403 / 1515
  10858. }
  10859. },
  10860. },
  10861. [
  10862. {
  10863. name: "Normal",
  10864. height: math.unit(3.4, "meters"),
  10865. default: true
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(8, "feet"),
  10874. weight: math.unit(315, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/gunner-rotthbauer/front.svg"
  10878. }
  10879. },
  10880. back: {
  10881. height: math.unit(8, "feet"),
  10882. weight: math.unit(315, "lb"),
  10883. name: "Back",
  10884. image: {
  10885. source: "./media/characters/gunner-rotthbauer/back.svg"
  10886. }
  10887. },
  10888. },
  10889. [
  10890. {
  10891. name: "Micro",
  10892. height: math.unit(3.5, "inches")
  10893. },
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(8, "feet"),
  10897. default: true
  10898. },
  10899. {
  10900. name: "Macro",
  10901. height: math.unit(250, "feet")
  10902. },
  10903. {
  10904. name: "Megamacro",
  10905. height: math.unit(1, "AU")
  10906. },
  10907. ]
  10908. ))
  10909. characterMakers.push(() => makeCharacter(
  10910. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10911. {
  10912. front: {
  10913. height: math.unit(5 + 5 / 12, "feet"),
  10914. weight: math.unit(140, "lb"),
  10915. name: "Front",
  10916. image: {
  10917. source: "./media/characters/allatia/front.svg",
  10918. extra: 1227 / 1180,
  10919. bottom: 0.027
  10920. }
  10921. },
  10922. },
  10923. [
  10924. {
  10925. name: "Normal",
  10926. height: math.unit(5 + 5 / 12, "feet")
  10927. },
  10928. {
  10929. name: "Macro",
  10930. height: math.unit(250, "feet"),
  10931. default: true
  10932. },
  10933. {
  10934. name: "Megamacro",
  10935. height: math.unit(8, "miles")
  10936. }
  10937. ]
  10938. ))
  10939. characterMakers.push(() => makeCharacter(
  10940. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10941. {
  10942. front: {
  10943. height: math.unit(6, "feet"),
  10944. weight: math.unit(120, "lb"),
  10945. name: "Front",
  10946. image: {
  10947. source: "./media/characters/tene/front.svg",
  10948. extra: 814/750,
  10949. bottom: 36/850
  10950. }
  10951. },
  10952. stomping: {
  10953. height: math.unit(2.025, "meters"),
  10954. weight: math.unit(120, "lb"),
  10955. name: "Stomping",
  10956. image: {
  10957. source: "./media/characters/tene/stomping.svg",
  10958. extra: 885/821,
  10959. bottom: 15/900
  10960. }
  10961. },
  10962. sitting: {
  10963. height: math.unit(1, "meter"),
  10964. weight: math.unit(120, "lb"),
  10965. name: "Sitting",
  10966. image: {
  10967. source: "./media/characters/tene/sitting.svg",
  10968. extra: 396/366,
  10969. bottom: 79/475
  10970. }
  10971. },
  10972. smiling: {
  10973. height: math.unit(1.2, "feet"),
  10974. name: "Smiling",
  10975. image: {
  10976. source: "./media/characters/tene/smiling.svg",
  10977. extra: 1364/1071,
  10978. bottom: 0/1364
  10979. }
  10980. },
  10981. smug: {
  10982. height: math.unit(1.3, "feet"),
  10983. name: "Smug",
  10984. image: {
  10985. source: "./media/characters/tene/smug.svg",
  10986. extra: 1323/1082,
  10987. bottom: 0/1323
  10988. }
  10989. },
  10990. feral: {
  10991. height: math.unit(3.9, "feet"),
  10992. weight: math.unit(250, "lb"),
  10993. name: "Feral",
  10994. image: {
  10995. source: "./media/characters/tene/feral.svg",
  10996. extra: 717 / 458,
  10997. bottom: 0.179
  10998. }
  10999. },
  11000. },
  11001. [
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(6, "feet")
  11005. },
  11006. {
  11007. name: "Macro",
  11008. height: math.unit(300, "feet"),
  11009. default: true
  11010. },
  11011. {
  11012. name: "Megamacro",
  11013. height: math.unit(5, "miles")
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11019. {
  11020. side: {
  11021. height: math.unit(6, "feet"),
  11022. name: "Side",
  11023. image: {
  11024. source: "./media/characters/evander/side.svg",
  11025. extra: 877 / 477
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(0.83, "meters"),
  11033. default: true
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(12, "feet"),
  11042. weight: math.unit(1000, "lb"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11046. extra: 1762 / 1611
  11047. }
  11048. },
  11049. back: {
  11050. height: math.unit(12, "feet"),
  11051. weight: math.unit(1000, "lb"),
  11052. name: "Back",
  11053. image: {
  11054. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11055. extra: 1762 / 1611
  11056. }
  11057. },
  11058. },
  11059. [
  11060. {
  11061. name: "Normal",
  11062. height: math.unit(12, "feet"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Kaiju",
  11067. height: math.unit(150, "feet")
  11068. },
  11069. ]
  11070. ))
  11071. characterMakers.push(() => makeCharacter(
  11072. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11073. {
  11074. front: {
  11075. height: math.unit(6, "feet"),
  11076. weight: math.unit(150, "lb"),
  11077. name: "Front",
  11078. image: {
  11079. source: "./media/characters/zero-alurus/front.svg"
  11080. }
  11081. },
  11082. back: {
  11083. height: math.unit(6, "feet"),
  11084. weight: math.unit(150, "lb"),
  11085. name: "Back",
  11086. image: {
  11087. source: "./media/characters/zero-alurus/back.svg"
  11088. }
  11089. },
  11090. },
  11091. [
  11092. {
  11093. name: "Normal",
  11094. height: math.unit(5 + 10 / 12, "feet")
  11095. },
  11096. {
  11097. name: "Macro",
  11098. height: math.unit(60, "feet"),
  11099. default: true
  11100. },
  11101. {
  11102. name: "Macro+",
  11103. height: math.unit(450, "feet")
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(200, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/mega-shi/front.svg",
  11116. extra: 1279 / 1250,
  11117. bottom: 0.02
  11118. }
  11119. },
  11120. back: {
  11121. height: math.unit(6, "feet"),
  11122. weight: math.unit(200, "lb"),
  11123. name: "Back",
  11124. image: {
  11125. source: "./media/characters/mega-shi/back.svg",
  11126. extra: 1279 / 1250,
  11127. bottom: 0.02
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Micro",
  11134. height: math.unit(16 + 6 / 12, "feet")
  11135. },
  11136. {
  11137. name: "Third Dimension",
  11138. height: math.unit(40, "meters")
  11139. },
  11140. {
  11141. name: "Normal",
  11142. height: math.unit(660, "feet"),
  11143. default: true
  11144. },
  11145. {
  11146. name: "Megamacro",
  11147. height: math.unit(10, "miles")
  11148. },
  11149. {
  11150. name: "Planetary Launch",
  11151. height: math.unit(500, "miles")
  11152. },
  11153. {
  11154. name: "Interstellar",
  11155. height: math.unit(1e9, "miles")
  11156. },
  11157. {
  11158. name: "Leaving the Universe",
  11159. height: math.unit(1, "gigaparsec")
  11160. },
  11161. {
  11162. name: "Travelling Universes",
  11163. height: math.unit(30e15, "parsecs")
  11164. },
  11165. ]
  11166. ))
  11167. characterMakers.push(() => makeCharacter(
  11168. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11169. {
  11170. front: {
  11171. height: math.unit(5 + 4/12, "feet"),
  11172. weight: math.unit(120, "lb"),
  11173. name: "Front",
  11174. image: {
  11175. source: "./media/characters/odyssey/front.svg",
  11176. extra: 1747/1571,
  11177. bottom: 47/1794
  11178. }
  11179. },
  11180. side: {
  11181. height: math.unit(5.1, "feet"),
  11182. weight: math.unit(120, "lb"),
  11183. name: "Side",
  11184. image: {
  11185. source: "./media/characters/odyssey/side.svg",
  11186. extra: 1847/1619,
  11187. bottom: 47/1894
  11188. }
  11189. },
  11190. lounging: {
  11191. height: math.unit(1.464, "feet"),
  11192. weight: math.unit(120, "lb"),
  11193. name: "Lounging",
  11194. image: {
  11195. source: "./media/characters/odyssey/lounging.svg",
  11196. extra: 1235/837,
  11197. bottom: 551/1786
  11198. }
  11199. },
  11200. },
  11201. [
  11202. {
  11203. name: "Normal",
  11204. height: math.unit(5 + 4 / 12, "feet")
  11205. },
  11206. {
  11207. name: "Macro",
  11208. height: math.unit(1, "km")
  11209. },
  11210. {
  11211. name: "Megamacro",
  11212. height: math.unit(3000, "km")
  11213. },
  11214. {
  11215. name: "Gigamacro",
  11216. height: math.unit(1, "AU"),
  11217. default: true
  11218. },
  11219. {
  11220. name: "Omniversal",
  11221. height: math.unit(100e14, "lightyears")
  11222. },
  11223. ]
  11224. ))
  11225. characterMakers.push(() => makeCharacter(
  11226. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11227. {
  11228. front: {
  11229. height: math.unit(5 + 10/12, "feet"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/mekuto/front.svg",
  11233. extra: 875/835,
  11234. bottom: 46/921
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Minimicro",
  11241. height: math.unit(0.2, "inches")
  11242. },
  11243. {
  11244. name: "Micro",
  11245. height: math.unit(1.5, "inches")
  11246. },
  11247. {
  11248. name: "Normal",
  11249. height: math.unit(5 + 10 / 12, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Minimacro",
  11254. height: math.unit(17 + 9 / 12, "feet")
  11255. },
  11256. {
  11257. name: "Macro",
  11258. height: math.unit(177.5, "feet")
  11259. },
  11260. {
  11261. name: "Megamacro",
  11262. height: math.unit(152, "miles")
  11263. },
  11264. ]
  11265. ))
  11266. characterMakers.push(() => makeCharacter(
  11267. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11268. {
  11269. front: {
  11270. height: math.unit(6.5, "inches"),
  11271. weight: math.unit(13, "oz"),
  11272. name: "Front",
  11273. image: {
  11274. source: "./media/characters/dafydd-tomos/front.svg",
  11275. extra: 2990 / 2603,
  11276. bottom: 0.03
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Micro",
  11283. height: math.unit(6.5, "inches"),
  11284. default: true
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(6, "feet"),
  11293. weight: math.unit(150, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/splinter/front.svg",
  11297. extra: 2990 / 2882,
  11298. bottom: 0.04
  11299. }
  11300. },
  11301. back: {
  11302. height: math.unit(6, "feet"),
  11303. weight: math.unit(150, "lb"),
  11304. name: "Back",
  11305. image: {
  11306. source: "./media/characters/splinter/back.svg",
  11307. extra: 2990 / 2882,
  11308. bottom: 0.04
  11309. }
  11310. },
  11311. },
  11312. [
  11313. {
  11314. name: "Normal",
  11315. height: math.unit(6, "feet")
  11316. },
  11317. {
  11318. name: "Macro",
  11319. height: math.unit(230, "meters"),
  11320. default: true
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(4 + 10 / 12, "feet"),
  11329. weight: math.unit(480, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/snow-gabumon/front.svg",
  11333. extra: 1140 / 963,
  11334. bottom: 0.058
  11335. }
  11336. },
  11337. back: {
  11338. height: math.unit(4 + 10 / 12, "feet"),
  11339. weight: math.unit(480, "lb"),
  11340. name: "Back",
  11341. image: {
  11342. source: "./media/characters/snow-gabumon/back.svg",
  11343. extra: 1115 / 962,
  11344. bottom: 0.041
  11345. }
  11346. },
  11347. frontUndresed: {
  11348. height: math.unit(4 + 10 / 12, "feet"),
  11349. weight: math.unit(480, "lb"),
  11350. name: "Front (Undressed)",
  11351. image: {
  11352. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11353. extra: 1061 / 960,
  11354. bottom: 0.045
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Micro",
  11361. height: math.unit(1, "inch")
  11362. },
  11363. {
  11364. name: "Normal",
  11365. height: math.unit(4 + 10 / 12, "feet"),
  11366. default: true
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(200, "feet")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(120, "miles")
  11375. },
  11376. {
  11377. name: "Gigamacro",
  11378. height: math.unit(9800, "miles")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(1.7, "meters"),
  11387. weight: math.unit(140, "lb"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/moody/front.svg",
  11391. extra: 3226 / 3007,
  11392. bottom: 0.087
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Micro",
  11399. height: math.unit(1, "mm")
  11400. },
  11401. {
  11402. name: "Normal",
  11403. height: math.unit(1.7, "meters"),
  11404. default: true
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(80, "meters")
  11409. },
  11410. {
  11411. name: "Macro+",
  11412. height: math.unit(500, "meters")
  11413. },
  11414. ]
  11415. ))
  11416. characterMakers.push(() => makeCharacter(
  11417. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11418. {
  11419. front: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(150, "lb"),
  11422. name: "Front",
  11423. image: {
  11424. source: "./media/characters/zyas/front.svg",
  11425. extra: 1180 / 1120,
  11426. bottom: 0.045
  11427. }
  11428. },
  11429. },
  11430. [
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(10, "feet"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Macro",
  11438. height: math.unit(500, "feet")
  11439. },
  11440. {
  11441. name: "Megamacro",
  11442. height: math.unit(5, "miles")
  11443. },
  11444. {
  11445. name: "Teramacro",
  11446. height: math.unit(150000, "miles")
  11447. },
  11448. ]
  11449. ))
  11450. characterMakers.push(() => makeCharacter(
  11451. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11452. {
  11453. front: {
  11454. height: math.unit(6, "feet"),
  11455. weight: math.unit(150, "lb"),
  11456. name: "Front",
  11457. image: {
  11458. source: "./media/characters/cuon/front.svg",
  11459. extra: 1390 / 1320,
  11460. bottom: 0.008
  11461. }
  11462. },
  11463. },
  11464. [
  11465. {
  11466. name: "Micro",
  11467. height: math.unit(3, "inches")
  11468. },
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(18 + 9 / 12, "feet"),
  11472. default: true
  11473. },
  11474. {
  11475. name: "Macro",
  11476. height: math.unit(360, "feet")
  11477. },
  11478. {
  11479. name: "Megamacro",
  11480. height: math.unit(360, "miles")
  11481. },
  11482. ]
  11483. ))
  11484. characterMakers.push(() => makeCharacter(
  11485. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11486. {
  11487. front: {
  11488. height: math.unit(2.4, "meters"),
  11489. weight: math.unit(70, "kg"),
  11490. name: "Front",
  11491. image: {
  11492. source: "./media/characters/nyanuxk/front.svg",
  11493. extra: 1172 / 1084,
  11494. bottom: 0.065
  11495. }
  11496. },
  11497. side: {
  11498. height: math.unit(2.4, "meters"),
  11499. weight: math.unit(70, "kg"),
  11500. name: "Side",
  11501. image: {
  11502. source: "./media/characters/nyanuxk/side.svg",
  11503. extra: 1190 / 1132,
  11504. bottom: 0.007
  11505. }
  11506. },
  11507. back: {
  11508. height: math.unit(2.4, "meters"),
  11509. weight: math.unit(70, "kg"),
  11510. name: "Back",
  11511. image: {
  11512. source: "./media/characters/nyanuxk/back.svg",
  11513. extra: 1200 / 1141,
  11514. bottom: 0.015
  11515. }
  11516. },
  11517. foot: {
  11518. height: math.unit(0.52, "meters"),
  11519. name: "Foot",
  11520. image: {
  11521. source: "./media/characters/nyanuxk/foot.svg"
  11522. }
  11523. },
  11524. },
  11525. [
  11526. {
  11527. name: "Micro",
  11528. height: math.unit(2, "cm")
  11529. },
  11530. {
  11531. name: "Normal",
  11532. height: math.unit(2.4, "meters"),
  11533. default: true
  11534. },
  11535. {
  11536. name: "Smaller Macro",
  11537. height: math.unit(120, "meters")
  11538. },
  11539. {
  11540. name: "Bigger Macro",
  11541. height: math.unit(1.2, "km")
  11542. },
  11543. {
  11544. name: "Megamacro",
  11545. height: math.unit(15, "kilometers")
  11546. },
  11547. {
  11548. name: "Gigamacro",
  11549. height: math.unit(2000, "km")
  11550. },
  11551. {
  11552. name: "Teramacro",
  11553. height: math.unit(500000, "km")
  11554. },
  11555. ]
  11556. ))
  11557. characterMakers.push(() => makeCharacter(
  11558. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11559. {
  11560. side: {
  11561. height: math.unit(6, "feet"),
  11562. name: "Side",
  11563. image: {
  11564. source: "./media/characters/ailbhe/side.svg",
  11565. extra: 757 / 464,
  11566. bottom: 0.041
  11567. }
  11568. },
  11569. },
  11570. [
  11571. {
  11572. name: "Normal",
  11573. height: math.unit(1.07, "meters"),
  11574. default: true
  11575. },
  11576. ]
  11577. ))
  11578. characterMakers.push(() => makeCharacter(
  11579. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11580. {
  11581. front: {
  11582. height: math.unit(6, "feet"),
  11583. weight: math.unit(120, "kg"),
  11584. name: "Front",
  11585. image: {
  11586. source: "./media/characters/zevulfius/front.svg",
  11587. extra: 965 / 903
  11588. }
  11589. },
  11590. side: {
  11591. height: math.unit(6, "feet"),
  11592. weight: math.unit(120, "kg"),
  11593. name: "Side",
  11594. image: {
  11595. source: "./media/characters/zevulfius/side.svg",
  11596. extra: 939 / 900
  11597. }
  11598. },
  11599. back: {
  11600. height: math.unit(6, "feet"),
  11601. weight: math.unit(120, "kg"),
  11602. name: "Back",
  11603. image: {
  11604. source: "./media/characters/zevulfius/back.svg",
  11605. extra: 918 / 854,
  11606. bottom: 0.005
  11607. }
  11608. },
  11609. foot: {
  11610. height: math.unit(6 / 3.72, "feet"),
  11611. name: "Foot",
  11612. image: {
  11613. source: "./media/characters/zevulfius/foot.svg"
  11614. }
  11615. },
  11616. },
  11617. [
  11618. {
  11619. name: "Macro",
  11620. height: math.unit(750, "meters")
  11621. },
  11622. {
  11623. name: "Megamacro",
  11624. height: math.unit(20, "km"),
  11625. default: true
  11626. },
  11627. {
  11628. name: "Gigamacro",
  11629. height: math.unit(2000, "km")
  11630. },
  11631. {
  11632. name: "Teramacro",
  11633. height: math.unit(250000, "km")
  11634. },
  11635. ]
  11636. ))
  11637. characterMakers.push(() => makeCharacter(
  11638. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11639. {
  11640. front: {
  11641. height: math.unit(100, "feet"),
  11642. weight: math.unit(350, "kg"),
  11643. name: "Front",
  11644. image: {
  11645. source: "./media/characters/rikes/front.svg",
  11646. extra: 1565 / 1483,
  11647. bottom: 0.017
  11648. }
  11649. },
  11650. },
  11651. [
  11652. {
  11653. name: "Macro",
  11654. height: math.unit(100, "feet"),
  11655. default: true
  11656. },
  11657. ]
  11658. ))
  11659. characterMakers.push(() => makeCharacter(
  11660. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11661. {
  11662. front: {
  11663. height: math.unit(8, "feet"),
  11664. weight: math.unit(356, "lb"),
  11665. name: "Front",
  11666. image: {
  11667. source: "./media/characters/adam-silver-mane/front.svg",
  11668. extra: 1036/937,
  11669. bottom: 63/1099
  11670. }
  11671. },
  11672. side: {
  11673. height: math.unit(8, "feet"),
  11674. weight: math.unit(356, "lb"),
  11675. name: "Side",
  11676. image: {
  11677. source: "./media/characters/adam-silver-mane/side.svg",
  11678. extra: 997/901,
  11679. bottom: 59/1056
  11680. }
  11681. },
  11682. frontNsfw: {
  11683. height: math.unit(8, "feet"),
  11684. weight: math.unit(356, "lb"),
  11685. name: "Front (NSFW)",
  11686. image: {
  11687. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11688. extra: 1036/937,
  11689. bottom: 63/1099
  11690. }
  11691. },
  11692. sideNsfw: {
  11693. height: math.unit(8, "feet"),
  11694. weight: math.unit(356, "lb"),
  11695. name: "Side (NSFW)",
  11696. image: {
  11697. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11698. extra: 997/901,
  11699. bottom: 59/1056
  11700. }
  11701. },
  11702. dick: {
  11703. height: math.unit(2.1, "feet"),
  11704. name: "Dick",
  11705. image: {
  11706. source: "./media/characters/adam-silver-mane/dick.svg"
  11707. }
  11708. },
  11709. taur: {
  11710. height: math.unit(16, "feet"),
  11711. weight: math.unit(1500, "kg"),
  11712. name: "Taur",
  11713. image: {
  11714. source: "./media/characters/adam-silver-mane/taur.svg",
  11715. extra: 1713 / 1571,
  11716. bottom: 0.01
  11717. }
  11718. },
  11719. },
  11720. [
  11721. {
  11722. name: "Normal",
  11723. height: math.unit(8, "feet")
  11724. },
  11725. {
  11726. name: "Minimacro",
  11727. height: math.unit(80, "feet")
  11728. },
  11729. {
  11730. name: "MDA",
  11731. height: math.unit(80, "meters")
  11732. },
  11733. {
  11734. name: "Macro",
  11735. height: math.unit(800, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Megamacro",
  11740. height: math.unit(8000, "feet")
  11741. },
  11742. {
  11743. name: "Gigamacro",
  11744. height: math.unit(800, "miles")
  11745. },
  11746. {
  11747. name: "Teramacro",
  11748. height: math.unit(80000, "miles")
  11749. },
  11750. {
  11751. name: "Celestial",
  11752. height: math.unit(8e6, "miles")
  11753. },
  11754. {
  11755. name: "Star Dragon",
  11756. height: math.unit(800000, "parsecs")
  11757. },
  11758. {
  11759. name: "Godly",
  11760. height: math.unit(800, "teraparsecs")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(6, "feet"),
  11769. weight: math.unit(150, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/ky'owin/front.svg",
  11773. extra: 3862/3053,
  11774. bottom: 74/3936
  11775. }
  11776. },
  11777. },
  11778. [
  11779. {
  11780. name: "Normal",
  11781. height: math.unit(6 + 8 / 12, "feet")
  11782. },
  11783. {
  11784. name: "Large",
  11785. height: math.unit(68, "feet")
  11786. },
  11787. {
  11788. name: "Macro",
  11789. height: math.unit(132, "feet")
  11790. },
  11791. {
  11792. name: "Macro+",
  11793. height: math.unit(340, "feet")
  11794. },
  11795. {
  11796. name: "Macro++",
  11797. height: math.unit(680, "feet"),
  11798. default: true
  11799. },
  11800. {
  11801. name: "Megamacro",
  11802. height: math.unit(1, "mile")
  11803. },
  11804. {
  11805. name: "Megamacro+",
  11806. height: math.unit(10, "miles")
  11807. },
  11808. ]
  11809. ))
  11810. characterMakers.push(() => makeCharacter(
  11811. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11812. {
  11813. front: {
  11814. height: math.unit(4, "feet"),
  11815. weight: math.unit(50, "lb"),
  11816. name: "Front",
  11817. image: {
  11818. source: "./media/characters/mal/front.svg",
  11819. extra: 785 / 724,
  11820. bottom: 0.07
  11821. }
  11822. },
  11823. },
  11824. [
  11825. {
  11826. name: "Micro",
  11827. height: math.unit(4, "inches")
  11828. },
  11829. {
  11830. name: "Normal",
  11831. height: math.unit(4, "feet"),
  11832. default: true
  11833. },
  11834. {
  11835. name: "Macro",
  11836. height: math.unit(200, "feet")
  11837. },
  11838. ]
  11839. ))
  11840. characterMakers.push(() => makeCharacter(
  11841. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11842. {
  11843. front: {
  11844. height: math.unit(6, "feet"),
  11845. weight: math.unit(150, "lb"),
  11846. name: "Front",
  11847. image: {
  11848. source: "./media/characters/jordan-deware/front.svg",
  11849. extra: 1191 / 1012
  11850. }
  11851. },
  11852. },
  11853. [
  11854. {
  11855. name: "Nano",
  11856. height: math.unit(0.01, "mm")
  11857. },
  11858. {
  11859. name: "Minimicro",
  11860. height: math.unit(1, "mm")
  11861. },
  11862. {
  11863. name: "Micro",
  11864. height: math.unit(0.5, "inches")
  11865. },
  11866. {
  11867. name: "Normal",
  11868. height: math.unit(4, "feet"),
  11869. default: true
  11870. },
  11871. {
  11872. name: "Minimacro",
  11873. height: math.unit(40, "meters")
  11874. },
  11875. {
  11876. name: "Small Macro",
  11877. height: math.unit(400, "meters")
  11878. },
  11879. {
  11880. name: "Macro",
  11881. height: math.unit(4, "miles")
  11882. },
  11883. {
  11884. name: "Megamacro",
  11885. height: math.unit(40, "miles")
  11886. },
  11887. {
  11888. name: "Megamacro+",
  11889. height: math.unit(400, "miles")
  11890. },
  11891. {
  11892. name: "Gigamacro",
  11893. height: math.unit(400000, "miles")
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11899. {
  11900. side: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(150, "lb"),
  11903. name: "Side",
  11904. image: {
  11905. source: "./media/characters/kimiko/side.svg",
  11906. extra: 600 / 358
  11907. }
  11908. },
  11909. },
  11910. [
  11911. {
  11912. name: "Normal",
  11913. height: math.unit(15, "feet"),
  11914. default: true
  11915. },
  11916. {
  11917. name: "Macro",
  11918. height: math.unit(220, "feet")
  11919. },
  11920. {
  11921. name: "Macro+",
  11922. height: math.unit(1450, "feet")
  11923. },
  11924. {
  11925. name: "Megamacro",
  11926. height: math.unit(11500, "feet")
  11927. },
  11928. {
  11929. name: "Gigamacro",
  11930. height: math.unit(9500, "miles")
  11931. },
  11932. {
  11933. name: "Teramacro",
  11934. height: math.unit(2208005005, "miles")
  11935. },
  11936. {
  11937. name: "Examacro",
  11938. height: math.unit(2750, "parsecs")
  11939. },
  11940. {
  11941. name: "Zettamacro",
  11942. height: math.unit(101500, "parsecs")
  11943. },
  11944. ]
  11945. ))
  11946. characterMakers.push(() => makeCharacter(
  11947. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11948. {
  11949. front: {
  11950. height: math.unit(6, "feet"),
  11951. weight: math.unit(70, "kg"),
  11952. name: "Front",
  11953. image: {
  11954. source: "./media/characters/andrew-sleepy/front.svg"
  11955. }
  11956. },
  11957. side: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(70, "kg"),
  11960. name: "Side",
  11961. image: {
  11962. source: "./media/characters/andrew-sleepy/side.svg"
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Micro",
  11969. height: math.unit(1, "mm"),
  11970. default: true
  11971. },
  11972. ]
  11973. ))
  11974. characterMakers.push(() => makeCharacter(
  11975. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11976. {
  11977. front: {
  11978. height: math.unit(6, "feet"),
  11979. weight: math.unit(150, "lb"),
  11980. name: "Front",
  11981. image: {
  11982. source: "./media/characters/judio/front.svg",
  11983. extra: 1258 / 1110
  11984. }
  11985. },
  11986. },
  11987. [
  11988. {
  11989. name: "Normal",
  11990. height: math.unit(5 + 6 / 12, "feet")
  11991. },
  11992. {
  11993. name: "Macro",
  11994. height: math.unit(1000, "feet"),
  11995. default: true
  11996. },
  11997. {
  11998. name: "Megamacro",
  11999. height: math.unit(10, "miles")
  12000. },
  12001. ]
  12002. ))
  12003. characterMakers.push(() => makeCharacter(
  12004. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12005. {
  12006. frontDressed: {
  12007. height: math.unit(6, "feet"),
  12008. weight: math.unit(68, "kg"),
  12009. name: "Front (Dressed)",
  12010. image: {
  12011. source: "./media/characters/nomaxice/front-dressed.svg",
  12012. extra: 1137/824,
  12013. bottom: 74/1211
  12014. }
  12015. },
  12016. frontShorts: {
  12017. height: math.unit(6, "feet"),
  12018. weight: math.unit(68, "kg"),
  12019. name: "Front (Shorts)",
  12020. image: {
  12021. source: "./media/characters/nomaxice/front-shorts.svg",
  12022. extra: 1137/824,
  12023. bottom: 74/1211
  12024. }
  12025. },
  12026. back: {
  12027. height: math.unit(6, "feet"),
  12028. weight: math.unit(68, "kg"),
  12029. name: "Back",
  12030. image: {
  12031. source: "./media/characters/nomaxice/back.svg",
  12032. extra: 822/786,
  12033. bottom: 39/861
  12034. }
  12035. },
  12036. hand: {
  12037. height: math.unit(0.565, "feet"),
  12038. name: "Hand",
  12039. image: {
  12040. source: "./media/characters/nomaxice/hand.svg"
  12041. }
  12042. },
  12043. foot: {
  12044. height: math.unit(1, "feet"),
  12045. name: "Foot",
  12046. image: {
  12047. source: "./media/characters/nomaxice/foot.svg"
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Micro",
  12054. height: math.unit(8, "cm")
  12055. },
  12056. {
  12057. name: "Norm",
  12058. height: math.unit(1.82, "m")
  12059. },
  12060. {
  12061. name: "Norm+",
  12062. height: math.unit(8.8, "feet"),
  12063. default: true
  12064. },
  12065. {
  12066. name: "Big",
  12067. height: math.unit(8, "meters")
  12068. },
  12069. {
  12070. name: "Macro",
  12071. height: math.unit(18, "meters")
  12072. },
  12073. {
  12074. name: "Macro+",
  12075. height: math.unit(88, "meters")
  12076. },
  12077. ]
  12078. ))
  12079. characterMakers.push(() => makeCharacter(
  12080. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12081. {
  12082. front: {
  12083. height: math.unit(12, "feet"),
  12084. weight: math.unit(1.5, "tons"),
  12085. name: "Front",
  12086. image: {
  12087. source: "./media/characters/dydros/front.svg",
  12088. extra: 863 / 800,
  12089. bottom: 0.015
  12090. }
  12091. },
  12092. back: {
  12093. height: math.unit(12, "feet"),
  12094. weight: math.unit(1.5, "tons"),
  12095. name: "Back",
  12096. image: {
  12097. source: "./media/characters/dydros/back.svg",
  12098. extra: 900 / 843,
  12099. bottom: 0.005
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(12, "feet"),
  12107. default: true
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(100, "kg"),
  12117. name: "Front",
  12118. image: {
  12119. source: "./media/characters/riggi/front.svg",
  12120. extra: 5787 / 5303
  12121. }
  12122. },
  12123. hyper: {
  12124. height: math.unit(6 * 5 / 3, "feet"),
  12125. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12126. name: "Hyper",
  12127. image: {
  12128. source: "./media/characters/riggi/hyper.svg",
  12129. extra: 3595 / 3485
  12130. }
  12131. },
  12132. },
  12133. [
  12134. {
  12135. name: "Small Macro",
  12136. height: math.unit(50, "feet")
  12137. },
  12138. {
  12139. name: "Default",
  12140. height: math.unit(200, "feet"),
  12141. default: true
  12142. },
  12143. {
  12144. name: "Loom",
  12145. height: math.unit(10000, "feet")
  12146. },
  12147. {
  12148. name: "Cruising Altitude",
  12149. height: math.unit(30000, "feet")
  12150. },
  12151. {
  12152. name: "Megamacro",
  12153. height: math.unit(100, "miles")
  12154. },
  12155. {
  12156. name: "Continent Sized",
  12157. height: math.unit(2800, "miles")
  12158. },
  12159. {
  12160. name: "Earth Sized",
  12161. height: math.unit(8000, "miles")
  12162. },
  12163. ]
  12164. ))
  12165. characterMakers.push(() => makeCharacter(
  12166. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12167. {
  12168. front: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(250, "lb"),
  12171. name: "Front",
  12172. image: {
  12173. source: "./media/characters/alexi/front.svg",
  12174. extra: 3483 / 3291,
  12175. bottom: 0.04
  12176. }
  12177. },
  12178. back: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(250, "lb"),
  12181. name: "Back",
  12182. image: {
  12183. source: "./media/characters/alexi/back.svg",
  12184. extra: 3533 / 3356,
  12185. bottom: 0.021
  12186. }
  12187. },
  12188. frontTransforming: {
  12189. height: math.unit(8.58, "feet"),
  12190. weight: math.unit(1300, "lb"),
  12191. name: "Transforming",
  12192. image: {
  12193. source: "./media/characters/alexi/front-transforming.svg",
  12194. extra: 437 / 409,
  12195. bottom: 19 / 458.66
  12196. }
  12197. },
  12198. frontTransformed: {
  12199. height: math.unit(12.5, "feet"),
  12200. weight: math.unit(4000, "lb"),
  12201. name: "Transformed",
  12202. image: {
  12203. source: "./media/characters/alexi/front-transformed.svg",
  12204. extra: 639 / 614,
  12205. bottom: 30.55 / 671
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(14, "feet"),
  12213. default: true
  12214. },
  12215. {
  12216. name: "Minimacro",
  12217. height: math.unit(30, "meters")
  12218. },
  12219. {
  12220. name: "Macro",
  12221. height: math.unit(500, "meters")
  12222. },
  12223. {
  12224. name: "Megamacro",
  12225. height: math.unit(9000, "km")
  12226. },
  12227. {
  12228. name: "Teramacro",
  12229. height: math.unit(384000, "km")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12235. {
  12236. front: {
  12237. height: math.unit(6, "feet"),
  12238. weight: math.unit(150, "lb"),
  12239. name: "Front",
  12240. image: {
  12241. source: "./media/characters/kayroo/front.svg",
  12242. extra: 1153 / 1038,
  12243. bottom: 0.06
  12244. }
  12245. },
  12246. foot: {
  12247. height: math.unit(6, "feet"),
  12248. weight: math.unit(150, "lb"),
  12249. name: "Foot",
  12250. image: {
  12251. source: "./media/characters/kayroo/foot.svg"
  12252. }
  12253. },
  12254. },
  12255. [
  12256. {
  12257. name: "Normal",
  12258. height: math.unit(8, "feet"),
  12259. default: true
  12260. },
  12261. {
  12262. name: "Minimacro",
  12263. height: math.unit(250, "feet")
  12264. },
  12265. {
  12266. name: "Macro",
  12267. height: math.unit(2800, "feet")
  12268. },
  12269. {
  12270. name: "Megamacro",
  12271. height: math.unit(5200, "feet")
  12272. },
  12273. {
  12274. name: "Gigamacro",
  12275. height: math.unit(27000, "feet")
  12276. },
  12277. {
  12278. name: "Omega",
  12279. height: math.unit(45000, "feet")
  12280. },
  12281. ]
  12282. ))
  12283. characterMakers.push(() => makeCharacter(
  12284. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12285. {
  12286. front: {
  12287. height: math.unit(18, "feet"),
  12288. weight: math.unit(5800, "lb"),
  12289. name: "Front",
  12290. image: {
  12291. source: "./media/characters/rhys/front.svg",
  12292. extra: 3386 / 3090,
  12293. bottom: 0.07
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Normal",
  12300. height: math.unit(18, "feet"),
  12301. default: true
  12302. },
  12303. {
  12304. name: "Working Size",
  12305. height: math.unit(200, "feet")
  12306. },
  12307. {
  12308. name: "Demolition Size",
  12309. height: math.unit(2000, "feet")
  12310. },
  12311. {
  12312. name: "Maximum Licensed Size",
  12313. height: math.unit(5, "miles")
  12314. },
  12315. {
  12316. name: "Maximum Observed Size",
  12317. height: math.unit(10, "yottameters")
  12318. },
  12319. ]
  12320. ))
  12321. characterMakers.push(() => makeCharacter(
  12322. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12323. {
  12324. front: {
  12325. height: math.unit(6, "feet"),
  12326. weight: math.unit(250, "lb"),
  12327. name: "Front",
  12328. image: {
  12329. source: "./media/characters/toto/front.svg",
  12330. extra: 527 / 479,
  12331. bottom: 0.05
  12332. }
  12333. },
  12334. },
  12335. [
  12336. {
  12337. name: "Micro",
  12338. height: math.unit(3, "feet")
  12339. },
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(10, "feet")
  12343. },
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(150, "feet"),
  12347. default: true
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(1200, "feet")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "King", species: ["lion"], tags: ["anthro"] },
  12357. {
  12358. back: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(150, "lb"),
  12361. name: "Back",
  12362. image: {
  12363. source: "./media/characters/king/back.svg"
  12364. }
  12365. },
  12366. },
  12367. [
  12368. {
  12369. name: "Micro",
  12370. height: math.unit(2, "inches")
  12371. },
  12372. {
  12373. name: "Normal",
  12374. height: math.unit(8, "feet")
  12375. },
  12376. {
  12377. name: "Macro",
  12378. height: math.unit(200, "feet"),
  12379. default: true
  12380. },
  12381. {
  12382. name: "Megamacro",
  12383. height: math.unit(50, "miles")
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(11, "feet"),
  12392. weight: math.unit(1400, "lb"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/cordite/front.svg",
  12396. extra: 1919/1827,
  12397. bottom: 40/1959
  12398. }
  12399. },
  12400. side: {
  12401. height: math.unit(11, "feet"),
  12402. weight: math.unit(1400, "lb"),
  12403. name: "Side",
  12404. image: {
  12405. source: "./media/characters/cordite/side.svg",
  12406. extra: 1908/1793,
  12407. bottom: 38/1946
  12408. }
  12409. },
  12410. back: {
  12411. height: math.unit(11, "feet"),
  12412. weight: math.unit(1400, "lb"),
  12413. name: "Back",
  12414. image: {
  12415. source: "./media/characters/cordite/back.svg",
  12416. extra: 1938/1837,
  12417. bottom: 10/1948
  12418. }
  12419. },
  12420. feral: {
  12421. height: math.unit(2, "feet"),
  12422. weight: math.unit(90, "lb"),
  12423. name: "Feral",
  12424. image: {
  12425. source: "./media/characters/cordite/feral.svg",
  12426. extra: 1260 / 755,
  12427. bottom: 0.05
  12428. }
  12429. },
  12430. },
  12431. [
  12432. {
  12433. name: "Normal",
  12434. height: math.unit(11, "feet"),
  12435. default: true
  12436. },
  12437. ]
  12438. ))
  12439. characterMakers.push(() => makeCharacter(
  12440. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12441. {
  12442. front: {
  12443. height: math.unit(6, "feet"),
  12444. weight: math.unit(150, "lb"),
  12445. name: "Front",
  12446. image: {
  12447. source: "./media/characters/pianostrong/front.svg",
  12448. extra: 6577 / 6254,
  12449. bottom: 0.02
  12450. }
  12451. },
  12452. side: {
  12453. height: math.unit(6, "feet"),
  12454. weight: math.unit(150, "lb"),
  12455. name: "Side",
  12456. image: {
  12457. source: "./media/characters/pianostrong/side.svg",
  12458. extra: 6106 / 5730
  12459. }
  12460. },
  12461. back: {
  12462. height: math.unit(6, "feet"),
  12463. weight: math.unit(150, "lb"),
  12464. name: "Back",
  12465. image: {
  12466. source: "./media/characters/pianostrong/back.svg",
  12467. extra: 6085 / 5733,
  12468. bottom: 0.01
  12469. }
  12470. },
  12471. },
  12472. [
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(100, "feet")
  12476. },
  12477. {
  12478. name: "Macro+",
  12479. height: math.unit(300, "feet"),
  12480. default: true
  12481. },
  12482. {
  12483. name: "Macro++",
  12484. height: math.unit(1000, "feet")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(6, "feet"),
  12493. weight: math.unit(150, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/kona/front.svg",
  12497. extra: 2960 / 2629,
  12498. bottom: 0.005
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Normal",
  12505. height: math.unit(11 + 8 / 12, "feet")
  12506. },
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(850, "feet"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Macro+",
  12514. height: math.unit(1.5, "km"),
  12515. default: true
  12516. },
  12517. {
  12518. name: "Megamacro",
  12519. height: math.unit(80, "miles")
  12520. },
  12521. {
  12522. name: "Gigamacro",
  12523. height: math.unit(3500, "miles")
  12524. },
  12525. ]
  12526. ))
  12527. characterMakers.push(() => makeCharacter(
  12528. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12529. {
  12530. side: {
  12531. height: math.unit(1.9, "meters"),
  12532. weight: math.unit(326, "kg"),
  12533. name: "Side",
  12534. image: {
  12535. source: "./media/characters/levi/side.svg",
  12536. extra: 1704 / 1334,
  12537. bottom: 0.02
  12538. }
  12539. },
  12540. },
  12541. [
  12542. {
  12543. name: "Normal",
  12544. height: math.unit(1.9, "meters"),
  12545. default: true
  12546. },
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(20, "meters")
  12550. },
  12551. {
  12552. name: "Macro+",
  12553. height: math.unit(200, "meters")
  12554. },
  12555. {
  12556. name: "Megamacro",
  12557. height: math.unit(2, "km")
  12558. },
  12559. {
  12560. name: "Megamacro+",
  12561. height: math.unit(20, "km")
  12562. },
  12563. {
  12564. name: "Gigamacro",
  12565. height: math.unit(2500, "km")
  12566. },
  12567. {
  12568. name: "Gigamacro+",
  12569. height: math.unit(120000, "km")
  12570. },
  12571. {
  12572. name: "Teramacro",
  12573. height: math.unit(7.77e6, "km")
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12579. {
  12580. front: {
  12581. height: math.unit(6 + 4/12, "feet"),
  12582. weight: math.unit(190, "lb"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/bmc/front.svg",
  12586. extra: 1626/1472,
  12587. bottom: 79/1705
  12588. }
  12589. },
  12590. back: {
  12591. height: math.unit(6 + 4/12, "feet"),
  12592. weight: math.unit(190, "lb"),
  12593. name: "Back",
  12594. image: {
  12595. source: "./media/characters/bmc/back.svg",
  12596. extra: 1640/1479,
  12597. bottom: 45/1685
  12598. }
  12599. },
  12600. frontArmor: {
  12601. height: math.unit(6 + 4/12, "feet"),
  12602. weight: math.unit(190, "lb"),
  12603. name: "Front-armor",
  12604. image: {
  12605. source: "./media/characters/bmc/front-armor.svg",
  12606. extra: 1538/1468,
  12607. bottom: 79/1617
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Human-sized",
  12614. height: math.unit(6 + 4 / 12, "feet")
  12615. },
  12616. {
  12617. name: "Interactive Size",
  12618. height: math.unit(25, "feet")
  12619. },
  12620. {
  12621. name: "Small",
  12622. height: math.unit(250, "feet")
  12623. },
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(1250, "feet"),
  12627. default: true
  12628. },
  12629. {
  12630. name: "Good Day",
  12631. height: math.unit(88, "miles")
  12632. },
  12633. {
  12634. name: "Largest Measured Size",
  12635. height: math.unit(105.960, "galaxies")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(20, "feet"),
  12644. weight: math.unit(2016, "kg"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/sven-the-kaiju/front.svg",
  12648. extra: 1277/1250,
  12649. bottom: 35/1312
  12650. }
  12651. },
  12652. mouth: {
  12653. height: math.unit(1.85, "feet"),
  12654. name: "Mouth",
  12655. image: {
  12656. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Fairy",
  12663. height: math.unit(6, "inches")
  12664. },
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(20, "feet"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Rampage",
  12672. height: math.unit(200, "feet")
  12673. },
  12674. {
  12675. name: "Archfey Forest Guardian",
  12676. height: math.unit(1, "mile")
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(4, "meters"),
  12685. weight: math.unit(2, "tons"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/marik/front.svg",
  12689. extra: 1057 / 1003,
  12690. bottom: 0.08
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(4, "meters"),
  12698. default: true
  12699. },
  12700. {
  12701. name: "Macro",
  12702. height: math.unit(20, "meters")
  12703. },
  12704. {
  12705. name: "Megamacro",
  12706. height: math.unit(50, "km")
  12707. },
  12708. {
  12709. name: "Gigamacro",
  12710. height: math.unit(100, "km")
  12711. },
  12712. {
  12713. name: "Alpha Macro",
  12714. height: math.unit(7.88e7, "yottameters")
  12715. },
  12716. ]
  12717. ))
  12718. characterMakers.push(() => makeCharacter(
  12719. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12720. {
  12721. front: {
  12722. height: math.unit(6, "feet"),
  12723. weight: math.unit(110, "lb"),
  12724. name: "Front",
  12725. image: {
  12726. source: "./media/characters/mel/front.svg",
  12727. extra: 736 / 617,
  12728. bottom: 0.017
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Pico",
  12735. height: math.unit(3, "pm")
  12736. },
  12737. {
  12738. name: "Nano",
  12739. height: math.unit(3, "nm")
  12740. },
  12741. {
  12742. name: "Micro",
  12743. height: math.unit(0.3, "mm"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Micro+",
  12748. height: math.unit(3, "mm")
  12749. },
  12750. {
  12751. name: "Normal",
  12752. height: math.unit(5 + 10.5 / 12, "feet")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12758. {
  12759. kaiju: {
  12760. height: math.unit(1.75, "meters"),
  12761. weight: math.unit(55, "kg"),
  12762. name: "Kaiju",
  12763. image: {
  12764. source: "./media/characters/lykonous/kaiju.svg",
  12765. extra: 1055 / 946,
  12766. bottom: 0.135
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Normal",
  12773. height: math.unit(2.5, "meters"),
  12774. default: true
  12775. },
  12776. {
  12777. name: "Kaiju Dragon",
  12778. height: math.unit(60, "meters")
  12779. },
  12780. {
  12781. name: "Mega Kaiju",
  12782. height: math.unit(120, "km")
  12783. },
  12784. {
  12785. name: "Giga Kaiju",
  12786. height: math.unit(200, "megameters")
  12787. },
  12788. {
  12789. name: "Terra Kaiju",
  12790. height: math.unit(400, "gigameters")
  12791. },
  12792. {
  12793. name: "Kaiju Dragon God",
  12794. height: math.unit(13000, "exaparsecs")
  12795. },
  12796. ]
  12797. ))
  12798. characterMakers.push(() => makeCharacter(
  12799. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12800. {
  12801. front: {
  12802. height: math.unit(6, "feet"),
  12803. weight: math.unit(150, "lb"),
  12804. name: "Front",
  12805. image: {
  12806. source: "./media/characters/blü/front.svg",
  12807. extra: 1883 / 1564,
  12808. bottom: 0.031
  12809. }
  12810. },
  12811. },
  12812. [
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(13, "feet"),
  12816. default: true
  12817. },
  12818. {
  12819. name: "Big Boi",
  12820. height: math.unit(150, "meters")
  12821. },
  12822. {
  12823. name: "Mini Stomper",
  12824. height: math.unit(300, "meters")
  12825. },
  12826. {
  12827. name: "Macro",
  12828. height: math.unit(1000, "meters")
  12829. },
  12830. {
  12831. name: "Megamacro",
  12832. height: math.unit(11000, "meters")
  12833. },
  12834. {
  12835. name: "Gigamacro",
  12836. height: math.unit(11000, "km")
  12837. },
  12838. {
  12839. name: "Teramacro",
  12840. height: math.unit(420000, "km")
  12841. },
  12842. {
  12843. name: "Examacro",
  12844. height: math.unit(120, "parsecs")
  12845. },
  12846. {
  12847. name: "God Tho",
  12848. height: math.unit(98000000000, "parsecs")
  12849. },
  12850. ]
  12851. ))
  12852. characterMakers.push(() => makeCharacter(
  12853. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12854. {
  12855. taurFront: {
  12856. height: math.unit(6, "feet"),
  12857. weight: math.unit(200, "lb"),
  12858. name: "Taur (Front)",
  12859. image: {
  12860. source: "./media/characters/scales/taur-front.svg",
  12861. extra: 1,
  12862. bottom: 0.05
  12863. }
  12864. },
  12865. taurBack: {
  12866. height: math.unit(6, "feet"),
  12867. weight: math.unit(200, "lb"),
  12868. name: "Taur (Back)",
  12869. image: {
  12870. source: "./media/characters/scales/taur-back.svg",
  12871. extra: 1,
  12872. bottom: 0.08
  12873. }
  12874. },
  12875. anthro: {
  12876. height: math.unit(6 * 7 / 12, "feet"),
  12877. weight: math.unit(100, "lb"),
  12878. name: "Anthro",
  12879. image: {
  12880. source: "./media/characters/scales/anthro.svg",
  12881. extra: 1,
  12882. bottom: 0.06
  12883. }
  12884. },
  12885. },
  12886. [
  12887. {
  12888. name: "Normal",
  12889. height: math.unit(12, "feet"),
  12890. default: true
  12891. },
  12892. ]
  12893. ))
  12894. characterMakers.push(() => makeCharacter(
  12895. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12896. {
  12897. front: {
  12898. height: math.unit(6, "feet"),
  12899. weight: math.unit(150, "lb"),
  12900. name: "Front",
  12901. image: {
  12902. source: "./media/characters/koragos/front.svg",
  12903. extra: 841 / 794,
  12904. bottom: 0.035
  12905. }
  12906. },
  12907. back: {
  12908. height: math.unit(6, "feet"),
  12909. weight: math.unit(150, "lb"),
  12910. name: "Back",
  12911. image: {
  12912. source: "./media/characters/koragos/back.svg",
  12913. extra: 841 / 810,
  12914. bottom: 0.022
  12915. }
  12916. },
  12917. },
  12918. [
  12919. {
  12920. name: "Normal",
  12921. height: math.unit(6 + 11 / 12, "feet"),
  12922. default: true
  12923. },
  12924. {
  12925. name: "Macro",
  12926. height: math.unit(490, "feet")
  12927. },
  12928. {
  12929. name: "Megamacro",
  12930. height: math.unit(10, "miles")
  12931. },
  12932. {
  12933. name: "Gigamacro",
  12934. height: math.unit(50, "miles")
  12935. },
  12936. ]
  12937. ))
  12938. characterMakers.push(() => makeCharacter(
  12939. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12940. {
  12941. front: {
  12942. height: math.unit(6, "feet"),
  12943. weight: math.unit(250, "lb"),
  12944. name: "Front",
  12945. image: {
  12946. source: "./media/characters/xylrem/front.svg",
  12947. extra: 3323 / 3050,
  12948. bottom: 0.065
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Micro",
  12955. height: math.unit(4, "feet")
  12956. },
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(16, "feet"),
  12960. default: true
  12961. },
  12962. {
  12963. name: "Macro",
  12964. height: math.unit(2720, "feet")
  12965. },
  12966. {
  12967. name: "Megamacro",
  12968. height: math.unit(25000, "miles")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(8, "feet"),
  12977. weight: math.unit(250, "kg"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/ikideru/front.svg",
  12981. extra: 930 / 870,
  12982. bottom: 0.087
  12983. }
  12984. },
  12985. back: {
  12986. height: math.unit(8, "feet"),
  12987. weight: math.unit(250, "kg"),
  12988. name: "Back",
  12989. image: {
  12990. source: "./media/characters/ikideru/back.svg",
  12991. extra: 919 / 852,
  12992. bottom: 0.055
  12993. }
  12994. },
  12995. },
  12996. [
  12997. {
  12998. name: "Rare",
  12999. height: math.unit(8, "feet"),
  13000. default: true
  13001. },
  13002. {
  13003. name: "Playful Loom",
  13004. height: math.unit(80, "feet")
  13005. },
  13006. {
  13007. name: "City Leaner",
  13008. height: math.unit(230, "feet")
  13009. },
  13010. {
  13011. name: "Megamacro",
  13012. height: math.unit(2500, "feet")
  13013. },
  13014. {
  13015. name: "Gigamacro",
  13016. height: math.unit(26400, "feet")
  13017. },
  13018. {
  13019. name: "Tectonic Shifter",
  13020. height: math.unit(1.7, "megameters")
  13021. },
  13022. {
  13023. name: "Planet Carer",
  13024. height: math.unit(21, "megameters")
  13025. },
  13026. {
  13027. name: "God",
  13028. height: math.unit(11157.22, "parsecs")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13034. {
  13035. front: {
  13036. height: math.unit(6, "feet"),
  13037. weight: math.unit(120, "lb"),
  13038. name: "Front",
  13039. image: {
  13040. source: "./media/characters/neo/front.svg"
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Micro",
  13047. height: math.unit(2, "inches"),
  13048. default: true
  13049. },
  13050. {
  13051. name: "Human Size",
  13052. height: math.unit(5 + 8 / 12, "feet")
  13053. },
  13054. ]
  13055. ))
  13056. characterMakers.push(() => makeCharacter(
  13057. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13058. {
  13059. front: {
  13060. height: math.unit(13 + 10 / 12, "feet"),
  13061. weight: math.unit(5320, "lb"),
  13062. name: "Front",
  13063. image: {
  13064. source: "./media/characters/chauncey-chantz/front.svg",
  13065. extra: 1587 / 1435,
  13066. bottom: 0.02
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Normal",
  13073. height: math.unit(13 + 10 / 12, "feet"),
  13074. default: true
  13075. },
  13076. {
  13077. name: "Macro",
  13078. height: math.unit(45, "feet")
  13079. },
  13080. {
  13081. name: "Megamacro",
  13082. height: math.unit(250, "miles")
  13083. },
  13084. {
  13085. name: "Planetary",
  13086. height: math.unit(10000, "miles")
  13087. },
  13088. {
  13089. name: "Galactic",
  13090. height: math.unit(40000, "parsecs")
  13091. },
  13092. {
  13093. name: "Universal",
  13094. height: math.unit(1, "yottameter")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13100. {
  13101. front: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/epifox/front.svg",
  13107. extra: 1,
  13108. bottom: 0.075
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Micro",
  13115. height: math.unit(6, "inches")
  13116. },
  13117. {
  13118. name: "Normal",
  13119. height: math.unit(12, "feet"),
  13120. default: true
  13121. },
  13122. {
  13123. name: "Macro",
  13124. height: math.unit(3810, "feet")
  13125. },
  13126. {
  13127. name: "Megamacro",
  13128. height: math.unit(500, "miles")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(1.8796, "m"),
  13137. weight: math.unit(230, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/colin-t/front.svg",
  13141. extra: 1272 / 1193,
  13142. bottom: 0.07
  13143. }
  13144. },
  13145. },
  13146. [
  13147. {
  13148. name: "Micro",
  13149. height: math.unit(0.571, "meters")
  13150. },
  13151. {
  13152. name: "Normal",
  13153. height: math.unit(1.8796, "meters"),
  13154. default: true
  13155. },
  13156. {
  13157. name: "Tall",
  13158. height: math.unit(4, "meters")
  13159. },
  13160. {
  13161. name: "Macro",
  13162. height: math.unit(67.241, "meters")
  13163. },
  13164. {
  13165. name: "Megamacro",
  13166. height: math.unit(371.856, "meters")
  13167. },
  13168. {
  13169. name: "Planetary",
  13170. height: math.unit(12631.5689, "km")
  13171. },
  13172. ]
  13173. ))
  13174. characterMakers.push(() => makeCharacter(
  13175. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13176. {
  13177. front: {
  13178. height: math.unit(1.85, "meters"),
  13179. weight: math.unit(80, "kg"),
  13180. name: "Front",
  13181. image: {
  13182. source: "./media/characters/matvei/front.svg",
  13183. extra: 456/447,
  13184. bottom: 8/464
  13185. }
  13186. },
  13187. back: {
  13188. height: math.unit(1.85, "meters"),
  13189. weight: math.unit(80, "kg"),
  13190. name: "Back",
  13191. image: {
  13192. source: "./media/characters/matvei/back.svg",
  13193. extra: 434/427,
  13194. bottom: 11/445
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Normal",
  13201. height: math.unit(1.85, "meters"),
  13202. default: true
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13208. {
  13209. front: {
  13210. height: math.unit(5 + 9 / 12, "feet"),
  13211. weight: math.unit(70, "lb"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/quincy/front.svg",
  13215. extra: 3041 / 2751
  13216. }
  13217. },
  13218. back: {
  13219. height: math.unit(5 + 9 / 12, "feet"),
  13220. weight: math.unit(70, "lb"),
  13221. name: "Back",
  13222. image: {
  13223. source: "./media/characters/quincy/back.svg",
  13224. extra: 3041 / 2751
  13225. }
  13226. },
  13227. flying: {
  13228. height: math.unit(5 + 4 / 12, "feet"),
  13229. weight: math.unit(70, "lb"),
  13230. name: "Flying",
  13231. image: {
  13232. source: "./media/characters/quincy/flying.svg",
  13233. extra: 1044 / 930
  13234. }
  13235. },
  13236. },
  13237. [
  13238. {
  13239. name: "Micro",
  13240. height: math.unit(3, "cm")
  13241. },
  13242. {
  13243. name: "Normal",
  13244. height: math.unit(5 + 9 / 12, "feet")
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(200, "meters"),
  13249. default: true
  13250. },
  13251. {
  13252. name: "Megamacro",
  13253. height: math.unit(1000, "meters")
  13254. },
  13255. ]
  13256. ))
  13257. characterMakers.push(() => makeCharacter(
  13258. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13259. {
  13260. front: {
  13261. height: math.unit(3 + 11/12, "feet"),
  13262. weight: math.unit(50, "lb"),
  13263. name: "Front",
  13264. image: {
  13265. source: "./media/characters/vanrel/front.svg",
  13266. extra: 1104/949,
  13267. bottom: 52/1156
  13268. }
  13269. },
  13270. back: {
  13271. height: math.unit(3 + 11/12, "feet"),
  13272. weight: math.unit(50, "lb"),
  13273. name: "Back",
  13274. image: {
  13275. source: "./media/characters/vanrel/back.svg",
  13276. extra: 1119/976,
  13277. bottom: 37/1156
  13278. }
  13279. },
  13280. tome: {
  13281. height: math.unit(1.35, "feet"),
  13282. weight: math.unit(10, "lb"),
  13283. name: "Vanrel's Tome",
  13284. rename: true,
  13285. image: {
  13286. source: "./media/characters/vanrel/tome.svg"
  13287. }
  13288. },
  13289. beans: {
  13290. height: math.unit(0.89, "feet"),
  13291. name: "Beans",
  13292. image: {
  13293. source: "./media/characters/vanrel/beans.svg"
  13294. }
  13295. },
  13296. },
  13297. [
  13298. {
  13299. name: "Normal",
  13300. height: math.unit(3 + 11/12, "feet"),
  13301. default: true
  13302. },
  13303. ]
  13304. ))
  13305. characterMakers.push(() => makeCharacter(
  13306. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13307. {
  13308. front: {
  13309. height: math.unit(7 + 5 / 12, "feet"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/kuiper-vanrel/front.svg",
  13313. extra: 1219/1169,
  13314. bottom: 69/1288
  13315. }
  13316. },
  13317. back: {
  13318. height: math.unit(7 + 5 / 12, "feet"),
  13319. name: "Back",
  13320. image: {
  13321. source: "./media/characters/kuiper-vanrel/back.svg",
  13322. extra: 1236/1193,
  13323. bottom: 27/1263
  13324. }
  13325. },
  13326. foot: {
  13327. height: math.unit(0.55, "meters"),
  13328. name: "Foot",
  13329. image: {
  13330. source: "./media/characters/kuiper-vanrel/foot.svg",
  13331. }
  13332. },
  13333. battle: {
  13334. height: math.unit(6.824, "feet"),
  13335. name: "Battle",
  13336. image: {
  13337. source: "./media/characters/kuiper-vanrel/battle.svg",
  13338. extra: 1466 / 1327,
  13339. bottom: 29 / 1492.5
  13340. }
  13341. },
  13342. meerkui: {
  13343. height: math.unit(18, "inches"),
  13344. name: "Meerkui",
  13345. image: {
  13346. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13347. extra: 1354/1289,
  13348. bottom: 69/1423
  13349. }
  13350. },
  13351. },
  13352. [
  13353. {
  13354. name: "Normal",
  13355. height: math.unit(7 + 5 / 12, "feet"),
  13356. default: true
  13357. },
  13358. ]
  13359. ))
  13360. characterMakers.push(() => makeCharacter(
  13361. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13362. {
  13363. front: {
  13364. height: math.unit(8 + 5 / 12, "feet"),
  13365. name: "Front",
  13366. image: {
  13367. source: "./media/characters/keset-vanrel/front.svg",
  13368. extra: 1231/1148,
  13369. bottom: 82/1313
  13370. }
  13371. },
  13372. back: {
  13373. height: math.unit(8 + 5 / 12, "feet"),
  13374. name: "Back",
  13375. image: {
  13376. source: "./media/characters/keset-vanrel/back.svg",
  13377. extra: 1240/1174,
  13378. bottom: 33/1273
  13379. }
  13380. },
  13381. hand: {
  13382. height: math.unit(0.6, "meters"),
  13383. name: "Hand",
  13384. image: {
  13385. source: "./media/characters/keset-vanrel/hand.svg"
  13386. }
  13387. },
  13388. foot: {
  13389. height: math.unit(0.94978, "meters"),
  13390. name: "Foot",
  13391. image: {
  13392. source: "./media/characters/keset-vanrel/foot.svg"
  13393. }
  13394. },
  13395. battle: {
  13396. height: math.unit(7.408, "feet"),
  13397. name: "Battle",
  13398. image: {
  13399. source: "./media/characters/keset-vanrel/battle.svg",
  13400. extra: 1890 / 1386,
  13401. bottom: 73.28 / 1970
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(8 + 5 / 12, "feet"),
  13409. default: true
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(6, "feet"),
  13418. weight: math.unit(150, "lb"),
  13419. name: "Front",
  13420. image: {
  13421. source: "./media/characters/neos/front.svg",
  13422. extra: 1696 / 992,
  13423. bottom: 0.14
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Normal",
  13430. height: math.unit(54, "cm"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Macro",
  13435. height: math.unit(100, "m")
  13436. },
  13437. {
  13438. name: "Megamacro",
  13439. height: math.unit(10, "km")
  13440. },
  13441. {
  13442. name: "Megamacro+",
  13443. height: math.unit(100, "km")
  13444. },
  13445. {
  13446. name: "Gigamacro",
  13447. height: math.unit(100, "Mm")
  13448. },
  13449. {
  13450. name: "Teramacro",
  13451. height: math.unit(100, "Gm")
  13452. },
  13453. {
  13454. name: "Examacro",
  13455. height: math.unit(100, "Em")
  13456. },
  13457. {
  13458. name: "Godly",
  13459. height: math.unit(10000, "Ym")
  13460. },
  13461. {
  13462. name: "Beyond Godly",
  13463. height: math.unit(25, "multiverses")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13469. {
  13470. feminine: {
  13471. height: math.unit(5, "feet"),
  13472. weight: math.unit(100, "lb"),
  13473. name: "Feminine",
  13474. image: {
  13475. source: "./media/characters/sammy-mouse/feminine.svg",
  13476. extra: 2526 / 2425,
  13477. bottom: 0.123
  13478. }
  13479. },
  13480. masculine: {
  13481. height: math.unit(5, "feet"),
  13482. weight: math.unit(100, "lb"),
  13483. name: "Masculine",
  13484. image: {
  13485. source: "./media/characters/sammy-mouse/masculine.svg",
  13486. extra: 2526 / 2425,
  13487. bottom: 0.123
  13488. }
  13489. },
  13490. },
  13491. [
  13492. {
  13493. name: "Micro",
  13494. height: math.unit(5, "inches")
  13495. },
  13496. {
  13497. name: "Normal",
  13498. height: math.unit(5, "feet"),
  13499. default: true
  13500. },
  13501. {
  13502. name: "Macro",
  13503. height: math.unit(60, "feet")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13509. {
  13510. front: {
  13511. height: math.unit(4, "feet"),
  13512. weight: math.unit(50, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/kole/front.svg",
  13516. extra: 1423 / 1303,
  13517. bottom: 0.025
  13518. }
  13519. },
  13520. back: {
  13521. height: math.unit(4, "feet"),
  13522. weight: math.unit(50, "lb"),
  13523. name: "Back",
  13524. image: {
  13525. source: "./media/characters/kole/back.svg",
  13526. extra: 1426 / 1280,
  13527. bottom: 0.02
  13528. }
  13529. },
  13530. },
  13531. [
  13532. {
  13533. name: "Normal",
  13534. height: math.unit(4, "feet"),
  13535. default: true
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(2.5, "feet"),
  13544. weight: math.unit(32, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/rufran/front.svg",
  13548. extra: 1313/885,
  13549. bottom: 94/1407
  13550. }
  13551. },
  13552. side: {
  13553. height: math.unit(2.5, "feet"),
  13554. weight: math.unit(32, "lb"),
  13555. name: "Side",
  13556. image: {
  13557. source: "./media/characters/rufran/side.svg",
  13558. extra: 1109/852,
  13559. bottom: 118/1227
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(2.5, "feet"),
  13564. weight: math.unit(32, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/rufran/back.svg",
  13568. extra: 1280/878,
  13569. bottom: 131/1411
  13570. }
  13571. },
  13572. mouth: {
  13573. height: math.unit(1.13, "feet"),
  13574. name: "Mouth",
  13575. image: {
  13576. source: "./media/characters/rufran/mouth.svg"
  13577. }
  13578. },
  13579. foot: {
  13580. height: math.unit(1.33, "feet"),
  13581. name: "Foot",
  13582. image: {
  13583. source: "./media/characters/rufran/foot.svg"
  13584. }
  13585. },
  13586. koboldFront: {
  13587. height: math.unit(2 + 6 / 12, "feet"),
  13588. weight: math.unit(20, "lb"),
  13589. name: "Front (Kobold)",
  13590. image: {
  13591. source: "./media/characters/rufran/kobold-front.svg",
  13592. extra: 2041 / 1839,
  13593. bottom: 0.055
  13594. }
  13595. },
  13596. koboldBack: {
  13597. height: math.unit(2 + 6 / 12, "feet"),
  13598. weight: math.unit(20, "lb"),
  13599. name: "Back (Kobold)",
  13600. image: {
  13601. source: "./media/characters/rufran/kobold-back.svg",
  13602. extra: 2054 / 1839,
  13603. bottom: 0.01
  13604. }
  13605. },
  13606. koboldHand: {
  13607. height: math.unit(0.2166, "meters"),
  13608. name: "Hand (Kobold)",
  13609. image: {
  13610. source: "./media/characters/rufran/kobold-hand.svg"
  13611. }
  13612. },
  13613. koboldFoot: {
  13614. height: math.unit(0.185, "meters"),
  13615. name: "Foot (Kobold)",
  13616. image: {
  13617. source: "./media/characters/rufran/kobold-foot.svg"
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Micro",
  13624. height: math.unit(1, "inch")
  13625. },
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(2 + 6 / 12, "feet"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Big",
  13633. height: math.unit(60, "feet")
  13634. },
  13635. {
  13636. name: "Macro",
  13637. height: math.unit(325, "feet")
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13643. {
  13644. front: {
  13645. height: math.unit(0.3, "meters"),
  13646. weight: math.unit(3.5, "kg"),
  13647. name: "Front",
  13648. image: {
  13649. source: "./media/characters/chip/front.svg",
  13650. extra: 748 / 674
  13651. }
  13652. },
  13653. },
  13654. [
  13655. {
  13656. name: "Micro",
  13657. height: math.unit(1, "inch"),
  13658. default: true
  13659. },
  13660. ]
  13661. ))
  13662. characterMakers.push(() => makeCharacter(
  13663. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13664. {
  13665. side: {
  13666. height: math.unit(2.3, "meters"),
  13667. weight: math.unit(3500, "lb"),
  13668. name: "Side",
  13669. image: {
  13670. source: "./media/characters/torvid/side.svg",
  13671. extra: 1972 / 722,
  13672. bottom: 0.035
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Normal",
  13679. height: math.unit(2.3, "meters"),
  13680. default: true
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(2, "meters"),
  13689. weight: math.unit(150.5, "kg"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/susan/front.svg",
  13693. extra: 693 / 635,
  13694. bottom: 0.05
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Megamacro",
  13701. height: math.unit(505, "miles"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13708. {
  13709. front: {
  13710. height: math.unit(6, "feet"),
  13711. weight: math.unit(150, "lb"),
  13712. name: "Front",
  13713. image: {
  13714. source: "./media/characters/raindrops/front.svg",
  13715. extra: 2655 / 2461,
  13716. bottom: 49 / 2705
  13717. }
  13718. },
  13719. back: {
  13720. height: math.unit(6, "feet"),
  13721. weight: math.unit(150, "lb"),
  13722. name: "Back",
  13723. image: {
  13724. source: "./media/characters/raindrops/back.svg",
  13725. extra: 2574 / 2400,
  13726. bottom: 65 / 2634
  13727. }
  13728. },
  13729. },
  13730. [
  13731. {
  13732. name: "Micro",
  13733. height: math.unit(6, "inches")
  13734. },
  13735. {
  13736. name: "Normal",
  13737. height: math.unit(6 + 2 / 12, "feet")
  13738. },
  13739. {
  13740. name: "Macro",
  13741. height: math.unit(131, "feet"),
  13742. default: true
  13743. },
  13744. {
  13745. name: "Megamacro",
  13746. height: math.unit(15, "miles")
  13747. },
  13748. {
  13749. name: "Gigamacro",
  13750. height: math.unit(4000, "miles")
  13751. },
  13752. {
  13753. name: "Teramacro",
  13754. height: math.unit(315000, "miles")
  13755. },
  13756. ]
  13757. ))
  13758. characterMakers.push(() => makeCharacter(
  13759. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13760. {
  13761. front: {
  13762. height: math.unit(2.794, "meters"),
  13763. weight: math.unit(325, "kg"),
  13764. name: "Front",
  13765. image: {
  13766. source: "./media/characters/tezwa/front.svg",
  13767. extra: 2083 / 1906,
  13768. bottom: 0.031
  13769. }
  13770. },
  13771. foot: {
  13772. height: math.unit(0.687, "meters"),
  13773. name: "Foot",
  13774. image: {
  13775. source: "./media/characters/tezwa/foot.svg"
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "Normal",
  13782. height: math.unit(9 + 2 / 12, "feet"),
  13783. default: true
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(58, "feet"),
  13792. weight: math.unit(89000, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/typhus/front.svg",
  13796. extra: 816 / 800,
  13797. bottom: 0.065
  13798. }
  13799. },
  13800. },
  13801. [
  13802. {
  13803. name: "Macro",
  13804. height: math.unit(58, "feet"),
  13805. default: true
  13806. },
  13807. ]
  13808. ))
  13809. characterMakers.push(() => makeCharacter(
  13810. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13811. {
  13812. front: {
  13813. height: math.unit(12, "feet"),
  13814. weight: math.unit(6, "tonnes"),
  13815. name: "Front",
  13816. image: {
  13817. source: "./media/characters/lyra-von-wulf/front.svg",
  13818. extra: 1,
  13819. bottom: 0.10
  13820. }
  13821. },
  13822. frontMecha: {
  13823. height: math.unit(12, "feet"),
  13824. weight: math.unit(12, "tonnes"),
  13825. name: "Front (Mecha)",
  13826. image: {
  13827. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13828. extra: 1,
  13829. bottom: 0.042
  13830. }
  13831. },
  13832. maw: {
  13833. height: math.unit(2.2, "feet"),
  13834. name: "Maw",
  13835. image: {
  13836. source: "./media/characters/lyra-von-wulf/maw.svg"
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Normal",
  13843. height: math.unit(12, "feet"),
  13844. default: true
  13845. },
  13846. {
  13847. name: "Classic",
  13848. height: math.unit(50, "feet")
  13849. },
  13850. {
  13851. name: "Macro",
  13852. height: math.unit(500, "feet")
  13853. },
  13854. {
  13855. name: "Megamacro",
  13856. height: math.unit(1, "mile")
  13857. },
  13858. {
  13859. name: "Gigamacro",
  13860. height: math.unit(400, "miles")
  13861. },
  13862. {
  13863. name: "Teramacro",
  13864. height: math.unit(22000, "miles")
  13865. },
  13866. {
  13867. name: "Solarmacro",
  13868. height: math.unit(8600000, "miles")
  13869. },
  13870. {
  13871. name: "Galactic",
  13872. height: math.unit(1057000, "lightyears")
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13878. {
  13879. front: {
  13880. height: math.unit(6 + 10 / 12, "feet"),
  13881. weight: math.unit(150, "lb"),
  13882. name: "Front",
  13883. image: {
  13884. source: "./media/characters/dixon/front.svg",
  13885. extra: 3361 / 3209,
  13886. bottom: 0.01
  13887. }
  13888. },
  13889. },
  13890. [
  13891. {
  13892. name: "Normal",
  13893. height: math.unit(6 + 10 / 12, "feet"),
  13894. default: true
  13895. },
  13896. {
  13897. name: "Big",
  13898. height: math.unit(12, "meters")
  13899. },
  13900. {
  13901. name: "Macro",
  13902. height: math.unit(500, "meters")
  13903. },
  13904. {
  13905. name: "Megamacro",
  13906. height: math.unit(2, "km")
  13907. },
  13908. ]
  13909. ))
  13910. characterMakers.push(() => makeCharacter(
  13911. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13912. {
  13913. front: {
  13914. height: math.unit(185, "cm"),
  13915. weight: math.unit(68, "kg"),
  13916. name: "Front",
  13917. image: {
  13918. source: "./media/characters/kauko/front.svg",
  13919. extra: 1455 / 1421,
  13920. bottom: 0.03
  13921. }
  13922. },
  13923. back: {
  13924. height: math.unit(185, "cm"),
  13925. weight: math.unit(68, "kg"),
  13926. name: "Back",
  13927. image: {
  13928. source: "./media/characters/kauko/back.svg",
  13929. extra: 1455 / 1421,
  13930. bottom: 0.004
  13931. }
  13932. },
  13933. },
  13934. [
  13935. {
  13936. name: "Normal",
  13937. height: math.unit(185, "cm"),
  13938. default: true
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13944. {
  13945. frontSfw: {
  13946. height: math.unit(5, "meters"),
  13947. weight: math.unit(4250, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/varg/front-sfw.svg",
  13951. extra: 1103/1010,
  13952. bottom: 50/1153
  13953. },
  13954. form: "anthro",
  13955. default: true
  13956. },
  13957. backSfw: {
  13958. height: math.unit(5, "meters"),
  13959. weight: math.unit(4250, "lb"),
  13960. name: "Back",
  13961. image: {
  13962. source: "./media/characters/varg/back-sfw.svg",
  13963. extra: 1038/1022,
  13964. bottom: 36/1074
  13965. },
  13966. form: "anthro"
  13967. },
  13968. frontNsfw: {
  13969. height: math.unit(5, "meters"),
  13970. weight: math.unit(4250, "lb"),
  13971. name: "Front (NSFW)",
  13972. image: {
  13973. source: "./media/characters/varg/front-nsfw.svg",
  13974. extra: 1103/1010,
  13975. bottom: 50/1153
  13976. },
  13977. form: "anthro"
  13978. },
  13979. sheath: {
  13980. height: math.unit(3.8, "feet"),
  13981. weight: math.unit(90, "kilograms"),
  13982. name: "Sheath",
  13983. image: {
  13984. source: "./media/characters/varg/sheath.svg"
  13985. },
  13986. form: "anthro"
  13987. },
  13988. dick: {
  13989. height: math.unit(4.6, "feet"),
  13990. weight: math.unit(451, "kilograms"),
  13991. name: "Dick",
  13992. image: {
  13993. source: "./media/characters/varg/dick.svg"
  13994. },
  13995. form: "anthro"
  13996. },
  13997. feralSfw: {
  13998. height: math.unit(5, "meters"),
  13999. weight: math.unit(100000, "lb"),
  14000. name: "Side",
  14001. image: {
  14002. source: "./media/characters/varg/feral-sfw.svg",
  14003. extra: 1065/511,
  14004. bottom: 211/1276
  14005. },
  14006. form: "feral",
  14007. default: true
  14008. },
  14009. feralNsfw: {
  14010. height: math.unit(5, "meters"),
  14011. weight: math.unit(100000, "lb"),
  14012. name: "Side (NSFW)",
  14013. image: {
  14014. source: "./media/characters/varg/feral-nsfw.svg",
  14015. extra: 1065/511,
  14016. bottom: 211/1276
  14017. },
  14018. form: "feral",
  14019. },
  14020. feralSheath: {
  14021. height: math.unit(9.8, "feet"),
  14022. weight: math.unit(2000, "kilograms"),
  14023. name: "Sheath",
  14024. image: {
  14025. source: "./media/characters/varg/sheath.svg"
  14026. },
  14027. form: "feral"
  14028. },
  14029. feralDick: {
  14030. height: math.unit(13.11, "feet"),
  14031. weight: math.unit(10440, "kilograms"),
  14032. name: "Dick",
  14033. image: {
  14034. source: "./media/characters/varg/dick.svg"
  14035. },
  14036. form: "feral"
  14037. },
  14038. },
  14039. [
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(5, "meters"),
  14043. form: "anthro"
  14044. },
  14045. {
  14046. name: "Macro",
  14047. height: math.unit(200, "meters"),
  14048. form: "anthro"
  14049. },
  14050. {
  14051. name: "Megamacro",
  14052. height: math.unit(20, "kilometers"),
  14053. form: "anthro"
  14054. },
  14055. {
  14056. name: "True Size",
  14057. height: math.unit(211, "km"),
  14058. form: "anthro",
  14059. default: true
  14060. },
  14061. {
  14062. name: "Gigamacro",
  14063. height: math.unit(1000, "km"),
  14064. form: "anthro"
  14065. },
  14066. {
  14067. name: "Gigamacro+",
  14068. height: math.unit(8000, "km"),
  14069. form: "anthro"
  14070. },
  14071. {
  14072. name: "Teramacro",
  14073. height: math.unit(1000000, "km"),
  14074. form: "anthro"
  14075. },
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(5, "meters"),
  14079. form: "feral"
  14080. },
  14081. {
  14082. name: "Macro",
  14083. height: math.unit(200, "meters"),
  14084. form: "feral"
  14085. },
  14086. {
  14087. name: "Megamacro",
  14088. height: math.unit(20, "kilometers"),
  14089. form: "feral"
  14090. },
  14091. {
  14092. name: "True Size",
  14093. height: math.unit(211, "km"),
  14094. form: "feral",
  14095. default: true
  14096. },
  14097. {
  14098. name: "Gigamacro",
  14099. height: math.unit(1000, "km"),
  14100. form: "feral"
  14101. },
  14102. {
  14103. name: "Gigamacro+",
  14104. height: math.unit(8000, "km"),
  14105. form: "feral"
  14106. },
  14107. {
  14108. name: "Teramacro",
  14109. height: math.unit(1000000, "km"),
  14110. form: "feral"
  14111. },
  14112. ],
  14113. {
  14114. "anthro": {
  14115. name: "Anthro",
  14116. default: true
  14117. },
  14118. "feral": {
  14119. name: "Feral",
  14120. },
  14121. }
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(7 + 7 / 12, "feet"),
  14128. weight: math.unit(267, "lb"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/dayza/front.svg",
  14132. extra: 1262 / 1200,
  14133. bottom: 0.035
  14134. }
  14135. },
  14136. side: {
  14137. height: math.unit(7 + 7 / 12, "feet"),
  14138. weight: math.unit(267, "lb"),
  14139. name: "Side",
  14140. image: {
  14141. source: "./media/characters/dayza/side.svg",
  14142. extra: 1295 / 1245,
  14143. bottom: 0.05
  14144. }
  14145. },
  14146. back: {
  14147. height: math.unit(7 + 7 / 12, "feet"),
  14148. weight: math.unit(267, "lb"),
  14149. name: "Back",
  14150. image: {
  14151. source: "./media/characters/dayza/back.svg",
  14152. extra: 1241 / 1170
  14153. }
  14154. },
  14155. },
  14156. [
  14157. {
  14158. name: "Normal",
  14159. height: math.unit(7 + 7 / 12, "feet"),
  14160. default: true
  14161. },
  14162. {
  14163. name: "Macro",
  14164. height: math.unit(155, "feet")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6 + 5 / 12, "feet"),
  14173. weight: math.unit(160, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/xanthos/front.svg",
  14177. extra: 1,
  14178. bottom: 0.04
  14179. }
  14180. },
  14181. back: {
  14182. height: math.unit(6 + 5 / 12, "feet"),
  14183. weight: math.unit(160, "lb"),
  14184. name: "Back",
  14185. image: {
  14186. source: "./media/characters/xanthos/back.svg",
  14187. extra: 1,
  14188. bottom: 0.03
  14189. }
  14190. },
  14191. hand: {
  14192. height: math.unit(0.928, "feet"),
  14193. name: "Hand",
  14194. image: {
  14195. source: "./media/characters/xanthos/hand.svg"
  14196. }
  14197. },
  14198. foot: {
  14199. height: math.unit(1.286, "feet"),
  14200. name: "Foot",
  14201. image: {
  14202. source: "./media/characters/xanthos/foot.svg"
  14203. }
  14204. },
  14205. },
  14206. [
  14207. {
  14208. name: "Normal",
  14209. height: math.unit(6 + 5 / 12, "feet"),
  14210. default: true
  14211. },
  14212. {
  14213. name: "Normal+",
  14214. height: math.unit(6, "meters")
  14215. },
  14216. {
  14217. name: "Macro",
  14218. height: math.unit(40, "feet")
  14219. },
  14220. {
  14221. name: "Macro+",
  14222. height: math.unit(200, "meters")
  14223. },
  14224. {
  14225. name: "Megamacro",
  14226. height: math.unit(20, "km")
  14227. },
  14228. {
  14229. name: "Megamacro+",
  14230. height: math.unit(100, "km")
  14231. },
  14232. {
  14233. name: "Gigamacro",
  14234. height: math.unit(200, "megameters")
  14235. },
  14236. {
  14237. name: "Gigamacro+",
  14238. height: math.unit(1.5, "gigameters")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14244. {
  14245. front: {
  14246. height: math.unit(6 + 3 / 12, "feet"),
  14247. weight: math.unit(215, "lb"),
  14248. name: "Front",
  14249. image: {
  14250. source: "./media/characters/grynn/front.svg",
  14251. extra: 4627 / 4209,
  14252. bottom: 0.047
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Micro",
  14259. height: math.unit(6, "inches")
  14260. },
  14261. {
  14262. name: "Normal",
  14263. height: math.unit(6 + 3 / 12, "feet"),
  14264. default: true
  14265. },
  14266. {
  14267. name: "Big",
  14268. height: math.unit(104, "feet")
  14269. },
  14270. {
  14271. name: "Macro",
  14272. height: math.unit(944, "feet")
  14273. },
  14274. {
  14275. name: "Macro+",
  14276. height: math.unit(9480, "feet")
  14277. },
  14278. {
  14279. name: "Megamacro",
  14280. height: math.unit(78752, "feet")
  14281. },
  14282. {
  14283. name: "Megamacro+",
  14284. height: math.unit(630128, "feet")
  14285. },
  14286. {
  14287. name: "Megamacro++",
  14288. height: math.unit(3150695, "feet")
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(7 + 5 / 12, "feet"),
  14297. weight: math.unit(450, "lb"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/mocha-aura/front.svg",
  14301. extra: 1907 / 1817,
  14302. bottom: 0.04
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(7 + 5 / 12, "feet"),
  14307. weight: math.unit(450, "lb"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/mocha-aura/back.svg",
  14311. extra: 1900 / 1825,
  14312. bottom: 0.045
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Nano",
  14319. height: math.unit(1, "nm")
  14320. },
  14321. {
  14322. name: "Megamicro",
  14323. height: math.unit(1, "mm")
  14324. },
  14325. {
  14326. name: "Micro",
  14327. height: math.unit(3, "inches")
  14328. },
  14329. {
  14330. name: "Normal",
  14331. height: math.unit(7 + 5 / 12, "feet"),
  14332. default: true
  14333. },
  14334. {
  14335. name: "Macro",
  14336. height: math.unit(30, "feet")
  14337. },
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(3500, "feet")
  14341. },
  14342. {
  14343. name: "Teramacro",
  14344. height: math.unit(500000, "miles")
  14345. },
  14346. {
  14347. name: "Petamacro",
  14348. height: math.unit(50000000000000000, "parsecs")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/ilisha-devya/front.svg",
  14361. extra: 1053/1049,
  14362. bottom: 270/1323
  14363. }
  14364. },
  14365. back: {
  14366. height: math.unit(6, "feet"),
  14367. weight: math.unit(150, "lb"),
  14368. name: "Back",
  14369. image: {
  14370. source: "./media/characters/ilisha-devya/back.svg",
  14371. extra: 1131/1128,
  14372. bottom: 39/1170
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Macro",
  14379. height: math.unit(500, "feet"),
  14380. default: true
  14381. },
  14382. {
  14383. name: "Megamacro",
  14384. height: math.unit(10, "miles")
  14385. },
  14386. {
  14387. name: "Gigamacro",
  14388. height: math.unit(100000, "miles")
  14389. },
  14390. {
  14391. name: "Examacro",
  14392. height: math.unit(1e9, "lightyears")
  14393. },
  14394. {
  14395. name: "Omniversal",
  14396. height: math.unit(1e33, "lightyears")
  14397. },
  14398. {
  14399. name: "Beyond Infinite",
  14400. height: math.unit(1e100, "lightyears")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14406. {
  14407. Side: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(150, "lb"),
  14410. name: "Side",
  14411. image: {
  14412. source: "./media/characters/mira/side.svg",
  14413. extra: 900 / 799,
  14414. bottom: 0.02
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Human Size",
  14421. height: math.unit(6, "feet")
  14422. },
  14423. {
  14424. name: "Macro",
  14425. height: math.unit(100, "feet"),
  14426. default: true
  14427. },
  14428. {
  14429. name: "Megamacro",
  14430. height: math.unit(10, "miles")
  14431. },
  14432. {
  14433. name: "Gigamacro",
  14434. height: math.unit(25000, "miles")
  14435. },
  14436. {
  14437. name: "Teramacro",
  14438. height: math.unit(300, "AU")
  14439. },
  14440. {
  14441. name: "Full Size",
  14442. height: math.unit(4.5e10, "lightyears")
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(6, "feet"),
  14451. weight: math.unit(150, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/holly/front.svg",
  14455. extra: 639 / 606
  14456. }
  14457. },
  14458. back: {
  14459. height: math.unit(6, "feet"),
  14460. weight: math.unit(150, "lb"),
  14461. name: "Back",
  14462. image: {
  14463. source: "./media/characters/holly/back.svg",
  14464. extra: 623 / 598
  14465. }
  14466. },
  14467. frontWorking: {
  14468. height: math.unit(6, "feet"),
  14469. weight: math.unit(150, "lb"),
  14470. name: "Front (Working)",
  14471. image: {
  14472. source: "./media/characters/holly/front-working.svg",
  14473. extra: 607 / 577,
  14474. bottom: 0.048
  14475. }
  14476. },
  14477. },
  14478. [
  14479. {
  14480. name: "Normal",
  14481. height: math.unit(12 + 3 / 12, "feet"),
  14482. default: true
  14483. },
  14484. ]
  14485. ))
  14486. characterMakers.push(() => makeCharacter(
  14487. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14488. {
  14489. front: {
  14490. height: math.unit(6, "feet"),
  14491. weight: math.unit(150, "lb"),
  14492. name: "Front",
  14493. image: {
  14494. source: "./media/characters/porter/front.svg",
  14495. extra: 1,
  14496. bottom: 0.01
  14497. }
  14498. },
  14499. frontRobes: {
  14500. height: math.unit(6, "feet"),
  14501. weight: math.unit(150, "lb"),
  14502. name: "Front (Robes)",
  14503. image: {
  14504. source: "./media/characters/porter/front-robes.svg",
  14505. extra: 1.01,
  14506. bottom: 0.01
  14507. }
  14508. },
  14509. },
  14510. [
  14511. {
  14512. name: "Normal",
  14513. height: math.unit(11 + 9 / 12, "feet"),
  14514. default: true
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14520. {
  14521. legendary: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(150, "lb"),
  14524. name: "Legendary",
  14525. image: {
  14526. source: "./media/characters/lucy/legendary.svg",
  14527. extra: 1355 / 1100,
  14528. bottom: 0.045
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Legendary",
  14535. height: math.unit(86882 * 2, "miles"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(6, "feet"),
  14545. weight: math.unit(150, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/drusilla/front.svg",
  14549. extra: 678 / 635,
  14550. bottom: 0.03
  14551. }
  14552. },
  14553. back: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(150, "lb"),
  14556. name: "Back",
  14557. image: {
  14558. source: "./media/characters/drusilla/back.svg",
  14559. extra: 678 / 635,
  14560. bottom: 0.005
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Macro",
  14567. height: math.unit(100, "feet")
  14568. },
  14569. {
  14570. name: "Canon Height",
  14571. height: math.unit(2000, "feet"),
  14572. default: true
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(6, "feet"),
  14581. weight: math.unit(180, "lb"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/renard-thatch/front.svg",
  14585. extra: 2411 / 2275,
  14586. bottom: 0.01
  14587. }
  14588. },
  14589. frontPosing: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(180, "lb"),
  14592. name: "Front (Posing)",
  14593. image: {
  14594. source: "./media/characters/renard-thatch/front-posing.svg",
  14595. extra: 2381 / 2261,
  14596. bottom: 0.01
  14597. }
  14598. },
  14599. back: {
  14600. height: math.unit(6, "feet"),
  14601. weight: math.unit(180, "lb"),
  14602. name: "Back",
  14603. image: {
  14604. source: "./media/characters/renard-thatch/back.svg",
  14605. extra: 2428 / 2288
  14606. }
  14607. },
  14608. },
  14609. [
  14610. {
  14611. name: "Micro",
  14612. height: math.unit(3, "inches")
  14613. },
  14614. {
  14615. name: "Default",
  14616. height: math.unit(6, "feet"),
  14617. default: true
  14618. },
  14619. {
  14620. name: "Macro",
  14621. height: math.unit(75, "feet")
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14627. {
  14628. front: {
  14629. height: math.unit(1450, "feet"),
  14630. weight: math.unit(1.21e6, "tons"),
  14631. name: "Front",
  14632. image: {
  14633. source: "./media/characters/sekvra/front.svg",
  14634. extra: 1193/1190,
  14635. bottom: 78/1271
  14636. }
  14637. },
  14638. side: {
  14639. height: math.unit(1450, "feet"),
  14640. weight: math.unit(1.21e6, "tons"),
  14641. name: "Side",
  14642. image: {
  14643. source: "./media/characters/sekvra/side.svg",
  14644. extra: 1193/1190,
  14645. bottom: 52/1245
  14646. }
  14647. },
  14648. back: {
  14649. height: math.unit(1450, "feet"),
  14650. weight: math.unit(1.21e6, "tons"),
  14651. name: "Back",
  14652. image: {
  14653. source: "./media/characters/sekvra/back.svg",
  14654. extra: 1219/1216,
  14655. bottom: 21/1240
  14656. }
  14657. },
  14658. frontClothed: {
  14659. height: math.unit(1450, "feet"),
  14660. weight: math.unit(1.21e6, "tons"),
  14661. name: "Front (Clothed)",
  14662. image: {
  14663. source: "./media/characters/sekvra/front-clothed.svg",
  14664. extra: 1192/1189,
  14665. bottom: 79/1271
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Macro",
  14672. height: math.unit(1450, "feet"),
  14673. default: true
  14674. },
  14675. {
  14676. name: "Megamacro",
  14677. height: math.unit(15000, "feet")
  14678. },
  14679. ]
  14680. ))
  14681. characterMakers.push(() => makeCharacter(
  14682. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14683. {
  14684. front: {
  14685. height: math.unit(6, "feet"),
  14686. weight: math.unit(150, "lb"),
  14687. name: "Front",
  14688. image: {
  14689. source: "./media/characters/carmine/front.svg",
  14690. extra: 1,
  14691. bottom: 0.035
  14692. }
  14693. },
  14694. frontArmor: {
  14695. height: math.unit(6, "feet"),
  14696. weight: math.unit(150, "lb"),
  14697. name: "Front (Armor)",
  14698. image: {
  14699. source: "./media/characters/carmine/front-armor.svg",
  14700. extra: 1,
  14701. bottom: 0.035
  14702. }
  14703. },
  14704. },
  14705. [
  14706. {
  14707. name: "Large",
  14708. height: math.unit(1, "mile")
  14709. },
  14710. {
  14711. name: "Huge",
  14712. height: math.unit(40, "miles"),
  14713. default: true
  14714. },
  14715. {
  14716. name: "Colossal",
  14717. height: math.unit(2500, "miles")
  14718. },
  14719. ]
  14720. ))
  14721. characterMakers.push(() => makeCharacter(
  14722. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14723. {
  14724. front: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(150, "lb"),
  14727. name: "Front",
  14728. image: {
  14729. source: "./media/characters/elyssia/front.svg",
  14730. extra: 2201 / 2035,
  14731. bottom: 0.05
  14732. }
  14733. },
  14734. frontClothed: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(150, "lb"),
  14737. name: "Front (Clothed)",
  14738. image: {
  14739. source: "./media/characters/elyssia/front-clothed.svg",
  14740. extra: 2201 / 2035,
  14741. bottom: 0.05
  14742. }
  14743. },
  14744. back: {
  14745. height: math.unit(6, "feet"),
  14746. weight: math.unit(150, "lb"),
  14747. name: "Back",
  14748. image: {
  14749. source: "./media/characters/elyssia/back.svg",
  14750. extra: 2201 / 2035,
  14751. bottom: 0.013
  14752. }
  14753. },
  14754. },
  14755. [
  14756. {
  14757. name: "Smaller",
  14758. height: math.unit(150, "feet")
  14759. },
  14760. {
  14761. name: "Standard",
  14762. height: math.unit(1400, "feet"),
  14763. default: true
  14764. },
  14765. {
  14766. name: "Distracted",
  14767. height: math.unit(15000, "feet")
  14768. },
  14769. ]
  14770. ))
  14771. characterMakers.push(() => makeCharacter(
  14772. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14773. {
  14774. front: {
  14775. height: math.unit(7 + 4/12, "feet"),
  14776. weight: math.unit(690, "lb"),
  14777. name: "Front",
  14778. image: {
  14779. source: "./media/characters/geno-maxwell/front.svg",
  14780. extra: 984/856,
  14781. bottom: 87/1071
  14782. }
  14783. },
  14784. back: {
  14785. height: math.unit(7 + 4/12, "feet"),
  14786. weight: math.unit(690, "lb"),
  14787. name: "Back",
  14788. image: {
  14789. source: "./media/characters/geno-maxwell/back.svg",
  14790. extra: 981/854,
  14791. bottom: 57/1038
  14792. }
  14793. },
  14794. frontCostume: {
  14795. height: math.unit(7 + 4/12, "feet"),
  14796. weight: math.unit(690, "lb"),
  14797. name: "Front (Costume)",
  14798. image: {
  14799. source: "./media/characters/geno-maxwell/front-costume.svg",
  14800. extra: 984/856,
  14801. bottom: 87/1071
  14802. }
  14803. },
  14804. backcostume: {
  14805. height: math.unit(7 + 4/12, "feet"),
  14806. weight: math.unit(690, "lb"),
  14807. name: "Back (Costume)",
  14808. image: {
  14809. source: "./media/characters/geno-maxwell/back-costume.svg",
  14810. extra: 981/854,
  14811. bottom: 57/1038
  14812. }
  14813. },
  14814. },
  14815. [
  14816. {
  14817. name: "Micro",
  14818. height: math.unit(3, "inches")
  14819. },
  14820. {
  14821. name: "Normal",
  14822. height: math.unit(7 + 4 / 12, "feet"),
  14823. default: true
  14824. },
  14825. {
  14826. name: "Macro",
  14827. height: math.unit(220, "feet")
  14828. },
  14829. {
  14830. name: "Megamacro",
  14831. height: math.unit(11, "miles")
  14832. },
  14833. ]
  14834. ))
  14835. characterMakers.push(() => makeCharacter(
  14836. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14837. {
  14838. front: {
  14839. height: math.unit(7 + 4/12, "feet"),
  14840. weight: math.unit(750, "lb"),
  14841. name: "Front",
  14842. image: {
  14843. source: "./media/characters/regena-maxwell/front.svg",
  14844. extra: 984/856,
  14845. bottom: 87/1071
  14846. }
  14847. },
  14848. back: {
  14849. height: math.unit(7 + 4/12, "feet"),
  14850. weight: math.unit(750, "lb"),
  14851. name: "Back",
  14852. image: {
  14853. source: "./media/characters/regena-maxwell/back.svg",
  14854. extra: 981/854,
  14855. bottom: 57/1038
  14856. }
  14857. },
  14858. frontCostume: {
  14859. height: math.unit(7 + 4/12, "feet"),
  14860. weight: math.unit(750, "lb"),
  14861. name: "Front (Costume)",
  14862. image: {
  14863. source: "./media/characters/regena-maxwell/front-costume.svg",
  14864. extra: 984/856,
  14865. bottom: 87/1071
  14866. }
  14867. },
  14868. backcostume: {
  14869. height: math.unit(7 + 4/12, "feet"),
  14870. weight: math.unit(750, "lb"),
  14871. name: "Back (Costume)",
  14872. image: {
  14873. source: "./media/characters/regena-maxwell/back-costume.svg",
  14874. extra: 981/854,
  14875. bottom: 57/1038
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Normal",
  14882. height: math.unit(7 + 4 / 12, "feet"),
  14883. default: true
  14884. },
  14885. {
  14886. name: "Macro",
  14887. height: math.unit(220, "feet")
  14888. },
  14889. {
  14890. name: "Megamacro",
  14891. height: math.unit(11, "miles")
  14892. },
  14893. ]
  14894. ))
  14895. characterMakers.push(() => makeCharacter(
  14896. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14897. {
  14898. front: {
  14899. height: math.unit(6, "feet"),
  14900. weight: math.unit(150, "lb"),
  14901. name: "Front",
  14902. image: {
  14903. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14904. extra: 860 / 690,
  14905. bottom: 0.03
  14906. }
  14907. },
  14908. },
  14909. [
  14910. {
  14911. name: "Normal",
  14912. height: math.unit(1.7, "meters"),
  14913. default: true
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(6, "feet"),
  14922. weight: math.unit(150, "lb"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/quilly/front.svg",
  14926. extra: 890 / 776
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Gigamacro",
  14933. height: math.unit(404090, "miles"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(7 + 8 / 12, "feet"),
  14943. weight: math.unit(350, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/tempest/front.svg",
  14947. extra: 1175 / 1086,
  14948. bottom: 0.02
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(7 + 8 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14962. {
  14963. side: {
  14964. height: math.unit(4 + 5 / 12, "feet"),
  14965. weight: math.unit(80, "lb"),
  14966. name: "Side",
  14967. image: {
  14968. source: "./media/characters/rodger/side.svg",
  14969. extra: 1235 / 1118
  14970. }
  14971. },
  14972. },
  14973. [
  14974. {
  14975. name: "Micro",
  14976. height: math.unit(1, "inch")
  14977. },
  14978. {
  14979. name: "Normal",
  14980. height: math.unit(4 + 5 / 12, "feet"),
  14981. default: true
  14982. },
  14983. {
  14984. name: "Macro",
  14985. height: math.unit(120, "feet")
  14986. },
  14987. ]
  14988. ))
  14989. characterMakers.push(() => makeCharacter(
  14990. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14991. {
  14992. front: {
  14993. height: math.unit(6, "feet"),
  14994. weight: math.unit(150, "lb"),
  14995. name: "Front",
  14996. image: {
  14997. source: "./media/characters/danyel/front.svg",
  14998. extra: 1185 / 1123,
  14999. bottom: 0.05
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Shrunken",
  15006. height: math.unit(0.5, "mm")
  15007. },
  15008. {
  15009. name: "Micro",
  15010. height: math.unit(1, "mm"),
  15011. default: true
  15012. },
  15013. {
  15014. name: "Upsized",
  15015. height: math.unit(5 + 5 / 12, "feet")
  15016. },
  15017. ]
  15018. ))
  15019. characterMakers.push(() => makeCharacter(
  15020. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15021. {
  15022. front: {
  15023. height: math.unit(5 + 6 / 12, "feet"),
  15024. weight: math.unit(200, "lb"),
  15025. name: "Front",
  15026. image: {
  15027. source: "./media/characters/vivian-bijoux/front.svg",
  15028. extra: 1217/1209,
  15029. bottom: 76/1293
  15030. }
  15031. },
  15032. back: {
  15033. height: math.unit(5 + 6 / 12, "feet"),
  15034. weight: math.unit(200, "lb"),
  15035. name: "Back",
  15036. image: {
  15037. source: "./media/characters/vivian-bijoux/back.svg",
  15038. extra: 1214/1208,
  15039. bottom: 51/1265
  15040. }
  15041. },
  15042. dressed: {
  15043. height: math.unit(5 + 6 / 12, "feet"),
  15044. weight: math.unit(200, "lb"),
  15045. name: "Dressed",
  15046. image: {
  15047. source: "./media/characters/vivian-bijoux/dressed.svg",
  15048. extra: 1217/1209,
  15049. bottom: 76/1293
  15050. }
  15051. },
  15052. },
  15053. [
  15054. {
  15055. name: "Normal",
  15056. height: math.unit(5 + 6 / 12, "feet"),
  15057. default: true
  15058. },
  15059. {
  15060. name: "Bad Dream",
  15061. height: math.unit(500, "feet")
  15062. },
  15063. {
  15064. name: "Nightmare",
  15065. height: math.unit(500, "miles")
  15066. },
  15067. ]
  15068. ))
  15069. characterMakers.push(() => makeCharacter(
  15070. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15071. {
  15072. front: {
  15073. height: math.unit(6 + 1 / 12, "feet"),
  15074. weight: math.unit(260, "lb"),
  15075. name: "Front",
  15076. image: {
  15077. source: "./media/characters/zeta/front.svg",
  15078. extra: 1968 / 1889,
  15079. bottom: 0.06
  15080. }
  15081. },
  15082. back: {
  15083. height: math.unit(6 + 1 / 12, "feet"),
  15084. weight: math.unit(260, "lb"),
  15085. name: "Back",
  15086. image: {
  15087. source: "./media/characters/zeta/back.svg",
  15088. extra: 1944 / 1858,
  15089. bottom: 0.03
  15090. }
  15091. },
  15092. hand: {
  15093. height: math.unit(1.112, "feet"),
  15094. name: "Hand",
  15095. image: {
  15096. source: "./media/characters/zeta/hand.svg"
  15097. }
  15098. },
  15099. foot: {
  15100. height: math.unit(1.48, "feet"),
  15101. name: "Foot",
  15102. image: {
  15103. source: "./media/characters/zeta/foot.svg"
  15104. }
  15105. },
  15106. },
  15107. [
  15108. {
  15109. name: "Micro",
  15110. height: math.unit(6, "inches")
  15111. },
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(6 + 1 / 12, "feet"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(20, "feet")
  15120. },
  15121. ]
  15122. ))
  15123. characterMakers.push(() => makeCharacter(
  15124. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15125. {
  15126. front: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(150, "lb"),
  15129. name: "Front",
  15130. image: {
  15131. source: "./media/characters/jamie-larsen/front.svg",
  15132. extra: 962 / 933,
  15133. bottom: 0.02
  15134. }
  15135. },
  15136. back: {
  15137. height: math.unit(6, "feet"),
  15138. weight: math.unit(150, "lb"),
  15139. name: "Back",
  15140. image: {
  15141. source: "./media/characters/jamie-larsen/back.svg",
  15142. extra: 997 / 946
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Macro",
  15149. height: math.unit(28 + 7 / 12, "feet"),
  15150. default: true
  15151. },
  15152. {
  15153. name: "Macro+",
  15154. height: math.unit(180, "feet")
  15155. },
  15156. {
  15157. name: "Megamacro",
  15158. height: math.unit(10, "miles")
  15159. },
  15160. {
  15161. name: "Gigamacro",
  15162. height: math.unit(200000, "miles")
  15163. },
  15164. ]
  15165. ))
  15166. characterMakers.push(() => makeCharacter(
  15167. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15168. {
  15169. front: {
  15170. height: math.unit(6, "feet"),
  15171. weight: math.unit(120, "lb"),
  15172. name: "Front",
  15173. image: {
  15174. source: "./media/characters/vance/front.svg",
  15175. extra: 1980 / 1890,
  15176. bottom: 0.09
  15177. }
  15178. },
  15179. back: {
  15180. height: math.unit(6, "feet"),
  15181. weight: math.unit(120, "lb"),
  15182. name: "Back",
  15183. image: {
  15184. source: "./media/characters/vance/back.svg",
  15185. extra: 2081 / 1994,
  15186. bottom: 0.014
  15187. }
  15188. },
  15189. hand: {
  15190. height: math.unit(0.88, "feet"),
  15191. name: "Hand",
  15192. image: {
  15193. source: "./media/characters/vance/hand.svg"
  15194. }
  15195. },
  15196. foot: {
  15197. height: math.unit(0.64, "feet"),
  15198. name: "Foot",
  15199. image: {
  15200. source: "./media/characters/vance/foot.svg"
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Small",
  15207. height: math.unit(90, "feet"),
  15208. default: true
  15209. },
  15210. {
  15211. name: "Macro",
  15212. height: math.unit(100, "meters")
  15213. },
  15214. {
  15215. name: "Megamacro",
  15216. height: math.unit(15, "miles")
  15217. },
  15218. ]
  15219. ))
  15220. characterMakers.push(() => makeCharacter(
  15221. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15222. {
  15223. front: {
  15224. height: math.unit(6, "feet"),
  15225. weight: math.unit(180, "lb"),
  15226. name: "Front",
  15227. image: {
  15228. source: "./media/characters/xochitl/front.svg",
  15229. extra: 2297 / 2261,
  15230. bottom: 0.065
  15231. }
  15232. },
  15233. back: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(180, "lb"),
  15236. name: "Back",
  15237. image: {
  15238. source: "./media/characters/xochitl/back.svg",
  15239. extra: 2386 / 2354,
  15240. bottom: 0.01
  15241. }
  15242. },
  15243. foot: {
  15244. height: math.unit(6 / 5 * 1.15, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Foot",
  15247. image: {
  15248. source: "./media/characters/xochitl/foot.svg"
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Macro",
  15255. height: math.unit(80, "feet")
  15256. },
  15257. {
  15258. name: "Macro+",
  15259. height: math.unit(400, "feet"),
  15260. default: true
  15261. },
  15262. {
  15263. name: "Gigamacro",
  15264. height: math.unit(80000, "miles")
  15265. },
  15266. {
  15267. name: "Gigamacro+",
  15268. height: math.unit(400000, "miles")
  15269. },
  15270. {
  15271. name: "Teramacro",
  15272. height: math.unit(300, "AU")
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(6, "feet"),
  15281. weight: math.unit(150, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/vincent/front.svg",
  15285. extra: 1130 / 1080,
  15286. bottom: 0.055
  15287. }
  15288. },
  15289. beak: {
  15290. height: math.unit(6 * 0.1, "feet"),
  15291. name: "Beak",
  15292. image: {
  15293. source: "./media/characters/vincent/beak.svg"
  15294. }
  15295. },
  15296. hand: {
  15297. height: math.unit(6 * 0.85, "feet"),
  15298. weight: math.unit(150, "lb"),
  15299. name: "Hand",
  15300. image: {
  15301. source: "./media/characters/vincent/hand.svg"
  15302. }
  15303. },
  15304. foot: {
  15305. height: math.unit(6 * 0.19, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Foot",
  15308. image: {
  15309. source: "./media/characters/vincent/foot.svg"
  15310. }
  15311. },
  15312. },
  15313. [
  15314. {
  15315. name: "Base",
  15316. height: math.unit(6 + 5 / 12, "feet"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Macro",
  15321. height: math.unit(300, "feet")
  15322. },
  15323. {
  15324. name: "Megamacro",
  15325. height: math.unit(2, "miles")
  15326. },
  15327. {
  15328. name: "Gigamacro",
  15329. height: math.unit(1000, "miles")
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15335. {
  15336. front: {
  15337. height: math.unit(2, "meters"),
  15338. weight: math.unit(500, "kg"),
  15339. name: "Front",
  15340. image: {
  15341. source: "./media/characters/coatl/front.svg",
  15342. extra: 3948 / 3500,
  15343. bottom: 0.082
  15344. }
  15345. },
  15346. },
  15347. [
  15348. {
  15349. name: "Normal",
  15350. height: math.unit(4, "meters")
  15351. },
  15352. {
  15353. name: "Macro",
  15354. height: math.unit(100, "meters"),
  15355. default: true
  15356. },
  15357. {
  15358. name: "Macro+",
  15359. height: math.unit(300, "meters")
  15360. },
  15361. {
  15362. name: "Megamacro",
  15363. height: math.unit(3, "gigameters")
  15364. },
  15365. {
  15366. name: "Megamacro+",
  15367. height: math.unit(300, "terameters")
  15368. },
  15369. {
  15370. name: "Megamacro++",
  15371. height: math.unit(3, "lightyears")
  15372. },
  15373. ]
  15374. ))
  15375. characterMakers.push(() => makeCharacter(
  15376. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15377. {
  15378. front: {
  15379. height: math.unit(6, "feet"),
  15380. weight: math.unit(50, "kg"),
  15381. name: "front",
  15382. image: {
  15383. source: "./media/characters/shiroryu/front.svg",
  15384. extra: 1990 / 1935
  15385. }
  15386. },
  15387. },
  15388. [
  15389. {
  15390. name: "Mortal Mingling",
  15391. height: math.unit(3, "meters")
  15392. },
  15393. {
  15394. name: "Kaiju-ish",
  15395. height: math.unit(250, "meters")
  15396. },
  15397. {
  15398. name: "Somewhat Godly",
  15399. height: math.unit(400, "km"),
  15400. default: true
  15401. },
  15402. {
  15403. name: "Planetary",
  15404. height: math.unit(300, "megameters")
  15405. },
  15406. {
  15407. name: "Galaxy-dwarfing",
  15408. height: math.unit(450, "kiloparsecs")
  15409. },
  15410. {
  15411. name: "Universe Eater",
  15412. height: math.unit(150, "gigaparsecs")
  15413. },
  15414. {
  15415. name: "Almost Immeasurable",
  15416. height: math.unit(1.3e266, "yottaparsecs")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/umeko/front.svg",
  15429. extra: 1,
  15430. bottom: 0.019
  15431. }
  15432. },
  15433. frontArmored: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(150, "lb"),
  15436. name: "Front (Armored)",
  15437. image: {
  15438. source: "./media/characters/umeko/front-armored.svg",
  15439. extra: 1,
  15440. bottom: 0.021
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Macro",
  15447. height: math.unit(220, "feet"),
  15448. default: true
  15449. },
  15450. {
  15451. name: "Guardian Dragon",
  15452. height: math.unit(50, "miles")
  15453. },
  15454. {
  15455. name: "Cosmic",
  15456. height: math.unit(800000, "miles")
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(6, "feet"),
  15465. weight: math.unit(150, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/cassidy/front.svg",
  15469. extra: 810/808,
  15470. bottom: 41/851
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Canon Height",
  15477. height: math.unit(120, "feet"),
  15478. default: true
  15479. },
  15480. {
  15481. name: "Macro+",
  15482. height: math.unit(400, "feet")
  15483. },
  15484. {
  15485. name: "Macro++",
  15486. height: math.unit(4000, "feet")
  15487. },
  15488. {
  15489. name: "Megamacro",
  15490. height: math.unit(3, "miles")
  15491. },
  15492. ]
  15493. ))
  15494. characterMakers.push(() => makeCharacter(
  15495. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15496. {
  15497. front: {
  15498. height: math.unit(6, "feet"),
  15499. weight: math.unit(150, "lb"),
  15500. name: "Front",
  15501. image: {
  15502. source: "./media/characters/isaac/front.svg",
  15503. extra: 896 / 815,
  15504. bottom: 0.11
  15505. }
  15506. },
  15507. },
  15508. [
  15509. {
  15510. name: "Human Size",
  15511. height: math.unit(8, "feet"),
  15512. default: true
  15513. },
  15514. {
  15515. name: "Macro",
  15516. height: math.unit(400, "feet")
  15517. },
  15518. {
  15519. name: "Megamacro",
  15520. height: math.unit(50, "miles")
  15521. },
  15522. {
  15523. name: "Canon Height",
  15524. height: math.unit(200, "AU")
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(72, "kg"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/sleekit/front.svg",
  15537. extra: 4693 / 4487,
  15538. bottom: 0.012
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Minimum Height",
  15545. height: math.unit(10, "meters")
  15546. },
  15547. {
  15548. name: "Smaller",
  15549. height: math.unit(25, "meters")
  15550. },
  15551. {
  15552. name: "Larger",
  15553. height: math.unit(38, "meters"),
  15554. default: true
  15555. },
  15556. {
  15557. name: "Maximum height",
  15558. height: math.unit(100, "meters")
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(6, "feet"),
  15567. weight: math.unit(150, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/nillia/front.svg",
  15571. extra: 2195 / 2037,
  15572. bottom: 0.005
  15573. }
  15574. },
  15575. back: {
  15576. height: math.unit(6, "feet"),
  15577. weight: math.unit(150, "lb"),
  15578. name: "Back",
  15579. image: {
  15580. source: "./media/characters/nillia/back.svg",
  15581. extra: 2195 / 2037,
  15582. bottom: 0.005
  15583. }
  15584. },
  15585. },
  15586. [
  15587. {
  15588. name: "Canon Height",
  15589. height: math.unit(489, "feet"),
  15590. default: true
  15591. }
  15592. ]
  15593. ))
  15594. characterMakers.push(() => makeCharacter(
  15595. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15596. {
  15597. front: {
  15598. height: math.unit(6, "feet"),
  15599. weight: math.unit(150, "lb"),
  15600. name: "Front",
  15601. image: {
  15602. source: "./media/characters/mesmyriza/front.svg",
  15603. extra: 2067 / 1784,
  15604. bottom: 0.035
  15605. }
  15606. },
  15607. foot: {
  15608. height: math.unit(6 / (250 / 35), "feet"),
  15609. name: "Foot",
  15610. image: {
  15611. source: "./media/characters/mesmyriza/foot.svg"
  15612. }
  15613. },
  15614. },
  15615. [
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(457, "meters"),
  15619. default: true
  15620. },
  15621. {
  15622. name: "Megamacro",
  15623. height: math.unit(8, "megameters")
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15629. {
  15630. front: {
  15631. height: math.unit(6, "feet"),
  15632. weight: math.unit(250, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/saudade/front.svg",
  15636. extra: 1172 / 1139,
  15637. bottom: 0.035
  15638. }
  15639. },
  15640. },
  15641. [
  15642. {
  15643. name: "Micro",
  15644. height: math.unit(3, "inches")
  15645. },
  15646. {
  15647. name: "Normal",
  15648. height: math.unit(6, "feet"),
  15649. default: true
  15650. },
  15651. {
  15652. name: "Macro",
  15653. height: math.unit(50, "feet")
  15654. },
  15655. {
  15656. name: "Megamacro",
  15657. height: math.unit(2800, "feet")
  15658. },
  15659. ]
  15660. ))
  15661. characterMakers.push(() => makeCharacter(
  15662. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15663. {
  15664. front: {
  15665. height: math.unit(5 + 4 / 12, "feet"),
  15666. weight: math.unit(100, "lb"),
  15667. name: "Front",
  15668. image: {
  15669. source: "./media/characters/keireer/front.svg",
  15670. extra: 716 / 666,
  15671. bottom: 0.05
  15672. }
  15673. },
  15674. },
  15675. [
  15676. {
  15677. name: "Normal",
  15678. height: math.unit(5 + 4 / 12, "feet"),
  15679. default: true
  15680. },
  15681. ]
  15682. ))
  15683. characterMakers.push(() => makeCharacter(
  15684. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15685. {
  15686. front: {
  15687. height: math.unit(5.5, "feet"),
  15688. weight: math.unit(90, "kg"),
  15689. name: "Front",
  15690. image: {
  15691. source: "./media/characters/mirja/front.svg",
  15692. extra: 1452/1262,
  15693. bottom: 67/1519
  15694. }
  15695. },
  15696. frontDressed: {
  15697. height: math.unit(5.5, "feet"),
  15698. weight: math.unit(90, "lb"),
  15699. name: "Front (Dressed)",
  15700. image: {
  15701. source: "./media/characters/mirja/dressed.svg",
  15702. extra: 1452/1262,
  15703. bottom: 67/1519
  15704. }
  15705. },
  15706. back: {
  15707. height: math.unit(6, "feet"),
  15708. weight: math.unit(90, "lb"),
  15709. name: "Back",
  15710. image: {
  15711. source: "./media/characters/mirja/back.svg",
  15712. extra: 1892/1795,
  15713. bottom: 48/1940
  15714. }
  15715. },
  15716. maw: {
  15717. height: math.unit(1.312, "feet"),
  15718. name: "Maw",
  15719. image: {
  15720. source: "./media/characters/mirja/maw.svg"
  15721. }
  15722. },
  15723. paw: {
  15724. height: math.unit(1.15, "feet"),
  15725. name: "Paw",
  15726. image: {
  15727. source: "./media/characters/mirja/paw.svg"
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "\"Incognito\"",
  15734. height: math.unit(3, "meters")
  15735. },
  15736. {
  15737. name: "Strolling Size",
  15738. height: math.unit(15, "km")
  15739. },
  15740. {
  15741. name: "Larger Strolling Size",
  15742. height: math.unit(400, "km")
  15743. },
  15744. {
  15745. name: "Preferred Size",
  15746. height: math.unit(5000, "km"),
  15747. default: true
  15748. },
  15749. {
  15750. name: "True Size",
  15751. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15757. {
  15758. front: {
  15759. height: math.unit(15, "feet"),
  15760. weight: math.unit(880, "kg"),
  15761. name: "Front",
  15762. image: {
  15763. source: "./media/characters/nightraver/front.svg",
  15764. extra: 2444 / 2160,
  15765. bottom: 0.027
  15766. }
  15767. },
  15768. back: {
  15769. height: math.unit(15, "feet"),
  15770. weight: math.unit(880, "kg"),
  15771. name: "Back",
  15772. image: {
  15773. source: "./media/characters/nightraver/back.svg",
  15774. extra: 2309 / 2180,
  15775. bottom: 0.005
  15776. }
  15777. },
  15778. sole: {
  15779. height: math.unit(2.878, "feet"),
  15780. name: "Sole",
  15781. image: {
  15782. source: "./media/characters/nightraver/sole.svg"
  15783. }
  15784. },
  15785. foot: {
  15786. height: math.unit(2.285, "feet"),
  15787. name: "Foot",
  15788. image: {
  15789. source: "./media/characters/nightraver/foot.svg"
  15790. }
  15791. },
  15792. maw: {
  15793. height: math.unit(2.67, "feet"),
  15794. name: "Maw",
  15795. image: {
  15796. source: "./media/characters/nightraver/maw.svg"
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Micro",
  15803. height: math.unit(1, "cm")
  15804. },
  15805. {
  15806. name: "Normal",
  15807. height: math.unit(15, "feet"),
  15808. default: true
  15809. },
  15810. {
  15811. name: "Macro",
  15812. height: math.unit(300, "feet")
  15813. },
  15814. {
  15815. name: "Megamacro",
  15816. height: math.unit(300, "miles")
  15817. },
  15818. {
  15819. name: "Gigamacro",
  15820. height: math.unit(10000, "miles")
  15821. },
  15822. ]
  15823. ))
  15824. characterMakers.push(() => makeCharacter(
  15825. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15826. {
  15827. side: {
  15828. height: math.unit(2, "inches"),
  15829. weight: math.unit(5, "grams"),
  15830. name: "Side",
  15831. image: {
  15832. source: "./media/characters/arc/side.svg"
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Micro",
  15839. height: math.unit(2, "inches"),
  15840. default: true
  15841. },
  15842. ]
  15843. ))
  15844. characterMakers.push(() => makeCharacter(
  15845. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15846. {
  15847. front: {
  15848. height: math.unit(1.1938, "meters"),
  15849. weight: math.unit(54, "kg"),
  15850. name: "Front",
  15851. image: {
  15852. source: "./media/characters/nebula-shahar/front.svg",
  15853. extra: 1642 / 1436,
  15854. bottom: 0.06
  15855. }
  15856. },
  15857. },
  15858. [
  15859. {
  15860. name: "Megamicro",
  15861. height: math.unit(0.3, "mm")
  15862. },
  15863. {
  15864. name: "Micro",
  15865. height: math.unit(3, "cm")
  15866. },
  15867. {
  15868. name: "Normal",
  15869. height: math.unit(138, "cm"),
  15870. default: true
  15871. },
  15872. {
  15873. name: "Macro",
  15874. height: math.unit(30, "m")
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(5.24, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/shayla/front.svg",
  15887. extra: 1512 / 1414,
  15888. bottom: 0.01
  15889. }
  15890. },
  15891. back: {
  15892. height: math.unit(5.24, "feet"),
  15893. weight: math.unit(150, "lb"),
  15894. name: "Back",
  15895. image: {
  15896. source: "./media/characters/shayla/back.svg",
  15897. extra: 1512 / 1414
  15898. }
  15899. },
  15900. hand: {
  15901. height: math.unit(0.7781496062992126, "feet"),
  15902. name: "Hand",
  15903. image: {
  15904. source: "./media/characters/shayla/hand.svg"
  15905. }
  15906. },
  15907. foot: {
  15908. height: math.unit(1.4206036745406823, "feet"),
  15909. name: "Foot",
  15910. image: {
  15911. source: "./media/characters/shayla/foot.svg"
  15912. }
  15913. },
  15914. },
  15915. [
  15916. {
  15917. name: "Micro",
  15918. height: math.unit(0.32, "feet")
  15919. },
  15920. {
  15921. name: "Normal",
  15922. height: math.unit(5.24, "feet"),
  15923. default: true
  15924. },
  15925. {
  15926. name: "Macro",
  15927. height: math.unit(492.12, "feet")
  15928. },
  15929. {
  15930. name: "Megamacro",
  15931. height: math.unit(186.41, "miles")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(2.2, "m"),
  15940. weight: math.unit(120, "kg"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/pia-jr/front.svg",
  15944. extra: 1000 / 970,
  15945. bottom: 0.035
  15946. }
  15947. },
  15948. hand: {
  15949. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15950. name: "Hand",
  15951. image: {
  15952. source: "./media/characters/pia-jr/hand.svg"
  15953. }
  15954. },
  15955. paw: {
  15956. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15957. name: "Paw",
  15958. image: {
  15959. source: "./media/characters/pia-jr/paw.svg"
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Micro",
  15966. height: math.unit(1.2, "cm")
  15967. },
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(2.2, "m"),
  15971. default: true
  15972. },
  15973. {
  15974. name: "Macro",
  15975. height: math.unit(180, "m")
  15976. },
  15977. {
  15978. name: "Megamacro",
  15979. height: math.unit(420, "km")
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(2, "m"),
  15988. weight: math.unit(115, "kg"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/pia-sr/front.svg",
  15992. extra: 760 / 730,
  15993. bottom: 0.015
  15994. }
  15995. },
  15996. back: {
  15997. height: math.unit(2, "m"),
  15998. weight: math.unit(115, "kg"),
  15999. name: "Back",
  16000. image: {
  16001. source: "./media/characters/pia-sr/back.svg",
  16002. extra: 760 / 730,
  16003. bottom: 0.01
  16004. }
  16005. },
  16006. hand: {
  16007. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16008. name: "Hand",
  16009. image: {
  16010. source: "./media/characters/pia-sr/hand.svg"
  16011. }
  16012. },
  16013. foot: {
  16014. height: math.unit(1.83, "feet"),
  16015. name: "Foot",
  16016. image: {
  16017. source: "./media/characters/pia-sr/foot.svg"
  16018. }
  16019. },
  16020. },
  16021. [
  16022. {
  16023. name: "Micro",
  16024. height: math.unit(88, "mm")
  16025. },
  16026. {
  16027. name: "Normal",
  16028. height: math.unit(2, "m"),
  16029. default: true
  16030. },
  16031. {
  16032. name: "Macro",
  16033. height: math.unit(200, "m")
  16034. },
  16035. {
  16036. name: "Megamacro",
  16037. height: math.unit(420, "km")
  16038. },
  16039. ]
  16040. ))
  16041. characterMakers.push(() => makeCharacter(
  16042. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16043. {
  16044. front: {
  16045. height: math.unit(8 + 2 / 12, "feet"),
  16046. weight: math.unit(300, "lb"),
  16047. name: "Front",
  16048. image: {
  16049. source: "./media/characters/kibibyte/front.svg",
  16050. extra: 2221 / 2098,
  16051. bottom: 0.04
  16052. }
  16053. },
  16054. },
  16055. [
  16056. {
  16057. name: "Normal",
  16058. height: math.unit(8 + 2 / 12, "feet"),
  16059. default: true
  16060. },
  16061. {
  16062. name: "Socialable Macro",
  16063. height: math.unit(50, "feet")
  16064. },
  16065. {
  16066. name: "Macro",
  16067. height: math.unit(300, "feet")
  16068. },
  16069. {
  16070. name: "Megamacro",
  16071. height: math.unit(500, "miles")
  16072. },
  16073. ]
  16074. ))
  16075. characterMakers.push(() => makeCharacter(
  16076. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16077. {
  16078. front: {
  16079. height: math.unit(6, "feet"),
  16080. weight: math.unit(150, "lb"),
  16081. name: "Front",
  16082. image: {
  16083. source: "./media/characters/felix/front.svg",
  16084. extra: 762 / 722,
  16085. bottom: 0.02
  16086. }
  16087. },
  16088. frontClothed: {
  16089. height: math.unit(6, "feet"),
  16090. weight: math.unit(150, "lb"),
  16091. name: "Front (Clothed)",
  16092. image: {
  16093. source: "./media/characters/felix/front-clothed.svg",
  16094. extra: 762 / 722,
  16095. bottom: 0.02
  16096. }
  16097. },
  16098. },
  16099. [
  16100. {
  16101. name: "Normal",
  16102. height: math.unit(6 + 8 / 12, "feet"),
  16103. default: true
  16104. },
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(2600, "feet")
  16108. },
  16109. {
  16110. name: "Megamacro",
  16111. height: math.unit(450, "miles")
  16112. },
  16113. ]
  16114. ))
  16115. characterMakers.push(() => makeCharacter(
  16116. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16117. {
  16118. front: {
  16119. height: math.unit(6 + 1 / 12, "feet"),
  16120. weight: math.unit(250, "lb"),
  16121. name: "Front",
  16122. image: {
  16123. source: "./media/characters/tobo/front.svg",
  16124. extra: 608 / 586,
  16125. bottom: 0.023
  16126. }
  16127. },
  16128. back: {
  16129. height: math.unit(6 + 1 / 12, "feet"),
  16130. weight: math.unit(250, "lb"),
  16131. name: "Back",
  16132. image: {
  16133. source: "./media/characters/tobo/back.svg",
  16134. extra: 608 / 586
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Nano",
  16141. height: math.unit(2, "nm")
  16142. },
  16143. {
  16144. name: "Megamicro",
  16145. height: math.unit(0.1, "mm")
  16146. },
  16147. {
  16148. name: "Micro",
  16149. height: math.unit(1, "inch"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Human-sized",
  16154. height: math.unit(6 + 1 / 12, "feet")
  16155. },
  16156. {
  16157. name: "Macro",
  16158. height: math.unit(250, "feet")
  16159. },
  16160. {
  16161. name: "Megamacro",
  16162. height: math.unit(75, "miles")
  16163. },
  16164. {
  16165. name: "Texas-sized",
  16166. height: math.unit(750, "miles")
  16167. },
  16168. {
  16169. name: "Teramacro",
  16170. height: math.unit(50000, "miles")
  16171. },
  16172. ]
  16173. ))
  16174. characterMakers.push(() => makeCharacter(
  16175. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16176. {
  16177. front: {
  16178. height: math.unit(6, "feet"),
  16179. weight: math.unit(269, "lb"),
  16180. name: "Front",
  16181. image: {
  16182. source: "./media/characters/danny-kapowsky/front.svg",
  16183. extra: 766 / 736,
  16184. bottom: 0.044
  16185. }
  16186. },
  16187. back: {
  16188. height: math.unit(6, "feet"),
  16189. weight: math.unit(269, "lb"),
  16190. name: "Back",
  16191. image: {
  16192. source: "./media/characters/danny-kapowsky/back.svg",
  16193. extra: 797 / 760,
  16194. bottom: 0.025
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Macro",
  16201. height: math.unit(150, "feet"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Macro+",
  16206. height: math.unit(200, "feet")
  16207. },
  16208. {
  16209. name: "Macro++",
  16210. height: math.unit(300, "feet")
  16211. },
  16212. {
  16213. name: "Macro+++",
  16214. height: math.unit(400, "feet")
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16220. {
  16221. side: {
  16222. height: math.unit(6, "feet"),
  16223. weight: math.unit(170, "lb"),
  16224. name: "Side",
  16225. image: {
  16226. source: "./media/characters/finn/side.svg",
  16227. extra: 1953 / 1807,
  16228. bottom: 0.057
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Megamacro",
  16235. height: math.unit(14445, "feet"),
  16236. default: true
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(5 + 6 / 12, "feet"),
  16245. weight: math.unit(125, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/roy/front.svg",
  16249. extra: 1,
  16250. bottom: 0.11
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Micro",
  16257. height: math.unit(3, "inches"),
  16258. default: true
  16259. },
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(5 + 6 / 12, "feet")
  16263. },
  16264. {
  16265. name: "Lesser Macro",
  16266. height: math.unit(60, "feet")
  16267. },
  16268. {
  16269. name: "Greater Macro",
  16270. height: math.unit(120, "feet")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(6, "feet"),
  16279. weight: math.unit(100, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/aevsivs/front.svg",
  16283. extra: 1,
  16284. bottom: 0.03
  16285. }
  16286. },
  16287. back: {
  16288. height: math.unit(6, "feet"),
  16289. weight: math.unit(100, "lb"),
  16290. name: "Back",
  16291. image: {
  16292. source: "./media/characters/aevsivs/back.svg"
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Micro",
  16299. height: math.unit(2, "inches"),
  16300. default: true
  16301. },
  16302. {
  16303. name: "Normal",
  16304. height: math.unit(5, "feet")
  16305. },
  16306. ]
  16307. ))
  16308. characterMakers.push(() => makeCharacter(
  16309. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16310. {
  16311. front: {
  16312. height: math.unit(5 + 7 / 12, "feet"),
  16313. weight: math.unit(159, "lb"),
  16314. name: "Front",
  16315. image: {
  16316. source: "./media/characters/hildegard/front.svg",
  16317. extra: 289 / 269,
  16318. bottom: 7.63 / 297.8
  16319. }
  16320. },
  16321. back: {
  16322. height: math.unit(5 + 7 / 12, "feet"),
  16323. weight: math.unit(159, "lb"),
  16324. name: "Back",
  16325. image: {
  16326. source: "./media/characters/hildegard/back.svg",
  16327. extra: 280 / 260,
  16328. bottom: 2.3 / 282
  16329. }
  16330. },
  16331. },
  16332. [
  16333. {
  16334. name: "Normal",
  16335. height: math.unit(5 + 7 / 12, "feet"),
  16336. default: true
  16337. },
  16338. ]
  16339. ))
  16340. characterMakers.push(() => makeCharacter(
  16341. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16342. {
  16343. bernard: {
  16344. height: math.unit(2 + 7 / 12, "feet"),
  16345. weight: math.unit(66, "lb"),
  16346. name: "Bernard",
  16347. rename: true,
  16348. image: {
  16349. source: "./media/characters/bernard-wilder/bernard.svg",
  16350. extra: 192 / 128,
  16351. bottom: 0.05
  16352. }
  16353. },
  16354. wilder: {
  16355. height: math.unit(5 + 8 / 12, "feet"),
  16356. weight: math.unit(143, "lb"),
  16357. name: "Wilder",
  16358. rename: true,
  16359. image: {
  16360. source: "./media/characters/bernard-wilder/wilder.svg",
  16361. extra: 361 / 312,
  16362. bottom: 0.02
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Normal",
  16369. height: math.unit(2 + 7 / 12, "feet"),
  16370. default: true
  16371. },
  16372. ]
  16373. ))
  16374. characterMakers.push(() => makeCharacter(
  16375. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16376. {
  16377. anthro: {
  16378. height: math.unit(6 + 1 / 12, "feet"),
  16379. weight: math.unit(155, "lb"),
  16380. name: "Anthro",
  16381. image: {
  16382. source: "./media/characters/hearth/anthro.svg",
  16383. extra: 1178/1136,
  16384. bottom: 28/1206
  16385. }
  16386. },
  16387. feral: {
  16388. height: math.unit(3.78, "feet"),
  16389. weight: math.unit(35, "kg"),
  16390. name: "Feral",
  16391. image: {
  16392. source: "./media/characters/hearth/feral.svg",
  16393. extra: 153 / 135,
  16394. bottom: 0.03
  16395. }
  16396. },
  16397. },
  16398. [
  16399. {
  16400. name: "Normal",
  16401. height: math.unit(6 + 1 / 12, "feet"),
  16402. default: true
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(6, "feet"),
  16411. weight: math.unit(182, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/ingrid/front.svg",
  16415. extra: 294 / 268,
  16416. bottom: 0.027
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Normal",
  16423. height: math.unit(6, "feet"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16430. {
  16431. eevee: {
  16432. height: math.unit(2 + 10 / 12, "feet"),
  16433. weight: math.unit(86, "lb"),
  16434. name: "Malgam",
  16435. image: {
  16436. source: "./media/characters/malgam/eevee.svg",
  16437. extra: 952/784,
  16438. bottom: 38/990
  16439. }
  16440. },
  16441. sylveon: {
  16442. height: math.unit(4, "feet"),
  16443. weight: math.unit(101, "lb"),
  16444. name: "Future Malgam",
  16445. rename: true,
  16446. image: {
  16447. source: "./media/characters/malgam/sylveon.svg",
  16448. extra: 371 / 325,
  16449. bottom: 0.015
  16450. }
  16451. },
  16452. gigantamax: {
  16453. height: math.unit(50, "feet"),
  16454. name: "Gigantamax Malgam",
  16455. rename: true,
  16456. image: {
  16457. source: "./media/characters/malgam/gigantamax.svg"
  16458. }
  16459. },
  16460. },
  16461. [
  16462. {
  16463. name: "Normal",
  16464. height: math.unit(2 + 10 / 12, "feet"),
  16465. default: true
  16466. },
  16467. ]
  16468. ))
  16469. characterMakers.push(() => makeCharacter(
  16470. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16471. {
  16472. front: {
  16473. height: math.unit(5 + 11 / 12, "feet"),
  16474. weight: math.unit(188, "lb"),
  16475. name: "Front",
  16476. image: {
  16477. source: "./media/characters/fleur/front.svg",
  16478. extra: 309 / 283,
  16479. bottom: 0.007
  16480. }
  16481. },
  16482. },
  16483. [
  16484. {
  16485. name: "Normal",
  16486. height: math.unit(5 + 11 / 12, "feet"),
  16487. default: true
  16488. },
  16489. ]
  16490. ))
  16491. characterMakers.push(() => makeCharacter(
  16492. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16493. {
  16494. front: {
  16495. height: math.unit(5 + 4 / 12, "feet"),
  16496. weight: math.unit(122, "lb"),
  16497. name: "Front",
  16498. image: {
  16499. source: "./media/characters/jude/front.svg",
  16500. extra: 288 / 273,
  16501. bottom: 0.03
  16502. }
  16503. },
  16504. },
  16505. [
  16506. {
  16507. name: "Normal",
  16508. height: math.unit(5 + 4 / 12, "feet"),
  16509. default: true
  16510. },
  16511. ]
  16512. ))
  16513. characterMakers.push(() => makeCharacter(
  16514. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16515. {
  16516. front: {
  16517. height: math.unit(5 + 11 / 12, "feet"),
  16518. weight: math.unit(190, "lb"),
  16519. name: "Front",
  16520. image: {
  16521. source: "./media/characters/seara/front.svg",
  16522. extra: 1,
  16523. bottom: 0.05
  16524. }
  16525. },
  16526. },
  16527. [
  16528. {
  16529. name: "Normal",
  16530. height: math.unit(5 + 11 / 12, "feet"),
  16531. default: true
  16532. },
  16533. ]
  16534. ))
  16535. characterMakers.push(() => makeCharacter(
  16536. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16537. {
  16538. front: {
  16539. height: math.unit(16 + 5 / 12, "feet"),
  16540. weight: math.unit(524, "lb"),
  16541. name: "Front",
  16542. image: {
  16543. source: "./media/characters/caspian-lugia/front.svg",
  16544. extra: 1,
  16545. bottom: 0.04
  16546. }
  16547. },
  16548. },
  16549. [
  16550. {
  16551. name: "Normal",
  16552. height: math.unit(16 + 5 / 12, "feet"),
  16553. default: true
  16554. },
  16555. ]
  16556. ))
  16557. characterMakers.push(() => makeCharacter(
  16558. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16559. {
  16560. front: {
  16561. height: math.unit(5 + 7 / 12, "feet"),
  16562. weight: math.unit(170, "lb"),
  16563. name: "Front",
  16564. image: {
  16565. source: "./media/characters/mika/front.svg",
  16566. extra: 1,
  16567. bottom: 0.016
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(5 + 7 / 12, "feet"),
  16575. default: true
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16581. {
  16582. front: {
  16583. height: math.unit(6 + 2 / 12, "feet"),
  16584. weight: math.unit(268, "lb"),
  16585. name: "Front",
  16586. image: {
  16587. source: "./media/characters/sol/front.svg",
  16588. extra: 247 / 231,
  16589. bottom: 0.05
  16590. }
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(6 + 2 / 12, "feet"),
  16597. default: true
  16598. },
  16599. ]
  16600. ))
  16601. characterMakers.push(() => makeCharacter(
  16602. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16603. {
  16604. buizel: {
  16605. height: math.unit(2 + 5 / 12, "feet"),
  16606. weight: math.unit(87, "lb"),
  16607. name: "Front",
  16608. image: {
  16609. source: "./media/characters/umiko/buizel.svg",
  16610. extra: 172 / 157,
  16611. bottom: 0.01
  16612. },
  16613. form: "buizel",
  16614. default: true
  16615. },
  16616. floatzel: {
  16617. height: math.unit(5 + 9 / 12, "feet"),
  16618. weight: math.unit(250, "lb"),
  16619. name: "Front",
  16620. image: {
  16621. source: "./media/characters/umiko/floatzel.svg",
  16622. extra: 1076/1006,
  16623. bottom: 15/1091
  16624. },
  16625. form: "floatzel",
  16626. default: true
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(2 + 5 / 12, "feet"),
  16633. form: "buizel",
  16634. default: true
  16635. },
  16636. {
  16637. name: "Normal",
  16638. height: math.unit(5 + 9 / 12, "feet"),
  16639. form: "floatzel",
  16640. default: true
  16641. },
  16642. ],
  16643. {
  16644. "buizel": {
  16645. name: "Buizel"
  16646. },
  16647. "floatzel": {
  16648. name: "Floatzel",
  16649. default: true
  16650. }
  16651. }
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16655. {
  16656. front: {
  16657. height: math.unit(6 + 2 / 12, "feet"),
  16658. weight: math.unit(146, "lb"),
  16659. name: "Front",
  16660. image: {
  16661. source: "./media/characters/iliac/front.svg",
  16662. extra: 389 / 365,
  16663. bottom: 0.035
  16664. }
  16665. },
  16666. },
  16667. [
  16668. {
  16669. name: "Normal",
  16670. height: math.unit(6 + 2 / 12, "feet"),
  16671. default: true
  16672. },
  16673. ]
  16674. ))
  16675. characterMakers.push(() => makeCharacter(
  16676. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16677. {
  16678. front: {
  16679. height: math.unit(6, "feet"),
  16680. weight: math.unit(170, "lb"),
  16681. name: "Front",
  16682. image: {
  16683. source: "./media/characters/topaz/front.svg",
  16684. extra: 317 / 303,
  16685. bottom: 0.055
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(6, "feet"),
  16693. default: true
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(5 + 11 / 12, "feet"),
  16702. weight: math.unit(144, "lb"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/gabriel/front.svg",
  16706. extra: 285 / 262,
  16707. bottom: 0.004
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(5 + 11 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16721. {
  16722. side: {
  16723. height: math.unit(6 + 5 / 12, "feet"),
  16724. weight: math.unit(300, "lb"),
  16725. name: "Side",
  16726. image: {
  16727. source: "./media/characters/tempest-suicune/side.svg",
  16728. extra: 195 / 154,
  16729. bottom: 0.04
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(6 + 5 / 12, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16743. {
  16744. front: {
  16745. height: math.unit(7 + 2 / 12, "feet"),
  16746. weight: math.unit(322, "lb"),
  16747. name: "Front",
  16748. image: {
  16749. source: "./media/characters/vulcan/front.svg",
  16750. extra: 154 / 147,
  16751. bottom: 0.04
  16752. }
  16753. },
  16754. },
  16755. [
  16756. {
  16757. name: "Normal",
  16758. height: math.unit(7 + 2 / 12, "feet"),
  16759. default: true
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(5 + 10 / 12, "feet"),
  16768. weight: math.unit(264, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/gault/front.svg",
  16772. extra: 161 / 140,
  16773. bottom: 0.028
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(5 + 10 / 12, "feet"),
  16781. default: true
  16782. },
  16783. ]
  16784. ))
  16785. characterMakers.push(() => makeCharacter(
  16786. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16787. {
  16788. front: {
  16789. height: math.unit(6, "feet"),
  16790. weight: math.unit(150, "lb"),
  16791. name: "Front",
  16792. image: {
  16793. source: "./media/characters/shard/front.svg",
  16794. extra: 273 / 238,
  16795. bottom: 0.02
  16796. }
  16797. },
  16798. },
  16799. [
  16800. {
  16801. name: "Normal",
  16802. height: math.unit(3 + 6 / 12, "feet"),
  16803. default: true
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(5 + 11 / 12, "feet"),
  16812. weight: math.unit(146, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/ashe/front.svg",
  16816. extra: 400 / 373,
  16817. bottom: 0.01
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(5 + 11 / 12, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(5 + 5 / 12, "feet"),
  16834. weight: math.unit(135, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/beatrix/front.svg",
  16838. extra: 392 / 379,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(6, "feet"),
  16847. default: true
  16848. },
  16849. ]
  16850. ))
  16851. characterMakers.push(() => makeCharacter(
  16852. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16853. {
  16854. front: {
  16855. height: math.unit(6 + 2/12, "feet"),
  16856. weight: math.unit(135, "lb"),
  16857. name: "Front",
  16858. image: {
  16859. source: "./media/characters/ignatius/front.svg",
  16860. extra: 1380/1259,
  16861. bottom: 27/1407
  16862. }
  16863. },
  16864. },
  16865. [
  16866. {
  16867. name: "Normal",
  16868. height: math.unit(6 + 2/12, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(6 + 2 / 12, "feet"),
  16878. weight: math.unit(138, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/mei-li/front.svg",
  16882. extra: 237 / 229,
  16883. bottom: 0.03
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(6 + 2 / 12, "feet"),
  16891. default: true
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(2 + 4 / 12, "feet"),
  16900. weight: math.unit(62, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/puru/front.svg",
  16904. extra: 206 / 149,
  16905. bottom: 0.06
  16906. }
  16907. },
  16908. },
  16909. [
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(2 + 4 / 12, "feet"),
  16913. default: true
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16919. {
  16920. anthro: {
  16921. height: math.unit(5 + 8/12, "feet"),
  16922. weight: math.unit(200, "lb"),
  16923. energyNeed: math.unit(2000, "kcal"),
  16924. name: "Anthro",
  16925. image: {
  16926. source: "./media/characters/kee/anthro.svg",
  16927. extra: 3251/3184,
  16928. bottom: 250/3501
  16929. }
  16930. },
  16931. taur: {
  16932. height: math.unit(11, "feet"),
  16933. weight: math.unit(500, "lb"),
  16934. energyNeed: math.unit(5000, "kcal"),
  16935. name: "Taur",
  16936. image: {
  16937. source: "./media/characters/kee/taur.svg",
  16938. extra: 1362/1320,
  16939. bottom: 83/1445
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Normal",
  16946. height: math.unit(5 + 8/12, "feet"),
  16947. default: true
  16948. },
  16949. {
  16950. name: "Macro",
  16951. height: math.unit(35, "feet")
  16952. },
  16953. ]
  16954. ))
  16955. characterMakers.push(() => makeCharacter(
  16956. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16957. {
  16958. anthro: {
  16959. height: math.unit(7, "feet"),
  16960. weight: math.unit(190, "lb"),
  16961. name: "Anthro",
  16962. image: {
  16963. source: "./media/characters/cobalt-dracha/anthro.svg",
  16964. extra: 231 / 225,
  16965. bottom: 0.04
  16966. }
  16967. },
  16968. feral: {
  16969. height: math.unit(9 + 7 / 12, "feet"),
  16970. weight: math.unit(294, "lb"),
  16971. name: "Feral",
  16972. image: {
  16973. source: "./media/characters/cobalt-dracha/feral.svg",
  16974. extra: 692 / 633,
  16975. bottom: 0.05
  16976. }
  16977. },
  16978. },
  16979. [
  16980. {
  16981. name: "Normal",
  16982. height: math.unit(7, "feet"),
  16983. default: true
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16989. {
  16990. fallen: {
  16991. height: math.unit(11 + 8 / 12, "feet"),
  16992. weight: math.unit(485, "lb"),
  16993. name: "Java (Fallen)",
  16994. rename: true,
  16995. image: {
  16996. source: "./media/characters/java/fallen.svg",
  16997. extra: 226 / 208,
  16998. bottom: 0.005
  16999. }
  17000. },
  17001. godkin: {
  17002. height: math.unit(10 + 6 / 12, "feet"),
  17003. weight: math.unit(328, "lb"),
  17004. name: "Java (Godkin)",
  17005. rename: true,
  17006. image: {
  17007. source: "./media/characters/java/godkin.svg",
  17008. extra: 1104/1068,
  17009. bottom: 36/1140
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Normal",
  17016. height: math.unit(11 + 8 / 12, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(5 + 9 / 12, "feet"),
  17026. weight: math.unit(170, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/purna/front.svg",
  17030. extra: 239 / 229,
  17031. bottom: 0.01
  17032. }
  17033. },
  17034. },
  17035. [
  17036. {
  17037. name: "Normal",
  17038. height: math.unit(5 + 9 / 12, "feet"),
  17039. default: true
  17040. },
  17041. ]
  17042. ))
  17043. characterMakers.push(() => makeCharacter(
  17044. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17045. {
  17046. front: {
  17047. height: math.unit(5 + 9 / 12, "feet"),
  17048. weight: math.unit(142, "lb"),
  17049. name: "Front",
  17050. image: {
  17051. source: "./media/characters/kuva/front.svg",
  17052. extra: 281 / 271,
  17053. bottom: 0.006
  17054. }
  17055. },
  17056. },
  17057. [
  17058. {
  17059. name: "Normal",
  17060. height: math.unit(5 + 9 / 12, "feet"),
  17061. default: true
  17062. },
  17063. ]
  17064. ))
  17065. characterMakers.push(() => makeCharacter(
  17066. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17067. {
  17068. anthro: {
  17069. height: math.unit(9 + 2 / 12, "feet"),
  17070. weight: math.unit(270, "lb"),
  17071. name: "Anthro",
  17072. image: {
  17073. source: "./media/characters/embra/anthro.svg",
  17074. extra: 200 / 187,
  17075. bottom: 0.02
  17076. }
  17077. },
  17078. feral: {
  17079. height: math.unit(18 + 8 / 12, "feet"),
  17080. weight: math.unit(576, "lb"),
  17081. name: "Feral",
  17082. image: {
  17083. source: "./media/characters/embra/feral.svg",
  17084. extra: 152 / 137,
  17085. bottom: 0.037
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(9 + 2 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17099. {
  17100. anthro: {
  17101. height: math.unit(10 + 9 / 12, "feet"),
  17102. weight: math.unit(224, "lb"),
  17103. name: "Anthro",
  17104. image: {
  17105. source: "./media/characters/grottos/anthro.svg",
  17106. extra: 350 / 332,
  17107. bottom: 0.045
  17108. }
  17109. },
  17110. feral: {
  17111. height: math.unit(20 + 7 / 12, "feet"),
  17112. weight: math.unit(629, "lb"),
  17113. name: "Feral",
  17114. image: {
  17115. source: "./media/characters/grottos/feral.svg",
  17116. extra: 207 / 190,
  17117. bottom: 0.05
  17118. }
  17119. },
  17120. },
  17121. [
  17122. {
  17123. name: "Normal",
  17124. height: math.unit(10 + 9 / 12, "feet"),
  17125. default: true
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17131. {
  17132. anthro: {
  17133. height: math.unit(9 + 6 / 12, "feet"),
  17134. weight: math.unit(298, "lb"),
  17135. name: "Anthro",
  17136. image: {
  17137. source: "./media/characters/frifna/anthro.svg",
  17138. extra: 282 / 269,
  17139. bottom: 0.015
  17140. }
  17141. },
  17142. feral: {
  17143. height: math.unit(16 + 2 / 12, "feet"),
  17144. weight: math.unit(624, "lb"),
  17145. name: "Feral",
  17146. image: {
  17147. source: "./media/characters/frifna/feral.svg"
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(9 + 6 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17161. {
  17162. front: {
  17163. height: math.unit(6 + 2 / 12, "feet"),
  17164. weight: math.unit(168, "lb"),
  17165. name: "Front",
  17166. image: {
  17167. source: "./media/characters/elise/front.svg",
  17168. extra: 276 / 271
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Normal",
  17175. height: math.unit(6 + 2 / 12, "feet"),
  17176. default: true
  17177. },
  17178. ]
  17179. ))
  17180. characterMakers.push(() => makeCharacter(
  17181. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17182. {
  17183. front: {
  17184. height: math.unit(5 + 10 / 12, "feet"),
  17185. weight: math.unit(210, "lb"),
  17186. name: "Front",
  17187. image: {
  17188. source: "./media/characters/glade/front.svg",
  17189. extra: 258 / 247,
  17190. bottom: 0.008
  17191. }
  17192. },
  17193. },
  17194. [
  17195. {
  17196. name: "Normal",
  17197. height: math.unit(5 + 10 / 12, "feet"),
  17198. default: true
  17199. },
  17200. ]
  17201. ))
  17202. characterMakers.push(() => makeCharacter(
  17203. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17204. {
  17205. front: {
  17206. height: math.unit(5 + 10 / 12, "feet"),
  17207. weight: math.unit(129, "lb"),
  17208. name: "Front",
  17209. image: {
  17210. source: "./media/characters/rina/front.svg",
  17211. extra: 266 / 255,
  17212. bottom: 0.005
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(5 + 10 / 12, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(6 + 1 / 12, "feet"),
  17229. weight: math.unit(192, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/veronica/front.svg",
  17233. extra: 319 / 309,
  17234. bottom: 0.005
  17235. }
  17236. },
  17237. },
  17238. [
  17239. {
  17240. name: "Normal",
  17241. height: math.unit(6 + 1 / 12, "feet"),
  17242. default: true
  17243. },
  17244. ]
  17245. ))
  17246. characterMakers.push(() => makeCharacter(
  17247. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17248. {
  17249. front: {
  17250. height: math.unit(9 + 3 / 12, "feet"),
  17251. weight: math.unit(1100, "lb"),
  17252. name: "Front",
  17253. image: {
  17254. source: "./media/characters/braxton/front.svg",
  17255. extra: 1057 / 984,
  17256. bottom: 0.05
  17257. }
  17258. },
  17259. },
  17260. [
  17261. {
  17262. name: "Normal",
  17263. height: math.unit(9 + 3 / 12, "feet")
  17264. },
  17265. {
  17266. name: "Giant",
  17267. height: math.unit(300, "feet"),
  17268. default: true
  17269. },
  17270. {
  17271. name: "Macro",
  17272. height: math.unit(700, "feet")
  17273. },
  17274. {
  17275. name: "Megamacro",
  17276. height: math.unit(6000, "feet")
  17277. },
  17278. ]
  17279. ))
  17280. characterMakers.push(() => makeCharacter(
  17281. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17282. {
  17283. front: {
  17284. height: math.unit(6 + 7 / 12, "feet"),
  17285. weight: math.unit(150, "lb"),
  17286. name: "Front",
  17287. image: {
  17288. source: "./media/characters/blue-feyonics/front.svg",
  17289. extra: 1403 / 1306,
  17290. bottom: 0.047
  17291. }
  17292. },
  17293. },
  17294. [
  17295. {
  17296. name: "Normal",
  17297. height: math.unit(6 + 7 / 12, "feet"),
  17298. default: true
  17299. },
  17300. ]
  17301. ))
  17302. characterMakers.push(() => makeCharacter(
  17303. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17304. {
  17305. front: {
  17306. height: math.unit(1.8, "meters"),
  17307. weight: math.unit(60, "kg"),
  17308. name: "Front",
  17309. image: {
  17310. source: "./media/characters/maxwell/front.svg",
  17311. extra: 2060 / 1873
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Micro",
  17318. height: math.unit(1, "mm")
  17319. },
  17320. {
  17321. name: "Normal",
  17322. height: math.unit(1.8, "meter"),
  17323. default: true
  17324. },
  17325. {
  17326. name: "Macro",
  17327. height: math.unit(30, "meters")
  17328. },
  17329. {
  17330. name: "Megamacro",
  17331. height: math.unit(10, "km")
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17337. {
  17338. front: {
  17339. height: math.unit(6, "feet"),
  17340. weight: math.unit(150, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/jack/front.svg",
  17344. extra: 1754 / 1640,
  17345. bottom: 0.01
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(80000, "feet"),
  17353. default: true
  17354. },
  17355. {
  17356. name: "Max size",
  17357. height: math.unit(10, "lightyears")
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17363. {
  17364. urban: {
  17365. height: math.unit(5, "feet"),
  17366. weight: math.unit(240, "lb"),
  17367. name: "Urban",
  17368. image: {
  17369. source: "./media/characters/cafat/urban.svg",
  17370. extra: 1223/1126,
  17371. bottom: 205/1428
  17372. }
  17373. },
  17374. summer: {
  17375. height: math.unit(5, "feet"),
  17376. weight: math.unit(240, "lb"),
  17377. name: "Summer",
  17378. image: {
  17379. source: "./media/characters/cafat/summer.svg",
  17380. extra: 1223/1126,
  17381. bottom: 205/1428
  17382. }
  17383. },
  17384. winter: {
  17385. height: math.unit(5, "feet"),
  17386. weight: math.unit(240, "lb"),
  17387. name: "Winter",
  17388. image: {
  17389. source: "./media/characters/cafat/winter.svg",
  17390. extra: 1223/1126,
  17391. bottom: 205/1428
  17392. }
  17393. },
  17394. lingerie: {
  17395. height: math.unit(5, "feet"),
  17396. weight: math.unit(240, "lb"),
  17397. name: "Lingerie",
  17398. image: {
  17399. source: "./media/characters/cafat/lingerie.svg",
  17400. extra: 1223/1126,
  17401. bottom: 205/1428
  17402. }
  17403. },
  17404. upright: {
  17405. height: math.unit(6.3, "feet"),
  17406. weight: math.unit(240, "lb"),
  17407. name: "Upright",
  17408. image: {
  17409. source: "./media/characters/cafat/upright.svg",
  17410. bottom: 0.01
  17411. }
  17412. },
  17413. uprightFull: {
  17414. height: math.unit(6.3, "feet"),
  17415. weight: math.unit(240, "lb"),
  17416. name: "Upright (Full)",
  17417. image: {
  17418. source: "./media/characters/cafat/upright-full.svg",
  17419. bottom: 0.01
  17420. }
  17421. },
  17422. },
  17423. [
  17424. {
  17425. name: "Small",
  17426. height: math.unit(5, "feet"),
  17427. default: true
  17428. },
  17429. {
  17430. name: "Large",
  17431. height: math.unit(13, "feet")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6, "feet"),
  17440. weight: math.unit(150, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/verin-raharra/front.svg",
  17444. extra: 5019 / 4835,
  17445. bottom: 0.023
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(7 + 5 / 12, "feet"),
  17453. default: true
  17454. },
  17455. {
  17456. name: "Upsized",
  17457. height: math.unit(20, "feet")
  17458. },
  17459. ]
  17460. ))
  17461. characterMakers.push(() => makeCharacter(
  17462. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17463. {
  17464. front: {
  17465. height: math.unit(7, "feet"),
  17466. weight: math.unit(230, "lb"),
  17467. name: "Front",
  17468. image: {
  17469. source: "./media/characters/nakata/front.svg",
  17470. extra: 1.005,
  17471. bottom: 0.01
  17472. }
  17473. },
  17474. },
  17475. [
  17476. {
  17477. name: "Normal",
  17478. height: math.unit(7, "feet"),
  17479. default: true
  17480. },
  17481. {
  17482. name: "Big",
  17483. height: math.unit(14, "feet")
  17484. },
  17485. {
  17486. name: "Macro",
  17487. height: math.unit(400, "feet")
  17488. },
  17489. ]
  17490. ))
  17491. characterMakers.push(() => makeCharacter(
  17492. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17493. {
  17494. front: {
  17495. height: math.unit(4.91, "feet"),
  17496. weight: math.unit(100, "lb"),
  17497. name: "Front",
  17498. image: {
  17499. source: "./media/characters/lily/front.svg",
  17500. extra: 1585 / 1415,
  17501. bottom: 0.02
  17502. }
  17503. },
  17504. },
  17505. [
  17506. {
  17507. name: "Normal",
  17508. height: math.unit(4.91, "feet"),
  17509. default: true
  17510. },
  17511. ]
  17512. ))
  17513. characterMakers.push(() => makeCharacter(
  17514. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17515. {
  17516. laying: {
  17517. height: math.unit(4 + 4 / 12, "feet"),
  17518. weight: math.unit(600, "lb"),
  17519. name: "Laying",
  17520. image: {
  17521. source: "./media/characters/sheila/laying.svg",
  17522. extra: 1333 / 1265,
  17523. bottom: 0.16
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(4 + 4 / 12, "feet"),
  17531. default: true
  17532. },
  17533. ]
  17534. ))
  17535. characterMakers.push(() => makeCharacter(
  17536. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17537. {
  17538. front: {
  17539. height: math.unit(6, "feet"),
  17540. weight: math.unit(190, "lb"),
  17541. name: "Front",
  17542. image: {
  17543. source: "./media/characters/sax/front.svg",
  17544. extra: 1187 / 973,
  17545. bottom: 0.042
  17546. }
  17547. },
  17548. },
  17549. [
  17550. {
  17551. name: "Micro",
  17552. height: math.unit(4, "inches"),
  17553. default: true
  17554. },
  17555. ]
  17556. ))
  17557. characterMakers.push(() => makeCharacter(
  17558. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17559. {
  17560. front: {
  17561. height: math.unit(6, "feet"),
  17562. weight: math.unit(150, "lb"),
  17563. name: "Front",
  17564. image: {
  17565. source: "./media/characters/pandora/front.svg",
  17566. extra: 2720 / 2556,
  17567. bottom: 0.015
  17568. }
  17569. },
  17570. back: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(150, "lb"),
  17573. name: "Back",
  17574. image: {
  17575. source: "./media/characters/pandora/back.svg",
  17576. extra: 2720 / 2556,
  17577. bottom: 0.01
  17578. }
  17579. },
  17580. beans: {
  17581. height: math.unit(6 / 8, "feet"),
  17582. name: "Beans",
  17583. image: {
  17584. source: "./media/characters/pandora/beans.svg"
  17585. }
  17586. },
  17587. collar: {
  17588. height: math.unit(0.31, "feet"),
  17589. name: "Collar",
  17590. image: {
  17591. source: "./media/characters/pandora/collar.svg"
  17592. }
  17593. },
  17594. skirt: {
  17595. height: math.unit(6, "feet"),
  17596. weight: math.unit(150, "lb"),
  17597. name: "Skirt",
  17598. image: {
  17599. source: "./media/characters/pandora/skirt.svg",
  17600. extra: 1622 / 1525,
  17601. bottom: 0.015
  17602. }
  17603. },
  17604. hoodie: {
  17605. height: math.unit(6, "feet"),
  17606. weight: math.unit(150, "lb"),
  17607. name: "Hoodie",
  17608. image: {
  17609. source: "./media/characters/pandora/hoodie.svg",
  17610. extra: 1622 / 1525,
  17611. bottom: 0.015
  17612. }
  17613. },
  17614. casual: {
  17615. height: math.unit(6, "feet"),
  17616. weight: math.unit(150, "lb"),
  17617. name: "Casual",
  17618. image: {
  17619. source: "./media/characters/pandora/casual.svg",
  17620. extra: 1622 / 1525,
  17621. bottom: 0.015
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(6, "feet")
  17629. },
  17630. {
  17631. name: "Big Steppy",
  17632. height: math.unit(1, "km"),
  17633. default: true
  17634. },
  17635. {
  17636. name: "Galactic Steppy",
  17637. height: math.unit(2, "gigameters")
  17638. },
  17639. ]
  17640. ))
  17641. characterMakers.push(() => makeCharacter(
  17642. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17643. {
  17644. side: {
  17645. height: math.unit(10, "feet"),
  17646. weight: math.unit(800, "kg"),
  17647. name: "Side",
  17648. image: {
  17649. source: "./media/characters/venio-darcony/side.svg",
  17650. extra: 1373 / 1003,
  17651. bottom: 0.037
  17652. }
  17653. },
  17654. front: {
  17655. height: math.unit(19, "feet"),
  17656. weight: math.unit(800, "kg"),
  17657. name: "Front",
  17658. image: {
  17659. source: "./media/characters/venio-darcony/front.svg"
  17660. }
  17661. },
  17662. back: {
  17663. height: math.unit(19, "feet"),
  17664. weight: math.unit(800, "kg"),
  17665. name: "Back",
  17666. image: {
  17667. source: "./media/characters/venio-darcony/back.svg"
  17668. }
  17669. },
  17670. sideNsfw: {
  17671. height: math.unit(10, "feet"),
  17672. weight: math.unit(800, "kg"),
  17673. name: "Side (NSFW)",
  17674. image: {
  17675. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17676. extra: 1373 / 1003,
  17677. bottom: 0.037
  17678. }
  17679. },
  17680. frontNsfw: {
  17681. height: math.unit(19, "feet"),
  17682. weight: math.unit(800, "kg"),
  17683. name: "Front (NSFW)",
  17684. image: {
  17685. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17686. }
  17687. },
  17688. backNsfw: {
  17689. height: math.unit(19, "feet"),
  17690. weight: math.unit(800, "kg"),
  17691. name: "Back (NSFW)",
  17692. image: {
  17693. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17694. }
  17695. },
  17696. sideArmored: {
  17697. height: math.unit(10, "feet"),
  17698. weight: math.unit(800, "kg"),
  17699. name: "Side (Armored)",
  17700. image: {
  17701. source: "./media/characters/venio-darcony/side-armored.svg",
  17702. extra: 1373 / 1003,
  17703. bottom: 0.037
  17704. }
  17705. },
  17706. frontArmored: {
  17707. height: math.unit(19, "feet"),
  17708. weight: math.unit(900, "kg"),
  17709. name: "Front (Armored)",
  17710. image: {
  17711. source: "./media/characters/venio-darcony/front-armored.svg"
  17712. }
  17713. },
  17714. backArmored: {
  17715. height: math.unit(19, "feet"),
  17716. weight: math.unit(900, "kg"),
  17717. name: "Back (Armored)",
  17718. image: {
  17719. source: "./media/characters/venio-darcony/back-armored.svg"
  17720. }
  17721. },
  17722. sword: {
  17723. height: math.unit(10, "feet"),
  17724. weight: math.unit(50, "lb"),
  17725. name: "Sword",
  17726. image: {
  17727. source: "./media/characters/venio-darcony/sword.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(10, "feet")
  17735. },
  17736. {
  17737. name: "Macro",
  17738. height: math.unit(130, "feet"),
  17739. default: true
  17740. },
  17741. {
  17742. name: "Macro+",
  17743. height: math.unit(240, "feet")
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(150, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/veski/front.svg",
  17756. extra: 1299 / 1225,
  17757. bottom: 0.04
  17758. }
  17759. },
  17760. back: {
  17761. height: math.unit(6, "feet"),
  17762. weight: math.unit(150, "lb"),
  17763. name: "Back",
  17764. image: {
  17765. source: "./media/characters/veski/back.svg",
  17766. extra: 1299 / 1225,
  17767. bottom: 0.008
  17768. }
  17769. },
  17770. maw: {
  17771. height: math.unit(1.5 * 1.21, "feet"),
  17772. name: "Maw",
  17773. image: {
  17774. source: "./media/characters/veski/maw.svg"
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Macro",
  17781. height: math.unit(2, "km"),
  17782. default: true
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17788. {
  17789. front: {
  17790. height: math.unit(5 + 7 / 12, "feet"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/isabelle/front.svg",
  17794. extra: 2130 / 1976,
  17795. bottom: 0.05
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Supermicro",
  17802. height: math.unit(10, "micrometers")
  17803. },
  17804. {
  17805. name: "Micro",
  17806. height: math.unit(1, "inch")
  17807. },
  17808. {
  17809. name: "Tiny",
  17810. height: math.unit(5, "inches")
  17811. },
  17812. {
  17813. name: "Standard",
  17814. height: math.unit(5 + 7 / 12, "inches")
  17815. },
  17816. {
  17817. name: "Macro",
  17818. height: math.unit(80, "meters"),
  17819. default: true
  17820. },
  17821. {
  17822. name: "Megamacro",
  17823. height: math.unit(250, "meters")
  17824. },
  17825. {
  17826. name: "Gigamacro",
  17827. height: math.unit(5, "km")
  17828. },
  17829. {
  17830. name: "Cosmic",
  17831. height: math.unit(2.5e6, "miles")
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(6, "feet"),
  17840. weight: math.unit(150, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/hanzo/front.svg",
  17844. extra: 374 / 344,
  17845. bottom: 0.02
  17846. }
  17847. },
  17848. },
  17849. [
  17850. {
  17851. name: "Normal",
  17852. height: math.unit(8, "feet"),
  17853. default: true
  17854. },
  17855. ]
  17856. ))
  17857. characterMakers.push(() => makeCharacter(
  17858. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17859. {
  17860. front: {
  17861. height: math.unit(7, "feet"),
  17862. weight: math.unit(130, "lb"),
  17863. name: "Front",
  17864. image: {
  17865. source: "./media/characters/anna/front.svg",
  17866. extra: 169 / 145,
  17867. bottom: 0.06
  17868. }
  17869. },
  17870. full: {
  17871. height: math.unit(4.96, "feet"),
  17872. weight: math.unit(220, "lb"),
  17873. name: "Full",
  17874. image: {
  17875. source: "./media/characters/anna/full.svg",
  17876. extra: 138 / 114,
  17877. bottom: 0.15
  17878. }
  17879. },
  17880. tongue: {
  17881. height: math.unit(2.53, "feet"),
  17882. name: "Tongue",
  17883. image: {
  17884. source: "./media/characters/anna/tongue.svg"
  17885. }
  17886. },
  17887. },
  17888. [
  17889. {
  17890. name: "Normal",
  17891. height: math.unit(7, "feet"),
  17892. default: true
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17898. {
  17899. front: {
  17900. height: math.unit(7, "feet"),
  17901. weight: math.unit(150, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/ian-corvid/front.svg",
  17905. extra: 150 / 142,
  17906. bottom: 0.02
  17907. }
  17908. },
  17909. back: {
  17910. height: math.unit(7, "feet"),
  17911. weight: math.unit(150, "lb"),
  17912. name: "Back",
  17913. image: {
  17914. source: "./media/characters/ian-corvid/back.svg",
  17915. extra: 150 / 143,
  17916. bottom: 0.01
  17917. }
  17918. },
  17919. stomping: {
  17920. height: math.unit(7, "feet"),
  17921. weight: math.unit(150, "lb"),
  17922. name: "Stomping",
  17923. image: {
  17924. source: "./media/characters/ian-corvid/stomping.svg",
  17925. extra: 76 / 72
  17926. }
  17927. },
  17928. sitting: {
  17929. height: math.unit(7 / 1.8, "feet"),
  17930. weight: math.unit(150, "lb"),
  17931. name: "Sitting",
  17932. image: {
  17933. source: "./media/characters/ian-corvid/sitting.svg",
  17934. extra: 1400 / 1269,
  17935. bottom: 0.15
  17936. }
  17937. },
  17938. },
  17939. [
  17940. {
  17941. name: "Tiny Microw",
  17942. height: math.unit(1, "inch")
  17943. },
  17944. {
  17945. name: "Microw",
  17946. height: math.unit(6, "inches")
  17947. },
  17948. {
  17949. name: "Crow",
  17950. height: math.unit(7 + 1 / 12, "feet"),
  17951. default: true
  17952. },
  17953. {
  17954. name: "Macrow",
  17955. height: math.unit(176, "feet")
  17956. },
  17957. ]
  17958. ))
  17959. characterMakers.push(() => makeCharacter(
  17960. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17961. {
  17962. front: {
  17963. height: math.unit(5 + 7 / 12, "feet"),
  17964. weight: math.unit(147, "lb"),
  17965. name: "Front",
  17966. image: {
  17967. source: "./media/characters/natalie-kellon/front.svg",
  17968. extra: 1214 / 1141,
  17969. bottom: 0.02
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Micro",
  17976. height: math.unit(1 / 16, "inch")
  17977. },
  17978. {
  17979. name: "Tiny",
  17980. height: math.unit(4, "inches")
  17981. },
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(5 + 7 / 12, "feet"),
  17985. default: true
  17986. },
  17987. {
  17988. name: "Amazon",
  17989. height: math.unit(12, "feet")
  17990. },
  17991. {
  17992. name: "Giantess",
  17993. height: math.unit(160, "meters")
  17994. },
  17995. {
  17996. name: "Titaness",
  17997. height: math.unit(800, "meters")
  17998. },
  17999. ]
  18000. ))
  18001. characterMakers.push(() => makeCharacter(
  18002. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18003. {
  18004. front: {
  18005. height: math.unit(6, "feet"),
  18006. weight: math.unit(150, "lb"),
  18007. name: "Front",
  18008. image: {
  18009. source: "./media/characters/alluria/front.svg",
  18010. extra: 806 / 738,
  18011. bottom: 0.01
  18012. }
  18013. },
  18014. side: {
  18015. height: math.unit(6, "feet"),
  18016. weight: math.unit(150, "lb"),
  18017. name: "Side",
  18018. image: {
  18019. source: "./media/characters/alluria/side.svg",
  18020. extra: 800 / 750,
  18021. }
  18022. },
  18023. back: {
  18024. height: math.unit(6, "feet"),
  18025. weight: math.unit(150, "lb"),
  18026. name: "Back",
  18027. image: {
  18028. source: "./media/characters/alluria/back.svg",
  18029. extra: 806 / 738,
  18030. }
  18031. },
  18032. frontMaid: {
  18033. height: math.unit(6, "feet"),
  18034. weight: math.unit(150, "lb"),
  18035. name: "Front (Maid)",
  18036. image: {
  18037. source: "./media/characters/alluria/front-maid.svg",
  18038. extra: 806 / 738,
  18039. bottom: 0.01
  18040. }
  18041. },
  18042. sideMaid: {
  18043. height: math.unit(6, "feet"),
  18044. weight: math.unit(150, "lb"),
  18045. name: "Side (Maid)",
  18046. image: {
  18047. source: "./media/characters/alluria/side-maid.svg",
  18048. extra: 800 / 750,
  18049. bottom: 0.005
  18050. }
  18051. },
  18052. backMaid: {
  18053. height: math.unit(6, "feet"),
  18054. weight: math.unit(150, "lb"),
  18055. name: "Back (Maid)",
  18056. image: {
  18057. source: "./media/characters/alluria/back-maid.svg",
  18058. extra: 806 / 738,
  18059. }
  18060. },
  18061. },
  18062. [
  18063. {
  18064. name: "Micro",
  18065. height: math.unit(6, "inches"),
  18066. default: true
  18067. },
  18068. ]
  18069. ))
  18070. characterMakers.push(() => makeCharacter(
  18071. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18072. {
  18073. front: {
  18074. height: math.unit(6, "feet"),
  18075. weight: math.unit(150, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/kyle/front.svg",
  18079. extra: 1069 / 962,
  18080. bottom: 77.228 / 1727.45
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Macro",
  18087. height: math.unit(150, "feet"),
  18088. default: true
  18089. },
  18090. ]
  18091. ))
  18092. characterMakers.push(() => makeCharacter(
  18093. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18094. {
  18095. front: {
  18096. height: math.unit(6, "feet"),
  18097. weight: math.unit(300, "lb"),
  18098. name: "Front",
  18099. image: {
  18100. source: "./media/characters/duncan/front.svg",
  18101. extra: 1650 / 1482,
  18102. bottom: 0.05
  18103. }
  18104. },
  18105. },
  18106. [
  18107. {
  18108. name: "Macro",
  18109. height: math.unit(100, "feet"),
  18110. default: true
  18111. },
  18112. ]
  18113. ))
  18114. characterMakers.push(() => makeCharacter(
  18115. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18116. {
  18117. front: {
  18118. height: math.unit(5 + 4 / 12, "feet"),
  18119. weight: math.unit(220, "lb"),
  18120. name: "Front",
  18121. image: {
  18122. source: "./media/characters/memory/front.svg",
  18123. extra: 3641 / 3545,
  18124. bottom: 0.03
  18125. }
  18126. },
  18127. back: {
  18128. height: math.unit(5 + 4 / 12, "feet"),
  18129. weight: math.unit(220, "lb"),
  18130. name: "Back",
  18131. image: {
  18132. source: "./media/characters/memory/back.svg",
  18133. extra: 3641 / 3545,
  18134. bottom: 0.025
  18135. }
  18136. },
  18137. frontSkirt: {
  18138. height: math.unit(5 + 4 / 12, "feet"),
  18139. weight: math.unit(220, "lb"),
  18140. name: "Front (Skirt)",
  18141. image: {
  18142. source: "./media/characters/memory/front-skirt.svg",
  18143. extra: 3641 / 3545,
  18144. bottom: 0.03
  18145. }
  18146. },
  18147. frontDress: {
  18148. height: math.unit(5 + 4 / 12, "feet"),
  18149. weight: math.unit(220, "lb"),
  18150. name: "Front (Dress)",
  18151. image: {
  18152. source: "./media/characters/memory/front-dress.svg",
  18153. extra: 3641 / 3545,
  18154. bottom: 0.03
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Micro",
  18161. height: math.unit(6, "inches"),
  18162. default: true
  18163. },
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(5 + 4 / 12, "feet")
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(4 + 11 / 12, "feet"),
  18175. weight: math.unit(100, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/luno/front.svg",
  18179. extra: 1535 / 1487,
  18180. bottom: 0.03
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Micro",
  18187. height: math.unit(3, "inches")
  18188. },
  18189. {
  18190. name: "Normal",
  18191. height: math.unit(4 + 11 / 12, "feet"),
  18192. default: true
  18193. },
  18194. {
  18195. name: "Macro",
  18196. height: math.unit(300, "feet")
  18197. },
  18198. {
  18199. name: "Megamacro",
  18200. height: math.unit(700, "miles")
  18201. },
  18202. ]
  18203. ))
  18204. characterMakers.push(() => makeCharacter(
  18205. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18206. {
  18207. front: {
  18208. height: math.unit(6 + 2 / 12, "feet"),
  18209. weight: math.unit(170, "lb"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/jamesy/front.svg",
  18213. extra: 440 / 382,
  18214. bottom: 0.005
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(3, "inches")
  18222. },
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(6 + 2 / 12, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Macro",
  18230. height: math.unit(300, "feet")
  18231. },
  18232. {
  18233. name: "Megamacro",
  18234. height: math.unit(700, "miles")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(6, "feet"),
  18243. weight: math.unit(160, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/mark/front.svg",
  18247. extra: 3300 / 3100,
  18248. bottom: 136.42 / 3440.47
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Macro",
  18255. height: math.unit(120, "meters")
  18256. },
  18257. {
  18258. name: "Bigger Macro",
  18259. height: math.unit(350, "meters")
  18260. },
  18261. {
  18262. name: "Megamacro",
  18263. height: math.unit(8, "km"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Continental",
  18268. height: math.unit(4550, "km")
  18269. },
  18270. {
  18271. name: "Planetary",
  18272. height: math.unit(65000, "km")
  18273. },
  18274. ]
  18275. ))
  18276. characterMakers.push(() => makeCharacter(
  18277. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18278. {
  18279. front: {
  18280. height: math.unit(6, "feet"),
  18281. weight: math.unit(400, "lb"),
  18282. name: "Front",
  18283. image: {
  18284. source: "./media/characters/mac/front.svg",
  18285. extra: 1048 / 987.7,
  18286. bottom: 60 / 1107.6,
  18287. }
  18288. },
  18289. },
  18290. [
  18291. {
  18292. name: "Macro",
  18293. height: math.unit(500, "feet"),
  18294. default: true
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18300. {
  18301. front: {
  18302. height: math.unit(5 + 2 / 12, "feet"),
  18303. weight: math.unit(190, "lb"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/bari/front.svg",
  18307. extra: 3156 / 2880,
  18308. bottom: 0.03
  18309. }
  18310. },
  18311. back: {
  18312. height: math.unit(5 + 2 / 12, "feet"),
  18313. weight: math.unit(190, "lb"),
  18314. name: "Back",
  18315. image: {
  18316. source: "./media/characters/bari/back.svg",
  18317. extra: 3260 / 2834,
  18318. bottom: 0.025
  18319. }
  18320. },
  18321. frontPlush: {
  18322. height: math.unit(5 + 2 / 12, "feet"),
  18323. weight: math.unit(190, "lb"),
  18324. name: "Front (Plush)",
  18325. image: {
  18326. source: "./media/characters/bari/front-plush.svg",
  18327. extra: 1112 / 1061,
  18328. bottom: 0.002
  18329. }
  18330. },
  18331. },
  18332. [
  18333. {
  18334. name: "Micro",
  18335. height: math.unit(3, "inches")
  18336. },
  18337. {
  18338. name: "Normal",
  18339. height: math.unit(5 + 2 / 12, "feet"),
  18340. default: true
  18341. },
  18342. {
  18343. name: "Macro",
  18344. height: math.unit(20, "feet")
  18345. },
  18346. ]
  18347. ))
  18348. characterMakers.push(() => makeCharacter(
  18349. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18350. {
  18351. front: {
  18352. height: math.unit(6 + 1 / 12, "feet"),
  18353. weight: math.unit(275, "lb"),
  18354. name: "Front",
  18355. image: {
  18356. source: "./media/characters/hunter-misha-raven/front.svg"
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Mortal",
  18363. height: math.unit(6 + 1 / 12, "feet")
  18364. },
  18365. {
  18366. name: "Divine",
  18367. height: math.unit(1.12134e34, "parsecs"),
  18368. default: true
  18369. },
  18370. ]
  18371. ))
  18372. characterMakers.push(() => makeCharacter(
  18373. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18374. {
  18375. front: {
  18376. height: math.unit(6 + 3 / 12, "feet"),
  18377. weight: math.unit(220, "lb"),
  18378. name: "Front",
  18379. image: {
  18380. source: "./media/characters/max-calore/front.svg",
  18381. extra: 1700 / 1648,
  18382. bottom: 0.01
  18383. }
  18384. },
  18385. back: {
  18386. height: math.unit(6 + 3 / 12, "feet"),
  18387. weight: math.unit(220, "lb"),
  18388. name: "Back",
  18389. image: {
  18390. source: "./media/characters/max-calore/back.svg",
  18391. extra: 1700 / 1648,
  18392. bottom: 0.01
  18393. }
  18394. },
  18395. },
  18396. [
  18397. {
  18398. name: "Normal",
  18399. height: math.unit(6 + 3 / 12, "feet"),
  18400. default: true
  18401. },
  18402. ]
  18403. ))
  18404. characterMakers.push(() => makeCharacter(
  18405. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18406. {
  18407. side: {
  18408. height: math.unit(2 + 8 / 12, "feet"),
  18409. weight: math.unit(99, "lb"),
  18410. name: "Side",
  18411. image: {
  18412. source: "./media/characters/aspen/side.svg",
  18413. extra: 152 / 138,
  18414. bottom: 0.032
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(2 + 8 / 12, "feet"),
  18422. default: true
  18423. },
  18424. ]
  18425. ))
  18426. characterMakers.push(() => makeCharacter(
  18427. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18428. {
  18429. side: {
  18430. height: math.unit(3 + 2 / 12, "feet"),
  18431. weight: math.unit(224, "lb"),
  18432. name: "Side",
  18433. image: {
  18434. source: "./media/characters/sheila-feral-wolf/side.svg",
  18435. extra: 179 / 166,
  18436. bottom: 0.03
  18437. }
  18438. },
  18439. },
  18440. [
  18441. {
  18442. name: "Normal",
  18443. height: math.unit(3 + 2 / 12, "feet"),
  18444. default: true
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18450. {
  18451. side: {
  18452. height: math.unit(1 + 9 / 12, "feet"),
  18453. weight: math.unit(38, "lb"),
  18454. name: "Side",
  18455. image: {
  18456. source: "./media/characters/michelle/side.svg",
  18457. extra: 147 / 136.7,
  18458. bottom: 0.03
  18459. }
  18460. },
  18461. },
  18462. [
  18463. {
  18464. name: "Normal",
  18465. height: math.unit(1 + 9 / 12, "feet"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(1.54, "feet"),
  18475. weight: math.unit(50, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/nino/front.svg"
  18479. }
  18480. },
  18481. },
  18482. [
  18483. {
  18484. name: "Normal",
  18485. height: math.unit(1.54, "feet"),
  18486. default: true
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(1.49, "feet"),
  18495. weight: math.unit(45, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/viola/front.svg"
  18499. }
  18500. },
  18501. },
  18502. [
  18503. {
  18504. name: "Normal",
  18505. height: math.unit(1.49, "feet"),
  18506. default: true
  18507. },
  18508. ]
  18509. ))
  18510. characterMakers.push(() => makeCharacter(
  18511. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18512. {
  18513. front: {
  18514. height: math.unit(6 + 5 / 12, "feet"),
  18515. weight: math.unit(580, "lb"),
  18516. name: "Front",
  18517. image: {
  18518. source: "./media/characters/atlas/front.svg",
  18519. extra: 298.5 / 290,
  18520. bottom: 0.015
  18521. }
  18522. },
  18523. },
  18524. [
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(6 + 5 / 12, "feet"),
  18528. default: true
  18529. },
  18530. ]
  18531. ))
  18532. characterMakers.push(() => makeCharacter(
  18533. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18534. {
  18535. side: {
  18536. height: math.unit(15.6, "inches"),
  18537. weight: math.unit(10, "lb"),
  18538. name: "Side",
  18539. image: {
  18540. source: "./media/characters/davy/side.svg",
  18541. extra: 200 / 170,
  18542. bottom: 0.01
  18543. }
  18544. },
  18545. },
  18546. [
  18547. {
  18548. name: "Normal",
  18549. height: math.unit(15.6, "inches"),
  18550. default: true
  18551. },
  18552. ]
  18553. ))
  18554. characterMakers.push(() => makeCharacter(
  18555. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18556. {
  18557. side: {
  18558. height: math.unit(4 + 8 / 12, "feet"),
  18559. weight: math.unit(166, "lb"),
  18560. name: "Side",
  18561. image: {
  18562. source: "./media/characters/fiona/side.svg",
  18563. extra: 232 / 220,
  18564. bottom: 0.03
  18565. }
  18566. },
  18567. },
  18568. [
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(4 + 8 / 12, "feet"),
  18572. default: true
  18573. },
  18574. ]
  18575. ))
  18576. characterMakers.push(() => makeCharacter(
  18577. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18578. {
  18579. front: {
  18580. height: math.unit(26, "inches"),
  18581. weight: math.unit(35, "lb"),
  18582. name: "Front",
  18583. image: {
  18584. source: "./media/characters/lyla/front.svg",
  18585. bottom: 0.1
  18586. }
  18587. },
  18588. },
  18589. [
  18590. {
  18591. name: "Normal",
  18592. height: math.unit(3, "feet"),
  18593. default: true
  18594. },
  18595. ]
  18596. ))
  18597. characterMakers.push(() => makeCharacter(
  18598. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18599. {
  18600. side: {
  18601. height: math.unit(1.8, "feet"),
  18602. weight: math.unit(44, "lb"),
  18603. name: "Side",
  18604. image: {
  18605. source: "./media/characters/perseus/side.svg",
  18606. bottom: 0.21
  18607. }
  18608. },
  18609. },
  18610. [
  18611. {
  18612. name: "Normal",
  18613. height: math.unit(1.8, "feet"),
  18614. default: true
  18615. },
  18616. ]
  18617. ))
  18618. characterMakers.push(() => makeCharacter(
  18619. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18620. {
  18621. side: {
  18622. height: math.unit(4 + 2 / 12, "feet"),
  18623. weight: math.unit(20, "lb"),
  18624. name: "Side",
  18625. image: {
  18626. source: "./media/characters/remus/side.svg"
  18627. }
  18628. },
  18629. },
  18630. [
  18631. {
  18632. name: "Normal",
  18633. height: math.unit(4 + 2 / 12, "feet"),
  18634. default: true
  18635. },
  18636. ]
  18637. ))
  18638. characterMakers.push(() => makeCharacter(
  18639. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18640. {
  18641. front: {
  18642. height: math.unit(4 + 11 / 12, "feet"),
  18643. weight: math.unit(114, "lb"),
  18644. name: "Front",
  18645. image: {
  18646. source: "./media/characters/raf/front.svg",
  18647. extra: 1504/1339,
  18648. bottom: 26/1530
  18649. }
  18650. },
  18651. side: {
  18652. height: math.unit(4 + 11 / 12, "feet"),
  18653. weight: math.unit(114, "lb"),
  18654. name: "Side",
  18655. image: {
  18656. source: "./media/characters/raf/side.svg",
  18657. extra: 1466/1316,
  18658. bottom: 29/1495
  18659. }
  18660. },
  18661. paw: {
  18662. height: math.unit(1.45, "feet"),
  18663. name: "Paw",
  18664. image: {
  18665. source: "./media/characters/raf/paw.svg"
  18666. },
  18667. extraAttributes: {
  18668. "toeSize": {
  18669. name: "Toe Size",
  18670. power: 2,
  18671. type: "area",
  18672. base: math.unit(0.004, "m^2")
  18673. },
  18674. "padSize": {
  18675. name: "Pad Size",
  18676. power: 2,
  18677. type: "area",
  18678. base: math.unit(0.04, "m^2")
  18679. },
  18680. "footSize": {
  18681. name: "Foot Size",
  18682. power: 2,
  18683. type: "area",
  18684. base: math.unit(0.08, "m^2")
  18685. },
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Micro",
  18692. height: math.unit(2, "inches")
  18693. },
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(4 + 11 / 12, "feet"),
  18697. default: true
  18698. },
  18699. {
  18700. name: "Macro",
  18701. height: math.unit(70, "feet")
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(1.5, "meters"),
  18710. weight: math.unit(68, "kg"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/liam-einarr/front.svg",
  18714. extra: 2822 / 2666
  18715. }
  18716. },
  18717. back: {
  18718. height: math.unit(1.5, "meters"),
  18719. weight: math.unit(68, "kg"),
  18720. name: "Back",
  18721. image: {
  18722. source: "./media/characters/liam-einarr/back.svg",
  18723. extra: 2822 / 2666,
  18724. bottom: 0.015
  18725. }
  18726. },
  18727. },
  18728. [
  18729. {
  18730. name: "Normal",
  18731. height: math.unit(1.5, "meters"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Macro",
  18736. height: math.unit(150, "meters")
  18737. },
  18738. {
  18739. name: "Megamacro",
  18740. height: math.unit(35, "km")
  18741. },
  18742. ]
  18743. ))
  18744. characterMakers.push(() => makeCharacter(
  18745. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18746. {
  18747. front: {
  18748. height: math.unit(6, "feet"),
  18749. weight: math.unit(75, "kg"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/linda/front.svg",
  18753. extra: 930 / 874,
  18754. bottom: 0.004
  18755. }
  18756. },
  18757. },
  18758. [
  18759. {
  18760. name: "Normal",
  18761. height: math.unit(6, "feet"),
  18762. default: true
  18763. },
  18764. ]
  18765. ))
  18766. characterMakers.push(() => makeCharacter(
  18767. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18768. {
  18769. front: {
  18770. height: math.unit(6 + 8 / 12, "feet"),
  18771. weight: math.unit(220, "lb"),
  18772. name: "Front",
  18773. image: {
  18774. source: "./media/characters/caylex/front.svg",
  18775. extra: 821 / 772,
  18776. bottom: 0.07
  18777. }
  18778. },
  18779. back: {
  18780. height: math.unit(6 + 8 / 12, "feet"),
  18781. weight: math.unit(220, "lb"),
  18782. name: "Back",
  18783. image: {
  18784. source: "./media/characters/caylex/back.svg",
  18785. extra: 821 / 772,
  18786. bottom: 0.022
  18787. }
  18788. },
  18789. hand: {
  18790. height: math.unit(1.25, "feet"),
  18791. name: "Hand",
  18792. image: {
  18793. source: "./media/characters/caylex/hand.svg"
  18794. }
  18795. },
  18796. foot: {
  18797. height: math.unit(1.6, "feet"),
  18798. name: "Foot",
  18799. image: {
  18800. source: "./media/characters/caylex/foot.svg"
  18801. }
  18802. },
  18803. armored: {
  18804. height: math.unit(6 + 8 / 12, "feet"),
  18805. weight: math.unit(250, "lb"),
  18806. name: "Armored",
  18807. image: {
  18808. source: "./media/characters/caylex/armored.svg",
  18809. extra: 1420 / 1310,
  18810. bottom: 0.045
  18811. }
  18812. },
  18813. },
  18814. [
  18815. {
  18816. name: "Normal",
  18817. height: math.unit(6 + 8 / 12, "feet"),
  18818. default: true
  18819. },
  18820. {
  18821. name: "Normal+",
  18822. height: math.unit(12, "feet")
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(7 + 6 / 12, "feet"),
  18831. weight: math.unit(288, "lb"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/alana/front.svg",
  18835. extra: 679 / 653,
  18836. bottom: 22.5 / 701
  18837. }
  18838. },
  18839. },
  18840. [
  18841. {
  18842. name: "Normal",
  18843. height: math.unit(7 + 6 / 12, "feet")
  18844. },
  18845. {
  18846. name: "Large",
  18847. height: math.unit(50, "feet")
  18848. },
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(100, "feet"),
  18852. default: true
  18853. },
  18854. {
  18855. name: "Macro+",
  18856. height: math.unit(200, "feet")
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(6 + 1 / 12, "feet"),
  18865. weight: math.unit(210, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/hasani/front.svg",
  18869. extra: 244 / 232,
  18870. bottom: 0.01
  18871. }
  18872. },
  18873. back: {
  18874. height: math.unit(6 + 1 / 12, "feet"),
  18875. weight: math.unit(210, "lb"),
  18876. name: "Back",
  18877. image: {
  18878. source: "./media/characters/hasani/back.svg",
  18879. extra: 244 / 232,
  18880. bottom: 0.01
  18881. }
  18882. },
  18883. },
  18884. [
  18885. {
  18886. name: "Normal",
  18887. height: math.unit(6 + 1 / 12, "feet")
  18888. },
  18889. {
  18890. name: "Macro",
  18891. height: math.unit(175, "feet"),
  18892. default: true
  18893. },
  18894. ]
  18895. ))
  18896. characterMakers.push(() => makeCharacter(
  18897. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18898. {
  18899. front: {
  18900. height: math.unit(1.82, "meters"),
  18901. weight: math.unit(140, "lb"),
  18902. name: "Front",
  18903. image: {
  18904. source: "./media/characters/nita/front.svg",
  18905. extra: 2473 / 2363,
  18906. bottom: 0.01
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(1.82, "m")
  18914. },
  18915. {
  18916. name: "Macro",
  18917. height: math.unit(300, "m")
  18918. },
  18919. {
  18920. name: "Mistake Canon",
  18921. height: math.unit(0.5, "miles"),
  18922. default: true
  18923. },
  18924. {
  18925. name: "Big Mistake",
  18926. height: math.unit(13, "miles")
  18927. },
  18928. {
  18929. name: "Playing God",
  18930. height: math.unit(2450, "miles")
  18931. },
  18932. ]
  18933. ))
  18934. characterMakers.push(() => makeCharacter(
  18935. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18936. {
  18937. front: {
  18938. height: math.unit(4, "feet"),
  18939. weight: math.unit(120, "lb"),
  18940. name: "Front",
  18941. image: {
  18942. source: "./media/characters/shiriko/front.svg",
  18943. extra: 970/934,
  18944. bottom: 5/975
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(4, "feet"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6, "feet"),
  18961. name: "front",
  18962. image: {
  18963. source: "./media/characters/deja/front.svg",
  18964. extra: 926 / 840,
  18965. bottom: 0.07
  18966. }
  18967. },
  18968. },
  18969. [
  18970. {
  18971. name: "Planck Length",
  18972. height: math.unit(1.6e-35, "meters")
  18973. },
  18974. {
  18975. name: "Normal",
  18976. height: math.unit(30.48, "meters"),
  18977. default: true
  18978. },
  18979. {
  18980. name: "Universal",
  18981. height: math.unit(8.8e26, "meters")
  18982. },
  18983. ]
  18984. ))
  18985. characterMakers.push(() => makeCharacter(
  18986. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18987. {
  18988. side: {
  18989. height: math.unit(8, "feet"),
  18990. weight: math.unit(6300, "lb"),
  18991. name: "Side",
  18992. image: {
  18993. source: "./media/characters/anima/side.svg",
  18994. bottom: 0.035
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(8, "feet"),
  19002. default: true
  19003. },
  19004. ]
  19005. ))
  19006. characterMakers.push(() => makeCharacter(
  19007. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19008. {
  19009. front: {
  19010. height: math.unit(8, "feet"),
  19011. weight: math.unit(350, "lb"),
  19012. name: "Front",
  19013. image: {
  19014. source: "./media/characters/bianca/front.svg",
  19015. extra: 234 / 225,
  19016. bottom: 0.03
  19017. }
  19018. },
  19019. },
  19020. [
  19021. {
  19022. name: "Normal",
  19023. height: math.unit(8, "feet"),
  19024. default: true
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(11 + 5/12, "feet"),
  19033. weight: math.unit(1200, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/adinia/front.svg",
  19037. extra: 1767/1641,
  19038. bottom: 44/1811
  19039. },
  19040. extraAttributes: {
  19041. "energyIntake": {
  19042. name: "Energy Intake",
  19043. power: 3,
  19044. type: "energy",
  19045. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19046. },
  19047. }
  19048. },
  19049. back: {
  19050. height: math.unit(11 + 5/12, "feet"),
  19051. weight: math.unit(1200, "lb"),
  19052. name: "Back",
  19053. image: {
  19054. source: "./media/characters/adinia/back.svg",
  19055. extra: 1834/1684,
  19056. bottom: 14/1848
  19057. },
  19058. extraAttributes: {
  19059. "energyIntake": {
  19060. name: "Energy Intake",
  19061. power: 3,
  19062. type: "energy",
  19063. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19064. },
  19065. }
  19066. },
  19067. maw: {
  19068. height: math.unit(3.79, "feet"),
  19069. name: "Maw",
  19070. image: {
  19071. source: "./media/characters/adinia/maw.svg"
  19072. }
  19073. },
  19074. rump: {
  19075. height: math.unit(4.6, "feet"),
  19076. name: "Rump",
  19077. image: {
  19078. source: "./media/characters/adinia/rump.svg"
  19079. }
  19080. },
  19081. },
  19082. [
  19083. {
  19084. name: "Normal",
  19085. height: math.unit(11 + 5 / 12, "feet"),
  19086. default: true
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(3, "meters"),
  19095. weight: math.unit(200, "kg"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/lykasa/front.svg",
  19099. extra: 1076 / 976,
  19100. bottom: 0.06
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(3, "meters")
  19108. },
  19109. {
  19110. name: "Kaiju",
  19111. height: math.unit(120, "meters"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Mega Kaiju",
  19116. height: math.unit(240, "km")
  19117. },
  19118. {
  19119. name: "Giga Kaiju",
  19120. height: math.unit(400, "megameters")
  19121. },
  19122. {
  19123. name: "Tera Kaiju",
  19124. height: math.unit(800, "gigameters")
  19125. },
  19126. {
  19127. name: "Kaiju Dragon Goddess",
  19128. height: math.unit(26, "zettaparsecs")
  19129. },
  19130. ]
  19131. ))
  19132. characterMakers.push(() => makeCharacter(
  19133. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19134. {
  19135. side: {
  19136. height: math.unit(283 / 124 * 6, "feet"),
  19137. weight: math.unit(35000, "lb"),
  19138. name: "Side",
  19139. image: {
  19140. source: "./media/characters/malfaren/side.svg",
  19141. extra: 1310/529,
  19142. bottom: 24/1334
  19143. }
  19144. },
  19145. front: {
  19146. height: math.unit(22.36, "feet"),
  19147. weight: math.unit(35000, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/malfaren/front.svg",
  19151. extra: 1237/1115,
  19152. bottom: 32/1269
  19153. }
  19154. },
  19155. maw: {
  19156. height: math.unit(6.9, "feet"),
  19157. name: "Maw",
  19158. image: {
  19159. source: "./media/characters/malfaren/maw.svg"
  19160. }
  19161. },
  19162. dick: {
  19163. height: math.unit(6.19, "feet"),
  19164. name: "Dick",
  19165. image: {
  19166. source: "./media/characters/malfaren/dick.svg"
  19167. }
  19168. },
  19169. eye: {
  19170. height: math.unit(0.69, "feet"),
  19171. name: "Eye",
  19172. image: {
  19173. source: "./media/characters/malfaren/eye.svg"
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Big",
  19180. height: math.unit(283 / 162 * 6, "feet"),
  19181. },
  19182. {
  19183. name: "Bigger",
  19184. height: math.unit(283 / 124 * 6, "feet")
  19185. },
  19186. {
  19187. name: "Massive",
  19188. height: math.unit(283 / 92 * 6, "feet"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "👀💦",
  19193. height: math.unit(283 / 73 * 6, "feet"),
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(1.7, "m"),
  19202. weight: math.unit(70, "kg"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/kernel/front.svg",
  19206. extra: 222 / 210,
  19207. bottom: 0.007
  19208. }
  19209. },
  19210. },
  19211. [
  19212. {
  19213. name: "Nano",
  19214. height: math.unit(17, "micrometers")
  19215. },
  19216. {
  19217. name: "Micro",
  19218. height: math.unit(1.7, "mm")
  19219. },
  19220. {
  19221. name: "Small",
  19222. height: math.unit(1.7, "cm")
  19223. },
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(1.7, "m"),
  19227. default: true
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19233. {
  19234. front: {
  19235. height: math.unit(1.75, "meters"),
  19236. weight: math.unit(65, "kg"),
  19237. name: "Front",
  19238. image: {
  19239. source: "./media/characters/jayne-folest/front.svg",
  19240. extra: 2115 / 2007,
  19241. bottom: 0.02
  19242. }
  19243. },
  19244. back: {
  19245. height: math.unit(1.75, "meters"),
  19246. weight: math.unit(65, "kg"),
  19247. name: "Back",
  19248. image: {
  19249. source: "./media/characters/jayne-folest/back.svg",
  19250. extra: 2115 / 2007,
  19251. bottom: 0.005
  19252. }
  19253. },
  19254. frontClothed: {
  19255. height: math.unit(1.75, "meters"),
  19256. weight: math.unit(65, "kg"),
  19257. name: "Front (Clothed)",
  19258. image: {
  19259. source: "./media/characters/jayne-folest/front-clothed.svg",
  19260. extra: 2115 / 2007,
  19261. bottom: 0.035
  19262. }
  19263. },
  19264. hand: {
  19265. height: math.unit(1 / 1.260, "feet"),
  19266. name: "Hand",
  19267. image: {
  19268. source: "./media/characters/jayne-folest/hand.svg"
  19269. }
  19270. },
  19271. foot: {
  19272. height: math.unit(1 / 0.918, "feet"),
  19273. name: "Foot",
  19274. image: {
  19275. source: "./media/characters/jayne-folest/foot.svg"
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Micro",
  19282. height: math.unit(4, "cm")
  19283. },
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(1.75, "meters")
  19287. },
  19288. {
  19289. name: "Macro",
  19290. height: math.unit(47.5, "meters"),
  19291. default: true
  19292. },
  19293. ]
  19294. ))
  19295. characterMakers.push(() => makeCharacter(
  19296. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19297. {
  19298. front: {
  19299. height: math.unit(180, "cm"),
  19300. weight: math.unit(70, "kg"),
  19301. name: "Front",
  19302. image: {
  19303. source: "./media/characters/algier/front.svg",
  19304. extra: 596 / 572,
  19305. bottom: 0.04
  19306. }
  19307. },
  19308. back: {
  19309. height: math.unit(180, "cm"),
  19310. weight: math.unit(70, "kg"),
  19311. name: "Back",
  19312. image: {
  19313. source: "./media/characters/algier/back.svg",
  19314. extra: 596 / 572,
  19315. bottom: 0.025
  19316. }
  19317. },
  19318. frontdressed: {
  19319. height: math.unit(180, "cm"),
  19320. weight: math.unit(150, "kg"),
  19321. name: "Front-dressed",
  19322. image: {
  19323. source: "./media/characters/algier/front-dressed.svg",
  19324. extra: 596 / 572,
  19325. bottom: 0.038
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Micro",
  19332. height: math.unit(5, "cm")
  19333. },
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(180, "cm"),
  19337. default: true
  19338. },
  19339. {
  19340. name: "Macro",
  19341. height: math.unit(64, "m")
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19347. {
  19348. upright: {
  19349. height: math.unit(7, "feet"),
  19350. weight: math.unit(300, "lb"),
  19351. name: "Upright",
  19352. image: {
  19353. source: "./media/characters/pretzel/upright.svg",
  19354. extra: 534 / 522,
  19355. bottom: 0.065
  19356. }
  19357. },
  19358. sprawling: {
  19359. height: math.unit(3.75, "feet"),
  19360. weight: math.unit(300, "lb"),
  19361. name: "Sprawling",
  19362. image: {
  19363. source: "./media/characters/pretzel/sprawling.svg",
  19364. extra: 314 / 281,
  19365. bottom: 0.1
  19366. }
  19367. },
  19368. tongue: {
  19369. height: math.unit(2, "feet"),
  19370. name: "Tongue",
  19371. image: {
  19372. source: "./media/characters/pretzel/tongue.svg"
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(7, "feet"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Oversized",
  19384. height: math.unit(15, "feet")
  19385. },
  19386. {
  19387. name: "Huge",
  19388. height: math.unit(30, "feet")
  19389. },
  19390. {
  19391. name: "Macro",
  19392. height: math.unit(250, "feet")
  19393. },
  19394. ]
  19395. ))
  19396. characterMakers.push(() => makeCharacter(
  19397. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19398. {
  19399. sideFront: {
  19400. height: math.unit(5 + 2 / 12, "feet"),
  19401. weight: math.unit(120, "lb"),
  19402. name: "Front Side",
  19403. image: {
  19404. source: "./media/characters/roxi/side-front.svg",
  19405. extra: 2924 / 2717,
  19406. bottom: 0.08
  19407. }
  19408. },
  19409. sideBack: {
  19410. height: math.unit(5 + 2 / 12, "feet"),
  19411. weight: math.unit(120, "lb"),
  19412. name: "Back Side",
  19413. image: {
  19414. source: "./media/characters/roxi/side-back.svg",
  19415. extra: 2904 / 2693,
  19416. bottom: 0.06
  19417. }
  19418. },
  19419. front: {
  19420. height: math.unit(5 + 2 / 12, "feet"),
  19421. weight: math.unit(120, "lb"),
  19422. name: "Front",
  19423. image: {
  19424. source: "./media/characters/roxi/front.svg",
  19425. extra: 2028 / 1907,
  19426. bottom: 0.01
  19427. }
  19428. },
  19429. frontAlt: {
  19430. height: math.unit(5 + 2 / 12, "feet"),
  19431. weight: math.unit(120, "lb"),
  19432. name: "Front (Alt)",
  19433. image: {
  19434. source: "./media/characters/roxi/front-alt.svg",
  19435. extra: 1828 / 1798,
  19436. bottom: 0.01
  19437. }
  19438. },
  19439. sitting: {
  19440. height: math.unit(2.8, "feet"),
  19441. weight: math.unit(120, "lb"),
  19442. name: "Sitting",
  19443. image: {
  19444. source: "./media/characters/roxi/sitting.svg",
  19445. extra: 2660 / 2462,
  19446. bottom: 0.1
  19447. }
  19448. },
  19449. },
  19450. [
  19451. {
  19452. name: "Normal",
  19453. height: math.unit(5 + 2 / 12, "feet"),
  19454. default: true
  19455. },
  19456. ]
  19457. ))
  19458. characterMakers.push(() => makeCharacter(
  19459. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19460. {
  19461. side: {
  19462. height: math.unit(55, "feet"),
  19463. weight: math.unit(153, "tons"),
  19464. name: "Side",
  19465. image: {
  19466. source: "./media/characters/shadow/side.svg",
  19467. extra: 701 / 628,
  19468. bottom: 0.02
  19469. }
  19470. },
  19471. flying: {
  19472. height: math.unit(145, "feet"),
  19473. weight: math.unit(153, "tons"),
  19474. name: "Flying",
  19475. image: {
  19476. source: "./media/characters/shadow/flying.svg"
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(55, "feet"),
  19484. default: true
  19485. },
  19486. ]
  19487. ))
  19488. characterMakers.push(() => makeCharacter(
  19489. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19490. {
  19491. front: {
  19492. height: math.unit(6, "feet"),
  19493. weight: math.unit(200, "lb"),
  19494. name: "Front",
  19495. image: {
  19496. source: "./media/characters/marcie/front.svg",
  19497. extra: 960 / 876,
  19498. bottom: 58 / 1017.87
  19499. }
  19500. },
  19501. },
  19502. [
  19503. {
  19504. name: "Macro",
  19505. height: math.unit(1, "mile"),
  19506. default: true
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(7, "feet"),
  19515. weight: math.unit(200, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/kachina/front.svg",
  19519. extra: 1290.68 / 1119,
  19520. bottom: 36.5 / 1327.18
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Normal",
  19527. height: math.unit(7, "feet"),
  19528. default: true
  19529. },
  19530. ]
  19531. ))
  19532. characterMakers.push(() => makeCharacter(
  19533. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19534. {
  19535. looking: {
  19536. height: math.unit(2, "meters"),
  19537. weight: math.unit(300, "kg"),
  19538. name: "Looking",
  19539. image: {
  19540. source: "./media/characters/kash/looking.svg",
  19541. extra: 474 / 344,
  19542. bottom: 0.03
  19543. }
  19544. },
  19545. side: {
  19546. height: math.unit(2, "meters"),
  19547. weight: math.unit(300, "kg"),
  19548. name: "Side",
  19549. image: {
  19550. source: "./media/characters/kash/side.svg",
  19551. extra: 302 / 251,
  19552. bottom: 0.03
  19553. }
  19554. },
  19555. front: {
  19556. height: math.unit(2, "meters"),
  19557. weight: math.unit(300, "kg"),
  19558. name: "Front",
  19559. image: {
  19560. source: "./media/characters/kash/front.svg",
  19561. extra: 495 / 360,
  19562. bottom: 0.015
  19563. }
  19564. },
  19565. },
  19566. [
  19567. {
  19568. name: "Normal",
  19569. height: math.unit(2, "meters"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Big",
  19574. height: math.unit(3, "meters")
  19575. },
  19576. {
  19577. name: "Large",
  19578. height: math.unit(5, "meters")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19584. {
  19585. feeding: {
  19586. height: math.unit(6.7, "feet"),
  19587. weight: math.unit(350, "lb"),
  19588. name: "Feeding",
  19589. image: {
  19590. source: "./media/characters/lalim/feeding.svg",
  19591. }
  19592. },
  19593. },
  19594. [
  19595. {
  19596. name: "Normal",
  19597. height: math.unit(6.7, "feet"),
  19598. default: true
  19599. },
  19600. ]
  19601. ))
  19602. characterMakers.push(() => makeCharacter(
  19603. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19604. {
  19605. front: {
  19606. height: math.unit(9.5, "feet"),
  19607. weight: math.unit(600, "lb"),
  19608. name: "Front",
  19609. image: {
  19610. source: "./media/characters/de'vout/front.svg",
  19611. extra: 1443 / 1328,
  19612. bottom: 0.025
  19613. }
  19614. },
  19615. back: {
  19616. height: math.unit(9.5, "feet"),
  19617. weight: math.unit(600, "lb"),
  19618. name: "Back",
  19619. image: {
  19620. source: "./media/characters/de'vout/back.svg",
  19621. extra: 1443 / 1328
  19622. }
  19623. },
  19624. frontDressed: {
  19625. height: math.unit(9.5, "feet"),
  19626. weight: math.unit(600, "lb"),
  19627. name: "Front (Dressed",
  19628. image: {
  19629. source: "./media/characters/de'vout/front-dressed.svg",
  19630. extra: 1443 / 1328,
  19631. bottom: 0.025
  19632. }
  19633. },
  19634. backDressed: {
  19635. height: math.unit(9.5, "feet"),
  19636. weight: math.unit(600, "lb"),
  19637. name: "Back (Dressed",
  19638. image: {
  19639. source: "./media/characters/de'vout/back-dressed.svg",
  19640. extra: 1443 / 1328
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(9.5, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(8, "feet"),
  19657. weight: math.unit(225, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/talana/front.svg",
  19661. extra: 1410 / 1300,
  19662. bottom: 0.015
  19663. }
  19664. },
  19665. frontDressed: {
  19666. height: math.unit(8, "feet"),
  19667. weight: math.unit(225, "lb"),
  19668. name: "Front (Dressed",
  19669. image: {
  19670. source: "./media/characters/talana/front-dressed.svg",
  19671. extra: 1410 / 1300,
  19672. bottom: 0.015
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(8, "feet"),
  19680. default: true
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19686. {
  19687. side: {
  19688. height: math.unit(7.2, "feet"),
  19689. weight: math.unit(150, "lb"),
  19690. name: "Side",
  19691. image: {
  19692. source: "./media/characters/xeauvok/side.svg",
  19693. extra: 1975 / 1523,
  19694. bottom: 0.07
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(7.2, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19708. {
  19709. side: {
  19710. height: math.unit(4, "meters"),
  19711. weight: math.unit(2200, "kg"),
  19712. name: "Side",
  19713. image: {
  19714. source: "./media/characters/zara/side.svg",
  19715. extra: 765/744,
  19716. bottom: 156/921
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(4, "meters"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19730. {
  19731. side: {
  19732. height: math.unit(6, "feet"),
  19733. weight: math.unit(150, "lb"),
  19734. name: "Side",
  19735. image: {
  19736. source: "./media/characters/richard-dragon/side.svg",
  19737. extra: 845 / 340,
  19738. bottom: 0.017
  19739. }
  19740. },
  19741. maw: {
  19742. height: math.unit(2.97, "feet"),
  19743. name: "Maw",
  19744. image: {
  19745. source: "./media/characters/richard-dragon/maw.svg"
  19746. }
  19747. },
  19748. },
  19749. [
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(4, "feet"),
  19757. weight: math.unit(100, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/richard-smeargle/front.svg",
  19761. extra: 2952 / 2820,
  19762. bottom: 0.028
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(4, "feet"),
  19770. default: true
  19771. },
  19772. {
  19773. name: "Dynamax",
  19774. height: math.unit(20, "meters")
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(6, "feet"),
  19783. weight: math.unit(110, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/klay/front.svg",
  19787. extra: 962 / 883,
  19788. bottom: 0.04
  19789. }
  19790. },
  19791. back: {
  19792. height: math.unit(6, "feet"),
  19793. weight: math.unit(110, "lb"),
  19794. name: "Back",
  19795. image: {
  19796. source: "./media/characters/klay/back.svg",
  19797. extra: 962 / 883
  19798. }
  19799. },
  19800. beans: {
  19801. height: math.unit(1.15, "feet"),
  19802. name: "Beans",
  19803. image: {
  19804. source: "./media/characters/klay/beans.svg"
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Micro",
  19811. height: math.unit(6, "inches")
  19812. },
  19813. {
  19814. name: "Mini",
  19815. height: math.unit(3, "feet")
  19816. },
  19817. {
  19818. name: "Normal",
  19819. height: math.unit(6, "feet"),
  19820. default: true
  19821. },
  19822. {
  19823. name: "Big",
  19824. height: math.unit(25, "feet")
  19825. },
  19826. {
  19827. name: "Macro",
  19828. height: math.unit(100, "feet")
  19829. },
  19830. {
  19831. name: "Megamacro",
  19832. height: math.unit(400, "feet")
  19833. },
  19834. ]
  19835. ))
  19836. characterMakers.push(() => makeCharacter(
  19837. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19838. {
  19839. front: {
  19840. height: math.unit(6, "feet"),
  19841. weight: math.unit(160, "lb"),
  19842. name: "Front",
  19843. image: {
  19844. source: "./media/characters/marcus/front.svg",
  19845. extra: 734 / 676,
  19846. bottom: 0.03
  19847. }
  19848. },
  19849. },
  19850. [
  19851. {
  19852. name: "Little",
  19853. height: math.unit(6, "feet")
  19854. },
  19855. {
  19856. name: "Normal",
  19857. height: math.unit(110, "feet"),
  19858. default: true
  19859. },
  19860. {
  19861. name: "Macro",
  19862. height: math.unit(250, "feet")
  19863. },
  19864. {
  19865. name: "Megamacro",
  19866. height: math.unit(1000, "feet")
  19867. },
  19868. ]
  19869. ))
  19870. characterMakers.push(() => makeCharacter(
  19871. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19872. {
  19873. front: {
  19874. height: math.unit(7, "feet"),
  19875. weight: math.unit(275, "lb"),
  19876. name: "Front",
  19877. image: {
  19878. source: "./media/characters/claude-delroute/front.svg",
  19879. extra: 902/827,
  19880. bottom: 26/928
  19881. }
  19882. },
  19883. side: {
  19884. height: math.unit(7, "feet"),
  19885. weight: math.unit(275, "lb"),
  19886. name: "Side",
  19887. image: {
  19888. source: "./media/characters/claude-delroute/side.svg",
  19889. extra: 908/853,
  19890. bottom: 16/924
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(7, "feet"),
  19895. weight: math.unit(275, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/claude-delroute/back.svg",
  19899. extra: 911/829,
  19900. bottom: 18/929
  19901. }
  19902. },
  19903. maw: {
  19904. height: math.unit(0.6407, "meters"),
  19905. name: "Maw",
  19906. image: {
  19907. source: "./media/characters/claude-delroute/maw.svg"
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(7, "feet"),
  19915. default: true
  19916. },
  19917. {
  19918. name: "Lorge",
  19919. height: math.unit(20, "feet")
  19920. },
  19921. ]
  19922. ))
  19923. characterMakers.push(() => makeCharacter(
  19924. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19925. {
  19926. front: {
  19927. height: math.unit(8 + 4 / 12, "feet"),
  19928. weight: math.unit(600, "lb"),
  19929. name: "Front",
  19930. image: {
  19931. source: "./media/characters/dragonien/front.svg",
  19932. extra: 100 / 94,
  19933. bottom: 3.3 / 103.3445
  19934. }
  19935. },
  19936. back: {
  19937. height: math.unit(8 + 4 / 12, "feet"),
  19938. weight: math.unit(600, "lb"),
  19939. name: "Back",
  19940. image: {
  19941. source: "./media/characters/dragonien/back.svg",
  19942. extra: 776 / 746,
  19943. bottom: 6.4 / 782.0616
  19944. }
  19945. },
  19946. foot: {
  19947. height: math.unit(1.54, "feet"),
  19948. name: "Foot",
  19949. image: {
  19950. source: "./media/characters/dragonien/foot.svg",
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(8 + 4 / 12, "feet"),
  19958. default: true
  19959. },
  19960. {
  19961. name: "Macro",
  19962. height: math.unit(200, "feet")
  19963. },
  19964. {
  19965. name: "Megamacro",
  19966. height: math.unit(1, "mile")
  19967. },
  19968. {
  19969. name: "Gigamacro",
  19970. height: math.unit(1000, "miles")
  19971. },
  19972. ]
  19973. ))
  19974. characterMakers.push(() => makeCharacter(
  19975. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19976. {
  19977. front: {
  19978. height: math.unit(5 + 2 / 12, "feet"),
  19979. weight: math.unit(110, "lb"),
  19980. name: "Front",
  19981. image: {
  19982. source: "./media/characters/desta/front.svg",
  19983. extra: 767 / 726,
  19984. bottom: 11.7 / 779
  19985. }
  19986. },
  19987. back: {
  19988. height: math.unit(5 + 2 / 12, "feet"),
  19989. weight: math.unit(110, "lb"),
  19990. name: "Back",
  19991. image: {
  19992. source: "./media/characters/desta/back.svg",
  19993. extra: 777 / 728,
  19994. bottom: 6 / 784
  19995. }
  19996. },
  19997. frontAlt: {
  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-alt.svg",
  20003. extra: 1482 / 1417
  20004. }
  20005. },
  20006. side: {
  20007. height: math.unit(5 + 2 / 12, "feet"),
  20008. weight: math.unit(110, "lb"),
  20009. name: "Side",
  20010. image: {
  20011. source: "./media/characters/desta/side.svg",
  20012. extra: 2579 / 2491,
  20013. bottom: 0.053
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Micro",
  20020. height: math.unit(6, "inches")
  20021. },
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(5 + 2 / 12, "feet"),
  20025. default: true
  20026. },
  20027. {
  20028. name: "Macro",
  20029. height: math.unit(62, "feet")
  20030. },
  20031. {
  20032. name: "Megamacro",
  20033. height: math.unit(1800, "feet")
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20039. {
  20040. front: {
  20041. height: math.unit(10, "feet"),
  20042. weight: math.unit(700, "lb"),
  20043. name: "Front",
  20044. image: {
  20045. source: "./media/characters/storm-alystar/front.svg",
  20046. extra: 2112 / 1898,
  20047. bottom: 0.034
  20048. }
  20049. },
  20050. },
  20051. [
  20052. {
  20053. name: "Micro",
  20054. height: math.unit(3.5, "inches")
  20055. },
  20056. {
  20057. name: "Normal",
  20058. height: math.unit(10, "feet"),
  20059. default: true
  20060. },
  20061. {
  20062. name: "Macro",
  20063. height: math.unit(400, "feet")
  20064. },
  20065. {
  20066. name: "Deific",
  20067. height: math.unit(60, "miles")
  20068. },
  20069. ]
  20070. ))
  20071. characterMakers.push(() => makeCharacter(
  20072. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20073. {
  20074. front: {
  20075. height: math.unit(2.35, "meters"),
  20076. weight: math.unit(119, "kg"),
  20077. name: "Front",
  20078. image: {
  20079. source: "./media/characters/ilia/front.svg",
  20080. extra: 1285 / 1255,
  20081. bottom: 0.06
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(2.35, "meters")
  20089. },
  20090. {
  20091. name: "Macro",
  20092. height: math.unit(140, "meters"),
  20093. default: true
  20094. },
  20095. {
  20096. name: "Megamacro",
  20097. height: math.unit(100, "miles")
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(6 + 5 / 12, "feet"),
  20106. weight: math.unit(190, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/kingdead/front.svg",
  20110. extra: 1228 / 1177
  20111. }
  20112. },
  20113. },
  20114. [
  20115. {
  20116. name: "Micro",
  20117. height: math.unit(7, "inches")
  20118. },
  20119. {
  20120. name: "Normal",
  20121. height: math.unit(6 + 5 / 12, "feet")
  20122. },
  20123. {
  20124. name: "Macro",
  20125. height: math.unit(150, "feet"),
  20126. default: true
  20127. },
  20128. {
  20129. name: "Megamacro",
  20130. height: math.unit(200, "miles")
  20131. },
  20132. ]
  20133. ))
  20134. characterMakers.push(() => makeCharacter(
  20135. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20136. {
  20137. front: {
  20138. height: math.unit(8, "feet"),
  20139. weight: math.unit(600, "lb"),
  20140. name: "Front",
  20141. image: {
  20142. source: "./media/characters/kyrehx/front.svg",
  20143. extra: 1195 / 1095,
  20144. bottom: 0.034
  20145. }
  20146. },
  20147. },
  20148. [
  20149. {
  20150. name: "Micro",
  20151. height: math.unit(2, "inches")
  20152. },
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(8, "feet"),
  20156. default: true
  20157. },
  20158. {
  20159. name: "Macro",
  20160. height: math.unit(255, "feet")
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20166. {
  20167. front: {
  20168. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20169. weight: math.unit(184, "lb"),
  20170. name: "Front",
  20171. image: {
  20172. source: "./media/characters/xang/front.svg",
  20173. extra: 845 / 755
  20174. }
  20175. },
  20176. },
  20177. [
  20178. {
  20179. name: "Normal",
  20180. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20181. default: true
  20182. },
  20183. {
  20184. name: "Macro",
  20185. height: math.unit(0.935 * 146, "feet")
  20186. },
  20187. {
  20188. name: "Megamacro",
  20189. height: math.unit(0.935 * 3, "miles")
  20190. },
  20191. ]
  20192. ))
  20193. characterMakers.push(() => makeCharacter(
  20194. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20195. {
  20196. frontDressed: {
  20197. height: math.unit(5 + 7 / 12, "feet"),
  20198. weight: math.unit(140, "lb"),
  20199. name: "Front (Dressed)",
  20200. image: {
  20201. source: "./media/characters/doc-weardno/front-dressed.svg",
  20202. extra: 263 / 234
  20203. }
  20204. },
  20205. backDressed: {
  20206. height: math.unit(5 + 7 / 12, "feet"),
  20207. weight: math.unit(140, "lb"),
  20208. name: "Back (Dressed)",
  20209. image: {
  20210. source: "./media/characters/doc-weardno/back-dressed.svg",
  20211. extra: 266 / 238
  20212. }
  20213. },
  20214. front: {
  20215. height: math.unit(5 + 7 / 12, "feet"),
  20216. weight: math.unit(140, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/doc-weardno/front.svg",
  20220. extra: 254 / 233
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Micro",
  20227. height: math.unit(3, "inches")
  20228. },
  20229. {
  20230. name: "Normal",
  20231. height: math.unit(5 + 7 / 12, "feet"),
  20232. default: true
  20233. },
  20234. {
  20235. name: "Macro",
  20236. height: math.unit(25, "feet")
  20237. },
  20238. {
  20239. name: "Megamacro",
  20240. height: math.unit(2, "miles")
  20241. },
  20242. ]
  20243. ))
  20244. characterMakers.push(() => makeCharacter(
  20245. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20246. {
  20247. front: {
  20248. height: math.unit(6 + 2 / 12, "feet"),
  20249. weight: math.unit(153, "lb"),
  20250. name: "Front",
  20251. image: {
  20252. source: "./media/characters/seth-whilst/front.svg",
  20253. bottom: 0.07
  20254. }
  20255. },
  20256. },
  20257. [
  20258. {
  20259. name: "Micro",
  20260. height: math.unit(5, "inches")
  20261. },
  20262. {
  20263. name: "Normal",
  20264. height: math.unit(6 + 2 / 12, "feet"),
  20265. default: true
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20271. {
  20272. front: {
  20273. height: math.unit(3, "inches"),
  20274. weight: math.unit(8, "grams"),
  20275. name: "Front",
  20276. image: {
  20277. source: "./media/characters/pocket-jabari/front.svg",
  20278. extra: 1024 / 974,
  20279. bottom: 0.039
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Minimicro",
  20286. height: math.unit(8, "mm")
  20287. },
  20288. {
  20289. name: "Micro",
  20290. height: math.unit(3, "inches"),
  20291. default: true
  20292. },
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(3, "feet")
  20296. },
  20297. ]
  20298. ))
  20299. characterMakers.push(() => makeCharacter(
  20300. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20301. {
  20302. frontDressed: {
  20303. height: math.unit(15, "feet"),
  20304. weight: math.unit(3280, "lb"),
  20305. name: "Front (Dressed)",
  20306. image: {
  20307. source: "./media/characters/sapphy/front-dressed.svg",
  20308. extra: 1951/1654,
  20309. bottom: 194/2145
  20310. },
  20311. form: "anthro",
  20312. default: true
  20313. },
  20314. backDressed: {
  20315. height: math.unit(15, "feet"),
  20316. weight: math.unit(3280, "lb"),
  20317. name: "Back (Dressed)",
  20318. image: {
  20319. source: "./media/characters/sapphy/back-dressed.svg",
  20320. extra: 2058/1918,
  20321. bottom: 125/2183
  20322. },
  20323. form: "anthro"
  20324. },
  20325. frontNude: {
  20326. height: math.unit(15, "feet"),
  20327. weight: math.unit(3280, "lb"),
  20328. name: "Front (Nude)",
  20329. image: {
  20330. source: "./media/characters/sapphy/front-nude.svg",
  20331. extra: 1951/1654,
  20332. bottom: 194/2145
  20333. },
  20334. form: "anthro"
  20335. },
  20336. backNude: {
  20337. height: math.unit(15, "feet"),
  20338. weight: math.unit(3280, "lb"),
  20339. name: "Back (Nude)",
  20340. image: {
  20341. source: "./media/characters/sapphy/back-nude.svg",
  20342. extra: 2058/1918,
  20343. bottom: 125/2183
  20344. },
  20345. form: "anthro"
  20346. },
  20347. full: {
  20348. height: math.unit(15, "feet"),
  20349. weight: math.unit(3280, "lb"),
  20350. name: "Full",
  20351. image: {
  20352. source: "./media/characters/sapphy/full.svg",
  20353. extra: 1396/1317,
  20354. bottom: 44/1440
  20355. },
  20356. form: "anthro"
  20357. },
  20358. dick: {
  20359. height: math.unit(3.8, "feet"),
  20360. name: "Dick",
  20361. image: {
  20362. source: "./media/characters/sapphy/dick.svg"
  20363. },
  20364. form: "anthro"
  20365. },
  20366. feral: {
  20367. height: math.unit(35, "feet"),
  20368. weight: math.unit(160, "tons"),
  20369. name: "Feral",
  20370. image: {
  20371. source: "./media/characters/sapphy/feral.svg",
  20372. extra: 1050/573,
  20373. bottom: 60/1110
  20374. },
  20375. form: "feral",
  20376. default: true
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(15, "feet"),
  20383. form: "anthro"
  20384. },
  20385. {
  20386. name: "Casual Macro",
  20387. height: math.unit(120, "feet"),
  20388. form: "anthro"
  20389. },
  20390. {
  20391. name: "Macro",
  20392. height: math.unit(2150, "feet"),
  20393. default: true,
  20394. form: "anthro"
  20395. },
  20396. {
  20397. name: "Megamacro",
  20398. height: math.unit(8, "miles"),
  20399. form: "anthro"
  20400. },
  20401. {
  20402. name: "Galaxy Mom",
  20403. height: math.unit(6, "megalightyears"),
  20404. form: "anthro"
  20405. },
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(35, "feet"),
  20409. form: "feral",
  20410. default: true
  20411. },
  20412. {
  20413. name: "Macro",
  20414. height: math.unit(300, "feet"),
  20415. form: "feral"
  20416. },
  20417. {
  20418. name: "Galaxy Mom",
  20419. height: math.unit(10, "megalightyears"),
  20420. form: "feral"
  20421. },
  20422. ],
  20423. {
  20424. "anthro": {
  20425. name: "Anthro",
  20426. default: true
  20427. },
  20428. "feral": {
  20429. name: "Feral"
  20430. }
  20431. }
  20432. ))
  20433. characterMakers.push(() => makeCharacter(
  20434. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20435. {
  20436. hyenaFront: {
  20437. height: math.unit(6, "feet"),
  20438. weight: math.unit(190, "lb"),
  20439. name: "Front",
  20440. image: {
  20441. source: "./media/characters/kiro/hyena-front.svg",
  20442. extra: 927/839,
  20443. bottom: 91/1018
  20444. },
  20445. form: "hyena",
  20446. default: true
  20447. },
  20448. front: {
  20449. height: math.unit(6, "feet"),
  20450. weight: math.unit(170, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/kiro/front.svg",
  20454. extra: 1064 / 1012,
  20455. bottom: 0.052
  20456. },
  20457. form: "folf",
  20458. default: true
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Micro",
  20464. height: math.unit(6, "inches"),
  20465. form: "folf"
  20466. },
  20467. {
  20468. name: "Normal",
  20469. height: math.unit(6, "feet"),
  20470. form: "folf",
  20471. default: true
  20472. },
  20473. {
  20474. name: "Macro",
  20475. height: math.unit(72, "feet"),
  20476. form: "folf"
  20477. },
  20478. {
  20479. name: "Micro",
  20480. height: math.unit(6, "inches"),
  20481. form: "hyena"
  20482. },
  20483. {
  20484. name: "Normal",
  20485. height: math.unit(6, "feet"),
  20486. form: "hyena",
  20487. default: true
  20488. },
  20489. {
  20490. name: "Macro",
  20491. height: math.unit(72, "feet"),
  20492. form: "hyena"
  20493. },
  20494. ],
  20495. {
  20496. "hyena": {
  20497. name: "Hyena",
  20498. default: true
  20499. },
  20500. "folf": {
  20501. name: "Folf",
  20502. },
  20503. }
  20504. ))
  20505. characterMakers.push(() => makeCharacter(
  20506. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20507. {
  20508. front: {
  20509. height: math.unit(5 + 9 / 12, "feet"),
  20510. weight: math.unit(175, "lb"),
  20511. name: "Front",
  20512. image: {
  20513. source: "./media/characters/irishfox/front.svg",
  20514. extra: 1912 / 1680,
  20515. bottom: 0.02
  20516. }
  20517. },
  20518. },
  20519. [
  20520. {
  20521. name: "Nano",
  20522. height: math.unit(1, "mm")
  20523. },
  20524. {
  20525. name: "Micro",
  20526. height: math.unit(2, "inches")
  20527. },
  20528. {
  20529. name: "Normal",
  20530. height: math.unit(5 + 9 / 12, "feet"),
  20531. default: true
  20532. },
  20533. {
  20534. name: "Macro",
  20535. height: math.unit(45, "feet")
  20536. },
  20537. ]
  20538. ))
  20539. characterMakers.push(() => makeCharacter(
  20540. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20541. {
  20542. front: {
  20543. height: math.unit(6 + 1 / 12, "feet"),
  20544. weight: math.unit(75, "lb"),
  20545. name: "Front",
  20546. image: {
  20547. source: "./media/characters/aronai-sieyes/front.svg",
  20548. extra: 1532/1450,
  20549. bottom: 42/1574
  20550. }
  20551. },
  20552. side: {
  20553. height: math.unit(6 + 1 / 12, "feet"),
  20554. weight: math.unit(75, "lb"),
  20555. name: "Side",
  20556. image: {
  20557. source: "./media/characters/aronai-sieyes/side.svg",
  20558. extra: 1422/1365,
  20559. bottom: 148/1570
  20560. }
  20561. },
  20562. back: {
  20563. height: math.unit(6 + 1 / 12, "feet"),
  20564. weight: math.unit(75, "lb"),
  20565. name: "Back",
  20566. image: {
  20567. source: "./media/characters/aronai-sieyes/back.svg",
  20568. extra: 1526/1464,
  20569. bottom: 51/1577
  20570. }
  20571. },
  20572. dressed: {
  20573. height: math.unit(6 + 1 / 12, "feet"),
  20574. weight: math.unit(75, "lb"),
  20575. name: "Dressed",
  20576. image: {
  20577. source: "./media/characters/aronai-sieyes/dressed.svg",
  20578. extra: 1559/1483,
  20579. bottom: 39/1598
  20580. }
  20581. },
  20582. slit: {
  20583. height: math.unit(1.3, "feet"),
  20584. name: "Slit",
  20585. image: {
  20586. source: "./media/characters/aronai-sieyes/slit.svg"
  20587. }
  20588. },
  20589. slitSpread: {
  20590. height: math.unit(0.9, "feet"),
  20591. name: "Slit (Spread)",
  20592. image: {
  20593. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20594. }
  20595. },
  20596. rump: {
  20597. height: math.unit(1.3, "feet"),
  20598. name: "Rump",
  20599. image: {
  20600. source: "./media/characters/aronai-sieyes/rump.svg"
  20601. }
  20602. },
  20603. maw: {
  20604. height: math.unit(1.25, "feet"),
  20605. name: "Maw",
  20606. image: {
  20607. source: "./media/characters/aronai-sieyes/maw.svg"
  20608. }
  20609. },
  20610. feral: {
  20611. height: math.unit(18, "feet"),
  20612. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20613. name: "Feral",
  20614. image: {
  20615. source: "./media/characters/aronai-sieyes/feral.svg",
  20616. extra: 1530 / 1240,
  20617. bottom: 0.035
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Micro",
  20624. height: math.unit(2, "inches")
  20625. },
  20626. {
  20627. name: "Normal",
  20628. height: math.unit(6 + 1 / 12, "feet"),
  20629. default: true
  20630. }
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(12, "feet"),
  20638. weight: math.unit(410, "kg"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/xuna/front.svg",
  20642. extra: 2184 / 1980
  20643. }
  20644. },
  20645. side: {
  20646. height: math.unit(12, "feet"),
  20647. weight: math.unit(410, "kg"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/xuna/side.svg",
  20651. extra: 2184 / 1980
  20652. }
  20653. },
  20654. back: {
  20655. height: math.unit(12, "feet"),
  20656. weight: math.unit(410, "kg"),
  20657. name: "Back",
  20658. image: {
  20659. source: "./media/characters/xuna/back.svg",
  20660. extra: 2184 / 1980
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Nano glow",
  20667. height: math.unit(10, "nm")
  20668. },
  20669. {
  20670. name: "Micro floof",
  20671. height: math.unit(0.3, "m")
  20672. },
  20673. {
  20674. name: "Huggable softy boi",
  20675. height: math.unit(3.6576, "m"),
  20676. default: true
  20677. },
  20678. {
  20679. name: "Admirable floof",
  20680. height: math.unit(80, "meters")
  20681. },
  20682. {
  20683. name: "Gentle macro",
  20684. height: math.unit(300, "meters")
  20685. },
  20686. {
  20687. name: "Very careful floof",
  20688. height: math.unit(3200, "meters")
  20689. },
  20690. {
  20691. name: "The mega floof",
  20692. height: math.unit(36000, "meters")
  20693. },
  20694. {
  20695. name: "Giga-fur-Wicker",
  20696. height: math.unit(4800000, "meters")
  20697. },
  20698. {
  20699. name: "Licky world",
  20700. height: math.unit(20000000, "meters")
  20701. },
  20702. {
  20703. name: "Floofy cyan sun",
  20704. height: math.unit(1500000000, "meters")
  20705. },
  20706. {
  20707. name: "Milky Wicker",
  20708. height: math.unit(1000000000000000000000, "meters")
  20709. },
  20710. {
  20711. name: "The observing Wicker",
  20712. height: math.unit(999999999999999999999999999, "meters")
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(5 + 9 / 12, "feet"),
  20721. weight: math.unit(150, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/arokha-sieyes/front.svg",
  20725. extra: 1425 / 1284,
  20726. bottom: 0.05
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(5 + 9 / 12, "feet")
  20734. },
  20735. {
  20736. name: "Macro",
  20737. height: math.unit(30, "meters"),
  20738. default: true
  20739. },
  20740. ]
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20744. {
  20745. front: {
  20746. height: math.unit(6, "feet"),
  20747. weight: math.unit(180, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/arokh-sieyes/front.svg",
  20751. extra: 1830 / 1769,
  20752. bottom: 0.01
  20753. }
  20754. },
  20755. },
  20756. [
  20757. {
  20758. name: "Normal",
  20759. height: math.unit(6, "feet")
  20760. },
  20761. {
  20762. name: "Macro",
  20763. height: math.unit(30, "meters"),
  20764. default: true
  20765. },
  20766. ]
  20767. ))
  20768. characterMakers.push(() => makeCharacter(
  20769. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20770. {
  20771. side: {
  20772. height: math.unit(13 + 1 / 12, "feet"),
  20773. weight: math.unit(8.5, "tonnes"),
  20774. preyCapacity: math.unit(36, "people"),
  20775. name: "Side",
  20776. image: {
  20777. source: "./media/characters/goldeneye/side.svg",
  20778. extra: 1139/741,
  20779. bottom: 98/1237
  20780. }
  20781. },
  20782. front: {
  20783. height: math.unit(5.1, "feet"),
  20784. weight: math.unit(8.5, "tonnes"),
  20785. preyCapacity: math.unit(36, "people"),
  20786. name: "Front",
  20787. image: {
  20788. source: "./media/characters/goldeneye/front.svg",
  20789. extra: 635/365,
  20790. bottom: 598/1233
  20791. }
  20792. },
  20793. maw: {
  20794. height: math.unit(6.6, "feet"),
  20795. name: "Maw",
  20796. image: {
  20797. source: "./media/characters/goldeneye/maw.svg"
  20798. }
  20799. },
  20800. headFront: {
  20801. height: math.unit(8, "feet"),
  20802. name: "Head (Front)",
  20803. image: {
  20804. source: "./media/characters/goldeneye/head-front.svg"
  20805. }
  20806. },
  20807. headSide: {
  20808. height: math.unit(6, "feet"),
  20809. name: "Head (Side)",
  20810. image: {
  20811. source: "./media/characters/goldeneye/head-side.svg"
  20812. }
  20813. },
  20814. headBack: {
  20815. height: math.unit(8, "feet"),
  20816. name: "Head (Back)",
  20817. image: {
  20818. source: "./media/characters/goldeneye/head-back.svg"
  20819. }
  20820. },
  20821. paw: {
  20822. height: math.unit(3.4, "feet"),
  20823. name: "Paw",
  20824. image: {
  20825. source: "./media/characters/goldeneye/paw.svg"
  20826. }
  20827. },
  20828. toering: {
  20829. height: math.unit(0.45, "feet"),
  20830. name: "Toering",
  20831. image: {
  20832. source: "./media/characters/goldeneye/toering.svg"
  20833. }
  20834. },
  20835. eyes: {
  20836. height: math.unit(0.5, "feet"),
  20837. name: "Eyes",
  20838. image: {
  20839. source: "./media/characters/goldeneye/eyes.svg"
  20840. }
  20841. },
  20842. },
  20843. [
  20844. {
  20845. name: "Normal",
  20846. height: math.unit(13 + 1 / 12, "feet"),
  20847. default: true
  20848. },
  20849. ]
  20850. ))
  20851. characterMakers.push(() => makeCharacter(
  20852. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20853. {
  20854. front: {
  20855. height: math.unit(6 + 1 / 12, "feet"),
  20856. weight: math.unit(210, "lb"),
  20857. name: "Front",
  20858. image: {
  20859. source: "./media/characters/leonardo-lycheborne/front.svg",
  20860. extra: 776/723,
  20861. bottom: 34/810
  20862. }
  20863. },
  20864. side: {
  20865. height: math.unit(6 + 1 / 12, "feet"),
  20866. weight: math.unit(210, "lb"),
  20867. name: "Side",
  20868. image: {
  20869. source: "./media/characters/leonardo-lycheborne/side.svg",
  20870. extra: 780/728,
  20871. bottom: 12/792
  20872. }
  20873. },
  20874. back: {
  20875. height: math.unit(6 + 1 / 12, "feet"),
  20876. weight: math.unit(210, "lb"),
  20877. name: "Back",
  20878. image: {
  20879. source: "./media/characters/leonardo-lycheborne/back.svg",
  20880. extra: 775/721,
  20881. bottom: 17/792
  20882. }
  20883. },
  20884. hand: {
  20885. height: math.unit(1.08, "feet"),
  20886. name: "Hand",
  20887. image: {
  20888. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20889. }
  20890. },
  20891. foot: {
  20892. height: math.unit(1.32, "feet"),
  20893. name: "Foot",
  20894. image: {
  20895. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20896. }
  20897. },
  20898. maw: {
  20899. height: math.unit(1, "feet"),
  20900. name: "Maw",
  20901. image: {
  20902. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20903. }
  20904. },
  20905. were: {
  20906. height: math.unit(20, "feet"),
  20907. weight: math.unit(7800, "lb"),
  20908. name: "Were",
  20909. image: {
  20910. source: "./media/characters/leonardo-lycheborne/were.svg",
  20911. extra: 1224/1165,
  20912. bottom: 72/1296
  20913. }
  20914. },
  20915. feral: {
  20916. height: math.unit(7.5, "feet"),
  20917. weight: math.unit(600, "lb"),
  20918. name: "Feral",
  20919. image: {
  20920. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20921. extra: 797/702,
  20922. bottom: 139/936
  20923. }
  20924. },
  20925. taur: {
  20926. height: math.unit(11, "feet"),
  20927. weight: math.unit(3300, "lb"),
  20928. name: "Taur",
  20929. image: {
  20930. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20931. extra: 1271/1197,
  20932. bottom: 47/1318
  20933. }
  20934. },
  20935. barghest: {
  20936. height: math.unit(11, "feet"),
  20937. weight: math.unit(1300, "lb"),
  20938. name: "Barghest",
  20939. image: {
  20940. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20941. extra: 1291/1204,
  20942. bottom: 37/1328
  20943. }
  20944. },
  20945. dick: {
  20946. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20947. name: "Dick",
  20948. image: {
  20949. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20950. }
  20951. },
  20952. dickWere: {
  20953. height: math.unit((20) / 3.8, "feet"),
  20954. name: "Dick (Were)",
  20955. image: {
  20956. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(6 + 1 / 12, "feet"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(10, "feet"),
  20973. weight: math.unit(350, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/jet/front.svg",
  20977. extra: 2050 / 1980,
  20978. bottom: 0.013
  20979. }
  20980. },
  20981. back: {
  20982. height: math.unit(10, "feet"),
  20983. weight: math.unit(350, "lb"),
  20984. name: "Back",
  20985. image: {
  20986. source: "./media/characters/jet/back.svg",
  20987. extra: 2050 / 1980,
  20988. bottom: 0.013
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Micro",
  20995. height: math.unit(6, "inches")
  20996. },
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(10, "feet"),
  21000. default: true
  21001. },
  21002. {
  21003. name: "Macro",
  21004. height: math.unit(100, "feet")
  21005. },
  21006. ]
  21007. ))
  21008. characterMakers.push(() => makeCharacter(
  21009. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21010. {
  21011. front: {
  21012. height: math.unit(15, "feet"),
  21013. weight: math.unit(2800, "lb"),
  21014. name: "Front",
  21015. image: {
  21016. source: "./media/characters/tanarath/front.svg",
  21017. extra: 2392 / 2220,
  21018. bottom: 0.03
  21019. }
  21020. },
  21021. back: {
  21022. height: math.unit(15, "feet"),
  21023. weight: math.unit(2800, "lb"),
  21024. name: "Back",
  21025. image: {
  21026. source: "./media/characters/tanarath/back.svg",
  21027. extra: 2392 / 2220,
  21028. bottom: 0.03
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(15, "feet"),
  21036. default: true
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(7 + 1 / 12, "feet"),
  21045. weight: math.unit(175, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/patty-cattybatty/front.svg",
  21049. extra: 908 / 874,
  21050. bottom: 0.025
  21051. }
  21052. },
  21053. },
  21054. [
  21055. {
  21056. name: "Micro",
  21057. height: math.unit(1, "inch")
  21058. },
  21059. {
  21060. name: "Normal",
  21061. height: math.unit(7 + 1 / 12, "feet")
  21062. },
  21063. {
  21064. name: "Mini Macro",
  21065. height: math.unit(155, "feet")
  21066. },
  21067. {
  21068. name: "Macro",
  21069. height: math.unit(1077, "feet")
  21070. },
  21071. {
  21072. name: "Mega Macro",
  21073. height: math.unit(47650, "feet"),
  21074. default: true
  21075. },
  21076. {
  21077. name: "Giga Macro",
  21078. height: math.unit(440, "miles")
  21079. },
  21080. {
  21081. name: "Tera Macro",
  21082. height: math.unit(8700, "miles")
  21083. },
  21084. {
  21085. name: "Planetary Macro",
  21086. height: math.unit(32700, "miles")
  21087. },
  21088. {
  21089. name: "Solar Macro",
  21090. height: math.unit(550000, "miles")
  21091. },
  21092. {
  21093. name: "Celestial Macro",
  21094. height: math.unit(2.5, "AU")
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21100. {
  21101. front: {
  21102. height: math.unit(4 + 5 / 12, "feet"),
  21103. weight: math.unit(90, "lb"),
  21104. name: "Front",
  21105. image: {
  21106. source: "./media/characters/cappu/front.svg",
  21107. extra: 1247 / 1152,
  21108. bottom: 0.012
  21109. }
  21110. },
  21111. },
  21112. [
  21113. {
  21114. name: "Normal",
  21115. height: math.unit(4 + 5 / 12, "feet"),
  21116. default: true
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21122. {
  21123. frontDressed: {
  21124. height: math.unit(70, "cm"),
  21125. weight: math.unit(6, "kg"),
  21126. name: "Front (Dressed)",
  21127. image: {
  21128. source: "./media/characters/sebi/front-dressed.svg",
  21129. extra: 713.5 / 686.5,
  21130. bottom: 0.003
  21131. }
  21132. },
  21133. front: {
  21134. height: math.unit(70, "cm"),
  21135. weight: math.unit(5, "kg"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/sebi/front.svg",
  21139. extra: 713.5 / 686.5,
  21140. bottom: 0.003
  21141. }
  21142. }
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(70, "cm"),
  21148. default: true
  21149. },
  21150. {
  21151. name: "Macro",
  21152. height: math.unit(8, "meters")
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(6, "feet"),
  21161. weight: math.unit(150, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/typhek/front.svg",
  21165. extra: 1948 / 1929,
  21166. bottom: 0.025
  21167. }
  21168. },
  21169. side: {
  21170. height: math.unit(6, "feet"),
  21171. weight: math.unit(150, "lb"),
  21172. name: "Side",
  21173. image: {
  21174. source: "./media/characters/typhek/side.svg",
  21175. extra: 2034 / 2010,
  21176. bottom: 0.003
  21177. }
  21178. },
  21179. back: {
  21180. height: math.unit(6, "feet"),
  21181. weight: math.unit(150, "lb"),
  21182. name: "Back",
  21183. image: {
  21184. source: "./media/characters/typhek/back.svg",
  21185. extra: 2005 / 1978,
  21186. bottom: 0.004
  21187. }
  21188. },
  21189. palm: {
  21190. height: math.unit(1.2, "feet"),
  21191. name: "Palm",
  21192. image: {
  21193. source: "./media/characters/typhek/palm.svg"
  21194. }
  21195. },
  21196. fist: {
  21197. height: math.unit(1.1, "feet"),
  21198. name: "Fist",
  21199. image: {
  21200. source: "./media/characters/typhek/fist.svg"
  21201. }
  21202. },
  21203. foot: {
  21204. height: math.unit(1.57, "feet"),
  21205. name: "Foot",
  21206. image: {
  21207. source: "./media/characters/typhek/foot.svg"
  21208. }
  21209. },
  21210. sole: {
  21211. height: math.unit(2.05, "feet"),
  21212. name: "Sole",
  21213. image: {
  21214. source: "./media/characters/typhek/sole.svg"
  21215. }
  21216. },
  21217. },
  21218. [
  21219. {
  21220. name: "Macro",
  21221. height: math.unit(40, "stories"),
  21222. default: true
  21223. },
  21224. {
  21225. name: "Megamacro",
  21226. height: math.unit(1, "mile")
  21227. },
  21228. {
  21229. name: "Gigamacro",
  21230. height: math.unit(4000, "solarradii")
  21231. },
  21232. {
  21233. name: "Universal",
  21234. height: math.unit(1.1, "universes")
  21235. }
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21240. {
  21241. side: {
  21242. height: math.unit(5 + 7 / 12, "feet"),
  21243. weight: math.unit(150, "lb"),
  21244. name: "Side",
  21245. image: {
  21246. source: "./media/characters/kassy/side.svg",
  21247. extra: 1280 / 1225,
  21248. bottom: 0.002
  21249. }
  21250. },
  21251. front: {
  21252. height: math.unit(5 + 7 / 12, "feet"),
  21253. weight: math.unit(150, "lb"),
  21254. name: "Front",
  21255. image: {
  21256. source: "./media/characters/kassy/front.svg",
  21257. extra: 1280 / 1225,
  21258. bottom: 0.025
  21259. }
  21260. },
  21261. back: {
  21262. height: math.unit(5 + 7 / 12, "feet"),
  21263. weight: math.unit(150, "lb"),
  21264. name: "Back",
  21265. image: {
  21266. source: "./media/characters/kassy/back.svg",
  21267. extra: 1280 / 1225,
  21268. bottom: 0.002
  21269. }
  21270. },
  21271. foot: {
  21272. height: math.unit(1.266, "feet"),
  21273. name: "Foot",
  21274. image: {
  21275. source: "./media/characters/kassy/foot.svg"
  21276. }
  21277. },
  21278. },
  21279. [
  21280. {
  21281. name: "Normal",
  21282. height: math.unit(5 + 7 / 12, "feet")
  21283. },
  21284. {
  21285. name: "Macro",
  21286. height: math.unit(137, "feet"),
  21287. default: true
  21288. },
  21289. {
  21290. name: "Megamacro",
  21291. height: math.unit(1, "mile")
  21292. },
  21293. ]
  21294. ))
  21295. characterMakers.push(() => makeCharacter(
  21296. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21297. {
  21298. front: {
  21299. height: math.unit(6 + 1 / 12, "feet"),
  21300. weight: math.unit(200, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/neil/front.svg",
  21304. extra: 1326 / 1250,
  21305. bottom: 0.023
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(6 + 1 / 12, "feet"),
  21313. default: true
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(200, "feet")
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(5 + 9 / 12, "feet"),
  21326. weight: math.unit(190, "lb"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/atticus/front.svg",
  21330. extra: 2934 / 2785,
  21331. bottom: 0.025
  21332. }
  21333. },
  21334. },
  21335. [
  21336. {
  21337. name: "Normal",
  21338. height: math.unit(5 + 9 / 12, "feet"),
  21339. default: true
  21340. },
  21341. {
  21342. name: "Macro",
  21343. height: math.unit(180, "feet")
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21349. {
  21350. side: {
  21351. height: math.unit(9, "feet"),
  21352. weight: math.unit(650, "lb"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/milo/side.svg",
  21356. extra: 2644 / 2310,
  21357. bottom: 0.032
  21358. }
  21359. },
  21360. },
  21361. [
  21362. {
  21363. name: "Normal",
  21364. height: math.unit(9, "feet"),
  21365. default: true
  21366. },
  21367. {
  21368. name: "Macro",
  21369. height: math.unit(300, "feet")
  21370. },
  21371. ]
  21372. ))
  21373. characterMakers.push(() => makeCharacter(
  21374. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21375. {
  21376. side: {
  21377. height: math.unit(8, "meters"),
  21378. weight: math.unit(90000, "kg"),
  21379. name: "Side",
  21380. image: {
  21381. source: "./media/characters/ijzer/side.svg",
  21382. extra: 2756 / 1600,
  21383. bottom: 0.01
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Small",
  21390. height: math.unit(3, "meters")
  21391. },
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(8, "meters"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Normal+",
  21399. height: math.unit(10, "meters")
  21400. },
  21401. {
  21402. name: "Bigger",
  21403. height: math.unit(24, "meters")
  21404. },
  21405. {
  21406. name: "Huge",
  21407. height: math.unit(80, "meters")
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(6 + 2 / 12, "feet"),
  21416. weight: math.unit(153, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/luca-cervicum/front.svg",
  21420. extra: 370 / 327,
  21421. bottom: 0.015
  21422. }
  21423. },
  21424. back: {
  21425. height: math.unit(6 + 2 / 12, "feet"),
  21426. weight: math.unit(153, "lb"),
  21427. name: "Back",
  21428. image: {
  21429. source: "./media/characters/luca-cervicum/back.svg",
  21430. extra: 367 / 333,
  21431. bottom: 0.005
  21432. }
  21433. },
  21434. frontGear: {
  21435. height: math.unit(6 + 2 / 12, "feet"),
  21436. weight: math.unit(173, "lb"),
  21437. name: "Front (Gear)",
  21438. image: {
  21439. source: "./media/characters/luca-cervicum/front-gear.svg",
  21440. extra: 377 / 333,
  21441. bottom: 0.006
  21442. }
  21443. },
  21444. },
  21445. [
  21446. {
  21447. name: "Normal",
  21448. height: math.unit(6 + 2 / 12, "feet"),
  21449. default: true
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21455. {
  21456. front: {
  21457. height: math.unit(6 + 1 / 12, "feet"),
  21458. weight: math.unit(304, "lb"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/oliver/front.svg",
  21462. extra: 157 / 143,
  21463. bottom: 0.08
  21464. }
  21465. },
  21466. },
  21467. [
  21468. {
  21469. name: "Normal",
  21470. height: math.unit(6 + 1 / 12, "feet"),
  21471. default: true
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(5 + 7 / 12, "feet"),
  21480. weight: math.unit(140, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/shane/front.svg",
  21484. extra: 304 / 289,
  21485. bottom: 0.005
  21486. }
  21487. },
  21488. },
  21489. [
  21490. {
  21491. name: "Normal",
  21492. height: math.unit(5 + 7 / 12, "feet"),
  21493. default: true
  21494. },
  21495. ]
  21496. ))
  21497. characterMakers.push(() => makeCharacter(
  21498. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21499. {
  21500. front: {
  21501. height: math.unit(5 + 9 / 12, "feet"),
  21502. weight: math.unit(178, "lb"),
  21503. name: "Front",
  21504. image: {
  21505. source: "./media/characters/shin/front.svg",
  21506. extra: 159 / 151,
  21507. bottom: 0.015
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(5 + 9 / 12, "feet"),
  21515. default: true
  21516. },
  21517. ]
  21518. ))
  21519. characterMakers.push(() => makeCharacter(
  21520. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21521. {
  21522. front: {
  21523. height: math.unit(5 + 10 / 12, "feet"),
  21524. weight: math.unit(168, "lb"),
  21525. name: "Front",
  21526. image: {
  21527. source: "./media/characters/xerxes/front.svg",
  21528. extra: 282 / 260,
  21529. bottom: 0.045
  21530. }
  21531. },
  21532. },
  21533. [
  21534. {
  21535. name: "Normal",
  21536. height: math.unit(5 + 10 / 12, "feet"),
  21537. default: true
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(6 + 7 / 12, "feet"),
  21546. weight: math.unit(208, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/chaska/front.svg",
  21550. extra: 332 / 319,
  21551. bottom: 0.015
  21552. }
  21553. },
  21554. },
  21555. [
  21556. {
  21557. name: "Normal",
  21558. height: math.unit(6 + 7 / 12, "feet"),
  21559. default: true
  21560. },
  21561. ]
  21562. ))
  21563. characterMakers.push(() => makeCharacter(
  21564. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21565. {
  21566. front: {
  21567. height: math.unit(5 + 8 / 12, "feet"),
  21568. weight: math.unit(208, "lb"),
  21569. name: "Front",
  21570. image: {
  21571. source: "./media/characters/enuk/front.svg",
  21572. extra: 437 / 406,
  21573. bottom: 0.02
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(5 + 8 / 12, "feet"),
  21581. default: true
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(5 + 10 / 12, "feet"),
  21590. weight: math.unit(252, "lb"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/bruun/front.svg",
  21594. extra: 197 / 187,
  21595. bottom: 0.012
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Normal",
  21602. height: math.unit(5 + 10 / 12, "feet"),
  21603. default: true
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21609. {
  21610. front: {
  21611. height: math.unit(6 + 10 / 12, "feet"),
  21612. weight: math.unit(255, "lb"),
  21613. name: "Front",
  21614. image: {
  21615. source: "./media/characters/alexeev/front.svg",
  21616. extra: 213 / 200,
  21617. bottom: 0.05
  21618. }
  21619. },
  21620. },
  21621. [
  21622. {
  21623. name: "Normal",
  21624. height: math.unit(6 + 10 / 12, "feet"),
  21625. default: true
  21626. },
  21627. ]
  21628. ))
  21629. characterMakers.push(() => makeCharacter(
  21630. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21631. {
  21632. front: {
  21633. height: math.unit(2 + 8 / 12, "feet"),
  21634. weight: math.unit(22, "lb"),
  21635. name: "Front",
  21636. image: {
  21637. source: "./media/characters/evelyn/front.svg",
  21638. extra: 208 / 180
  21639. }
  21640. },
  21641. },
  21642. [
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(2 + 8 / 12, "feet"),
  21646. default: true
  21647. },
  21648. ]
  21649. ))
  21650. characterMakers.push(() => makeCharacter(
  21651. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21652. {
  21653. front: {
  21654. height: math.unit(5 + 9 / 12, "feet"),
  21655. weight: math.unit(139, "lb"),
  21656. name: "Front",
  21657. image: {
  21658. source: "./media/characters/inca/front.svg",
  21659. extra: 294 / 291,
  21660. bottom: 0.03
  21661. }
  21662. },
  21663. },
  21664. [
  21665. {
  21666. name: "Normal",
  21667. height: math.unit(5 + 9 / 12, "feet"),
  21668. default: true
  21669. },
  21670. ]
  21671. ))
  21672. characterMakers.push(() => makeCharacter(
  21673. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21674. {
  21675. front: {
  21676. height: math.unit(6 + 3 / 12, "feet"),
  21677. weight: math.unit(185, "lb"),
  21678. name: "Front",
  21679. image: {
  21680. source: "./media/characters/mera/front.svg",
  21681. extra: 291 / 277,
  21682. bottom: 0.03
  21683. }
  21684. },
  21685. },
  21686. [
  21687. {
  21688. name: "Normal",
  21689. height: math.unit(6 + 3 / 12, "feet"),
  21690. default: true
  21691. },
  21692. ]
  21693. ))
  21694. characterMakers.push(() => makeCharacter(
  21695. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21696. {
  21697. front: {
  21698. height: math.unit(6 + 7 / 12, "feet"),
  21699. weight: math.unit(160, "lb"),
  21700. name: "Front",
  21701. image: {
  21702. source: "./media/characters/ceres/front.svg",
  21703. extra: 1023 / 950,
  21704. bottom: 0.027
  21705. }
  21706. },
  21707. back: {
  21708. height: math.unit(6 + 7 / 12, "feet"),
  21709. weight: math.unit(160, "lb"),
  21710. name: "Back",
  21711. image: {
  21712. source: "./media/characters/ceres/back.svg",
  21713. extra: 1023 / 950
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(6 + 7 / 12, "feet"),
  21721. default: true
  21722. },
  21723. ]
  21724. ))
  21725. characterMakers.push(() => makeCharacter(
  21726. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21727. {
  21728. front: {
  21729. height: math.unit(5 + 10 / 12, "feet"),
  21730. weight: math.unit(150, "lb"),
  21731. name: "Front",
  21732. image: {
  21733. source: "./media/characters/kris/front.svg",
  21734. extra: 885 / 803,
  21735. bottom: 0.03
  21736. }
  21737. },
  21738. },
  21739. [
  21740. {
  21741. name: "Normal",
  21742. height: math.unit(5 + 10 / 12, "feet"),
  21743. default: true
  21744. },
  21745. ]
  21746. ))
  21747. characterMakers.push(() => makeCharacter(
  21748. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21749. {
  21750. front: {
  21751. height: math.unit(7, "feet"),
  21752. weight: math.unit(120, "kg"),
  21753. name: "Front",
  21754. image: {
  21755. source: "./media/characters/taluthus/front.svg",
  21756. extra: 903 / 833,
  21757. bottom: 0.015
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(7, "feet"),
  21765. default: true
  21766. },
  21767. {
  21768. name: "Macro",
  21769. height: math.unit(300, "feet")
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(5 + 9 / 12, "feet"),
  21778. weight: math.unit(145, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/dawn/front.svg",
  21782. extra: 2094 / 2016,
  21783. bottom: 0.025
  21784. }
  21785. },
  21786. back: {
  21787. height: math.unit(5 + 9 / 12, "feet"),
  21788. weight: math.unit(160, "lb"),
  21789. name: "Back",
  21790. image: {
  21791. source: "./media/characters/dawn/back.svg",
  21792. extra: 2112 / 2080,
  21793. bottom: 0.005
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(6 + 7 / 12, "feet"),
  21801. default: true
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21807. {
  21808. anthro: {
  21809. height: math.unit(8 + 3 / 12, "feet"),
  21810. weight: math.unit(450, "lb"),
  21811. name: "Anthro",
  21812. image: {
  21813. source: "./media/characters/arador/anthro.svg",
  21814. extra: 1835 / 1718,
  21815. bottom: 0.025
  21816. }
  21817. },
  21818. feral: {
  21819. height: math.unit(4, "feet"),
  21820. weight: math.unit(200, "lb"),
  21821. name: "Feral",
  21822. image: {
  21823. source: "./media/characters/arador/feral.svg",
  21824. extra: 1683 / 1514,
  21825. bottom: 0.07
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(8 + 3 / 12, "feet")
  21833. },
  21834. {
  21835. name: "Macro",
  21836. height: math.unit(82.5, "feet"),
  21837. default: true
  21838. },
  21839. ]
  21840. ))
  21841. characterMakers.push(() => makeCharacter(
  21842. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21843. {
  21844. front: {
  21845. height: math.unit(5 + 10 / 12, "feet"),
  21846. weight: math.unit(125, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/dharsi/front.svg",
  21850. extra: 716 / 630,
  21851. bottom: 0.035
  21852. }
  21853. },
  21854. },
  21855. [
  21856. {
  21857. name: "Nano",
  21858. height: math.unit(100, "nm")
  21859. },
  21860. {
  21861. name: "Micro",
  21862. height: math.unit(2, "inches")
  21863. },
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(5 + 10 / 12, "feet"),
  21867. default: true
  21868. },
  21869. {
  21870. name: "Macro",
  21871. height: math.unit(1000, "feet")
  21872. },
  21873. {
  21874. name: "Megamacro",
  21875. height: math.unit(10, "miles")
  21876. },
  21877. {
  21878. name: "Gigamacro",
  21879. height: math.unit(3000, "miles")
  21880. },
  21881. {
  21882. name: "Teramacro",
  21883. height: math.unit(500000, "miles")
  21884. },
  21885. {
  21886. name: "Teramacro+",
  21887. height: math.unit(30, "galaxies")
  21888. },
  21889. ]
  21890. ))
  21891. characterMakers.push(() => makeCharacter(
  21892. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21893. {
  21894. front: {
  21895. height: math.unit(6, "feet"),
  21896. weight: math.unit(150, "lb"),
  21897. name: "Front",
  21898. image: {
  21899. source: "./media/characters/deathy/front.svg",
  21900. extra: 1552 / 1463,
  21901. bottom: 0.025
  21902. }
  21903. },
  21904. side: {
  21905. height: math.unit(6, "feet"),
  21906. weight: math.unit(150, "lb"),
  21907. name: "Side",
  21908. image: {
  21909. source: "./media/characters/deathy/side.svg",
  21910. extra: 1604 / 1455,
  21911. bottom: 0.025
  21912. }
  21913. },
  21914. back: {
  21915. height: math.unit(6, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Back",
  21918. image: {
  21919. source: "./media/characters/deathy/back.svg",
  21920. extra: 1580 / 1463,
  21921. bottom: 0.005
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Micro",
  21928. height: math.unit(5, "millimeters")
  21929. },
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(6 + 5 / 12, "feet"),
  21933. default: true
  21934. },
  21935. ]
  21936. ))
  21937. characterMakers.push(() => makeCharacter(
  21938. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21939. {
  21940. front: {
  21941. height: math.unit(16, "feet"),
  21942. weight: math.unit(4000, "lb"),
  21943. name: "Front",
  21944. image: {
  21945. source: "./media/characters/juniper/front.svg",
  21946. bottom: 0.04
  21947. }
  21948. },
  21949. },
  21950. [
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(16, "feet"),
  21954. default: true
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(6, "feet"),
  21963. weight: math.unit(150, "lb"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/hipster/front.svg",
  21967. extra: 1312 / 1209,
  21968. bottom: 0.025
  21969. }
  21970. },
  21971. back: {
  21972. height: math.unit(6, "feet"),
  21973. weight: math.unit(150, "lb"),
  21974. name: "Back",
  21975. image: {
  21976. source: "./media/characters/hipster/back.svg",
  21977. extra: 1281 / 1196,
  21978. bottom: 0.01
  21979. }
  21980. },
  21981. },
  21982. [
  21983. {
  21984. name: "Micro",
  21985. height: math.unit(1, "mm")
  21986. },
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(4, "inches"),
  21990. default: true
  21991. },
  21992. {
  21993. name: "Macro",
  21994. height: math.unit(500, "feet")
  21995. },
  21996. {
  21997. name: "Megamacro",
  21998. height: math.unit(1000, "miles")
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(6, "feet"),
  22007. weight: math.unit(150, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/tendirmuldr/front.svg",
  22011. extra: 1878 / 1772,
  22012. bottom: 0.015
  22013. }
  22014. },
  22015. },
  22016. [
  22017. {
  22018. name: "Megamacro",
  22019. height: math.unit(1500, "miles"),
  22020. default: true
  22021. },
  22022. ]
  22023. ))
  22024. characterMakers.push(() => makeCharacter(
  22025. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22026. {
  22027. front: {
  22028. height: math.unit(14, "feet"),
  22029. weight: math.unit(12000, "lb"),
  22030. name: "Front",
  22031. image: {
  22032. source: "./media/characters/mort/front.svg",
  22033. extra: 365 / 318,
  22034. bottom: 0.01
  22035. }
  22036. },
  22037. side: {
  22038. height: math.unit(14, "feet"),
  22039. weight: math.unit(12000, "lb"),
  22040. name: "Side",
  22041. image: {
  22042. source: "./media/characters/mort/side.svg",
  22043. extra: 365 / 318,
  22044. bottom: 0.052
  22045. },
  22046. default: true
  22047. },
  22048. back: {
  22049. height: math.unit(14, "feet"),
  22050. weight: math.unit(12000, "lb"),
  22051. name: "Back",
  22052. image: {
  22053. source: "./media/characters/mort/back.svg",
  22054. extra: 371 / 332,
  22055. bottom: 0.18
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(14, "feet"),
  22063. default: true
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22069. {
  22070. front: {
  22071. height: math.unit(8, "feet"),
  22072. weight: math.unit(1, "ton"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/lycoa/front.svg",
  22076. extra: 1836/1728,
  22077. bottom: 81/1917
  22078. }
  22079. },
  22080. back: {
  22081. height: math.unit(8, "feet"),
  22082. weight: math.unit(1, "ton"),
  22083. name: "Back",
  22084. image: {
  22085. source: "./media/characters/lycoa/back.svg",
  22086. extra: 1785/1720,
  22087. bottom: 91/1876
  22088. }
  22089. },
  22090. head: {
  22091. height: math.unit(1.6243, "feet"),
  22092. name: "Head",
  22093. image: {
  22094. source: "./media/characters/lycoa/head.svg",
  22095. extra: 1011/782,
  22096. bottom: 0/1011
  22097. }
  22098. },
  22099. tailmaw: {
  22100. height: math.unit(1.9, "feet"),
  22101. name: "Tailmaw",
  22102. image: {
  22103. source: "./media/characters/lycoa/tailmaw.svg"
  22104. }
  22105. },
  22106. tentacles: {
  22107. height: math.unit(2.1, "feet"),
  22108. name: "Tentacles",
  22109. image: {
  22110. source: "./media/characters/lycoa/tentacles.svg"
  22111. }
  22112. },
  22113. dick: {
  22114. height: math.unit(1.73, "feet"),
  22115. name: "Dick",
  22116. image: {
  22117. source: "./media/characters/lycoa/dick.svg"
  22118. }
  22119. },
  22120. },
  22121. [
  22122. {
  22123. name: "Normal",
  22124. height: math.unit(8, "feet"),
  22125. default: true
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(30, "feet")
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22135. {
  22136. front: {
  22137. height: math.unit(4 + 2 / 12, "feet"),
  22138. weight: math.unit(70, "lb"),
  22139. name: "Front",
  22140. image: {
  22141. source: "./media/characters/naldara/front.svg",
  22142. extra: 1664/1387,
  22143. bottom: 81/1745
  22144. },
  22145. form: "anthro",
  22146. default: true
  22147. },
  22148. naga: {
  22149. height: math.unit(20, "feet"),
  22150. weight: math.unit(15000, "kg"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/naldara/naga.svg",
  22154. extra: 1590/1396,
  22155. bottom: 285/1875
  22156. },
  22157. form: "naga",
  22158. default: true
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Normal",
  22164. height: math.unit(4 + 2 / 12, "feet"),
  22165. form: "anthro",
  22166. default: true
  22167. },
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(20, "feet"),
  22171. form: "naga",
  22172. default: true
  22173. },
  22174. ],
  22175. {
  22176. "anthro": {
  22177. name: "Anthro",
  22178. default: true
  22179. },
  22180. "naga": {
  22181. name: "Naga"
  22182. }
  22183. }
  22184. ))
  22185. characterMakers.push(() => makeCharacter(
  22186. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22187. {
  22188. front: {
  22189. height: math.unit(13 + 7 / 12, "feet"),
  22190. weight: math.unit(1500, "lb"),
  22191. name: "Front",
  22192. image: {
  22193. source: "./media/characters/briar/front.svg",
  22194. extra: 1223/1157,
  22195. bottom: 123/1346
  22196. }
  22197. },
  22198. },
  22199. [
  22200. {
  22201. name: "Normal",
  22202. height: math.unit(13 + 7 / 12, "feet"),
  22203. default: true
  22204. },
  22205. ]
  22206. ))
  22207. characterMakers.push(() => makeCharacter(
  22208. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22209. {
  22210. side: {
  22211. height: math.unit(16, "feet"),
  22212. weight: math.unit(500, "lb"),
  22213. name: "Side",
  22214. image: {
  22215. source: "./media/characters/vanguard/side.svg",
  22216. extra: 1022/914,
  22217. bottom: 30/1052
  22218. }
  22219. },
  22220. sideAlt: {
  22221. height: math.unit(10, "feet"),
  22222. weight: math.unit(500, "lb"),
  22223. name: "Side (Alt)",
  22224. image: {
  22225. source: "./media/characters/vanguard/side-alt.svg",
  22226. extra: 502 / 425,
  22227. bottom: 0.087
  22228. }
  22229. },
  22230. },
  22231. [
  22232. {
  22233. name: "Normal",
  22234. height: math.unit(17.71, "feet"),
  22235. default: true
  22236. },
  22237. ]
  22238. ))
  22239. characterMakers.push(() => makeCharacter(
  22240. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22241. {
  22242. front: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Front",
  22246. image: {
  22247. source: "./media/characters/artemis/work-safe-front.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "work-safe",
  22252. default: true
  22253. },
  22254. frontNsfw: {
  22255. height: math.unit(7.5, "feet"),
  22256. weight: math.unit(2, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/artemis/calibrating-front.svg",
  22260. extra: 1192 / 1075,
  22261. bottom: 0.07
  22262. },
  22263. form: "calibrating",
  22264. default: true
  22265. },
  22266. frontNsfwer: {
  22267. height: math.unit(7.5, "feet"),
  22268. weight: math.unit(2, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/artemis/oversize-load-front.svg",
  22272. extra: 1192 / 1075,
  22273. bottom: 0.07
  22274. },
  22275. form: "oversize-load",
  22276. default: true
  22277. },
  22278. side: {
  22279. height: math.unit(7.5, "feet"),
  22280. weight: math.unit(2, "lb"),
  22281. name: "Side",
  22282. image: {
  22283. source: "./media/characters/artemis/work-safe-side.svg",
  22284. extra: 1192 / 1075,
  22285. bottom: 0.07
  22286. },
  22287. form: "work-safe"
  22288. },
  22289. sideNsfw: {
  22290. height: math.unit(7.5, "feet"),
  22291. weight: math.unit(2, "lb"),
  22292. name: "Side",
  22293. image: {
  22294. source: "./media/characters/artemis/calibrating-side.svg",
  22295. extra: 1192 / 1075,
  22296. bottom: 0.07
  22297. },
  22298. form: "calibrating"
  22299. },
  22300. sideNsfwer: {
  22301. height: math.unit(7.5, "feet"),
  22302. weight: math.unit(2, "lb"),
  22303. name: "Side",
  22304. image: {
  22305. source: "./media/characters/artemis/oversize-load-side.svg",
  22306. extra: 1192 / 1075,
  22307. bottom: 0.07
  22308. },
  22309. form: "oversize-load"
  22310. },
  22311. maw: {
  22312. height: math.unit(1.1, "feet"),
  22313. name: "Maw",
  22314. image: {
  22315. source: "./media/characters/artemis/maw.svg"
  22316. },
  22317. form: "work-safe"
  22318. },
  22319. stomach: {
  22320. height: math.unit(0.95, "feet"),
  22321. name: "Stomach",
  22322. image: {
  22323. source: "./media/characters/artemis/stomach.svg"
  22324. },
  22325. form: "work-safe"
  22326. },
  22327. dickCanine: {
  22328. height: math.unit(1, "feet"),
  22329. name: "Dick (Canine)",
  22330. image: {
  22331. source: "./media/characters/artemis/dick-canine.svg"
  22332. },
  22333. form: "calibrating"
  22334. },
  22335. dickEquine: {
  22336. height: math.unit(0.85, "feet"),
  22337. name: "Dick (Equine)",
  22338. image: {
  22339. source: "./media/characters/artemis/dick-equine.svg"
  22340. },
  22341. form: "calibrating"
  22342. },
  22343. dickExotic: {
  22344. height: math.unit(0.85, "feet"),
  22345. name: "Dick (Exotic)",
  22346. image: {
  22347. source: "./media/characters/artemis/dick-exotic.svg"
  22348. },
  22349. form: "calibrating"
  22350. },
  22351. dickCanineBigger: {
  22352. height: math.unit(1 * 1.33, "feet"),
  22353. name: "Dick (Canine)",
  22354. image: {
  22355. source: "./media/characters/artemis/dick-canine.svg"
  22356. },
  22357. form: "oversize-load"
  22358. },
  22359. dickEquineBigger: {
  22360. height: math.unit(0.85 * 1.33, "feet"),
  22361. name: "Dick (Equine)",
  22362. image: {
  22363. source: "./media/characters/artemis/dick-equine.svg"
  22364. },
  22365. form: "oversize-load"
  22366. },
  22367. dickExoticBigger: {
  22368. height: math.unit(0.85 * 1.33, "feet"),
  22369. name: "Dick (Exotic)",
  22370. image: {
  22371. source: "./media/characters/artemis/dick-exotic.svg"
  22372. },
  22373. form: "oversize-load"
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Normal",
  22379. height: math.unit(7.5, "feet"),
  22380. form: "work-safe",
  22381. default: true
  22382. },
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(7.5, "feet"),
  22386. form: "calibrating",
  22387. default: true
  22388. },
  22389. {
  22390. name: "Normal",
  22391. height: math.unit(7.5, "feet"),
  22392. form: "oversize-load",
  22393. default: true
  22394. },
  22395. {
  22396. name: "Enlarged",
  22397. height: math.unit(12, "feet"),
  22398. form: "work-safe",
  22399. },
  22400. {
  22401. name: "Enlarged",
  22402. height: math.unit(12, "feet"),
  22403. form: "calibrating",
  22404. },
  22405. {
  22406. name: "Enlarged",
  22407. height: math.unit(12, "feet"),
  22408. form: "oversize-load",
  22409. },
  22410. ],
  22411. {
  22412. "work-safe": {
  22413. name: "Work-Safe",
  22414. default: true
  22415. },
  22416. "calibrating": {
  22417. name: "Calibrating"
  22418. },
  22419. "oversize-load": {
  22420. name: "Oversize Load"
  22421. }
  22422. }
  22423. ))
  22424. characterMakers.push(() => makeCharacter(
  22425. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22426. {
  22427. front: {
  22428. height: math.unit(5 + 3 / 12, "feet"),
  22429. weight: math.unit(160, "lb"),
  22430. name: "Front",
  22431. image: {
  22432. source: "./media/characters/kira/front.svg",
  22433. extra: 906 / 786,
  22434. bottom: 0.01
  22435. }
  22436. },
  22437. back: {
  22438. height: math.unit(5 + 3 / 12, "feet"),
  22439. weight: math.unit(160, "lb"),
  22440. name: "Back",
  22441. image: {
  22442. source: "./media/characters/kira/back.svg",
  22443. extra: 882 / 757,
  22444. bottom: 0.005
  22445. }
  22446. },
  22447. frontDressed: {
  22448. height: math.unit(5 + 3 / 12, "feet"),
  22449. weight: math.unit(160, "lb"),
  22450. name: "Front (Dressed)",
  22451. image: {
  22452. source: "./media/characters/kira/front-dressed.svg",
  22453. extra: 906 / 786,
  22454. bottom: 0.01
  22455. }
  22456. },
  22457. beans: {
  22458. height: math.unit(0.92, "feet"),
  22459. name: "Beans",
  22460. image: {
  22461. source: "./media/characters/kira/beans.svg"
  22462. }
  22463. },
  22464. },
  22465. [
  22466. {
  22467. name: "Normal",
  22468. height: math.unit(5 + 3 / 12, "feet"),
  22469. default: true
  22470. },
  22471. ]
  22472. ))
  22473. characterMakers.push(() => makeCharacter(
  22474. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22475. {
  22476. front: {
  22477. height: math.unit(5 + 4 / 12, "feet"),
  22478. weight: math.unit(145, "lb"),
  22479. name: "Front",
  22480. image: {
  22481. source: "./media/characters/scramble/front.svg",
  22482. extra: 763 / 727,
  22483. bottom: 0.05
  22484. }
  22485. },
  22486. back: {
  22487. height: math.unit(5 + 4 / 12, "feet"),
  22488. weight: math.unit(145, "lb"),
  22489. name: "Back",
  22490. image: {
  22491. source: "./media/characters/scramble/back.svg",
  22492. extra: 826 / 737,
  22493. bottom: 0.002
  22494. }
  22495. },
  22496. },
  22497. [
  22498. {
  22499. name: "Normal",
  22500. height: math.unit(5 + 4 / 12, "feet"),
  22501. default: true
  22502. },
  22503. ]
  22504. ))
  22505. characterMakers.push(() => makeCharacter(
  22506. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22507. {
  22508. side: {
  22509. height: math.unit(6 + 2 / 12, "feet"),
  22510. weight: math.unit(190, "lb"),
  22511. name: "Side",
  22512. image: {
  22513. source: "./media/characters/biscuit/side.svg",
  22514. extra: 858 / 791,
  22515. bottom: 0.044
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(6 + 2 / 12, "feet"),
  22523. default: true
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(5 + 2 / 12, "feet"),
  22532. weight: math.unit(120, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/poffin/front.svg",
  22536. extra: 786 / 680,
  22537. bottom: 0.005
  22538. }
  22539. },
  22540. },
  22541. [
  22542. {
  22543. name: "Normal",
  22544. height: math.unit(5 + 2 / 12, "feet"),
  22545. default: true
  22546. },
  22547. ]
  22548. ))
  22549. characterMakers.push(() => makeCharacter(
  22550. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22551. {
  22552. front: {
  22553. height: math.unit(6 + 3 / 12, "feet"),
  22554. weight: math.unit(519, "lb"),
  22555. name: "Front",
  22556. image: {
  22557. source: "./media/characters/dhari/front.svg",
  22558. extra: 1048 / 946,
  22559. bottom: 0.015
  22560. }
  22561. },
  22562. back: {
  22563. height: math.unit(6 + 3 / 12, "feet"),
  22564. weight: math.unit(519, "lb"),
  22565. name: "Back",
  22566. image: {
  22567. source: "./media/characters/dhari/back.svg",
  22568. extra: 1048 / 931,
  22569. bottom: 0.005
  22570. }
  22571. },
  22572. frontDressed: {
  22573. height: math.unit(6 + 3 / 12, "feet"),
  22574. weight: math.unit(519, "lb"),
  22575. name: "Front (Dressed)",
  22576. image: {
  22577. source: "./media/characters/dhari/front-dressed.svg",
  22578. extra: 1713 / 1546,
  22579. bottom: 0.02
  22580. }
  22581. },
  22582. backDressed: {
  22583. height: math.unit(6 + 3 / 12, "feet"),
  22584. weight: math.unit(519, "lb"),
  22585. name: "Back (Dressed)",
  22586. image: {
  22587. source: "./media/characters/dhari/back-dressed.svg",
  22588. extra: 1699 / 1537,
  22589. bottom: 0.01
  22590. }
  22591. },
  22592. maw: {
  22593. height: math.unit(0.95, "feet"),
  22594. name: "Maw",
  22595. image: {
  22596. source: "./media/characters/dhari/maw.svg"
  22597. }
  22598. },
  22599. wereFront: {
  22600. height: math.unit(12 + 8 / 12, "feet"),
  22601. weight: math.unit(4000, "lb"),
  22602. name: "Front (Were)",
  22603. image: {
  22604. source: "./media/characters/dhari/were-front.svg",
  22605. extra: 1065 / 969,
  22606. bottom: 0.015
  22607. }
  22608. },
  22609. wereBack: {
  22610. height: math.unit(12 + 8 / 12, "feet"),
  22611. weight: math.unit(4000, "lb"),
  22612. name: "Back (Were)",
  22613. image: {
  22614. source: "./media/characters/dhari/were-back.svg",
  22615. extra: 1065 / 969,
  22616. bottom: 0.012
  22617. }
  22618. },
  22619. wereMaw: {
  22620. height: math.unit(0.625, "meters"),
  22621. name: "Maw (Were)",
  22622. image: {
  22623. source: "./media/characters/dhari/were-maw.svg"
  22624. }
  22625. },
  22626. },
  22627. [
  22628. {
  22629. name: "Normal",
  22630. height: math.unit(6 + 3 / 12, "feet"),
  22631. default: true
  22632. },
  22633. ]
  22634. ))
  22635. characterMakers.push(() => makeCharacter(
  22636. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22637. {
  22638. anthro: {
  22639. height: math.unit(5 + 7 / 12, "feet"),
  22640. weight: math.unit(175, "lb"),
  22641. name: "Anthro",
  22642. image: {
  22643. source: "./media/characters/rena-dyne/anthro.svg",
  22644. extra: 1849 / 1785,
  22645. bottom: 0.005
  22646. }
  22647. },
  22648. taur: {
  22649. height: math.unit(15 + 6 / 12, "feet"),
  22650. weight: math.unit(8000, "lb"),
  22651. name: "Taur",
  22652. image: {
  22653. source: "./media/characters/rena-dyne/taur.svg",
  22654. extra: 2315 / 2234,
  22655. bottom: 0.033
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(5 + 7 / 12, "feet"),
  22663. default: true
  22664. },
  22665. ]
  22666. ))
  22667. characterMakers.push(() => makeCharacter(
  22668. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22669. {
  22670. front: {
  22671. height: math.unit(8, "feet"),
  22672. weight: math.unit(600, "lb"),
  22673. name: "Front",
  22674. image: {
  22675. source: "./media/characters/weremeep/front.svg",
  22676. extra: 970/849,
  22677. bottom: 7/977
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(8, "feet"),
  22685. default: true
  22686. },
  22687. {
  22688. name: "Lorg",
  22689. height: math.unit(12, "feet")
  22690. },
  22691. {
  22692. name: "Oh Lawd She Comin'",
  22693. height: math.unit(20, "feet")
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22699. {
  22700. front: {
  22701. height: math.unit(4, "feet"),
  22702. weight: math.unit(90, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/reza/front.svg",
  22706. extra: 1183 / 1111,
  22707. bottom: 0.017
  22708. }
  22709. },
  22710. back: {
  22711. height: math.unit(4, "feet"),
  22712. weight: math.unit(90, "lb"),
  22713. name: "Back",
  22714. image: {
  22715. source: "./media/characters/reza/back.svg",
  22716. extra: 1183 / 1111,
  22717. bottom: 0.01
  22718. }
  22719. },
  22720. drake: {
  22721. height: math.unit(30, "feet"),
  22722. weight: math.unit(246960, "lb"),
  22723. name: "Drake",
  22724. image: {
  22725. source: "./media/characters/reza/drake.svg",
  22726. extra: 2350 / 2024,
  22727. bottom: 60.7 / 2403
  22728. }
  22729. },
  22730. },
  22731. [
  22732. {
  22733. name: "Normal",
  22734. height: math.unit(4, "feet"),
  22735. default: true
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22741. {
  22742. side: {
  22743. height: math.unit(15, "feet"),
  22744. weight: math.unit(14, "tons"),
  22745. name: "Side",
  22746. image: {
  22747. source: "./media/characters/athea/side.svg",
  22748. extra: 960 / 540,
  22749. bottom: 0.003
  22750. }
  22751. },
  22752. sitting: {
  22753. height: math.unit(6 * 2.85, "feet"),
  22754. weight: math.unit(14, "tons"),
  22755. name: "Sitting",
  22756. image: {
  22757. source: "./media/characters/athea/sitting.svg",
  22758. extra: 621 / 581,
  22759. bottom: 0.075
  22760. }
  22761. },
  22762. maw: {
  22763. height: math.unit(7.59498031496063, "feet"),
  22764. name: "Maw",
  22765. image: {
  22766. source: "./media/characters/athea/maw.svg"
  22767. }
  22768. },
  22769. },
  22770. [
  22771. {
  22772. name: "Lap Cat",
  22773. height: math.unit(2.5, "feet")
  22774. },
  22775. {
  22776. name: "Minimacro",
  22777. height: math.unit(15, "feet"),
  22778. default: true
  22779. },
  22780. {
  22781. name: "Macro",
  22782. height: math.unit(120, "feet")
  22783. },
  22784. {
  22785. name: "Macro+",
  22786. height: math.unit(640, "feet")
  22787. },
  22788. {
  22789. name: "Colossus",
  22790. height: math.unit(2.2, "miles")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(8 + 8 / 12, "feet"),
  22799. weight: math.unit(130, "kg"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/seroko/front.svg",
  22803. extra: 1385 / 1280,
  22804. bottom: 0.025
  22805. }
  22806. },
  22807. back: {
  22808. height: math.unit(8 + 8 / 12, "feet"),
  22809. weight: math.unit(130, "kg"),
  22810. name: "Back",
  22811. image: {
  22812. source: "./media/characters/seroko/back.svg",
  22813. extra: 1369 / 1238,
  22814. bottom: 0.018
  22815. }
  22816. },
  22817. frontDressed: {
  22818. height: math.unit(8 + 8 / 12, "feet"),
  22819. weight: math.unit(130, "kg"),
  22820. name: "Front (Dressed)",
  22821. image: {
  22822. source: "./media/characters/seroko/front-dressed.svg",
  22823. extra: 1366 / 1275,
  22824. bottom: 0.03
  22825. }
  22826. },
  22827. },
  22828. [
  22829. {
  22830. name: "Normal",
  22831. height: math.unit(8 + 8 / 12, "feet"),
  22832. default: true
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(5.5, "feet"),
  22841. weight: math.unit(160, "lb"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/quatzi/front.svg",
  22845. extra: 2346 / 2242,
  22846. bottom: 0.015
  22847. }
  22848. },
  22849. },
  22850. [
  22851. {
  22852. name: "Normal",
  22853. height: math.unit(5.5, "feet"),
  22854. default: true
  22855. },
  22856. {
  22857. name: "Big",
  22858. height: math.unit(7.7, "feet")
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(5 + 11 / 12, "feet"),
  22867. weight: math.unit(180, "lb"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/sen/front.svg",
  22871. extra: 1321 / 1254,
  22872. bottom: 0.015
  22873. }
  22874. },
  22875. side: {
  22876. height: math.unit(5 + 11 / 12, "feet"),
  22877. weight: math.unit(180, "lb"),
  22878. name: "Side",
  22879. image: {
  22880. source: "./media/characters/sen/side.svg",
  22881. extra: 1321 / 1254,
  22882. bottom: 0.007
  22883. }
  22884. },
  22885. back: {
  22886. height: math.unit(5 + 11 / 12, "feet"),
  22887. weight: math.unit(180, "lb"),
  22888. name: "Back",
  22889. image: {
  22890. source: "./media/characters/sen/back.svg",
  22891. extra: 1321 / 1254
  22892. }
  22893. },
  22894. },
  22895. [
  22896. {
  22897. name: "Normal",
  22898. height: math.unit(5 + 11 / 12, "feet"),
  22899. default: true
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22905. {
  22906. front: {
  22907. height: math.unit(166.6, "cm"),
  22908. weight: math.unit(66.6, "kg"),
  22909. name: "Front",
  22910. image: {
  22911. source: "./media/characters/fruity/front.svg",
  22912. extra: 1510 / 1386,
  22913. bottom: 0.04
  22914. }
  22915. },
  22916. back: {
  22917. height: math.unit(166.6, "cm"),
  22918. weight: math.unit(66.6, "lb"),
  22919. name: "Back",
  22920. image: {
  22921. source: "./media/characters/fruity/back.svg",
  22922. extra: 1563 / 1435,
  22923. bottom: 0.005
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Normal",
  22930. height: math.unit(166.6, "cm"),
  22931. default: true
  22932. },
  22933. {
  22934. name: "Demonic",
  22935. height: math.unit(166.6, "feet")
  22936. },
  22937. ]
  22938. ))
  22939. characterMakers.push(() => makeCharacter(
  22940. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22941. {
  22942. side: {
  22943. height: math.unit(10, "feet"),
  22944. weight: math.unit(500, "lb"),
  22945. name: "Side",
  22946. image: {
  22947. source: "./media/characters/zost/side.svg",
  22948. extra: 2870/2533,
  22949. bottom: 252/3122
  22950. }
  22951. },
  22952. mawFront: {
  22953. height: math.unit(1.08, "meters"),
  22954. name: "Maw (Front)",
  22955. image: {
  22956. source: "./media/characters/zost/maw-front.svg"
  22957. }
  22958. },
  22959. mawSide: {
  22960. height: math.unit(2.66, "feet"),
  22961. name: "Maw (Side)",
  22962. image: {
  22963. source: "./media/characters/zost/maw-side.svg"
  22964. }
  22965. },
  22966. wingspan: {
  22967. height: math.unit(7.4, "feet"),
  22968. name: "Wingspan",
  22969. image: {
  22970. source: "./media/characters/zost/wingspan.svg"
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(10, "feet"),
  22978. default: true
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22984. {
  22985. front: {
  22986. height: math.unit(5 + 4 / 12, "feet"),
  22987. weight: math.unit(120, "lb"),
  22988. name: "Front",
  22989. image: {
  22990. source: "./media/characters/luci/front.svg",
  22991. extra: 1985 / 1884,
  22992. bottom: 0.04
  22993. }
  22994. },
  22995. back: {
  22996. height: math.unit(5 + 4 / 12, "feet"),
  22997. weight: math.unit(120, "lb"),
  22998. name: "Back",
  22999. image: {
  23000. source: "./media/characters/luci/back.svg",
  23001. extra: 1892 / 1791,
  23002. bottom: 0.002
  23003. }
  23004. },
  23005. },
  23006. [
  23007. {
  23008. name: "Normal",
  23009. height: math.unit(5 + 4 / 12, "feet"),
  23010. default: true
  23011. },
  23012. ]
  23013. ))
  23014. characterMakers.push(() => makeCharacter(
  23015. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23016. {
  23017. front: {
  23018. height: math.unit(1500, "feet"),
  23019. weight: math.unit(3.8e6, "tons"),
  23020. name: "Front",
  23021. image: {
  23022. source: "./media/characters/2th/front.svg",
  23023. extra: 3489 / 3350,
  23024. bottom: 0.1
  23025. }
  23026. },
  23027. foot: {
  23028. height: math.unit(461, "feet"),
  23029. name: "Foot",
  23030. image: {
  23031. source: "./media/characters/2th/foot.svg"
  23032. }
  23033. },
  23034. },
  23035. [
  23036. {
  23037. name: "\"Micro\"",
  23038. height: math.unit(15 + 7 / 12, "feet")
  23039. },
  23040. {
  23041. name: "Normal",
  23042. height: math.unit(1500, "feet"),
  23043. default: true
  23044. },
  23045. {
  23046. name: "Macro",
  23047. height: math.unit(5000, "feet")
  23048. },
  23049. {
  23050. name: "Megamacro",
  23051. height: math.unit(15, "miles")
  23052. },
  23053. {
  23054. name: "Gigamacro",
  23055. height: math.unit(4000, "miles")
  23056. },
  23057. {
  23058. name: "Galactic",
  23059. height: math.unit(50, "AU")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(5 + 6 / 12, "feet"),
  23068. weight: math.unit(220, "lb"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/amethyst/front.svg",
  23072. extra: 2078 / 2040,
  23073. bottom: 0.045
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(5 + 6 / 12, "feet"),
  23078. weight: math.unit(220, "lb"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/amethyst/back.svg",
  23082. extra: 2021 / 1989,
  23083. bottom: 0.02
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(5 + 6 / 12, "feet"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(4 + 11 / 12, "feet"),
  23100. weight: math.unit(120, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/yumi-akiyama/front.svg",
  23104. extra: 1327 / 1235,
  23105. bottom: 0.02
  23106. }
  23107. },
  23108. back: {
  23109. height: math.unit(4 + 11 / 12, "feet"),
  23110. weight: math.unit(120, "lb"),
  23111. name: "Back",
  23112. image: {
  23113. source: "./media/characters/yumi-akiyama/back.svg",
  23114. extra: 1287 / 1245,
  23115. bottom: 0.002
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Galactic",
  23122. height: math.unit(50, "galaxies"),
  23123. default: true
  23124. },
  23125. {
  23126. name: "Universal",
  23127. height: math.unit(100, "universes")
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23133. {
  23134. front: {
  23135. height: math.unit(8, "feet"),
  23136. weight: math.unit(500, "lb"),
  23137. name: "Front",
  23138. image: {
  23139. source: "./media/characters/rifter-yrmori/front.svg",
  23140. extra: 1180 / 1125,
  23141. bottom: 0.02
  23142. }
  23143. },
  23144. back: {
  23145. height: math.unit(8, "feet"),
  23146. weight: math.unit(500, "lb"),
  23147. name: "Back",
  23148. image: {
  23149. source: "./media/characters/rifter-yrmori/back.svg",
  23150. extra: 1190 / 1145,
  23151. bottom: 0.001
  23152. }
  23153. },
  23154. wings: {
  23155. height: math.unit(7.75, "feet"),
  23156. weight: math.unit(500, "lb"),
  23157. name: "Wings",
  23158. image: {
  23159. source: "./media/characters/rifter-yrmori/wings.svg",
  23160. extra: 1357 / 1285
  23161. }
  23162. },
  23163. maw: {
  23164. height: math.unit(0.8, "feet"),
  23165. name: "Maw",
  23166. image: {
  23167. source: "./media/characters/rifter-yrmori/maw.svg"
  23168. }
  23169. },
  23170. mawfront: {
  23171. height: math.unit(1.45, "feet"),
  23172. name: "Maw (Front)",
  23173. image: {
  23174. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(8, "feet"),
  23182. default: true
  23183. },
  23184. {
  23185. name: "Macro",
  23186. height: math.unit(42, "meters")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23192. {
  23193. were: {
  23194. height: math.unit(25 + 6 / 12, "feet"),
  23195. weight: math.unit(10000, "lb"),
  23196. name: "Were",
  23197. image: {
  23198. source: "./media/characters/tahajin/were.svg",
  23199. extra: 801 / 770,
  23200. bottom: 0.042
  23201. }
  23202. },
  23203. aquatic: {
  23204. height: math.unit(6 + 4 / 12, "feet"),
  23205. weight: math.unit(160, "lb"),
  23206. name: "Aquatic",
  23207. image: {
  23208. source: "./media/characters/tahajin/aquatic.svg",
  23209. extra: 572 / 542,
  23210. bottom: 0.04
  23211. }
  23212. },
  23213. chow: {
  23214. height: math.unit(8 + 11 / 12, "feet"),
  23215. weight: math.unit(450, "lb"),
  23216. name: "Chow",
  23217. image: {
  23218. source: "./media/characters/tahajin/chow.svg",
  23219. extra: 660 / 640,
  23220. bottom: 0.015
  23221. }
  23222. },
  23223. demiNaga: {
  23224. height: math.unit(6 + 8 / 12, "feet"),
  23225. weight: math.unit(300, "lb"),
  23226. name: "Demi Naga",
  23227. image: {
  23228. source: "./media/characters/tahajin/demi-naga.svg",
  23229. extra: 643 / 615,
  23230. bottom: 0.1
  23231. }
  23232. },
  23233. data: {
  23234. height: math.unit(5, "inches"),
  23235. weight: math.unit(0.1, "lb"),
  23236. name: "Data",
  23237. image: {
  23238. source: "./media/characters/tahajin/data.svg"
  23239. }
  23240. },
  23241. fluu: {
  23242. height: math.unit(5 + 7 / 12, "feet"),
  23243. weight: math.unit(140, "lb"),
  23244. name: "Fluu",
  23245. image: {
  23246. source: "./media/characters/tahajin/fluu.svg",
  23247. extra: 628 / 592,
  23248. bottom: 0.02
  23249. }
  23250. },
  23251. starWarrior: {
  23252. height: math.unit(4 + 5 / 12, "feet"),
  23253. weight: math.unit(50, "lb"),
  23254. name: "Star Warrior",
  23255. image: {
  23256. source: "./media/characters/tahajin/star-warrior.svg"
  23257. }
  23258. },
  23259. },
  23260. [
  23261. {
  23262. name: "Normal",
  23263. height: math.unit(25 + 6 / 12, "feet"),
  23264. default: true
  23265. },
  23266. ]
  23267. ))
  23268. characterMakers.push(() => makeCharacter(
  23269. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23270. {
  23271. front: {
  23272. height: math.unit(8, "feet"),
  23273. weight: math.unit(350, "lb"),
  23274. name: "Front",
  23275. image: {
  23276. source: "./media/characters/gabira/front.svg",
  23277. extra: 1261/1154,
  23278. bottom: 51/1312
  23279. }
  23280. },
  23281. back: {
  23282. height: math.unit(8, "feet"),
  23283. weight: math.unit(350, "lb"),
  23284. name: "Back",
  23285. image: {
  23286. source: "./media/characters/gabira/back.svg",
  23287. extra: 1265/1163,
  23288. bottom: 46/1311
  23289. }
  23290. },
  23291. head: {
  23292. height: math.unit(2.85, "feet"),
  23293. name: "Head",
  23294. image: {
  23295. source: "./media/characters/gabira/head.svg"
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(8, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(5 + 3 / 12, "feet"),
  23312. weight: math.unit(137, "lb"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/sasha-katraine/front.svg",
  23316. extra: 1745/1694,
  23317. bottom: 37/1782
  23318. }
  23319. },
  23320. back: {
  23321. height: math.unit(5 + 3 / 12, "feet"),
  23322. weight: math.unit(137, "lb"),
  23323. name: "Back",
  23324. image: {
  23325. source: "./media/characters/sasha-katraine/back.svg",
  23326. extra: 1776/1699,
  23327. bottom: 26/1802
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Micro",
  23334. height: math.unit(5, "inches")
  23335. },
  23336. {
  23337. name: "Normal",
  23338. height: math.unit(5 + 3 / 12, "feet"),
  23339. default: true
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23345. {
  23346. side: {
  23347. height: math.unit(4, "inches"),
  23348. weight: math.unit(200, "grams"),
  23349. name: "Side",
  23350. image: {
  23351. source: "./media/characters/der/side.svg",
  23352. extra: 719 / 400,
  23353. bottom: 30.6 / 749.9187
  23354. }
  23355. },
  23356. },
  23357. [
  23358. {
  23359. name: "Micro",
  23360. height: math.unit(4, "inches"),
  23361. default: true
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23367. {
  23368. side: {
  23369. height: math.unit(30, "meters"),
  23370. weight: math.unit(700, "tonnes"),
  23371. name: "Side",
  23372. image: {
  23373. source: "./media/characters/fixerdragon/side.svg",
  23374. extra: (1293.0514 - 116.03) / 1106.86,
  23375. bottom: 116.03 / 1293.0514
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Planck",
  23382. height: math.unit(1.6e-35, "meters")
  23383. },
  23384. {
  23385. name: "Micro",
  23386. height: math.unit(0.4, "meters")
  23387. },
  23388. {
  23389. name: "Normal",
  23390. height: math.unit(30, "meters"),
  23391. default: true
  23392. },
  23393. {
  23394. name: "Megamacro",
  23395. height: math.unit(1.2, "megameters")
  23396. },
  23397. {
  23398. name: "Teramacro",
  23399. height: math.unit(130, "terameters")
  23400. },
  23401. {
  23402. name: "Yottamacro",
  23403. height: math.unit(6200, "yottameters")
  23404. },
  23405. ]
  23406. ));
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23409. {
  23410. front: {
  23411. height: math.unit(8, "feet"),
  23412. weight: math.unit(250, "lb"),
  23413. name: "Front",
  23414. image: {
  23415. source: "./media/characters/kite/front.svg",
  23416. extra: 2796 / 2659,
  23417. bottom: 0.002
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Normal",
  23424. height: math.unit(8, "feet"),
  23425. default: true
  23426. },
  23427. {
  23428. name: "Macro",
  23429. height: math.unit(360, "feet")
  23430. },
  23431. {
  23432. name: "Megamacro",
  23433. height: math.unit(1500, "feet")
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(5 + 11/12, "feet"),
  23442. weight: math.unit(170, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/poojawa-vynar/front.svg",
  23446. extra: 1735/1585,
  23447. bottom: 96/1831
  23448. }
  23449. },
  23450. back: {
  23451. height: math.unit(5 + 11/12, "feet"),
  23452. weight: math.unit(170, "lb"),
  23453. name: "Back",
  23454. image: {
  23455. source: "./media/characters/poojawa-vynar/back.svg",
  23456. extra: 1749/1607,
  23457. bottom: 28/1777
  23458. }
  23459. },
  23460. male: {
  23461. height: math.unit(5 + 11/12, "feet"),
  23462. weight: math.unit(170, "lb"),
  23463. name: "Male",
  23464. image: {
  23465. source: "./media/characters/poojawa-vynar/male.svg",
  23466. extra: 1855/1713,
  23467. bottom: 63/1918
  23468. }
  23469. },
  23470. taur: {
  23471. height: math.unit(5 + 11/12, "feet"),
  23472. weight: math.unit(170, "lb"),
  23473. name: "Taur",
  23474. image: {
  23475. source: "./media/characters/poojawa-vynar/taur.svg",
  23476. extra: 1151/1059,
  23477. bottom: 356/1507
  23478. }
  23479. },
  23480. frontDressed: {
  23481. height: math.unit(5 + 11/12, "feet"),
  23482. weight: math.unit(170, "lb"),
  23483. name: "Front (Dressed)",
  23484. image: {
  23485. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23486. extra: 1735/1585,
  23487. bottom: 96/1831
  23488. }
  23489. },
  23490. backDressed: {
  23491. height: math.unit(5 + 11/12, "feet"),
  23492. weight: math.unit(170, "lb"),
  23493. name: "Back (Dressed)",
  23494. image: {
  23495. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23496. extra: 1749/1607,
  23497. bottom: 28/1777
  23498. }
  23499. },
  23500. maleDressed: {
  23501. height: math.unit(5 + 11/12, "feet"),
  23502. weight: math.unit(170, "lb"),
  23503. name: "Male (Dressed)",
  23504. image: {
  23505. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23506. extra: 1855/1713,
  23507. bottom: 63/1918
  23508. }
  23509. },
  23510. taurDressed: {
  23511. height: math.unit(5 + 11/12, "feet"),
  23512. weight: math.unit(170, "lb"),
  23513. name: "Taur (Dressed)",
  23514. image: {
  23515. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23516. extra: 1151/1059,
  23517. bottom: 356/1507
  23518. }
  23519. },
  23520. maw: {
  23521. height: math.unit(1.46, "feet"),
  23522. name: "Maw",
  23523. image: {
  23524. source: "./media/characters/poojawa-vynar/maw.svg"
  23525. }
  23526. },
  23527. head: {
  23528. height: math.unit(2.34, "feet"),
  23529. name: "Head",
  23530. image: {
  23531. source: "./media/characters/poojawa-vynar/head.svg"
  23532. }
  23533. },
  23534. paw: {
  23535. height: math.unit(1.61, "feet"),
  23536. name: "Paw",
  23537. image: {
  23538. source: "./media/characters/poojawa-vynar/paw.svg"
  23539. }
  23540. },
  23541. pawToering: {
  23542. height: math.unit(1.72, "feet"),
  23543. name: "Paw (Toering)",
  23544. image: {
  23545. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23546. }
  23547. },
  23548. toering: {
  23549. height: math.unit(2.9, "inches"),
  23550. name: "Toering",
  23551. image: {
  23552. source: "./media/characters/poojawa-vynar/toering.svg"
  23553. }
  23554. },
  23555. shaft: {
  23556. height: math.unit(0.625, "feet"),
  23557. name: "Shaft",
  23558. image: {
  23559. source: "./media/characters/poojawa-vynar/shaft.svg"
  23560. }
  23561. },
  23562. spade: {
  23563. height: math.unit(0.42, "feet"),
  23564. name: "Spade",
  23565. image: {
  23566. source: "./media/characters/poojawa-vynar/spade.svg"
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Shortstack",
  23573. height: math.unit(4, "feet")
  23574. },
  23575. {
  23576. name: "Normal",
  23577. height: math.unit(5 + 11 / 12, "feet"),
  23578. default: true
  23579. },
  23580. {
  23581. name: "Tauric",
  23582. height: math.unit(4, "meters")
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23588. {
  23589. front: {
  23590. height: math.unit(293, "meters"),
  23591. weight: math.unit(70400, "tons"),
  23592. name: "Front",
  23593. image: {
  23594. source: "./media/characters/violette/front.svg",
  23595. extra: 1227 / 1180,
  23596. bottom: 0.005
  23597. }
  23598. },
  23599. back: {
  23600. height: math.unit(293, "meters"),
  23601. weight: math.unit(70400, "tons"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/violette/back.svg",
  23605. extra: 1227 / 1180,
  23606. bottom: 0.005
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Macro",
  23613. height: math.unit(293, "meters"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(1050, "feet"),
  23623. weight: math.unit(200000, "tons"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/alessandra/front.svg",
  23627. extra: 960 / 912,
  23628. bottom: 0.06
  23629. }
  23630. },
  23631. },
  23632. [
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(1050, "feet")
  23636. },
  23637. {
  23638. name: "Macro+",
  23639. height: math.unit(900, "meters"),
  23640. default: true
  23641. },
  23642. ]
  23643. ))
  23644. characterMakers.push(() => makeCharacter(
  23645. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23646. {
  23647. front: {
  23648. height: math.unit(5, "feet"),
  23649. weight: math.unit(187, "lb"),
  23650. name: "Front",
  23651. image: {
  23652. source: "./media/characters/person/front.svg",
  23653. extra: 3087 / 2945,
  23654. bottom: 91 / 3181
  23655. }
  23656. },
  23657. },
  23658. [
  23659. {
  23660. name: "Micro",
  23661. height: math.unit(3, "inches")
  23662. },
  23663. {
  23664. name: "Normal",
  23665. height: math.unit(5, "feet"),
  23666. default: true
  23667. },
  23668. {
  23669. name: "Macro",
  23670. height: math.unit(90, "feet")
  23671. },
  23672. {
  23673. name: "Max Size",
  23674. height: math.unit(280, "feet")
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(4.5, "meters"),
  23683. weight: math.unit(3200, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/ty/front.svg",
  23687. extra: 1038 / 960,
  23688. bottom: 31.156 / 1068
  23689. }
  23690. },
  23691. back: {
  23692. height: math.unit(4.5, "meters"),
  23693. weight: math.unit(3200, "lb"),
  23694. name: "Back",
  23695. image: {
  23696. source: "./media/characters/ty/back.svg",
  23697. extra: 1044 / 966,
  23698. bottom: 7.48 / 1049
  23699. }
  23700. },
  23701. },
  23702. [
  23703. {
  23704. name: "Normal",
  23705. height: math.unit(4.5, "meters"),
  23706. default: true
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23712. {
  23713. front: {
  23714. height: math.unit(5 + 4 / 12, "feet"),
  23715. weight: math.unit(115, "lb"),
  23716. name: "Front",
  23717. image: {
  23718. source: "./media/characters/rocky/front.svg",
  23719. extra: 1012 / 975,
  23720. bottom: 54 / 1066
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(5 + 4 / 12, "feet"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23734. {
  23735. upright: {
  23736. height: math.unit(6, "meters"),
  23737. weight: math.unit(4000, "kg"),
  23738. name: "Upright",
  23739. image: {
  23740. source: "./media/characters/ruin/upright.svg",
  23741. extra: 668 / 661,
  23742. bottom: 42 / 799.8396
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Normal",
  23749. height: math.unit(6, "meters"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(5, "feet"),
  23759. weight: math.unit(106, "lb"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/robin/front.svg",
  23763. extra: 862 / 799,
  23764. bottom: 42.4 / 914.8856
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(5, "feet"),
  23772. default: true
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23778. {
  23779. side: {
  23780. height: math.unit(3, "feet"),
  23781. weight: math.unit(225, "lb"),
  23782. name: "Side",
  23783. image: {
  23784. source: "./media/characters/saian/side.svg",
  23785. extra: 566 / 356,
  23786. bottom: 79.7 / 643
  23787. }
  23788. },
  23789. maw: {
  23790. height: math.unit(2.85, "feet"),
  23791. name: "Maw",
  23792. image: {
  23793. source: "./media/characters/saian/maw.svg"
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Normal",
  23800. height: math.unit(3, "feet"),
  23801. default: true
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23807. {
  23808. side: {
  23809. height: math.unit(8, "feet"),
  23810. weight: math.unit(300, "lb"),
  23811. name: "Side",
  23812. image: {
  23813. source: "./media/characters/equus-silvermane/side.svg",
  23814. extra: 2176 / 2050,
  23815. bottom: 65.7 / 2245
  23816. }
  23817. },
  23818. front: {
  23819. height: math.unit(8, "feet"),
  23820. weight: math.unit(300, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/equus-silvermane/front.svg",
  23824. extra: 4633 / 4400,
  23825. bottom: 71.3 / 4706.915
  23826. }
  23827. },
  23828. sideStepping: {
  23829. height: math.unit(8, "feet"),
  23830. weight: math.unit(300, "lb"),
  23831. name: "Side (Stepping)",
  23832. image: {
  23833. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23834. extra: 1968 / 1860,
  23835. bottom: 16.4 / 1989
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Normal",
  23842. height: math.unit(8, "feet")
  23843. },
  23844. {
  23845. name: "Minimacro",
  23846. height: math.unit(75, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Macro",
  23851. height: math.unit(150, "feet")
  23852. },
  23853. {
  23854. name: "Macro+",
  23855. height: math.unit(1000, "feet")
  23856. },
  23857. {
  23858. name: "Megamacro",
  23859. height: math.unit(1, "mile")
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23865. {
  23866. side: {
  23867. height: math.unit(20, "feet"),
  23868. weight: math.unit(30000, "kg"),
  23869. name: "Side",
  23870. image: {
  23871. source: "./media/characters/windar/side.svg",
  23872. extra: 1491 / 1248,
  23873. bottom: 82.56 / 1568
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Normal",
  23880. height: math.unit(20, "feet"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23887. {
  23888. side: {
  23889. height: math.unit(15.66, "feet"),
  23890. weight: math.unit(150, "lb"),
  23891. name: "Side",
  23892. image: {
  23893. source: "./media/characters/melody/side.svg",
  23894. extra: 1097 / 944,
  23895. bottom: 11.8 / 1109
  23896. }
  23897. },
  23898. sideOutfit: {
  23899. height: math.unit(15.66, "feet"),
  23900. weight: math.unit(150, "lb"),
  23901. name: "Side (Outfit)",
  23902. image: {
  23903. source: "./media/characters/melody/side-outfit.svg",
  23904. extra: 1097 / 944,
  23905. bottom: 11.8 / 1109
  23906. }
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(15.66, "feet"),
  23913. default: true
  23914. },
  23915. ]
  23916. ))
  23917. characterMakers.push(() => makeCharacter(
  23918. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23919. {
  23920. armoredFront: {
  23921. height: math.unit(8, "feet"),
  23922. weight: math.unit(325, "lb"),
  23923. name: "Front",
  23924. image: {
  23925. source: "./media/characters/windera/armored-front.svg",
  23926. extra: 1830/1598,
  23927. bottom: 151/1981
  23928. },
  23929. form: "armored",
  23930. default: true
  23931. },
  23932. macroFront: {
  23933. height: math.unit(70, "feet"),
  23934. weight: math.unit(315453, "lb"),
  23935. name: "Front",
  23936. image: {
  23937. source: "./media/characters/windera/macro-front.svg",
  23938. extra: 963/883,
  23939. bottom: 23/986
  23940. },
  23941. form: "macro",
  23942. default: true
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Normal",
  23948. height: math.unit(8, "feet"),
  23949. default: true,
  23950. form: "armored"
  23951. },
  23952. {
  23953. name: "Normal",
  23954. height: math.unit(70, "feet"),
  23955. default: true,
  23956. form: "macro"
  23957. },
  23958. ],
  23959. {
  23960. "armored": {
  23961. name: "Armored",
  23962. default: true
  23963. },
  23964. "macro": {
  23965. name: "Macro",
  23966. },
  23967. }
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23971. {
  23972. front: {
  23973. height: math.unit(28.75, "feet"),
  23974. weight: math.unit(2000, "kg"),
  23975. name: "Front",
  23976. image: {
  23977. source: "./media/characters/sonear/front.svg",
  23978. extra: 1041.1 / 964.9,
  23979. bottom: 53.7 / 1096.6
  23980. }
  23981. },
  23982. },
  23983. [
  23984. {
  23985. name: "Normal",
  23986. height: math.unit(28.75, "feet"),
  23987. default: true
  23988. },
  23989. ]
  23990. ))
  23991. characterMakers.push(() => makeCharacter(
  23992. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23993. {
  23994. side: {
  23995. height: math.unit(25.5, "feet"),
  23996. weight: math.unit(23000, "kg"),
  23997. name: "Side",
  23998. image: {
  23999. source: "./media/characters/kanara/side.svg"
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Normal",
  24006. height: math.unit(25.5, "feet"),
  24007. default: true
  24008. },
  24009. ]
  24010. ))
  24011. characterMakers.push(() => makeCharacter(
  24012. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24013. {
  24014. side: {
  24015. height: math.unit(10, "feet"),
  24016. weight: math.unit(1000, "kg"),
  24017. name: "Side",
  24018. image: {
  24019. source: "./media/characters/ereus/side.svg",
  24020. extra: 1157 / 959,
  24021. bottom: 153 / 1312.5
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Normal",
  24028. height: math.unit(10, "feet"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24035. {
  24036. side: {
  24037. height: math.unit(4.5, "feet"),
  24038. weight: math.unit(500, "lb"),
  24039. name: "Side",
  24040. image: {
  24041. source: "./media/characters/e-ter/side.svg",
  24042. extra: 1550 / 1248,
  24043. bottom: 146 / 1694
  24044. }
  24045. },
  24046. },
  24047. [
  24048. {
  24049. name: "Normal",
  24050. height: math.unit(4.5, "feet"),
  24051. default: true
  24052. },
  24053. ]
  24054. ))
  24055. characterMakers.push(() => makeCharacter(
  24056. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24057. {
  24058. side: {
  24059. height: math.unit(9.7, "feet"),
  24060. weight: math.unit(4000, "kg"),
  24061. name: "Side",
  24062. image: {
  24063. source: "./media/characters/yamie/side.svg"
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Normal",
  24070. height: math.unit(9.7, "feet"),
  24071. default: true
  24072. },
  24073. ]
  24074. ))
  24075. characterMakers.push(() => makeCharacter(
  24076. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24077. {
  24078. front: {
  24079. height: math.unit(50, "feet"),
  24080. weight: math.unit(50000, "kg"),
  24081. name: "Front",
  24082. image: {
  24083. source: "./media/characters/anders/front.svg",
  24084. extra: 570 / 539,
  24085. bottom: 14.7 / 586.7
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Large",
  24092. height: math.unit(50, "feet")
  24093. },
  24094. {
  24095. name: "Macro",
  24096. height: math.unit(2000, "feet"),
  24097. default: true
  24098. },
  24099. {
  24100. name: "Megamacro",
  24101. height: math.unit(12, "miles")
  24102. },
  24103. ]
  24104. ))
  24105. characterMakers.push(() => makeCharacter(
  24106. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24107. {
  24108. front: {
  24109. height: math.unit(7 + 2 / 12, "feet"),
  24110. weight: math.unit(300, "lb"),
  24111. name: "Front",
  24112. image: {
  24113. source: "./media/characters/reban/front.svg",
  24114. extra: 1287/1212,
  24115. bottom: 148/1435
  24116. }
  24117. },
  24118. head: {
  24119. height: math.unit(1.95, "feet"),
  24120. name: "Head",
  24121. image: {
  24122. source: "./media/characters/reban/head.svg"
  24123. }
  24124. },
  24125. maw: {
  24126. height: math.unit(0.95, "feet"),
  24127. name: "Maw",
  24128. image: {
  24129. source: "./media/characters/reban/maw.svg"
  24130. }
  24131. },
  24132. foot: {
  24133. height: math.unit(1.65, "feet"),
  24134. name: "Foot",
  24135. image: {
  24136. source: "./media/characters/reban/foot.svg"
  24137. }
  24138. },
  24139. dick: {
  24140. height: math.unit(7 / 5, "feet"),
  24141. name: "Dick",
  24142. image: {
  24143. source: "./media/characters/reban/dick.svg"
  24144. }
  24145. },
  24146. },
  24147. [
  24148. {
  24149. name: "Natural Height",
  24150. height: math.unit(7 + 2 / 12, "feet")
  24151. },
  24152. {
  24153. name: "Macro",
  24154. height: math.unit(500, "feet"),
  24155. default: true
  24156. },
  24157. {
  24158. name: "Canon Height",
  24159. height: math.unit(50, "AU")
  24160. },
  24161. ]
  24162. ))
  24163. characterMakers.push(() => makeCharacter(
  24164. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24165. {
  24166. front: {
  24167. height: math.unit(6, "feet"),
  24168. weight: math.unit(150, "lb"),
  24169. name: "Front",
  24170. image: {
  24171. source: "./media/characters/terrance-keayes/front.svg",
  24172. extra: 1.005,
  24173. bottom: 151 / 1615
  24174. }
  24175. },
  24176. side: {
  24177. height: math.unit(6, "feet"),
  24178. weight: math.unit(150, "lb"),
  24179. name: "Side",
  24180. image: {
  24181. source: "./media/characters/terrance-keayes/side.svg",
  24182. extra: 1.005,
  24183. bottom: 129.4 / 1544
  24184. }
  24185. },
  24186. back: {
  24187. height: math.unit(6, "feet"),
  24188. weight: math.unit(150, "lb"),
  24189. name: "Back",
  24190. image: {
  24191. source: "./media/characters/terrance-keayes/back.svg",
  24192. extra: 1.005,
  24193. bottom: 58.4 / 1557.3
  24194. }
  24195. },
  24196. dick: {
  24197. height: math.unit(6 * 0.208, "feet"),
  24198. name: "Dick",
  24199. image: {
  24200. source: "./media/characters/terrance-keayes/dick.svg"
  24201. }
  24202. },
  24203. },
  24204. [
  24205. {
  24206. name: "Canon Height",
  24207. height: math.unit(35, "miles"),
  24208. default: true
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(6, "feet"),
  24217. weight: math.unit(150, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/ofelia/front.svg",
  24221. extra: 1130/1117,
  24222. bottom: 91/1221
  24223. }
  24224. },
  24225. back: {
  24226. height: math.unit(6, "feet"),
  24227. weight: math.unit(150, "lb"),
  24228. name: "Back",
  24229. image: {
  24230. source: "./media/characters/ofelia/back.svg",
  24231. extra: 1172/1159,
  24232. bottom: 28/1200
  24233. }
  24234. },
  24235. maw: {
  24236. height: math.unit(1, "feet"),
  24237. name: "Maw",
  24238. image: {
  24239. source: "./media/characters/ofelia/maw.svg"
  24240. }
  24241. },
  24242. foot: {
  24243. height: math.unit(1.949, "feet"),
  24244. name: "Foot",
  24245. image: {
  24246. source: "./media/characters/ofelia/foot.svg"
  24247. }
  24248. },
  24249. },
  24250. [
  24251. {
  24252. name: "Canon Height",
  24253. height: math.unit(2000, "miles"),
  24254. default: true
  24255. },
  24256. ]
  24257. ))
  24258. characterMakers.push(() => makeCharacter(
  24259. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24260. {
  24261. front: {
  24262. height: math.unit(6, "feet"),
  24263. weight: math.unit(150, "lb"),
  24264. name: "Front",
  24265. image: {
  24266. source: "./media/characters/samuel/front.svg",
  24267. extra: 265 / 258,
  24268. bottom: 2 / 266.1566
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Macro",
  24275. height: math.unit(100, "feet"),
  24276. default: true
  24277. },
  24278. {
  24279. name: "Full Size",
  24280. height: math.unit(1000, "miles")
  24281. },
  24282. ]
  24283. ))
  24284. characterMakers.push(() => makeCharacter(
  24285. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24286. {
  24287. front: {
  24288. height: math.unit(6, "feet"),
  24289. weight: math.unit(300, "lb"),
  24290. name: "Front",
  24291. image: {
  24292. source: "./media/characters/beishir-kiel/front.svg",
  24293. extra: 569 / 547,
  24294. bottom: 41.9 / 609
  24295. }
  24296. },
  24297. maw: {
  24298. height: math.unit(6 * 0.202, "feet"),
  24299. name: "Maw",
  24300. image: {
  24301. source: "./media/characters/beishir-kiel/maw.svg"
  24302. }
  24303. },
  24304. },
  24305. [
  24306. {
  24307. name: "Macro",
  24308. height: math.unit(300, "feet"),
  24309. default: true
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(5 + 7/12, "feet"),
  24318. weight: math.unit(120, "lb"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/logan-grey/front.svg",
  24322. extra: 1836/1738,
  24323. bottom: 108/1944
  24324. }
  24325. },
  24326. back: {
  24327. height: math.unit(5 + 7/12, "feet"),
  24328. weight: math.unit(120, "lb"),
  24329. name: "Back",
  24330. image: {
  24331. source: "./media/characters/logan-grey/back.svg",
  24332. extra: 1880/1794,
  24333. bottom: 24/1904
  24334. }
  24335. },
  24336. frontSfw: {
  24337. height: math.unit(5 + 7/12, "feet"),
  24338. weight: math.unit(120, "lb"),
  24339. name: "Front (SFW)",
  24340. image: {
  24341. source: "./media/characters/logan-grey/front-sfw.svg",
  24342. extra: 1836/1738,
  24343. bottom: 108/1944
  24344. }
  24345. },
  24346. backSfw: {
  24347. height: math.unit(5 + 7/12, "feet"),
  24348. weight: math.unit(120, "lb"),
  24349. name: "Back (SFW)",
  24350. image: {
  24351. source: "./media/characters/logan-grey/back-sfw.svg",
  24352. extra: 1880/1794,
  24353. bottom: 24/1904
  24354. }
  24355. },
  24356. hands: {
  24357. height: math.unit(0.84, "feet"),
  24358. name: "Hands",
  24359. image: {
  24360. source: "./media/characters/logan-grey/hands.svg"
  24361. }
  24362. },
  24363. paws: {
  24364. height: math.unit(0.72, "feet"),
  24365. name: "Paws",
  24366. image: {
  24367. source: "./media/characters/logan-grey/paws.svg"
  24368. }
  24369. },
  24370. cock: {
  24371. height: math.unit(1.45, "feet"),
  24372. name: "Cock",
  24373. image: {
  24374. source: "./media/characters/logan-grey/cock.svg"
  24375. }
  24376. },
  24377. cockAlt: {
  24378. height: math.unit(1.437, "feet"),
  24379. name: "Cock (alt)",
  24380. image: {
  24381. source: "./media/characters/logan-grey/cock-alt.svg"
  24382. }
  24383. },
  24384. },
  24385. [
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(5 + 8 / 12, "feet")
  24389. },
  24390. {
  24391. name: "The 500 Foot Femboy",
  24392. height: math.unit(500, "feet"),
  24393. default: true
  24394. },
  24395. {
  24396. name: "Megmacro",
  24397. height: math.unit(20, "miles")
  24398. },
  24399. ]
  24400. ))
  24401. characterMakers.push(() => makeCharacter(
  24402. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24403. {
  24404. front: {
  24405. height: math.unit(8 + 2 / 12, "feet"),
  24406. weight: math.unit(275, "lb"),
  24407. name: "Front",
  24408. image: {
  24409. source: "./media/characters/draganta/front.svg",
  24410. extra: 1177 / 1135,
  24411. bottom: 33.46 / 1212.1
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(8 + 6 / 12, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(150, "feet")
  24424. },
  24425. {
  24426. name: "Megamacro",
  24427. height: math.unit(1000, "miles")
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24433. {
  24434. front: {
  24435. height: math.unit(1.72, "m"),
  24436. weight: math.unit(80, "lb"),
  24437. name: "Front",
  24438. image: {
  24439. source: "./media/characters/voski/front.svg",
  24440. extra: 2076.22 / 2022.4,
  24441. bottom: 102.7 / 2177.3866
  24442. }
  24443. },
  24444. frontFlaccid: {
  24445. height: math.unit(1.72, "m"),
  24446. weight: math.unit(80, "lb"),
  24447. name: "Front (Flaccid)",
  24448. image: {
  24449. source: "./media/characters/voski/front-flaccid.svg",
  24450. extra: 2076.22 / 2022.4,
  24451. bottom: 102.7 / 2177.3866
  24452. }
  24453. },
  24454. frontErect: {
  24455. height: math.unit(1.72, "m"),
  24456. weight: math.unit(80, "lb"),
  24457. name: "Front (Erect)",
  24458. image: {
  24459. source: "./media/characters/voski/front-erect.svg",
  24460. extra: 2076.22 / 2022.4,
  24461. bottom: 102.7 / 2177.3866
  24462. }
  24463. },
  24464. back: {
  24465. height: math.unit(1.72, "m"),
  24466. weight: math.unit(80, "lb"),
  24467. name: "Back",
  24468. image: {
  24469. source: "./media/characters/voski/back.svg",
  24470. extra: 2104 / 2051,
  24471. bottom: 10.45 / 2113.63
  24472. }
  24473. },
  24474. },
  24475. [
  24476. {
  24477. name: "Normal",
  24478. height: math.unit(1.72, "m")
  24479. },
  24480. {
  24481. name: "Macro",
  24482. height: math.unit(55, "m"),
  24483. default: true
  24484. },
  24485. {
  24486. name: "Macro+",
  24487. height: math.unit(300, "m")
  24488. },
  24489. {
  24490. name: "Macro++",
  24491. height: math.unit(700, "m")
  24492. },
  24493. {
  24494. name: "Macro+++",
  24495. height: math.unit(4500, "m")
  24496. },
  24497. {
  24498. name: "Macro++++",
  24499. height: math.unit(45, "km")
  24500. },
  24501. {
  24502. name: "Macro+++++",
  24503. height: math.unit(1220, "km")
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(2.3, "m"),
  24512. weight: math.unit(304, "kg"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/icowom-lee/front.svg",
  24516. extra: 985 / 955,
  24517. bottom: 25.4 / 1012
  24518. }
  24519. },
  24520. fronttentacles: {
  24521. height: math.unit(2.3, "m"),
  24522. weight: math.unit(304, "kg"),
  24523. name: "Front-tentacles",
  24524. image: {
  24525. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24526. extra: 985 / 955,
  24527. bottom: 25.4 / 1012
  24528. }
  24529. },
  24530. back: {
  24531. height: math.unit(2.3, "m"),
  24532. weight: math.unit(304, "kg"),
  24533. name: "Back",
  24534. image: {
  24535. source: "./media/characters/icowom-lee/back.svg",
  24536. extra: 975 / 954,
  24537. bottom: 9.5 / 985
  24538. }
  24539. },
  24540. backtentacles: {
  24541. height: math.unit(2.3, "m"),
  24542. weight: math.unit(304, "kg"),
  24543. name: "Back-tentacles",
  24544. image: {
  24545. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24546. extra: 975 / 954,
  24547. bottom: 9.5 / 985
  24548. }
  24549. },
  24550. frontDressed: {
  24551. height: math.unit(2.3, "m"),
  24552. weight: math.unit(304, "kg"),
  24553. name: "Front (Dressed)",
  24554. image: {
  24555. source: "./media/characters/icowom-lee/front-dressed.svg",
  24556. extra: 3076 / 2933,
  24557. bottom: 51.4 / 3125.1889
  24558. }
  24559. },
  24560. rump: {
  24561. height: math.unit(0.776, "meters"),
  24562. name: "Rump",
  24563. image: {
  24564. source: "./media/characters/icowom-lee/rump.svg"
  24565. }
  24566. },
  24567. genitals: {
  24568. height: math.unit(0.78, "meters"),
  24569. name: "Genitals",
  24570. image: {
  24571. source: "./media/characters/icowom-lee/genitals.svg"
  24572. }
  24573. },
  24574. },
  24575. [
  24576. {
  24577. name: "Normal",
  24578. height: math.unit(2.3, "meters"),
  24579. default: true
  24580. },
  24581. {
  24582. name: "Macro",
  24583. height: math.unit(94, "meters"),
  24584. default: true
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(22, "meters"),
  24593. weight: math.unit(21000, "kg"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/shock-diamond/front.svg",
  24597. extra: 2204 / 2053,
  24598. bottom: 65 / 2239.47
  24599. }
  24600. },
  24601. frontNude: {
  24602. height: math.unit(22, "meters"),
  24603. weight: math.unit(21000, "kg"),
  24604. name: "Front (Nude)",
  24605. image: {
  24606. source: "./media/characters/shock-diamond/front-nude.svg",
  24607. extra: 2514 / 2285,
  24608. bottom: 13 / 2527.56
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(3, "meters")
  24616. },
  24617. {
  24618. name: "Macro",
  24619. height: math.unit(22, "meters"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24626. {
  24627. front: {
  24628. height: math.unit(5 + 4/12, "feet"),
  24629. weight: math.unit(125, "lb"),
  24630. name: "Front",
  24631. image: {
  24632. source: "./media/characters/rory/front.svg",
  24633. extra: 1790/1681,
  24634. bottom: 66/1856
  24635. },
  24636. form: "normal",
  24637. default: true
  24638. },
  24639. back: {
  24640. height: math.unit(5 + 4/12, "feet"),
  24641. weight: math.unit(125, "lb"),
  24642. name: "Back",
  24643. image: {
  24644. source: "./media/characters/rory/back.svg",
  24645. extra: 1805/1690,
  24646. bottom: 56/1861
  24647. },
  24648. form: "normal"
  24649. },
  24650. frontDressed: {
  24651. height: math.unit(5 + 4/12, "feet"),
  24652. weight: math.unit(125, "lb"),
  24653. name: "Front (Dressed)",
  24654. image: {
  24655. source: "./media/characters/rory/front-dressed.svg",
  24656. extra: 1790/1681,
  24657. bottom: 66/1856
  24658. },
  24659. form: "normal"
  24660. },
  24661. backDressed: {
  24662. height: math.unit(5 + 4/12, "feet"),
  24663. weight: math.unit(125, "lb"),
  24664. name: "Back (Dressed)",
  24665. image: {
  24666. source: "./media/characters/rory/back-dressed.svg",
  24667. extra: 1805/1690,
  24668. bottom: 56/1861
  24669. },
  24670. form: "normal"
  24671. },
  24672. frontNsfw: {
  24673. height: math.unit(5 + 4/12, "feet"),
  24674. weight: math.unit(125, "lb"),
  24675. name: "Front (NSFW)",
  24676. image: {
  24677. source: "./media/characters/rory/front-nsfw.svg",
  24678. extra: 1790/1681,
  24679. bottom: 66/1856
  24680. },
  24681. form: "normal"
  24682. },
  24683. backNsfw: {
  24684. height: math.unit(5 + 4/12, "feet"),
  24685. weight: math.unit(125, "lb"),
  24686. name: "Back (NSFW)",
  24687. image: {
  24688. source: "./media/characters/rory/back-nsfw.svg",
  24689. extra: 1805/1690,
  24690. bottom: 56/1861
  24691. },
  24692. form: "normal"
  24693. },
  24694. dick: {
  24695. height: math.unit(0.8, "feet"),
  24696. name: "Dick",
  24697. image: {
  24698. source: "./media/characters/rory/dick.svg"
  24699. },
  24700. form: "normal"
  24701. },
  24702. thicc_front: {
  24703. height: math.unit(5 + 4/12, "feet"),
  24704. weight: math.unit(195, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/rory/thicc-front.svg",
  24708. extra: 1220/1100,
  24709. bottom: 103/1323
  24710. },
  24711. form: "thicc",
  24712. default: true
  24713. },
  24714. thicc_back: {
  24715. height: math.unit(5 + 4/12, "feet"),
  24716. weight: math.unit(195, "lb"),
  24717. name: "Back",
  24718. image: {
  24719. source: "./media/characters/rory/thicc-back.svg",
  24720. extra: 1166/1086,
  24721. bottom: 35/1201
  24722. },
  24723. form: "thicc"
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Micro",
  24729. height: math.unit(3, "inches"),
  24730. allForms: true
  24731. },
  24732. {
  24733. name: "Normal",
  24734. height: math.unit(5 + 4/12, "feet"),
  24735. allForms: true,
  24736. default: true
  24737. },
  24738. {
  24739. name: "Macro",
  24740. height: math.unit(90, "feet"),
  24741. allForms: true
  24742. },
  24743. {
  24744. name: "Supercharged",
  24745. height: math.unit(270, "feet"),
  24746. allForms: true
  24747. },
  24748. ],
  24749. {
  24750. "normal": {
  24751. name: "Normal",
  24752. default: true
  24753. },
  24754. "thicc": {
  24755. name: "Thicc",
  24756. },
  24757. }
  24758. ))
  24759. characterMakers.push(() => makeCharacter(
  24760. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24761. {
  24762. front: {
  24763. height: math.unit(5 + 9 / 12, "feet"),
  24764. weight: math.unit(190, "lb"),
  24765. name: "Front",
  24766. image: {
  24767. source: "./media/characters/sprisk/front.svg",
  24768. extra: 1225 / 1180,
  24769. bottom: 42.7 / 1266.4
  24770. }
  24771. },
  24772. frontNsfw: {
  24773. height: math.unit(5 + 9 / 12, "feet"),
  24774. weight: math.unit(190, "lb"),
  24775. name: "Front (NSFW)",
  24776. image: {
  24777. source: "./media/characters/sprisk/front-nsfw.svg",
  24778. extra: 1225 / 1180,
  24779. bottom: 42.7 / 1266.4
  24780. }
  24781. },
  24782. back: {
  24783. height: math.unit(5 + 9 / 12, "feet"),
  24784. weight: math.unit(190, "lb"),
  24785. name: "Back",
  24786. image: {
  24787. source: "./media/characters/sprisk/back.svg",
  24788. extra: 1247 / 1200,
  24789. bottom: 5.6 / 1253.04
  24790. }
  24791. },
  24792. },
  24793. [
  24794. {
  24795. name: "Tiny",
  24796. height: math.unit(2, "inches")
  24797. },
  24798. {
  24799. name: "Normal",
  24800. height: math.unit(5 + 9 / 12, "feet"),
  24801. default: true
  24802. },
  24803. {
  24804. name: "Mini Macro",
  24805. height: math.unit(18, "feet")
  24806. },
  24807. {
  24808. name: "Macro",
  24809. height: math.unit(100, "feet")
  24810. },
  24811. {
  24812. name: "MACRO",
  24813. height: math.unit(50, "miles")
  24814. },
  24815. {
  24816. name: "M A C R O",
  24817. height: math.unit(300, "miles")
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24823. {
  24824. side: {
  24825. height: math.unit(15.6, "meters"),
  24826. weight: math.unit(700000, "kg"),
  24827. name: "Side",
  24828. image: {
  24829. source: "./media/characters/bunsen/side.svg",
  24830. extra: 1644 / 358
  24831. }
  24832. },
  24833. foot: {
  24834. height: math.unit(1.611 * 1644 / 358, "meter"),
  24835. name: "Foot",
  24836. image: {
  24837. source: "./media/characters/bunsen/foot.svg"
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Small",
  24844. height: math.unit(10, "feet")
  24845. },
  24846. {
  24847. name: "Normal",
  24848. height: math.unit(15.6, "meters"),
  24849. default: true
  24850. },
  24851. ]
  24852. ))
  24853. characterMakers.push(() => makeCharacter(
  24854. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24855. {
  24856. front: {
  24857. height: math.unit(4 + 11 / 12, "feet"),
  24858. weight: math.unit(140, "lb"),
  24859. name: "Front",
  24860. image: {
  24861. source: "./media/characters/sesh/front.svg",
  24862. extra: 3420 / 3231,
  24863. bottom: 72 / 3949.5
  24864. }
  24865. },
  24866. },
  24867. [
  24868. {
  24869. name: "Normal",
  24870. height: math.unit(4 + 11 / 12, "feet")
  24871. },
  24872. {
  24873. name: "Grown",
  24874. height: math.unit(15, "feet"),
  24875. default: true
  24876. },
  24877. {
  24878. name: "Macro",
  24879. height: math.unit(1500, "feet")
  24880. },
  24881. {
  24882. name: "Megamacro",
  24883. height: math.unit(30, "miles")
  24884. },
  24885. {
  24886. name: "Continental",
  24887. height: math.unit(3000, "miles")
  24888. },
  24889. {
  24890. name: "Gravity Mass",
  24891. height: math.unit(300000, "miles")
  24892. },
  24893. {
  24894. name: "Planet Buster",
  24895. height: math.unit(30000000, "miles")
  24896. },
  24897. {
  24898. name: "Big",
  24899. height: math.unit(3000000000, "miles")
  24900. },
  24901. ]
  24902. ))
  24903. characterMakers.push(() => makeCharacter(
  24904. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24905. {
  24906. front: {
  24907. height: math.unit(9, "feet"),
  24908. weight: math.unit(350, "lb"),
  24909. name: "Front",
  24910. image: {
  24911. source: "./media/characters/pepper/front.svg",
  24912. extra: 1448 / 1312,
  24913. bottom: 9.4 / 1457.88
  24914. }
  24915. },
  24916. back: {
  24917. height: math.unit(9, "feet"),
  24918. weight: math.unit(350, "lb"),
  24919. name: "Back",
  24920. image: {
  24921. source: "./media/characters/pepper/back.svg",
  24922. extra: 1423 / 1300,
  24923. bottom: 4.6 / 1429
  24924. }
  24925. },
  24926. maw: {
  24927. height: math.unit(0.932, "feet"),
  24928. name: "Maw",
  24929. image: {
  24930. source: "./media/characters/pepper/maw.svg"
  24931. }
  24932. },
  24933. },
  24934. [
  24935. {
  24936. name: "Normal",
  24937. height: math.unit(9, "feet"),
  24938. default: true
  24939. },
  24940. ]
  24941. ))
  24942. characterMakers.push(() => makeCharacter(
  24943. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24944. {
  24945. front: {
  24946. height: math.unit(6, "feet"),
  24947. weight: math.unit(150, "lb"),
  24948. name: "Front",
  24949. image: {
  24950. source: "./media/characters/maelstrom/front.svg",
  24951. extra: 2100 / 1883,
  24952. bottom: 94 / 2196.7
  24953. }
  24954. },
  24955. },
  24956. [
  24957. {
  24958. name: "Less Kaiju",
  24959. height: math.unit(200, "feet")
  24960. },
  24961. {
  24962. name: "Kaiju",
  24963. height: math.unit(400, "feet"),
  24964. default: true
  24965. },
  24966. {
  24967. name: "Kaiju-er",
  24968. height: math.unit(600, "feet")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(6 + 5 / 12, "feet"),
  24977. weight: math.unit(180, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/lexir/front.svg",
  24981. extra: 180 / 172,
  24982. bottom: 12 / 192
  24983. }
  24984. },
  24985. back: {
  24986. height: math.unit(6 + 5 / 12, "feet"),
  24987. weight: math.unit(180, "lb"),
  24988. name: "Back",
  24989. image: {
  24990. source: "./media/characters/lexir/back.svg",
  24991. extra: 1273/1201,
  24992. bottom: 39/1312
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Very Smal",
  24999. height: math.unit(1, "nm")
  25000. },
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(6 + 5 / 12, "feet"),
  25004. default: true
  25005. },
  25006. {
  25007. name: "Macro",
  25008. height: math.unit(1, "mile")
  25009. },
  25010. {
  25011. name: "Megamacro",
  25012. height: math.unit(50, "miles")
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25018. {
  25019. front: {
  25020. height: math.unit(1.5, "meters"),
  25021. weight: math.unit(100, "lb"),
  25022. name: "Front",
  25023. image: {
  25024. source: "./media/characters/maksio/front.svg",
  25025. extra: 1549 / 1531,
  25026. bottom: 123.7 / 1674.5429
  25027. }
  25028. },
  25029. back: {
  25030. height: math.unit(1.5, "meters"),
  25031. weight: math.unit(100, "lb"),
  25032. name: "Back",
  25033. image: {
  25034. source: "./media/characters/maksio/back.svg",
  25035. extra: 1541 / 1509,
  25036. bottom: 97 / 1639
  25037. }
  25038. },
  25039. hand: {
  25040. height: math.unit(0.621, "feet"),
  25041. name: "Hand",
  25042. image: {
  25043. source: "./media/characters/maksio/hand.svg"
  25044. }
  25045. },
  25046. foot: {
  25047. height: math.unit(1.611, "feet"),
  25048. name: "Foot",
  25049. image: {
  25050. source: "./media/characters/maksio/foot.svg"
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Shrunken",
  25057. height: math.unit(10, "cm")
  25058. },
  25059. {
  25060. name: "Normal",
  25061. height: math.unit(150, "cm"),
  25062. default: true
  25063. },
  25064. ]
  25065. ))
  25066. characterMakers.push(() => makeCharacter(
  25067. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25068. {
  25069. front: {
  25070. height: math.unit(100, "feet"),
  25071. name: "Front",
  25072. image: {
  25073. source: "./media/characters/erza-bear/front.svg",
  25074. extra: 2449 / 2390,
  25075. bottom: 46 / 2494
  25076. }
  25077. },
  25078. back: {
  25079. height: math.unit(100, "feet"),
  25080. name: "Back",
  25081. image: {
  25082. source: "./media/characters/erza-bear/back.svg",
  25083. extra: 2489 / 2430,
  25084. bottom: 85.4 / 2480
  25085. }
  25086. },
  25087. tail: {
  25088. height: math.unit(42, "feet"),
  25089. name: "Tail",
  25090. image: {
  25091. source: "./media/characters/erza-bear/tail.svg"
  25092. }
  25093. },
  25094. tongue: {
  25095. height: math.unit(8, "feet"),
  25096. name: "Tongue",
  25097. image: {
  25098. source: "./media/characters/erza-bear/tongue.svg"
  25099. }
  25100. },
  25101. dick: {
  25102. height: math.unit(10.5, "feet"),
  25103. name: "Dick",
  25104. image: {
  25105. source: "./media/characters/erza-bear/dick.svg"
  25106. }
  25107. },
  25108. dickVertical: {
  25109. height: math.unit(16.9, "feet"),
  25110. name: "Dick (Vertical)",
  25111. image: {
  25112. source: "./media/characters/erza-bear/dick-vertical.svg"
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Macro",
  25119. height: math.unit(100, "feet"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(172, "cm"),
  25129. weight: math.unit(73, "kg"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/violet-flor/front.svg",
  25133. extra: 1530 / 1442,
  25134. bottom: 61.9 / 1588.8
  25135. }
  25136. },
  25137. back: {
  25138. height: math.unit(180, "cm"),
  25139. weight: math.unit(73, "kg"),
  25140. name: "Back",
  25141. image: {
  25142. source: "./media/characters/violet-flor/back.svg",
  25143. extra: 1692 / 1630,
  25144. bottom: 20 / 1712
  25145. }
  25146. },
  25147. },
  25148. [
  25149. {
  25150. name: "Normal",
  25151. height: math.unit(172, "cm"),
  25152. default: true
  25153. },
  25154. ]
  25155. ))
  25156. characterMakers.push(() => makeCharacter(
  25157. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25158. {
  25159. front: {
  25160. height: math.unit(6, "feet"),
  25161. weight: math.unit(220, "lb"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/lynn-rhea/front.svg",
  25165. extra: 310 / 273
  25166. }
  25167. },
  25168. back: {
  25169. height: math.unit(6, "feet"),
  25170. weight: math.unit(220, "lb"),
  25171. name: "Back",
  25172. image: {
  25173. source: "./media/characters/lynn-rhea/back.svg",
  25174. extra: 310 / 273
  25175. }
  25176. },
  25177. dicks: {
  25178. height: math.unit(0.9, "feet"),
  25179. name: "Dicks",
  25180. image: {
  25181. source: "./media/characters/lynn-rhea/dicks.svg"
  25182. }
  25183. },
  25184. slit: {
  25185. height: math.unit(0.4, "feet"),
  25186. name: "Slit",
  25187. image: {
  25188. source: "./media/characters/lynn-rhea/slit.svg"
  25189. }
  25190. },
  25191. },
  25192. [
  25193. {
  25194. name: "Micro",
  25195. height: math.unit(1, "inch")
  25196. },
  25197. {
  25198. name: "Macro",
  25199. height: math.unit(60, "feet"),
  25200. default: true
  25201. },
  25202. {
  25203. name: "Megamacro",
  25204. height: math.unit(2, "miles")
  25205. },
  25206. {
  25207. name: "Gigamacro",
  25208. height: math.unit(3, "earths")
  25209. },
  25210. {
  25211. name: "Galactic",
  25212. height: math.unit(0.8, "galaxies")
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25218. {
  25219. front: {
  25220. height: math.unit(1600, "feet"),
  25221. weight: math.unit(85758785169, "kg"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/valathos/front.svg",
  25225. extra: 1451 / 1339
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Macro",
  25232. height: math.unit(1600, "feet"),
  25233. default: true
  25234. },
  25235. ]
  25236. ))
  25237. characterMakers.push(() => makeCharacter(
  25238. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25239. {
  25240. front: {
  25241. height: math.unit(7 + 5 / 12, "feet"),
  25242. weight: math.unit(300, "lb"),
  25243. name: "Front",
  25244. image: {
  25245. source: "./media/characters/azula/front.svg",
  25246. extra: 3208 / 2880,
  25247. bottom: 80.2 / 3277
  25248. }
  25249. },
  25250. back: {
  25251. height: math.unit(7 + 5 / 12, "feet"),
  25252. weight: math.unit(300, "lb"),
  25253. name: "Back",
  25254. image: {
  25255. source: "./media/characters/azula/back.svg",
  25256. extra: 3169 / 2822,
  25257. bottom: 150.6 / 3321
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(7 + 5 / 12, "feet"),
  25265. default: true
  25266. },
  25267. {
  25268. name: "Big",
  25269. height: math.unit(20, "feet")
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(5 + 1 / 12, "feet"),
  25278. weight: math.unit(110, "lb"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/rupert/front.svg",
  25282. extra: 1549 / 1495,
  25283. bottom: 54.2 / 1604.4
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(5 + 1 / 12, "feet"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25297. {
  25298. front: {
  25299. height: math.unit(8 + 4 / 12, "feet"),
  25300. weight: math.unit(350, "lb"),
  25301. name: "Front",
  25302. image: {
  25303. source: "./media/characters/sheera-castellar/front.svg",
  25304. extra: 1957 / 1894,
  25305. bottom: 26.97 / 1975.017
  25306. }
  25307. },
  25308. side: {
  25309. height: math.unit(8 + 4 / 12, "feet"),
  25310. weight: math.unit(350, "lb"),
  25311. name: "Side",
  25312. image: {
  25313. source: "./media/characters/sheera-castellar/side.svg",
  25314. extra: 1957 / 1894
  25315. }
  25316. },
  25317. back: {
  25318. height: math.unit(8 + 4 / 12, "feet"),
  25319. weight: math.unit(350, "lb"),
  25320. name: "Back",
  25321. image: {
  25322. source: "./media/characters/sheera-castellar/back.svg",
  25323. extra: 1957 / 1894
  25324. }
  25325. },
  25326. angled: {
  25327. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25328. weight: math.unit(350, "lb"),
  25329. name: "Angled",
  25330. image: {
  25331. source: "./media/characters/sheera-castellar/angled.svg",
  25332. extra: 1807 / 1707,
  25333. bottom: 68 / 1875
  25334. }
  25335. },
  25336. genitals: {
  25337. height: math.unit(2.2, "feet"),
  25338. name: "Genitals",
  25339. image: {
  25340. source: "./media/characters/sheera-castellar/genitals.svg"
  25341. }
  25342. },
  25343. taur: {
  25344. height: math.unit(10 + 6/12, "feet"),
  25345. name: "Taur",
  25346. image: {
  25347. source: "./media/characters/sheera-castellar/taur.svg",
  25348. extra: 2017/1909,
  25349. bottom: 185/2202
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(8 + 4 / 12, "feet")
  25357. },
  25358. {
  25359. name: "Macro",
  25360. height: math.unit(150, "feet"),
  25361. default: true
  25362. },
  25363. {
  25364. name: "Macro+",
  25365. height: math.unit(800, "feet")
  25366. },
  25367. ]
  25368. ))
  25369. characterMakers.push(() => makeCharacter(
  25370. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25371. {
  25372. front: {
  25373. height: math.unit(6, "feet"),
  25374. weight: math.unit(150, "lb"),
  25375. name: "Front",
  25376. image: {
  25377. source: "./media/characters/jaipur/front.svg",
  25378. extra: 3860 / 3731,
  25379. bottom: 287 / 4140
  25380. }
  25381. },
  25382. back: {
  25383. height: math.unit(6, "feet"),
  25384. weight: math.unit(150, "lb"),
  25385. name: "Back",
  25386. image: {
  25387. source: "./media/characters/jaipur/back.svg",
  25388. extra: 1637/1561,
  25389. bottom: 154/1791
  25390. }
  25391. },
  25392. },
  25393. [
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(1.85, "meters"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(150, "meters")
  25402. },
  25403. {
  25404. name: "Macro+",
  25405. height: math.unit(0.5, "miles")
  25406. },
  25407. {
  25408. name: "Macro++",
  25409. height: math.unit(2.5, "miles")
  25410. },
  25411. {
  25412. name: "Macro+++",
  25413. height: math.unit(12, "miles")
  25414. },
  25415. {
  25416. name: "Macro++++",
  25417. height: math.unit(120, "miles")
  25418. },
  25419. {
  25420. name: "Macro+++++",
  25421. height: math.unit(1200, "miles")
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(6, "feet"),
  25430. weight: math.unit(150, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/sheila-wolf/front.svg",
  25434. extra: 1931 / 1808,
  25435. bottom: 29.5 / 1960
  25436. }
  25437. },
  25438. dick: {
  25439. height: math.unit(1.464, "feet"),
  25440. name: "Dick",
  25441. image: {
  25442. source: "./media/characters/sheila-wolf/dick.svg"
  25443. }
  25444. },
  25445. muzzle: {
  25446. height: math.unit(0.513, "feet"),
  25447. name: "Muzzle",
  25448. image: {
  25449. source: "./media/characters/sheila-wolf/muzzle.svg"
  25450. }
  25451. },
  25452. },
  25453. [
  25454. {
  25455. name: "Macro",
  25456. height: math.unit(70, "feet"),
  25457. default: true
  25458. },
  25459. ]
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(32, "meters"),
  25466. weight: math.unit(300000, "kg"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/almor/front.svg",
  25470. extra: 1408 / 1322,
  25471. bottom: 94.6 / 1506.5
  25472. }
  25473. },
  25474. },
  25475. [
  25476. {
  25477. name: "Macro",
  25478. height: math.unit(32, "meters"),
  25479. default: true
  25480. },
  25481. ]
  25482. ))
  25483. characterMakers.push(() => makeCharacter(
  25484. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25485. {
  25486. front: {
  25487. height: math.unit(7, "feet"),
  25488. weight: math.unit(200, "lb"),
  25489. name: "Front",
  25490. image: {
  25491. source: "./media/characters/silver/front.svg",
  25492. extra: 472.1 / 450.5,
  25493. bottom: 26.5 / 499.424
  25494. }
  25495. },
  25496. },
  25497. [
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(7, "feet"),
  25501. default: true
  25502. },
  25503. {
  25504. name: "Macro",
  25505. height: math.unit(800, "feet")
  25506. },
  25507. {
  25508. name: "Megamacro",
  25509. height: math.unit(250, "miles")
  25510. },
  25511. ]
  25512. ))
  25513. characterMakers.push(() => makeCharacter(
  25514. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25515. {
  25516. front: {
  25517. height: math.unit(6, "feet"),
  25518. weight: math.unit(150, "lb"),
  25519. name: "Front",
  25520. image: {
  25521. source: "./media/characters/pliskin/front.svg",
  25522. extra: 1469 / 1359,
  25523. bottom: 70 / 1540
  25524. }
  25525. },
  25526. },
  25527. [
  25528. {
  25529. name: "Micro",
  25530. height: math.unit(3, "inches")
  25531. },
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(5 + 11 / 12, "feet"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Macro",
  25539. height: math.unit(120, "feet")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(6, "feet"),
  25548. weight: math.unit(150, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/sammy/front.svg",
  25552. extra: 1193 / 1089,
  25553. bottom: 30.5 / 1226
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Macro",
  25560. height: math.unit(1700, "feet"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Examacro",
  25565. height: math.unit(2.5e9, "lightyears")
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(21, "meters"),
  25574. weight: math.unit(12, "tonnes"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/kuru/front.svg",
  25578. extra: 4301 / 3785,
  25579. bottom: 371.3 / 4691
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Macro",
  25586. height: math.unit(21, "meters"),
  25587. default: true
  25588. },
  25589. ]
  25590. ))
  25591. characterMakers.push(() => makeCharacter(
  25592. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25593. {
  25594. front: {
  25595. height: math.unit(23, "meters"),
  25596. weight: math.unit(12.2, "tonnes"),
  25597. name: "Front",
  25598. image: {
  25599. source: "./media/characters/rakka/front.svg",
  25600. extra: 4670 / 4169,
  25601. bottom: 301 / 4968.7
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Macro",
  25608. height: math.unit(23, "meters"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(6, "feet"),
  25618. weight: math.unit(150, "lb"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/rhys-feline/front.svg",
  25622. extra: 2488 / 2308,
  25623. bottom: 35.67 / 2519.19
  25624. }
  25625. },
  25626. },
  25627. [
  25628. {
  25629. name: "Really Small",
  25630. height: math.unit(1, "nm")
  25631. },
  25632. {
  25633. name: "Micro",
  25634. height: math.unit(4, "inches")
  25635. },
  25636. {
  25637. name: "Normal",
  25638. height: math.unit(4 + 10 / 12, "feet"),
  25639. default: true
  25640. },
  25641. {
  25642. name: "Macro",
  25643. height: math.unit(100, "feet")
  25644. },
  25645. {
  25646. name: "Megamacto",
  25647. height: math.unit(50, "miles")
  25648. },
  25649. ]
  25650. ))
  25651. characterMakers.push(() => makeCharacter(
  25652. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25653. {
  25654. side: {
  25655. height: math.unit(30, "feet"),
  25656. weight: math.unit(35000, "kg"),
  25657. name: "Side",
  25658. image: {
  25659. source: "./media/characters/alydar/side.svg",
  25660. extra: 234 / 222,
  25661. bottom: 6.5 / 241
  25662. }
  25663. },
  25664. front: {
  25665. height: math.unit(30, "feet"),
  25666. weight: math.unit(35000, "kg"),
  25667. name: "Front",
  25668. image: {
  25669. source: "./media/characters/alydar/front.svg",
  25670. extra: 223.37 / 210.2,
  25671. bottom: 22.3 / 246.76
  25672. }
  25673. },
  25674. top: {
  25675. height: math.unit(64.54, "feet"),
  25676. weight: math.unit(35000, "kg"),
  25677. name: "Top",
  25678. image: {
  25679. source: "./media/characters/alydar/top.svg"
  25680. }
  25681. },
  25682. anthro: {
  25683. height: math.unit(30, "feet"),
  25684. weight: math.unit(9000, "kg"),
  25685. name: "Anthro",
  25686. image: {
  25687. source: "./media/characters/alydar/anthro.svg",
  25688. extra: 432 / 421,
  25689. bottom: 7.18 / 440
  25690. }
  25691. },
  25692. maw: {
  25693. height: math.unit(11.693, "feet"),
  25694. name: "Maw",
  25695. image: {
  25696. source: "./media/characters/alydar/maw.svg"
  25697. }
  25698. },
  25699. head: {
  25700. height: math.unit(11.693, "feet"),
  25701. name: "Head",
  25702. image: {
  25703. source: "./media/characters/alydar/head.svg"
  25704. }
  25705. },
  25706. headAlt: {
  25707. height: math.unit(12.861, "feet"),
  25708. name: "Head (Alt)",
  25709. image: {
  25710. source: "./media/characters/alydar/head-alt.svg"
  25711. }
  25712. },
  25713. wing: {
  25714. height: math.unit(20.712, "feet"),
  25715. name: "Wing",
  25716. image: {
  25717. source: "./media/characters/alydar/wing.svg"
  25718. }
  25719. },
  25720. wingFeather: {
  25721. height: math.unit(9.662, "feet"),
  25722. name: "Wing Feather",
  25723. image: {
  25724. source: "./media/characters/alydar/wing-feather.svg"
  25725. }
  25726. },
  25727. countourFeather: {
  25728. height: math.unit(4.154, "feet"),
  25729. name: "Contour Feather",
  25730. image: {
  25731. source: "./media/characters/alydar/contour-feather.svg"
  25732. }
  25733. },
  25734. },
  25735. [
  25736. {
  25737. name: "Diplomatic",
  25738. height: math.unit(13, "feet"),
  25739. default: true
  25740. },
  25741. {
  25742. name: "Small",
  25743. height: math.unit(30, "feet")
  25744. },
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(95, "feet"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Large",
  25752. height: math.unit(285, "feet")
  25753. },
  25754. {
  25755. name: "Incomprehensible",
  25756. height: math.unit(450, "megameters")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25762. {
  25763. side: {
  25764. height: math.unit(11, "feet"),
  25765. weight: math.unit(1750, "kg"),
  25766. name: "Side",
  25767. image: {
  25768. source: "./media/characters/selicia/side.svg",
  25769. extra: 440 / 396,
  25770. bottom: 24.8 / 465.979
  25771. }
  25772. },
  25773. maw: {
  25774. height: math.unit(4.665, "feet"),
  25775. name: "Maw",
  25776. image: {
  25777. source: "./media/characters/selicia/maw.svg"
  25778. }
  25779. },
  25780. },
  25781. [
  25782. {
  25783. name: "Normal",
  25784. height: math.unit(11, "feet"),
  25785. default: true
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25791. {
  25792. side: {
  25793. height: math.unit(2 + 6 / 12, "feet"),
  25794. weight: math.unit(30, "lb"),
  25795. name: "Side",
  25796. image: {
  25797. source: "./media/characters/layla/side.svg",
  25798. extra: 244 / 188,
  25799. bottom: 18.2 / 262.1
  25800. }
  25801. },
  25802. back: {
  25803. height: math.unit(2 + 6 / 12, "feet"),
  25804. weight: math.unit(30, "lb"),
  25805. name: "Back",
  25806. image: {
  25807. source: "./media/characters/layla/back.svg",
  25808. extra: 308 / 241.5,
  25809. bottom: 8.9 / 316.8
  25810. }
  25811. },
  25812. cumming: {
  25813. height: math.unit(2 + 6 / 12, "feet"),
  25814. weight: math.unit(30, "lb"),
  25815. name: "Cumming",
  25816. image: {
  25817. source: "./media/characters/layla/cumming.svg",
  25818. extra: 342 / 279,
  25819. bottom: 595 / 938
  25820. }
  25821. },
  25822. dickFlaccid: {
  25823. height: math.unit(2.595, "feet"),
  25824. name: "Flaccid Genitals",
  25825. image: {
  25826. source: "./media/characters/layla/dick-flaccid.svg"
  25827. }
  25828. },
  25829. dickErect: {
  25830. height: math.unit(2.359, "feet"),
  25831. name: "Erect Genitals",
  25832. image: {
  25833. source: "./media/characters/layla/dick-erect.svg"
  25834. }
  25835. },
  25836. dragon: {
  25837. height: math.unit(40, "feet"),
  25838. name: "Dragon",
  25839. image: {
  25840. source: "./media/characters/layla/dragon.svg",
  25841. extra: 610/535,
  25842. bottom: 367/977
  25843. }
  25844. },
  25845. taur: {
  25846. height: math.unit(30, "feet"),
  25847. name: "Taur",
  25848. image: {
  25849. source: "./media/characters/layla/taur.svg",
  25850. extra: 1268/1199,
  25851. bottom: 112/1380
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Micro",
  25858. height: math.unit(1, "inch")
  25859. },
  25860. {
  25861. name: "Small",
  25862. height: math.unit(1, "foot")
  25863. },
  25864. {
  25865. name: "Normal",
  25866. height: math.unit(2 + 6 / 12, "feet"),
  25867. default: true
  25868. },
  25869. {
  25870. name: "Macro",
  25871. height: math.unit(200, "feet")
  25872. },
  25873. {
  25874. name: "Megamacro",
  25875. height: math.unit(1000, "miles")
  25876. },
  25877. {
  25878. name: "Planetary",
  25879. height: math.unit(8000, "miles")
  25880. },
  25881. {
  25882. name: "True Layla",
  25883. height: math.unit(200000 * 7, "multiverses")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25889. {
  25890. back: {
  25891. height: math.unit(10.5, "feet"),
  25892. weight: math.unit(800, "lb"),
  25893. name: "Back",
  25894. image: {
  25895. source: "./media/characters/knox/back.svg",
  25896. extra: 1486 / 1089,
  25897. bottom: 107 / 1601.4
  25898. }
  25899. },
  25900. side: {
  25901. height: math.unit(10.5, "feet"),
  25902. weight: math.unit(800, "lb"),
  25903. name: "Side",
  25904. image: {
  25905. source: "./media/characters/knox/side.svg",
  25906. extra: 244 / 218,
  25907. bottom: 14 / 260
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Compact",
  25914. height: math.unit(10.5, "feet"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Dynamax",
  25919. height: math.unit(210, "feet")
  25920. },
  25921. {
  25922. name: "Full Macro",
  25923. height: math.unit(850, "feet")
  25924. },
  25925. ]
  25926. ))
  25927. characterMakers.push(() => makeCharacter(
  25928. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25929. {
  25930. front: {
  25931. height: math.unit(28, "feet"),
  25932. weight: math.unit(10500, "lb"),
  25933. name: "Front",
  25934. image: {
  25935. source: "./media/characters/kayda/front.svg",
  25936. extra: 1536 / 1428,
  25937. bottom: 68.7 / 1603
  25938. }
  25939. },
  25940. back: {
  25941. height: math.unit(28, "feet"),
  25942. weight: math.unit(10500, "lb"),
  25943. name: "Back",
  25944. image: {
  25945. source: "./media/characters/kayda/back.svg",
  25946. extra: 1557 / 1464,
  25947. bottom: 39.5 / 1597.49
  25948. }
  25949. },
  25950. dick: {
  25951. height: math.unit(3.858, "feet"),
  25952. name: "Dick",
  25953. image: {
  25954. source: "./media/characters/kayda/dick.svg"
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Macro",
  25961. height: math.unit(28, "feet"),
  25962. default: true
  25963. },
  25964. ]
  25965. ))
  25966. characterMakers.push(() => makeCharacter(
  25967. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25968. {
  25969. front: {
  25970. height: math.unit(10 + 11 / 12, "feet"),
  25971. weight: math.unit(1400, "lb"),
  25972. name: "Front",
  25973. image: {
  25974. source: "./media/characters/brian/front.svg",
  25975. extra: 737 / 692,
  25976. bottom: 55.4 / 785
  25977. }
  25978. },
  25979. },
  25980. [
  25981. {
  25982. name: "Normal",
  25983. height: math.unit(10 + 11 / 12, "feet"),
  25984. default: true
  25985. },
  25986. ]
  25987. ))
  25988. characterMakers.push(() => makeCharacter(
  25989. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25990. {
  25991. front: {
  25992. height: math.unit(5 + 8 / 12, "feet"),
  25993. weight: math.unit(140, "lb"),
  25994. name: "Front",
  25995. image: {
  25996. source: "./media/characters/khemri/front.svg",
  25997. extra: 4780 / 4059,
  25998. bottom: 80.1 / 4859.25
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Micro",
  26005. height: math.unit(6, "inches")
  26006. },
  26007. {
  26008. name: "Normal",
  26009. height: math.unit(5 + 8 / 12, "feet"),
  26010. default: true
  26011. },
  26012. ]
  26013. ))
  26014. characterMakers.push(() => makeCharacter(
  26015. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26016. {
  26017. front: {
  26018. height: math.unit(13, "feet"),
  26019. weight: math.unit(1700, "lb"),
  26020. name: "Front",
  26021. image: {
  26022. source: "./media/characters/felix-braveheart/front.svg",
  26023. extra: 1222 / 1157,
  26024. bottom: 53.2 / 1280
  26025. }
  26026. },
  26027. back: {
  26028. height: math.unit(13, "feet"),
  26029. weight: math.unit(1700, "lb"),
  26030. name: "Back",
  26031. image: {
  26032. source: "./media/characters/felix-braveheart/back.svg",
  26033. extra: 1277 / 1203,
  26034. bottom: 50.2 / 1327
  26035. }
  26036. },
  26037. feral: {
  26038. height: math.unit(6, "feet"),
  26039. weight: math.unit(400, "lb"),
  26040. name: "Feral",
  26041. image: {
  26042. source: "./media/characters/felix-braveheart/feral.svg",
  26043. extra: 682 / 625,
  26044. bottom: 6.9 / 688
  26045. }
  26046. },
  26047. },
  26048. [
  26049. {
  26050. name: "Normal",
  26051. height: math.unit(13, "feet"),
  26052. default: true
  26053. },
  26054. ]
  26055. ))
  26056. characterMakers.push(() => makeCharacter(
  26057. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26058. {
  26059. side: {
  26060. height: math.unit(5 + 11 / 12, "feet"),
  26061. weight: math.unit(1400, "lb"),
  26062. name: "Side",
  26063. image: {
  26064. source: "./media/characters/shadow-blade/side.svg",
  26065. extra: 1726 / 1267,
  26066. bottom: 58.4 / 1785
  26067. }
  26068. },
  26069. },
  26070. [
  26071. {
  26072. name: "Normal",
  26073. height: math.unit(5 + 11 / 12, "feet"),
  26074. default: true
  26075. },
  26076. ]
  26077. ))
  26078. characterMakers.push(() => makeCharacter(
  26079. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26080. {
  26081. front: {
  26082. height: math.unit(1 + 6 / 12, "feet"),
  26083. weight: math.unit(25, "lb"),
  26084. name: "Front",
  26085. image: {
  26086. source: "./media/characters/karla-halldor/front.svg",
  26087. extra: 1459 / 1383,
  26088. bottom: 12 / 1472
  26089. }
  26090. },
  26091. },
  26092. [
  26093. {
  26094. name: "Normal",
  26095. height: math.unit(1 + 6 / 12, "feet"),
  26096. default: true
  26097. },
  26098. ]
  26099. ))
  26100. characterMakers.push(() => makeCharacter(
  26101. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26102. {
  26103. front: {
  26104. height: math.unit(6 + 2 / 12, "feet"),
  26105. weight: math.unit(160, "lb"),
  26106. name: "Front",
  26107. image: {
  26108. source: "./media/characters/ariam/front.svg",
  26109. extra: 1073/976,
  26110. bottom: 52/1125
  26111. }
  26112. },
  26113. back: {
  26114. height: math.unit(6 + 2/12, "feet"),
  26115. weight: math.unit(160, "lb"),
  26116. name: "Back",
  26117. image: {
  26118. source: "./media/characters/ariam/back.svg",
  26119. extra: 1103/1023,
  26120. bottom: 9/1112
  26121. }
  26122. },
  26123. dressed: {
  26124. height: math.unit(6 + 2/12, "feet"),
  26125. weight: math.unit(160, "lb"),
  26126. name: "Dressed",
  26127. image: {
  26128. source: "./media/characters/ariam/dressed.svg",
  26129. extra: 1099/1009,
  26130. bottom: 25/1124
  26131. }
  26132. },
  26133. squatting: {
  26134. height: math.unit(4.1, "feet"),
  26135. weight: math.unit(160, "lb"),
  26136. name: "Squatting",
  26137. image: {
  26138. source: "./media/characters/ariam/squatting.svg",
  26139. extra: 2617 / 2112,
  26140. bottom: 61.2 / 2681,
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(6 + 2 / 12, "feet"),
  26148. default: true
  26149. },
  26150. {
  26151. name: "Normal+",
  26152. height: math.unit(4, "meters")
  26153. },
  26154. {
  26155. name: "Macro",
  26156. height: math.unit(50, "meters")
  26157. },
  26158. {
  26159. name: "Macro+",
  26160. height: math.unit(100, "meters")
  26161. },
  26162. {
  26163. name: "Megamacro",
  26164. height: math.unit(20, "km")
  26165. },
  26166. {
  26167. name: "Caretaker",
  26168. height: math.unit(444, "megameters")
  26169. },
  26170. ]
  26171. ))
  26172. characterMakers.push(() => makeCharacter(
  26173. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26174. {
  26175. front: {
  26176. height: math.unit(1.67, "meters"),
  26177. weight: math.unit(140, "lb"),
  26178. name: "Front",
  26179. image: {
  26180. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26181. extra: 438 / 410,
  26182. bottom: 0.75 / 439
  26183. }
  26184. },
  26185. },
  26186. [
  26187. {
  26188. name: "Shrunken",
  26189. height: math.unit(7.6, "cm")
  26190. },
  26191. {
  26192. name: "Human Scale",
  26193. height: math.unit(1.67, "meters")
  26194. },
  26195. {
  26196. name: "Wolxi Scale",
  26197. height: math.unit(36.7, "meters"),
  26198. default: true
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(1.73, "meters"),
  26207. weight: math.unit(240, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/izue-two-mothers/front.svg",
  26211. extra: 469 / 437,
  26212. bottom: 1.24 / 470.6
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Shrunken",
  26219. height: math.unit(7.86, "cm")
  26220. },
  26221. {
  26222. name: "Human Scale",
  26223. height: math.unit(1.73, "meters")
  26224. },
  26225. {
  26226. name: "Wolxi Scale",
  26227. height: math.unit(38, "meters"),
  26228. default: true
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26234. {
  26235. front: {
  26236. height: math.unit(1.55, "meters"),
  26237. weight: math.unit(120, "lb"),
  26238. name: "Front",
  26239. image: {
  26240. source: "./media/characters/teeku-love-shack/front.svg",
  26241. extra: 387 / 362,
  26242. bottom: 1.51 / 388
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Shrunken",
  26249. height: math.unit(7, "cm")
  26250. },
  26251. {
  26252. name: "Human Scale",
  26253. height: math.unit(1.55, "meters")
  26254. },
  26255. {
  26256. name: "Wolxi Scale",
  26257. height: math.unit(34.1, "meters"),
  26258. default: true
  26259. },
  26260. ]
  26261. ))
  26262. characterMakers.push(() => makeCharacter(
  26263. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26264. {
  26265. front: {
  26266. height: math.unit(1.83, "meters"),
  26267. weight: math.unit(135, "lb"),
  26268. name: "Front",
  26269. image: {
  26270. source: "./media/characters/dejma-the-red/front.svg",
  26271. extra: 480 / 458,
  26272. bottom: 1.8 / 482
  26273. }
  26274. },
  26275. },
  26276. [
  26277. {
  26278. name: "Shrunken",
  26279. height: math.unit(8.3, "cm")
  26280. },
  26281. {
  26282. name: "Human Scale",
  26283. height: math.unit(1.83, "meters")
  26284. },
  26285. {
  26286. name: "Wolxi Scale",
  26287. height: math.unit(40, "meters"),
  26288. default: true
  26289. },
  26290. ]
  26291. ))
  26292. characterMakers.push(() => makeCharacter(
  26293. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26294. {
  26295. front: {
  26296. height: math.unit(1.78, "meters"),
  26297. weight: math.unit(65, "kg"),
  26298. name: "Front",
  26299. image: {
  26300. source: "./media/characters/aki/front.svg",
  26301. extra: 452 / 415
  26302. }
  26303. },
  26304. frontNsfw: {
  26305. height: math.unit(1.78, "meters"),
  26306. weight: math.unit(65, "kg"),
  26307. name: "Front (NSFW)",
  26308. image: {
  26309. source: "./media/characters/aki/front-nsfw.svg",
  26310. extra: 452 / 415
  26311. }
  26312. },
  26313. back: {
  26314. height: math.unit(1.78, "meters"),
  26315. weight: math.unit(65, "kg"),
  26316. name: "Back",
  26317. image: {
  26318. source: "./media/characters/aki/back.svg",
  26319. extra: 452 / 415
  26320. }
  26321. },
  26322. rump: {
  26323. height: math.unit(2.05, "feet"),
  26324. name: "Rump",
  26325. image: {
  26326. source: "./media/characters/aki/rump.svg"
  26327. }
  26328. },
  26329. dick: {
  26330. height: math.unit(0.95, "feet"),
  26331. name: "Dick",
  26332. image: {
  26333. source: "./media/characters/aki/dick.svg"
  26334. }
  26335. },
  26336. },
  26337. [
  26338. {
  26339. name: "Micro",
  26340. height: math.unit(15, "cm")
  26341. },
  26342. {
  26343. name: "Normal",
  26344. height: math.unit(178, "cm"),
  26345. default: true
  26346. },
  26347. {
  26348. name: "Macro",
  26349. height: math.unit(214, "m")
  26350. },
  26351. {
  26352. name: "Macro+",
  26353. height: math.unit(534, "m")
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(5 + 5 / 12, "feet"),
  26362. weight: math.unit(120, "lb"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/ari/front.svg",
  26366. extra: 1550/1471,
  26367. bottom: 39/1589
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Normal",
  26374. height: math.unit(5 + 5 / 12, "feet")
  26375. },
  26376. {
  26377. name: "Macro",
  26378. height: math.unit(100, "feet"),
  26379. default: true
  26380. },
  26381. {
  26382. name: "Megamacro",
  26383. height: math.unit(100, "miles")
  26384. },
  26385. {
  26386. name: "Gigamacro",
  26387. height: math.unit(80000, "miles")
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26393. {
  26394. side: {
  26395. height: math.unit(9, "feet"),
  26396. weight: math.unit(400, "kg"),
  26397. name: "Side",
  26398. image: {
  26399. source: "./media/characters/bolt/side.svg",
  26400. extra: 1126 / 896,
  26401. bottom: 60 / 1187.3,
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Micro",
  26408. height: math.unit(5, "inches")
  26409. },
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(9, "feet"),
  26413. default: true
  26414. },
  26415. {
  26416. name: "Macro",
  26417. height: math.unit(700, "feet")
  26418. },
  26419. {
  26420. name: "Max Size",
  26421. height: math.unit(1.52e22, "yottameters")
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(4.3, "meters"),
  26430. weight: math.unit(3, "tons"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/draekon-sylviar/front.svg",
  26434. extra: 2072/1512,
  26435. bottom: 74/2146
  26436. }
  26437. },
  26438. back: {
  26439. height: math.unit(4.3, "meters"),
  26440. weight: math.unit(3, "tons"),
  26441. name: "Back",
  26442. image: {
  26443. source: "./media/characters/draekon-sylviar/back.svg",
  26444. extra: 1639/1483,
  26445. bottom: 41/1680
  26446. }
  26447. },
  26448. feral: {
  26449. height: math.unit(1.15, "meters"),
  26450. weight: math.unit(3, "tons"),
  26451. name: "Feral",
  26452. image: {
  26453. source: "./media/characters/draekon-sylviar/feral.svg",
  26454. extra: 1033/395,
  26455. bottom: 130/1163
  26456. }
  26457. },
  26458. maw: {
  26459. height: math.unit(1.3, "meters"),
  26460. name: "Maw",
  26461. image: {
  26462. source: "./media/characters/draekon-sylviar/maw.svg"
  26463. }
  26464. },
  26465. mawSeparated: {
  26466. height: math.unit(1.53, "meters"),
  26467. name: "Separated Maw",
  26468. image: {
  26469. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26470. }
  26471. },
  26472. tail: {
  26473. height: math.unit(1.15, "meters"),
  26474. name: "Tail",
  26475. image: {
  26476. source: "./media/characters/draekon-sylviar/tail.svg"
  26477. }
  26478. },
  26479. tailDick: {
  26480. height: math.unit(1.15, "meters"),
  26481. name: "Tail (Dick)",
  26482. image: {
  26483. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26484. }
  26485. },
  26486. tailDickSeparated: {
  26487. height: math.unit(1.19, "meters"),
  26488. name: "Tail (Separated Dick)",
  26489. image: {
  26490. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26491. }
  26492. },
  26493. slit: {
  26494. height: math.unit(1, "meters"),
  26495. name: "Slit",
  26496. image: {
  26497. source: "./media/characters/draekon-sylviar/slit.svg"
  26498. }
  26499. },
  26500. dick: {
  26501. height: math.unit(1.15, "meters"),
  26502. name: "Dick",
  26503. image: {
  26504. source: "./media/characters/draekon-sylviar/dick.svg"
  26505. }
  26506. },
  26507. dickSeparated: {
  26508. height: math.unit(1.1, "meters"),
  26509. name: "Separated Dick",
  26510. image: {
  26511. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26512. }
  26513. },
  26514. sheath: {
  26515. height: math.unit(1.15, "meters"),
  26516. name: "Sheath",
  26517. image: {
  26518. source: "./media/characters/draekon-sylviar/sheath.svg"
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Small",
  26525. height: math.unit(4.53 / 2, "meters"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(4.53, "meters"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Large",
  26535. height: math.unit(4.53 * 2, "meters"),
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(6 + 2 / 12, "feet"),
  26544. weight: math.unit(180, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/brawler/front.svg",
  26548. extra: 3301 / 3027,
  26549. bottom: 138 / 3439
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(6 + 2 / 12, "feet"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(11, "feet"),
  26566. weight: math.unit(1000, "lb"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/alex/front.svg",
  26570. bottom: 44.5 / 620
  26571. }
  26572. },
  26573. },
  26574. [
  26575. {
  26576. name: "Micro",
  26577. height: math.unit(5, "inches")
  26578. },
  26579. {
  26580. name: "Normal",
  26581. height: math.unit(11, "feet"),
  26582. default: true
  26583. },
  26584. {
  26585. name: "Macro",
  26586. height: math.unit(9.5e9, "feet")
  26587. },
  26588. {
  26589. name: "Max Size",
  26590. height: math.unit(1.4e283, "yottameters")
  26591. },
  26592. ]
  26593. ))
  26594. characterMakers.push(() => makeCharacter(
  26595. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26596. {
  26597. female: {
  26598. height: math.unit(29.9, "m"),
  26599. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26600. name: "Female",
  26601. image: {
  26602. source: "./media/characters/zenari/female.svg",
  26603. extra: 3281.6 / 3217,
  26604. bottom: 72.2 / 3353
  26605. }
  26606. },
  26607. male: {
  26608. height: math.unit(27.7, "m"),
  26609. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26610. name: "Male",
  26611. image: {
  26612. source: "./media/characters/zenari/male.svg",
  26613. extra: 3008 / 2991,
  26614. bottom: 54.6 / 3069
  26615. }
  26616. },
  26617. },
  26618. [
  26619. {
  26620. name: "Macro",
  26621. height: math.unit(29.7, "meters"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26628. {
  26629. female: {
  26630. height: math.unit(23.8, "m"),
  26631. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26632. name: "Female",
  26633. image: {
  26634. source: "./media/characters/mactarian/female.svg",
  26635. extra: 2662 / 2569,
  26636. bottom: 73 / 2736
  26637. }
  26638. },
  26639. male: {
  26640. height: math.unit(23.8, "m"),
  26641. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26642. name: "Male",
  26643. image: {
  26644. source: "./media/characters/mactarian/male.svg",
  26645. extra: 2673 / 2600,
  26646. bottom: 76 / 2750
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Macro",
  26653. height: math.unit(23.8, "meters"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26660. {
  26661. female: {
  26662. height: math.unit(19.3, "m"),
  26663. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26664. name: "Female",
  26665. image: {
  26666. source: "./media/characters/umok/female.svg",
  26667. extra: 2186 / 2078,
  26668. bottom: 87 / 2277
  26669. }
  26670. },
  26671. male: {
  26672. height: math.unit(19.5, "m"),
  26673. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26674. name: "Male",
  26675. image: {
  26676. source: "./media/characters/umok/male.svg",
  26677. extra: 2233 / 2140,
  26678. bottom: 24.4 / 2258
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Macro",
  26685. height: math.unit(19.3, "meters"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26692. {
  26693. female: {
  26694. height: math.unit(26.15, "m"),
  26695. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26696. name: "Female",
  26697. image: {
  26698. source: "./media/characters/joraxian/female.svg",
  26699. extra: 2912 / 2824,
  26700. bottom: 36 / 2956
  26701. }
  26702. },
  26703. male: {
  26704. height: math.unit(25.4, "m"),
  26705. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26706. name: "Male",
  26707. image: {
  26708. source: "./media/characters/joraxian/male.svg",
  26709. extra: 2877 / 2721,
  26710. bottom: 82 / 2967
  26711. }
  26712. },
  26713. },
  26714. [
  26715. {
  26716. name: "Macro",
  26717. height: math.unit(26.15, "meters"),
  26718. default: true
  26719. },
  26720. ]
  26721. ))
  26722. characterMakers.push(() => makeCharacter(
  26723. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26724. {
  26725. female: {
  26726. height: math.unit(21.6, "m"),
  26727. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26728. name: "Female",
  26729. image: {
  26730. source: "./media/characters/sthara/female.svg",
  26731. extra: 2516 / 2347,
  26732. bottom: 21.5 / 2537
  26733. }
  26734. },
  26735. male: {
  26736. height: math.unit(24, "m"),
  26737. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26738. name: "Male",
  26739. image: {
  26740. source: "./media/characters/sthara/male.svg",
  26741. extra: 2732 / 2607,
  26742. bottom: 23 / 2732
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Macro",
  26749. height: math.unit(21.6, "meters"),
  26750. default: true
  26751. },
  26752. ]
  26753. ))
  26754. characterMakers.push(() => makeCharacter(
  26755. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26756. {
  26757. front: {
  26758. height: math.unit(6 + 4 / 12, "feet"),
  26759. weight: math.unit(175, "lb"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/luka-bryzant/front.svg",
  26763. extra: 311 / 289,
  26764. bottom: 4 / 315
  26765. }
  26766. },
  26767. back: {
  26768. height: math.unit(6 + 4 / 12, "feet"),
  26769. weight: math.unit(175, "lb"),
  26770. name: "Back",
  26771. image: {
  26772. source: "./media/characters/luka-bryzant/back.svg",
  26773. extra: 311 / 289,
  26774. bottom: 3.8 / 313.7
  26775. }
  26776. },
  26777. },
  26778. [
  26779. {
  26780. name: "Micro",
  26781. height: math.unit(10, "inches")
  26782. },
  26783. {
  26784. name: "Normal",
  26785. height: math.unit(6 + 4 / 12, "feet"),
  26786. default: true
  26787. },
  26788. {
  26789. name: "Large",
  26790. height: math.unit(12, "feet")
  26791. },
  26792. ]
  26793. ))
  26794. characterMakers.push(() => makeCharacter(
  26795. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26796. {
  26797. front: {
  26798. height: math.unit(5 + 7 / 12, "feet"),
  26799. weight: math.unit(185, "lb"),
  26800. name: "Front",
  26801. image: {
  26802. source: "./media/characters/aman-aquila/front.svg",
  26803. extra: 1013 / 976,
  26804. bottom: 45.6 / 1057
  26805. }
  26806. },
  26807. side: {
  26808. height: math.unit(5 + 7 / 12, "feet"),
  26809. weight: math.unit(185, "lb"),
  26810. name: "Side",
  26811. image: {
  26812. source: "./media/characters/aman-aquila/side.svg",
  26813. extra: 1054 / 1011,
  26814. bottom: 15 / 1070
  26815. }
  26816. },
  26817. back: {
  26818. height: math.unit(5 + 7 / 12, "feet"),
  26819. weight: math.unit(185, "lb"),
  26820. name: "Back",
  26821. image: {
  26822. source: "./media/characters/aman-aquila/back.svg",
  26823. extra: 1026 / 970,
  26824. bottom: 12 / 1039
  26825. }
  26826. },
  26827. head: {
  26828. height: math.unit(1.211, "feet"),
  26829. name: "Head",
  26830. image: {
  26831. source: "./media/characters/aman-aquila/head.svg",
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Minimicro",
  26838. height: math.unit(0.057, "inches")
  26839. },
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(7, "inches")
  26843. },
  26844. {
  26845. name: "Mini",
  26846. height: math.unit(3 + 7 / 12, "feet")
  26847. },
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(5 + 7 / 12, "feet"),
  26851. default: true
  26852. },
  26853. {
  26854. name: "Macro",
  26855. height: math.unit(157 + 7 / 12, "feet")
  26856. },
  26857. {
  26858. name: "Megamacro",
  26859. height: math.unit(1557 + 7 / 12, "feet")
  26860. },
  26861. {
  26862. name: "Gigamacro",
  26863. height: math.unit(15557 + 7 / 12, "feet")
  26864. },
  26865. ]
  26866. ))
  26867. characterMakers.push(() => makeCharacter(
  26868. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26869. {
  26870. front: {
  26871. height: math.unit(3 + 2 / 12, "inches"),
  26872. weight: math.unit(0.3, "ounces"),
  26873. name: "Front",
  26874. image: {
  26875. source: "./media/characters/hiphae/front.svg",
  26876. extra: 1931 / 1683,
  26877. bottom: 24 / 1955
  26878. }
  26879. },
  26880. },
  26881. [
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(3 + 1 / 2, "inches"),
  26885. default: true
  26886. },
  26887. ]
  26888. ))
  26889. characterMakers.push(() => makeCharacter(
  26890. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26891. {
  26892. front: {
  26893. height: math.unit(5 + 10 / 12, "feet"),
  26894. weight: math.unit(165, "lb"),
  26895. name: "Front",
  26896. image: {
  26897. source: "./media/characters/nicky/front.svg",
  26898. extra: 3144 / 2886,
  26899. bottom: 45.6 / 3192
  26900. }
  26901. },
  26902. back: {
  26903. height: math.unit(5 + 10 / 12, "feet"),
  26904. weight: math.unit(165, "lb"),
  26905. name: "Back",
  26906. image: {
  26907. source: "./media/characters/nicky/back.svg",
  26908. extra: 3055 / 2804,
  26909. bottom: 28.4 / 3087
  26910. }
  26911. },
  26912. frontclothed: {
  26913. height: math.unit(5 + 10 / 12, "feet"),
  26914. weight: math.unit(165, "lb"),
  26915. name: "Front-clothed",
  26916. image: {
  26917. source: "./media/characters/nicky/front-clothed.svg",
  26918. extra: 3184.9 / 2926.9,
  26919. bottom: 86.5 / 3239.9
  26920. }
  26921. },
  26922. foot: {
  26923. height: math.unit(1.16, "feet"),
  26924. name: "Foot",
  26925. image: {
  26926. source: "./media/characters/nicky/foot.svg"
  26927. }
  26928. },
  26929. feet: {
  26930. height: math.unit(1.34, "feet"),
  26931. name: "Feet",
  26932. image: {
  26933. source: "./media/characters/nicky/feet.svg"
  26934. }
  26935. },
  26936. maw: {
  26937. height: math.unit(0.9, "feet"),
  26938. name: "Maw",
  26939. image: {
  26940. source: "./media/characters/nicky/maw.svg"
  26941. }
  26942. },
  26943. },
  26944. [
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(5 + 10 / 12, "feet"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "Macro",
  26952. height: math.unit(60, "feet")
  26953. },
  26954. {
  26955. name: "Megamacro",
  26956. height: math.unit(1, "mile")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26962. {
  26963. side: {
  26964. height: math.unit(10, "feet"),
  26965. weight: math.unit(600, "lb"),
  26966. name: "Side",
  26967. image: {
  26968. source: "./media/characters/blair/side.svg",
  26969. bottom: 16.6 / 475,
  26970. extra: 458 / 431
  26971. }
  26972. },
  26973. },
  26974. [
  26975. {
  26976. name: "Micro",
  26977. height: math.unit(8, "inches")
  26978. },
  26979. {
  26980. name: "Normal",
  26981. height: math.unit(10, "feet"),
  26982. default: true
  26983. },
  26984. {
  26985. name: "Macro",
  26986. height: math.unit(180, "feet")
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26992. {
  26993. front: {
  26994. height: math.unit(5 + 4 / 12, "feet"),
  26995. weight: math.unit(125, "lb"),
  26996. name: "Front",
  26997. image: {
  26998. source: "./media/characters/fisher/front.svg",
  26999. extra: 444 / 390,
  27000. bottom: 2 / 444.8
  27001. }
  27002. },
  27003. },
  27004. [
  27005. {
  27006. name: "Micro",
  27007. height: math.unit(4, "inches")
  27008. },
  27009. {
  27010. name: "Normal",
  27011. height: math.unit(5 + 4 / 12, "feet"),
  27012. default: true
  27013. },
  27014. {
  27015. name: "Macro",
  27016. height: math.unit(100, "feet")
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(6.71, "feet"),
  27025. weight: math.unit(200, "lb"),
  27026. preyCapacity: math.unit(1000000, "people"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/gliss/front.svg",
  27030. extra: 2347 / 2231,
  27031. bottom: 113 / 2462
  27032. }
  27033. },
  27034. hammerspaceSize: {
  27035. height: math.unit(6.71 * 717, "feet"),
  27036. weight: math.unit(200, "lb"),
  27037. preyCapacity: math.unit(1000000, "people"),
  27038. name: "Hammerspace Size",
  27039. image: {
  27040. source: "./media/characters/gliss/front.svg",
  27041. extra: 2347 / 2231,
  27042. bottom: 113 / 2462
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Normal",
  27049. height: math.unit(6.71, "feet"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27056. {
  27057. side: {
  27058. height: math.unit(1.44, "m"),
  27059. weight: math.unit(80, "kg"),
  27060. name: "Side",
  27061. image: {
  27062. source: "./media/characters/dune-anderson/side.svg",
  27063. bottom: 49 / 1426
  27064. }
  27065. },
  27066. },
  27067. [
  27068. {
  27069. name: "Wolf-sized",
  27070. height: math.unit(1.44, "meters")
  27071. },
  27072. {
  27073. name: "Normal",
  27074. height: math.unit(5.05, "meters"),
  27075. default: true
  27076. },
  27077. {
  27078. name: "Big",
  27079. height: math.unit(14.4, "meters")
  27080. },
  27081. {
  27082. name: "Huge",
  27083. height: math.unit(144, "meters")
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27089. {
  27090. front: {
  27091. height: math.unit(7, "feet"),
  27092. weight: math.unit(425, "lb"),
  27093. name: "Front",
  27094. image: {
  27095. source: "./media/characters/hind/front.svg",
  27096. extra: 2091 / 1860,
  27097. bottom: 129 / 2220
  27098. }
  27099. },
  27100. back: {
  27101. height: math.unit(7, "feet"),
  27102. weight: math.unit(425, "lb"),
  27103. name: "Back",
  27104. image: {
  27105. source: "./media/characters/hind/back.svg",
  27106. extra: 2091 / 1860,
  27107. bottom: 24.6 / 2309
  27108. }
  27109. },
  27110. tail: {
  27111. height: math.unit(2.8, "feet"),
  27112. name: "Tail",
  27113. image: {
  27114. source: "./media/characters/hind/tail.svg"
  27115. }
  27116. },
  27117. head: {
  27118. height: math.unit(2.55, "feet"),
  27119. name: "Head",
  27120. image: {
  27121. source: "./media/characters/hind/head.svg"
  27122. }
  27123. },
  27124. },
  27125. [
  27126. {
  27127. name: "XS",
  27128. height: math.unit(0.7, "feet")
  27129. },
  27130. {
  27131. name: "Normal",
  27132. height: math.unit(7, "feet"),
  27133. default: true
  27134. },
  27135. {
  27136. name: "XL",
  27137. height: math.unit(70, "feet")
  27138. },
  27139. ]
  27140. ))
  27141. characterMakers.push(() => makeCharacter(
  27142. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27143. {
  27144. front: {
  27145. height: math.unit(2.1, "meters"),
  27146. weight: math.unit(150, "lb"),
  27147. name: "Front",
  27148. image: {
  27149. source: "./media/characters/tharquench-sizestealer/front.svg",
  27150. extra: 1605/1470,
  27151. bottom: 36/1641
  27152. }
  27153. },
  27154. frontAlt: {
  27155. height: math.unit(2.1, "meters"),
  27156. weight: math.unit(150, "lb"),
  27157. name: "Front (Alt)",
  27158. image: {
  27159. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27160. extra: 2318 / 2063,
  27161. bottom: 93.4 / 2410
  27162. }
  27163. },
  27164. },
  27165. [
  27166. {
  27167. name: "Nano",
  27168. height: math.unit(1, "mm")
  27169. },
  27170. {
  27171. name: "Micro",
  27172. height: math.unit(1, "cm")
  27173. },
  27174. {
  27175. name: "Normal",
  27176. height: math.unit(2.1, "meters"),
  27177. default: true
  27178. },
  27179. ]
  27180. ))
  27181. characterMakers.push(() => makeCharacter(
  27182. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27183. {
  27184. front: {
  27185. height: math.unit(7 + 5 / 12, "feet"),
  27186. weight: math.unit(357, "lb"),
  27187. name: "Front",
  27188. image: {
  27189. source: "./media/characters/solex-draconov/front.svg",
  27190. extra: 1993 / 1865,
  27191. bottom: 117 / 2111
  27192. }
  27193. },
  27194. },
  27195. [
  27196. {
  27197. name: "Natural Height",
  27198. height: math.unit(7 + 5 / 12, "feet"),
  27199. default: true
  27200. },
  27201. {
  27202. name: "Macro",
  27203. height: math.unit(350, "feet")
  27204. },
  27205. {
  27206. name: "Macro+",
  27207. height: math.unit(1000, "feet")
  27208. },
  27209. {
  27210. name: "Megamacro",
  27211. height: math.unit(20, "km")
  27212. },
  27213. {
  27214. name: "Megamacro+",
  27215. height: math.unit(1000, "km")
  27216. },
  27217. {
  27218. name: "Gigamacro",
  27219. height: math.unit(2.5, "Gm")
  27220. },
  27221. {
  27222. name: "Teramacro",
  27223. height: math.unit(15, "Tm")
  27224. },
  27225. {
  27226. name: "Galactic",
  27227. height: math.unit(30, "Zm")
  27228. },
  27229. {
  27230. name: "Universal",
  27231. height: math.unit(21000, "Ym")
  27232. },
  27233. {
  27234. name: "Omniversal",
  27235. height: math.unit(9.861e50, "Ym")
  27236. },
  27237. {
  27238. name: "Existential",
  27239. height: math.unit(1e300, "meters")
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27245. {
  27246. side: {
  27247. height: math.unit(25, "feet"),
  27248. weight: math.unit(90000, "lb"),
  27249. name: "Side",
  27250. image: {
  27251. source: "./media/characters/mandarax/side.svg",
  27252. extra: 614 / 332,
  27253. bottom: 55 / 630
  27254. }
  27255. },
  27256. lounging: {
  27257. height: math.unit(15.4, "feet"),
  27258. weight: math.unit(90000, "lb"),
  27259. name: "Lounging",
  27260. image: {
  27261. source: "./media/characters/mandarax/lounging.svg",
  27262. extra: 817/609,
  27263. bottom: 685/1502
  27264. }
  27265. },
  27266. head: {
  27267. height: math.unit(11.4, "feet"),
  27268. name: "Head",
  27269. image: {
  27270. source: "./media/characters/mandarax/head.svg"
  27271. }
  27272. },
  27273. belly: {
  27274. height: math.unit(33, "feet"),
  27275. name: "Belly",
  27276. preyCapacity: math.unit(500, "people"),
  27277. image: {
  27278. source: "./media/characters/mandarax/belly.svg"
  27279. }
  27280. },
  27281. dick: {
  27282. height: math.unit(8.46, "feet"),
  27283. name: "Dick",
  27284. image: {
  27285. source: "./media/characters/mandarax/dick.svg"
  27286. }
  27287. },
  27288. top: {
  27289. height: math.unit(28, "meters"),
  27290. name: "Top",
  27291. image: {
  27292. source: "./media/characters/mandarax/top.svg"
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(25, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(5, "feet"),
  27309. weight: math.unit(90, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/pixil/front.svg",
  27313. extra: 2000 / 1618,
  27314. bottom: 12.3 / 2011
  27315. }
  27316. },
  27317. },
  27318. [
  27319. {
  27320. name: "Normal",
  27321. height: math.unit(5, "feet"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Megamacro",
  27326. height: math.unit(10, "miles"),
  27327. },
  27328. ]
  27329. ))
  27330. characterMakers.push(() => makeCharacter(
  27331. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27332. {
  27333. front: {
  27334. height: math.unit(7 + 2 / 12, "feet"),
  27335. weight: math.unit(200, "lb"),
  27336. name: "Front",
  27337. image: {
  27338. source: "./media/characters/angel/front.svg",
  27339. extra: 1830 / 1737,
  27340. bottom: 22.6 / 1854,
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(7 + 2 / 12, "feet"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Macro",
  27352. height: math.unit(1000, "feet")
  27353. },
  27354. {
  27355. name: "Megamacro",
  27356. height: math.unit(2, "miles")
  27357. },
  27358. {
  27359. name: "Gigamacro",
  27360. height: math.unit(20, "earths")
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(5, "feet"),
  27369. weight: math.unit(180, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/mekana/front.svg",
  27373. extra: 1671 / 1605,
  27374. bottom: 3.5 / 1691
  27375. }
  27376. },
  27377. side: {
  27378. height: math.unit(5, "feet"),
  27379. weight: math.unit(180, "lb"),
  27380. name: "Side",
  27381. image: {
  27382. source: "./media/characters/mekana/side.svg",
  27383. extra: 1671 / 1605,
  27384. bottom: 3.5 / 1691
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(5, "feet"),
  27389. weight: math.unit(180, "lb"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/mekana/back.svg",
  27393. extra: 1671 / 1605,
  27394. bottom: 3.5 / 1691
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(5, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(4 + 6 / 12, "feet"),
  27411. weight: math.unit(80, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/pixie/front.svg",
  27415. extra: 1924 / 1825,
  27416. bottom: 22.4 / 1946
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(4 + 6 / 12, "feet"),
  27424. default: true
  27425. },
  27426. {
  27427. name: "Macro",
  27428. height: math.unit(40, "feet")
  27429. },
  27430. ]
  27431. ))
  27432. characterMakers.push(() => makeCharacter(
  27433. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27434. {
  27435. front: {
  27436. height: math.unit(2.1, "meters"),
  27437. weight: math.unit(200, "lb"),
  27438. name: "Front",
  27439. image: {
  27440. source: "./media/characters/the-lascivious/front.svg",
  27441. extra: 1 / 0.893,
  27442. bottom: 3.5 / 573.7
  27443. }
  27444. },
  27445. },
  27446. [
  27447. {
  27448. name: "Human Scale",
  27449. height: math.unit(2.1, "meters")
  27450. },
  27451. {
  27452. name: "Wolxi Scale",
  27453. height: math.unit(46.2, "m"),
  27454. default: true
  27455. },
  27456. {
  27457. name: "Boinker of Buildings",
  27458. height: math.unit(10, "km")
  27459. },
  27460. {
  27461. name: "Shagger of Skyscrapers",
  27462. height: math.unit(40, "km")
  27463. },
  27464. {
  27465. name: "Banger of Boroughs",
  27466. height: math.unit(4000, "km")
  27467. },
  27468. {
  27469. name: "Screwer of States",
  27470. height: math.unit(100000, "km")
  27471. },
  27472. {
  27473. name: "Pounder of Planets",
  27474. height: math.unit(2000000, "km")
  27475. },
  27476. ]
  27477. ))
  27478. characterMakers.push(() => makeCharacter(
  27479. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27480. {
  27481. front: {
  27482. height: math.unit(6, "feet"),
  27483. weight: math.unit(150, "lb"),
  27484. name: "Front",
  27485. image: {
  27486. source: "./media/characters/aj/front.svg",
  27487. extra: 2039 / 1562,
  27488. bottom: 40 / 2079
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Normal",
  27495. height: math.unit(11 + 6 / 12, "feet"),
  27496. default: true
  27497. },
  27498. {
  27499. name: "Megamacro",
  27500. height: math.unit(60, "megameters")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27506. {
  27507. side: {
  27508. height: math.unit(31 + 8 / 12, "feet"),
  27509. weight: math.unit(75000, "kg"),
  27510. name: "Side",
  27511. image: {
  27512. source: "./media/characters/koros/side.svg",
  27513. extra: 1442 / 1297,
  27514. bottom: 122.7 / 1562
  27515. }
  27516. },
  27517. dicksKingsCrown: {
  27518. height: math.unit(6, "feet"),
  27519. name: "Dicks (King's Crown)",
  27520. image: {
  27521. source: "./media/characters/koros/dicks-kings-crown.svg"
  27522. }
  27523. },
  27524. dicksTailSet: {
  27525. height: math.unit(3, "feet"),
  27526. name: "Dicks (Tail Set)",
  27527. image: {
  27528. source: "./media/characters/koros/dicks-tail-set.svg"
  27529. }
  27530. },
  27531. dickCumming: {
  27532. height: math.unit(7.98, "feet"),
  27533. name: "Dick (Cumming)",
  27534. image: {
  27535. source: "./media/characters/koros/dick-cumming.svg"
  27536. }
  27537. },
  27538. dicksBack: {
  27539. height: math.unit(5.9, "feet"),
  27540. name: "Dicks (Back)",
  27541. image: {
  27542. source: "./media/characters/koros/dicks-back.svg"
  27543. }
  27544. },
  27545. dicksFront: {
  27546. height: math.unit(3.72, "feet"),
  27547. name: "Dicks (Front)",
  27548. image: {
  27549. source: "./media/characters/koros/dicks-front.svg"
  27550. }
  27551. },
  27552. dicksPeeking: {
  27553. height: math.unit(3.0, "feet"),
  27554. name: "Dicks (Peeking)",
  27555. image: {
  27556. source: "./media/characters/koros/dicks-peeking.svg"
  27557. }
  27558. },
  27559. eye: {
  27560. height: math.unit(1.7, "feet"),
  27561. name: "Eye",
  27562. image: {
  27563. source: "./media/characters/koros/eye.svg"
  27564. }
  27565. },
  27566. headFront: {
  27567. height: math.unit(11.69, "feet"),
  27568. name: "Head (Front)",
  27569. image: {
  27570. source: "./media/characters/koros/head-front.svg"
  27571. }
  27572. },
  27573. headSide: {
  27574. height: math.unit(14, "feet"),
  27575. name: "Head (Side)",
  27576. image: {
  27577. source: "./media/characters/koros/head-side.svg"
  27578. }
  27579. },
  27580. leg: {
  27581. height: math.unit(17, "feet"),
  27582. name: "Leg",
  27583. image: {
  27584. source: "./media/characters/koros/leg.svg"
  27585. }
  27586. },
  27587. mawSide: {
  27588. height: math.unit(12.8, "feet"),
  27589. name: "Maw (Side)",
  27590. image: {
  27591. source: "./media/characters/koros/maw-side.svg"
  27592. }
  27593. },
  27594. mawSpitting: {
  27595. height: math.unit(17, "feet"),
  27596. name: "Maw (Spitting)",
  27597. image: {
  27598. source: "./media/characters/koros/maw-spitting.svg"
  27599. }
  27600. },
  27601. slit: {
  27602. height: math.unit(2.8, "feet"),
  27603. name: "Slit",
  27604. image: {
  27605. source: "./media/characters/koros/slit.svg"
  27606. }
  27607. },
  27608. stomach: {
  27609. height: math.unit(6.8, "feet"),
  27610. preyCapacity: math.unit(20, "people"),
  27611. name: "Stomach",
  27612. image: {
  27613. source: "./media/characters/koros/stomach.svg"
  27614. }
  27615. },
  27616. wingspanBottom: {
  27617. height: math.unit(114, "feet"),
  27618. name: "Wingspan (Bottom)",
  27619. image: {
  27620. source: "./media/characters/koros/wingspan-bottom.svg"
  27621. }
  27622. },
  27623. wingspanTop: {
  27624. height: math.unit(104, "feet"),
  27625. name: "Wingspan (Top)",
  27626. image: {
  27627. source: "./media/characters/koros/wingspan-top.svg"
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(31 + 8 / 12, "feet"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27641. {
  27642. front: {
  27643. height: math.unit(18 + 5 / 12, "feet"),
  27644. weight: math.unit(3750, "kg"),
  27645. name: "Front",
  27646. image: {
  27647. source: "./media/characters/vexx/front.svg",
  27648. extra: 426 / 396,
  27649. bottom: 31.5 / 458
  27650. }
  27651. },
  27652. maw: {
  27653. height: math.unit(6, "feet"),
  27654. name: "Maw",
  27655. image: {
  27656. source: "./media/characters/vexx/maw.svg"
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(18 + 5 / 12, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(17 + 6 / 12, "feet"),
  27673. weight: math.unit(150, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/baadra/front.svg",
  27677. extra: 1694/1553,
  27678. bottom: 179/1873
  27679. }
  27680. },
  27681. frontAlt: {
  27682. height: math.unit(17 + 6 / 12, "feet"),
  27683. weight: math.unit(150, "lb"),
  27684. name: "Front (Alt)",
  27685. image: {
  27686. source: "./media/characters/baadra/front-alt.svg",
  27687. extra: 3137 / 2890,
  27688. bottom: 168.4 / 3305
  27689. }
  27690. },
  27691. back: {
  27692. height: math.unit(17 + 6 / 12, "feet"),
  27693. weight: math.unit(150, "lb"),
  27694. name: "Back",
  27695. image: {
  27696. source: "./media/characters/baadra/back.svg",
  27697. extra: 3142 / 2890,
  27698. bottom: 220 / 3371
  27699. }
  27700. },
  27701. head: {
  27702. height: math.unit(5.45, "feet"),
  27703. name: "Head",
  27704. image: {
  27705. source: "./media/characters/baadra/head.svg"
  27706. }
  27707. },
  27708. headAngry: {
  27709. height: math.unit(4.95, "feet"),
  27710. name: "Head (Angry)",
  27711. image: {
  27712. source: "./media/characters/baadra/head-angry.svg"
  27713. }
  27714. },
  27715. headOpen: {
  27716. height: math.unit(6, "feet"),
  27717. name: "Head (Open)",
  27718. image: {
  27719. source: "./media/characters/baadra/head-open.svg"
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Normal",
  27726. height: math.unit(17 + 6 / 12, "feet"),
  27727. default: true
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27733. {
  27734. front: {
  27735. height: math.unit(7 + 3 / 12, "feet"),
  27736. weight: math.unit(180, "lb"),
  27737. name: "Front",
  27738. image: {
  27739. source: "./media/characters/juri/front.svg",
  27740. extra: 1401 / 1237,
  27741. bottom: 18.5 / 1418
  27742. }
  27743. },
  27744. side: {
  27745. height: math.unit(7 + 3 / 12, "feet"),
  27746. weight: math.unit(180, "lb"),
  27747. name: "Side",
  27748. image: {
  27749. source: "./media/characters/juri/side.svg",
  27750. extra: 1424 / 1242,
  27751. bottom: 18.5 / 1447
  27752. }
  27753. },
  27754. sitting: {
  27755. height: math.unit(6, "feet"),
  27756. weight: math.unit(180, "lb"),
  27757. name: "Sitting",
  27758. image: {
  27759. source: "./media/characters/juri/sitting.svg",
  27760. extra: 1270 / 1143,
  27761. bottom: 100 / 1343
  27762. }
  27763. },
  27764. back: {
  27765. height: math.unit(7 + 3 / 12, "feet"),
  27766. weight: math.unit(180, "lb"),
  27767. name: "Back",
  27768. image: {
  27769. source: "./media/characters/juri/back.svg",
  27770. extra: 1377 / 1240,
  27771. bottom: 23.7 / 1405
  27772. }
  27773. },
  27774. maw: {
  27775. height: math.unit(2.8, "feet"),
  27776. name: "Maw",
  27777. image: {
  27778. source: "./media/characters/juri/maw.svg"
  27779. }
  27780. },
  27781. stomach: {
  27782. height: math.unit(0.89, "feet"),
  27783. preyCapacity: math.unit(4, "liters"),
  27784. name: "Stomach",
  27785. image: {
  27786. source: "./media/characters/juri/stomach.svg"
  27787. }
  27788. },
  27789. },
  27790. [
  27791. {
  27792. name: "Normal",
  27793. height: math.unit(7 + 3 / 12, "feet"),
  27794. default: true
  27795. },
  27796. ]
  27797. ))
  27798. characterMakers.push(() => makeCharacter(
  27799. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27800. {
  27801. fox: {
  27802. height: math.unit(5 + 6 / 12, "feet"),
  27803. weight: math.unit(140, "lb"),
  27804. name: "Fox",
  27805. image: {
  27806. source: "./media/characters/maxene-sita/fox.svg",
  27807. extra: 146 / 138,
  27808. bottom: 2.1 / 148.19
  27809. }
  27810. },
  27811. foxLaying: {
  27812. height: math.unit(1.70, "feet"),
  27813. weight: math.unit(140, "lb"),
  27814. name: "Fox (Laying)",
  27815. image: {
  27816. source: "./media/characters/maxene-sita/fox-laying.svg",
  27817. extra: 910 / 572,
  27818. bottom: 71 / 981
  27819. }
  27820. },
  27821. kitsune: {
  27822. height: math.unit(10, "feet"),
  27823. weight: math.unit(800, "lb"),
  27824. name: "Kitsune",
  27825. image: {
  27826. source: "./media/characters/maxene-sita/kitsune.svg",
  27827. extra: 185 / 176,
  27828. bottom: 4.7 / 189.9
  27829. }
  27830. },
  27831. hellhound: {
  27832. height: math.unit(10, "feet"),
  27833. weight: math.unit(700, "lb"),
  27834. name: "Hellhound",
  27835. image: {
  27836. source: "./media/characters/maxene-sita/hellhound.svg",
  27837. extra: 1600 / 1545,
  27838. bottom: 81 / 1681
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(5 + 6 / 12, "feet"),
  27846. default: true
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27852. {
  27853. front: {
  27854. height: math.unit(3 + 4 / 12, "feet"),
  27855. weight: math.unit(70, "lb"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/maia/front.svg",
  27859. extra: 227 / 219.5,
  27860. bottom: 40 / 267
  27861. }
  27862. },
  27863. back: {
  27864. height: math.unit(3 + 4 / 12, "feet"),
  27865. weight: math.unit(70, "lb"),
  27866. name: "Back",
  27867. image: {
  27868. source: "./media/characters/maia/back.svg",
  27869. extra: 237 / 225
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Normal",
  27876. height: math.unit(3 + 4 / 12, "feet"),
  27877. default: true
  27878. },
  27879. ]
  27880. ))
  27881. characterMakers.push(() => makeCharacter(
  27882. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27883. {
  27884. front: {
  27885. height: math.unit(5 + 10 / 12, "feet"),
  27886. weight: math.unit(197, "lb"),
  27887. name: "Front",
  27888. image: {
  27889. source: "./media/characters/jabaro/front.svg",
  27890. extra: 225 / 216,
  27891. bottom: 5.06 / 230
  27892. }
  27893. },
  27894. back: {
  27895. height: math.unit(5 + 10 / 12, "feet"),
  27896. weight: math.unit(197, "lb"),
  27897. name: "Back",
  27898. image: {
  27899. source: "./media/characters/jabaro/back.svg",
  27900. extra: 225 / 219,
  27901. bottom: 1.9 / 227
  27902. }
  27903. },
  27904. },
  27905. [
  27906. {
  27907. name: "Normal",
  27908. height: math.unit(5 + 10 / 12, "feet"),
  27909. default: true
  27910. },
  27911. ]
  27912. ))
  27913. characterMakers.push(() => makeCharacter(
  27914. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27915. {
  27916. front: {
  27917. height: math.unit(5 + 8 / 12, "feet"),
  27918. weight: math.unit(139, "lb"),
  27919. name: "Front",
  27920. image: {
  27921. source: "./media/characters/risa/front.svg",
  27922. extra: 270 / 260,
  27923. bottom: 11.2 / 282
  27924. }
  27925. },
  27926. back: {
  27927. height: math.unit(5 + 8 / 12, "feet"),
  27928. weight: math.unit(139, "lb"),
  27929. name: "Back",
  27930. image: {
  27931. source: "./media/characters/risa/back.svg",
  27932. extra: 264 / 255,
  27933. bottom: 4 / 268
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Normal",
  27940. height: math.unit(5 + 8 / 12, "feet"),
  27941. default: true
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(2 + 11 / 12, "feet"),
  27950. weight: math.unit(30, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/weatley/front.svg",
  27954. bottom: 10.7 / 414,
  27955. extra: 403.5 / 362
  27956. }
  27957. },
  27958. back: {
  27959. height: math.unit(2 + 11 / 12, "feet"),
  27960. weight: math.unit(30, "lb"),
  27961. name: "Back",
  27962. image: {
  27963. source: "./media/characters/weatley/back.svg",
  27964. bottom: 10.7 / 414,
  27965. extra: 403.5 / 362
  27966. }
  27967. },
  27968. },
  27969. [
  27970. {
  27971. name: "Normal",
  27972. height: math.unit(2 + 11 / 12, "feet"),
  27973. default: true
  27974. },
  27975. ]
  27976. ))
  27977. characterMakers.push(() => makeCharacter(
  27978. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27979. {
  27980. front: {
  27981. height: math.unit(5 + 2 / 12, "feet"),
  27982. weight: math.unit(50, "kg"),
  27983. name: "Front",
  27984. image: {
  27985. source: "./media/characters/mercury-crescent/front.svg",
  27986. extra: 1088 / 1033,
  27987. bottom: 18.9 / 1109
  27988. }
  27989. },
  27990. },
  27991. [
  27992. {
  27993. name: "Normal",
  27994. height: math.unit(5 + 2 / 12, "feet"),
  27995. default: true
  27996. },
  27997. ]
  27998. ))
  27999. characterMakers.push(() => makeCharacter(
  28000. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28001. {
  28002. front: {
  28003. height: math.unit(2, "feet"),
  28004. weight: math.unit(15, "kg"),
  28005. name: "Front",
  28006. image: {
  28007. source: "./media/characters/diamond-jones/front.svg",
  28008. extra: 727/723,
  28009. bottom: 46/773
  28010. }
  28011. },
  28012. },
  28013. [
  28014. {
  28015. name: "Normal",
  28016. height: math.unit(2, "feet"),
  28017. default: true
  28018. },
  28019. ]
  28020. ))
  28021. characterMakers.push(() => makeCharacter(
  28022. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28023. {
  28024. front: {
  28025. height: math.unit(3, "feet"),
  28026. weight: math.unit(30, "kg"),
  28027. name: "Front",
  28028. image: {
  28029. source: "./media/characters/sweet-bit/front.svg",
  28030. extra: 675 / 567,
  28031. bottom: 27.7 / 703
  28032. }
  28033. },
  28034. },
  28035. [
  28036. {
  28037. name: "Normal",
  28038. height: math.unit(3, "feet"),
  28039. default: true
  28040. },
  28041. ]
  28042. ))
  28043. characterMakers.push(() => makeCharacter(
  28044. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28045. {
  28046. side: {
  28047. height: math.unit(9.178, "feet"),
  28048. weight: math.unit(500, "lb"),
  28049. name: "Side",
  28050. image: {
  28051. source: "./media/characters/umbrazen/side.svg",
  28052. extra: 1730 / 1473,
  28053. bottom: 34.6 / 1765
  28054. }
  28055. },
  28056. },
  28057. [
  28058. {
  28059. name: "Normal",
  28060. height: math.unit(9.178, "feet"),
  28061. default: true
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28067. {
  28068. front: {
  28069. height: math.unit(10, "feet"),
  28070. weight: math.unit(750, "lb"),
  28071. name: "Front",
  28072. image: {
  28073. source: "./media/characters/arlist/front.svg",
  28074. extra: 961 / 778,
  28075. bottom: 6.2 / 986
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Normal",
  28082. height: math.unit(10, "feet"),
  28083. default: true
  28084. },
  28085. ]
  28086. ))
  28087. characterMakers.push(() => makeCharacter(
  28088. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28089. {
  28090. front: {
  28091. height: math.unit(5 + 1 / 12, "feet"),
  28092. weight: math.unit(110, "lb"),
  28093. name: "Front",
  28094. image: {
  28095. source: "./media/characters/aradel/front.svg",
  28096. extra: 324 / 303,
  28097. bottom: 3.6 / 329.4
  28098. }
  28099. },
  28100. },
  28101. [
  28102. {
  28103. name: "Normal",
  28104. height: math.unit(5 + 1 / 12, "feet"),
  28105. default: true
  28106. },
  28107. ]
  28108. ))
  28109. characterMakers.push(() => makeCharacter(
  28110. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28111. {
  28112. dressed: {
  28113. height: math.unit(3 + 8 / 12, "feet"),
  28114. weight: math.unit(50, "lb"),
  28115. name: "Dressed",
  28116. image: {
  28117. source: "./media/characters/serryn/dressed.svg",
  28118. extra: 1792 / 1656,
  28119. bottom: 43.5 / 1840
  28120. }
  28121. },
  28122. nude: {
  28123. height: math.unit(3 + 8 / 12, "feet"),
  28124. weight: math.unit(50, "lb"),
  28125. name: "Nude",
  28126. image: {
  28127. source: "./media/characters/serryn/nude.svg",
  28128. extra: 1792 / 1656,
  28129. bottom: 43.5 / 1840
  28130. }
  28131. },
  28132. },
  28133. [
  28134. {
  28135. name: "Normal",
  28136. height: math.unit(3 + 8 / 12, "feet"),
  28137. default: true
  28138. },
  28139. ]
  28140. ))
  28141. characterMakers.push(() => makeCharacter(
  28142. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28143. {
  28144. front: {
  28145. height: math.unit(7 + 10 / 12, "feet"),
  28146. weight: math.unit(255, "lb"),
  28147. name: "Front",
  28148. image: {
  28149. source: "./media/characters/xavier-thyme/front.svg",
  28150. extra: 3733 / 3642,
  28151. bottom: 131 / 3869
  28152. }
  28153. },
  28154. frontRaven: {
  28155. height: math.unit(7 + 10 / 12, "feet"),
  28156. weight: math.unit(255, "lb"),
  28157. name: "Front (Raven)",
  28158. image: {
  28159. source: "./media/characters/xavier-thyme/front-raven.svg",
  28160. extra: 4385 / 3642,
  28161. bottom: 131 / 4517
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Normal",
  28168. height: math.unit(7 + 10 / 12, "feet"),
  28169. default: true
  28170. },
  28171. ]
  28172. ))
  28173. characterMakers.push(() => makeCharacter(
  28174. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28175. {
  28176. front: {
  28177. height: math.unit(1.6, "m"),
  28178. weight: math.unit(50, "kg"),
  28179. name: "Front",
  28180. image: {
  28181. source: "./media/characters/kiki/front.svg",
  28182. extra: 4682 / 3610,
  28183. bottom: 115 / 4777
  28184. }
  28185. },
  28186. },
  28187. [
  28188. {
  28189. name: "Normal",
  28190. height: math.unit(1.6, "meters"),
  28191. default: true
  28192. },
  28193. ]
  28194. ))
  28195. characterMakers.push(() => makeCharacter(
  28196. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28197. {
  28198. front: {
  28199. height: math.unit(50, "m"),
  28200. weight: math.unit(500, "tonnes"),
  28201. name: "Front",
  28202. image: {
  28203. source: "./media/characters/ryoko/front.svg",
  28204. extra: 4632 / 3926,
  28205. bottom: 193 / 4823
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Normal",
  28212. height: math.unit(50, "meters"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(30, "m"),
  28222. weight: math.unit(22, "tonnes"),
  28223. name: "Front",
  28224. image: {
  28225. source: "./media/characters/elio/front.svg",
  28226. extra: 4582 / 3720,
  28227. bottom: 236 / 4828
  28228. }
  28229. },
  28230. },
  28231. [
  28232. {
  28233. name: "Normal",
  28234. height: math.unit(30, "meters"),
  28235. default: true
  28236. },
  28237. ]
  28238. ))
  28239. characterMakers.push(() => makeCharacter(
  28240. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28241. {
  28242. front: {
  28243. height: math.unit(6 + 3 / 12, "feet"),
  28244. weight: math.unit(120, "lb"),
  28245. name: "Front",
  28246. image: {
  28247. source: "./media/characters/azura/front.svg",
  28248. extra: 1149 / 1135,
  28249. bottom: 45 / 1194
  28250. }
  28251. },
  28252. frontClothed: {
  28253. height: math.unit(6 + 3 / 12, "feet"),
  28254. weight: math.unit(120, "lb"),
  28255. name: "Front (Clothed)",
  28256. image: {
  28257. source: "./media/characters/azura/front-clothed.svg",
  28258. extra: 1149 / 1135,
  28259. bottom: 45 / 1194
  28260. }
  28261. },
  28262. },
  28263. [
  28264. {
  28265. name: "Normal",
  28266. height: math.unit(6 + 3 / 12, "feet"),
  28267. default: true
  28268. },
  28269. {
  28270. name: "Macro",
  28271. height: math.unit(20 + 6 / 12, "feet")
  28272. },
  28273. {
  28274. name: "Megamacro",
  28275. height: math.unit(12, "miles")
  28276. },
  28277. {
  28278. name: "Gigamacro",
  28279. height: math.unit(10000, "miles")
  28280. },
  28281. {
  28282. name: "Teramacro",
  28283. height: math.unit(900000, "miles")
  28284. },
  28285. ]
  28286. ))
  28287. characterMakers.push(() => makeCharacter(
  28288. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28289. {
  28290. front: {
  28291. height: math.unit(12, "feet"),
  28292. weight: math.unit(1, "ton"),
  28293. capacity: math.unit(660000, "gallons"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/zeus/front.svg",
  28297. extra: 5005 / 4717,
  28298. bottom: 363 / 5388
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(12, "feet")
  28306. },
  28307. {
  28308. name: "Preferred Size",
  28309. height: math.unit(0.5, "miles"),
  28310. default: true
  28311. },
  28312. {
  28313. name: "Giga Horse",
  28314. height: math.unit(300, "miles")
  28315. },
  28316. {
  28317. name: "Riding Planets",
  28318. height: math.unit(30, "megameters")
  28319. },
  28320. {
  28321. name: "Cosmic Giant",
  28322. height: math.unit(3, "zettameters")
  28323. },
  28324. {
  28325. name: "Breeding God",
  28326. height: math.unit(9.92e22, "yottameters")
  28327. },
  28328. ]
  28329. ))
  28330. characterMakers.push(() => makeCharacter(
  28331. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28332. {
  28333. side: {
  28334. height: math.unit(9, "feet"),
  28335. weight: math.unit(1500, "kg"),
  28336. name: "Side",
  28337. image: {
  28338. source: "./media/characters/fang/side.svg",
  28339. extra: 924 / 866,
  28340. bottom: 47.5 / 972.3
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(9, "feet"),
  28348. default: true
  28349. },
  28350. {
  28351. name: "Macro",
  28352. height: math.unit(75 + 6 / 12, "feet")
  28353. },
  28354. {
  28355. name: "Teramacro",
  28356. height: math.unit(50000, "miles")
  28357. },
  28358. ]
  28359. ))
  28360. characterMakers.push(() => makeCharacter(
  28361. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28362. {
  28363. front: {
  28364. height: math.unit(10, "feet"),
  28365. weight: math.unit(2, "tons"),
  28366. name: "Front",
  28367. image: {
  28368. source: "./media/characters/rekhit/front.svg",
  28369. extra: 2796 / 2590,
  28370. bottom: 225 / 3022
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(10, "feet"),
  28378. default: true
  28379. },
  28380. {
  28381. name: "Macro",
  28382. height: math.unit(500, "feet")
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(7 + 6.451 / 12, "feet"),
  28391. weight: math.unit(310, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/dahlia-verrick/front.svg",
  28395. extra: 1488 / 1365,
  28396. bottom: 6.2 / 1495
  28397. }
  28398. },
  28399. back: {
  28400. height: math.unit(7 + 6.451 / 12, "feet"),
  28401. weight: math.unit(310, "lb"),
  28402. name: "Back",
  28403. image: {
  28404. source: "./media/characters/dahlia-verrick/back.svg",
  28405. extra: 1472 / 1351,
  28406. bottom: 5.28 / 1477
  28407. }
  28408. },
  28409. frontBusiness: {
  28410. height: math.unit(7 + 6.451 / 12, "feet"),
  28411. weight: math.unit(200, "lb"),
  28412. name: "Front (Business)",
  28413. image: {
  28414. source: "./media/characters/dahlia-verrick/front-business.svg",
  28415. extra: 1478 / 1381,
  28416. bottom: 5.5 / 1484
  28417. }
  28418. },
  28419. frontCasual: {
  28420. height: math.unit(7 + 6.451 / 12, "feet"),
  28421. weight: math.unit(200, "lb"),
  28422. name: "Front (Casual)",
  28423. image: {
  28424. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28425. extra: 1478 / 1381,
  28426. bottom: 5.5 / 1484
  28427. }
  28428. },
  28429. },
  28430. [
  28431. {
  28432. name: "Travel-Sized",
  28433. height: math.unit(7.45, "inches")
  28434. },
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(7 + 6.451 / 12, "feet"),
  28438. default: true
  28439. },
  28440. {
  28441. name: "Hitting the Town",
  28442. height: math.unit(37 + 8 / 12, "feet")
  28443. },
  28444. {
  28445. name: "Stomp in the Suburbs",
  28446. height: math.unit(964 + 9.728 / 12, "feet")
  28447. },
  28448. {
  28449. name: "Sit on the City",
  28450. height: math.unit(61747 + 10.592 / 12, "feet")
  28451. },
  28452. {
  28453. name: "Glomp the Globe",
  28454. height: math.unit(252919327 + 4.832 / 12, "feet")
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(6 + 4 / 12, "feet"),
  28463. weight: math.unit(320, "lb"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/balina-mahigan/front.svg",
  28467. extra: 447 / 428,
  28468. bottom: 18 / 466
  28469. }
  28470. },
  28471. back: {
  28472. height: math.unit(6 + 4 / 12, "feet"),
  28473. weight: math.unit(320, "lb"),
  28474. name: "Back",
  28475. image: {
  28476. source: "./media/characters/balina-mahigan/back.svg",
  28477. extra: 445 / 428,
  28478. bottom: 4.07 / 448
  28479. }
  28480. },
  28481. arm: {
  28482. height: math.unit(1.88, "feet"),
  28483. name: "Arm",
  28484. image: {
  28485. source: "./media/characters/balina-mahigan/arm.svg"
  28486. }
  28487. },
  28488. backPort: {
  28489. height: math.unit(0.685, "feet"),
  28490. name: "Back Port",
  28491. image: {
  28492. source: "./media/characters/balina-mahigan/back-port.svg"
  28493. }
  28494. },
  28495. hoofpaw: {
  28496. height: math.unit(1.41, "feet"),
  28497. name: "Hoofpaw",
  28498. image: {
  28499. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28500. }
  28501. },
  28502. leftHandBack: {
  28503. height: math.unit(0.938, "feet"),
  28504. name: "Left Hand (Back)",
  28505. image: {
  28506. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28507. }
  28508. },
  28509. leftHandFront: {
  28510. height: math.unit(0.938, "feet"),
  28511. name: "Left Hand (Front)",
  28512. image: {
  28513. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28514. }
  28515. },
  28516. rightHandBack: {
  28517. height: math.unit(0.95, "feet"),
  28518. name: "Right Hand (Back)",
  28519. image: {
  28520. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28521. }
  28522. },
  28523. rightHandFront: {
  28524. height: math.unit(0.95, "feet"),
  28525. name: "Right Hand (Front)",
  28526. image: {
  28527. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(6 + 4 / 12, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(6, "feet"),
  28544. weight: math.unit(320, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/balina-mejeri/front.svg",
  28548. extra: 517 / 488,
  28549. bottom: 44.2 / 561
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(6 + 4 / 12, "feet")
  28557. },
  28558. {
  28559. name: "Business",
  28560. height: math.unit(155, "feet"),
  28561. default: true
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28567. {
  28568. kneeling: {
  28569. height: math.unit(6 + 4 / 12, "feet"),
  28570. weight: math.unit(300 * 20, "lb"),
  28571. name: "Kneeling",
  28572. image: {
  28573. source: "./media/characters/balbarian/kneeling.svg",
  28574. extra: 922 / 862,
  28575. bottom: 42.4 / 965
  28576. }
  28577. },
  28578. },
  28579. [
  28580. {
  28581. name: "Normal",
  28582. height: math.unit(6 + 4 / 12, "feet")
  28583. },
  28584. {
  28585. name: "Treasured",
  28586. height: math.unit(18 + 9 / 12, "feet"),
  28587. default: true
  28588. },
  28589. {
  28590. name: "Macro",
  28591. height: math.unit(900, "feet")
  28592. },
  28593. ]
  28594. ))
  28595. characterMakers.push(() => makeCharacter(
  28596. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28597. {
  28598. front: {
  28599. height: math.unit(6 + 4 / 12, "feet"),
  28600. weight: math.unit(325, "lb"),
  28601. name: "Front",
  28602. image: {
  28603. source: "./media/characters/balina-amarini/front.svg",
  28604. extra: 415 / 403,
  28605. bottom: 19 / 433.4
  28606. }
  28607. },
  28608. back: {
  28609. height: math.unit(6 + 4 / 12, "feet"),
  28610. weight: math.unit(325, "lb"),
  28611. name: "Back",
  28612. image: {
  28613. source: "./media/characters/balina-amarini/back.svg",
  28614. extra: 415 / 403,
  28615. bottom: 13.5 / 432
  28616. }
  28617. },
  28618. overdrive: {
  28619. height: math.unit(6 + 4 / 12, "feet"),
  28620. weight: math.unit(400, "lb"),
  28621. name: "Overdrive",
  28622. image: {
  28623. source: "./media/characters/balina-amarini/overdrive.svg",
  28624. extra: 269 / 259,
  28625. bottom: 12 / 282
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Boom",
  28632. height: math.unit(9 + 10 / 12, "feet"),
  28633. default: true
  28634. },
  28635. {
  28636. name: "Macro",
  28637. height: math.unit(280, "feet")
  28638. },
  28639. ]
  28640. ))
  28641. characterMakers.push(() => makeCharacter(
  28642. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28643. {
  28644. goddess: {
  28645. height: math.unit(600, "feet"),
  28646. weight: math.unit(2000000, "tons"),
  28647. name: "Goddess",
  28648. image: {
  28649. source: "./media/characters/lady-kubwa/goddess.svg",
  28650. extra: 1240.5 / 1223,
  28651. bottom: 22 / 1263
  28652. }
  28653. },
  28654. goddesser: {
  28655. height: math.unit(900, "feet"),
  28656. weight: math.unit(20000000, "lb"),
  28657. name: "Goddess-er",
  28658. image: {
  28659. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28660. extra: 899 / 888,
  28661. bottom: 12.6 / 912
  28662. }
  28663. },
  28664. },
  28665. [
  28666. {
  28667. name: "Macro",
  28668. height: math.unit(600, "feet"),
  28669. default: true
  28670. },
  28671. {
  28672. name: "Megamacro",
  28673. height: math.unit(250, "miles")
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(7 + 7 / 12, "feet"),
  28682. weight: math.unit(250, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/tala-grovehorn/front.svg",
  28686. extra: 2636 / 2525,
  28687. bottom: 147 / 2781
  28688. }
  28689. },
  28690. back: {
  28691. height: math.unit(7 + 7 / 12, "feet"),
  28692. weight: math.unit(250, "lb"),
  28693. name: "Back",
  28694. image: {
  28695. source: "./media/characters/tala-grovehorn/back.svg",
  28696. extra: 2635 / 2539,
  28697. bottom: 100 / 2732.8
  28698. }
  28699. },
  28700. mouth: {
  28701. height: math.unit(1.15, "feet"),
  28702. name: "Mouth",
  28703. image: {
  28704. source: "./media/characters/tala-grovehorn/mouth.svg"
  28705. }
  28706. },
  28707. dick: {
  28708. height: math.unit(2.36, "feet"),
  28709. name: "Dick",
  28710. image: {
  28711. source: "./media/characters/tala-grovehorn/dick.svg"
  28712. }
  28713. },
  28714. slit: {
  28715. height: math.unit(0.61, "feet"),
  28716. name: "Slit",
  28717. image: {
  28718. source: "./media/characters/tala-grovehorn/slit.svg"
  28719. }
  28720. },
  28721. },
  28722. [
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(7 + 7 / 12, "feet"),
  28730. weight: math.unit(225, "lb"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/epona/front.svg",
  28734. extra: 2445 / 2290,
  28735. bottom: 251 / 2696
  28736. }
  28737. },
  28738. back: {
  28739. height: math.unit(7 + 7 / 12, "feet"),
  28740. weight: math.unit(225, "lb"),
  28741. name: "Back",
  28742. image: {
  28743. source: "./media/characters/epona/back.svg",
  28744. extra: 2546 / 2408,
  28745. bottom: 44 / 2589
  28746. }
  28747. },
  28748. genitals: {
  28749. height: math.unit(1.5, "feet"),
  28750. name: "Genitals",
  28751. image: {
  28752. source: "./media/characters/epona/genitals.svg"
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(7 + 7 / 12, "feet"),
  28760. default: true
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(7, "feet"),
  28769. weight: math.unit(518, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/avia-bloodbourn/front.svg",
  28773. extra: 1466 / 1350,
  28774. bottom: 65 / 1527
  28775. }
  28776. },
  28777. },
  28778. [
  28779. ]
  28780. ))
  28781. characterMakers.push(() => makeCharacter(
  28782. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28783. {
  28784. front: {
  28785. height: math.unit(9.35, "feet"),
  28786. weight: math.unit(600, "lb"),
  28787. name: "Front",
  28788. image: {
  28789. source: "./media/characters/amera/front.svg",
  28790. extra: 891 / 818,
  28791. bottom: 30 / 922.7
  28792. }
  28793. },
  28794. back: {
  28795. height: math.unit(9.35, "feet"),
  28796. weight: math.unit(600, "lb"),
  28797. name: "Back",
  28798. image: {
  28799. source: "./media/characters/amera/back.svg",
  28800. extra: 876 / 824,
  28801. bottom: 6.8 / 884
  28802. }
  28803. },
  28804. dick: {
  28805. height: math.unit(2.14, "feet"),
  28806. name: "Dick",
  28807. image: {
  28808. source: "./media/characters/amera/dick.svg"
  28809. }
  28810. },
  28811. },
  28812. [
  28813. {
  28814. name: "Normal",
  28815. height: math.unit(9.35, "feet"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28822. {
  28823. kneeling: {
  28824. height: math.unit(3 + 4 / 12, "feet"),
  28825. weight: math.unit(90, "lb"),
  28826. name: "Kneeling",
  28827. image: {
  28828. source: "./media/characters/rosewen/kneeling.svg",
  28829. extra: 1835 / 1571,
  28830. bottom: 27.7 / 1862
  28831. }
  28832. },
  28833. },
  28834. [
  28835. {
  28836. name: "Normal",
  28837. height: math.unit(3 + 4 / 12, "feet"),
  28838. default: true
  28839. },
  28840. ]
  28841. ))
  28842. characterMakers.push(() => makeCharacter(
  28843. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28844. {
  28845. front: {
  28846. height: math.unit(5 + 10 / 12, "feet"),
  28847. weight: math.unit(200, "lb"),
  28848. name: "Front",
  28849. image: {
  28850. source: "./media/characters/sabah/front.svg",
  28851. extra: 849 / 763,
  28852. bottom: 33.9 / 881
  28853. }
  28854. },
  28855. },
  28856. [
  28857. {
  28858. name: "Normal",
  28859. height: math.unit(5 + 10 / 12, "feet"),
  28860. default: true
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28866. {
  28867. front: {
  28868. height: math.unit(3 + 5 / 12, "feet"),
  28869. weight: math.unit(40, "kg"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/purple-flame/front.svg",
  28873. extra: 1577 / 1412,
  28874. bottom: 97 / 1694
  28875. }
  28876. },
  28877. frontDressed: {
  28878. height: math.unit(3 + 5 / 12, "feet"),
  28879. weight: math.unit(40, "kg"),
  28880. name: "Front (Dressed)",
  28881. image: {
  28882. source: "./media/characters/purple-flame/front-dressed.svg",
  28883. extra: 1577 / 1412,
  28884. bottom: 97 / 1694
  28885. }
  28886. },
  28887. headphones: {
  28888. height: math.unit(0.85, "feet"),
  28889. name: "Headphones",
  28890. image: {
  28891. source: "./media/characters/purple-flame/headphones.svg"
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Really Small",
  28898. height: math.unit(5, "cm")
  28899. },
  28900. {
  28901. name: "Micro",
  28902. height: math.unit(1 + 5 / 12, "feet")
  28903. },
  28904. {
  28905. name: "Normal",
  28906. height: math.unit(3 + 5 / 12, "feet"),
  28907. default: true
  28908. },
  28909. {
  28910. name: "Minimacro",
  28911. height: math.unit(125, "feet")
  28912. },
  28913. {
  28914. name: "Macro",
  28915. height: math.unit(0.5, "miles")
  28916. },
  28917. {
  28918. name: "Megamacro",
  28919. height: math.unit(50, "miles")
  28920. },
  28921. {
  28922. name: "Gigantic",
  28923. height: math.unit(750, "miles")
  28924. },
  28925. {
  28926. name: "Planetary",
  28927. height: math.unit(15000, "miles")
  28928. },
  28929. ]
  28930. ))
  28931. characterMakers.push(() => makeCharacter(
  28932. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28933. {
  28934. front: {
  28935. height: math.unit(14, "feet"),
  28936. weight: math.unit(959, "lb"),
  28937. name: "Front",
  28938. image: {
  28939. source: "./media/characters/arsenal/front.svg",
  28940. extra: 2357 / 2157,
  28941. bottom: 93 / 2458
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(14, "feet"),
  28949. default: true
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(6, "feet"),
  28958. weight: math.unit(150, "lb"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/adira/front.svg",
  28962. extra: 1078 / 1029,
  28963. bottom: 87 / 1166
  28964. }
  28965. },
  28966. },
  28967. [
  28968. {
  28969. name: "Micro",
  28970. height: math.unit(4, "inches"),
  28971. default: true
  28972. },
  28973. {
  28974. name: "Macro",
  28975. height: math.unit(50, "feet")
  28976. },
  28977. ]
  28978. ))
  28979. characterMakers.push(() => makeCharacter(
  28980. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28981. {
  28982. front: {
  28983. height: math.unit(16, "feet"),
  28984. weight: math.unit(1000, "lb"),
  28985. name: "Front",
  28986. image: {
  28987. source: "./media/characters/grim/front.svg",
  28988. extra: 622 / 614,
  28989. bottom: 18.1 / 642
  28990. }
  28991. },
  28992. back: {
  28993. height: math.unit(16, "feet"),
  28994. weight: math.unit(1000, "lb"),
  28995. name: "Back",
  28996. image: {
  28997. source: "./media/characters/grim/back.svg",
  28998. extra: 610.6 / 602,
  28999. bottom: 40.8 / 652
  29000. }
  29001. },
  29002. hunched: {
  29003. height: math.unit(9.75, "feet"),
  29004. weight: math.unit(1000, "lb"),
  29005. name: "Hunched",
  29006. image: {
  29007. source: "./media/characters/grim/hunched.svg",
  29008. extra: 304 / 297,
  29009. bottom: 35.4 / 394
  29010. }
  29011. },
  29012. },
  29013. [
  29014. {
  29015. name: "Normal",
  29016. height: math.unit(16, "feet"),
  29017. default: true
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29023. {
  29024. front: {
  29025. height: math.unit(2.3, "meters"),
  29026. weight: math.unit(300, "lb"),
  29027. name: "Front",
  29028. image: {
  29029. source: "./media/characters/sinja/front-sfw.svg",
  29030. extra: 1393 / 1294,
  29031. bottom: 70 / 1463
  29032. }
  29033. },
  29034. frontNsfw: {
  29035. height: math.unit(2.3, "meters"),
  29036. weight: math.unit(300, "lb"),
  29037. name: "Front (NSFW)",
  29038. image: {
  29039. source: "./media/characters/sinja/front-nsfw.svg",
  29040. extra: 1393 / 1294,
  29041. bottom: 70 / 1463
  29042. }
  29043. },
  29044. back: {
  29045. height: math.unit(2.3, "meters"),
  29046. weight: math.unit(300, "lb"),
  29047. name: "Back",
  29048. image: {
  29049. source: "./media/characters/sinja/back.svg",
  29050. extra: 1393 / 1294,
  29051. bottom: 70 / 1463
  29052. }
  29053. },
  29054. head: {
  29055. height: math.unit(1.771, "feet"),
  29056. name: "Head",
  29057. image: {
  29058. source: "./media/characters/sinja/head.svg"
  29059. }
  29060. },
  29061. slit: {
  29062. height: math.unit(0.8, "feet"),
  29063. name: "Slit",
  29064. image: {
  29065. source: "./media/characters/sinja/slit.svg"
  29066. }
  29067. },
  29068. },
  29069. [
  29070. {
  29071. name: "Normal",
  29072. height: math.unit(2.3, "meters")
  29073. },
  29074. {
  29075. name: "Macro",
  29076. height: math.unit(91, "meters"),
  29077. default: true
  29078. },
  29079. {
  29080. name: "Megamacro",
  29081. height: math.unit(91440, "meters")
  29082. },
  29083. {
  29084. name: "Gigamacro",
  29085. height: math.unit(60960000, "meters")
  29086. },
  29087. {
  29088. name: "Teramacro",
  29089. height: math.unit(9144000000, "meters")
  29090. },
  29091. ]
  29092. ))
  29093. characterMakers.push(() => makeCharacter(
  29094. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29095. {
  29096. front: {
  29097. height: math.unit(1.7, "meters"),
  29098. weight: math.unit(130, "lb"),
  29099. name: "Front",
  29100. image: {
  29101. source: "./media/characters/kyu/front.svg",
  29102. extra: 415 / 395,
  29103. bottom: 5 / 420
  29104. }
  29105. },
  29106. head: {
  29107. height: math.unit(1.75, "feet"),
  29108. name: "Head",
  29109. image: {
  29110. source: "./media/characters/kyu/head.svg"
  29111. }
  29112. },
  29113. foot: {
  29114. height: math.unit(0.81, "feet"),
  29115. name: "Foot",
  29116. image: {
  29117. source: "./media/characters/kyu/foot.svg"
  29118. }
  29119. },
  29120. },
  29121. [
  29122. {
  29123. name: "Normal",
  29124. height: math.unit(1.7, "meters")
  29125. },
  29126. {
  29127. name: "Macro",
  29128. height: math.unit(131, "feet"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Megamacro",
  29133. height: math.unit(91440, "meters")
  29134. },
  29135. {
  29136. name: "Gigamacro",
  29137. height: math.unit(60960000, "meters")
  29138. },
  29139. {
  29140. name: "Teramacro",
  29141. height: math.unit(9144000000, "meters")
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(7 + 1 / 12, "feet"),
  29150. weight: math.unit(250, "lb"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/joey/front.svg",
  29154. extra: 1791 / 1537,
  29155. bottom: 28 / 1816
  29156. }
  29157. },
  29158. },
  29159. [
  29160. {
  29161. name: "Micro",
  29162. height: math.unit(3, "inches")
  29163. },
  29164. {
  29165. name: "Normal",
  29166. height: math.unit(7 + 1 / 12, "feet"),
  29167. default: true
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29173. {
  29174. front: {
  29175. height: math.unit(165, "cm"),
  29176. weight: math.unit(140, "lb"),
  29177. name: "Front",
  29178. image: {
  29179. source: "./media/characters/sam-evans/front.svg",
  29180. extra: 3417 / 3230,
  29181. bottom: 41.3 / 3417
  29182. }
  29183. },
  29184. frontSixTails: {
  29185. height: math.unit(165, "cm"),
  29186. weight: math.unit(140, "lb"),
  29187. name: "Front-six-tails",
  29188. image: {
  29189. source: "./media/characters/sam-evans/front-six-tails.svg",
  29190. extra: 3417 / 3230,
  29191. bottom: 41.3 / 3417
  29192. }
  29193. },
  29194. back: {
  29195. height: math.unit(165, "cm"),
  29196. weight: math.unit(140, "lb"),
  29197. name: "Back",
  29198. image: {
  29199. source: "./media/characters/sam-evans/back.svg",
  29200. extra: 3227 / 3032,
  29201. bottom: 6.8 / 3234
  29202. }
  29203. },
  29204. face: {
  29205. height: math.unit(0.68, "feet"),
  29206. name: "Face",
  29207. image: {
  29208. source: "./media/characters/sam-evans/face.svg"
  29209. }
  29210. },
  29211. },
  29212. [
  29213. {
  29214. name: "Normal",
  29215. height: math.unit(165, "cm"),
  29216. default: true
  29217. },
  29218. {
  29219. name: "Macro",
  29220. height: math.unit(100, "meters")
  29221. },
  29222. {
  29223. name: "Macro+",
  29224. height: math.unit(800, "meters")
  29225. },
  29226. {
  29227. name: "Macro++",
  29228. height: math.unit(3, "km")
  29229. },
  29230. {
  29231. name: "Macro+++",
  29232. height: math.unit(30, "km")
  29233. },
  29234. ]
  29235. ))
  29236. characterMakers.push(() => makeCharacter(
  29237. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29238. {
  29239. front: {
  29240. height: math.unit(10, "feet"),
  29241. weight: math.unit(750, "lb"),
  29242. name: "Front",
  29243. image: {
  29244. source: "./media/characters/juliet-a/front.svg",
  29245. extra: 1766 / 1720,
  29246. bottom: 43 / 1809
  29247. }
  29248. },
  29249. back: {
  29250. height: math.unit(10, "feet"),
  29251. weight: math.unit(750, "lb"),
  29252. name: "Back",
  29253. image: {
  29254. source: "./media/characters/juliet-a/back.svg",
  29255. extra: 1781 / 1734,
  29256. bottom: 35 / 1810,
  29257. }
  29258. },
  29259. },
  29260. [
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(10, "feet"),
  29264. default: true
  29265. },
  29266. {
  29267. name: "Dragon Form",
  29268. height: math.unit(250, "feet")
  29269. },
  29270. {
  29271. name: "Macro",
  29272. height: math.unit(1000, "feet")
  29273. },
  29274. {
  29275. name: "Megamacro",
  29276. height: math.unit(10000, "feet")
  29277. }
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29282. {
  29283. regular: {
  29284. height: math.unit(7 + 3 / 12, "feet"),
  29285. weight: math.unit(260, "lb"),
  29286. name: "Regular",
  29287. image: {
  29288. source: "./media/characters/wild/regular.svg",
  29289. extra: 97.45 / 92,
  29290. bottom: 6.8 / 104.3
  29291. }
  29292. },
  29293. biggums: {
  29294. height: math.unit(8 + 6 / 12, "feet"),
  29295. weight: math.unit(425, "lb"),
  29296. name: "Biggums",
  29297. image: {
  29298. source: "./media/characters/wild/biggums.svg",
  29299. extra: 97.45 / 92,
  29300. bottom: 7.5 / 132.34
  29301. }
  29302. },
  29303. mawRegular: {
  29304. height: math.unit(1.24, "feet"),
  29305. name: "Maw (Regular)",
  29306. image: {
  29307. source: "./media/characters/wild/maw.svg"
  29308. }
  29309. },
  29310. mawBiggums: {
  29311. height: math.unit(1.47, "feet"),
  29312. name: "Maw (Biggums)",
  29313. image: {
  29314. source: "./media/characters/wild/maw.svg"
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(7 + 3 / 12, "feet"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29328. {
  29329. front: {
  29330. height: math.unit(2.5, "meters"),
  29331. weight: math.unit(200, "kg"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/vidar/front.svg",
  29335. extra: 2994 / 2795,
  29336. bottom: 56 / 3061
  29337. }
  29338. },
  29339. back: {
  29340. height: math.unit(2.5, "meters"),
  29341. weight: math.unit(200, "kg"),
  29342. name: "Back",
  29343. image: {
  29344. source: "./media/characters/vidar/back.svg",
  29345. extra: 3131 / 2928,
  29346. bottom: 13.5 / 3141.5
  29347. }
  29348. },
  29349. feral: {
  29350. height: math.unit(2.5, "meters"),
  29351. weight: math.unit(2000, "kg"),
  29352. name: "Feral",
  29353. image: {
  29354. source: "./media/characters/vidar/feral.svg",
  29355. extra: 2790 / 1765,
  29356. bottom: 6 / 2796
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Normal",
  29363. height: math.unit(2.5, "meters"),
  29364. default: true
  29365. },
  29366. {
  29367. name: "Macro",
  29368. height: math.unit(100, "meters")
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(5 + 9 / 12, "feet"),
  29377. weight: math.unit(120, "lb"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/ash/front.svg",
  29381. extra: 2189 / 1961,
  29382. bottom: 5.2 / 2194
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(5 + 9 / 12, "feet"),
  29390. default: true
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(9, "feet"),
  29399. weight: math.unit(10000, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/gygabite/front.svg",
  29403. bottom: 31.7 / 537.8,
  29404. extra: 505 / 370
  29405. }
  29406. },
  29407. },
  29408. [
  29409. {
  29410. name: "Normal",
  29411. height: math.unit(9, "feet"),
  29412. default: true
  29413. },
  29414. ]
  29415. ))
  29416. characterMakers.push(() => makeCharacter(
  29417. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29418. {
  29419. front: {
  29420. height: math.unit(12, "feet"),
  29421. weight: math.unit(4000, "lb"),
  29422. name: "Front",
  29423. image: {
  29424. source: "./media/characters/p0tat0/front.svg",
  29425. extra: 1065 / 921,
  29426. bottom: 55.7 / 1121.25
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(12, "feet"),
  29434. default: true
  29435. },
  29436. ]
  29437. ))
  29438. characterMakers.push(() => makeCharacter(
  29439. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29440. {
  29441. side: {
  29442. height: math.unit(6.5, "feet"),
  29443. weight: math.unit(800, "lb"),
  29444. name: "Side",
  29445. image: {
  29446. source: "./media/characters/dusk/side.svg",
  29447. extra: 615 / 373,
  29448. bottom: 53 / 664
  29449. }
  29450. },
  29451. sitting: {
  29452. height: math.unit(7, "feet"),
  29453. weight: math.unit(800, "lb"),
  29454. name: "Sitting",
  29455. image: {
  29456. source: "./media/characters/dusk/sitting.svg",
  29457. extra: 753 / 425,
  29458. bottom: 33 / 774
  29459. }
  29460. },
  29461. head: {
  29462. height: math.unit(6.1, "feet"),
  29463. name: "Head",
  29464. image: {
  29465. source: "./media/characters/dusk/head.svg"
  29466. }
  29467. },
  29468. },
  29469. [
  29470. {
  29471. name: "Normal",
  29472. height: math.unit(7, "feet"),
  29473. default: true
  29474. },
  29475. ]
  29476. ))
  29477. characterMakers.push(() => makeCharacter(
  29478. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29479. {
  29480. front: {
  29481. height: math.unit(15, "feet"),
  29482. weight: math.unit(7000, "lb"),
  29483. name: "Front",
  29484. image: {
  29485. source: "./media/characters/jay-direwolf/front.svg",
  29486. extra: 1810 / 1732,
  29487. bottom: 66 / 1892
  29488. }
  29489. },
  29490. },
  29491. [
  29492. {
  29493. name: "Normal",
  29494. height: math.unit(15, "feet"),
  29495. default: true
  29496. },
  29497. ]
  29498. ))
  29499. characterMakers.push(() => makeCharacter(
  29500. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29501. {
  29502. front: {
  29503. height: math.unit(4 + 9 / 12, "feet"),
  29504. weight: math.unit(130, "lb"),
  29505. name: "Front",
  29506. image: {
  29507. source: "./media/characters/anchovie/front.svg",
  29508. extra: 382 / 350,
  29509. bottom: 25 / 409
  29510. }
  29511. },
  29512. back: {
  29513. height: math.unit(4 + 9 / 12, "feet"),
  29514. weight: math.unit(130, "lb"),
  29515. name: "Back",
  29516. image: {
  29517. source: "./media/characters/anchovie/back.svg",
  29518. extra: 385 / 352,
  29519. bottom: 16.6 / 402
  29520. }
  29521. },
  29522. frontDressed: {
  29523. height: math.unit(4 + 9 / 12, "feet"),
  29524. weight: math.unit(130, "lb"),
  29525. name: "Front (Dressed)",
  29526. image: {
  29527. source: "./media/characters/anchovie/front-dressed.svg",
  29528. extra: 382 / 350,
  29529. bottom: 25 / 409
  29530. }
  29531. },
  29532. backDressed: {
  29533. height: math.unit(4 + 9 / 12, "feet"),
  29534. weight: math.unit(130, "lb"),
  29535. name: "Back (Dressed)",
  29536. image: {
  29537. source: "./media/characters/anchovie/back-dressed.svg",
  29538. extra: 385 / 352,
  29539. bottom: 16.6 / 402
  29540. }
  29541. },
  29542. },
  29543. [
  29544. {
  29545. name: "Micro",
  29546. height: math.unit(6.4, "inches")
  29547. },
  29548. {
  29549. name: "Normal",
  29550. height: math.unit(4 + 9 / 12, "feet"),
  29551. default: true
  29552. },
  29553. ]
  29554. ))
  29555. characterMakers.push(() => makeCharacter(
  29556. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29557. {
  29558. front: {
  29559. height: math.unit(2, "meters"),
  29560. weight: math.unit(180, "lb"),
  29561. name: "Front",
  29562. image: {
  29563. source: "./media/characters/acidrenamon/front.svg",
  29564. extra: 987 / 890,
  29565. bottom: 22.8 / 1009
  29566. }
  29567. },
  29568. back: {
  29569. height: math.unit(2, "meters"),
  29570. weight: math.unit(180, "lb"),
  29571. name: "Back",
  29572. image: {
  29573. source: "./media/characters/acidrenamon/back.svg",
  29574. extra: 983 / 891,
  29575. bottom: 8.4 / 992
  29576. }
  29577. },
  29578. head: {
  29579. height: math.unit(1.92, "feet"),
  29580. name: "Head",
  29581. image: {
  29582. source: "./media/characters/acidrenamon/head.svg"
  29583. }
  29584. },
  29585. rump: {
  29586. height: math.unit(1.72, "feet"),
  29587. name: "Rump",
  29588. image: {
  29589. source: "./media/characters/acidrenamon/rump.svg"
  29590. }
  29591. },
  29592. tail: {
  29593. height: math.unit(4.2, "feet"),
  29594. name: "Tail",
  29595. image: {
  29596. source: "./media/characters/acidrenamon/tail.svg"
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(2, "meters"),
  29604. default: true
  29605. },
  29606. {
  29607. name: "Minimacro",
  29608. height: math.unit(7, "meters")
  29609. },
  29610. {
  29611. name: "Macro",
  29612. height: math.unit(200, "meters")
  29613. },
  29614. {
  29615. name: "Gigamacro",
  29616. height: math.unit(0.2, "earths")
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(152, "feet"),
  29625. name: "Front",
  29626. image: {
  29627. source: "./media/characters/kenzie-lee/front.svg",
  29628. extra: 1869/1774,
  29629. bottom: 128/1997
  29630. }
  29631. },
  29632. side: {
  29633. height: math.unit(86, "feet"),
  29634. name: "Side",
  29635. image: {
  29636. source: "./media/characters/kenzie-lee/side.svg",
  29637. extra: 930/815,
  29638. bottom: 177/1107
  29639. }
  29640. },
  29641. paw: {
  29642. height: math.unit(15, "feet"),
  29643. name: "Paw",
  29644. image: {
  29645. source: "./media/characters/kenzie-lee/paw.svg"
  29646. }
  29647. },
  29648. },
  29649. [
  29650. {
  29651. name: "Kenzie Flea",
  29652. height: math.unit(2, "mm"),
  29653. default: true
  29654. },
  29655. {
  29656. name: "Micro",
  29657. height: math.unit(2, "inches")
  29658. },
  29659. {
  29660. name: "Normal",
  29661. height: math.unit(152, "feet")
  29662. },
  29663. {
  29664. name: "Megamacro",
  29665. height: math.unit(7, "miles")
  29666. },
  29667. {
  29668. name: "Gigamacro",
  29669. height: math.unit(8000, "miles")
  29670. },
  29671. ]
  29672. ))
  29673. characterMakers.push(() => makeCharacter(
  29674. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29675. {
  29676. front: {
  29677. height: math.unit(6, "feet"),
  29678. name: "Front",
  29679. image: {
  29680. source: "./media/characters/withers/front.svg",
  29681. extra: 1935/1760,
  29682. bottom: 72/2007
  29683. }
  29684. },
  29685. back: {
  29686. height: math.unit(6, "feet"),
  29687. name: "Back",
  29688. image: {
  29689. source: "./media/characters/withers/back.svg",
  29690. extra: 1944/1792,
  29691. bottom: 12/1956
  29692. }
  29693. },
  29694. dressed: {
  29695. height: math.unit(6, "feet"),
  29696. name: "Dressed",
  29697. image: {
  29698. source: "./media/characters/withers/dressed.svg",
  29699. extra: 1937/1765,
  29700. bottom: 73/2010
  29701. }
  29702. },
  29703. phase1: {
  29704. height: math.unit(1.1, "feet"),
  29705. name: "Phase 1",
  29706. image: {
  29707. source: "./media/characters/withers/phase-1.svg",
  29708. extra: 1885/1232,
  29709. bottom: 0/1885
  29710. }
  29711. },
  29712. phase2: {
  29713. height: math.unit(1.05, "feet"),
  29714. name: "Phase 2",
  29715. image: {
  29716. source: "./media/characters/withers/phase-2.svg",
  29717. extra: 1792/1090,
  29718. bottom: 0/1792
  29719. }
  29720. },
  29721. partyWipe: {
  29722. height: math.unit(1.1, "feet"),
  29723. name: "Party Wipe",
  29724. image: {
  29725. source: "./media/characters/withers/party-wipe.svg",
  29726. extra: 1864/1207,
  29727. bottom: 0/1864
  29728. }
  29729. },
  29730. },
  29731. [
  29732. {
  29733. name: "Macro",
  29734. height: math.unit(167, "feet"),
  29735. default: true
  29736. },
  29737. {
  29738. name: "Megamacro",
  29739. height: math.unit(15, "miles")
  29740. }
  29741. ]
  29742. ))
  29743. characterMakers.push(() => makeCharacter(
  29744. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29745. {
  29746. front: {
  29747. height: math.unit(6 + 7 / 12, "feet"),
  29748. weight: math.unit(250, "lb"),
  29749. name: "Front",
  29750. image: {
  29751. source: "./media/characters/nemoskii/front.svg",
  29752. extra: 2270 / 1734,
  29753. bottom: 86 / 2354
  29754. }
  29755. },
  29756. back: {
  29757. height: math.unit(6 + 7 / 12, "feet"),
  29758. weight: math.unit(250, "lb"),
  29759. name: "Back",
  29760. image: {
  29761. source: "./media/characters/nemoskii/back.svg",
  29762. extra: 1845 / 1788,
  29763. bottom: 10.5 / 1852
  29764. }
  29765. },
  29766. head: {
  29767. height: math.unit(1.31, "feet"),
  29768. name: "Head",
  29769. image: {
  29770. source: "./media/characters/nemoskii/head.svg"
  29771. }
  29772. },
  29773. },
  29774. [
  29775. {
  29776. name: "Micro",
  29777. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29778. },
  29779. {
  29780. name: "Normal",
  29781. height: math.unit(6 + 7 / 12, "feet"),
  29782. default: true
  29783. },
  29784. {
  29785. name: "Macro",
  29786. height: math.unit((6 + 7 / 12) * 150, "feet")
  29787. },
  29788. {
  29789. name: "Macro+",
  29790. height: math.unit((6 + 7 / 12) * 500, "feet")
  29791. },
  29792. {
  29793. name: "Megamacro",
  29794. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(1, "mile"),
  29803. weight: math.unit(265261.9, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/shui/front.svg",
  29807. extra: 1633 / 1564,
  29808. bottom: 91.5 / 1726
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Macro",
  29815. height: math.unit(1, "mile"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(12 + 6 / 12, "feet"),
  29825. weight: math.unit(1342, "lb"),
  29826. name: "Front",
  29827. image: {
  29828. source: "./media/characters/arokh-takakura/front.svg",
  29829. extra: 1089 / 1043,
  29830. bottom: 77.4 / 1176.7
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(12 + 6 / 12, "feet"),
  29835. weight: math.unit(1342, "lb"),
  29836. name: "Back",
  29837. image: {
  29838. source: "./media/characters/arokh-takakura/back.svg",
  29839. extra: 1046 / 1019,
  29840. bottom: 102 / 1150
  29841. }
  29842. },
  29843. },
  29844. [
  29845. {
  29846. name: "Big",
  29847. height: math.unit(12 + 6 / 12, "feet"),
  29848. default: true
  29849. },
  29850. ]
  29851. ))
  29852. characterMakers.push(() => makeCharacter(
  29853. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29854. {
  29855. front: {
  29856. height: math.unit(5 + 6 / 12, "feet"),
  29857. weight: math.unit(150, "lb"),
  29858. name: "Front",
  29859. image: {
  29860. source: "./media/characters/theo/front.svg",
  29861. extra: 1184 / 1131,
  29862. bottom: 7.4 / 1191
  29863. }
  29864. },
  29865. },
  29866. [
  29867. {
  29868. name: "Micro",
  29869. height: math.unit(5, "inches")
  29870. },
  29871. {
  29872. name: "Normal",
  29873. height: math.unit(5 + 6 / 12, "feet"),
  29874. default: true
  29875. },
  29876. ]
  29877. ))
  29878. characterMakers.push(() => makeCharacter(
  29879. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29880. {
  29881. front: {
  29882. height: math.unit(5 + 9 / 12, "feet"),
  29883. weight: math.unit(130, "lb"),
  29884. name: "Front",
  29885. image: {
  29886. source: "./media/characters/cecelia-swift/front.svg",
  29887. extra: 502 / 484,
  29888. bottom: 23 / 523
  29889. }
  29890. },
  29891. back: {
  29892. height: math.unit(5 + 9 / 12, "feet"),
  29893. weight: math.unit(130, "lb"),
  29894. name: "Back",
  29895. image: {
  29896. source: "./media/characters/cecelia-swift/back.svg",
  29897. extra: 499 / 485,
  29898. bottom: 12 / 511
  29899. }
  29900. },
  29901. head: {
  29902. height: math.unit(0.90, "feet"),
  29903. name: "Head",
  29904. image: {
  29905. source: "./media/characters/cecelia-swift/head.svg"
  29906. }
  29907. },
  29908. rump: {
  29909. height: math.unit(1.75, "feet"),
  29910. name: "Rump",
  29911. image: {
  29912. source: "./media/characters/cecelia-swift/rump.svg"
  29913. }
  29914. },
  29915. },
  29916. [
  29917. {
  29918. name: "Normal",
  29919. height: math.unit(5 + 9 / 12, "feet"),
  29920. default: true
  29921. },
  29922. {
  29923. name: "Big",
  29924. height: math.unit(50, "feet")
  29925. },
  29926. {
  29927. name: "Macro",
  29928. height: math.unit(100, "feet")
  29929. },
  29930. {
  29931. name: "Macro+",
  29932. height: math.unit(500, "feet")
  29933. },
  29934. {
  29935. name: "Macro++",
  29936. height: math.unit(1000, "feet")
  29937. },
  29938. ]
  29939. ))
  29940. characterMakers.push(() => makeCharacter(
  29941. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29942. {
  29943. front: {
  29944. height: math.unit(6, "feet"),
  29945. weight: math.unit(150, "lb"),
  29946. name: "Front",
  29947. image: {
  29948. source: "./media/characters/kaunan/front.svg",
  29949. extra: 2890 / 2523,
  29950. bottom: 49 / 2939
  29951. }
  29952. },
  29953. },
  29954. [
  29955. {
  29956. name: "Macro",
  29957. height: math.unit(150, "feet"),
  29958. default: true
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29964. {
  29965. dressed: {
  29966. height: math.unit(175, "cm"),
  29967. weight: math.unit(60, "kg"),
  29968. name: "Dressed",
  29969. image: {
  29970. source: "./media/characters/fei/dressed.svg",
  29971. extra: 1402/1278,
  29972. bottom: 27/1429
  29973. }
  29974. },
  29975. nude: {
  29976. height: math.unit(175, "cm"),
  29977. weight: math.unit(60, "kg"),
  29978. name: "Nude",
  29979. image: {
  29980. source: "./media/characters/fei/nude.svg",
  29981. extra: 1402/1278,
  29982. bottom: 27/1429
  29983. }
  29984. },
  29985. heels: {
  29986. height: math.unit(0.466, "feet"),
  29987. name: "Heels",
  29988. image: {
  29989. source: "./media/characters/fei/heels.svg",
  29990. extra: 156/152,
  29991. bottom: 28/184
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Mortal",
  29998. height: math.unit(175, "cm")
  29999. },
  30000. {
  30001. name: "Normal",
  30002. height: math.unit(3500, "m")
  30003. },
  30004. {
  30005. name: "Stroll",
  30006. height: math.unit(18.4, "km"),
  30007. default: true
  30008. },
  30009. {
  30010. name: "Showoff",
  30011. height: math.unit(175, "km")
  30012. },
  30013. ]
  30014. ))
  30015. characterMakers.push(() => makeCharacter(
  30016. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30017. {
  30018. front: {
  30019. height: math.unit(7, "feet"),
  30020. weight: math.unit(1000, "kg"),
  30021. name: "Front",
  30022. image: {
  30023. source: "./media/characters/edrax/front.svg",
  30024. extra: 2838 / 2550,
  30025. bottom: 130 / 2968
  30026. }
  30027. },
  30028. },
  30029. [
  30030. {
  30031. name: "Small",
  30032. height: math.unit(7, "feet")
  30033. },
  30034. {
  30035. name: "Normal",
  30036. height: math.unit(1500, "meters")
  30037. },
  30038. {
  30039. name: "Mega",
  30040. height: math.unit(12000000, "km"),
  30041. default: true
  30042. },
  30043. {
  30044. name: "Megamacro",
  30045. height: math.unit(10600000, "lightyears")
  30046. },
  30047. {
  30048. name: "Hypermacro",
  30049. height: math.unit(256, "yottameters")
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30055. {
  30056. front: {
  30057. height: math.unit(10, "feet"),
  30058. weight: math.unit(750, "lb"),
  30059. name: "Front",
  30060. image: {
  30061. source: "./media/characters/clove/front.svg",
  30062. extra: 1918/1751,
  30063. bottom: 52/1970
  30064. }
  30065. },
  30066. back: {
  30067. height: math.unit(10, "feet"),
  30068. weight: math.unit(750, "lb"),
  30069. name: "Back",
  30070. image: {
  30071. source: "./media/characters/clove/back.svg",
  30072. extra: 1912/1747,
  30073. bottom: 50/1962
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(10, "feet"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(4, "feet"),
  30090. weight: math.unit(50, "lb"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/alex-rabbit/front.svg",
  30094. extra: 507 / 458,
  30095. bottom: 18.5 / 527
  30096. }
  30097. },
  30098. back: {
  30099. height: math.unit(4, "feet"),
  30100. weight: math.unit(50, "lb"),
  30101. name: "Back",
  30102. image: {
  30103. source: "./media/characters/alex-rabbit/back.svg",
  30104. extra: 502 / 460,
  30105. bottom: 18.9 / 521
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Normal",
  30112. height: math.unit(4, "feet"),
  30113. default: true
  30114. },
  30115. ]
  30116. ))
  30117. characterMakers.push(() => makeCharacter(
  30118. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30119. {
  30120. front: {
  30121. height: math.unit(1 + 3 / 12, "feet"),
  30122. weight: math.unit(80, "lb"),
  30123. name: "Front",
  30124. image: {
  30125. source: "./media/characters/zander-rose/front.svg",
  30126. extra: 916 / 797,
  30127. bottom: 17 / 933
  30128. }
  30129. },
  30130. back: {
  30131. height: math.unit(1 + 3 / 12, "feet"),
  30132. weight: math.unit(80, "lb"),
  30133. name: "Back",
  30134. image: {
  30135. source: "./media/characters/zander-rose/back.svg",
  30136. extra: 903 / 779,
  30137. bottom: 31 / 934
  30138. }
  30139. },
  30140. },
  30141. [
  30142. {
  30143. name: "Normal",
  30144. height: math.unit(1 + 3 / 12, "feet"),
  30145. default: true
  30146. },
  30147. ]
  30148. ))
  30149. characterMakers.push(() => makeCharacter(
  30150. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30151. {
  30152. anthro: {
  30153. height: math.unit(6, "feet"),
  30154. weight: math.unit(150, "lb"),
  30155. name: "Anthro",
  30156. image: {
  30157. source: "./media/characters/razz/anthro.svg",
  30158. extra: 1437 / 1343,
  30159. bottom: 48 / 1485
  30160. }
  30161. },
  30162. feral: {
  30163. height: math.unit(6, "feet"),
  30164. weight: math.unit(150, "lb"),
  30165. name: "Feral",
  30166. image: {
  30167. source: "./media/characters/razz/feral.svg",
  30168. extra: 2569 / 1385,
  30169. bottom: 95 / 2664
  30170. }
  30171. },
  30172. },
  30173. [
  30174. {
  30175. name: "Normal",
  30176. height: math.unit(6, "feet"),
  30177. default: true
  30178. },
  30179. ]
  30180. ))
  30181. characterMakers.push(() => makeCharacter(
  30182. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30183. {
  30184. front: {
  30185. height: math.unit(9 + 4 / 12, "feet"),
  30186. weight: math.unit(500, "lb"),
  30187. name: "Front",
  30188. image: {
  30189. source: "./media/characters/morrigan/front.svg",
  30190. extra: 2707 / 2579,
  30191. bottom: 156 / 2863
  30192. }
  30193. },
  30194. },
  30195. [
  30196. {
  30197. name: "Normal",
  30198. height: math.unit(9 + 4 / 12, "feet"),
  30199. default: true
  30200. },
  30201. ]
  30202. ))
  30203. characterMakers.push(() => makeCharacter(
  30204. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30205. {
  30206. front: {
  30207. height: math.unit(5, "stories"),
  30208. weight: math.unit(4000, "lb"),
  30209. name: "Front",
  30210. image: {
  30211. source: "./media/characters/jenene/front.svg",
  30212. extra: 1780 / 1710,
  30213. bottom: 57 / 1837
  30214. }
  30215. },
  30216. },
  30217. [
  30218. {
  30219. name: "Normal",
  30220. height: math.unit(5, "stories"),
  30221. default: true
  30222. },
  30223. ]
  30224. ))
  30225. characterMakers.push(() => makeCharacter(
  30226. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30227. {
  30228. taurSfw: {
  30229. height: math.unit(10, "meters"),
  30230. weight: math.unit(17500, "kg"),
  30231. name: "Taur",
  30232. image: {
  30233. source: "./media/characters/faey/taur-sfw.svg",
  30234. extra: 1200 / 968,
  30235. bottom: 41 / 1241
  30236. }
  30237. },
  30238. chestmaw: {
  30239. height: math.unit(2.01, "meters"),
  30240. name: "Chestmaw",
  30241. image: {
  30242. source: "./media/characters/faey/chestmaw.svg"
  30243. }
  30244. },
  30245. foot: {
  30246. height: math.unit(2.43, "meters"),
  30247. name: "Foot",
  30248. image: {
  30249. source: "./media/characters/faey/foot.svg"
  30250. }
  30251. },
  30252. jaws: {
  30253. height: math.unit(1.66, "meters"),
  30254. name: "Jaws",
  30255. image: {
  30256. source: "./media/characters/faey/jaws.svg"
  30257. }
  30258. },
  30259. tongues: {
  30260. height: math.unit(2.01, "meters"),
  30261. name: "Tongues",
  30262. image: {
  30263. source: "./media/characters/faey/tongues.svg"
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Small",
  30270. height: math.unit(10, "meters"),
  30271. default: true
  30272. },
  30273. {
  30274. name: "Big",
  30275. height: math.unit(500000, "km")
  30276. },
  30277. ]
  30278. ))
  30279. characterMakers.push(() => makeCharacter(
  30280. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30281. {
  30282. front: {
  30283. height: math.unit(7, "feet"),
  30284. weight: math.unit(275, "lb"),
  30285. name: "Front",
  30286. image: {
  30287. source: "./media/characters/roku/front.svg",
  30288. extra: 903 / 878,
  30289. bottom: 37 / 940
  30290. }
  30291. },
  30292. },
  30293. [
  30294. {
  30295. name: "Normal",
  30296. height: math.unit(7, "feet"),
  30297. default: true
  30298. },
  30299. {
  30300. name: "Macro",
  30301. height: math.unit(500, "feet")
  30302. },
  30303. {
  30304. name: "Megamacro",
  30305. height: math.unit(200, "miles")
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(6 + 2 / 12, "feet"),
  30314. weight: math.unit(150, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/lira/front.svg",
  30318. extra: 1727 / 1605,
  30319. bottom: 26 / 1753
  30320. }
  30321. },
  30322. back: {
  30323. height: math.unit(6 + 2 / 12, "feet"),
  30324. weight: math.unit(150, "lb"),
  30325. name: "Back",
  30326. image: {
  30327. source: "./media/characters/lira/back.svg",
  30328. extra: 1713/1621,
  30329. bottom: 20/1733
  30330. }
  30331. },
  30332. hand: {
  30333. height: math.unit(0.75, "feet"),
  30334. name: "Hand",
  30335. image: {
  30336. source: "./media/characters/lira/hand.svg"
  30337. }
  30338. },
  30339. maw: {
  30340. height: math.unit(0.65, "feet"),
  30341. name: "Maw",
  30342. image: {
  30343. source: "./media/characters/lira/maw.svg"
  30344. }
  30345. },
  30346. pawDigi: {
  30347. height: math.unit(1.6, "feet"),
  30348. name: "Paw Digi",
  30349. image: {
  30350. source: "./media/characters/lira/paw-digi.svg"
  30351. }
  30352. },
  30353. pawPlanti: {
  30354. height: math.unit(1.4, "feet"),
  30355. name: "Paw Planti",
  30356. image: {
  30357. source: "./media/characters/lira/paw-planti.svg"
  30358. }
  30359. },
  30360. },
  30361. [
  30362. {
  30363. name: "Normal",
  30364. height: math.unit(6 + 2 / 12, "feet"),
  30365. default: true
  30366. },
  30367. {
  30368. name: "Macro",
  30369. height: math.unit(100, "feet")
  30370. },
  30371. {
  30372. name: "Macro²",
  30373. height: math.unit(1600, "feet")
  30374. },
  30375. {
  30376. name: "Planetary",
  30377. height: math.unit(20, "earths")
  30378. },
  30379. ]
  30380. ))
  30381. characterMakers.push(() => makeCharacter(
  30382. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30383. {
  30384. front: {
  30385. height: math.unit(6, "feet"),
  30386. weight: math.unit(150, "lb"),
  30387. name: "Front",
  30388. image: {
  30389. source: "./media/characters/hadjet/front.svg",
  30390. extra: 1480 / 1346,
  30391. bottom: 26 / 1506
  30392. }
  30393. },
  30394. frontNsfw: {
  30395. height: math.unit(6, "feet"),
  30396. weight: math.unit(150, "lb"),
  30397. name: "Front (NSFW)",
  30398. image: {
  30399. source: "./media/characters/hadjet/front-nsfw.svg",
  30400. extra: 1440 / 1358,
  30401. bottom: 52 / 1492
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Macro",
  30408. height: math.unit(10, "stories"),
  30409. default: true
  30410. },
  30411. {
  30412. name: "Megamacro",
  30413. height: math.unit(1.5, "miles")
  30414. },
  30415. {
  30416. name: "Megamacro+",
  30417. height: math.unit(5, "miles")
  30418. },
  30419. ]
  30420. ))
  30421. characterMakers.push(() => makeCharacter(
  30422. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30423. {
  30424. side: {
  30425. height: math.unit(106, "feet"),
  30426. weight: math.unit(500, "tonnes"),
  30427. name: "Side",
  30428. image: {
  30429. source: "./media/characters/kodran/side.svg",
  30430. extra: 553 / 480,
  30431. bottom: 33 / 586
  30432. }
  30433. },
  30434. front: {
  30435. height: math.unit(132, "feet"),
  30436. weight: math.unit(500, "tonnes"),
  30437. name: "Front",
  30438. image: {
  30439. source: "./media/characters/kodran/front.svg",
  30440. extra: 667 / 643,
  30441. bottom: 42 / 709
  30442. }
  30443. },
  30444. flying: {
  30445. height: math.unit(350, "feet"),
  30446. weight: math.unit(500, "tonnes"),
  30447. name: "Flying",
  30448. image: {
  30449. source: "./media/characters/kodran/flying.svg"
  30450. }
  30451. },
  30452. foot: {
  30453. height: math.unit(33, "feet"),
  30454. name: "Foot",
  30455. image: {
  30456. source: "./media/characters/kodran/foot.svg"
  30457. }
  30458. },
  30459. footFront: {
  30460. height: math.unit(19, "feet"),
  30461. name: "Foot (Front)",
  30462. image: {
  30463. source: "./media/characters/kodran/foot-front.svg",
  30464. extra: 261 / 261,
  30465. bottom: 91 / 352
  30466. }
  30467. },
  30468. headFront: {
  30469. height: math.unit(53, "feet"),
  30470. name: "Head (Front)",
  30471. image: {
  30472. source: "./media/characters/kodran/head-front.svg"
  30473. }
  30474. },
  30475. headSide: {
  30476. height: math.unit(65, "feet"),
  30477. name: "Head (Side)",
  30478. image: {
  30479. source: "./media/characters/kodran/head-side.svg"
  30480. }
  30481. },
  30482. throat: {
  30483. height: math.unit(79, "feet"),
  30484. name: "Throat",
  30485. image: {
  30486. source: "./media/characters/kodran/throat.svg"
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Large",
  30493. height: math.unit(106, "feet"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30500. {
  30501. side: {
  30502. height: math.unit(11, "feet"),
  30503. weight: math.unit(150, "lb"),
  30504. name: "Side",
  30505. image: {
  30506. source: "./media/characters/pyxaron/side.svg",
  30507. extra: 305 / 195,
  30508. bottom: 17 / 322
  30509. }
  30510. },
  30511. },
  30512. [
  30513. {
  30514. name: "Normal",
  30515. height: math.unit(11, "feet"),
  30516. default: true
  30517. },
  30518. ]
  30519. ))
  30520. characterMakers.push(() => makeCharacter(
  30521. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30522. {
  30523. front: {
  30524. height: math.unit(6, "feet"),
  30525. weight: math.unit(150, "lb"),
  30526. name: "Front",
  30527. image: {
  30528. source: "./media/characters/meep/front.svg",
  30529. extra: 88 / 80,
  30530. bottom: 6 / 94
  30531. }
  30532. },
  30533. },
  30534. [
  30535. {
  30536. name: "Fun Sized",
  30537. height: math.unit(2, "inches"),
  30538. default: true
  30539. },
  30540. {
  30541. name: "Friend Sized",
  30542. height: math.unit(8, "inches")
  30543. },
  30544. ]
  30545. ))
  30546. characterMakers.push(() => makeCharacter(
  30547. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30548. {
  30549. front: {
  30550. height: math.unit(15, "feet"),
  30551. weight: math.unit(2500, "lb"),
  30552. name: "Front",
  30553. image: {
  30554. source: "./media/characters/holly-rabbit/front.svg",
  30555. extra: 1433 / 1233,
  30556. bottom: 125 / 1558
  30557. }
  30558. },
  30559. dick: {
  30560. height: math.unit(4.6, "feet"),
  30561. name: "Dick",
  30562. image: {
  30563. source: "./media/characters/holly-rabbit/dick.svg"
  30564. }
  30565. },
  30566. },
  30567. [
  30568. {
  30569. name: "Normal",
  30570. height: math.unit(15, "feet"),
  30571. default: true
  30572. },
  30573. {
  30574. name: "Macro",
  30575. height: math.unit(250, "feet")
  30576. },
  30577. {
  30578. name: "Macro+",
  30579. height: math.unit(2500, "feet")
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30585. {
  30586. front: {
  30587. height: math.unit(3.02, "meters"),
  30588. weight: math.unit(500, "kg"),
  30589. name: "Front",
  30590. image: {
  30591. source: "./media/characters/drena/front.svg",
  30592. extra: 282 / 243,
  30593. bottom: 8 / 290
  30594. }
  30595. },
  30596. side: {
  30597. height: math.unit(3.02, "meters"),
  30598. weight: math.unit(500, "kg"),
  30599. name: "Side",
  30600. image: {
  30601. source: "./media/characters/drena/side.svg",
  30602. extra: 280 / 245,
  30603. bottom: 10 / 290
  30604. }
  30605. },
  30606. back: {
  30607. height: math.unit(3.02, "meters"),
  30608. weight: math.unit(500, "kg"),
  30609. name: "Back",
  30610. image: {
  30611. source: "./media/characters/drena/back.svg",
  30612. extra: 278 / 243,
  30613. bottom: 2 / 280
  30614. }
  30615. },
  30616. foot: {
  30617. height: math.unit(0.75, "meters"),
  30618. name: "Foot",
  30619. image: {
  30620. source: "./media/characters/drena/foot.svg"
  30621. }
  30622. },
  30623. maw: {
  30624. height: math.unit(0.82, "meters"),
  30625. name: "Maw",
  30626. image: {
  30627. source: "./media/characters/drena/maw.svg"
  30628. }
  30629. },
  30630. eating: {
  30631. height: math.unit(0.75, "meters"),
  30632. name: "Eating",
  30633. image: {
  30634. source: "./media/characters/drena/eating.svg"
  30635. }
  30636. },
  30637. rump: {
  30638. height: math.unit(0.93, "meters"),
  30639. name: "Rump",
  30640. image: {
  30641. source: "./media/characters/drena/rump.svg"
  30642. }
  30643. },
  30644. },
  30645. [
  30646. {
  30647. name: "Normal",
  30648. height: math.unit(3.02, "meters"),
  30649. default: true
  30650. },
  30651. ]
  30652. ))
  30653. characterMakers.push(() => makeCharacter(
  30654. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30655. {
  30656. front: {
  30657. height: math.unit(6 + 4 / 12, "feet"),
  30658. weight: math.unit(250, "lb"),
  30659. name: "Front",
  30660. image: {
  30661. source: "./media/characters/remmyzilla/front.svg",
  30662. extra: 4033 / 3588,
  30663. bottom: 123 / 4156
  30664. }
  30665. },
  30666. back: {
  30667. height: math.unit(6 + 4 / 12, "feet"),
  30668. weight: math.unit(250, "lb"),
  30669. name: "Back",
  30670. image: {
  30671. source: "./media/characters/remmyzilla/back.svg",
  30672. extra: 2687 / 2555,
  30673. bottom: 48 / 2735
  30674. }
  30675. },
  30676. paw: {
  30677. height: math.unit(1.73, "feet"),
  30678. name: "Paw",
  30679. image: {
  30680. source: "./media/characters/remmyzilla/paw.svg"
  30681. },
  30682. extraAttributes: {
  30683. "toeSize": {
  30684. name: "Toe Size",
  30685. power: 2,
  30686. type: "area",
  30687. base: math.unit(0.0035, "m^2")
  30688. },
  30689. "padSize": {
  30690. name: "Pad Size",
  30691. power: 2,
  30692. type: "area",
  30693. base: math.unit(0.015, "m^2")
  30694. },
  30695. "pawsize": {
  30696. name: "Paw Size",
  30697. power: 2,
  30698. type: "area",
  30699. base: math.unit(0.072, "m^2")
  30700. },
  30701. }
  30702. },
  30703. maw: {
  30704. height: math.unit(1.73, "feet"),
  30705. name: "Maw",
  30706. image: {
  30707. source: "./media/characters/remmyzilla/maw.svg"
  30708. }
  30709. },
  30710. },
  30711. [
  30712. {
  30713. name: "Normal",
  30714. height: math.unit(6 + 4 / 12, "feet")
  30715. },
  30716. {
  30717. name: "Minimacro",
  30718. height: math.unit(12 + 8 / 12, "feet")
  30719. },
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(640, "feet"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Megamacro",
  30727. height: math.unit(6400, "feet")
  30728. },
  30729. {
  30730. name: "Gigamacro",
  30731. height: math.unit(64000, "miles")
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30737. {
  30738. front: {
  30739. height: math.unit(2.5, "meters"),
  30740. weight: math.unit(300, "lb"),
  30741. name: "Front",
  30742. image: {
  30743. source: "./media/characters/lawrence/front.svg",
  30744. extra: 357 / 335,
  30745. bottom: 30 / 387
  30746. }
  30747. },
  30748. back: {
  30749. height: math.unit(2.5, "meters"),
  30750. weight: math.unit(300, "lb"),
  30751. name: "Back",
  30752. image: {
  30753. source: "./media/characters/lawrence/back.svg",
  30754. extra: 357 / 338,
  30755. bottom: 16 / 373
  30756. }
  30757. },
  30758. head: {
  30759. height: math.unit(0.9, "meter"),
  30760. name: "Head",
  30761. image: {
  30762. source: "./media/characters/lawrence/head.svg"
  30763. }
  30764. },
  30765. maw: {
  30766. height: math.unit(0.7, "meter"),
  30767. name: "Maw",
  30768. image: {
  30769. source: "./media/characters/lawrence/maw.svg"
  30770. }
  30771. },
  30772. footBottom: {
  30773. height: math.unit(0.5, "meter"),
  30774. name: "Foot (Bottom)",
  30775. image: {
  30776. source: "./media/characters/lawrence/foot-bottom.svg"
  30777. }
  30778. },
  30779. footTop: {
  30780. height: math.unit(0.5, "meter"),
  30781. name: "Foot (Top)",
  30782. image: {
  30783. source: "./media/characters/lawrence/foot-top.svg"
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Normal",
  30790. height: math.unit(2.5, "meters"),
  30791. default: true
  30792. },
  30793. {
  30794. name: "Macro",
  30795. height: math.unit(95, "meters")
  30796. },
  30797. {
  30798. name: "Megamacro",
  30799. height: math.unit(150, "km")
  30800. },
  30801. ]
  30802. ))
  30803. characterMakers.push(() => makeCharacter(
  30804. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30805. {
  30806. front: {
  30807. height: math.unit(4.2, "meters"),
  30808. preyCapacity: math.unit(50, "m^3"),
  30809. weight: math.unit(30, "tonnes"),
  30810. name: "Front",
  30811. image: {
  30812. source: "./media/characters/sydney/front.svg",
  30813. extra: 1177/1129,
  30814. bottom: 197/1374
  30815. },
  30816. extraAttributes: {
  30817. "length": {
  30818. name: "Length",
  30819. power: 1,
  30820. type: "length",
  30821. base: math.unit(21, "meters")
  30822. },
  30823. }
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Normal",
  30829. height: math.unit(4.2, "meters"),
  30830. default: true
  30831. },
  30832. ]
  30833. ))
  30834. characterMakers.push(() => makeCharacter(
  30835. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30836. {
  30837. back: {
  30838. height: math.unit(201, "feet"),
  30839. name: "Back",
  30840. image: {
  30841. source: "./media/characters/jessica/back.svg",
  30842. extra: 273 / 259,
  30843. bottom: 7 / 280
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Normal",
  30850. height: math.unit(201, "feet"),
  30851. default: true
  30852. },
  30853. {
  30854. name: "Megamacro",
  30855. height: math.unit(8, "miles")
  30856. },
  30857. ]
  30858. ))
  30859. characterMakers.push(() => makeCharacter(
  30860. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30861. {
  30862. side: {
  30863. height: math.unit(5.6, "m"),
  30864. weight: math.unit(8000, "kg"),
  30865. name: "Side",
  30866. image: {
  30867. source: "./media/characters/victoria/side.svg",
  30868. extra: 1542/1229,
  30869. bottom: 124/1666
  30870. }
  30871. },
  30872. maw: {
  30873. height: math.unit(7.14, "feet"),
  30874. name: "Maw",
  30875. image: {
  30876. source: "./media/characters/victoria/maw.svg"
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(5.6, "m"),
  30884. default: true
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30890. {
  30891. front: {
  30892. height: math.unit(5 + 6 / 12, "feet"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/cat/front.svg",
  30896. extra: 1449/1295,
  30897. bottom: 34/1483
  30898. },
  30899. form: "cat",
  30900. default: true
  30901. },
  30902. back: {
  30903. height: math.unit(5 + 6 / 12, "feet"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/cat/back.svg",
  30907. extra: 1466/1301,
  30908. bottom: 19/1485
  30909. },
  30910. form: "cat"
  30911. },
  30912. taur: {
  30913. height: math.unit(7, "feet"),
  30914. name: "Taur",
  30915. image: {
  30916. source: "./media/characters/cat/taur.svg",
  30917. extra: 1389/1233,
  30918. bottom: 83/1472
  30919. },
  30920. form: "taur",
  30921. default: true
  30922. },
  30923. lucarioFront: {
  30924. height: math.unit(4, "feet"),
  30925. name: "Lucario (Front)",
  30926. image: {
  30927. source: "./media/characters/cat/lucario-front.svg",
  30928. extra: 1149/1019,
  30929. bottom: 84/1233
  30930. },
  30931. form: "lucario",
  30932. default: true
  30933. },
  30934. lucarioBack: {
  30935. height: math.unit(4, "feet"),
  30936. name: "Lucario (Back)",
  30937. image: {
  30938. source: "./media/characters/cat/lucario-back.svg",
  30939. extra: 1190/1059,
  30940. bottom: 33/1223
  30941. },
  30942. form: "lucario"
  30943. },
  30944. megaLucario: {
  30945. height: math.unit(4, "feet"),
  30946. name: "Mega Lucario",
  30947. image: {
  30948. source: "./media/characters/cat/mega-lucario.svg",
  30949. extra: 1515 / 1319,
  30950. bottom: 63 / 1578
  30951. },
  30952. form: "lucario"
  30953. },
  30954. nickit: {
  30955. height: math.unit(2, "feet"),
  30956. name: "Nickit",
  30957. image: {
  30958. source: "./media/characters/cat/nickit.svg",
  30959. extra: 1980 / 1585,
  30960. bottom: 102 / 2082
  30961. },
  30962. form: "nickit",
  30963. default: true
  30964. },
  30965. lopunnyFront: {
  30966. height: math.unit(5, "feet"),
  30967. name: "Lopunny (Front)",
  30968. image: {
  30969. source: "./media/characters/cat/lopunny-front.svg",
  30970. extra: 1782 / 1469,
  30971. bottom: 38 / 1820
  30972. },
  30973. form: "lopunny",
  30974. default: true
  30975. },
  30976. lopunnyBack: {
  30977. height: math.unit(5, "feet"),
  30978. name: "Lopunny (Back)",
  30979. image: {
  30980. source: "./media/characters/cat/lopunny-back.svg",
  30981. extra: 1660 / 1490,
  30982. bottom: 25 / 1685
  30983. },
  30984. form: "lopunny"
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Really small",
  30990. height: math.unit(1, "nm")
  30991. },
  30992. {
  30993. name: "Micro",
  30994. height: math.unit(5, "inches")
  30995. },
  30996. {
  30997. name: "Normal",
  30998. height: math.unit(5 + 6 / 12, "feet"),
  30999. default: true
  31000. },
  31001. {
  31002. name: "Macro",
  31003. height: math.unit(50, "feet")
  31004. },
  31005. {
  31006. name: "Macro+",
  31007. height: math.unit(150, "feet")
  31008. },
  31009. {
  31010. name: "Megamacro",
  31011. height: math.unit(100, "miles")
  31012. },
  31013. ]
  31014. ))
  31015. characterMakers.push(() => makeCharacter(
  31016. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31017. {
  31018. front: {
  31019. height: math.unit(63.4, "meters"),
  31020. weight: math.unit(3.28349e+6, "kilograms"),
  31021. name: "Front",
  31022. image: {
  31023. source: "./media/characters/kirina-violet/front.svg",
  31024. extra: 2812 / 2725,
  31025. bottom: 0 / 2812
  31026. }
  31027. },
  31028. back: {
  31029. height: math.unit(63.4, "meters"),
  31030. weight: math.unit(3.28349e+6, "kilograms"),
  31031. name: "Back",
  31032. image: {
  31033. source: "./media/characters/kirina-violet/back.svg",
  31034. extra: 2812 / 2725,
  31035. bottom: 0 / 2812
  31036. }
  31037. },
  31038. mouth: {
  31039. height: math.unit(4.35, "meters"),
  31040. name: "Mouth",
  31041. image: {
  31042. source: "./media/characters/kirina-violet/mouth.svg"
  31043. }
  31044. },
  31045. paw: {
  31046. height: math.unit(5.6, "meters"),
  31047. name: "Paw",
  31048. image: {
  31049. source: "./media/characters/kirina-violet/paw.svg"
  31050. }
  31051. },
  31052. tail: {
  31053. height: math.unit(18, "meters"),
  31054. name: "Tail",
  31055. image: {
  31056. source: "./media/characters/kirina-violet/tail.svg"
  31057. }
  31058. },
  31059. },
  31060. [
  31061. {
  31062. name: "Macro",
  31063. height: math.unit(63.4, "meters"),
  31064. default: true
  31065. },
  31066. ]
  31067. ))
  31068. characterMakers.push(() => makeCharacter(
  31069. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31070. {
  31071. front: {
  31072. height: math.unit(75, "feet"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/cat-gigachu/front.svg",
  31076. extra: 1239/1027,
  31077. bottom: 32/1271
  31078. }
  31079. },
  31080. back: {
  31081. height: math.unit(75, "feet"),
  31082. name: "Back",
  31083. image: {
  31084. source: "./media/characters/cat-gigachu/back.svg",
  31085. extra: 1229/1030,
  31086. bottom: 9/1238
  31087. }
  31088. },
  31089. },
  31090. [
  31091. {
  31092. name: "Dynamax",
  31093. height: math.unit(75, "feet"),
  31094. default: true
  31095. },
  31096. ]
  31097. ))
  31098. characterMakers.push(() => makeCharacter(
  31099. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31100. {
  31101. front: {
  31102. height: math.unit(6, "feet"),
  31103. weight: math.unit(150, "lb"),
  31104. name: "Front",
  31105. image: {
  31106. source: "./media/characters/sfaiyan/front.svg",
  31107. extra: 999 / 978,
  31108. bottom: 5 / 1004
  31109. }
  31110. },
  31111. },
  31112. [
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(1.82, "meters")
  31116. },
  31117. {
  31118. name: "Giant",
  31119. height: math.unit(2.27, "km"),
  31120. default: true
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(179, "cm"),
  31129. weight: math.unit(100, "kg"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/raunehkeli/front.svg",
  31133. extra: 1934 / 1926,
  31134. bottom: 0 / 1934
  31135. }
  31136. },
  31137. },
  31138. [
  31139. {
  31140. name: "Normal",
  31141. height: math.unit(179, "cm")
  31142. },
  31143. {
  31144. name: "Maximum",
  31145. height: math.unit(575, "meters"),
  31146. default: true
  31147. },
  31148. ]
  31149. ))
  31150. characterMakers.push(() => makeCharacter(
  31151. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31152. {
  31153. front: {
  31154. height: math.unit(6, "feet"),
  31155. weight: math.unit(150, "lb"),
  31156. name: "Front",
  31157. image: {
  31158. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31159. extra: 2625 / 2518,
  31160. bottom: 60 / 2685
  31161. }
  31162. },
  31163. },
  31164. [
  31165. {
  31166. name: "Normal",
  31167. height: math.unit(6 + 2 / 12, "feet")
  31168. },
  31169. {
  31170. name: "Macro",
  31171. height: math.unit(1180, "feet"),
  31172. default: true
  31173. },
  31174. ]
  31175. ))
  31176. characterMakers.push(() => makeCharacter(
  31177. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31178. {
  31179. front: {
  31180. height: math.unit(5 + 6 / 12, "feet"),
  31181. weight: math.unit(108, "lb"),
  31182. name: "Front",
  31183. image: {
  31184. source: "./media/characters/lilith-zott/front.svg",
  31185. extra: 2510 / 2238,
  31186. bottom: 100 / 2610
  31187. }
  31188. },
  31189. frontDressed: {
  31190. height: math.unit(5 + 6 / 12, "feet"),
  31191. weight: math.unit(108, "lb"),
  31192. name: "Front (Dressed)",
  31193. image: {
  31194. source: "./media/characters/lilith-zott/front-dressed.svg",
  31195. extra: 2510 / 2238,
  31196. bottom: 100 / 2610
  31197. }
  31198. },
  31199. },
  31200. [
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(5 + 6 / 12, "feet")
  31204. },
  31205. {
  31206. name: "Macro",
  31207. height: math.unit(1030, "feet"),
  31208. default: true
  31209. },
  31210. ]
  31211. ))
  31212. characterMakers.push(() => makeCharacter(
  31213. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31214. {
  31215. front: {
  31216. height: math.unit(6, "feet"),
  31217. weight: math.unit(150, "lb"),
  31218. name: "Front",
  31219. image: {
  31220. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31221. extra: 2567 / 2435,
  31222. bottom: 39 / 2606
  31223. }
  31224. },
  31225. frontSuper: {
  31226. height: math.unit(6, "feet"),
  31227. name: "Front (Super)",
  31228. image: {
  31229. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31230. extra: 2567 / 2435,
  31231. bottom: 39 / 2606
  31232. }
  31233. },
  31234. },
  31235. [
  31236. {
  31237. name: "Normal",
  31238. height: math.unit(5 + 10 / 12, "feet")
  31239. },
  31240. {
  31241. name: "Macro",
  31242. height: math.unit(1100, "feet"),
  31243. default: true
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31249. {
  31250. front: {
  31251. height: math.unit(100, "miles"),
  31252. name: "Front",
  31253. image: {
  31254. source: "./media/characters/sona/front.svg",
  31255. extra: 2433 / 2201,
  31256. bottom: 53 / 2486
  31257. }
  31258. },
  31259. foot: {
  31260. height: math.unit(16.1, "miles"),
  31261. name: "Foot",
  31262. image: {
  31263. source: "./media/characters/sona/foot.svg"
  31264. }
  31265. },
  31266. },
  31267. [
  31268. {
  31269. name: "Macro",
  31270. height: math.unit(100, "miles"),
  31271. default: true
  31272. },
  31273. ]
  31274. ))
  31275. characterMakers.push(() => makeCharacter(
  31276. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31277. {
  31278. front: {
  31279. height: math.unit(6, "feet"),
  31280. weight: math.unit(150, "lb"),
  31281. name: "Front",
  31282. image: {
  31283. source: "./media/characters/bailey/front.svg",
  31284. extra: 1778 / 1724,
  31285. bottom: 30 / 1808
  31286. }
  31287. },
  31288. },
  31289. [
  31290. {
  31291. name: "Micro",
  31292. height: math.unit(4, "inches")
  31293. },
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(5 + 5 / 12, "feet"),
  31297. default: true
  31298. },
  31299. {
  31300. name: "Macro",
  31301. height: math.unit(250, "feet")
  31302. },
  31303. {
  31304. name: "Megamacro",
  31305. height: math.unit(100, "miles")
  31306. },
  31307. ]
  31308. ))
  31309. characterMakers.push(() => makeCharacter(
  31310. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31311. {
  31312. front: {
  31313. height: math.unit(5 + 2 / 12, "feet"),
  31314. weight: math.unit(120, "lb"),
  31315. name: "Front",
  31316. image: {
  31317. source: "./media/characters/snaps/front.svg",
  31318. extra: 2370 / 2177,
  31319. bottom: 48 / 2418
  31320. }
  31321. },
  31322. back: {
  31323. height: math.unit(5 + 2 / 12, "feet"),
  31324. weight: math.unit(120, "lb"),
  31325. name: "Back",
  31326. image: {
  31327. source: "./media/characters/snaps/back.svg",
  31328. extra: 2408 / 2258,
  31329. bottom: 15 / 2423
  31330. }
  31331. },
  31332. },
  31333. [
  31334. {
  31335. name: "Micro",
  31336. height: math.unit(9, "inches")
  31337. },
  31338. {
  31339. name: "Normal",
  31340. height: math.unit(5 + 2 / 12, "feet"),
  31341. default: true
  31342. },
  31343. {
  31344. name: "Mini Macro",
  31345. height: math.unit(10, "feet")
  31346. },
  31347. ]
  31348. ))
  31349. characterMakers.push(() => makeCharacter(
  31350. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31351. {
  31352. front: {
  31353. height: math.unit(1.8, "meters"),
  31354. weight: math.unit(85, "kg"),
  31355. name: "Front",
  31356. image: {
  31357. source: "./media/characters/azteck/front.svg",
  31358. extra: 2815 / 2625,
  31359. bottom: 89 / 2904
  31360. }
  31361. },
  31362. back: {
  31363. height: math.unit(1.8, "meters"),
  31364. weight: math.unit(85, "kg"),
  31365. name: "Back",
  31366. image: {
  31367. source: "./media/characters/azteck/back.svg",
  31368. extra: 2856 / 2648,
  31369. bottom: 85 / 2941
  31370. }
  31371. },
  31372. frontDressed: {
  31373. height: math.unit(1.8, "meters"),
  31374. weight: math.unit(85, "kg"),
  31375. name: "Front (Dressed)",
  31376. image: {
  31377. source: "./media/characters/azteck/front-dressed.svg",
  31378. extra: 2147 / 2003,
  31379. bottom: 68 / 2215
  31380. }
  31381. },
  31382. head: {
  31383. height: math.unit(0.47, "meters"),
  31384. weight: math.unit(85, "kg"),
  31385. name: "Head",
  31386. image: {
  31387. source: "./media/characters/azteck/head.svg"
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Bite sized",
  31394. height: math.unit(16, "cm")
  31395. },
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(1.8, "meters"),
  31399. default: true
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31405. {
  31406. front: {
  31407. height: math.unit(6, "feet"),
  31408. weight: math.unit(150, "lb"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/pidge/front.svg",
  31412. extra: 1936/1820,
  31413. bottom: 0/1936
  31414. }
  31415. },
  31416. back: {
  31417. height: math.unit(6, "feet"),
  31418. weight: math.unit(150, "lb"),
  31419. name: "Back",
  31420. image: {
  31421. source: "./media/characters/pidge/back.svg",
  31422. extra: 1938/1843,
  31423. bottom: 0/1938
  31424. }
  31425. },
  31426. casual: {
  31427. height: math.unit(6, "feet"),
  31428. weight: math.unit(150, "lb"),
  31429. name: "Casual",
  31430. image: {
  31431. source: "./media/characters/pidge/casual.svg",
  31432. extra: 1936/1820,
  31433. bottom: 0/1936
  31434. }
  31435. },
  31436. tech: {
  31437. height: math.unit(6, "feet"),
  31438. weight: math.unit(150, "lb"),
  31439. name: "Tech",
  31440. image: {
  31441. source: "./media/characters/pidge/tech.svg",
  31442. extra: 1802/1682,
  31443. bottom: 0/1802
  31444. }
  31445. },
  31446. head: {
  31447. height: math.unit(1.61, "feet"),
  31448. name: "Head",
  31449. image: {
  31450. source: "./media/characters/pidge/head.svg"
  31451. }
  31452. },
  31453. collar: {
  31454. height: math.unit(0.82, "feet"),
  31455. name: "Collar",
  31456. image: {
  31457. source: "./media/characters/pidge/collar.svg"
  31458. }
  31459. },
  31460. },
  31461. [
  31462. {
  31463. name: "Macro",
  31464. height: math.unit(2, "mile"),
  31465. default: true
  31466. },
  31467. {
  31468. name: "PUPPY",
  31469. height: math.unit(20, "miles")
  31470. },
  31471. ]
  31472. ))
  31473. characterMakers.push(() => makeCharacter(
  31474. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31475. {
  31476. front: {
  31477. height: math.unit(6, "feet"),
  31478. weight: math.unit(150, "lb"),
  31479. name: "Front",
  31480. image: {
  31481. source: "./media/characters/en/front.svg",
  31482. extra: 1697 / 1563,
  31483. bottom: 103 / 1800
  31484. }
  31485. },
  31486. back: {
  31487. height: math.unit(6, "feet"),
  31488. weight: math.unit(150, "lb"),
  31489. name: "Back",
  31490. image: {
  31491. source: "./media/characters/en/back.svg",
  31492. extra: 1700 / 1570,
  31493. bottom: 51 / 1751
  31494. }
  31495. },
  31496. frontDressed: {
  31497. height: math.unit(6, "feet"),
  31498. weight: math.unit(150, "lb"),
  31499. name: "Front (Dressed)",
  31500. image: {
  31501. source: "./media/characters/en/front-dressed.svg",
  31502. extra: 1697 / 1563,
  31503. bottom: 103 / 1800
  31504. }
  31505. },
  31506. backDressed: {
  31507. height: math.unit(6, "feet"),
  31508. weight: math.unit(150, "lb"),
  31509. name: "Back (Dressed)",
  31510. image: {
  31511. source: "./media/characters/en/back-dressed.svg",
  31512. extra: 1700 / 1570,
  31513. bottom: 51 / 1751
  31514. }
  31515. },
  31516. },
  31517. [
  31518. {
  31519. name: "Macro",
  31520. height: math.unit(210, "feet"),
  31521. default: true
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(6, "feet"),
  31530. weight: math.unit(150, "lb"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/haze-orris/front.svg",
  31534. extra: 3975 / 3525,
  31535. bottom: 137 / 4112
  31536. }
  31537. },
  31538. },
  31539. [
  31540. {
  31541. name: "Micro",
  31542. height: math.unit(150, "mm"),
  31543. default: true
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31549. {
  31550. front: {
  31551. height: math.unit(6, "feet"),
  31552. weight: math.unit(150, "lb"),
  31553. name: "Front",
  31554. image: {
  31555. source: "./media/characters/casselene-yaro/front.svg",
  31556. extra: 4721 / 4541,
  31557. bottom: 82 / 4803
  31558. }
  31559. },
  31560. back: {
  31561. height: math.unit(6, "feet"),
  31562. weight: math.unit(150, "lb"),
  31563. name: "Back",
  31564. image: {
  31565. source: "./media/characters/casselene-yaro/back.svg",
  31566. extra: 4569 / 4377,
  31567. bottom: 69 / 4638
  31568. }
  31569. },
  31570. dressed: {
  31571. height: math.unit(6, "feet"),
  31572. weight: math.unit(150, "lb"),
  31573. name: "Dressed",
  31574. image: {
  31575. source: "./media/characters/casselene-yaro/dressed.svg",
  31576. extra: 4721 / 4541,
  31577. bottom: 82 / 4803
  31578. }
  31579. },
  31580. maw: {
  31581. height: math.unit(1, "feet"),
  31582. name: "Maw",
  31583. image: {
  31584. source: "./media/characters/casselene-yaro/maw.svg"
  31585. }
  31586. },
  31587. },
  31588. [
  31589. {
  31590. name: "Macro",
  31591. height: math.unit(190, "feet"),
  31592. default: true
  31593. },
  31594. ]
  31595. ))
  31596. characterMakers.push(() => makeCharacter(
  31597. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31598. {
  31599. front: {
  31600. height: math.unit(10, "feet"),
  31601. weight: math.unit(15015, "lb"),
  31602. name: "Front",
  31603. image: {
  31604. source: "./media/characters/platine/front.svg",
  31605. extra: 1741/1650,
  31606. bottom: 84/1825
  31607. }
  31608. },
  31609. side: {
  31610. height: math.unit(10, "feet"),
  31611. weight: math.unit(15015, "lb"),
  31612. name: "Side",
  31613. image: {
  31614. source: "./media/characters/platine/side.svg",
  31615. extra: 1790/1705,
  31616. bottom: 29/1819
  31617. }
  31618. },
  31619. },
  31620. [
  31621. {
  31622. name: "Normal",
  31623. height: math.unit(10, "feet"),
  31624. default: true
  31625. },
  31626. {
  31627. name: "Macro",
  31628. height: math.unit(100, "feet")
  31629. },
  31630. {
  31631. name: "Megamacro",
  31632. height: math.unit(1000, "feet")
  31633. },
  31634. ]
  31635. ))
  31636. characterMakers.push(() => makeCharacter(
  31637. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31638. {
  31639. front: {
  31640. height: math.unit(15 + 5 / 12, "feet"),
  31641. weight: math.unit(4600, "lb"),
  31642. name: "Front",
  31643. image: {
  31644. source: "./media/characters/neapolitan-ananassa/front.svg",
  31645. extra: 2903 / 2736,
  31646. bottom: 0 / 2903
  31647. }
  31648. },
  31649. side: {
  31650. height: math.unit(15 + 5 / 12, "feet"),
  31651. weight: math.unit(4600, "lb"),
  31652. name: "Side",
  31653. image: {
  31654. source: "./media/characters/neapolitan-ananassa/side.svg",
  31655. extra: 2925 / 2719,
  31656. bottom: 0 / 2925
  31657. }
  31658. },
  31659. back: {
  31660. height: math.unit(15 + 5 / 12, "feet"),
  31661. weight: math.unit(4600, "lb"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/neapolitan-ananassa/back.svg",
  31665. extra: 2903 / 2736,
  31666. bottom: 0 / 2903
  31667. }
  31668. },
  31669. },
  31670. [
  31671. {
  31672. name: "Normal",
  31673. height: math.unit(15 + 5 / 12, "feet"),
  31674. default: true
  31675. },
  31676. {
  31677. name: "Post-Millenium",
  31678. height: math.unit(35 + 5 / 12, "feet")
  31679. },
  31680. {
  31681. name: "Post-Era",
  31682. height: math.unit(450 + 5 / 12, "feet")
  31683. },
  31684. ]
  31685. ))
  31686. characterMakers.push(() => makeCharacter(
  31687. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31688. {
  31689. front: {
  31690. height: math.unit(300, "meters"),
  31691. weight: math.unit(125000, "tonnes"),
  31692. name: "Front",
  31693. image: {
  31694. source: "./media/characters/pazuzu/front.svg",
  31695. extra: 877 / 794,
  31696. bottom: 47 / 924
  31697. }
  31698. },
  31699. },
  31700. [
  31701. {
  31702. name: "Macro",
  31703. height: math.unit(300, "meters"),
  31704. default: true
  31705. },
  31706. ]
  31707. ))
  31708. characterMakers.push(() => makeCharacter(
  31709. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31710. {
  31711. side: {
  31712. height: math.unit(10 + 7 / 12, "feet"),
  31713. weight: math.unit(2.5, "tons"),
  31714. name: "Side",
  31715. image: {
  31716. source: "./media/characters/aasha/side.svg",
  31717. extra: 1345 / 1245,
  31718. bottom: 111 / 1456
  31719. }
  31720. },
  31721. back: {
  31722. height: math.unit(10 + 7 / 12, "feet"),
  31723. weight: math.unit(2.5, "tons"),
  31724. name: "Back",
  31725. image: {
  31726. source: "./media/characters/aasha/back.svg",
  31727. extra: 1133 / 1057,
  31728. bottom: 257 / 1390
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Normal",
  31735. height: math.unit(10 + 7 / 12, "feet"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(6 + 3 / 12, "feet"),
  31745. name: "Front",
  31746. image: {
  31747. source: "./media/characters/nevan/front.svg",
  31748. extra: 704 / 704,
  31749. bottom: 28 / 732
  31750. }
  31751. },
  31752. back: {
  31753. height: math.unit(6 + 3 / 12, "feet"),
  31754. name: "Back",
  31755. image: {
  31756. source: "./media/characters/nevan/back.svg",
  31757. extra: 714 / 714,
  31758. bottom: 21 / 735
  31759. }
  31760. },
  31761. frontFlaccid: {
  31762. height: math.unit(6 + 3 / 12, "feet"),
  31763. name: "Front (Flaccid)",
  31764. image: {
  31765. source: "./media/characters/nevan/front-flaccid.svg",
  31766. extra: 704 / 704,
  31767. bottom: 28 / 732
  31768. }
  31769. },
  31770. frontErect: {
  31771. height: math.unit(6 + 3 / 12, "feet"),
  31772. name: "Front (Erect)",
  31773. image: {
  31774. source: "./media/characters/nevan/front-erect.svg",
  31775. extra: 704 / 704,
  31776. bottom: 28 / 732
  31777. }
  31778. },
  31779. backFlaccid: {
  31780. height: math.unit(6 + 3 / 12, "feet"),
  31781. name: "Back (Flaccid)",
  31782. image: {
  31783. source: "./media/characters/nevan/back-flaccid.svg",
  31784. extra: 714 / 714,
  31785. bottom: 21 / 735
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(6 + 3 / 12, "feet"),
  31793. default: true
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31799. {
  31800. front: {
  31801. height: math.unit(4, "feet"),
  31802. name: "Front",
  31803. image: {
  31804. source: "./media/characters/arhan/front.svg",
  31805. extra: 3368 / 3133,
  31806. bottom: 0 / 3368
  31807. }
  31808. },
  31809. side: {
  31810. height: math.unit(4, "feet"),
  31811. name: "Side",
  31812. image: {
  31813. source: "./media/characters/arhan/side.svg",
  31814. extra: 3347 / 3105,
  31815. bottom: 0 / 3347
  31816. }
  31817. },
  31818. tongue: {
  31819. height: math.unit(1.42, "feet"),
  31820. name: "Tongue",
  31821. image: {
  31822. source: "./media/characters/arhan/tongue.svg"
  31823. }
  31824. },
  31825. head: {
  31826. height: math.unit(0.85, "feet"),
  31827. name: "Head",
  31828. image: {
  31829. source: "./media/characters/arhan/head.svg"
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Normal",
  31836. height: math.unit(4, "feet"),
  31837. default: true
  31838. },
  31839. ]
  31840. ))
  31841. characterMakers.push(() => makeCharacter(
  31842. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31843. {
  31844. front: {
  31845. height: math.unit(5 + 7.5 / 12, "feet"),
  31846. weight: math.unit(120, "lb"),
  31847. name: "Front",
  31848. image: {
  31849. source: "./media/characters/digi-duncan/front.svg",
  31850. extra: 330 / 326,
  31851. bottom: 16 / 346
  31852. }
  31853. },
  31854. side: {
  31855. height: math.unit(5 + 7.5 / 12, "feet"),
  31856. weight: math.unit(120, "lb"),
  31857. name: "Side",
  31858. image: {
  31859. source: "./media/characters/digi-duncan/side.svg",
  31860. extra: 341 / 337,
  31861. bottom: 1 / 342
  31862. }
  31863. },
  31864. back: {
  31865. height: math.unit(5 + 7.5 / 12, "feet"),
  31866. weight: math.unit(120, "lb"),
  31867. name: "Back",
  31868. image: {
  31869. source: "./media/characters/digi-duncan/back.svg",
  31870. extra: 330 / 326,
  31871. bottom: 12 / 342
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Speck",
  31878. height: math.unit(0.25, "mm")
  31879. },
  31880. {
  31881. name: "Micro",
  31882. height: math.unit(5, "mm")
  31883. },
  31884. {
  31885. name: "Tiny",
  31886. height: math.unit(0.5, "inches"),
  31887. default: true
  31888. },
  31889. {
  31890. name: "Human",
  31891. height: math.unit(5 + 7.5 / 12, "feet")
  31892. },
  31893. {
  31894. name: "Minigiant",
  31895. height: math.unit(8 + 5.25, "feet")
  31896. },
  31897. {
  31898. name: "Giant",
  31899. height: math.unit(2000, "feet")
  31900. },
  31901. {
  31902. name: "Mega",
  31903. height: math.unit(371.1, "miles")
  31904. },
  31905. ]
  31906. ))
  31907. characterMakers.push(() => makeCharacter(
  31908. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31909. {
  31910. front: {
  31911. height: math.unit(2, "meters"),
  31912. weight: math.unit(350, "kg"),
  31913. name: "Front",
  31914. image: {
  31915. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31916. extra: 898 / 838,
  31917. bottom: 9 / 907
  31918. }
  31919. },
  31920. },
  31921. [
  31922. {
  31923. name: "Micro",
  31924. height: math.unit(8, "meters")
  31925. },
  31926. {
  31927. name: "Normal",
  31928. height: math.unit(50, "meters"),
  31929. default: true
  31930. },
  31931. {
  31932. name: "Macro",
  31933. height: math.unit(500, "meters")
  31934. },
  31935. ]
  31936. ))
  31937. characterMakers.push(() => makeCharacter(
  31938. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31939. {
  31940. front: {
  31941. height: math.unit(6 + 6 / 12, "feet"),
  31942. name: "Front",
  31943. image: {
  31944. source: "./media/characters/khardesh/front.svg",
  31945. extra: 1788/1596,
  31946. bottom: 66/1854
  31947. }
  31948. },
  31949. back: {
  31950. height: math.unit(6 + 6 / 12, "feet"),
  31951. name: "Back",
  31952. image: {
  31953. source: "./media/characters/khardesh/back.svg",
  31954. extra: 1781/1584,
  31955. bottom: 68/1849
  31956. }
  31957. },
  31958. },
  31959. [
  31960. {
  31961. name: "Normal",
  31962. height: math.unit(6 + 6 / 12, "feet"),
  31963. default: true
  31964. },
  31965. {
  31966. name: "Normal+",
  31967. height: math.unit(4, "meters")
  31968. },
  31969. {
  31970. name: "Macro",
  31971. height: math.unit(50, "meters")
  31972. },
  31973. {
  31974. name: "Macro+",
  31975. height: math.unit(100, "meters")
  31976. },
  31977. {
  31978. name: "Megamacro",
  31979. height: math.unit(20, "km")
  31980. },
  31981. ]
  31982. ))
  31983. characterMakers.push(() => makeCharacter(
  31984. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31985. {
  31986. front: {
  31987. height: math.unit(6, "feet"),
  31988. weight: math.unit(150, "lb"),
  31989. name: "Front",
  31990. image: {
  31991. source: "./media/characters/kosho/front.svg",
  31992. extra: 1847 / 1847,
  31993. bottom: 86 / 1933
  31994. }
  31995. },
  31996. },
  31997. [
  31998. {
  31999. name: "Second-stage micro",
  32000. height: math.unit(0.5, "inches")
  32001. },
  32002. {
  32003. name: "First-stage micro",
  32004. height: math.unit(6, "inches")
  32005. },
  32006. {
  32007. name: "Normal",
  32008. height: math.unit(6, "feet"),
  32009. default: true
  32010. },
  32011. {
  32012. name: "First-stage macro",
  32013. height: math.unit(72, "feet")
  32014. },
  32015. {
  32016. name: "Second-stage macro",
  32017. height: math.unit(864, "feet")
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32023. {
  32024. normal: {
  32025. height: math.unit(4 + 6 / 12, "feet"),
  32026. name: "Normal",
  32027. image: {
  32028. source: "./media/characters/hydra/normal.svg",
  32029. extra: 2833 / 2634,
  32030. bottom: 68 / 2901
  32031. }
  32032. },
  32033. smol: {
  32034. height: math.unit(0.705, "inches"),
  32035. name: "Smol",
  32036. image: {
  32037. source: "./media/characters/hydra/smol.svg",
  32038. extra: 2715 / 2540,
  32039. bottom: 0 / 2715
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(4 + 6 / 12, "feet"),
  32047. default: true
  32048. }
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(0.6, "cm"),
  32056. name: "Front",
  32057. image: {
  32058. source: "./media/characters/daz/front.svg",
  32059. extra: 1682 / 1164,
  32060. bottom: 42 / 1724
  32061. }
  32062. },
  32063. },
  32064. [
  32065. {
  32066. name: "Normal",
  32067. height: math.unit(0.6, "cm"),
  32068. default: true
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32074. {
  32075. front: {
  32076. height: math.unit(6, "feet"),
  32077. weight: math.unit(235, "lb"),
  32078. name: "Front",
  32079. image: {
  32080. source: "./media/characters/theo-pangolin/front.svg",
  32081. extra: 1996 / 1969,
  32082. bottom: 115 / 2111
  32083. }
  32084. },
  32085. back: {
  32086. height: math.unit(6, "feet"),
  32087. weight: math.unit(235, "lb"),
  32088. name: "Back",
  32089. image: {
  32090. source: "./media/characters/theo-pangolin/back.svg",
  32091. extra: 1979 / 1979,
  32092. bottom: 40 / 2019
  32093. }
  32094. },
  32095. feral: {
  32096. height: math.unit(2, "feet"),
  32097. weight: math.unit(30, "lb"),
  32098. name: "Feral",
  32099. image: {
  32100. source: "./media/characters/theo-pangolin/feral.svg",
  32101. extra: 803 / 791,
  32102. bottom: 181 / 984
  32103. }
  32104. },
  32105. footFive: {
  32106. height: math.unit(1.43, "feet"),
  32107. name: "Foot (Five Toes)",
  32108. image: {
  32109. source: "./media/characters/theo-pangolin/foot-five.svg"
  32110. }
  32111. },
  32112. footFour: {
  32113. height: math.unit(1.43, "feet"),
  32114. name: "Foot (Four Toes)",
  32115. image: {
  32116. source: "./media/characters/theo-pangolin/foot-four.svg"
  32117. }
  32118. },
  32119. handFour: {
  32120. height: math.unit(0.81, "feet"),
  32121. name: "Hand (Four Fingers)",
  32122. image: {
  32123. source: "./media/characters/theo-pangolin/hand-four.svg"
  32124. }
  32125. },
  32126. handThree: {
  32127. height: math.unit(0.81, "feet"),
  32128. name: "Hand (Three Fingers)",
  32129. image: {
  32130. source: "./media/characters/theo-pangolin/hand-three.svg"
  32131. }
  32132. },
  32133. headFront: {
  32134. height: math.unit(1.37, "feet"),
  32135. name: "Head (Front)",
  32136. image: {
  32137. source: "./media/characters/theo-pangolin/head-front.svg"
  32138. }
  32139. },
  32140. headSide: {
  32141. height: math.unit(1.43, "feet"),
  32142. name: "Head (Side)",
  32143. image: {
  32144. source: "./media/characters/theo-pangolin/head-side.svg"
  32145. }
  32146. },
  32147. tongue: {
  32148. height: math.unit(2.29, "feet"),
  32149. name: "Tongue",
  32150. image: {
  32151. source: "./media/characters/theo-pangolin/tongue.svg"
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Normal",
  32158. height: math.unit(6, "feet")
  32159. },
  32160. {
  32161. name: "Macro",
  32162. height: math.unit(400, "feet"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(6, "inches"),
  32172. weight: math.unit(0.036, "kg"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/renée/front.svg",
  32176. extra: 900 / 886,
  32177. bottom: 8 / 908
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Nano",
  32184. height: math.unit(1, "nm")
  32185. },
  32186. {
  32187. name: "Micro",
  32188. height: math.unit(1, "mm")
  32189. },
  32190. {
  32191. name: "Normal",
  32192. height: math.unit(6, "inches")
  32193. },
  32194. {
  32195. name: "Macro",
  32196. height: math.unit(2000, "feet"),
  32197. default: true
  32198. },
  32199. {
  32200. name: "Megamacro",
  32201. height: math.unit(2, "km")
  32202. },
  32203. {
  32204. name: "Gigamacro",
  32205. height: math.unit(2000, "km")
  32206. },
  32207. {
  32208. name: "Teramacro",
  32209. height: math.unit(250000, "km")
  32210. },
  32211. ]
  32212. ))
  32213. characterMakers.push(() => makeCharacter(
  32214. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32215. {
  32216. front: {
  32217. height: math.unit(4, "meters"),
  32218. weight: math.unit(150, "kg"),
  32219. name: "Front",
  32220. image: {
  32221. source: "./media/characters/caledvwlch/front.svg",
  32222. extra: 1757/1537,
  32223. bottom: 31/1788
  32224. }
  32225. },
  32226. side: {
  32227. height: math.unit(4, "meters"),
  32228. weight: math.unit(150, "kg"),
  32229. name: "Side",
  32230. image: {
  32231. source: "./media/characters/caledvwlch/side.svg",
  32232. extra: 1605 / 1536,
  32233. bottom: 31 / 1636
  32234. }
  32235. },
  32236. back: {
  32237. height: math.unit(4, "meters"),
  32238. weight: math.unit(150, "kg"),
  32239. name: "Back",
  32240. image: {
  32241. source: "./media/characters/caledvwlch/back.svg",
  32242. extra: 1635 / 1565,
  32243. bottom: 27 / 1662
  32244. }
  32245. },
  32246. },
  32247. [
  32248. {
  32249. name: "\"Incognito\"",
  32250. height: math.unit(4, "meters")
  32251. },
  32252. {
  32253. name: "Small rampage",
  32254. height: math.unit(600, "meters")
  32255. },
  32256. {
  32257. name: "Mega",
  32258. height: math.unit(30, "km")
  32259. },
  32260. {
  32261. name: "Home-size",
  32262. height: math.unit(50, "km"),
  32263. default: true
  32264. },
  32265. {
  32266. name: "Giga",
  32267. height: math.unit(300, "km")
  32268. },
  32269. {
  32270. name: "Lounging",
  32271. height: math.unit(11000, "km")
  32272. },
  32273. {
  32274. name: "Planet snacking",
  32275. height: math.unit(2000000, "km")
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32281. {
  32282. front: {
  32283. height: math.unit(6, "feet"),
  32284. weight: math.unit(215, "lb"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/sapphire-svell/front.svg",
  32288. extra: 495 / 455,
  32289. bottom: 20 / 515
  32290. }
  32291. },
  32292. back: {
  32293. height: math.unit(6, "feet"),
  32294. weight: math.unit(216, "lb"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/sapphire-svell/back.svg",
  32298. extra: 497 / 477,
  32299. bottom: 7 / 504
  32300. }
  32301. },
  32302. maw: {
  32303. height: math.unit(1.57, "feet"),
  32304. name: "Maw",
  32305. image: {
  32306. source: "./media/characters/sapphire-svell/maw.svg"
  32307. }
  32308. },
  32309. foot: {
  32310. height: math.unit(1.07, "feet"),
  32311. name: "Foot",
  32312. image: {
  32313. source: "./media/characters/sapphire-svell/foot.svg"
  32314. }
  32315. },
  32316. toering: {
  32317. height: math.unit(1.7, "inch"),
  32318. name: "Toering",
  32319. image: {
  32320. source: "./media/characters/sapphire-svell/toering.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Normal",
  32327. height: math.unit(300, "feet"),
  32328. default: true
  32329. },
  32330. {
  32331. name: "Augmented",
  32332. height: math.unit(1250, "feet")
  32333. },
  32334. {
  32335. name: "Unleashed",
  32336. height: math.unit(3000, "feet")
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32342. {
  32343. side: {
  32344. height: math.unit(2 + 3 / 12, "feet"),
  32345. weight: math.unit(110, "lb"),
  32346. name: "Side",
  32347. image: {
  32348. source: "./media/characters/glitch-flux/side.svg",
  32349. extra: 997 / 805,
  32350. bottom: 20 / 1017
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Normal",
  32357. height: math.unit(2 + 3 / 12, "feet"),
  32358. default: true
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32364. {
  32365. front: {
  32366. height: math.unit(4, "meters"),
  32367. name: "Front",
  32368. image: {
  32369. source: "./media/characters/mid/front.svg",
  32370. extra: 507 / 476,
  32371. bottom: 17 / 524
  32372. }
  32373. },
  32374. back: {
  32375. height: math.unit(4, "meters"),
  32376. name: "Back",
  32377. image: {
  32378. source: "./media/characters/mid/back.svg",
  32379. extra: 519 / 487,
  32380. bottom: 7 / 526
  32381. }
  32382. },
  32383. stuck: {
  32384. height: math.unit(2.2, "meters"),
  32385. name: "Stuck",
  32386. image: {
  32387. source: "./media/characters/mid/stuck.svg",
  32388. extra: 1951 / 1869,
  32389. bottom: 88 / 2039
  32390. }
  32391. }
  32392. },
  32393. [
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(4, "meters"),
  32397. default: true
  32398. },
  32399. {
  32400. name: "Big",
  32401. height: math.unit(10, "meters")
  32402. },
  32403. {
  32404. name: "Macro",
  32405. height: math.unit(800, "meters")
  32406. },
  32407. {
  32408. name: "Megamacro",
  32409. height: math.unit(100, "km")
  32410. },
  32411. {
  32412. name: "Overgrown",
  32413. height: math.unit(1, "parsec")
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(2.5, "meters"),
  32422. weight: math.unit(225, "kg"),
  32423. name: "Front",
  32424. image: {
  32425. source: "./media/characters/iris/front.svg",
  32426. extra: 3348 / 3251,
  32427. bottom: 205 / 3553
  32428. }
  32429. },
  32430. maw: {
  32431. height: math.unit(0.56, "meter"),
  32432. name: "Maw",
  32433. image: {
  32434. source: "./media/characters/iris/maw.svg"
  32435. }
  32436. },
  32437. },
  32438. [
  32439. {
  32440. name: "Mewter cat",
  32441. height: math.unit(1.2, "meters")
  32442. },
  32443. {
  32444. name: "Normal",
  32445. height: math.unit(2.5, "meters"),
  32446. default: true
  32447. },
  32448. {
  32449. name: "Minimacro",
  32450. height: math.unit(18, "feet")
  32451. },
  32452. {
  32453. name: "Macro",
  32454. height: math.unit(140, "feet")
  32455. },
  32456. {
  32457. name: "Macro+",
  32458. height: math.unit(180, "meters")
  32459. },
  32460. {
  32461. name: "Megamacro",
  32462. height: math.unit(2746, "meters")
  32463. },
  32464. ]
  32465. ))
  32466. characterMakers.push(() => makeCharacter(
  32467. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32468. {
  32469. front: {
  32470. height: math.unit(6, "feet"),
  32471. weight: math.unit(135, "lb"),
  32472. name: "Front",
  32473. image: {
  32474. source: "./media/characters/axel/front.svg",
  32475. extra: 908 / 908,
  32476. bottom: 58 / 966
  32477. }
  32478. },
  32479. side: {
  32480. height: math.unit(6, "feet"),
  32481. weight: math.unit(135, "lb"),
  32482. name: "Side",
  32483. image: {
  32484. source: "./media/characters/axel/side.svg",
  32485. extra: 958 / 958,
  32486. bottom: 11 / 969
  32487. }
  32488. },
  32489. back: {
  32490. height: math.unit(6, "feet"),
  32491. weight: math.unit(135, "lb"),
  32492. name: "Back",
  32493. image: {
  32494. source: "./media/characters/axel/back.svg",
  32495. extra: 887 / 887,
  32496. bottom: 34 / 921
  32497. }
  32498. },
  32499. head: {
  32500. height: math.unit(1.07, "feet"),
  32501. name: "Head",
  32502. image: {
  32503. source: "./media/characters/axel/head.svg"
  32504. }
  32505. },
  32506. beak: {
  32507. height: math.unit(1.4, "feet"),
  32508. name: "Beak",
  32509. image: {
  32510. source: "./media/characters/axel/beak.svg"
  32511. }
  32512. },
  32513. beakSide: {
  32514. height: math.unit(1.4, "feet"),
  32515. name: "Beak Side",
  32516. image: {
  32517. source: "./media/characters/axel/beak-side.svg"
  32518. }
  32519. },
  32520. sheath: {
  32521. height: math.unit(0.5, "feet"),
  32522. name: "Sheath",
  32523. image: {
  32524. source: "./media/characters/axel/sheath.svg"
  32525. }
  32526. },
  32527. dick: {
  32528. height: math.unit(0.98, "feet"),
  32529. name: "Dick",
  32530. image: {
  32531. source: "./media/characters/axel/dick.svg"
  32532. }
  32533. },
  32534. },
  32535. [
  32536. {
  32537. name: "Macro",
  32538. height: math.unit(68, "meters"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(3.5, "meters"),
  32548. weight: math.unit(1200, "kg"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/joanna/front.svg",
  32552. extra: 1596 / 1488,
  32553. bottom: 29 / 1625
  32554. }
  32555. },
  32556. back: {
  32557. height: math.unit(3.5, "meters"),
  32558. weight: math.unit(1200, "kg"),
  32559. name: "Back",
  32560. image: {
  32561. source: "./media/characters/joanna/back.svg",
  32562. extra: 1594 / 1495,
  32563. bottom: 26 / 1620
  32564. }
  32565. },
  32566. frontShorts: {
  32567. height: math.unit(3.5, "meters"),
  32568. weight: math.unit(1200, "kg"),
  32569. name: "Front (Shorts)",
  32570. image: {
  32571. source: "./media/characters/joanna/front-shorts.svg",
  32572. extra: 1596 / 1488,
  32573. bottom: 29 / 1625
  32574. }
  32575. },
  32576. frontBiker: {
  32577. height: math.unit(3.5, "meters"),
  32578. weight: math.unit(1200, "kg"),
  32579. name: "Front (Biker)",
  32580. image: {
  32581. source: "./media/characters/joanna/front-biker.svg",
  32582. extra: 1596 / 1488,
  32583. bottom: 29 / 1625
  32584. }
  32585. },
  32586. backBiker: {
  32587. height: math.unit(3.5, "meters"),
  32588. weight: math.unit(1200, "kg"),
  32589. name: "Back (Biker)",
  32590. image: {
  32591. source: "./media/characters/joanna/back-biker.svg",
  32592. extra: 1594 / 1495,
  32593. bottom: 88 / 1682
  32594. }
  32595. },
  32596. bikeLeft: {
  32597. height: math.unit(2.4, "meters"),
  32598. weight: math.unit(1600, "kg"),
  32599. name: "Bike (Left)",
  32600. image: {
  32601. source: "./media/characters/joanna/bike-left.svg",
  32602. extra: 720 / 720,
  32603. bottom: 8 / 728
  32604. }
  32605. },
  32606. bikeRight: {
  32607. height: math.unit(2.4, "meters"),
  32608. weight: math.unit(1600, "kg"),
  32609. name: "Bike (Right)",
  32610. image: {
  32611. source: "./media/characters/joanna/bike-right.svg",
  32612. extra: 720 / 720,
  32613. bottom: 8 / 728
  32614. }
  32615. },
  32616. },
  32617. [
  32618. {
  32619. name: "Incognito",
  32620. height: math.unit(3.5, "meters")
  32621. },
  32622. {
  32623. name: "Casual Big",
  32624. height: math.unit(200, "meters")
  32625. },
  32626. {
  32627. name: "Macro",
  32628. height: math.unit(600, "meters")
  32629. },
  32630. {
  32631. name: "Original",
  32632. height: math.unit(20, "km"),
  32633. default: true
  32634. },
  32635. {
  32636. name: "Giga",
  32637. height: math.unit(400, "km")
  32638. },
  32639. {
  32640. name: "Lounging",
  32641. height: math.unit(1500, "km")
  32642. },
  32643. {
  32644. name: "Planetary",
  32645. height: math.unit(200000, "km")
  32646. },
  32647. ]
  32648. ))
  32649. characterMakers.push(() => makeCharacter(
  32650. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32651. {
  32652. front: {
  32653. height: math.unit(6, "feet"),
  32654. weight: math.unit(150, "lb"),
  32655. name: "Front",
  32656. image: {
  32657. source: "./media/characters/hugo-sigil/front.svg",
  32658. extra: 522 / 500,
  32659. bottom: 2 / 524
  32660. }
  32661. },
  32662. back: {
  32663. height: math.unit(6, "feet"),
  32664. weight: math.unit(150, "lb"),
  32665. name: "Back",
  32666. image: {
  32667. source: "./media/characters/hugo-sigil/back.svg",
  32668. extra: 519 / 495,
  32669. bottom: 5 / 524
  32670. }
  32671. },
  32672. maw: {
  32673. height: math.unit(1.4, "feet"),
  32674. weight: math.unit(150, "lb"),
  32675. name: "Maw",
  32676. image: {
  32677. source: "./media/characters/hugo-sigil/maw.svg"
  32678. }
  32679. },
  32680. feet: {
  32681. height: math.unit(1.56, "feet"),
  32682. weight: math.unit(150, "lb"),
  32683. name: "Feet",
  32684. image: {
  32685. source: "./media/characters/hugo-sigil/feet.svg",
  32686. extra: 177 / 177,
  32687. bottom: 12 / 189
  32688. }
  32689. },
  32690. },
  32691. [
  32692. {
  32693. name: "Normal",
  32694. height: math.unit(6, "feet")
  32695. },
  32696. {
  32697. name: "Macro",
  32698. height: math.unit(200, "feet"),
  32699. default: true
  32700. },
  32701. ]
  32702. ))
  32703. characterMakers.push(() => makeCharacter(
  32704. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32705. {
  32706. front: {
  32707. height: math.unit(6, "feet"),
  32708. weight: math.unit(150, "lb"),
  32709. name: "Front",
  32710. image: {
  32711. source: "./media/characters/peri/front.svg",
  32712. extra: 2354 / 2233,
  32713. bottom: 49 / 2403
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Really Small",
  32720. height: math.unit(1, "nm")
  32721. },
  32722. {
  32723. name: "Micro",
  32724. height: math.unit(4, "inches")
  32725. },
  32726. {
  32727. name: "Normal",
  32728. height: math.unit(7, "inches"),
  32729. default: true
  32730. },
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(400, "feet")
  32734. },
  32735. {
  32736. name: "Megamacro",
  32737. height: math.unit(100, "miles")
  32738. },
  32739. ]
  32740. ))
  32741. characterMakers.push(() => makeCharacter(
  32742. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32743. {
  32744. frontSlim: {
  32745. height: math.unit(7, "feet"),
  32746. name: "Front (Slim)",
  32747. image: {
  32748. source: "./media/characters/issilora/front-slim.svg",
  32749. extra: 529 / 449,
  32750. bottom: 53 / 582
  32751. }
  32752. },
  32753. sideSlim: {
  32754. height: math.unit(7, "feet"),
  32755. name: "Side (Slim)",
  32756. image: {
  32757. source: "./media/characters/issilora/side-slim.svg",
  32758. extra: 570 / 480,
  32759. bottom: 30 / 600
  32760. }
  32761. },
  32762. backSlim: {
  32763. height: math.unit(7, "feet"),
  32764. name: "Back (Slim)",
  32765. image: {
  32766. source: "./media/characters/issilora/back-slim.svg",
  32767. extra: 537 / 455,
  32768. bottom: 46 / 583
  32769. }
  32770. },
  32771. frontBuff: {
  32772. height: math.unit(7, "feet"),
  32773. name: "Front (Buff)",
  32774. image: {
  32775. source: "./media/characters/issilora/front-buff.svg",
  32776. extra: 2310 / 2035,
  32777. bottom: 335 / 2645
  32778. }
  32779. },
  32780. head: {
  32781. height: math.unit(1.94, "feet"),
  32782. name: "Head",
  32783. image: {
  32784. source: "./media/characters/issilora/head.svg"
  32785. }
  32786. },
  32787. },
  32788. [
  32789. {
  32790. name: "Minimum",
  32791. height: math.unit(7, "feet")
  32792. },
  32793. {
  32794. name: "Comfortable",
  32795. height: math.unit(17, "feet")
  32796. },
  32797. {
  32798. name: "Fun Size",
  32799. height: math.unit(47, "feet")
  32800. },
  32801. {
  32802. name: "Natural Macro",
  32803. height: math.unit(137, "feet"),
  32804. default: true
  32805. },
  32806. {
  32807. name: "Maximum Kaiju",
  32808. height: math.unit(397, "feet")
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32814. {
  32815. front: {
  32816. height: math.unit(50 + 9/12, "feet"),
  32817. weight: math.unit(32.8, "tons"),
  32818. name: "Front",
  32819. image: {
  32820. source: "./media/characters/irb'iiritaahn/front.svg",
  32821. extra: 1878/1826,
  32822. bottom: 326/2204
  32823. }
  32824. },
  32825. back: {
  32826. height: math.unit(50 + 9/12, "feet"),
  32827. weight: math.unit(32.8, "tons"),
  32828. name: "Back",
  32829. image: {
  32830. source: "./media/characters/irb'iiritaahn/back.svg",
  32831. extra: 2052/2018,
  32832. bottom: 152/2204
  32833. }
  32834. },
  32835. head: {
  32836. height: math.unit(12.86, "feet"),
  32837. name: "Head",
  32838. image: {
  32839. source: "./media/characters/irb'iiritaahn/head.svg"
  32840. }
  32841. },
  32842. maw: {
  32843. height: math.unit(9.66, "feet"),
  32844. name: "Maw",
  32845. image: {
  32846. source: "./media/characters/irb'iiritaahn/maw.svg"
  32847. }
  32848. },
  32849. frontDick: {
  32850. height: math.unit(8.78461, "feet"),
  32851. name: "Front Dick",
  32852. image: {
  32853. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32854. }
  32855. },
  32856. rearDick: {
  32857. height: math.unit(8.78461, "feet"),
  32858. name: "Rear Dick",
  32859. image: {
  32860. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32861. }
  32862. },
  32863. rearDickUnfolded: {
  32864. height: math.unit(8.78, "feet"),
  32865. name: "Rear Dick (Unfolded)",
  32866. image: {
  32867. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32868. }
  32869. },
  32870. wings: {
  32871. height: math.unit(43, "feet"),
  32872. name: "Wings",
  32873. image: {
  32874. source: "./media/characters/irb'iiritaahn/wings.svg"
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Macro",
  32881. height: math.unit(50 + 9/12, "feet"),
  32882. default: true
  32883. },
  32884. ]
  32885. ))
  32886. characterMakers.push(() => makeCharacter(
  32887. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32888. {
  32889. front: {
  32890. height: math.unit(205, "cm"),
  32891. weight: math.unit(102, "kg"),
  32892. name: "Front",
  32893. image: {
  32894. source: "./media/characters/irbisgreif/front.svg",
  32895. extra: 785/706,
  32896. bottom: 13/798
  32897. }
  32898. },
  32899. back: {
  32900. height: math.unit(205, "cm"),
  32901. weight: math.unit(102, "kg"),
  32902. name: "Back",
  32903. image: {
  32904. source: "./media/characters/irbisgreif/back.svg",
  32905. extra: 713/701,
  32906. bottom: 26/739
  32907. }
  32908. },
  32909. frontDressed: {
  32910. height: math.unit(216, "cm"),
  32911. weight: math.unit(102, "kg"),
  32912. name: "Front-dressed",
  32913. image: {
  32914. source: "./media/characters/irbisgreif/front-dressed.svg",
  32915. extra: 902/776,
  32916. bottom: 14/916
  32917. }
  32918. },
  32919. sideDressed: {
  32920. height: math.unit(195, "cm"),
  32921. weight: math.unit(102, "kg"),
  32922. name: "Side-dressed",
  32923. image: {
  32924. source: "./media/characters/irbisgreif/side-dressed.svg",
  32925. extra: 788/688,
  32926. bottom: 21/809
  32927. }
  32928. },
  32929. backDressed: {
  32930. height: math.unit(216, "cm"),
  32931. weight: math.unit(102, "kg"),
  32932. name: "Back-dressed",
  32933. image: {
  32934. source: "./media/characters/irbisgreif/back-dressed.svg",
  32935. extra: 901/783,
  32936. bottom: 10/911
  32937. }
  32938. },
  32939. dick: {
  32940. height: math.unit(0.49, "feet"),
  32941. name: "Dick",
  32942. image: {
  32943. source: "./media/characters/irbisgreif/dick.svg"
  32944. }
  32945. },
  32946. wingTop: {
  32947. height: math.unit(1.93 , "feet"),
  32948. name: "Wing-top",
  32949. image: {
  32950. source: "./media/characters/irbisgreif/wing-top.svg"
  32951. }
  32952. },
  32953. wingBottom: {
  32954. height: math.unit(1.93 , "feet"),
  32955. name: "Wing-bottom",
  32956. image: {
  32957. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Normal",
  32964. height: math.unit(216, "cm"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32971. {
  32972. front: {
  32973. height: math.unit(6, "feet"),
  32974. weight: math.unit(150, "lb"),
  32975. name: "Front",
  32976. image: {
  32977. source: "./media/characters/pride/front.svg",
  32978. extra: 1299/1230,
  32979. bottom: 18/1317
  32980. }
  32981. },
  32982. },
  32983. [
  32984. {
  32985. name: "Normal",
  32986. height: math.unit(7, "feet")
  32987. },
  32988. {
  32989. name: "Mini-macro",
  32990. height: math.unit(11, "feet")
  32991. },
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(15, "meters"),
  32995. default: true
  32996. },
  32997. {
  32998. name: "Macro+",
  32999. height: math.unit(40, "meters")
  33000. },
  33001. ]
  33002. ))
  33003. characterMakers.push(() => makeCharacter(
  33004. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33005. {
  33006. front: {
  33007. height: math.unit(4 + 2 / 12, "feet"),
  33008. weight: math.unit(95, "lb"),
  33009. name: "Front",
  33010. image: {
  33011. source: "./media/characters/vaelophis-nyx/front.svg",
  33012. extra: 2532/2330,
  33013. bottom: 0/2532
  33014. }
  33015. },
  33016. back: {
  33017. height: math.unit(4 + 2 / 12, "feet"),
  33018. weight: math.unit(95, "lb"),
  33019. name: "Back",
  33020. image: {
  33021. source: "./media/characters/vaelophis-nyx/back.svg",
  33022. extra: 2484/2361,
  33023. bottom: 0/2484
  33024. }
  33025. },
  33026. feralSide: {
  33027. height: math.unit(2 + 1/12, "feet"),
  33028. weight: math.unit(20, "lb"),
  33029. name: "Feral (Side)",
  33030. image: {
  33031. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33032. extra: 1721/1581,
  33033. bottom: 70/1791
  33034. }
  33035. },
  33036. feralLazing: {
  33037. height: math.unit(1.08, "feet"),
  33038. weight: math.unit(20, "lb"),
  33039. name: "Feral (Lazing)",
  33040. image: {
  33041. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33042. extra: 822/822,
  33043. bottom: 248/1070
  33044. }
  33045. },
  33046. ear: {
  33047. height: math.unit(0.416, "feet"),
  33048. name: "Ear",
  33049. image: {
  33050. source: "./media/characters/vaelophis-nyx/ear.svg"
  33051. }
  33052. },
  33053. eye: {
  33054. height: math.unit(0.0748, "feet"),
  33055. name: "Eye",
  33056. image: {
  33057. source: "./media/characters/vaelophis-nyx/eye.svg"
  33058. }
  33059. },
  33060. mouth: {
  33061. height: math.unit(0.378, "feet"),
  33062. name: "Mouth",
  33063. image: {
  33064. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33065. }
  33066. },
  33067. spade: {
  33068. height: math.unit(0.55, "feet"),
  33069. name: "Spade",
  33070. image: {
  33071. source: "./media/characters/vaelophis-nyx/spade.svg"
  33072. }
  33073. },
  33074. },
  33075. [
  33076. {
  33077. name: "Normal",
  33078. height: math.unit(4 + 2/12, "feet"),
  33079. default: true
  33080. },
  33081. ]
  33082. ))
  33083. characterMakers.push(() => makeCharacter(
  33084. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33085. {
  33086. front: {
  33087. height: math.unit(7, "feet"),
  33088. weight: math.unit(231, "lb"),
  33089. name: "Front",
  33090. image: {
  33091. source: "./media/characters/flux/front.svg",
  33092. extra: 919/871,
  33093. bottom: 0/919
  33094. }
  33095. },
  33096. back: {
  33097. height: math.unit(7, "feet"),
  33098. weight: math.unit(231, "lb"),
  33099. name: "Back",
  33100. image: {
  33101. source: "./media/characters/flux/back.svg",
  33102. extra: 1040/992,
  33103. bottom: 0/1040
  33104. }
  33105. },
  33106. frontDressed: {
  33107. height: math.unit(7, "feet"),
  33108. weight: math.unit(231, "lb"),
  33109. name: "Front (Dressed)",
  33110. image: {
  33111. source: "./media/characters/flux/front-dressed.svg",
  33112. extra: 919/871,
  33113. bottom: 0/919
  33114. }
  33115. },
  33116. feralSide: {
  33117. height: math.unit(5, "feet"),
  33118. weight: math.unit(150, "lb"),
  33119. name: "Feral (Side)",
  33120. image: {
  33121. source: "./media/characters/flux/feral-side.svg",
  33122. extra: 598/528,
  33123. bottom: 28/626
  33124. }
  33125. },
  33126. head: {
  33127. height: math.unit(1.585, "feet"),
  33128. name: "Head",
  33129. image: {
  33130. source: "./media/characters/flux/head.svg"
  33131. }
  33132. },
  33133. headSide: {
  33134. height: math.unit(1.74, "feet"),
  33135. name: "Head (Side)",
  33136. image: {
  33137. source: "./media/characters/flux/head-side.svg"
  33138. }
  33139. },
  33140. headSideFire: {
  33141. height: math.unit(1.76, "feet"),
  33142. name: "Head (Side, Fire)",
  33143. image: {
  33144. source: "./media/characters/flux/head-side-fire.svg"
  33145. }
  33146. },
  33147. },
  33148. [
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(7, "feet"),
  33152. default: true
  33153. },
  33154. ]
  33155. ))
  33156. characterMakers.push(() => makeCharacter(
  33157. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33158. {
  33159. front: {
  33160. height: math.unit(9, "feet"),
  33161. weight: math.unit(1012, "lb"),
  33162. name: "Front",
  33163. image: {
  33164. source: "./media/characters/ulfra-lupae/front.svg",
  33165. extra: 1083/1011,
  33166. bottom: 67/1150
  33167. }
  33168. },
  33169. },
  33170. [
  33171. {
  33172. name: "Micro",
  33173. height: math.unit(6, "inches")
  33174. },
  33175. {
  33176. name: "Socializing",
  33177. height: math.unit(6 + 5/12, "feet")
  33178. },
  33179. {
  33180. name: "Normal",
  33181. height: math.unit(9, "feet"),
  33182. default: true
  33183. },
  33184. {
  33185. name: "Macro",
  33186. height: math.unit(150, "feet")
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(5 + 2/12, "feet"),
  33195. weight: math.unit(120, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/timber/front.svg",
  33199. extra: 2814/2705,
  33200. bottom: 181/2995
  33201. }
  33202. },
  33203. },
  33204. [
  33205. {
  33206. name: "Normal",
  33207. height: math.unit(5 + 2/12, "feet"),
  33208. default: true
  33209. },
  33210. ]
  33211. ))
  33212. characterMakers.push(() => makeCharacter(
  33213. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33214. {
  33215. front: {
  33216. height: math.unit(9, "feet"),
  33217. name: "Front",
  33218. image: {
  33219. source: "./media/characters/nicki/front.svg",
  33220. extra: 1240/990,
  33221. bottom: 45/1285
  33222. },
  33223. form: "anthro",
  33224. default: true
  33225. },
  33226. side: {
  33227. height: math.unit(9, "feet"),
  33228. name: "Side",
  33229. image: {
  33230. source: "./media/characters/nicki/side.svg",
  33231. extra: 1047/973,
  33232. bottom: 61/1108
  33233. },
  33234. form: "anthro"
  33235. },
  33236. back: {
  33237. height: math.unit(9, "feet"),
  33238. name: "Back",
  33239. image: {
  33240. source: "./media/characters/nicki/back.svg",
  33241. extra: 1006/965,
  33242. bottom: 39/1045
  33243. },
  33244. form: "anthro"
  33245. },
  33246. taur: {
  33247. height: math.unit(15, "feet"),
  33248. name: "Taur",
  33249. image: {
  33250. source: "./media/characters/nicki/taur.svg",
  33251. extra: 1592/1347,
  33252. bottom: 0/1592
  33253. },
  33254. form: "taur",
  33255. default: true
  33256. },
  33257. },
  33258. [
  33259. {
  33260. name: "Normal",
  33261. height: math.unit(9, "feet"),
  33262. form: "anthro",
  33263. default: true
  33264. },
  33265. {
  33266. name: "Normal",
  33267. height: math.unit(15, "feet"),
  33268. form: "taur",
  33269. default: true
  33270. }
  33271. ],
  33272. {
  33273. "anthro": {
  33274. name: "Anthro",
  33275. default: true
  33276. },
  33277. "taur": {
  33278. name: "Taur"
  33279. }
  33280. }
  33281. ))
  33282. characterMakers.push(() => makeCharacter(
  33283. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33284. {
  33285. front: {
  33286. height: math.unit(7 + 10/12, "feet"),
  33287. weight: math.unit(3.5, "tons"),
  33288. name: "Front",
  33289. image: {
  33290. source: "./media/characters/lee/front.svg",
  33291. extra: 1773/1615,
  33292. bottom: 86/1859
  33293. }
  33294. },
  33295. hand: {
  33296. height: math.unit(1.78, "feet"),
  33297. name: "Hand",
  33298. image: {
  33299. source: "./media/characters/lee/hand.svg"
  33300. }
  33301. },
  33302. maw: {
  33303. height: math.unit(1.18, "feet"),
  33304. name: "Maw",
  33305. image: {
  33306. source: "./media/characters/lee/maw.svg"
  33307. }
  33308. },
  33309. },
  33310. [
  33311. {
  33312. name: "Normal",
  33313. height: math.unit(7 + 10/12, "feet"),
  33314. default: true
  33315. },
  33316. ]
  33317. ))
  33318. characterMakers.push(() => makeCharacter(
  33319. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33320. {
  33321. front: {
  33322. height: math.unit(9, "feet"),
  33323. name: "Front",
  33324. image: {
  33325. source: "./media/characters/guti/front.svg",
  33326. extra: 4551/4355,
  33327. bottom: 123/4674
  33328. }
  33329. },
  33330. tongue: {
  33331. height: math.unit(1, "feet"),
  33332. name: "Tongue",
  33333. image: {
  33334. source: "./media/characters/guti/tongue.svg"
  33335. }
  33336. },
  33337. paw: {
  33338. height: math.unit(1.18, "feet"),
  33339. name: "Paw",
  33340. image: {
  33341. source: "./media/characters/guti/paw.svg"
  33342. }
  33343. },
  33344. },
  33345. [
  33346. {
  33347. name: "Normal",
  33348. height: math.unit(9, "feet"),
  33349. default: true
  33350. },
  33351. ]
  33352. ))
  33353. characterMakers.push(() => makeCharacter(
  33354. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33355. {
  33356. side: {
  33357. height: math.unit(5, "meters"),
  33358. name: "Side",
  33359. image: {
  33360. source: "./media/characters/vesper/side.svg",
  33361. extra: 1605/1518,
  33362. bottom: 0/1605
  33363. }
  33364. },
  33365. },
  33366. [
  33367. {
  33368. name: "Small",
  33369. height: math.unit(5, "meters")
  33370. },
  33371. {
  33372. name: "Sage",
  33373. height: math.unit(100, "meters"),
  33374. default: true
  33375. },
  33376. {
  33377. name: "Fun Size",
  33378. height: math.unit(600, "meters")
  33379. },
  33380. {
  33381. name: "Goddess",
  33382. height: math.unit(20000, "km")
  33383. },
  33384. {
  33385. name: "Maximum",
  33386. height: math.unit(5, "galaxies")
  33387. },
  33388. ]
  33389. ))
  33390. characterMakers.push(() => makeCharacter(
  33391. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33392. {
  33393. front: {
  33394. height: math.unit(6 + 3/12, "feet"),
  33395. weight: math.unit(190, "lb"),
  33396. name: "Front",
  33397. image: {
  33398. source: "./media/characters/gawain/front.svg",
  33399. extra: 2222/2139,
  33400. bottom: 90/2312
  33401. }
  33402. },
  33403. back: {
  33404. height: math.unit(6 + 3/12, "feet"),
  33405. weight: math.unit(190, "lb"),
  33406. name: "Back",
  33407. image: {
  33408. source: "./media/characters/gawain/back.svg",
  33409. extra: 2199/2111,
  33410. bottom: 73/2272
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(6 + 3/12, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33424. {
  33425. side: {
  33426. height: math.unit(3.5, "meters"),
  33427. weight: math.unit(16000, "lb"),
  33428. name: "Side",
  33429. image: {
  33430. source: "./media/characters/dascalti/side.svg",
  33431. extra: 392/273,
  33432. bottom: 47/439
  33433. }
  33434. },
  33435. breath: {
  33436. height: math.unit(7.4, "feet"),
  33437. name: "Breath",
  33438. image: {
  33439. source: "./media/characters/dascalti/breath.svg"
  33440. }
  33441. },
  33442. fed: {
  33443. height: math.unit(3.6, "meters"),
  33444. weight: math.unit(16000, "lb"),
  33445. name: "Fed",
  33446. image: {
  33447. source: "./media/characters/dascalti/fed.svg",
  33448. extra: 1419/820,
  33449. bottom: 95/1514
  33450. }
  33451. },
  33452. },
  33453. [
  33454. {
  33455. name: "Normal",
  33456. height: math.unit(3.5, "meters"),
  33457. default: true
  33458. },
  33459. ]
  33460. ))
  33461. characterMakers.push(() => makeCharacter(
  33462. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33463. {
  33464. front: {
  33465. height: math.unit(3 + 5/12, "feet"),
  33466. name: "Front",
  33467. image: {
  33468. source: "./media/characters/mauve/front.svg",
  33469. extra: 1126/1033,
  33470. bottom: 65/1191
  33471. }
  33472. },
  33473. side: {
  33474. height: math.unit(3 + 5/12, "feet"),
  33475. name: "Side",
  33476. image: {
  33477. source: "./media/characters/mauve/side.svg",
  33478. extra: 1089/1001,
  33479. bottom: 29/1118
  33480. }
  33481. },
  33482. back: {
  33483. height: math.unit(3 + 5/12, "feet"),
  33484. name: "Back",
  33485. image: {
  33486. source: "./media/characters/mauve/back.svg",
  33487. extra: 1173/1053,
  33488. bottom: 109/1282
  33489. }
  33490. },
  33491. },
  33492. [
  33493. {
  33494. name: "Normal",
  33495. height: math.unit(3 + 5/12, "feet"),
  33496. default: true
  33497. },
  33498. ]
  33499. ))
  33500. characterMakers.push(() => makeCharacter(
  33501. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33502. {
  33503. front: {
  33504. height: math.unit(6 + 3/12, "feet"),
  33505. weight: math.unit(430, "lb"),
  33506. name: "Front",
  33507. image: {
  33508. source: "./media/characters/carlos/front.svg",
  33509. extra: 1964/1913,
  33510. bottom: 70/2034
  33511. }
  33512. },
  33513. },
  33514. [
  33515. {
  33516. name: "Normal",
  33517. height: math.unit(6 + 3/12, "feet"),
  33518. default: true
  33519. },
  33520. ]
  33521. ))
  33522. characterMakers.push(() => makeCharacter(
  33523. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33524. {
  33525. back: {
  33526. height: math.unit(5 + 10/12, "feet"),
  33527. weight: math.unit(200, "lb"),
  33528. name: "Back",
  33529. image: {
  33530. source: "./media/characters/jax/back.svg",
  33531. extra: 764/739,
  33532. bottom: 25/789
  33533. }
  33534. },
  33535. },
  33536. [
  33537. {
  33538. name: "Normal",
  33539. height: math.unit(5 + 10/12, "feet"),
  33540. default: true
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(8, "feet"),
  33549. weight: math.unit(250, "lb"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/eikthynir/front.svg",
  33553. extra: 1332/1166,
  33554. bottom: 82/1414
  33555. }
  33556. },
  33557. back: {
  33558. height: math.unit(8, "feet"),
  33559. weight: math.unit(250, "lb"),
  33560. name: "Back",
  33561. image: {
  33562. source: "./media/characters/eikthynir/back.svg",
  33563. extra: 1342/1190,
  33564. bottom: 19/1361
  33565. }
  33566. },
  33567. dick: {
  33568. height: math.unit(2.35, "feet"),
  33569. name: "Dick",
  33570. image: {
  33571. source: "./media/characters/eikthynir/dick.svg"
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(8, "feet"),
  33579. default: true
  33580. },
  33581. ]
  33582. ))
  33583. characterMakers.push(() => makeCharacter(
  33584. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33585. {
  33586. front: {
  33587. height: math.unit(99, "meters"),
  33588. weight: math.unit(13000, "tons"),
  33589. name: "Front",
  33590. image: {
  33591. source: "./media/characters/zlmos/front.svg",
  33592. extra: 2202/1992,
  33593. bottom: 315/2517
  33594. }
  33595. },
  33596. },
  33597. [
  33598. {
  33599. name: "Macro",
  33600. height: math.unit(99, "meters"),
  33601. default: true
  33602. },
  33603. ]
  33604. ))
  33605. characterMakers.push(() => makeCharacter(
  33606. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33607. {
  33608. front: {
  33609. height: math.unit(6 + 5/12, "feet"),
  33610. name: "Front",
  33611. image: {
  33612. source: "./media/characters/purri/front.svg",
  33613. extra: 1698/1610,
  33614. bottom: 32/1730
  33615. }
  33616. },
  33617. frontAlt: {
  33618. height: math.unit(6 + 5/12, "feet"),
  33619. name: "Front (Alt)",
  33620. image: {
  33621. source: "./media/characters/purri/front-alt.svg",
  33622. extra: 450/420,
  33623. bottom: 26/476
  33624. }
  33625. },
  33626. boots: {
  33627. height: math.unit(5.5, "feet"),
  33628. name: "Boots",
  33629. image: {
  33630. source: "./media/characters/purri/boots.svg",
  33631. extra: 905/853,
  33632. bottom: 18/923
  33633. }
  33634. },
  33635. lying: {
  33636. height: math.unit(2, "feet"),
  33637. name: "Lying",
  33638. image: {
  33639. source: "./media/characters/purri/lying.svg",
  33640. extra: 940/843,
  33641. bottom: 146/1086
  33642. }
  33643. },
  33644. devious: {
  33645. height: math.unit(1.77, "feet"),
  33646. name: "Devious",
  33647. image: {
  33648. source: "./media/characters/purri/devious.svg",
  33649. extra: 1440/1155,
  33650. bottom: 147/1587
  33651. }
  33652. },
  33653. bean: {
  33654. height: math.unit(1.94, "feet"),
  33655. name: "Bean",
  33656. image: {
  33657. source: "./media/characters/purri/bean.svg"
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Micro",
  33664. height: math.unit(1, "mm")
  33665. },
  33666. {
  33667. name: "Normal",
  33668. height: math.unit(6 + 5/12, "feet"),
  33669. default: true
  33670. },
  33671. {
  33672. name: "Macro :3c",
  33673. height: math.unit(2, "miles")
  33674. },
  33675. ]
  33676. ))
  33677. characterMakers.push(() => makeCharacter(
  33678. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33679. {
  33680. front: {
  33681. height: math.unit(6 + 2/12, "feet"),
  33682. weight: math.unit(250, "lb"),
  33683. name: "Front",
  33684. image: {
  33685. source: "./media/characters/moonlight/front.svg",
  33686. extra: 1044/908,
  33687. bottom: 56/1100
  33688. }
  33689. },
  33690. feral: {
  33691. height: math.unit(3 + 1/12, "feet"),
  33692. weight: math.unit(50, "kg"),
  33693. name: "Feral",
  33694. image: {
  33695. source: "./media/characters/moonlight/feral.svg",
  33696. extra: 3705/2791,
  33697. bottom: 145/3850
  33698. }
  33699. },
  33700. paw: {
  33701. height: math.unit(1, "feet"),
  33702. name: "Paw",
  33703. image: {
  33704. source: "./media/characters/moonlight/paw.svg"
  33705. }
  33706. },
  33707. paws: {
  33708. height: math.unit(0.98, "feet"),
  33709. name: "Paws",
  33710. image: {
  33711. source: "./media/characters/moonlight/paws.svg",
  33712. extra: 939/939,
  33713. bottom: 50/989
  33714. }
  33715. },
  33716. mouth: {
  33717. height: math.unit(0.48, "feet"),
  33718. name: "Mouth",
  33719. image: {
  33720. source: "./media/characters/moonlight/mouth.svg"
  33721. }
  33722. },
  33723. dick: {
  33724. height: math.unit(1.46, "feet"),
  33725. name: "Dick",
  33726. image: {
  33727. source: "./media/characters/moonlight/dick.svg"
  33728. }
  33729. },
  33730. },
  33731. [
  33732. {
  33733. name: "Normal",
  33734. height: math.unit(6 + 2/12, "feet"),
  33735. default: true
  33736. },
  33737. {
  33738. name: "Macro",
  33739. height: math.unit(300, "feet")
  33740. },
  33741. {
  33742. name: "Macro+",
  33743. height: math.unit(1, "mile")
  33744. },
  33745. {
  33746. name: "Mt. Moon",
  33747. height: math.unit(5, "miles")
  33748. },
  33749. {
  33750. name: "Megamacro",
  33751. height: math.unit(15, "miles")
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33757. {
  33758. back: {
  33759. height: math.unit(6, "feet"),
  33760. weight: math.unit(150, "lb"),
  33761. name: "Back",
  33762. image: {
  33763. source: "./media/characters/sylen/back.svg",
  33764. extra: 1335/1273,
  33765. bottom: 107/1442
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Normal",
  33772. height: math.unit(5 + 5/12, "feet")
  33773. },
  33774. {
  33775. name: "Megamacro",
  33776. height: math.unit(3, "miles"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33783. {
  33784. front: {
  33785. height: math.unit(6, "feet"),
  33786. weight: math.unit(190, "lb"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/huttser/front.svg",
  33790. extra: 1152/1058,
  33791. bottom: 23/1175
  33792. }
  33793. },
  33794. side: {
  33795. height: math.unit(6, "feet"),
  33796. weight: math.unit(190, "lb"),
  33797. name: "Side",
  33798. image: {
  33799. source: "./media/characters/huttser/side.svg",
  33800. extra: 1174/1065,
  33801. bottom: 18/1192
  33802. }
  33803. },
  33804. back: {
  33805. height: math.unit(6, "feet"),
  33806. weight: math.unit(190, "lb"),
  33807. name: "Back",
  33808. image: {
  33809. source: "./media/characters/huttser/back.svg",
  33810. extra: 1158/1056,
  33811. bottom: 12/1170
  33812. }
  33813. },
  33814. },
  33815. [
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33820. {
  33821. side: {
  33822. height: math.unit(12 + 9/12, "feet"),
  33823. weight: math.unit(15000, "lb"),
  33824. name: "Side",
  33825. image: {
  33826. source: "./media/characters/faan/side.svg",
  33827. extra: 2747/2697,
  33828. bottom: 0/2747
  33829. }
  33830. },
  33831. front: {
  33832. height: math.unit(12 + 9/12, "feet"),
  33833. weight: math.unit(15000, "lb"),
  33834. name: "Front",
  33835. image: {
  33836. source: "./media/characters/faan/front.svg",
  33837. extra: 607/571,
  33838. bottom: 24/631
  33839. }
  33840. },
  33841. head: {
  33842. height: math.unit(2.85, "feet"),
  33843. name: "Head",
  33844. image: {
  33845. source: "./media/characters/faan/head.svg"
  33846. }
  33847. },
  33848. headAlt: {
  33849. height: math.unit(3.13, "feet"),
  33850. name: "Head-alt",
  33851. image: {
  33852. source: "./media/characters/faan/head-alt.svg"
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(12 + 9/12, "feet"),
  33860. default: true
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(6, "feet"),
  33869. weight: math.unit(300, "lb"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/tanio/front.svg",
  33873. extra: 711/673,
  33874. bottom: 25/736
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(6, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33888. {
  33889. front: {
  33890. height: math.unit(3, "inches"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/noboru/front.svg",
  33894. extra: 1039/932,
  33895. bottom: 18/1057
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Micro",
  33902. height: math.unit(3, "inches"),
  33903. default: true
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33909. {
  33910. front: {
  33911. height: math.unit(1.85, "meters"),
  33912. weight: math.unit(80, "kg"),
  33913. name: "Front",
  33914. image: {
  33915. source: "./media/characters/daniel-barrett/front.svg",
  33916. extra: 355/337,
  33917. bottom: 9/364
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Pico",
  33924. height: math.unit(0.0433, "mm")
  33925. },
  33926. {
  33927. name: "Nano",
  33928. height: math.unit(1.5, "mm")
  33929. },
  33930. {
  33931. name: "Micro",
  33932. height: math.unit(5.3, "cm"),
  33933. default: true
  33934. },
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(1.85, "meters")
  33938. },
  33939. {
  33940. name: "Macro",
  33941. height: math.unit(64.7, "meters")
  33942. },
  33943. {
  33944. name: "Megamacro",
  33945. height: math.unit(2.26, "km")
  33946. },
  33947. {
  33948. name: "Gigamacro",
  33949. height: math.unit(79, "km")
  33950. },
  33951. {
  33952. name: "Teramacro",
  33953. height: math.unit(2765, "km")
  33954. },
  33955. {
  33956. name: "Petamacro",
  33957. height: math.unit(96678, "km")
  33958. },
  33959. ]
  33960. ))
  33961. characterMakers.push(() => makeCharacter(
  33962. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33963. {
  33964. front: {
  33965. height: math.unit(30, "meters"),
  33966. weight: math.unit(400, "tons"),
  33967. name: "Front",
  33968. image: {
  33969. source: "./media/characters/zeel/front.svg",
  33970. extra: 2599/2599,
  33971. bottom: 226/2825
  33972. }
  33973. },
  33974. },
  33975. [
  33976. {
  33977. name: "Macro",
  33978. height: math.unit(30, "meters"),
  33979. default: true
  33980. },
  33981. ]
  33982. ))
  33983. characterMakers.push(() => makeCharacter(
  33984. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33985. {
  33986. front: {
  33987. height: math.unit(6 + 7/12, "feet"),
  33988. weight: math.unit(210, "lb"),
  33989. name: "Front",
  33990. image: {
  33991. source: "./media/characters/tarn/front.svg",
  33992. extra: 3517/3220,
  33993. bottom: 91/3608
  33994. }
  33995. },
  33996. back: {
  33997. height: math.unit(6 + 7/12, "feet"),
  33998. weight: math.unit(210, "lb"),
  33999. name: "Back",
  34000. image: {
  34001. source: "./media/characters/tarn/back.svg",
  34002. extra: 3566/3241,
  34003. bottom: 34/3600
  34004. }
  34005. },
  34006. dick: {
  34007. height: math.unit(1.65, "feet"),
  34008. name: "Dick",
  34009. image: {
  34010. source: "./media/characters/tarn/dick.svg"
  34011. }
  34012. },
  34013. paw: {
  34014. height: math.unit(1.80, "feet"),
  34015. name: "Paw",
  34016. image: {
  34017. source: "./media/characters/tarn/paw.svg"
  34018. }
  34019. },
  34020. tongue: {
  34021. height: math.unit(0.97, "feet"),
  34022. name: "Tongue",
  34023. image: {
  34024. source: "./media/characters/tarn/tongue.svg"
  34025. }
  34026. },
  34027. },
  34028. [
  34029. {
  34030. name: "Micro",
  34031. height: math.unit(4, "inches")
  34032. },
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(6 + 7/12, "feet"),
  34036. default: true
  34037. },
  34038. {
  34039. name: "Macro",
  34040. height: math.unit(300, "feet")
  34041. },
  34042. ]
  34043. ))
  34044. characterMakers.push(() => makeCharacter(
  34045. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34046. {
  34047. front: {
  34048. height: math.unit(5 + 7/12, "feet"),
  34049. weight: math.unit(80, "kg"),
  34050. name: "Front",
  34051. image: {
  34052. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34053. extra: 3023/2865,
  34054. bottom: 33/3056
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(5 + 7/12, "feet"),
  34059. weight: math.unit(80, "kg"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34063. extra: 3020/2886,
  34064. bottom: 30/3050
  34065. }
  34066. },
  34067. dick: {
  34068. height: math.unit(0.98, "feet"),
  34069. name: "Dick",
  34070. image: {
  34071. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34072. }
  34073. },
  34074. anatomy: {
  34075. height: math.unit(2.86, "feet"),
  34076. name: "Anatomy",
  34077. image: {
  34078. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34079. }
  34080. },
  34081. },
  34082. [
  34083. {
  34084. name: "Really Small",
  34085. height: math.unit(2, "inches")
  34086. },
  34087. {
  34088. name: "Micro",
  34089. height: math.unit(5.583, "inches")
  34090. },
  34091. {
  34092. name: "Normal",
  34093. height: math.unit(5 + 7/12, "feet"),
  34094. default: true
  34095. },
  34096. {
  34097. name: "Macro",
  34098. height: math.unit(67, "feet")
  34099. },
  34100. {
  34101. name: "Megamacro",
  34102. height: math.unit(134, "feet")
  34103. },
  34104. ]
  34105. ))
  34106. characterMakers.push(() => makeCharacter(
  34107. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34108. {
  34109. front: {
  34110. height: math.unit(9, "feet"),
  34111. weight: math.unit(120, "lb"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/sally/front.svg",
  34115. extra: 1506/1349,
  34116. bottom: 66/1572
  34117. }
  34118. },
  34119. },
  34120. [
  34121. {
  34122. name: "Normal",
  34123. height: math.unit(9, "feet"),
  34124. default: true
  34125. },
  34126. ]
  34127. ))
  34128. characterMakers.push(() => makeCharacter(
  34129. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34130. {
  34131. front: {
  34132. height: math.unit(8, "feet"),
  34133. weight: math.unit(900, "lb"),
  34134. name: "Front",
  34135. image: {
  34136. source: "./media/characters/owen/front.svg",
  34137. extra: 1761/1657,
  34138. bottom: 74/1835
  34139. }
  34140. },
  34141. side: {
  34142. height: math.unit(8, "feet"),
  34143. weight: math.unit(900, "lb"),
  34144. name: "Side",
  34145. image: {
  34146. source: "./media/characters/owen/side.svg",
  34147. extra: 1797/1734,
  34148. bottom: 30/1827
  34149. }
  34150. },
  34151. back: {
  34152. height: math.unit(8, "feet"),
  34153. weight: math.unit(900, "lb"),
  34154. name: "Back",
  34155. image: {
  34156. source: "./media/characters/owen/back.svg",
  34157. extra: 1796/1706,
  34158. bottom: 59/1855
  34159. }
  34160. },
  34161. maw: {
  34162. height: math.unit(1.76, "feet"),
  34163. name: "Maw",
  34164. image: {
  34165. source: "./media/characters/owen/maw.svg"
  34166. }
  34167. },
  34168. },
  34169. [
  34170. {
  34171. name: "Normal",
  34172. height: math.unit(8, "feet"),
  34173. default: true
  34174. },
  34175. ]
  34176. ))
  34177. characterMakers.push(() => makeCharacter(
  34178. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34179. {
  34180. front: {
  34181. height: math.unit(4, "feet"),
  34182. weight: math.unit(400, "lb"),
  34183. name: "Front",
  34184. image: {
  34185. source: "./media/characters/ryth/front.svg",
  34186. extra: 1920/1748,
  34187. bottom: 42/1962
  34188. }
  34189. },
  34190. back: {
  34191. height: math.unit(4, "feet"),
  34192. weight: math.unit(400, "lb"),
  34193. name: "Back",
  34194. image: {
  34195. source: "./media/characters/ryth/back.svg",
  34196. extra: 1897/1690,
  34197. bottom: 89/1986
  34198. }
  34199. },
  34200. mouth: {
  34201. height: math.unit(1.39, "feet"),
  34202. name: "Mouth",
  34203. image: {
  34204. source: "./media/characters/ryth/mouth.svg"
  34205. }
  34206. },
  34207. tailmaw: {
  34208. height: math.unit(1.23, "feet"),
  34209. name: "Tailmaw",
  34210. image: {
  34211. source: "./media/characters/ryth/tailmaw.svg"
  34212. }
  34213. },
  34214. goia: {
  34215. height: math.unit(4, "meters"),
  34216. weight: math.unit(10800, "lb"),
  34217. name: "Goia",
  34218. image: {
  34219. source: "./media/characters/ryth/goia.svg",
  34220. extra: 745/640,
  34221. bottom: 107/852
  34222. }
  34223. },
  34224. goiaFront: {
  34225. height: math.unit(4, "meters"),
  34226. weight: math.unit(10800, "lb"),
  34227. name: "Goia (Front)",
  34228. image: {
  34229. source: "./media/characters/ryth/goia-front.svg",
  34230. extra: 750/586,
  34231. bottom: 114/864
  34232. }
  34233. },
  34234. goiaMaw: {
  34235. height: math.unit(5.55, "feet"),
  34236. name: "Goia Maw",
  34237. image: {
  34238. source: "./media/characters/ryth/goia-maw.svg"
  34239. }
  34240. },
  34241. goiaForepaw: {
  34242. height: math.unit(3.5, "feet"),
  34243. name: "Goia Forepaw",
  34244. image: {
  34245. source: "./media/characters/ryth/goia-forepaw.svg"
  34246. }
  34247. },
  34248. goiaHindpaw: {
  34249. height: math.unit(5.55, "feet"),
  34250. name: "Goia Hindpaw",
  34251. image: {
  34252. source: "./media/characters/ryth/goia-hindpaw.svg"
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(4, "feet"),
  34260. default: true
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34266. {
  34267. front: {
  34268. height: math.unit(7, "feet"),
  34269. weight: math.unit(180, "lb"),
  34270. name: "Front",
  34271. image: {
  34272. source: "./media/characters/necrolance/front.svg",
  34273. extra: 1062/947,
  34274. bottom: 41/1103
  34275. }
  34276. },
  34277. back: {
  34278. height: math.unit(7, "feet"),
  34279. weight: math.unit(180, "lb"),
  34280. name: "Back",
  34281. image: {
  34282. source: "./media/characters/necrolance/back.svg",
  34283. extra: 1045/984,
  34284. bottom: 14/1059
  34285. }
  34286. },
  34287. wing: {
  34288. height: math.unit(2.67, "feet"),
  34289. name: "Wing",
  34290. image: {
  34291. source: "./media/characters/necrolance/wing.svg"
  34292. }
  34293. },
  34294. },
  34295. [
  34296. {
  34297. name: "Normal",
  34298. height: math.unit(7, "feet"),
  34299. default: true
  34300. },
  34301. ]
  34302. ))
  34303. characterMakers.push(() => makeCharacter(
  34304. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34305. {
  34306. front: {
  34307. height: math.unit(76, "meters"),
  34308. weight: math.unit(30000, "tons"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/tyler/front.svg",
  34312. extra: 1640/1640,
  34313. bottom: 114/1754
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Macro",
  34320. height: math.unit(76, "meters"),
  34321. default: true
  34322. },
  34323. ]
  34324. ))
  34325. characterMakers.push(() => makeCharacter(
  34326. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34327. {
  34328. front: {
  34329. height: math.unit(4 + 11/12, "feet"),
  34330. weight: math.unit(132, "lb"),
  34331. name: "Front",
  34332. image: {
  34333. source: "./media/characters/icey/front.svg",
  34334. extra: 2750/2550,
  34335. bottom: 33/2783
  34336. }
  34337. },
  34338. back: {
  34339. height: math.unit(4 + 11/12, "feet"),
  34340. weight: math.unit(132, "lb"),
  34341. name: "Back",
  34342. image: {
  34343. source: "./media/characters/icey/back.svg",
  34344. extra: 2624/2481,
  34345. bottom: 35/2659
  34346. }
  34347. },
  34348. },
  34349. [
  34350. {
  34351. name: "Normal",
  34352. height: math.unit(4 + 11/12, "feet"),
  34353. default: true
  34354. },
  34355. ]
  34356. ))
  34357. characterMakers.push(() => makeCharacter(
  34358. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34359. {
  34360. front: {
  34361. height: math.unit(100, "feet"),
  34362. weight: math.unit(0, "lb"),
  34363. name: "Front",
  34364. image: {
  34365. source: "./media/characters/smile/front.svg",
  34366. extra: 2983/2912,
  34367. bottom: 162/3145
  34368. }
  34369. },
  34370. back: {
  34371. height: math.unit(100, "feet"),
  34372. weight: math.unit(0, "lb"),
  34373. name: "Back",
  34374. image: {
  34375. source: "./media/characters/smile/back.svg",
  34376. extra: 3143/3031,
  34377. bottom: 91/3234
  34378. }
  34379. },
  34380. head: {
  34381. height: math.unit(26.3, "feet"),
  34382. weight: math.unit(0, "lb"),
  34383. name: "Head",
  34384. image: {
  34385. source: "./media/characters/smile/head.svg"
  34386. }
  34387. },
  34388. collar: {
  34389. height: math.unit(5.3, "feet"),
  34390. weight: math.unit(0, "lb"),
  34391. name: "Collar",
  34392. image: {
  34393. source: "./media/characters/smile/collar.svg"
  34394. }
  34395. },
  34396. },
  34397. [
  34398. {
  34399. name: "Macro",
  34400. height: math.unit(100, "feet"),
  34401. default: true
  34402. },
  34403. ]
  34404. ))
  34405. characterMakers.push(() => makeCharacter(
  34406. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34407. {
  34408. dragon: {
  34409. height: math.unit(26, "feet"),
  34410. weight: math.unit(36, "tons"),
  34411. name: "Dragon",
  34412. image: {
  34413. source: "./media/characters/arimphae/dragon.svg",
  34414. extra: 1574/983,
  34415. bottom: 357/1931
  34416. }
  34417. },
  34418. drake: {
  34419. height: math.unit(9, "feet"),
  34420. weight: math.unit(1.5, "tons"),
  34421. name: "Drake",
  34422. image: {
  34423. source: "./media/characters/arimphae/drake.svg",
  34424. extra: 1120/925,
  34425. bottom: 435/1555
  34426. }
  34427. },
  34428. },
  34429. [
  34430. {
  34431. name: "Small",
  34432. height: math.unit(26*5/9, "feet")
  34433. },
  34434. {
  34435. name: "Normal",
  34436. height: math.unit(26, "feet"),
  34437. default: true
  34438. },
  34439. ]
  34440. ))
  34441. characterMakers.push(() => makeCharacter(
  34442. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34443. {
  34444. front: {
  34445. height: math.unit(8 + 9/12, "feet"),
  34446. name: "Front",
  34447. image: {
  34448. source: "./media/characters/xander/front.svg",
  34449. extra: 1237/974,
  34450. bottom: 94/1331
  34451. }
  34452. },
  34453. },
  34454. [
  34455. {
  34456. name: "Normal",
  34457. height: math.unit(8 + 9/12, "feet"),
  34458. default: true
  34459. },
  34460. {
  34461. name: "Gaze Grabber",
  34462. height: math.unit(13 + 8/12, "feet")
  34463. },
  34464. {
  34465. name: "Jaw Dropper",
  34466. height: math.unit(27, "feet")
  34467. },
  34468. {
  34469. name: "Show Stopper",
  34470. height: math.unit(136, "feet")
  34471. },
  34472. {
  34473. name: "Superstar",
  34474. height: math.unit(1.9e6, "miles")
  34475. },
  34476. ]
  34477. ))
  34478. characterMakers.push(() => makeCharacter(
  34479. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34480. {
  34481. side: {
  34482. height: math.unit(2100, "feet"),
  34483. name: "Side",
  34484. image: {
  34485. source: "./media/characters/osiris/side.svg",
  34486. extra: 1105/939,
  34487. bottom: 167/1272
  34488. }
  34489. },
  34490. },
  34491. [
  34492. {
  34493. name: "Macro",
  34494. height: math.unit(2100, "feet"),
  34495. default: true
  34496. },
  34497. ]
  34498. ))
  34499. characterMakers.push(() => makeCharacter(
  34500. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34501. {
  34502. front: {
  34503. height: math.unit(6 + 8/12, "feet"),
  34504. weight: math.unit(225, "lb"),
  34505. name: "Front",
  34506. image: {
  34507. source: "./media/characters/rhys-londe/front.svg",
  34508. extra: 2258/2141,
  34509. bottom: 188/2446
  34510. }
  34511. },
  34512. back: {
  34513. height: math.unit(6 + 8/12, "feet"),
  34514. weight: math.unit(225, "lb"),
  34515. name: "Back",
  34516. image: {
  34517. source: "./media/characters/rhys-londe/back.svg",
  34518. extra: 2237/2137,
  34519. bottom: 63/2300
  34520. }
  34521. },
  34522. frontNsfw: {
  34523. height: math.unit(6 + 8/12, "feet"),
  34524. weight: math.unit(225, "lb"),
  34525. name: "Front (NSFW)",
  34526. image: {
  34527. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34528. extra: 2258/2141,
  34529. bottom: 188/2446
  34530. }
  34531. },
  34532. backNsfw: {
  34533. height: math.unit(6 + 8/12, "feet"),
  34534. weight: math.unit(225, "lb"),
  34535. name: "Back (NSFW)",
  34536. image: {
  34537. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34538. extra: 2237/2137,
  34539. bottom: 63/2300
  34540. }
  34541. },
  34542. dick: {
  34543. height: math.unit(30, "inches"),
  34544. name: "Dick",
  34545. image: {
  34546. source: "./media/characters/rhys-londe/dick.svg"
  34547. }
  34548. },
  34549. maw: {
  34550. height: math.unit(1.6, "feet"),
  34551. name: "Maw",
  34552. image: {
  34553. source: "./media/characters/rhys-londe/maw.svg"
  34554. }
  34555. },
  34556. },
  34557. [
  34558. {
  34559. name: "Normal",
  34560. height: math.unit(6 + 8/12, "feet"),
  34561. default: true
  34562. },
  34563. ]
  34564. ))
  34565. characterMakers.push(() => makeCharacter(
  34566. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34567. {
  34568. front: {
  34569. height: math.unit(3 + 10/12, "feet"),
  34570. weight: math.unit(90, "lb"),
  34571. name: "Front",
  34572. image: {
  34573. source: "./media/characters/taivas-ensim/front.svg",
  34574. extra: 1327/1216,
  34575. bottom: 96/1423
  34576. }
  34577. },
  34578. back: {
  34579. height: math.unit(3 + 10/12, "feet"),
  34580. weight: math.unit(90, "lb"),
  34581. name: "Back",
  34582. image: {
  34583. source: "./media/characters/taivas-ensim/back.svg",
  34584. extra: 1355/1247,
  34585. bottom: 11/1366
  34586. }
  34587. },
  34588. frontNsfw: {
  34589. height: math.unit(3 + 10/12, "feet"),
  34590. weight: math.unit(90, "lb"),
  34591. name: "Front (NSFW)",
  34592. image: {
  34593. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34594. extra: 1327/1216,
  34595. bottom: 96/1423
  34596. }
  34597. },
  34598. backNsfw: {
  34599. height: math.unit(3 + 10/12, "feet"),
  34600. weight: math.unit(90, "lb"),
  34601. name: "Back (NSFW)",
  34602. image: {
  34603. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34604. extra: 1355/1247,
  34605. bottom: 11/1366
  34606. }
  34607. },
  34608. },
  34609. [
  34610. {
  34611. name: "Normal",
  34612. height: math.unit(3 + 10/12, "feet"),
  34613. default: true
  34614. },
  34615. ]
  34616. ))
  34617. characterMakers.push(() => makeCharacter(
  34618. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34619. {
  34620. front: {
  34621. height: math.unit(9 + 6/12, "feet"),
  34622. weight: math.unit(940, "lb"),
  34623. name: "Front",
  34624. image: {
  34625. source: "./media/characters/byliss/front.svg",
  34626. extra: 1327/1290,
  34627. bottom: 82/1409
  34628. }
  34629. },
  34630. back: {
  34631. height: math.unit(9 + 6/12, "feet"),
  34632. weight: math.unit(940, "lb"),
  34633. name: "Back",
  34634. image: {
  34635. source: "./media/characters/byliss/back.svg",
  34636. extra: 1376/1349,
  34637. bottom: 9/1385
  34638. }
  34639. },
  34640. frontNsfw: {
  34641. height: math.unit(9 + 6/12, "feet"),
  34642. weight: math.unit(940, "lb"),
  34643. name: "Front (NSFW)",
  34644. image: {
  34645. source: "./media/characters/byliss/front-nsfw.svg",
  34646. extra: 1327/1290,
  34647. bottom: 82/1409
  34648. }
  34649. },
  34650. backNsfw: {
  34651. height: math.unit(9 + 6/12, "feet"),
  34652. weight: math.unit(940, "lb"),
  34653. name: "Back (NSFW)",
  34654. image: {
  34655. source: "./media/characters/byliss/back-nsfw.svg",
  34656. extra: 1376/1349,
  34657. bottom: 9/1385
  34658. }
  34659. },
  34660. },
  34661. [
  34662. {
  34663. name: "Normal",
  34664. height: math.unit(9 + 6/12, "feet"),
  34665. default: true
  34666. },
  34667. ]
  34668. ))
  34669. characterMakers.push(() => makeCharacter(
  34670. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34671. {
  34672. front: {
  34673. height: math.unit(5 + 2/12, "feet"),
  34674. weight: math.unit(200, "lb"),
  34675. name: "Front",
  34676. image: {
  34677. source: "./media/characters/noraly/front.svg",
  34678. extra: 4985/4773,
  34679. bottom: 150/5135
  34680. }
  34681. },
  34682. full: {
  34683. height: math.unit(5 + 2/12, "feet"),
  34684. weight: math.unit(164, "lb"),
  34685. name: "Full",
  34686. image: {
  34687. source: "./media/characters/noraly/full.svg",
  34688. extra: 1114/1059,
  34689. bottom: 35/1149
  34690. }
  34691. },
  34692. fuller: {
  34693. height: math.unit(5 + 2/12, "feet"),
  34694. weight: math.unit(230, "lb"),
  34695. name: "Fuller",
  34696. image: {
  34697. source: "./media/characters/noraly/fuller.svg",
  34698. extra: 1114/1059,
  34699. bottom: 35/1149
  34700. }
  34701. },
  34702. fullest: {
  34703. height: math.unit(5 + 2/12, "feet"),
  34704. weight: math.unit(300, "lb"),
  34705. name: "Fullest",
  34706. image: {
  34707. source: "./media/characters/noraly/fullest.svg",
  34708. extra: 1114/1059,
  34709. bottom: 35/1149
  34710. }
  34711. },
  34712. },
  34713. [
  34714. {
  34715. name: "Normal",
  34716. height: math.unit(5 + 2/12, "feet"),
  34717. default: true
  34718. },
  34719. ]
  34720. ))
  34721. characterMakers.push(() => makeCharacter(
  34722. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34723. {
  34724. front: {
  34725. height: math.unit(5 + 2/12, "feet"),
  34726. weight: math.unit(210, "lb"),
  34727. name: "Front",
  34728. image: {
  34729. source: "./media/characters/pera/front.svg",
  34730. extra: 1560/1531,
  34731. bottom: 165/1725
  34732. }
  34733. },
  34734. back: {
  34735. height: math.unit(5 + 2/12, "feet"),
  34736. weight: math.unit(210, "lb"),
  34737. name: "Back",
  34738. image: {
  34739. source: "./media/characters/pera/back.svg",
  34740. extra: 1523/1493,
  34741. bottom: 152/1675
  34742. }
  34743. },
  34744. dick: {
  34745. height: math.unit(2.4, "feet"),
  34746. name: "Dick",
  34747. image: {
  34748. source: "./media/characters/pera/dick.svg"
  34749. }
  34750. },
  34751. },
  34752. [
  34753. {
  34754. name: "Normal",
  34755. height: math.unit(5 + 2/12, "feet"),
  34756. default: true
  34757. },
  34758. ]
  34759. ))
  34760. characterMakers.push(() => makeCharacter(
  34761. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34762. {
  34763. front: {
  34764. height: math.unit(12, "feet"),
  34765. weight: math.unit(3200, "lb"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/julian/front.svg",
  34769. extra: 2962/2701,
  34770. bottom: 184/3146
  34771. }
  34772. },
  34773. maw: {
  34774. height: math.unit(5.35, "feet"),
  34775. name: "Maw",
  34776. image: {
  34777. source: "./media/characters/julian/maw.svg"
  34778. }
  34779. },
  34780. paw: {
  34781. height: math.unit(3.07, "feet"),
  34782. name: "Paw",
  34783. image: {
  34784. source: "./media/characters/julian/paw.svg"
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Default",
  34791. height: math.unit(12, "feet"),
  34792. default: true
  34793. },
  34794. {
  34795. name: "Big",
  34796. height: math.unit(50, "feet")
  34797. },
  34798. {
  34799. name: "Really Big",
  34800. height: math.unit(1, "mile")
  34801. },
  34802. {
  34803. name: "Extremely Big",
  34804. height: math.unit(100, "miles")
  34805. },
  34806. {
  34807. name: "Planet Hugger",
  34808. height: math.unit(200, "megameters")
  34809. },
  34810. {
  34811. name: "Unreasonably Big",
  34812. height: math.unit(1e300, "meters")
  34813. },
  34814. ]
  34815. ))
  34816. characterMakers.push(() => makeCharacter(
  34817. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34818. {
  34819. solgooleo: {
  34820. height: math.unit(4, "meters"),
  34821. weight: math.unit(6000*1.5, "kg"),
  34822. volume: math.unit(6000, "liters"),
  34823. name: "Solgooleo",
  34824. image: {
  34825. source: "./media/characters/pi/solgooleo.svg",
  34826. extra: 388/331,
  34827. bottom: 29/417
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(4, "meters"),
  34835. default: true
  34836. },
  34837. ]
  34838. ))
  34839. characterMakers.push(() => makeCharacter(
  34840. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34841. {
  34842. front: {
  34843. height: math.unit(8, "feet"),
  34844. weight: math.unit(4, "tons"),
  34845. name: "Front",
  34846. image: {
  34847. source: "./media/characters/shaun/front.svg",
  34848. extra: 503/495,
  34849. bottom: 20/523
  34850. }
  34851. },
  34852. back: {
  34853. height: math.unit(8, "feet"),
  34854. weight: math.unit(4, "tons"),
  34855. name: "Back",
  34856. image: {
  34857. source: "./media/characters/shaun/back.svg",
  34858. extra: 487/480,
  34859. bottom: 20/507
  34860. }
  34861. },
  34862. },
  34863. [
  34864. {
  34865. name: "Lorg",
  34866. height: math.unit(8, "feet"),
  34867. default: true
  34868. },
  34869. ]
  34870. ))
  34871. characterMakers.push(() => makeCharacter(
  34872. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34873. {
  34874. frontAnthro: {
  34875. height: math.unit(7, "feet"),
  34876. name: "Front",
  34877. image: {
  34878. source: "./media/characters/sini/front-anthro.svg",
  34879. extra: 726/678,
  34880. bottom: 35/761
  34881. },
  34882. form: "anthro",
  34883. default: true
  34884. },
  34885. backAnthro: {
  34886. height: math.unit(7, "feet"),
  34887. name: "Back",
  34888. image: {
  34889. source: "./media/characters/sini/back-anthro.svg",
  34890. extra: 743/701,
  34891. bottom: 12/755
  34892. },
  34893. form: "anthro",
  34894. },
  34895. frontAnthroNsfw: {
  34896. height: math.unit(7, "feet"),
  34897. name: "Front (NSFW)",
  34898. image: {
  34899. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34900. extra: 726/678,
  34901. bottom: 35/761
  34902. },
  34903. form: "anthro"
  34904. },
  34905. backAnthroNsfw: {
  34906. height: math.unit(7, "feet"),
  34907. name: "Back (NSFW)",
  34908. image: {
  34909. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34910. extra: 743/701,
  34911. bottom: 12/755
  34912. },
  34913. form: "anthro",
  34914. },
  34915. mawAnthro: {
  34916. height: math.unit(2.14, "feet"),
  34917. name: "Maw",
  34918. image: {
  34919. source: "./media/characters/sini/maw-anthro.svg"
  34920. },
  34921. form: "anthro"
  34922. },
  34923. dick: {
  34924. height: math.unit(1.45, "feet"),
  34925. name: "Dick",
  34926. image: {
  34927. source: "./media/characters/sini/dick-anthro.svg"
  34928. },
  34929. form: "anthro"
  34930. },
  34931. feral: {
  34932. height: math.unit(16, "feet"),
  34933. name: "Feral",
  34934. image: {
  34935. source: "./media/characters/sini/feral.svg",
  34936. extra: 814/605,
  34937. bottom: 11/825
  34938. },
  34939. form: "feral",
  34940. default: true
  34941. },
  34942. feralNsfw: {
  34943. height: math.unit(16, "feet"),
  34944. name: "Feral (NSFW)",
  34945. image: {
  34946. source: "./media/characters/sini/feral-nsfw.svg",
  34947. extra: 814/605,
  34948. bottom: 11/825
  34949. },
  34950. form: "feral"
  34951. },
  34952. mawFeral: {
  34953. height: math.unit(5.66, "feet"),
  34954. name: "Maw",
  34955. image: {
  34956. source: "./media/characters/sini/maw-feral.svg"
  34957. },
  34958. form: "feral",
  34959. },
  34960. pawFeral: {
  34961. height: math.unit(5.17, "feet"),
  34962. name: "Paw",
  34963. image: {
  34964. source: "./media/characters/sini/paw-feral.svg"
  34965. },
  34966. form: "feral",
  34967. },
  34968. rumpFeral: {
  34969. height: math.unit(13.11, "feet"),
  34970. name: "Rump",
  34971. image: {
  34972. source: "./media/characters/sini/rump-feral.svg"
  34973. },
  34974. form: "feral",
  34975. },
  34976. dickFeral: {
  34977. height: math.unit(1, "feet"),
  34978. name: "Dick",
  34979. image: {
  34980. source: "./media/characters/sini/dick-feral.svg"
  34981. },
  34982. form: "feral",
  34983. },
  34984. eyeFeral: {
  34985. height: math.unit(1.23, "feet"),
  34986. name: "Eye",
  34987. image: {
  34988. source: "./media/characters/sini/eye-feral.svg"
  34989. },
  34990. form: "feral",
  34991. },
  34992. },
  34993. [
  34994. {
  34995. name: "Normal",
  34996. height: math.unit(7, "feet"),
  34997. default: true,
  34998. form: "anthro"
  34999. },
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(16, "feet"),
  35003. default: true,
  35004. form: "feral"
  35005. },
  35006. ],
  35007. {
  35008. "anthro": {
  35009. name: "Anthro",
  35010. default: true
  35011. },
  35012. "feral": {
  35013. name: "Feral",
  35014. }
  35015. }
  35016. ))
  35017. characterMakers.push(() => makeCharacter(
  35018. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35019. {
  35020. side: {
  35021. height: math.unit(47.2, "meters"),
  35022. weight: math.unit(10000, "tons"),
  35023. name: "Side",
  35024. image: {
  35025. source: "./media/characters/raylldo/side.svg",
  35026. extra: 2363/642,
  35027. bottom: 221/2584
  35028. }
  35029. },
  35030. top: {
  35031. height: math.unit(240, "meters"),
  35032. weight: math.unit(10000, "tons"),
  35033. name: "Top",
  35034. image: {
  35035. source: "./media/characters/raylldo/top.svg"
  35036. }
  35037. },
  35038. bottom: {
  35039. height: math.unit(240, "meters"),
  35040. weight: math.unit(10000, "tons"),
  35041. name: "Bottom",
  35042. image: {
  35043. source: "./media/characters/raylldo/bottom.svg"
  35044. }
  35045. },
  35046. head: {
  35047. height: math.unit(38.6, "meters"),
  35048. name: "Head",
  35049. image: {
  35050. source: "./media/characters/raylldo/head.svg",
  35051. extra: 1335/1112,
  35052. bottom: 0/1335
  35053. }
  35054. },
  35055. maw: {
  35056. height: math.unit(16.37, "meters"),
  35057. name: "Maw",
  35058. image: {
  35059. source: "./media/characters/raylldo/maw.svg",
  35060. extra: 883/660,
  35061. bottom: 0/883
  35062. },
  35063. extraAttributes: {
  35064. preyCapacity: {
  35065. name: "Capacity",
  35066. power: 3,
  35067. type: "volume",
  35068. base: math.unit(1000, "people")
  35069. },
  35070. tongueSize: {
  35071. name: "Tongue Size",
  35072. power: 2,
  35073. type: "area",
  35074. base: math.unit(21, "m^2")
  35075. }
  35076. }
  35077. },
  35078. forepaw: {
  35079. height: math.unit(18, "meters"),
  35080. name: "Forepaw",
  35081. image: {
  35082. source: "./media/characters/raylldo/forepaw.svg"
  35083. }
  35084. },
  35085. hindpaw: {
  35086. height: math.unit(23, "meters"),
  35087. name: "Hindpaw",
  35088. image: {
  35089. source: "./media/characters/raylldo/hindpaw.svg"
  35090. }
  35091. },
  35092. genitals: {
  35093. height: math.unit(42, "meters"),
  35094. name: "Genitals",
  35095. image: {
  35096. source: "./media/characters/raylldo/genitals.svg"
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(47.2, "meters"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35110. {
  35111. anthroFront: {
  35112. height: math.unit(9, "feet"),
  35113. weight: math.unit(600, "lb"),
  35114. name: "Anthro (Front)",
  35115. image: {
  35116. source: "./media/characters/glint/anthro-front.svg",
  35117. extra: 1097/1018,
  35118. bottom: 28/1125
  35119. }
  35120. },
  35121. anthroBack: {
  35122. height: math.unit(9, "feet"),
  35123. weight: math.unit(600, "lb"),
  35124. name: "Anthro (Back)",
  35125. image: {
  35126. source: "./media/characters/glint/anthro-back.svg",
  35127. extra: 1154/997,
  35128. bottom: 36/1190
  35129. }
  35130. },
  35131. feral: {
  35132. height: math.unit(11, "feet"),
  35133. weight: math.unit(50000, "lb"),
  35134. name: "Feral",
  35135. image: {
  35136. source: "./media/characters/glint/feral.svg",
  35137. extra: 3035/1585,
  35138. bottom: 1169/4204
  35139. }
  35140. },
  35141. dickAnthro: {
  35142. height: math.unit(0.7, "meters"),
  35143. name: "Dick (Anthro)",
  35144. image: {
  35145. source: "./media/characters/glint/dick-anthro.svg"
  35146. }
  35147. },
  35148. dickFeral: {
  35149. height: math.unit(2.65, "meters"),
  35150. name: "Dick (Feral)",
  35151. image: {
  35152. source: "./media/characters/glint/dick-feral.svg"
  35153. }
  35154. },
  35155. slitHidden: {
  35156. height: math.unit(5.85, "meters"),
  35157. name: "Slit (Hidden)",
  35158. image: {
  35159. source: "./media/characters/glint/slit-hidden.svg"
  35160. }
  35161. },
  35162. slitErect: {
  35163. height: math.unit(5.85, "meters"),
  35164. name: "Slit (Erect)",
  35165. image: {
  35166. source: "./media/characters/glint/slit-erect.svg"
  35167. }
  35168. },
  35169. mawAnthro: {
  35170. height: math.unit(0.63, "meters"),
  35171. name: "Maw (Anthro)",
  35172. image: {
  35173. source: "./media/characters/glint/maw.svg"
  35174. }
  35175. },
  35176. mawFeral: {
  35177. height: math.unit(2.89, "meters"),
  35178. name: "Maw (Feral)",
  35179. image: {
  35180. source: "./media/characters/glint/maw.svg"
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(9, "feet"),
  35188. default: true
  35189. },
  35190. ]
  35191. ))
  35192. characterMakers.push(() => makeCharacter(
  35193. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35194. {
  35195. side: {
  35196. height: math.unit(15, "feet"),
  35197. weight: math.unit(5000, "kg"),
  35198. name: "Side",
  35199. image: {
  35200. source: "./media/characters/kairne/side.svg",
  35201. extra: 979/811,
  35202. bottom: 13/992
  35203. }
  35204. },
  35205. front: {
  35206. height: math.unit(15, "feet"),
  35207. weight: math.unit(5000, "kg"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/kairne/front.svg",
  35211. extra: 908/814,
  35212. bottom: 26/934
  35213. }
  35214. },
  35215. sideNsfw: {
  35216. height: math.unit(15, "feet"),
  35217. weight: math.unit(5000, "kg"),
  35218. name: "Side (NSFW)",
  35219. image: {
  35220. source: "./media/characters/kairne/side-nsfw.svg",
  35221. extra: 979/811,
  35222. bottom: 13/992
  35223. }
  35224. },
  35225. frontNsfw: {
  35226. height: math.unit(15, "feet"),
  35227. weight: math.unit(5000, "kg"),
  35228. name: "Front (NSFW)",
  35229. image: {
  35230. source: "./media/characters/kairne/front-nsfw.svg",
  35231. extra: 908/814,
  35232. bottom: 26/934
  35233. }
  35234. },
  35235. dickCaged: {
  35236. height: math.unit(0.65, "meters"),
  35237. name: "Dick-caged",
  35238. image: {
  35239. source: "./media/characters/kairne/dick-caged.svg"
  35240. }
  35241. },
  35242. dick: {
  35243. height: math.unit(0.79, "meters"),
  35244. name: "Dick",
  35245. image: {
  35246. source: "./media/characters/kairne/dick.svg"
  35247. }
  35248. },
  35249. genitals: {
  35250. height: math.unit(1.29, "meters"),
  35251. name: "Genitals",
  35252. image: {
  35253. source: "./media/characters/kairne/genitals.svg"
  35254. }
  35255. },
  35256. maw: {
  35257. height: math.unit(1.73, "meters"),
  35258. name: "Maw",
  35259. image: {
  35260. source: "./media/characters/kairne/maw.svg"
  35261. }
  35262. },
  35263. },
  35264. [
  35265. {
  35266. name: "Normal",
  35267. height: math.unit(15, "feet"),
  35268. default: true
  35269. },
  35270. ]
  35271. ))
  35272. characterMakers.push(() => makeCharacter(
  35273. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35274. {
  35275. front: {
  35276. height: math.unit(5 + 8/12, "feet"),
  35277. weight: math.unit(139, "lb"),
  35278. name: "Front",
  35279. image: {
  35280. source: "./media/characters/biscuit-jackal/front.svg",
  35281. extra: 2106/1961,
  35282. bottom: 58/2164
  35283. }
  35284. },
  35285. back: {
  35286. height: math.unit(5 + 8/12, "feet"),
  35287. weight: math.unit(139, "lb"),
  35288. name: "Back",
  35289. image: {
  35290. source: "./media/characters/biscuit-jackal/back.svg",
  35291. extra: 2132/1976,
  35292. bottom: 57/2189
  35293. }
  35294. },
  35295. werejackal: {
  35296. height: math.unit(6 + 3/12, "feet"),
  35297. weight: math.unit(188, "lb"),
  35298. name: "Werejackal",
  35299. image: {
  35300. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35301. extra: 2373/2178,
  35302. bottom: 53/2426
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Normal",
  35309. height: math.unit(5 + 8/12, "feet"),
  35310. default: true
  35311. },
  35312. ]
  35313. ))
  35314. characterMakers.push(() => makeCharacter(
  35315. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35316. {
  35317. front: {
  35318. height: math.unit(140, "cm"),
  35319. weight: math.unit(45, "kg"),
  35320. name: "Front",
  35321. image: {
  35322. source: "./media/characters/tayra-white/front.svg",
  35323. extra: 2229/2192,
  35324. bottom: 75/2304
  35325. }
  35326. },
  35327. },
  35328. [
  35329. {
  35330. name: "Normal",
  35331. height: math.unit(140, "cm"),
  35332. default: true
  35333. },
  35334. ]
  35335. ))
  35336. characterMakers.push(() => makeCharacter(
  35337. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35338. {
  35339. front: {
  35340. height: math.unit(4 + 5/12, "feet"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/scoop/front.svg",
  35344. extra: 1257/1136,
  35345. bottom: 69/1326
  35346. }
  35347. },
  35348. back: {
  35349. height: math.unit(4 + 5/12, "feet"),
  35350. name: "Back",
  35351. image: {
  35352. source: "./media/characters/scoop/back.svg",
  35353. extra: 1321/1152,
  35354. bottom: 32/1353
  35355. }
  35356. },
  35357. maw: {
  35358. height: math.unit(0.68, "feet"),
  35359. name: "Maw",
  35360. image: {
  35361. source: "./media/characters/scoop/maw.svg"
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Really Small",
  35368. height: math.unit(1, "mm")
  35369. },
  35370. {
  35371. name: "Micro",
  35372. height: math.unit(1, "inch")
  35373. },
  35374. {
  35375. name: "Normal",
  35376. height: math.unit(4 + 5/12, "feet"),
  35377. default: true
  35378. },
  35379. {
  35380. name: "Macro",
  35381. height: math.unit(200, "feet")
  35382. },
  35383. {
  35384. name: "Megamacro",
  35385. height: math.unit(3240, "feet")
  35386. },
  35387. {
  35388. name: "Teramacro",
  35389. height: math.unit(2500, "miles")
  35390. },
  35391. ]
  35392. ))
  35393. characterMakers.push(() => makeCharacter(
  35394. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35395. {
  35396. front: {
  35397. height: math.unit(15 + 7/12, "feet"),
  35398. weight: math.unit(1150, "tons"),
  35399. name: "Front",
  35400. image: {
  35401. source: "./media/characters/saphinara/front.svg",
  35402. extra: 1837/1643,
  35403. bottom: 84/1921
  35404. },
  35405. form: "normal",
  35406. default: true
  35407. },
  35408. side: {
  35409. height: math.unit(15 + 7/12, "feet"),
  35410. weight: math.unit(1150, "tons"),
  35411. name: "Side",
  35412. image: {
  35413. source: "./media/characters/saphinara/side.svg",
  35414. extra: 605/547,
  35415. bottom: 6/611
  35416. },
  35417. form: "normal"
  35418. },
  35419. back: {
  35420. height: math.unit(15 + 7/12, "feet"),
  35421. weight: math.unit(1150, "tons"),
  35422. name: "Back",
  35423. image: {
  35424. source: "./media/characters/saphinara/back.svg",
  35425. extra: 591/531,
  35426. bottom: 13/604
  35427. },
  35428. form: "normal"
  35429. },
  35430. frontTail: {
  35431. height: math.unit(15 + 7/12, "feet"),
  35432. weight: math.unit(1150, "tons"),
  35433. name: "Front (Full Tail)",
  35434. image: {
  35435. source: "./media/characters/saphinara/front-tail.svg",
  35436. extra: 2256/1630,
  35437. bottom: 261/2517
  35438. },
  35439. form: "normal"
  35440. },
  35441. insides: {
  35442. height: math.unit(11.92, "feet"),
  35443. name: "Insides",
  35444. image: {
  35445. source: "./media/characters/saphinara/insides.svg"
  35446. },
  35447. form: "normal"
  35448. },
  35449. head: {
  35450. height: math.unit(4.17, "feet"),
  35451. name: "Head",
  35452. image: {
  35453. source: "./media/characters/saphinara/head.svg"
  35454. },
  35455. form: "normal"
  35456. },
  35457. tongue: {
  35458. height: math.unit(4.60, "feet"),
  35459. name: "Tongue",
  35460. image: {
  35461. source: "./media/characters/saphinara/tongue.svg"
  35462. },
  35463. form: "normal"
  35464. },
  35465. headEnraged: {
  35466. height: math.unit(5.55, "feet"),
  35467. name: "Head (Enraged)",
  35468. image: {
  35469. source: "./media/characters/saphinara/head-enraged.svg"
  35470. },
  35471. form: "normal"
  35472. },
  35473. wings: {
  35474. height: math.unit(11.95, "feet"),
  35475. name: "Wings",
  35476. image: {
  35477. source: "./media/characters/saphinara/wings.svg"
  35478. },
  35479. form: "normal"
  35480. },
  35481. feathers: {
  35482. height: math.unit(8.92, "feet"),
  35483. name: "Feathers",
  35484. image: {
  35485. source: "./media/characters/saphinara/feathers.svg"
  35486. },
  35487. form: "normal"
  35488. },
  35489. shackles: {
  35490. height: math.unit(2, "feet"),
  35491. name: "Shackles",
  35492. image: {
  35493. source: "./media/characters/saphinara/shackles.svg"
  35494. },
  35495. form: "normal"
  35496. },
  35497. eyes: {
  35498. height: math.unit(1.331, "feet"),
  35499. name: "Eyes",
  35500. image: {
  35501. source: "./media/characters/saphinara/eyes.svg"
  35502. },
  35503. form: "normal"
  35504. },
  35505. eyesEnraged: {
  35506. height: math.unit(1.331, "feet"),
  35507. name: "Eyes (Enraged)",
  35508. image: {
  35509. source: "./media/characters/saphinara/eyes-enraged.svg"
  35510. },
  35511. form: "normal"
  35512. },
  35513. trueFormSide: {
  35514. height: math.unit(200, "feet"),
  35515. weight: math.unit(1e7, "tons"),
  35516. name: "Side",
  35517. image: {
  35518. source: "./media/characters/saphinara/true-form-side.svg",
  35519. extra: 1399/770,
  35520. bottom: 97/1496
  35521. },
  35522. form: "true-form",
  35523. default: true
  35524. },
  35525. trueFormMaw: {
  35526. height: math.unit(71.5, "feet"),
  35527. name: "Maw",
  35528. image: {
  35529. source: "./media/characters/saphinara/true-form-maw.svg",
  35530. extra: 2302/1453,
  35531. bottom: 0/2302
  35532. },
  35533. form: "true-form"
  35534. },
  35535. meowberusSide: {
  35536. height: math.unit(75, "feet"),
  35537. weight: math.unit(180000, "kg"),
  35538. preyCapacity: math.unit(50000, "people"),
  35539. name: "Side",
  35540. image: {
  35541. source: "./media/characters/saphinara/meowberus-side.svg",
  35542. extra: 1400/711,
  35543. bottom: 126/1526
  35544. },
  35545. form: "meowberus",
  35546. extraAttributes: {
  35547. "pawArea": {
  35548. name: "Paw Size",
  35549. power: 2,
  35550. type: "area",
  35551. base: math.unit(35, "m^2")
  35552. }
  35553. }
  35554. },
  35555. },
  35556. [
  35557. {
  35558. name: "Normal",
  35559. height: math.unit(15 + 7/12, "feet"),
  35560. default: true,
  35561. form: "normal"
  35562. },
  35563. {
  35564. name: "Angry",
  35565. height: math.unit(30 + 6/12, "feet"),
  35566. form: "normal"
  35567. },
  35568. {
  35569. name: "Enraged",
  35570. height: math.unit(102 + 1/12, "feet"),
  35571. form: "normal"
  35572. },
  35573. {
  35574. name: "True",
  35575. height: math.unit(200, "feet"),
  35576. default: true,
  35577. form: "true-form"
  35578. },
  35579. {
  35580. name: "Normal",
  35581. height: math.unit(75, "feet"),
  35582. default: true,
  35583. form: "meowberus"
  35584. },
  35585. ],
  35586. {
  35587. "normal": {
  35588. name: "Normal",
  35589. default: true
  35590. },
  35591. "true-form": {
  35592. name: "True Form"
  35593. },
  35594. "meowberus": {
  35595. name: "Meowberus",
  35596. },
  35597. }
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35601. {
  35602. front: {
  35603. height: math.unit(6 + 8/12, "feet"),
  35604. weight: math.unit(300, "lb"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/jrain/front.svg",
  35608. extra: 3039/2865,
  35609. bottom: 399/3438
  35610. }
  35611. },
  35612. back: {
  35613. height: math.unit(6 + 8/12, "feet"),
  35614. weight: math.unit(300, "lb"),
  35615. name: "Back",
  35616. image: {
  35617. source: "./media/characters/jrain/back.svg",
  35618. extra: 3089/2938,
  35619. bottom: 172/3261
  35620. }
  35621. },
  35622. head: {
  35623. height: math.unit(2.14, "feet"),
  35624. name: "Head",
  35625. image: {
  35626. source: "./media/characters/jrain/head.svg"
  35627. }
  35628. },
  35629. maw: {
  35630. height: math.unit(1.77, "feet"),
  35631. name: "Maw",
  35632. image: {
  35633. source: "./media/characters/jrain/maw.svg"
  35634. }
  35635. },
  35636. leftHand: {
  35637. height: math.unit(1.1, "feet"),
  35638. name: "Left Hand",
  35639. image: {
  35640. source: "./media/characters/jrain/left-hand.svg"
  35641. }
  35642. },
  35643. rightHand: {
  35644. height: math.unit(1.1, "feet"),
  35645. name: "Right Hand",
  35646. image: {
  35647. source: "./media/characters/jrain/right-hand.svg"
  35648. }
  35649. },
  35650. eye: {
  35651. height: math.unit(0.35, "feet"),
  35652. name: "Eye",
  35653. image: {
  35654. source: "./media/characters/jrain/eye.svg"
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Normal",
  35661. height: math.unit(6 + 8/12, "feet"),
  35662. default: true
  35663. },
  35664. {
  35665. name: "Casually Large",
  35666. height: math.unit(25, "feet")
  35667. },
  35668. {
  35669. name: "Giant",
  35670. height: math.unit(100, "feet")
  35671. },
  35672. {
  35673. name: "Kaiju",
  35674. height: math.unit(300, "feet")
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35680. {
  35681. dragon: {
  35682. height: math.unit(5, "meters"),
  35683. name: "Dragon",
  35684. image: {
  35685. source: "./media/characters/sabrina/dragon.svg",
  35686. extra: 3670 / 2365,
  35687. bottom: 333 / 4003
  35688. }
  35689. },
  35690. gryphon: {
  35691. height: math.unit(3, "meters"),
  35692. name: "Gryphon",
  35693. image: {
  35694. source: "./media/characters/sabrina/gryphon.svg",
  35695. extra: 1576 / 945,
  35696. bottom: 71 / 1647
  35697. }
  35698. },
  35699. snake: {
  35700. height: math.unit(12, "meters"),
  35701. name: "Snake",
  35702. image: {
  35703. source: "./media/characters/sabrina/snake.svg",
  35704. extra: 1758 / 1320,
  35705. bottom: 186 / 1944
  35706. }
  35707. },
  35708. collar: {
  35709. height: math.unit(1.86, "meters"),
  35710. name: "Collar",
  35711. image: {
  35712. source: "./media/characters/sabrina/collar.svg"
  35713. }
  35714. },
  35715. eye: {
  35716. height: math.unit(0.53, "meters"),
  35717. name: "Eye",
  35718. image: {
  35719. source: "./media/characters/sabrina/eye.svg"
  35720. }
  35721. },
  35722. foot: {
  35723. height: math.unit(1.86, "meters"),
  35724. name: "Foot",
  35725. image: {
  35726. source: "./media/characters/sabrina/foot.svg"
  35727. }
  35728. },
  35729. hand: {
  35730. height: math.unit(1.32, "meters"),
  35731. name: "Hand",
  35732. image: {
  35733. source: "./media/characters/sabrina/hand.svg"
  35734. }
  35735. },
  35736. head: {
  35737. height: math.unit(2.44, "meters"),
  35738. name: "Head",
  35739. image: {
  35740. source: "./media/characters/sabrina/head.svg"
  35741. }
  35742. },
  35743. headAngry: {
  35744. height: math.unit(2.44, "meters"),
  35745. name: "Head (Angry))",
  35746. image: {
  35747. source: "./media/characters/sabrina/head-angry.svg"
  35748. }
  35749. },
  35750. maw: {
  35751. height: math.unit(1.65, "meters"),
  35752. name: "Maw",
  35753. image: {
  35754. source: "./media/characters/sabrina/maw.svg"
  35755. }
  35756. },
  35757. spikes: {
  35758. height: math.unit(1.69, "meters"),
  35759. name: "Spikes",
  35760. image: {
  35761. source: "./media/characters/sabrina/spikes.svg"
  35762. }
  35763. },
  35764. stomach: {
  35765. height: math.unit(1.15, "meters"),
  35766. name: "Stomach",
  35767. image: {
  35768. source: "./media/characters/sabrina/stomach.svg"
  35769. }
  35770. },
  35771. tongue: {
  35772. height: math.unit(1.27, "meters"),
  35773. name: "Tongue",
  35774. image: {
  35775. source: "./media/characters/sabrina/tongue.svg"
  35776. }
  35777. },
  35778. wingDorsal: {
  35779. height: math.unit(4.85, "meters"),
  35780. name: "Wing (Dorsal)",
  35781. image: {
  35782. source: "./media/characters/sabrina/wing-dorsal.svg"
  35783. }
  35784. },
  35785. wingVentral: {
  35786. height: math.unit(4.85, "meters"),
  35787. name: "Wing (Ventral)",
  35788. image: {
  35789. source: "./media/characters/sabrina/wing-ventral.svg"
  35790. }
  35791. },
  35792. },
  35793. [
  35794. {
  35795. name: "Normal",
  35796. height: math.unit(5, "meters"),
  35797. default: true
  35798. },
  35799. ]
  35800. ))
  35801. characterMakers.push(() => makeCharacter(
  35802. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35803. {
  35804. frontMaid: {
  35805. height: math.unit(5 + 5/12, "feet"),
  35806. weight: math.unit(130, "lb"),
  35807. name: "Front (Maid)",
  35808. image: {
  35809. source: "./media/characters/midnight-tales/front-maid.svg",
  35810. extra: 489/454,
  35811. bottom: 61/550
  35812. }
  35813. },
  35814. frontFormal: {
  35815. height: math.unit(5 + 5/12, "feet"),
  35816. weight: math.unit(130, "lb"),
  35817. name: "Front (Formal)",
  35818. image: {
  35819. source: "./media/characters/midnight-tales/front-formal.svg",
  35820. extra: 489/454,
  35821. bottom: 61/550
  35822. }
  35823. },
  35824. back: {
  35825. height: math.unit(5 + 5/12, "feet"),
  35826. weight: math.unit(130, "lb"),
  35827. name: "Back",
  35828. image: {
  35829. source: "./media/characters/midnight-tales/back.svg",
  35830. extra: 498/456,
  35831. bottom: 33/531
  35832. }
  35833. },
  35834. frontBeast: {
  35835. height: math.unit(40, "feet"),
  35836. weight: math.unit(64000, "lb"),
  35837. name: "Front (Beast)",
  35838. image: {
  35839. source: "./media/characters/midnight-tales/front-beast.svg",
  35840. extra: 927/860,
  35841. bottom: 53/980
  35842. }
  35843. },
  35844. backBeast: {
  35845. height: math.unit(40, "feet"),
  35846. weight: math.unit(64000, "lb"),
  35847. name: "Back (Beast)",
  35848. image: {
  35849. source: "./media/characters/midnight-tales/back-beast.svg",
  35850. extra: 929/855,
  35851. bottom: 16/945
  35852. }
  35853. },
  35854. footBeast: {
  35855. height: math.unit(6.7, "feet"),
  35856. name: "Foot (Beast)",
  35857. image: {
  35858. source: "./media/characters/midnight-tales/foot-beast.svg"
  35859. }
  35860. },
  35861. headBeast: {
  35862. height: math.unit(8, "feet"),
  35863. name: "Head (Beast)",
  35864. image: {
  35865. source: "./media/characters/midnight-tales/head-beast.svg"
  35866. }
  35867. },
  35868. },
  35869. [
  35870. {
  35871. name: "Normal",
  35872. height: math.unit(5 + 5 / 12, "feet"),
  35873. default: true
  35874. },
  35875. {
  35876. name: "Macro",
  35877. height: math.unit(25, "feet")
  35878. },
  35879. ]
  35880. ))
  35881. characterMakers.push(() => makeCharacter(
  35882. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35883. {
  35884. front: {
  35885. height: math.unit(5 + 10/12, "feet"),
  35886. name: "Front",
  35887. image: {
  35888. source: "./media/characters/argon/front.svg",
  35889. extra: 2009/1935,
  35890. bottom: 118/2127
  35891. }
  35892. },
  35893. back: {
  35894. height: math.unit(5 + 10/12, "feet"),
  35895. name: "Back",
  35896. image: {
  35897. source: "./media/characters/argon/back.svg",
  35898. extra: 2047/1992,
  35899. bottom: 20/2067
  35900. }
  35901. },
  35902. frontDressed: {
  35903. height: math.unit(5 + 10/12, "feet"),
  35904. name: "Front (Dressed)",
  35905. image: {
  35906. source: "./media/characters/argon/front-dressed.svg",
  35907. extra: 2009/1935,
  35908. bottom: 118/2127
  35909. }
  35910. },
  35911. },
  35912. [
  35913. {
  35914. name: "Normal",
  35915. height: math.unit(5 + 10/12, "feet"),
  35916. default: true
  35917. },
  35918. ]
  35919. ))
  35920. characterMakers.push(() => makeCharacter(
  35921. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35922. {
  35923. front: {
  35924. height: math.unit(8 + 6/12, "feet"),
  35925. weight: math.unit(1150, "lb"),
  35926. name: "Front",
  35927. image: {
  35928. source: "./media/characters/kichi/front.svg",
  35929. extra: 1267/1164,
  35930. bottom: 61/1328
  35931. }
  35932. },
  35933. back: {
  35934. height: math.unit(8 + 6/12, "feet"),
  35935. weight: math.unit(1150, "lb"),
  35936. name: "Back",
  35937. image: {
  35938. source: "./media/characters/kichi/back.svg",
  35939. extra: 1273/1166,
  35940. bottom: 33/1306
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(8 + 6/12, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35954. {
  35955. front: {
  35956. height: math.unit(6, "feet"),
  35957. weight: math.unit(210, "lb"),
  35958. name: "Front",
  35959. image: {
  35960. source: "./media/characters/manetel-greyscale/front.svg",
  35961. extra: 350/312,
  35962. bottom: 8/358
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Micro",
  35969. height: math.unit(2, "inches")
  35970. },
  35971. {
  35972. name: "Normal",
  35973. height: math.unit(6, "feet"),
  35974. default: true
  35975. },
  35976. {
  35977. name: "Minimacro",
  35978. height: math.unit(17, "feet")
  35979. },
  35980. {
  35981. name: "Macro",
  35982. height: math.unit(117, "feet")
  35983. },
  35984. ]
  35985. ))
  35986. characterMakers.push(() => makeCharacter(
  35987. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35988. {
  35989. side: {
  35990. height: math.unit(5 + 1/12, "feet"),
  35991. weight: math.unit(418, "lb"),
  35992. name: "Side",
  35993. image: {
  35994. source: "./media/characters/softpurr/side.svg",
  35995. extra: 1993/1945,
  35996. bottom: 134/2127
  35997. }
  35998. },
  35999. front: {
  36000. height: math.unit(5 + 1/12, "feet"),
  36001. weight: math.unit(418, "lb"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/softpurr/front.svg",
  36005. extra: 1950/1856,
  36006. bottom: 174/2124
  36007. }
  36008. },
  36009. paw: {
  36010. height: math.unit(1, "feet"),
  36011. name: "Paw",
  36012. image: {
  36013. source: "./media/characters/softpurr/paw.svg"
  36014. }
  36015. },
  36016. },
  36017. [
  36018. {
  36019. name: "Normal",
  36020. height: math.unit(5 + 1/12, "feet"),
  36021. default: true
  36022. },
  36023. ]
  36024. ))
  36025. characterMakers.push(() => makeCharacter(
  36026. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36027. {
  36028. front: {
  36029. height: math.unit(260, "meters"),
  36030. name: "Front",
  36031. image: {
  36032. source: "./media/characters/anahita/front.svg",
  36033. extra: 665/635,
  36034. bottom: 89/754
  36035. }
  36036. },
  36037. },
  36038. [
  36039. {
  36040. name: "Macro",
  36041. height: math.unit(260, "meters"),
  36042. default: true
  36043. },
  36044. ]
  36045. ))
  36046. characterMakers.push(() => makeCharacter(
  36047. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36048. {
  36049. front: {
  36050. height: math.unit(4 + 10/12, "feet"),
  36051. weight: math.unit(160, "lb"),
  36052. name: "Front",
  36053. image: {
  36054. source: "./media/characters/chip-mouse/front.svg",
  36055. extra: 3528/3408,
  36056. bottom: 0/3528
  36057. }
  36058. },
  36059. frontNsfw: {
  36060. height: math.unit(4 + 10/12, "feet"),
  36061. weight: math.unit(160, "lb"),
  36062. name: "Front (NSFW)",
  36063. image: {
  36064. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36065. extra: 3528/3408,
  36066. bottom: 0/3528
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(4 + 10/12, "feet"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36080. {
  36081. side: {
  36082. height: math.unit(10, "feet"),
  36083. weight: math.unit(14000, "lb"),
  36084. name: "Side",
  36085. image: {
  36086. source: "./media/characters/kremm/side.svg",
  36087. extra: 1390/1053,
  36088. bottom: 90/1480
  36089. }
  36090. },
  36091. gut: {
  36092. height: math.unit(5.8, "feet"),
  36093. name: "Gut",
  36094. image: {
  36095. source: "./media/characters/kremm/gut.svg"
  36096. }
  36097. },
  36098. ass: {
  36099. height: math.unit(6.1, "feet"),
  36100. name: "Ass",
  36101. image: {
  36102. source: "./media/characters/kremm/ass.svg"
  36103. }
  36104. },
  36105. jaws: {
  36106. height: math.unit(2.2, "feet"),
  36107. name: "Jaws",
  36108. image: {
  36109. source: "./media/characters/kremm/jaws.svg"
  36110. }
  36111. },
  36112. dick: {
  36113. height: math.unit(4.26, "feet"),
  36114. name: "Dick",
  36115. image: {
  36116. source: "./media/characters/kremm/dick.svg"
  36117. }
  36118. },
  36119. },
  36120. [
  36121. {
  36122. name: "Normal",
  36123. height: math.unit(10, "feet"),
  36124. default: true
  36125. },
  36126. ]
  36127. ))
  36128. characterMakers.push(() => makeCharacter(
  36129. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36130. {
  36131. front: {
  36132. height: math.unit(30, "stories"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/kai/front.svg",
  36136. extra: 1892/1718,
  36137. bottom: 162/2054
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Macro",
  36144. height: math.unit(30, "stories"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(6 + 4/12, "feet"),
  36154. weight: math.unit(145, "lb"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/sykes/front.svg",
  36158. extra: 1321 / 1187,
  36159. bottom: 66 / 1387
  36160. }
  36161. },
  36162. back: {
  36163. height: math.unit(6 + 4/12, "feet"),
  36164. weight: math.unit(145, "lb"),
  36165. name: "Back",
  36166. image: {
  36167. source: "./media/characters/sykes/back.svg",
  36168. extra: 1326/1181,
  36169. bottom: 31/1357
  36170. }
  36171. },
  36172. traditionalOutfit: {
  36173. height: math.unit(6 + 4/12, "feet"),
  36174. weight: math.unit(145, "lb"),
  36175. name: "Traditional Outfit",
  36176. image: {
  36177. source: "./media/characters/sykes/traditional-outfit.svg",
  36178. extra: 1321 / 1187,
  36179. bottom: 66 / 1387
  36180. }
  36181. },
  36182. adventureOutfit: {
  36183. height: math.unit(6 + 4/12, "feet"),
  36184. weight: math.unit(145, "lb"),
  36185. name: "Adventure Outfit",
  36186. image: {
  36187. source: "./media/characters/sykes/adventure-outfit.svg",
  36188. extra: 1321 / 1187,
  36189. bottom: 66 / 1387
  36190. }
  36191. },
  36192. handLeft: {
  36193. height: math.unit(0.9, "feet"),
  36194. name: "Hand (Left)",
  36195. image: {
  36196. source: "./media/characters/sykes/hand-left.svg"
  36197. }
  36198. },
  36199. handRight: {
  36200. height: math.unit(0.839, "feet"),
  36201. name: "Hand (Right)",
  36202. image: {
  36203. source: "./media/characters/sykes/hand-right.svg"
  36204. }
  36205. },
  36206. leftFoot: {
  36207. height: math.unit(1.2, "feet"),
  36208. name: "Foot (Left)",
  36209. image: {
  36210. source: "./media/characters/sykes/foot-left.svg"
  36211. }
  36212. },
  36213. rightFoot: {
  36214. height: math.unit(1.2, "feet"),
  36215. name: "Foot (Right)",
  36216. image: {
  36217. source: "./media/characters/sykes/foot-right.svg"
  36218. }
  36219. },
  36220. maw: {
  36221. height: math.unit(1.93, "feet"),
  36222. name: "Maw",
  36223. image: {
  36224. source: "./media/characters/sykes/maw.svg"
  36225. }
  36226. },
  36227. teeth: {
  36228. height: math.unit(0.51, "feet"),
  36229. name: "Teeth",
  36230. image: {
  36231. source: "./media/characters/sykes/teeth.svg"
  36232. }
  36233. },
  36234. tongue: {
  36235. height: math.unit(2.13, "feet"),
  36236. name: "Tongue",
  36237. image: {
  36238. source: "./media/characters/sykes/tongue.svg"
  36239. }
  36240. },
  36241. uvula: {
  36242. height: math.unit(0.16, "feet"),
  36243. name: "Uvula",
  36244. image: {
  36245. source: "./media/characters/sykes/uvula.svg"
  36246. }
  36247. },
  36248. collar: {
  36249. height: math.unit(0.287, "feet"),
  36250. name: "Collar",
  36251. image: {
  36252. source: "./media/characters/sykes/collar.svg"
  36253. }
  36254. },
  36255. tail: {
  36256. height: math.unit(3.8, "feet"),
  36257. name: "Tail",
  36258. image: {
  36259. source: "./media/characters/sykes/tail.svg"
  36260. }
  36261. },
  36262. },
  36263. [
  36264. {
  36265. name: "Shrunken",
  36266. height: math.unit(5, "inches")
  36267. },
  36268. {
  36269. name: "Normal",
  36270. height: math.unit(6 + 4 / 12, "feet"),
  36271. default: true
  36272. },
  36273. {
  36274. name: "Big",
  36275. height: math.unit(15, "feet")
  36276. },
  36277. ]
  36278. ))
  36279. characterMakers.push(() => makeCharacter(
  36280. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36281. {
  36282. front: {
  36283. height: math.unit(5 + 8/12, "feet"),
  36284. weight: math.unit(190, "lb"),
  36285. name: "Front",
  36286. image: {
  36287. source: "./media/characters/oven-otter/front.svg",
  36288. extra: 1809/1740,
  36289. bottom: 181/1990
  36290. }
  36291. },
  36292. back: {
  36293. height: math.unit(5 + 8/12, "feet"),
  36294. weight: math.unit(190, "lb"),
  36295. name: "Back",
  36296. image: {
  36297. source: "./media/characters/oven-otter/back.svg",
  36298. extra: 1709/1635,
  36299. bottom: 118/1827
  36300. }
  36301. },
  36302. hand: {
  36303. height: math.unit(1.07, "feet"),
  36304. name: "Hand",
  36305. image: {
  36306. source: "./media/characters/oven-otter/hand.svg"
  36307. }
  36308. },
  36309. beans: {
  36310. height: math.unit(1.74, "feet"),
  36311. name: "Beans",
  36312. image: {
  36313. source: "./media/characters/oven-otter/beans.svg"
  36314. }
  36315. },
  36316. },
  36317. [
  36318. {
  36319. name: "Micro",
  36320. height: math.unit(0.5, "inches")
  36321. },
  36322. {
  36323. name: "Normal",
  36324. height: math.unit(5 + 8/12, "feet"),
  36325. default: true
  36326. },
  36327. {
  36328. name: "Macro",
  36329. height: math.unit(250, "feet")
  36330. },
  36331. {
  36332. name: "Really High",
  36333. height: math.unit(420, "feet")
  36334. },
  36335. ]
  36336. ))
  36337. characterMakers.push(() => makeCharacter(
  36338. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36339. {
  36340. front: {
  36341. height: math.unit(5, "meters"),
  36342. weight: math.unit(292000000000000, "kg"),
  36343. name: "Front",
  36344. image: {
  36345. source: "./media/characters/devourer/front.svg",
  36346. extra: 1800/1733,
  36347. bottom: 211/2011
  36348. }
  36349. },
  36350. maw: {
  36351. height: math.unit(1.1, "meter"),
  36352. name: "Maw",
  36353. image: {
  36354. source: "./media/characters/devourer/maw.svg"
  36355. }
  36356. },
  36357. },
  36358. [
  36359. {
  36360. name: "Small",
  36361. height: math.unit(3, "meters")
  36362. },
  36363. {
  36364. name: "Large",
  36365. height: math.unit(5, "meters"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36372. {
  36373. front: {
  36374. height: math.unit(6, "feet"),
  36375. weight: math.unit(400, "lb"),
  36376. name: "Front",
  36377. image: {
  36378. source: "./media/characters/ellarby/front.svg",
  36379. extra: 1909/1763,
  36380. bottom: 80/1989
  36381. }
  36382. },
  36383. back: {
  36384. height: math.unit(6, "feet"),
  36385. weight: math.unit(400, "lb"),
  36386. name: "Back",
  36387. image: {
  36388. source: "./media/characters/ellarby/back.svg",
  36389. extra: 1914/1784,
  36390. bottom: 172/2086
  36391. }
  36392. },
  36393. },
  36394. [
  36395. {
  36396. name: "Mischief",
  36397. height: math.unit(18, "inches")
  36398. },
  36399. {
  36400. name: "Trouble",
  36401. height: math.unit(12, "feet")
  36402. },
  36403. {
  36404. name: "Havoc",
  36405. height: math.unit(200, "feet"),
  36406. default: true
  36407. },
  36408. {
  36409. name: "Pandemonium",
  36410. height: math.unit(1, "mile")
  36411. },
  36412. {
  36413. name: "Catastrophe",
  36414. height: math.unit(100, "miles")
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36420. {
  36421. front: {
  36422. height: math.unit(4.7, "meters"),
  36423. weight: math.unit(6500, "kg"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/vex/front.svg",
  36427. extra: 1288/1140,
  36428. bottom: 100/1388
  36429. }
  36430. },
  36431. },
  36432. [
  36433. {
  36434. name: "Normal",
  36435. height: math.unit(4.7, "meters"),
  36436. default: true
  36437. },
  36438. ]
  36439. ))
  36440. characterMakers.push(() => makeCharacter(
  36441. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36442. {
  36443. normal: {
  36444. height: math.unit(6, "feet"),
  36445. weight: math.unit(350, "lb"),
  36446. name: "Normal",
  36447. image: {
  36448. source: "./media/characters/teshy/normal.svg",
  36449. extra: 1795/1735,
  36450. bottom: 16/1811
  36451. }
  36452. },
  36453. monsterFront: {
  36454. height: math.unit(12, "feet"),
  36455. weight: math.unit(4700, "lb"),
  36456. name: "Monster (Front)",
  36457. image: {
  36458. source: "./media/characters/teshy/monster-front.svg",
  36459. extra: 2042/2034,
  36460. bottom: 128/2170
  36461. }
  36462. },
  36463. monsterSide: {
  36464. height: math.unit(12, "feet"),
  36465. weight: math.unit(4700, "lb"),
  36466. name: "Monster (Side)",
  36467. image: {
  36468. source: "./media/characters/teshy/monster-side.svg",
  36469. extra: 2067/2056,
  36470. bottom: 70/2137
  36471. }
  36472. },
  36473. monsterBack: {
  36474. height: math.unit(12, "feet"),
  36475. weight: math.unit(4700, "lb"),
  36476. name: "Monster (Back)",
  36477. image: {
  36478. source: "./media/characters/teshy/monster-back.svg",
  36479. extra: 1921/1914,
  36480. bottom: 171/2092
  36481. }
  36482. },
  36483. },
  36484. [
  36485. {
  36486. name: "Normal",
  36487. height: math.unit(6, "feet"),
  36488. default: true
  36489. },
  36490. ]
  36491. ))
  36492. characterMakers.push(() => makeCharacter(
  36493. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36494. {
  36495. front: {
  36496. height: math.unit(6, "feet"),
  36497. name: "Front",
  36498. image: {
  36499. source: "./media/characters/ramey/front.svg",
  36500. extra: 790/787,
  36501. bottom: 27/817
  36502. }
  36503. },
  36504. },
  36505. [
  36506. {
  36507. name: "Normal",
  36508. height: math.unit(6, "feet"),
  36509. default: true
  36510. },
  36511. ]
  36512. ))
  36513. characterMakers.push(() => makeCharacter(
  36514. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36515. {
  36516. front: {
  36517. height: math.unit(5 + 5/12, "feet"),
  36518. weight: math.unit(120, "lb"),
  36519. name: "Front",
  36520. image: {
  36521. source: "./media/characters/phirae/front.svg",
  36522. extra: 2491/2436,
  36523. bottom: 38/2529
  36524. }
  36525. },
  36526. },
  36527. [
  36528. {
  36529. name: "Normal",
  36530. height: math.unit(5 + 5/12, "feet"),
  36531. default: true
  36532. },
  36533. ]
  36534. ))
  36535. characterMakers.push(() => makeCharacter(
  36536. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36537. {
  36538. front: {
  36539. height: math.unit(5 + 3/12, "feet"),
  36540. name: "Front",
  36541. image: {
  36542. source: "./media/characters/stagglas/front.svg",
  36543. extra: 962/882,
  36544. bottom: 53/1015
  36545. }
  36546. },
  36547. feral: {
  36548. height: math.unit(335, "cm"),
  36549. name: "Feral",
  36550. image: {
  36551. source: "./media/characters/stagglas/feral.svg",
  36552. extra: 1732/1090,
  36553. bottom: 48/1780
  36554. }
  36555. },
  36556. },
  36557. [
  36558. {
  36559. name: "Normal",
  36560. height: math.unit(5 + 3/12, "feet"),
  36561. default: true
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36567. {
  36568. front: {
  36569. height: math.unit(5 + 4/12, "feet"),
  36570. weight: math.unit(145, "lb"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/starra/front.svg",
  36574. extra: 1790/1691,
  36575. bottom: 91/1881
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Normal",
  36582. height: math.unit(5 + 4/12, "feet"),
  36583. default: true
  36584. },
  36585. ]
  36586. ))
  36587. characterMakers.push(() => makeCharacter(
  36588. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36589. {
  36590. front: {
  36591. height: math.unit(2.2, "meters"),
  36592. name: "Front",
  36593. image: {
  36594. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36595. extra: 1248/972,
  36596. bottom: 38/1286
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(2.2, "meters"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36610. {
  36611. side: {
  36612. height: math.unit(8 + 2/12, "feet"),
  36613. weight: math.unit(1240, "lb"),
  36614. name: "Side",
  36615. image: {
  36616. source: "./media/characters/mika-valentine/side.svg",
  36617. extra: 2670/2501,
  36618. bottom: 250/2920
  36619. }
  36620. },
  36621. },
  36622. [
  36623. {
  36624. name: "Normal",
  36625. height: math.unit(8 + 2/12, "feet"),
  36626. default: true
  36627. },
  36628. ]
  36629. ))
  36630. characterMakers.push(() => makeCharacter(
  36631. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36632. {
  36633. front: {
  36634. height: math.unit(7 + 2/12, "feet"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/xoltol/front.svg",
  36638. extra: 2212/2124,
  36639. bottom: 84/2296
  36640. }
  36641. },
  36642. side: {
  36643. height: math.unit(7 + 2/12, "feet"),
  36644. name: "Side",
  36645. image: {
  36646. source: "./media/characters/xoltol/side.svg",
  36647. extra: 2273/2197,
  36648. bottom: 26/2299
  36649. }
  36650. },
  36651. hand: {
  36652. height: math.unit(2.5, "feet"),
  36653. name: "Hand",
  36654. image: {
  36655. source: "./media/characters/xoltol/hand.svg"
  36656. }
  36657. },
  36658. },
  36659. [
  36660. {
  36661. name: "Small-ish",
  36662. height: math.unit(5 + 11/12, "feet")
  36663. },
  36664. {
  36665. name: "Normal",
  36666. height: math.unit(7 + 2/12, "feet")
  36667. },
  36668. {
  36669. name: "\"Macro\"",
  36670. height: math.unit(14 + 9/12, "feet"),
  36671. default: true
  36672. },
  36673. {
  36674. name: "Alternate Height",
  36675. height: math.unit(20, "feet")
  36676. },
  36677. {
  36678. name: "Actually Macro",
  36679. height: math.unit(100, "feet")
  36680. },
  36681. ]
  36682. ))
  36683. characterMakers.push(() => makeCharacter(
  36684. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36685. {
  36686. front: {
  36687. height: math.unit(5 + 2/12, "feet"),
  36688. name: "Front",
  36689. image: {
  36690. source: "./media/characters/kotetsu-redwood/front.svg",
  36691. extra: 1053/942,
  36692. bottom: 60/1113
  36693. }
  36694. },
  36695. },
  36696. [
  36697. {
  36698. name: "Normal",
  36699. height: math.unit(5 + 2/12, "feet"),
  36700. default: true
  36701. },
  36702. ]
  36703. ))
  36704. characterMakers.push(() => makeCharacter(
  36705. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36706. {
  36707. front: {
  36708. height: math.unit(2.4, "meters"),
  36709. weight: math.unit(125, "kg"),
  36710. name: "Front",
  36711. image: {
  36712. source: "./media/characters/lilith/front.svg",
  36713. extra: 1590/1513,
  36714. bottom: 203/1793
  36715. }
  36716. },
  36717. },
  36718. [
  36719. {
  36720. name: "Humanoid",
  36721. height: math.unit(2.4, "meters")
  36722. },
  36723. {
  36724. name: "Normal",
  36725. height: math.unit(6, "meters"),
  36726. default: true
  36727. },
  36728. {
  36729. name: "Largest",
  36730. height: math.unit(55, "meters")
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36736. {
  36737. front: {
  36738. height: math.unit(8 + 4/12, "feet"),
  36739. weight: math.unit(535, "lb"),
  36740. name: "Front",
  36741. image: {
  36742. source: "./media/characters/beh'kah-bolger/front.svg",
  36743. extra: 1660/1603,
  36744. bottom: 37/1697
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Normal",
  36751. height: math.unit(8 + 4/12, "feet"),
  36752. default: true
  36753. },
  36754. {
  36755. name: "Kaiju",
  36756. height: math.unit(250, "feet")
  36757. },
  36758. {
  36759. name: "Still Growing",
  36760. height: math.unit(10, "miles")
  36761. },
  36762. {
  36763. name: "Continental",
  36764. height: math.unit(5000, "miles")
  36765. },
  36766. {
  36767. name: "Final Form",
  36768. height: math.unit(2500000, "miles")
  36769. },
  36770. ]
  36771. ))
  36772. characterMakers.push(() => makeCharacter(
  36773. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36774. {
  36775. front: {
  36776. height: math.unit(7 + 2/12, "feet"),
  36777. weight: math.unit(230, "kg"),
  36778. name: "Front",
  36779. image: {
  36780. source: "./media/characters/tatyana-milewska/front.svg",
  36781. extra: 1199/1150,
  36782. bottom: 86/1285
  36783. }
  36784. },
  36785. },
  36786. [
  36787. {
  36788. name: "Normal",
  36789. height: math.unit(7 + 2/12, "feet"),
  36790. default: true
  36791. },
  36792. {
  36793. name: "Big",
  36794. height: math.unit(12, "feet")
  36795. },
  36796. {
  36797. name: "Minimacro",
  36798. height: math.unit(20, "feet")
  36799. },
  36800. {
  36801. name: "Macro",
  36802. height: math.unit(120, "feet")
  36803. },
  36804. ]
  36805. ))
  36806. characterMakers.push(() => makeCharacter(
  36807. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36808. {
  36809. front: {
  36810. height: math.unit(7 + 8/12, "feet"),
  36811. weight: math.unit(152, "kg"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/helen-arri/front.svg",
  36815. extra: 440/423,
  36816. bottom: 14/454
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(7 + 8/12, "feet"),
  36821. weight: math.unit(152, "kg"),
  36822. name: "Back",
  36823. image: {
  36824. source: "./media/characters/helen-arri/back.svg",
  36825. extra: 443/426,
  36826. bottom: 8/451
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(7 + 8/12, "feet"),
  36834. default: true
  36835. },
  36836. {
  36837. name: "Big",
  36838. height: math.unit(14, "feet")
  36839. },
  36840. {
  36841. name: "Minimacro",
  36842. height: math.unit(24, "feet")
  36843. },
  36844. {
  36845. name: "Macro",
  36846. height: math.unit(140, "feet")
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(6, "meters"),
  36855. name: "Front",
  36856. image: {
  36857. source: "./media/characters/ehanu-rehu/front.svg",
  36858. extra: 1800/1800,
  36859. bottom: 59/1859
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(6, "meters"),
  36867. default: true
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(7 + 3/12, "feet"),
  36876. name: "Front",
  36877. image: {
  36878. source: "./media/characters/renholder/front.svg",
  36879. extra: 3096/2960,
  36880. bottom: 250/3346
  36881. }
  36882. },
  36883. },
  36884. [
  36885. {
  36886. name: "Normal Bat",
  36887. height: math.unit(7 + 3/12, "feet"),
  36888. default: true
  36889. },
  36890. {
  36891. name: "Slightly Tall Bat",
  36892. height: math.unit(100, "feet")
  36893. },
  36894. {
  36895. name: "Big Bat",
  36896. height: math.unit(1000, "feet")
  36897. },
  36898. {
  36899. name: "City-Sized Bat",
  36900. height: math.unit(200000, "feet")
  36901. },
  36902. {
  36903. name: "Bigger Bat",
  36904. height: math.unit(10000, "miles")
  36905. },
  36906. {
  36907. name: "Solar Sized Bat",
  36908. height: math.unit(100, "AU")
  36909. },
  36910. {
  36911. name: "Galactic Bat",
  36912. height: math.unit(200000, "lightyears")
  36913. },
  36914. {
  36915. name: "Universally Known Bat",
  36916. height: math.unit(1, "universe")
  36917. },
  36918. ]
  36919. ))
  36920. characterMakers.push(() => makeCharacter(
  36921. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36922. {
  36923. front: {
  36924. height: math.unit(6 + 11/12, "feet"),
  36925. weight: math.unit(250, "lb"),
  36926. name: "Front",
  36927. image: {
  36928. source: "./media/characters/cookiecat/front.svg",
  36929. extra: 893/827,
  36930. bottom: 14/907
  36931. }
  36932. },
  36933. },
  36934. [
  36935. {
  36936. name: "Micro",
  36937. height: math.unit(3, "inches")
  36938. },
  36939. {
  36940. name: "Normal",
  36941. height: math.unit(6 + 11/12, "feet"),
  36942. default: true
  36943. },
  36944. {
  36945. name: "Macro",
  36946. height: math.unit(100, "feet")
  36947. },
  36948. {
  36949. name: "Macro+",
  36950. height: math.unit(404, "feet")
  36951. },
  36952. {
  36953. name: "Megamacro",
  36954. height: math.unit(165, "miles")
  36955. },
  36956. {
  36957. name: "Planetary",
  36958. height: math.unit(4600, "miles")
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(10 + 3/12, "feet"),
  36967. weight: math.unit(1500, "lb"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/tux-kusanagi/front.svg",
  36971. extra: 944/840,
  36972. bottom: 39/983
  36973. }
  36974. },
  36975. back: {
  36976. height: math.unit(10 + 3/12, "feet"),
  36977. weight: math.unit(1500, "lb"),
  36978. name: "Back",
  36979. image: {
  36980. source: "./media/characters/tux-kusanagi/back.svg",
  36981. extra: 941/842,
  36982. bottom: 28/969
  36983. }
  36984. },
  36985. rump: {
  36986. height: math.unit(5.25, "feet"),
  36987. name: "Rump",
  36988. image: {
  36989. source: "./media/characters/tux-kusanagi/rump.svg"
  36990. }
  36991. },
  36992. beak: {
  36993. height: math.unit(1.54, "feet"),
  36994. name: "Beak",
  36995. image: {
  36996. source: "./media/characters/tux-kusanagi/beak.svg"
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(10 + 3/12, "feet"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(58, "feet"),
  37013. weight: math.unit(200, "tons"),
  37014. name: "Front",
  37015. image: {
  37016. source: "./media/characters/uzarmazari/front.svg",
  37017. extra: 1575/1455,
  37018. bottom: 152/1727
  37019. }
  37020. },
  37021. back: {
  37022. height: math.unit(58, "feet"),
  37023. weight: math.unit(200, "tons"),
  37024. name: "Back",
  37025. image: {
  37026. source: "./media/characters/uzarmazari/back.svg",
  37027. extra: 1585/1510,
  37028. bottom: 157/1742
  37029. }
  37030. },
  37031. head: {
  37032. height: math.unit(26, "feet"),
  37033. name: "Head",
  37034. image: {
  37035. source: "./media/characters/uzarmazari/head.svg"
  37036. }
  37037. },
  37038. },
  37039. [
  37040. {
  37041. name: "Normal",
  37042. height: math.unit(58, "feet"),
  37043. default: true
  37044. },
  37045. ]
  37046. ))
  37047. characterMakers.push(() => makeCharacter(
  37048. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37049. {
  37050. side: {
  37051. height: math.unit(15, "feet"),
  37052. name: "Side",
  37053. image: {
  37054. source: "./media/characters/akitu/side.svg",
  37055. extra: 1421/1321,
  37056. bottom: 157/1578
  37057. }
  37058. },
  37059. front: {
  37060. height: math.unit(15, "feet"),
  37061. name: "Front",
  37062. image: {
  37063. source: "./media/characters/akitu/front.svg",
  37064. extra: 1435/1326,
  37065. bottom: 232/1667
  37066. }
  37067. },
  37068. },
  37069. [
  37070. {
  37071. name: "Normal",
  37072. height: math.unit(15, "feet"),
  37073. default: true
  37074. },
  37075. ]
  37076. ))
  37077. characterMakers.push(() => makeCharacter(
  37078. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37079. {
  37080. front: {
  37081. height: math.unit(10 + 8/12, "feet"),
  37082. name: "Front",
  37083. image: {
  37084. source: "./media/characters/azalie-croixland/front.svg",
  37085. extra: 1972/1856,
  37086. bottom: 31/2003
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Original Height",
  37093. height: math.unit(5 + 4/12, "feet")
  37094. },
  37095. {
  37096. name: "Normal Height",
  37097. height: math.unit(10 + 8/12, "feet"),
  37098. default: true
  37099. },
  37100. ]
  37101. ))
  37102. characterMakers.push(() => makeCharacter(
  37103. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37104. {
  37105. side: {
  37106. height: math.unit(7 + 1/12, "feet"),
  37107. weight: math.unit(245, "lb"),
  37108. name: "Side",
  37109. image: {
  37110. source: "./media/characters/kavus-kazian/side.svg",
  37111. extra: 349/342,
  37112. bottom: 15/364
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(7 + 1/12, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37126. {
  37127. normalFront: {
  37128. height: math.unit(5 + 11/12, "feet"),
  37129. name: "Front",
  37130. image: {
  37131. source: "./media/characters/moonlight-rose/normal-front.svg",
  37132. extra: 1980/1825,
  37133. bottom: 18/1998
  37134. },
  37135. form: "normal",
  37136. default: true
  37137. },
  37138. normalBack: {
  37139. height: math.unit(5 + 11/12, "feet"),
  37140. name: "Back",
  37141. image: {
  37142. source: "./media/characters/moonlight-rose/normal-back.svg",
  37143. extra: 2010/1839,
  37144. bottom: 10/2020
  37145. },
  37146. form: "normal"
  37147. },
  37148. demonFront: {
  37149. height: math.unit(1.5, "earths"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/moonlight-rose/demon.svg",
  37153. extra: 1400/1294,
  37154. bottom: 45/1445
  37155. },
  37156. form: "demon",
  37157. default: true
  37158. },
  37159. terraFront: {
  37160. height: math.unit(1.5, "earths"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/moonlight-rose/terra.svg"
  37164. },
  37165. form: "terra",
  37166. default: true
  37167. },
  37168. jupiterFront: {
  37169. height: math.unit(69911*2, "km"),
  37170. name: "Front",
  37171. image: {
  37172. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37173. extra: 1367/1286,
  37174. bottom: 55/1422
  37175. },
  37176. form: "jupiter",
  37177. default: true
  37178. },
  37179. neptuneFront: {
  37180. height: math.unit(24622*2, "feet"),
  37181. name: "Front",
  37182. image: {
  37183. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37184. extra: 1851/1712,
  37185. bottom: 0/1851
  37186. },
  37187. form: "neptune",
  37188. default: true
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "\"Natural\" Height",
  37194. height: math.unit(5 + 11/12, "feet"),
  37195. form: "normal"
  37196. },
  37197. {
  37198. name: "Smallest comfortable size",
  37199. height: math.unit(40, "meters"),
  37200. form: "normal"
  37201. },
  37202. {
  37203. name: "Common size",
  37204. height: math.unit(50, "km"),
  37205. form: "normal",
  37206. default: true
  37207. },
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(1.5, "earths"),
  37211. form: "demon",
  37212. default: true
  37213. },
  37214. {
  37215. name: "Universal",
  37216. height: math.unit(15, "universes"),
  37217. form: "demon"
  37218. },
  37219. {
  37220. name: "Earth",
  37221. height: math.unit(1.5, "earths"),
  37222. form: "terra",
  37223. default: true
  37224. },
  37225. {
  37226. name: "Super Earth",
  37227. height: math.unit(67.5, "earths"),
  37228. form: "terra"
  37229. },
  37230. {
  37231. name: "Doesn't fit in a solar system...",
  37232. height: math.unit(1, "galaxy"),
  37233. form: "terra"
  37234. },
  37235. {
  37236. name: "Saturn",
  37237. height: math.unit(58232*2, "km"),
  37238. form: "jupiter"
  37239. },
  37240. {
  37241. name: "Jupiter",
  37242. height: math.unit(69911*2, "km"),
  37243. form: "jupiter",
  37244. default: true
  37245. },
  37246. {
  37247. name: "HD 100546 b",
  37248. height: math.unit(482938, "km"),
  37249. form: "jupiter"
  37250. },
  37251. {
  37252. name: "Enceladus",
  37253. height: math.unit(513*2, "km"),
  37254. form: "neptune"
  37255. },
  37256. {
  37257. name: "Europe",
  37258. height: math.unit(1560*2, "km"),
  37259. form: "neptune"
  37260. },
  37261. {
  37262. name: "Neptune",
  37263. height: math.unit(24622*2, "km"),
  37264. form: "neptune",
  37265. default: true
  37266. },
  37267. {
  37268. name: "CoRoT-9b",
  37269. height: math.unit(75067*2, "km"),
  37270. form: "neptune"
  37271. },
  37272. ],
  37273. {
  37274. "normal": {
  37275. name: "Normal",
  37276. default: true
  37277. },
  37278. "demon": {
  37279. name: "Demon"
  37280. },
  37281. "terra": {
  37282. name: "Terra"
  37283. },
  37284. "jupiter": {
  37285. name: "Jupiter"
  37286. },
  37287. "neptune": {
  37288. name: "Neptune"
  37289. }
  37290. }
  37291. ))
  37292. characterMakers.push(() => makeCharacter(
  37293. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37294. {
  37295. front: {
  37296. height: math.unit(16, "feet"),
  37297. weight: math.unit(610, "kg"),
  37298. name: "Front",
  37299. image: {
  37300. source: "./media/characters/huckle/front.svg",
  37301. extra: 1731/1625,
  37302. bottom: 33/1764
  37303. }
  37304. },
  37305. back: {
  37306. height: math.unit(16, "feet"),
  37307. weight: math.unit(610, "kg"),
  37308. name: "Back",
  37309. image: {
  37310. source: "./media/characters/huckle/back.svg",
  37311. extra: 1738/1651,
  37312. bottom: 37/1775
  37313. }
  37314. },
  37315. laughing: {
  37316. height: math.unit(3.75, "feet"),
  37317. name: "Laughing",
  37318. image: {
  37319. source: "./media/characters/huckle/laughing.svg"
  37320. }
  37321. },
  37322. angry: {
  37323. height: math.unit(4.15, "feet"),
  37324. name: "Angry",
  37325. image: {
  37326. source: "./media/characters/huckle/angry.svg"
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(16, "feet"),
  37334. default: true
  37335. },
  37336. {
  37337. name: "Mini Macro",
  37338. height: math.unit(463, "feet")
  37339. },
  37340. {
  37341. name: "Macro",
  37342. height: math.unit(1680, "meters")
  37343. },
  37344. {
  37345. name: "Mega Macro",
  37346. height: math.unit(175, "km")
  37347. },
  37348. {
  37349. name: "Terra Macro",
  37350. height: math.unit(32, "gigameters")
  37351. },
  37352. {
  37353. name: "Multiverse+",
  37354. height: math.unit(2.56e23, "yottameters")
  37355. },
  37356. ]
  37357. ))
  37358. characterMakers.push(() => makeCharacter(
  37359. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37360. {
  37361. front: {
  37362. height: math.unit(6 + 9/12, "feet"),
  37363. weight: math.unit(280, "lb"),
  37364. name: "Front",
  37365. image: {
  37366. source: "./media/characters/candy/front.svg",
  37367. extra: 234/217,
  37368. bottom: 11/245
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Really Small",
  37375. height: math.unit(0.1, "nm")
  37376. },
  37377. {
  37378. name: "Micro",
  37379. height: math.unit(2, "inches")
  37380. },
  37381. {
  37382. name: "Normal",
  37383. height: math.unit(6 + 9/12, "feet"),
  37384. default: true
  37385. },
  37386. {
  37387. name: "Small Macro",
  37388. height: math.unit(69, "feet")
  37389. },
  37390. {
  37391. name: "Macro",
  37392. height: math.unit(160, "feet")
  37393. },
  37394. {
  37395. name: "Megamacro",
  37396. height: math.unit(22000, "miles")
  37397. },
  37398. {
  37399. name: "Gigamacro",
  37400. height: math.unit(50000, "miles")
  37401. },
  37402. ]
  37403. ))
  37404. characterMakers.push(() => makeCharacter(
  37405. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37406. {
  37407. front: {
  37408. height: math.unit(4, "feet"),
  37409. weight: math.unit(90, "lb"),
  37410. name: "Front",
  37411. image: {
  37412. source: "./media/characters/joey-mcdonald/front.svg",
  37413. extra: 1059/852,
  37414. bottom: 33/1092
  37415. }
  37416. },
  37417. back: {
  37418. height: math.unit(4, "feet"),
  37419. weight: math.unit(90, "lb"),
  37420. name: "Back",
  37421. image: {
  37422. source: "./media/characters/joey-mcdonald/back.svg",
  37423. extra: 1077/879,
  37424. bottom: 5/1082
  37425. }
  37426. },
  37427. frontKobold: {
  37428. height: math.unit(4, "feet"),
  37429. weight: math.unit(100, "lb"),
  37430. name: "Front-kobold",
  37431. image: {
  37432. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37433. extra: 1480/1367,
  37434. bottom: 0/1480
  37435. }
  37436. },
  37437. backKobold: {
  37438. height: math.unit(4, "feet"),
  37439. weight: math.unit(100, "lb"),
  37440. name: "Back-kobold",
  37441. image: {
  37442. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37443. extra: 1449/1361,
  37444. bottom: 0/1449
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(4, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(12 + 6/12, "feet"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/kass-lockheed/front.svg",
  37464. extra: 354/343,
  37465. bottom: 9/363
  37466. }
  37467. },
  37468. back: {
  37469. height: math.unit(12 + 6/12, "feet"),
  37470. name: "Back",
  37471. image: {
  37472. source: "./media/characters/kass-lockheed/back.svg",
  37473. extra: 364/352,
  37474. bottom: 3/367
  37475. }
  37476. },
  37477. dick: {
  37478. height: math.unit(3.12, "feet"),
  37479. name: "Dick",
  37480. image: {
  37481. source: "./media/characters/kass-lockheed/dick.svg"
  37482. }
  37483. },
  37484. head: {
  37485. height: math.unit(2.6, "feet"),
  37486. name: "Head",
  37487. image: {
  37488. source: "./media/characters/kass-lockheed/head.svg"
  37489. }
  37490. },
  37491. bleh: {
  37492. height: math.unit(2.85, "feet"),
  37493. name: "Bleh",
  37494. image: {
  37495. source: "./media/characters/kass-lockheed/bleh.svg"
  37496. }
  37497. },
  37498. smug: {
  37499. height: math.unit(2.85, "feet"),
  37500. name: "Smug",
  37501. image: {
  37502. source: "./media/characters/kass-lockheed/smug.svg"
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(12 + 6/12, "feet"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(6 + 2/12, "feet"),
  37519. name: "Front",
  37520. image: {
  37521. source: "./media/characters/taylor/front.svg",
  37522. extra: 639/495,
  37523. bottom: 12/651
  37524. }
  37525. },
  37526. },
  37527. [
  37528. {
  37529. name: "Normal",
  37530. height: math.unit(6 + 2/12, "feet"),
  37531. default: true
  37532. },
  37533. {
  37534. name: "Big",
  37535. height: math.unit(15, "feet")
  37536. },
  37537. {
  37538. name: "Lorg",
  37539. height: math.unit(80, "feet")
  37540. },
  37541. {
  37542. name: "Too Lorg",
  37543. height: math.unit(120, "feet")
  37544. },
  37545. ]
  37546. ))
  37547. characterMakers.push(() => makeCharacter(
  37548. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37549. {
  37550. front: {
  37551. height: math.unit(15, "feet"),
  37552. name: "Front",
  37553. image: {
  37554. source: "./media/characters/kaizer/front.svg",
  37555. extra: 1612/1436,
  37556. bottom: 43/1655
  37557. }
  37558. },
  37559. },
  37560. [
  37561. {
  37562. name: "Normal",
  37563. height: math.unit(15, "feet"),
  37564. default: true
  37565. },
  37566. ]
  37567. ))
  37568. characterMakers.push(() => makeCharacter(
  37569. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37570. {
  37571. front: {
  37572. height: math.unit(2, "feet"),
  37573. weight: math.unit(30, "lb"),
  37574. name: "Front",
  37575. image: {
  37576. source: "./media/characters/sandy/front.svg",
  37577. extra: 1439/1307,
  37578. bottom: 194/1633
  37579. }
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "Normal",
  37585. height: math.unit(2, "feet"),
  37586. default: true
  37587. },
  37588. ]
  37589. ))
  37590. characterMakers.push(() => makeCharacter(
  37591. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37592. {
  37593. front: {
  37594. height: math.unit(3, "feet"),
  37595. name: "Front",
  37596. image: {
  37597. source: "./media/characters/mellvi/front.svg",
  37598. extra: 1831/1630,
  37599. bottom: 58/1889
  37600. }
  37601. },
  37602. },
  37603. [
  37604. {
  37605. name: "Normal",
  37606. height: math.unit(3, "feet"),
  37607. default: true
  37608. },
  37609. ]
  37610. ))
  37611. characterMakers.push(() => makeCharacter(
  37612. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37613. {
  37614. front: {
  37615. height: math.unit(5 + 11/12, "feet"),
  37616. weight: math.unit(200, "lb"),
  37617. name: "Front",
  37618. image: {
  37619. source: "./media/characters/shirou/front.svg",
  37620. extra: 2491/2383,
  37621. bottom: 189/2680
  37622. }
  37623. },
  37624. back: {
  37625. height: math.unit(5 + 11/12, "feet"),
  37626. weight: math.unit(200, "lb"),
  37627. name: "Back",
  37628. image: {
  37629. source: "./media/characters/shirou/back.svg",
  37630. extra: 2554/2450,
  37631. bottom: 76/2630
  37632. }
  37633. },
  37634. },
  37635. [
  37636. {
  37637. name: "Normal",
  37638. height: math.unit(5 + 11/12, "feet"),
  37639. default: true
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(6 + 3/12, "feet"),
  37648. weight: math.unit(177, "lb"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/noryu/front.svg",
  37652. extra: 973/885,
  37653. bottom: 10/983
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(6 + 3/12, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37667. {
  37668. front: {
  37669. height: math.unit(5 + 6/12, "feet"),
  37670. weight: math.unit(170, "lb"),
  37671. name: "Front",
  37672. image: {
  37673. source: "./media/characters/mevolas-rubenido/front.svg",
  37674. extra: 2109/1901,
  37675. bottom: 96/2205
  37676. }
  37677. },
  37678. },
  37679. [
  37680. {
  37681. name: "Normal",
  37682. height: math.unit(5 + 6/12, "feet"),
  37683. default: true
  37684. },
  37685. ]
  37686. ))
  37687. characterMakers.push(() => makeCharacter(
  37688. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37689. {
  37690. front: {
  37691. height: math.unit(100, "feet"),
  37692. name: "Front",
  37693. image: {
  37694. source: "./media/characters/dee/front.svg",
  37695. extra: 2153/2036,
  37696. bottom: 59/2212
  37697. }
  37698. },
  37699. back: {
  37700. height: math.unit(100, "feet"),
  37701. name: "Back",
  37702. image: {
  37703. source: "./media/characters/dee/back.svg",
  37704. extra: 2183/2058,
  37705. bottom: 75/2258
  37706. }
  37707. },
  37708. foot: {
  37709. height: math.unit(19.43, "feet"),
  37710. name: "Foot",
  37711. image: {
  37712. source: "./media/characters/dee/foot.svg"
  37713. }
  37714. },
  37715. hoof: {
  37716. height: math.unit(20.6, "feet"),
  37717. name: "Hoof",
  37718. image: {
  37719. source: "./media/characters/dee/hoof.svg"
  37720. }
  37721. },
  37722. },
  37723. [
  37724. {
  37725. name: "Macro",
  37726. height: math.unit(100, "feet"),
  37727. default: true
  37728. },
  37729. ]
  37730. ))
  37731. characterMakers.push(() => makeCharacter(
  37732. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37733. {
  37734. front: {
  37735. height: math.unit(5 + 6/12, "feet"),
  37736. name: "Front",
  37737. image: {
  37738. source: "./media/characters/teh/front.svg",
  37739. extra: 1002/847,
  37740. bottom: 62/1064
  37741. }
  37742. },
  37743. },
  37744. [
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(5 + 6/12, "feet"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37754. {
  37755. side: {
  37756. height: math.unit(6 + 1/12, "feet"),
  37757. weight: math.unit(204, "lb"),
  37758. name: "Side",
  37759. image: {
  37760. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37761. extra: 974/775,
  37762. bottom: 169/1143
  37763. }
  37764. },
  37765. sitting: {
  37766. height: math.unit(6 + 2/12, "feet"),
  37767. weight: math.unit(204, "lb"),
  37768. name: "Sitting",
  37769. image: {
  37770. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37771. extra: 1175/964,
  37772. bottom: 378/1553
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(6 + 1/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(6, "inches"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/tululi/front.svg",
  37792. extra: 1997/1876,
  37793. bottom: 20/2017
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(6, "inches"),
  37801. default: true
  37802. },
  37803. ]
  37804. ))
  37805. characterMakers.push(() => makeCharacter(
  37806. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37807. {
  37808. front: {
  37809. height: math.unit(4 + 1/12, "feet"),
  37810. name: "Front",
  37811. image: {
  37812. source: "./media/characters/star/front.svg",
  37813. extra: 1493/1189,
  37814. bottom: 48/1541
  37815. }
  37816. },
  37817. },
  37818. [
  37819. {
  37820. name: "Normal",
  37821. height: math.unit(4 + 1/12, "feet"),
  37822. default: true
  37823. },
  37824. ]
  37825. ))
  37826. characterMakers.push(() => makeCharacter(
  37827. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37828. {
  37829. front: {
  37830. height: math.unit(6 + 3/12, "feet"),
  37831. name: "Front",
  37832. image: {
  37833. source: "./media/characters/comet/front.svg",
  37834. extra: 1681/1462,
  37835. bottom: 26/1707
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(6 + 3/12, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37849. {
  37850. front: {
  37851. height: math.unit(950, "feet"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/vortex/front.svg",
  37855. extra: 1497/1434,
  37856. bottom: 56/1553
  37857. }
  37858. },
  37859. maw: {
  37860. height: math.unit(285, "feet"),
  37861. name: "Maw",
  37862. image: {
  37863. source: "./media/characters/vortex/maw.svg"
  37864. }
  37865. },
  37866. },
  37867. [
  37868. {
  37869. name: "Macro",
  37870. height: math.unit(950, "feet"),
  37871. default: true
  37872. },
  37873. ]
  37874. ))
  37875. characterMakers.push(() => makeCharacter(
  37876. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37877. {
  37878. front: {
  37879. height: math.unit(600, "feet"),
  37880. weight: math.unit(0.02, "grams"),
  37881. name: "Front",
  37882. image: {
  37883. source: "./media/characters/doodle/front.svg",
  37884. extra: 1578/1413,
  37885. bottom: 37/1615
  37886. }
  37887. },
  37888. },
  37889. [
  37890. {
  37891. name: "Macro",
  37892. height: math.unit(600, "feet"),
  37893. default: true
  37894. },
  37895. ]
  37896. ))
  37897. characterMakers.push(() => makeCharacter(
  37898. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37899. {
  37900. front: {
  37901. height: math.unit(6 + 6/12, "feet"),
  37902. name: "Front",
  37903. image: {
  37904. source: "./media/characters/jai/front.svg",
  37905. extra: 1645/1534,
  37906. bottom: 115/1760
  37907. }
  37908. },
  37909. },
  37910. [
  37911. {
  37912. name: "Normal",
  37913. height: math.unit(6 + 6/12, "feet"),
  37914. default: true
  37915. },
  37916. ]
  37917. ))
  37918. characterMakers.push(() => makeCharacter(
  37919. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37920. {
  37921. front: {
  37922. height: math.unit(6 + 8/12, "feet"),
  37923. name: "Front",
  37924. image: {
  37925. source: "./media/characters/pixel/front.svg",
  37926. extra: 1900/1735,
  37927. bottom: 63/1963
  37928. }
  37929. },
  37930. },
  37931. [
  37932. {
  37933. name: "Normal",
  37934. height: math.unit(6 + 8/12, "feet"),
  37935. default: true
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37941. {
  37942. back: {
  37943. height: math.unit(4 + 1/12, "feet"),
  37944. weight: math.unit(75, "lb"),
  37945. name: "Back",
  37946. image: {
  37947. source: "./media/characters/rhett/back.svg",
  37948. extra: 930/878,
  37949. bottom: 25/955
  37950. }
  37951. },
  37952. front: {
  37953. height: math.unit(4 + 1/12, "feet"),
  37954. weight: math.unit(75, "lb"),
  37955. name: "Front",
  37956. image: {
  37957. source: "./media/characters/rhett/front.svg",
  37958. extra: 1682/1586,
  37959. bottom: 92/1774
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Micro",
  37966. height: math.unit(8, "inches")
  37967. },
  37968. {
  37969. name: "Tiny",
  37970. height: math.unit(2, "feet")
  37971. },
  37972. {
  37973. name: "Normal",
  37974. height: math.unit(4 + 1/12, "feet"),
  37975. default: true
  37976. },
  37977. ]
  37978. ))
  37979. characterMakers.push(() => makeCharacter(
  37980. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37981. {
  37982. front: {
  37983. height: math.unit(3 + 3/12, "feet"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/penny/front.svg",
  37987. extra: 1406/1311,
  37988. bottom: 26/1432
  37989. }
  37990. },
  37991. },
  37992. [
  37993. {
  37994. name: "Normal",
  37995. height: math.unit(3 + 3/12, "feet"),
  37996. default: true
  37997. },
  37998. ]
  37999. ))
  38000. characterMakers.push(() => makeCharacter(
  38001. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38002. {
  38003. front: {
  38004. height: math.unit(4 + 11/12, "feet"),
  38005. name: "Front",
  38006. image: {
  38007. source: "./media/characters/monty/front.svg",
  38008. extra: 1479/1209,
  38009. bottom: 0/1479
  38010. }
  38011. },
  38012. },
  38013. [
  38014. {
  38015. name: "Normal",
  38016. height: math.unit(4 + 11/12, "feet"),
  38017. default: true
  38018. },
  38019. ]
  38020. ))
  38021. characterMakers.push(() => makeCharacter(
  38022. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38023. {
  38024. front: {
  38025. height: math.unit(8 + 4/12, "feet"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/sterling/front.svg",
  38029. extra: 1420/1236,
  38030. bottom: 27/1447
  38031. }
  38032. },
  38033. },
  38034. [
  38035. {
  38036. name: "Normal",
  38037. height: math.unit(8 + 4/12, "feet"),
  38038. default: true
  38039. },
  38040. ]
  38041. ))
  38042. characterMakers.push(() => makeCharacter(
  38043. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38044. {
  38045. front: {
  38046. height: math.unit(15, "feet"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/marble/front.svg",
  38050. extra: 973/937,
  38051. bottom: 32/1005
  38052. }
  38053. },
  38054. },
  38055. [
  38056. {
  38057. name: "Normal",
  38058. height: math.unit(15, "feet"),
  38059. default: true
  38060. },
  38061. ]
  38062. ))
  38063. characterMakers.push(() => makeCharacter(
  38064. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38065. {
  38066. front: {
  38067. height: math.unit(3, "inches"),
  38068. name: "Front",
  38069. image: {
  38070. source: "./media/characters/powder/front.svg",
  38071. extra: 1504/1334,
  38072. bottom: 518/2022
  38073. }
  38074. },
  38075. },
  38076. [
  38077. {
  38078. name: "Normal",
  38079. height: math.unit(3, "inches"),
  38080. default: true
  38081. },
  38082. ]
  38083. ))
  38084. characterMakers.push(() => makeCharacter(
  38085. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38086. {
  38087. front: {
  38088. height: math.unit(4 + 5/12, "feet"),
  38089. name: "Front",
  38090. image: {
  38091. source: "./media/characters/joey-raccoon/front.svg",
  38092. extra: 1273/1197,
  38093. bottom: 0/1273
  38094. }
  38095. },
  38096. },
  38097. [
  38098. {
  38099. name: "Normal",
  38100. height: math.unit(4 + 5/12, "feet"),
  38101. default: true
  38102. },
  38103. ]
  38104. ))
  38105. characterMakers.push(() => makeCharacter(
  38106. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38107. {
  38108. front: {
  38109. height: math.unit(8 + 4/12, "feet"),
  38110. name: "Front",
  38111. image: {
  38112. source: "./media/characters/vick/front.svg",
  38113. extra: 2187/2118,
  38114. bottom: 47/2234
  38115. }
  38116. },
  38117. },
  38118. [
  38119. {
  38120. name: "Normal",
  38121. height: math.unit(8 + 4/12, "feet"),
  38122. default: true
  38123. },
  38124. ]
  38125. ))
  38126. characterMakers.push(() => makeCharacter(
  38127. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38128. {
  38129. front: {
  38130. height: math.unit(5 + 5/12, "feet"),
  38131. name: "Front",
  38132. image: {
  38133. source: "./media/characters/mitsy/front.svg",
  38134. extra: 1842/1695,
  38135. bottom: 0/1842
  38136. }
  38137. },
  38138. },
  38139. [
  38140. {
  38141. name: "Normal",
  38142. height: math.unit(5 + 5/12, "feet"),
  38143. default: true
  38144. },
  38145. ]
  38146. ))
  38147. characterMakers.push(() => makeCharacter(
  38148. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38149. {
  38150. front: {
  38151. height: math.unit(6 + 3/12, "feet"),
  38152. name: "Front",
  38153. image: {
  38154. source: "./media/characters/silvy/front.svg",
  38155. extra: 1995/1836,
  38156. bottom: 225/2220
  38157. }
  38158. },
  38159. },
  38160. [
  38161. {
  38162. name: "Normal",
  38163. height: math.unit(6 + 3/12, "feet"),
  38164. default: true
  38165. },
  38166. ]
  38167. ))
  38168. characterMakers.push(() => makeCharacter(
  38169. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38170. {
  38171. front: {
  38172. height: math.unit(3 + 8/12, "feet"),
  38173. name: "Front",
  38174. image: {
  38175. source: "./media/characters/rodney/front.svg",
  38176. extra: 1956/1747,
  38177. bottom: 31/1987
  38178. }
  38179. },
  38180. frontDressed: {
  38181. height: math.unit(2.9, "feet"),
  38182. name: "Front (Dressed)",
  38183. image: {
  38184. source: "./media/characters/rodney/front-dressed.svg",
  38185. extra: 1382/1241,
  38186. bottom: 385/1767
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(3 + 8/12, "feet"),
  38194. default: true
  38195. },
  38196. ]
  38197. ))
  38198. characterMakers.push(() => makeCharacter(
  38199. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38200. {
  38201. front: {
  38202. height: math.unit(5 + 9/12, "feet"),
  38203. weight: math.unit(194, "lbs"),
  38204. name: "Front",
  38205. image: {
  38206. source: "./media/characters/zakail-sudekai/front.svg",
  38207. extra: 2696/2533,
  38208. bottom: 248/2944
  38209. }
  38210. },
  38211. maw: {
  38212. height: math.unit(1.35, "feet"),
  38213. name: "Maw",
  38214. image: {
  38215. source: "./media/characters/zakail-sudekai/maw.svg"
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Normal",
  38222. height: math.unit(5 + 9/12, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(8 + 4/12, "feet"),
  38232. weight: math.unit(1200, "lb"),
  38233. name: "Front",
  38234. image: {
  38235. source: "./media/characters/eleanor/front.svg",
  38236. extra: 1226/1192,
  38237. bottom: 52/1278
  38238. }
  38239. },
  38240. back: {
  38241. height: math.unit(8 + 4/12, "feet"),
  38242. weight: math.unit(1200, "lb"),
  38243. name: "Back",
  38244. image: {
  38245. source: "./media/characters/eleanor/back.svg",
  38246. extra: 1242/1184,
  38247. bottom: 60/1302
  38248. }
  38249. },
  38250. head: {
  38251. height: math.unit(2.62, "feet"),
  38252. name: "Head",
  38253. image: {
  38254. source: "./media/characters/eleanor/head.svg"
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(8 + 4/12, "feet"),
  38262. default: true
  38263. },
  38264. ]
  38265. ))
  38266. characterMakers.push(() => makeCharacter(
  38267. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38268. {
  38269. front: {
  38270. height: math.unit(8 + 4/12, "feet"),
  38271. weight: math.unit(750, "lb"),
  38272. name: "Front",
  38273. image: {
  38274. source: "./media/characters/tanya/front.svg",
  38275. extra: 1749/1615,
  38276. bottom: 33/1782
  38277. }
  38278. },
  38279. },
  38280. [
  38281. {
  38282. name: "Normal",
  38283. height: math.unit(8 + 4/12, "feet"),
  38284. default: true
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(5, "feet"),
  38293. weight: math.unit(225, "lb"),
  38294. name: "Front",
  38295. image: {
  38296. source: "./media/characters/cindy/front.svg",
  38297. extra: 1320/1250,
  38298. bottom: 42/1362
  38299. }
  38300. },
  38301. frontDressed: {
  38302. height: math.unit(5, "feet"),
  38303. weight: math.unit(225, "lb"),
  38304. name: "Front (Dressed)",
  38305. image: {
  38306. source: "./media/characters/cindy/front-dressed.svg",
  38307. extra: 1320/1250,
  38308. bottom: 42/1362
  38309. }
  38310. },
  38311. back: {
  38312. height: math.unit(5, "feet"),
  38313. weight: math.unit(225, "lb"),
  38314. name: "Back",
  38315. image: {
  38316. source: "./media/characters/cindy/back.svg",
  38317. extra: 1384/1346,
  38318. bottom: 14/1398
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(5, "feet"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38332. {
  38333. front: {
  38334. height: math.unit(6 + 9/12, "feet"),
  38335. weight: math.unit(440, "lb"),
  38336. name: "Front",
  38337. image: {
  38338. source: "./media/characters/wilbur-owen/front.svg",
  38339. extra: 1575/1448,
  38340. bottom: 72/1647
  38341. }
  38342. },
  38343. back: {
  38344. height: math.unit(6 + 9/12, "feet"),
  38345. weight: math.unit(440, "lb"),
  38346. name: "Back",
  38347. image: {
  38348. source: "./media/characters/wilbur-owen/back.svg",
  38349. extra: 1578/1445,
  38350. bottom: 36/1614
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Normal",
  38357. height: math.unit(6 + 9/12, "feet"),
  38358. default: true
  38359. },
  38360. ]
  38361. ))
  38362. characterMakers.push(() => makeCharacter(
  38363. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38364. {
  38365. front: {
  38366. height: math.unit(6 + 5/12, "feet"),
  38367. weight: math.unit(650, "lb"),
  38368. name: "Front",
  38369. image: {
  38370. source: "./media/characters/keegan/front.svg",
  38371. extra: 2387/2198,
  38372. bottom: 33/2420
  38373. }
  38374. },
  38375. side: {
  38376. height: math.unit(6 + 5/12, "feet"),
  38377. weight: math.unit(650, "lb"),
  38378. name: "Side",
  38379. image: {
  38380. source: "./media/characters/keegan/side.svg",
  38381. extra: 2390/2202,
  38382. bottom: 47/2437
  38383. }
  38384. },
  38385. back: {
  38386. height: math.unit(6 + 5/12, "feet"),
  38387. weight: math.unit(650, "lb"),
  38388. name: "Back",
  38389. image: {
  38390. source: "./media/characters/keegan/back.svg",
  38391. extra: 2418/2268,
  38392. bottom: 15/2433
  38393. }
  38394. },
  38395. frontSfw: {
  38396. height: math.unit(6 + 5/12, "feet"),
  38397. weight: math.unit(650, "lb"),
  38398. name: "Front (SFW)",
  38399. image: {
  38400. source: "./media/characters/keegan/front-sfw.svg",
  38401. extra: 2387/2198,
  38402. bottom: 33/2420
  38403. }
  38404. },
  38405. beans: {
  38406. height: math.unit(1.85, "feet"),
  38407. name: "Beans",
  38408. image: {
  38409. source: "./media/characters/keegan/beans.svg"
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(6 + 5/12, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38423. {
  38424. front: {
  38425. height: math.unit(9, "feet"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/colton/front.svg",
  38429. extra: 1589/1326,
  38430. bottom: 139/1728
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(9, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(2 + 9/12, "feet"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/bora/front.svg",
  38450. extra: 1265/1250,
  38451. bottom: 24/1289
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(2 + 9/12, "feet"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(8, "feet"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/myu-myu/front.svg",
  38471. extra: 1949/1857,
  38472. bottom: 90/2039
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(8, "feet"),
  38480. default: true
  38481. },
  38482. {
  38483. name: "Big",
  38484. height: math.unit(15, "feet")
  38485. },
  38486. {
  38487. name: "BIG",
  38488. height: math.unit(25, "feet")
  38489. },
  38490. ]
  38491. ))
  38492. characterMakers.push(() => makeCharacter(
  38493. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38494. {
  38495. side: {
  38496. height: math.unit(7 + 5/12, "feet"),
  38497. weight: math.unit(2800, "lb"),
  38498. name: "Side",
  38499. image: {
  38500. source: "./media/characters/haloren/side.svg",
  38501. extra: 1793/409,
  38502. bottom: 59/1852
  38503. }
  38504. },
  38505. frontPaw: {
  38506. height: math.unit(2.36, "feet"),
  38507. name: "Front paw",
  38508. image: {
  38509. source: "./media/characters/haloren/front-paw.svg"
  38510. }
  38511. },
  38512. hindPaw: {
  38513. height: math.unit(3.18, "feet"),
  38514. name: "Hind paw",
  38515. image: {
  38516. source: "./media/characters/haloren/hind-paw.svg"
  38517. }
  38518. },
  38519. maw: {
  38520. height: math.unit(5.05, "feet"),
  38521. name: "Maw",
  38522. image: {
  38523. source: "./media/characters/haloren/maw.svg"
  38524. }
  38525. },
  38526. dick: {
  38527. height: math.unit(2.90, "feet"),
  38528. name: "Dick",
  38529. image: {
  38530. source: "./media/characters/haloren/dick.svg"
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(7 + 5/12, "feet"),
  38538. default: true
  38539. },
  38540. {
  38541. name: "Enhanced",
  38542. height: math.unit(14 + 3/12, "feet")
  38543. },
  38544. ]
  38545. ))
  38546. characterMakers.push(() => makeCharacter(
  38547. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38548. {
  38549. front: {
  38550. height: math.unit(171, "cm"),
  38551. name: "Front",
  38552. image: {
  38553. source: "./media/characters/kimmy/front.svg",
  38554. extra: 1491/1435,
  38555. bottom: 53/1544
  38556. }
  38557. },
  38558. },
  38559. [
  38560. {
  38561. name: "Small",
  38562. height: math.unit(9, "cm")
  38563. },
  38564. {
  38565. name: "Normal",
  38566. height: math.unit(171, "cm"),
  38567. default: true
  38568. },
  38569. ]
  38570. ))
  38571. characterMakers.push(() => makeCharacter(
  38572. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38573. {
  38574. front: {
  38575. height: math.unit(8, "feet"),
  38576. weight: math.unit(300, "lb"),
  38577. name: "Front",
  38578. image: {
  38579. source: "./media/characters/galeboomer/front.svg",
  38580. extra: 4651/4415,
  38581. bottom: 162/4813
  38582. }
  38583. },
  38584. back: {
  38585. height: math.unit(8, "feet"),
  38586. weight: math.unit(300, "lb"),
  38587. name: "Back",
  38588. image: {
  38589. source: "./media/characters/galeboomer/back.svg",
  38590. extra: 4544/4314,
  38591. bottom: 16/4560
  38592. }
  38593. },
  38594. frontAlt: {
  38595. height: math.unit(8, "feet"),
  38596. weight: math.unit(300, "lb"),
  38597. name: "Front (Alt)",
  38598. image: {
  38599. source: "./media/characters/galeboomer/front-alt.svg",
  38600. extra: 4458/4228,
  38601. bottom: 68/4526
  38602. }
  38603. },
  38604. maw: {
  38605. height: math.unit(1.2, "feet"),
  38606. name: "Maw",
  38607. image: {
  38608. source: "./media/characters/galeboomer/maw.svg"
  38609. }
  38610. },
  38611. },
  38612. [
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(8, "feet"),
  38616. default: true
  38617. },
  38618. ]
  38619. ))
  38620. characterMakers.push(() => makeCharacter(
  38621. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38622. {
  38623. front: {
  38624. height: math.unit(5 + 9/12, "feet"),
  38625. weight: math.unit(120, "lb"),
  38626. name: "Front",
  38627. image: {
  38628. source: "./media/characters/chyr/front.svg",
  38629. extra: 1323/1254,
  38630. bottom: 63/1386
  38631. }
  38632. },
  38633. back: {
  38634. height: math.unit(5 + 9/12, "feet"),
  38635. weight: math.unit(120, "lb"),
  38636. name: "Back",
  38637. image: {
  38638. source: "./media/characters/chyr/back.svg",
  38639. extra: 1323/1252,
  38640. bottom: 48/1371
  38641. }
  38642. },
  38643. },
  38644. [
  38645. {
  38646. name: "Normal",
  38647. height: math.unit(5 + 9/12, "feet"),
  38648. default: true
  38649. },
  38650. ]
  38651. ))
  38652. characterMakers.push(() => makeCharacter(
  38653. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38654. {
  38655. front: {
  38656. height: math.unit(7, "feet"),
  38657. weight: math.unit(310, "lb"),
  38658. name: "Front",
  38659. image: {
  38660. source: "./media/characters/solarus/front.svg",
  38661. extra: 2415/2021,
  38662. bottom: 103/2518
  38663. }
  38664. },
  38665. back: {
  38666. height: math.unit(7, "feet"),
  38667. weight: math.unit(310, "lb"),
  38668. name: "Back",
  38669. image: {
  38670. source: "./media/characters/solarus/back.svg",
  38671. extra: 2463/2089,
  38672. bottom: 79/2542
  38673. }
  38674. },
  38675. },
  38676. [
  38677. {
  38678. name: "Normal",
  38679. height: math.unit(7, "feet"),
  38680. default: true
  38681. },
  38682. ]
  38683. ))
  38684. characterMakers.push(() => makeCharacter(
  38685. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38686. {
  38687. front: {
  38688. height: math.unit(16, "feet"),
  38689. name: "Front",
  38690. image: {
  38691. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38692. extra: 1844/1780,
  38693. bottom: 58/1902
  38694. }
  38695. },
  38696. winterCoat: {
  38697. height: math.unit(16, "feet"),
  38698. name: "Winter Coat",
  38699. image: {
  38700. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38701. extra: 1807/1775,
  38702. bottom: 69/1876
  38703. }
  38704. },
  38705. },
  38706. [
  38707. {
  38708. name: "Normal",
  38709. height: math.unit(16, "feet"),
  38710. default: true
  38711. },
  38712. {
  38713. name: "Chicago Size",
  38714. height: math.unit(560, "feet")
  38715. },
  38716. ]
  38717. ))
  38718. characterMakers.push(() => makeCharacter(
  38719. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38720. {
  38721. front: {
  38722. height: math.unit(11 + 6/12, "feet"),
  38723. weight: math.unit(1366, "lb"),
  38724. name: "Front",
  38725. image: {
  38726. source: "./media/characters/lexor/front.svg",
  38727. extra: 1560/1481,
  38728. bottom: 211/1771
  38729. }
  38730. },
  38731. back: {
  38732. height: math.unit(11 + 6/12, "feet"),
  38733. weight: math.unit(1366, "lb"),
  38734. name: "Back",
  38735. image: {
  38736. source: "./media/characters/lexor/back.svg",
  38737. extra: 1614/1533,
  38738. bottom: 76/1690
  38739. }
  38740. },
  38741. maw: {
  38742. height: math.unit(3, "feet"),
  38743. name: "Maw",
  38744. image: {
  38745. source: "./media/characters/lexor/maw.svg"
  38746. }
  38747. },
  38748. dick: {
  38749. height: math.unit(2.59, "feet"),
  38750. name: "Dick",
  38751. image: {
  38752. source: "./media/characters/lexor/dick.svg"
  38753. }
  38754. },
  38755. },
  38756. [
  38757. {
  38758. name: "Normal",
  38759. height: math.unit(11 + 6/12, "feet"),
  38760. default: true
  38761. },
  38762. ]
  38763. ))
  38764. characterMakers.push(() => makeCharacter(
  38765. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38766. {
  38767. front: {
  38768. height: math.unit(5 + 8/12, "feet"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/magnum/front.svg",
  38772. extra: 942/855,
  38773. bottom: 26/968
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(5 + 8/12, "feet"),
  38781. default: true
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38787. {
  38788. front: {
  38789. height: math.unit(18 + 4/12, "feet"),
  38790. weight: math.unit(1500, "kg"),
  38791. name: "Front",
  38792. image: {
  38793. source: "./media/characters/solas-sharpsman/front.svg",
  38794. extra: 1698/1589,
  38795. bottom: 0/1698
  38796. }
  38797. },
  38798. },
  38799. [
  38800. {
  38801. name: "Normal",
  38802. height: math.unit(18 + 4/12, "feet"),
  38803. default: true
  38804. },
  38805. ]
  38806. ))
  38807. characterMakers.push(() => makeCharacter(
  38808. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38809. {
  38810. front: {
  38811. height: math.unit(5 + 5/12, "feet"),
  38812. weight: math.unit(180, "lb"),
  38813. name: "Front",
  38814. image: {
  38815. source: "./media/characters/october/front.svg",
  38816. extra: 1800/1650,
  38817. bottom: 0/1800
  38818. }
  38819. },
  38820. frontNsfw: {
  38821. height: math.unit(5 + 5/12, "feet"),
  38822. weight: math.unit(180, "lb"),
  38823. name: "Front (NSFW)",
  38824. image: {
  38825. source: "./media/characters/october/front-nsfw.svg",
  38826. extra: 1392/1307,
  38827. bottom: 42/1434
  38828. }
  38829. },
  38830. },
  38831. [
  38832. {
  38833. name: "Normal",
  38834. height: math.unit(5 + 5/12, "feet"),
  38835. default: true
  38836. },
  38837. ]
  38838. ))
  38839. characterMakers.push(() => makeCharacter(
  38840. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38841. {
  38842. front: {
  38843. height: math.unit(8 + 6/12, "feet"),
  38844. name: "Front",
  38845. image: {
  38846. source: "./media/characters/essynkardi/front.svg",
  38847. extra: 1914/1846,
  38848. bottom: 22/1936
  38849. }
  38850. },
  38851. },
  38852. [
  38853. {
  38854. name: "Normal",
  38855. height: math.unit(8 + 6/12, "feet"),
  38856. default: true
  38857. },
  38858. ]
  38859. ))
  38860. characterMakers.push(() => makeCharacter(
  38861. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38862. {
  38863. front: {
  38864. height: math.unit(6 + 6/12, "feet"),
  38865. weight: math.unit(7, "lb"),
  38866. name: "Front",
  38867. image: {
  38868. source: "./media/characters/icky/front.svg",
  38869. extra: 813/782,
  38870. bottom: 66/879
  38871. }
  38872. },
  38873. back: {
  38874. height: math.unit(6 + 6/12, "feet"),
  38875. weight: math.unit(7, "lb"),
  38876. name: "Back",
  38877. image: {
  38878. source: "./media/characters/icky/back.svg",
  38879. extra: 754/735,
  38880. bottom: 56/810
  38881. }
  38882. },
  38883. },
  38884. [
  38885. {
  38886. name: "Normal",
  38887. height: math.unit(6 + 6/12, "feet"),
  38888. default: true
  38889. },
  38890. ]
  38891. ))
  38892. characterMakers.push(() => makeCharacter(
  38893. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38894. {
  38895. front: {
  38896. height: math.unit(15, "feet"),
  38897. name: "Front",
  38898. image: {
  38899. source: "./media/characters/rojas/front.svg",
  38900. extra: 1462/1408,
  38901. bottom: 95/1557
  38902. }
  38903. },
  38904. back: {
  38905. height: math.unit(15, "feet"),
  38906. name: "Back",
  38907. image: {
  38908. source: "./media/characters/rojas/back.svg",
  38909. extra: 1023/954,
  38910. bottom: 28/1051
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Normal",
  38917. height: math.unit(15, "feet"),
  38918. default: true
  38919. },
  38920. ]
  38921. ))
  38922. characterMakers.push(() => makeCharacter(
  38923. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38924. {
  38925. frontHuman: {
  38926. height: math.unit(5 + 7/12, "feet"),
  38927. name: "Front (Human)",
  38928. image: {
  38929. source: "./media/characters/alek-dryagan/front-human.svg",
  38930. extra: 1687/1667,
  38931. bottom: 69/1756
  38932. }
  38933. },
  38934. backHuman: {
  38935. height: math.unit(5 + 7/12, "feet"),
  38936. name: "Back (Human)",
  38937. image: {
  38938. source: "./media/characters/alek-dryagan/back-human.svg",
  38939. extra: 1670/1649,
  38940. bottom: 65/1735
  38941. }
  38942. },
  38943. frontDemi: {
  38944. height: math.unit(65, "feet"),
  38945. name: "Front (Demi)",
  38946. image: {
  38947. source: "./media/characters/alek-dryagan/front-demi.svg",
  38948. extra: 1669/1642,
  38949. bottom: 49/1718
  38950. }
  38951. },
  38952. backDemi: {
  38953. height: math.unit(65, "feet"),
  38954. name: "Back (Demi)",
  38955. image: {
  38956. source: "./media/characters/alek-dryagan/back-demi.svg",
  38957. extra: 1658/1637,
  38958. bottom: 40/1698
  38959. }
  38960. },
  38961. mawHuman: {
  38962. height: math.unit(0.3, "feet"),
  38963. name: "Maw (Human)",
  38964. image: {
  38965. source: "./media/characters/alek-dryagan/maw-human.svg"
  38966. }
  38967. },
  38968. mawDemi: {
  38969. height: math.unit(3.8, "feet"),
  38970. name: "Maw (Demi)",
  38971. image: {
  38972. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38973. }
  38974. },
  38975. },
  38976. [
  38977. {
  38978. name: "Normal",
  38979. height: math.unit(5 + 7/12, "feet"),
  38980. default: true
  38981. },
  38982. ]
  38983. ))
  38984. characterMakers.push(() => makeCharacter(
  38985. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38986. {
  38987. frontHuman: {
  38988. height: math.unit(5 + 2/12, "feet"),
  38989. name: "Front (Human)",
  38990. image: {
  38991. source: "./media/characters/gen/front-human.svg",
  38992. extra: 1627/1538,
  38993. bottom: 71/1698
  38994. }
  38995. },
  38996. backHuman: {
  38997. height: math.unit(5 + 2/12, "feet"),
  38998. name: "Back (Human)",
  38999. image: {
  39000. source: "./media/characters/gen/back-human.svg",
  39001. extra: 1638/1548,
  39002. bottom: 69/1707
  39003. }
  39004. },
  39005. frontDemi: {
  39006. height: math.unit(5 + 2/12, "feet"),
  39007. name: "Front (Demi)",
  39008. image: {
  39009. source: "./media/characters/gen/front-demi.svg",
  39010. extra: 1627/1538,
  39011. bottom: 71/1698
  39012. }
  39013. },
  39014. backDemi: {
  39015. height: math.unit(5 + 2/12, "feet"),
  39016. name: "Back (Demi)",
  39017. image: {
  39018. source: "./media/characters/gen/back-demi.svg",
  39019. extra: 1638/1548,
  39020. bottom: 69/1707
  39021. }
  39022. },
  39023. },
  39024. [
  39025. {
  39026. name: "Normal",
  39027. height: math.unit(5 + 2/12, "feet"),
  39028. default: true
  39029. },
  39030. ]
  39031. ))
  39032. characterMakers.push(() => makeCharacter(
  39033. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39034. {
  39035. frontImp: {
  39036. height: math.unit(1 + 11/12, "feet"),
  39037. name: "Front (Imp)",
  39038. image: {
  39039. source: "./media/characters/max-kobold/front-imp.svg",
  39040. extra: 1238/1134,
  39041. bottom: 81/1319
  39042. }
  39043. },
  39044. backImp: {
  39045. height: math.unit(1 + 11/12, "feet"),
  39046. name: "Back (Imp)",
  39047. image: {
  39048. source: "./media/characters/max-kobold/back-imp.svg",
  39049. extra: 1334/1175,
  39050. bottom: 34/1368
  39051. }
  39052. },
  39053. frontDemi: {
  39054. height: math.unit(5 + 9/12, "feet"),
  39055. name: "Front (Demi)",
  39056. image: {
  39057. source: "./media/characters/max-kobold/front-demi.svg",
  39058. extra: 1715/1685,
  39059. bottom: 54/1769
  39060. }
  39061. },
  39062. backDemi: {
  39063. height: math.unit(5 + 9/12, "feet"),
  39064. name: "Back (Demi)",
  39065. image: {
  39066. source: "./media/characters/max-kobold/back-demi.svg",
  39067. extra: 1752/1729,
  39068. bottom: 41/1793
  39069. }
  39070. },
  39071. handImp: {
  39072. height: math.unit(0.45, "feet"),
  39073. name: "Hand (Imp)",
  39074. image: {
  39075. source: "./media/characters/max-kobold/hand.svg"
  39076. }
  39077. },
  39078. pawImp: {
  39079. height: math.unit(0.46, "feet"),
  39080. name: "Paw (Imp)",
  39081. image: {
  39082. source: "./media/characters/max-kobold/paw.svg"
  39083. }
  39084. },
  39085. handDemi: {
  39086. height: math.unit(0.80, "feet"),
  39087. name: "Hand (Demi)",
  39088. image: {
  39089. source: "./media/characters/max-kobold/hand.svg"
  39090. }
  39091. },
  39092. pawDemi: {
  39093. height: math.unit(1.1, "feet"),
  39094. name: "Paw (Demi)",
  39095. image: {
  39096. source: "./media/characters/max-kobold/paw.svg"
  39097. }
  39098. },
  39099. headImp: {
  39100. height: math.unit(1.33, "feet"),
  39101. name: "Head (Imp)",
  39102. image: {
  39103. source: "./media/characters/max-kobold/head-imp.svg"
  39104. }
  39105. },
  39106. mawImp: {
  39107. height: math.unit(0.75, "feet"),
  39108. name: "Maw (Imp)",
  39109. image: {
  39110. source: "./media/characters/max-kobold/maw-imp.svg"
  39111. }
  39112. },
  39113. mawDemi: {
  39114. height: math.unit(0.42, "feet"),
  39115. name: "Maw (Demi)",
  39116. image: {
  39117. source: "./media/characters/max-kobold/maw-demi.svg"
  39118. }
  39119. },
  39120. },
  39121. [
  39122. {
  39123. name: "Normal",
  39124. height: math.unit(1 + 11/12, "feet"),
  39125. default: true
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(7 + 5/12, "feet"),
  39134. name: "Front",
  39135. image: {
  39136. source: "./media/characters/carbon/front.svg",
  39137. extra: 1754/1689,
  39138. bottom: 65/1819
  39139. }
  39140. },
  39141. back: {
  39142. height: math.unit(7 + 5/12, "feet"),
  39143. name: "Back",
  39144. image: {
  39145. source: "./media/characters/carbon/back.svg",
  39146. extra: 1762/1695,
  39147. bottom: 24/1786
  39148. }
  39149. },
  39150. frontGigantamax: {
  39151. height: math.unit(150, "feet"),
  39152. name: "Front (Gigantamax)",
  39153. image: {
  39154. source: "./media/characters/carbon/front-gigantamax.svg",
  39155. extra: 1826/1669,
  39156. bottom: 59/1885
  39157. }
  39158. },
  39159. backGigantamax: {
  39160. height: math.unit(150, "feet"),
  39161. name: "Back (Gigantamax)",
  39162. image: {
  39163. source: "./media/characters/carbon/back-gigantamax.svg",
  39164. extra: 1796/1653,
  39165. bottom: 53/1849
  39166. }
  39167. },
  39168. maw: {
  39169. height: math.unit(0.48, "feet"),
  39170. name: "Maw",
  39171. image: {
  39172. source: "./media/characters/carbon/maw.svg"
  39173. }
  39174. },
  39175. mawGigantamax: {
  39176. height: math.unit(7.5, "feet"),
  39177. name: "Maw (Gigantamax)",
  39178. image: {
  39179. source: "./media/characters/carbon/maw-gigantamax.svg"
  39180. }
  39181. },
  39182. },
  39183. [
  39184. {
  39185. name: "Normal",
  39186. height: math.unit(7 + 5/12, "feet"),
  39187. default: true
  39188. },
  39189. ]
  39190. ))
  39191. characterMakers.push(() => makeCharacter(
  39192. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39193. {
  39194. front: {
  39195. height: math.unit(6, "feet"),
  39196. name: "Front",
  39197. image: {
  39198. source: "./media/characters/maverick/front.svg",
  39199. extra: 1672/1661,
  39200. bottom: 85/1757
  39201. }
  39202. },
  39203. back: {
  39204. height: math.unit(6, "feet"),
  39205. name: "Back",
  39206. image: {
  39207. source: "./media/characters/maverick/back.svg",
  39208. extra: 1642/1631,
  39209. bottom: 38/1680
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Normal",
  39216. height: math.unit(6, "feet"),
  39217. default: true
  39218. },
  39219. ]
  39220. ))
  39221. characterMakers.push(() => makeCharacter(
  39222. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39223. {
  39224. front: {
  39225. height: math.unit(15, "feet"),
  39226. weight: math.unit(615, "lb"),
  39227. name: "Front",
  39228. image: {
  39229. source: "./media/characters/grockle/front.svg",
  39230. extra: 1535/1427,
  39231. bottom: 56/1591
  39232. }
  39233. },
  39234. },
  39235. [
  39236. {
  39237. name: "Normal",
  39238. height: math.unit(15, "feet"),
  39239. default: true
  39240. },
  39241. {
  39242. name: "Large",
  39243. height: math.unit(150, "feet")
  39244. },
  39245. {
  39246. name: "Macro",
  39247. height: math.unit(1876, "feet")
  39248. },
  39249. {
  39250. name: "Mega Macro",
  39251. height: math.unit(121940, "feet")
  39252. },
  39253. {
  39254. name: "Giga Macro",
  39255. height: math.unit(750, "km")
  39256. },
  39257. {
  39258. name: "Tera Macro",
  39259. height: math.unit(750000, "km")
  39260. },
  39261. {
  39262. name: "Galactic",
  39263. height: math.unit(1.4e5, "km")
  39264. },
  39265. {
  39266. name: "Godlike",
  39267. height: math.unit(9.8e280, "galaxies")
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(11, "meters"),
  39276. weight: math.unit(20, "tonnes"),
  39277. name: "Front",
  39278. image: {
  39279. source: "./media/characters/alistair/front.svg",
  39280. extra: 1265/1009,
  39281. bottom: 93/1358
  39282. }
  39283. },
  39284. },
  39285. [
  39286. {
  39287. name: "Normal",
  39288. height: math.unit(11, "meters"),
  39289. default: true
  39290. },
  39291. ]
  39292. ))
  39293. characterMakers.push(() => makeCharacter(
  39294. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39295. {
  39296. front: {
  39297. height: math.unit(5 + 8/12, "feet"),
  39298. name: "Front",
  39299. image: {
  39300. source: "./media/characters/haruka/front.svg",
  39301. extra: 2012/1952,
  39302. bottom: 0/2012
  39303. }
  39304. },
  39305. },
  39306. [
  39307. {
  39308. name: "Normal",
  39309. height: math.unit(5 + 8/12, "feet"),
  39310. default: true
  39311. },
  39312. ]
  39313. ))
  39314. characterMakers.push(() => makeCharacter(
  39315. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39316. {
  39317. back: {
  39318. height: math.unit(9, "feet"),
  39319. name: "Back",
  39320. image: {
  39321. source: "./media/characters/vivian-sylveon/back.svg",
  39322. extra: 1853/1714,
  39323. bottom: 0/1853
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Normal",
  39330. height: math.unit(9, "feet"),
  39331. default: true
  39332. },
  39333. {
  39334. name: "Macro",
  39335. height: math.unit(500, "feet")
  39336. },
  39337. {
  39338. name: "Megamacro",
  39339. height: math.unit(600, "miles")
  39340. },
  39341. {
  39342. name: "Gigamacro",
  39343. height: math.unit(30000, "miles")
  39344. },
  39345. ]
  39346. ))
  39347. characterMakers.push(() => makeCharacter(
  39348. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39349. {
  39350. anthro: {
  39351. height: math.unit(5 + 10/12, "feet"),
  39352. weight: math.unit(100, "lb"),
  39353. name: "Anthro",
  39354. image: {
  39355. source: "./media/characters/daiki/anthro.svg",
  39356. extra: 1115/1027,
  39357. bottom: 69/1184
  39358. }
  39359. },
  39360. feral: {
  39361. height: math.unit(200, "feet"),
  39362. name: "Feral",
  39363. image: {
  39364. source: "./media/characters/daiki/feral.svg",
  39365. extra: 1256/313,
  39366. bottom: 39/1295
  39367. }
  39368. },
  39369. feralHead: {
  39370. height: math.unit(171, "feet"),
  39371. name: "Feral Head",
  39372. image: {
  39373. source: "./media/characters/daiki/feral-head.svg"
  39374. }
  39375. },
  39376. manaDragon: {
  39377. height: math.unit(170, "meters"),
  39378. name: "Mana-dragon",
  39379. image: {
  39380. source: "./media/characters/daiki/mana-dragon.svg",
  39381. extra: 763/420,
  39382. bottom: 97/860
  39383. }
  39384. },
  39385. },
  39386. [
  39387. {
  39388. name: "Normal",
  39389. height: math.unit(5 + 10/12, "feet"),
  39390. default: true
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39396. {
  39397. fullyEquippedFront: {
  39398. height: math.unit(3 + 1/12, "feet"),
  39399. weight: math.unit(24, "lb"),
  39400. name: "Fully Equipped (Front)",
  39401. image: {
  39402. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39403. extra: 687/605,
  39404. bottom: 18/705
  39405. }
  39406. },
  39407. fullyEquippedBack: {
  39408. height: math.unit(3 + 1/12, "feet"),
  39409. weight: math.unit(24, "lb"),
  39410. name: "Fully Equipped (Back)",
  39411. image: {
  39412. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39413. extra: 689/590,
  39414. bottom: 18/707
  39415. }
  39416. },
  39417. dailyWear: {
  39418. height: math.unit(3 + 1/12, "feet"),
  39419. weight: math.unit(24, "lb"),
  39420. name: "Daily Wear",
  39421. image: {
  39422. source: "./media/characters/tea-spot/daily-wear.svg",
  39423. extra: 701/620,
  39424. bottom: 21/722
  39425. }
  39426. },
  39427. maidWork: {
  39428. height: math.unit(3 + 1/12, "feet"),
  39429. weight: math.unit(24, "lb"),
  39430. name: "Maid Work",
  39431. image: {
  39432. source: "./media/characters/tea-spot/maid-work.svg",
  39433. extra: 693/609,
  39434. bottom: 15/708
  39435. }
  39436. },
  39437. },
  39438. [
  39439. {
  39440. name: "Normal",
  39441. height: math.unit(3 + 1/12, "feet"),
  39442. default: true
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(175, "cm"),
  39451. weight: math.unit(75, "kg"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/chee/front.svg",
  39455. extra: 1796/1740,
  39456. bottom: 40/1836
  39457. }
  39458. },
  39459. },
  39460. [
  39461. {
  39462. name: "Micro-Micro",
  39463. height: math.unit(1, "nm")
  39464. },
  39465. {
  39466. name: "Micro-erst",
  39467. height: math.unit(1, "micrometer")
  39468. },
  39469. {
  39470. name: "Micro-er",
  39471. height: math.unit(1, "cm")
  39472. },
  39473. {
  39474. name: "Normal",
  39475. height: math.unit(175, "cm"),
  39476. default: true
  39477. },
  39478. {
  39479. name: "Macro",
  39480. height: math.unit(100, "m")
  39481. },
  39482. {
  39483. name: "Macro-er",
  39484. height: math.unit(1, "km")
  39485. },
  39486. {
  39487. name: "Macro-erst",
  39488. height: math.unit(10, "km")
  39489. },
  39490. {
  39491. name: "Macro-Macro",
  39492. height: math.unit(100, "km")
  39493. },
  39494. ]
  39495. ))
  39496. characterMakers.push(() => makeCharacter(
  39497. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39498. {
  39499. front: {
  39500. height: math.unit(11 + 9/12, "feet"),
  39501. weight: math.unit(935, "lb"),
  39502. name: "Front",
  39503. image: {
  39504. source: "./media/characters/kingsley/front.svg",
  39505. extra: 1803/1674,
  39506. bottom: 127/1930
  39507. }
  39508. },
  39509. frontNude: {
  39510. height: math.unit(11 + 9/12, "feet"),
  39511. weight: math.unit(935, "lb"),
  39512. name: "Front (Nude)",
  39513. image: {
  39514. source: "./media/characters/kingsley/front-nude.svg",
  39515. extra: 1803/1674,
  39516. bottom: 127/1930
  39517. }
  39518. },
  39519. },
  39520. [
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(11 + 9/12, "feet"),
  39524. default: true
  39525. },
  39526. ]
  39527. ))
  39528. characterMakers.push(() => makeCharacter(
  39529. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39530. {
  39531. side: {
  39532. height: math.unit(9, "feet"),
  39533. name: "Side",
  39534. image: {
  39535. source: "./media/characters/rymel/side.svg",
  39536. extra: 792/469,
  39537. bottom: 121/913
  39538. }
  39539. },
  39540. maw: {
  39541. height: math.unit(2.4, "meters"),
  39542. name: "Maw",
  39543. image: {
  39544. source: "./media/characters/rymel/maw.svg"
  39545. }
  39546. },
  39547. },
  39548. [
  39549. {
  39550. name: "House Drake",
  39551. height: math.unit(2, "feet")
  39552. },
  39553. {
  39554. name: "Reduced",
  39555. height: math.unit(4.5, "feet")
  39556. },
  39557. {
  39558. name: "Normal",
  39559. height: math.unit(9, "feet"),
  39560. default: true
  39561. },
  39562. ]
  39563. ))
  39564. characterMakers.push(() => makeCharacter(
  39565. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39566. {
  39567. front: {
  39568. height: math.unit(1.74, "meters"),
  39569. weight: math.unit(55, "kg"),
  39570. name: "Front",
  39571. image: {
  39572. source: "./media/characters/rubus/front.svg",
  39573. extra: 1894/1742,
  39574. bottom: 44/1938
  39575. }
  39576. },
  39577. },
  39578. [
  39579. {
  39580. name: "Normal",
  39581. height: math.unit(1.74, "meters"),
  39582. default: true
  39583. },
  39584. ]
  39585. ))
  39586. characterMakers.push(() => makeCharacter(
  39587. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39588. {
  39589. front: {
  39590. height: math.unit(5 + 2/12, "feet"),
  39591. weight: math.unit(112, "lb"),
  39592. name: "Front",
  39593. image: {
  39594. source: "./media/characters/cassie-kingston/front.svg",
  39595. extra: 1438/1390,
  39596. bottom: 47/1485
  39597. }
  39598. },
  39599. },
  39600. [
  39601. {
  39602. name: "Normal",
  39603. height: math.unit(5 + 2/12, "feet"),
  39604. default: true
  39605. },
  39606. {
  39607. name: "Macro",
  39608. height: math.unit(128, "feet")
  39609. },
  39610. {
  39611. name: "Megamacro",
  39612. height: math.unit(2.56, "miles")
  39613. },
  39614. ]
  39615. ))
  39616. characterMakers.push(() => makeCharacter(
  39617. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39618. {
  39619. front: {
  39620. height: math.unit(7, "feet"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/fox/front.svg",
  39624. extra: 1798/1703,
  39625. bottom: 55/1853
  39626. }
  39627. },
  39628. back: {
  39629. height: math.unit(7, "feet"),
  39630. name: "Back",
  39631. image: {
  39632. source: "./media/characters/fox/back.svg",
  39633. extra: 1748/1649,
  39634. bottom: 32/1780
  39635. }
  39636. },
  39637. head: {
  39638. height: math.unit(1.95, "feet"),
  39639. name: "Head",
  39640. image: {
  39641. source: "./media/characters/fox/head.svg"
  39642. }
  39643. },
  39644. dick: {
  39645. height: math.unit(1.33, "feet"),
  39646. name: "Dick",
  39647. image: {
  39648. source: "./media/characters/fox/dick.svg"
  39649. }
  39650. },
  39651. foot: {
  39652. height: math.unit(1, "feet"),
  39653. name: "Foot",
  39654. image: {
  39655. source: "./media/characters/fox/foot.svg"
  39656. }
  39657. },
  39658. paw: {
  39659. height: math.unit(0.92, "feet"),
  39660. name: "Paw",
  39661. image: {
  39662. source: "./media/characters/fox/paw.svg"
  39663. }
  39664. },
  39665. },
  39666. [
  39667. {
  39668. name: "Small",
  39669. height: math.unit(3, "inches")
  39670. },
  39671. {
  39672. name: "\"Realistic\"",
  39673. height: math.unit(7, "feet")
  39674. },
  39675. {
  39676. name: "Normal",
  39677. height: math.unit(150, "feet"),
  39678. default: true
  39679. },
  39680. {
  39681. name: "BIG",
  39682. height: math.unit(1200, "feet")
  39683. },
  39684. {
  39685. name: "👀",
  39686. height: math.unit(5, "miles")
  39687. },
  39688. {
  39689. name: "👀👀👀",
  39690. height: math.unit(64, "miles")
  39691. },
  39692. ]
  39693. ))
  39694. characterMakers.push(() => makeCharacter(
  39695. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39696. {
  39697. front: {
  39698. height: math.unit(625, "feet"),
  39699. name: "Front",
  39700. image: {
  39701. source: "./media/characters/asonja-rossa/front.svg",
  39702. extra: 1833/1686,
  39703. bottom: 24/1857
  39704. }
  39705. },
  39706. back: {
  39707. height: math.unit(625, "feet"),
  39708. name: "Back",
  39709. image: {
  39710. source: "./media/characters/asonja-rossa/back.svg",
  39711. extra: 1852/1753,
  39712. bottom: 26/1878
  39713. }
  39714. },
  39715. },
  39716. [
  39717. {
  39718. name: "Macro",
  39719. height: math.unit(625, "feet"),
  39720. default: true
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39726. {
  39727. side: {
  39728. height: math.unit(8, "feet"),
  39729. name: "Side",
  39730. image: {
  39731. source: "./media/characters/rezukii/side.svg",
  39732. extra: 979/542,
  39733. bottom: 87/1066
  39734. }
  39735. },
  39736. sitting: {
  39737. height: math.unit(14.6, "feet"),
  39738. name: "Sitting",
  39739. image: {
  39740. source: "./media/characters/rezukii/sitting.svg",
  39741. extra: 1023/813,
  39742. bottom: 45/1068
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Tiny",
  39749. height: math.unit(2, "feet")
  39750. },
  39751. {
  39752. name: "Smol",
  39753. height: math.unit(4, "feet")
  39754. },
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(8, "feet"),
  39758. default: true
  39759. },
  39760. {
  39761. name: "Big",
  39762. height: math.unit(12, "feet")
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(30, "feet")
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39772. {
  39773. front: {
  39774. height: math.unit(14, "feet"),
  39775. weight: math.unit(9.5, "tonnes"),
  39776. name: "Front",
  39777. image: {
  39778. source: "./media/characters/dawnheart/front.svg",
  39779. extra: 2792/2675,
  39780. bottom: 64/2856
  39781. }
  39782. },
  39783. },
  39784. [
  39785. {
  39786. name: "Normal",
  39787. height: math.unit(14, "feet"),
  39788. default: true
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39794. {
  39795. front: {
  39796. height: math.unit(1.7, "m"),
  39797. name: "Front",
  39798. image: {
  39799. source: "./media/characters/gladi/front.svg",
  39800. extra: 1460/1362,
  39801. bottom: 19/1479
  39802. }
  39803. },
  39804. back: {
  39805. height: math.unit(1.7, "m"),
  39806. name: "Back",
  39807. image: {
  39808. source: "./media/characters/gladi/back.svg",
  39809. extra: 1459/1357,
  39810. bottom: 12/1471
  39811. }
  39812. },
  39813. feral: {
  39814. height: math.unit(2.05, "m"),
  39815. name: "Feral",
  39816. image: {
  39817. source: "./media/characters/gladi/feral.svg",
  39818. extra: 821/557,
  39819. bottom: 91/912
  39820. }
  39821. },
  39822. },
  39823. [
  39824. {
  39825. name: "Shortest",
  39826. height: math.unit(70, "cm")
  39827. },
  39828. {
  39829. name: "Normal",
  39830. height: math.unit(1.7, "m")
  39831. },
  39832. {
  39833. name: "Macro",
  39834. height: math.unit(10, "m"),
  39835. default: true
  39836. },
  39837. {
  39838. name: "Tallest",
  39839. height: math.unit(200, "m")
  39840. },
  39841. ]
  39842. ))
  39843. characterMakers.push(() => makeCharacter(
  39844. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39845. {
  39846. front: {
  39847. height: math.unit(5 + 7/12, "feet"),
  39848. weight: math.unit(2, "tons"),
  39849. name: "Front",
  39850. image: {
  39851. source: "./media/characters/erdno/front.svg",
  39852. extra: 1234/1129,
  39853. bottom: 35/1269
  39854. }
  39855. },
  39856. angled: {
  39857. height: math.unit(5 + 7/12, "feet"),
  39858. weight: math.unit(2, "tons"),
  39859. name: "Angled",
  39860. image: {
  39861. source: "./media/characters/erdno/angled.svg",
  39862. extra: 1185/1139,
  39863. bottom: 36/1221
  39864. }
  39865. },
  39866. side: {
  39867. height: math.unit(5 + 7/12, "feet"),
  39868. weight: math.unit(2, "tons"),
  39869. name: "Side",
  39870. image: {
  39871. source: "./media/characters/erdno/side.svg",
  39872. extra: 1191/1144,
  39873. bottom: 40/1231
  39874. }
  39875. },
  39876. back: {
  39877. height: math.unit(5 + 7/12, "feet"),
  39878. weight: math.unit(2, "tons"),
  39879. name: "Back",
  39880. image: {
  39881. source: "./media/characters/erdno/back.svg",
  39882. extra: 1202/1146,
  39883. bottom: 17/1219
  39884. }
  39885. },
  39886. frontNsfw: {
  39887. height: math.unit(5 + 7/12, "feet"),
  39888. weight: math.unit(2, "tons"),
  39889. name: "Front (NSFW)",
  39890. image: {
  39891. source: "./media/characters/erdno/front-nsfw.svg",
  39892. extra: 1234/1129,
  39893. bottom: 35/1269
  39894. }
  39895. },
  39896. angledNsfw: {
  39897. height: math.unit(5 + 7/12, "feet"),
  39898. weight: math.unit(2, "tons"),
  39899. name: "Angled (NSFW)",
  39900. image: {
  39901. source: "./media/characters/erdno/angled-nsfw.svg",
  39902. extra: 1185/1139,
  39903. bottom: 36/1221
  39904. }
  39905. },
  39906. sideNsfw: {
  39907. height: math.unit(5 + 7/12, "feet"),
  39908. weight: math.unit(2, "tons"),
  39909. name: "Side (NSFW)",
  39910. image: {
  39911. source: "./media/characters/erdno/side-nsfw.svg",
  39912. extra: 1191/1144,
  39913. bottom: 40/1231
  39914. }
  39915. },
  39916. backNsfw: {
  39917. height: math.unit(5 + 7/12, "feet"),
  39918. weight: math.unit(2, "tons"),
  39919. name: "Back (NSFW)",
  39920. image: {
  39921. source: "./media/characters/erdno/back-nsfw.svg",
  39922. extra: 1202/1146,
  39923. bottom: 17/1219
  39924. }
  39925. },
  39926. frontHyper: {
  39927. height: math.unit(5 + 7/12, "feet"),
  39928. weight: math.unit(2, "tons"),
  39929. name: "Front (Hyper)",
  39930. image: {
  39931. source: "./media/characters/erdno/front-hyper.svg",
  39932. extra: 1298/1136,
  39933. bottom: 35/1333
  39934. }
  39935. },
  39936. },
  39937. [
  39938. {
  39939. name: "Normal",
  39940. height: math.unit(5 + 7/12, "feet"),
  39941. default: true
  39942. },
  39943. {
  39944. name: "Big",
  39945. height: math.unit(5.7, "meters")
  39946. },
  39947. {
  39948. name: "Macro",
  39949. height: math.unit(5.7, "kilometers")
  39950. },
  39951. {
  39952. name: "Megamacro",
  39953. height: math.unit(5.7, "earths")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(5 + 10/12, "feet"),
  39962. weight: math.unit(150, "lb"),
  39963. name: "Front",
  39964. image: {
  39965. source: "./media/characters/jamie/front.svg",
  39966. extra: 1908/1768,
  39967. bottom: 19/1927
  39968. }
  39969. },
  39970. },
  39971. [
  39972. {
  39973. name: "Minimum",
  39974. height: math.unit(2, "cm")
  39975. },
  39976. {
  39977. name: "Micro",
  39978. height: math.unit(3, "inches")
  39979. },
  39980. {
  39981. name: "Normal",
  39982. height: math.unit(5 + 10/12, "feet"),
  39983. default: true
  39984. },
  39985. {
  39986. name: "Macro",
  39987. height: math.unit(150, "feet")
  39988. },
  39989. {
  39990. name: "Megamacro",
  39991. height: math.unit(10000, "m")
  39992. },
  39993. ]
  39994. ))
  39995. characterMakers.push(() => makeCharacter(
  39996. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39997. {
  39998. front: {
  39999. height: math.unit(2, "meters"),
  40000. weight: math.unit(100, "kg"),
  40001. name: "Front",
  40002. image: {
  40003. source: "./media/characters/shiron/front.svg",
  40004. extra: 2103/1985,
  40005. bottom: 98/2201
  40006. }
  40007. },
  40008. back: {
  40009. height: math.unit(2, "meters"),
  40010. weight: math.unit(100, "kg"),
  40011. name: "Back",
  40012. image: {
  40013. source: "./media/characters/shiron/back.svg",
  40014. extra: 2110/2015,
  40015. bottom: 89/2199
  40016. }
  40017. },
  40018. hand: {
  40019. height: math.unit(0.96, "feet"),
  40020. name: "Hand",
  40021. image: {
  40022. source: "./media/characters/shiron/hand.svg"
  40023. }
  40024. },
  40025. foot: {
  40026. height: math.unit(1.464, "feet"),
  40027. name: "Foot",
  40028. image: {
  40029. source: "./media/characters/shiron/foot.svg"
  40030. }
  40031. },
  40032. },
  40033. [
  40034. {
  40035. name: "Normal",
  40036. height: math.unit(2, "meters")
  40037. },
  40038. {
  40039. name: "Macro",
  40040. height: math.unit(500, "meters"),
  40041. default: true
  40042. },
  40043. {
  40044. name: "Megamacro",
  40045. height: math.unit(20, "km")
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40051. {
  40052. front: {
  40053. height: math.unit(6, "feet"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/sam/front.svg",
  40057. extra: 849/826,
  40058. bottom: 19/868
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Normal",
  40065. height: math.unit(6, "feet"),
  40066. default: true
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(8 + 4/12, "feet"),
  40075. weight: math.unit(122, "kg"),
  40076. name: "Front",
  40077. image: {
  40078. source: "./media/characters/namori-kurogawa/front.svg",
  40079. extra: 1894/1576,
  40080. bottom: 34/1928
  40081. }
  40082. },
  40083. },
  40084. [
  40085. {
  40086. name: "Normal",
  40087. height: math.unit(8 + 4/12, "feet"),
  40088. default: true
  40089. },
  40090. ]
  40091. ))
  40092. characterMakers.push(() => makeCharacter(
  40093. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40094. {
  40095. front: {
  40096. height: math.unit(9, "feet"),
  40097. weight: math.unit(621, "lb"),
  40098. name: "Front",
  40099. image: {
  40100. source: "./media/characters/unmru/front.svg",
  40101. extra: 1853/1747,
  40102. bottom: 73/1926
  40103. }
  40104. },
  40105. side: {
  40106. height: math.unit(9, "feet"),
  40107. weight: math.unit(621, "lb"),
  40108. name: "Side",
  40109. image: {
  40110. source: "./media/characters/unmru/side.svg",
  40111. extra: 1781/1671,
  40112. bottom: 127/1908
  40113. }
  40114. },
  40115. back: {
  40116. height: math.unit(9, "feet"),
  40117. weight: math.unit(621, "lb"),
  40118. name: "Back",
  40119. image: {
  40120. source: "./media/characters/unmru/back.svg",
  40121. extra: 1894/1765,
  40122. bottom: 75/1969
  40123. }
  40124. },
  40125. dick: {
  40126. height: math.unit(3, "feet"),
  40127. weight: math.unit(35, "lb"),
  40128. name: "Dick",
  40129. image: {
  40130. source: "./media/characters/unmru/dick.svg"
  40131. }
  40132. },
  40133. },
  40134. [
  40135. {
  40136. name: "Normal",
  40137. height: math.unit(9, "feet")
  40138. },
  40139. {
  40140. name: "Natural",
  40141. height: math.unit(27, "feet"),
  40142. default: true
  40143. },
  40144. {
  40145. name: "Giant",
  40146. height: math.unit(90, "feet")
  40147. },
  40148. {
  40149. name: "Kaiju",
  40150. height: math.unit(270, "feet")
  40151. },
  40152. {
  40153. name: "Macro",
  40154. height: math.unit(900, "feet")
  40155. },
  40156. {
  40157. name: "Macro+",
  40158. height: math.unit(2700, "feet")
  40159. },
  40160. {
  40161. name: "Megamacro",
  40162. height: math.unit(9000, "feet")
  40163. },
  40164. {
  40165. name: "City-Crushing",
  40166. height: math.unit(27000, "feet")
  40167. },
  40168. {
  40169. name: "Mountain-Mashing",
  40170. height: math.unit(90000, "feet")
  40171. },
  40172. {
  40173. name: "Earth-Eclipsing",
  40174. height: math.unit(2.7e8, "feet")
  40175. },
  40176. {
  40177. name: "Sol-Swallowing",
  40178. height: math.unit(9e10, "feet")
  40179. },
  40180. {
  40181. name: "Majoris-Munching",
  40182. height: math.unit(2.7e13, "feet")
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40188. {
  40189. front: {
  40190. height: math.unit(1, "inch"),
  40191. name: "Front",
  40192. image: {
  40193. source: "./media/characters/squeaks-mouse/front.svg",
  40194. extra: 352/308,
  40195. bottom: 25/377
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Micro",
  40202. height: math.unit(1, "inch"),
  40203. default: true
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40209. {
  40210. side: {
  40211. height: math.unit(35, "feet"),
  40212. name: "Side",
  40213. image: {
  40214. source: "./media/characters/sayko/side.svg",
  40215. extra: 1697/1021,
  40216. bottom: 82/1779
  40217. }
  40218. },
  40219. head: {
  40220. height: math.unit(16, "feet"),
  40221. name: "Head",
  40222. image: {
  40223. source: "./media/characters/sayko/head.svg"
  40224. }
  40225. },
  40226. forepaw: {
  40227. height: math.unit(7.85, "feet"),
  40228. name: "Forepaw",
  40229. image: {
  40230. source: "./media/characters/sayko/forepaw.svg"
  40231. }
  40232. },
  40233. hindpaw: {
  40234. height: math.unit(8.8, "feet"),
  40235. name: "Hindpaw",
  40236. image: {
  40237. source: "./media/characters/sayko/hindpaw.svg"
  40238. }
  40239. },
  40240. },
  40241. [
  40242. {
  40243. name: "Normal",
  40244. height: math.unit(35, "feet"),
  40245. default: true
  40246. },
  40247. {
  40248. name: "Colossus",
  40249. height: math.unit(100, "meters")
  40250. },
  40251. {
  40252. name: "\"Small\" Deity",
  40253. height: math.unit(1, "km")
  40254. },
  40255. {
  40256. name: "\"Large\" Deity",
  40257. height: math.unit(15, "km")
  40258. },
  40259. ]
  40260. ))
  40261. characterMakers.push(() => makeCharacter(
  40262. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40263. {
  40264. front: {
  40265. height: math.unit(6, "feet"),
  40266. weight: math.unit(250, "lb"),
  40267. name: "Front",
  40268. image: {
  40269. source: "./media/characters/mukiro/front.svg",
  40270. extra: 1368/1310,
  40271. bottom: 34/1402
  40272. }
  40273. },
  40274. },
  40275. [
  40276. {
  40277. name: "Normal",
  40278. height: math.unit(6, "feet"),
  40279. default: true
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40285. {
  40286. front: {
  40287. height: math.unit(12 + 4/12, "feet"),
  40288. name: "Front",
  40289. image: {
  40290. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40291. extra: 1346/1311,
  40292. bottom: 65/1411
  40293. }
  40294. },
  40295. },
  40296. [
  40297. {
  40298. name: "Base",
  40299. height: math.unit(12 + 4/12, "feet"),
  40300. default: true
  40301. },
  40302. {
  40303. name: "Macro",
  40304. height: math.unit(150, "feet")
  40305. },
  40306. {
  40307. name: "Mega",
  40308. height: math.unit(2, "miles")
  40309. },
  40310. {
  40311. name: "Demi God",
  40312. height: math.unit(4, "AU")
  40313. },
  40314. {
  40315. name: "God Size",
  40316. height: math.unit(1, "universe")
  40317. },
  40318. ]
  40319. ))
  40320. characterMakers.push(() => makeCharacter(
  40321. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40322. {
  40323. front: {
  40324. height: math.unit(3 + 3/12, "feet"),
  40325. weight: math.unit(88, "lb"),
  40326. name: "Front",
  40327. image: {
  40328. source: "./media/characters/trey/front.svg",
  40329. extra: 1815/1509,
  40330. bottom: 60/1875
  40331. }
  40332. },
  40333. },
  40334. [
  40335. {
  40336. name: "Normal",
  40337. height: math.unit(3 + 3/12, "feet"),
  40338. default: true
  40339. },
  40340. ]
  40341. ))
  40342. characterMakers.push(() => makeCharacter(
  40343. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40344. {
  40345. front: {
  40346. height: math.unit(4, "meters"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/adelonda/front.svg",
  40350. extra: 1077/982,
  40351. bottom: 39/1116
  40352. }
  40353. },
  40354. back: {
  40355. height: math.unit(4, "meters"),
  40356. name: "Back",
  40357. image: {
  40358. source: "./media/characters/adelonda/back.svg",
  40359. extra: 1105/1003,
  40360. bottom: 25/1130
  40361. }
  40362. },
  40363. feral: {
  40364. height: math.unit(40/1.5, "meters"),
  40365. name: "Feral",
  40366. image: {
  40367. source: "./media/characters/adelonda/feral.svg",
  40368. extra: 597/271,
  40369. bottom: 387/984
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(4, "meters"),
  40377. default: true
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40383. {
  40384. front: {
  40385. height: math.unit(8 + 4/12, "feet"),
  40386. weight: math.unit(670, "lb"),
  40387. name: "Front",
  40388. image: {
  40389. source: "./media/characters/acadiel/front.svg",
  40390. extra: 1901/1595,
  40391. bottom: 142/2043
  40392. }
  40393. },
  40394. },
  40395. [
  40396. {
  40397. name: "Normal",
  40398. height: math.unit(8 + 4/12, "feet"),
  40399. default: true
  40400. },
  40401. {
  40402. name: "Macro",
  40403. height: math.unit(200, "feet")
  40404. },
  40405. ]
  40406. ))
  40407. characterMakers.push(() => makeCharacter(
  40408. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40409. {
  40410. front: {
  40411. height: math.unit(6 + 2/12, "feet"),
  40412. weight: math.unit(185, "lb"),
  40413. name: "Front",
  40414. image: {
  40415. source: "./media/characters/kayne-ein/front.svg",
  40416. extra: 1780/1560,
  40417. bottom: 81/1861
  40418. }
  40419. },
  40420. },
  40421. [
  40422. {
  40423. name: "Normal",
  40424. height: math.unit(6 + 2/12, "feet"),
  40425. default: true
  40426. },
  40427. {
  40428. name: "Transformation Stage",
  40429. height: math.unit(15, "feet")
  40430. },
  40431. {
  40432. name: "Macro",
  40433. height: math.unit(150, "feet")
  40434. },
  40435. {
  40436. name: "Earth's Shadow",
  40437. height: math.unit(6200, "miles")
  40438. },
  40439. {
  40440. name: "Universal Demon",
  40441. height: math.unit(28e9, "parsecs")
  40442. },
  40443. {
  40444. name: "Multiverse God",
  40445. height: math.unit(3, "multiverses")
  40446. },
  40447. ]
  40448. ))
  40449. characterMakers.push(() => makeCharacter(
  40450. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40451. {
  40452. front: {
  40453. height: math.unit(5 + 5/12, "feet"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/fawn/front.svg",
  40457. extra: 1873/1731,
  40458. bottom: 95/1968
  40459. }
  40460. },
  40461. back: {
  40462. height: math.unit(5 + 5/12, "feet"),
  40463. name: "Back",
  40464. image: {
  40465. source: "./media/characters/fawn/back.svg",
  40466. extra: 1813/1700,
  40467. bottom: 14/1827
  40468. }
  40469. },
  40470. hoof: {
  40471. height: math.unit(1.45, "feet"),
  40472. name: "Hoof",
  40473. image: {
  40474. source: "./media/characters/fawn/hoof.svg"
  40475. }
  40476. },
  40477. },
  40478. [
  40479. {
  40480. name: "Normal",
  40481. height: math.unit(5 + 5/12, "feet"),
  40482. default: true
  40483. },
  40484. ]
  40485. ))
  40486. characterMakers.push(() => makeCharacter(
  40487. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40488. {
  40489. front: {
  40490. height: math.unit(2 + 5/12, "feet"),
  40491. name: "Front",
  40492. image: {
  40493. source: "./media/characters/orion/front.svg",
  40494. extra: 1366/1304,
  40495. bottom: 43/1409
  40496. }
  40497. },
  40498. paw: {
  40499. height: math.unit(0.52, "feet"),
  40500. name: "Paw",
  40501. image: {
  40502. source: "./media/characters/orion/paw.svg"
  40503. }
  40504. },
  40505. },
  40506. [
  40507. {
  40508. name: "Normal",
  40509. height: math.unit(2 + 5/12, "feet"),
  40510. default: true
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(5 + 10/12, "feet"),
  40519. name: "Front",
  40520. image: {
  40521. source: "./media/characters/vera/front.svg",
  40522. extra: 1680/1575,
  40523. bottom: 49/1729
  40524. }
  40525. },
  40526. back: {
  40527. height: math.unit(5 + 10/12, "feet"),
  40528. name: "Back",
  40529. image: {
  40530. source: "./media/characters/vera/back.svg",
  40531. extra: 1700/1588,
  40532. bottom: 18/1718
  40533. }
  40534. },
  40535. arcanine: {
  40536. height: math.unit(6 + 8/12, "feet"),
  40537. name: "Arcanine",
  40538. image: {
  40539. source: "./media/characters/vera/arcanine.svg",
  40540. extra: 1590/1511,
  40541. bottom: 71/1661
  40542. }
  40543. },
  40544. maw: {
  40545. height: math.unit(0.82, "feet"),
  40546. name: "Maw",
  40547. image: {
  40548. source: "./media/characters/vera/maw.svg"
  40549. }
  40550. },
  40551. mawArcanine: {
  40552. height: math.unit(0.97, "feet"),
  40553. name: "Maw (Arcanine)",
  40554. image: {
  40555. source: "./media/characters/vera/maw-arcanine.svg"
  40556. }
  40557. },
  40558. paw: {
  40559. height: math.unit(0.75, "feet"),
  40560. name: "Paw",
  40561. image: {
  40562. source: "./media/characters/vera/paw.svg"
  40563. }
  40564. },
  40565. pawprint: {
  40566. height: math.unit(0.52, "feet"),
  40567. name: "Pawprint",
  40568. image: {
  40569. source: "./media/characters/vera/pawprint.svg"
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(5 + 10/12, "feet"),
  40577. default: true
  40578. },
  40579. {
  40580. name: "Macro",
  40581. height: math.unit(75, "feet")
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(4, "feet"),
  40590. weight: math.unit(40, "lb"),
  40591. name: "Front",
  40592. image: {
  40593. source: "./media/characters/orvan-rabbit/front.svg",
  40594. extra: 1896/1642,
  40595. bottom: 29/1925
  40596. }
  40597. },
  40598. },
  40599. [
  40600. {
  40601. name: "Normal",
  40602. height: math.unit(4, "feet"),
  40603. default: true
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40609. {
  40610. front: {
  40611. height: math.unit(6, "feet"),
  40612. weight: math.unit(168, "lb"),
  40613. name: "Front",
  40614. image: {
  40615. source: "./media/characters/lisa/front.svg",
  40616. extra: 2065/1867,
  40617. bottom: 46/2111
  40618. }
  40619. },
  40620. back: {
  40621. height: math.unit(6, "feet"),
  40622. weight: math.unit(168, "lb"),
  40623. name: "Back",
  40624. image: {
  40625. source: "./media/characters/lisa/back.svg",
  40626. extra: 1982/1838,
  40627. bottom: 29/2011
  40628. }
  40629. },
  40630. maw: {
  40631. height: math.unit(0.81, "feet"),
  40632. name: "Maw",
  40633. image: {
  40634. source: "./media/characters/lisa/maw.svg"
  40635. }
  40636. },
  40637. paw: {
  40638. height: math.unit(0.9, "feet"),
  40639. name: "Paw",
  40640. image: {
  40641. source: "./media/characters/lisa/paw.svg"
  40642. }
  40643. },
  40644. caribousune: {
  40645. height: math.unit(7 + 2/12, "feet"),
  40646. weight: math.unit(268, "lb"),
  40647. name: "Caribousune",
  40648. image: {
  40649. source: "./media/characters/lisa/caribousune.svg",
  40650. extra: 1843/1633,
  40651. bottom: 29/1872
  40652. }
  40653. },
  40654. frontCaribousune: {
  40655. height: math.unit(7 + 2/12, "feet"),
  40656. weight: math.unit(268, "lb"),
  40657. name: "Front (Caribousune)",
  40658. image: {
  40659. source: "./media/characters/lisa/front-caribousune.svg",
  40660. extra: 1818/1638,
  40661. bottom: 52/1870
  40662. }
  40663. },
  40664. sideCaribousune: {
  40665. height: math.unit(7 + 2/12, "feet"),
  40666. weight: math.unit(268, "lb"),
  40667. name: "Side (Caribousune)",
  40668. image: {
  40669. source: "./media/characters/lisa/side-caribousune.svg",
  40670. extra: 1851/1635,
  40671. bottom: 16/1867
  40672. }
  40673. },
  40674. backCaribousune: {
  40675. height: math.unit(7 + 2/12, "feet"),
  40676. weight: math.unit(268, "lb"),
  40677. name: "Back (Caribousune)",
  40678. image: {
  40679. source: "./media/characters/lisa/back-caribousune.svg",
  40680. extra: 1801/1604,
  40681. bottom: 44/1845
  40682. }
  40683. },
  40684. caribou: {
  40685. height: math.unit(7 + 2/12, "feet"),
  40686. weight: math.unit(268, "lb"),
  40687. name: "Caribou",
  40688. image: {
  40689. source: "./media/characters/lisa/caribou.svg",
  40690. extra: 1843/1633,
  40691. bottom: 29/1872
  40692. }
  40693. },
  40694. frontCaribou: {
  40695. height: math.unit(7 + 2/12, "feet"),
  40696. weight: math.unit(268, "lb"),
  40697. name: "Front (Caribou)",
  40698. image: {
  40699. source: "./media/characters/lisa/front-caribou.svg",
  40700. extra: 1818/1638,
  40701. bottom: 52/1870
  40702. }
  40703. },
  40704. sideCaribou: {
  40705. height: math.unit(7 + 2/12, "feet"),
  40706. weight: math.unit(268, "lb"),
  40707. name: "Side (Caribou)",
  40708. image: {
  40709. source: "./media/characters/lisa/side-caribou.svg",
  40710. extra: 1851/1635,
  40711. bottom: 16/1867
  40712. }
  40713. },
  40714. backCaribou: {
  40715. height: math.unit(7 + 2/12, "feet"),
  40716. weight: math.unit(268, "lb"),
  40717. name: "Back (Caribou)",
  40718. image: {
  40719. source: "./media/characters/lisa/back-caribou.svg",
  40720. extra: 1801/1604,
  40721. bottom: 44/1845
  40722. }
  40723. },
  40724. mawCaribou: {
  40725. height: math.unit(1.45, "feet"),
  40726. name: "Maw (Caribou)",
  40727. image: {
  40728. source: "./media/characters/lisa/maw-caribou.svg"
  40729. }
  40730. },
  40731. mawCaribousune: {
  40732. height: math.unit(1.45, "feet"),
  40733. name: "Maw (Caribousune)",
  40734. image: {
  40735. source: "./media/characters/lisa/maw-caribousune.svg"
  40736. }
  40737. },
  40738. pawCaribousune: {
  40739. height: math.unit(1.61, "feet"),
  40740. name: "Paw (Caribou)",
  40741. image: {
  40742. source: "./media/characters/lisa/paw-caribousune.svg"
  40743. }
  40744. },
  40745. },
  40746. [
  40747. {
  40748. name: "Normal",
  40749. height: math.unit(6, "feet")
  40750. },
  40751. {
  40752. name: "God Size",
  40753. height: math.unit(72, "feet"),
  40754. default: true
  40755. },
  40756. {
  40757. name: "Towering",
  40758. height: math.unit(288, "feet")
  40759. },
  40760. {
  40761. name: "City Size",
  40762. height: math.unit(48384, "feet")
  40763. },
  40764. {
  40765. name: "Continental",
  40766. height: math.unit(4200, "miles")
  40767. },
  40768. {
  40769. name: "Planet Eater",
  40770. height: math.unit(42, "earths")
  40771. },
  40772. {
  40773. name: "Star Swallower",
  40774. height: math.unit(42, "solarradii")
  40775. },
  40776. {
  40777. name: "System Swallower",
  40778. height: math.unit(84000, "AU")
  40779. },
  40780. {
  40781. name: "Galaxy Gobbler",
  40782. height: math.unit(42, "galaxies")
  40783. },
  40784. {
  40785. name: "Universe Devourer",
  40786. height: math.unit(42, "universes")
  40787. },
  40788. {
  40789. name: "Multiverse Muncher",
  40790. height: math.unit(42, "multiverses")
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(36, "feet"),
  40799. name: "Front",
  40800. image: {
  40801. source: "./media/characters/shadow-rat/front.svg",
  40802. extra: 1845/1758,
  40803. bottom: 83/1928
  40804. }
  40805. },
  40806. },
  40807. [
  40808. {
  40809. name: "Macro",
  40810. height: math.unit(36, "feet"),
  40811. default: true
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40817. {
  40818. side: {
  40819. height: math.unit(8, "feet"),
  40820. weight: math.unit(2630, "lb"),
  40821. name: "Side",
  40822. image: {
  40823. source: "./media/characters/torallia/side.svg",
  40824. extra: 2164/2021,
  40825. bottom: 371/2535
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Mortal Interaction",
  40832. height: math.unit(8, "feet")
  40833. },
  40834. {
  40835. name: "Natural",
  40836. height: math.unit(24, "feet"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "Giant",
  40841. height: math.unit(80, "feet")
  40842. },
  40843. {
  40844. name: "Kaiju",
  40845. height: math.unit(240, "feet")
  40846. },
  40847. {
  40848. name: "Macro",
  40849. height: math.unit(800, "feet")
  40850. },
  40851. {
  40852. name: "Macro+",
  40853. height: math.unit(2400, "feet")
  40854. },
  40855. {
  40856. name: "Macro++",
  40857. height: math.unit(8000, "feet")
  40858. },
  40859. {
  40860. name: "City-Crushing",
  40861. height: math.unit(24000, "feet")
  40862. },
  40863. {
  40864. name: "Mountain-Mashing",
  40865. height: math.unit(80000, "feet")
  40866. },
  40867. {
  40868. name: "District Demolisher",
  40869. height: math.unit(240000, "feet")
  40870. },
  40871. {
  40872. name: "Tri-County Terror",
  40873. height: math.unit(800000, "feet")
  40874. },
  40875. {
  40876. name: "State Smasher",
  40877. height: math.unit(2.4e6, "feet")
  40878. },
  40879. {
  40880. name: "Nation Nemesis",
  40881. height: math.unit(8e6, "feet")
  40882. },
  40883. {
  40884. name: "Continent Cracker",
  40885. height: math.unit(2.4e7, "feet")
  40886. },
  40887. {
  40888. name: "Planet-Pillaging",
  40889. height: math.unit(8e7, "feet")
  40890. },
  40891. {
  40892. name: "Earth-Eclipsing",
  40893. height: math.unit(2.4e8, "feet")
  40894. },
  40895. {
  40896. name: "Jovian-Jostling",
  40897. height: math.unit(8e8, "feet")
  40898. },
  40899. {
  40900. name: "Gas Giant Gulper",
  40901. height: math.unit(2.4e9, "feet")
  40902. },
  40903. {
  40904. name: "Astral Annihilator",
  40905. height: math.unit(8e9, "feet")
  40906. },
  40907. {
  40908. name: "Celestial Conqueror",
  40909. height: math.unit(2.4e10, "feet")
  40910. },
  40911. {
  40912. name: "Sol-Swallowing",
  40913. height: math.unit(8e10, "feet")
  40914. },
  40915. {
  40916. name: "Hunter of the Heavens",
  40917. height: math.unit(2.4e13, "feet")
  40918. },
  40919. ]
  40920. ))
  40921. characterMakers.push(() => makeCharacter(
  40922. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40923. {
  40924. front: {
  40925. height: math.unit(6 + 8/12, "feet"),
  40926. weight: math.unit(250, "kilograms"),
  40927. volume: math.unit(28, "liters"),
  40928. name: "Front",
  40929. image: {
  40930. source: "./media/characters/rebecca-pawlson/front.svg",
  40931. extra: 1737/1596,
  40932. bottom: 107/1844
  40933. }
  40934. },
  40935. back: {
  40936. height: math.unit(6 + 8/12, "feet"),
  40937. weight: math.unit(250, "kilograms"),
  40938. volume: math.unit(28, "liters"),
  40939. name: "Back",
  40940. image: {
  40941. source: "./media/characters/rebecca-pawlson/back.svg",
  40942. extra: 1702/1523,
  40943. bottom: 86/1788
  40944. }
  40945. },
  40946. },
  40947. [
  40948. {
  40949. name: "Normal",
  40950. height: math.unit(6 + 8/12, "feet")
  40951. },
  40952. {
  40953. name: "Mini Macro",
  40954. height: math.unit(10, "feet"),
  40955. default: true
  40956. },
  40957. {
  40958. name: "Macro",
  40959. height: math.unit(100, "feet")
  40960. },
  40961. {
  40962. name: "Mega Macro",
  40963. height: math.unit(2500, "feet")
  40964. },
  40965. {
  40966. name: "Giga Macro",
  40967. height: math.unit(50, "miles")
  40968. },
  40969. ]
  40970. ))
  40971. characterMakers.push(() => makeCharacter(
  40972. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40973. {
  40974. front: {
  40975. height: math.unit(7 + 6/12, "feet"),
  40976. weight: math.unit(600, "lb"),
  40977. name: "Front",
  40978. image: {
  40979. source: "./media/characters/moxie-nova/front.svg",
  40980. extra: 1734/1652,
  40981. bottom: 41/1775
  40982. }
  40983. },
  40984. },
  40985. [
  40986. {
  40987. name: "Normal",
  40988. height: math.unit(7 + 6/12, "feet"),
  40989. default: true
  40990. },
  40991. ]
  40992. ))
  40993. characterMakers.push(() => makeCharacter(
  40994. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40995. {
  40996. goat: {
  40997. height: math.unit(4, "feet"),
  40998. weight: math.unit(180, "lb"),
  40999. name: "Goat",
  41000. image: {
  41001. source: "./media/characters/tiffany/goat.svg",
  41002. extra: 1845/1595,
  41003. bottom: 106/1951
  41004. }
  41005. },
  41006. front: {
  41007. height: math.unit(5, "feet"),
  41008. weight: math.unit(150, "lb"),
  41009. name: "Foxcoon",
  41010. image: {
  41011. source: "./media/characters/tiffany/foxcoon.svg",
  41012. extra: 1941/1845,
  41013. bottom: 58/1999
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Normal",
  41020. height: math.unit(5, "feet"),
  41021. default: true
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(8, "feet"),
  41030. weight: math.unit(300, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/raxinath/front.svg",
  41034. extra: 1407/1309,
  41035. bottom: 39/1446
  41036. }
  41037. },
  41038. back: {
  41039. height: math.unit(8, "feet"),
  41040. weight: math.unit(300, "lb"),
  41041. name: "Back",
  41042. image: {
  41043. source: "./media/characters/raxinath/back.svg",
  41044. extra: 1405/1315,
  41045. bottom: 9/1414
  41046. }
  41047. },
  41048. },
  41049. [
  41050. {
  41051. name: "Speck",
  41052. height: math.unit(0.5, "nm")
  41053. },
  41054. {
  41055. name: "Micro",
  41056. height: math.unit(3, "inches")
  41057. },
  41058. {
  41059. name: "Kobold",
  41060. height: math.unit(3, "feet")
  41061. },
  41062. {
  41063. name: "Normal",
  41064. height: math.unit(8, "feet"),
  41065. default: true
  41066. },
  41067. {
  41068. name: "Giant",
  41069. height: math.unit(50, "feet")
  41070. },
  41071. {
  41072. name: "Macro",
  41073. height: math.unit(1000, "feet")
  41074. },
  41075. {
  41076. name: "Megamacro",
  41077. height: math.unit(1, "mile")
  41078. },
  41079. ]
  41080. ))
  41081. characterMakers.push(() => makeCharacter(
  41082. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41083. {
  41084. front: {
  41085. height: math.unit(10, "feet"),
  41086. weight: math.unit(1442, "lb"),
  41087. name: "Front",
  41088. image: {
  41089. source: "./media/characters/mal-dragon/front.svg",
  41090. extra: 1515/1444,
  41091. bottom: 113/1628
  41092. }
  41093. },
  41094. back: {
  41095. height: math.unit(10, "feet"),
  41096. weight: math.unit(1442, "lb"),
  41097. name: "Back",
  41098. image: {
  41099. source: "./media/characters/mal-dragon/back.svg",
  41100. extra: 1527/1434,
  41101. bottom: 25/1552
  41102. }
  41103. },
  41104. },
  41105. [
  41106. {
  41107. name: "Mortal Interaction",
  41108. height: math.unit(10, "feet"),
  41109. default: true
  41110. },
  41111. {
  41112. name: "Large",
  41113. height: math.unit(30, "feet")
  41114. },
  41115. {
  41116. name: "Kaiju",
  41117. height: math.unit(300, "feet")
  41118. },
  41119. {
  41120. name: "Megamacro",
  41121. height: math.unit(10000, "feet")
  41122. },
  41123. {
  41124. name: "Continent Cracker",
  41125. height: math.unit(30000000, "feet")
  41126. },
  41127. {
  41128. name: "Sol-Swallowing",
  41129. height: math.unit(1e11, "feet")
  41130. },
  41131. {
  41132. name: "Light Universal",
  41133. height: math.unit(5, "universes")
  41134. },
  41135. {
  41136. name: "Universe Atoms",
  41137. height: math.unit(1.829e9, "universes")
  41138. },
  41139. {
  41140. name: "Light Multiversal",
  41141. height: math.unit(5, "multiverses")
  41142. },
  41143. {
  41144. name: "Multiverse Atoms",
  41145. height: math.unit(1.829e9, "multiverses")
  41146. },
  41147. {
  41148. name: "Fabric of Time",
  41149. height: math.unit(1e262, "multiverses")
  41150. },
  41151. ]
  41152. ))
  41153. characterMakers.push(() => makeCharacter(
  41154. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41155. {
  41156. front: {
  41157. height: math.unit(9, "feet"),
  41158. weight: math.unit(1050, "lb"),
  41159. name: "Front",
  41160. image: {
  41161. source: "./media/characters/tabitha/front.svg",
  41162. extra: 2083/1994,
  41163. bottom: 68/2151
  41164. }
  41165. },
  41166. },
  41167. [
  41168. {
  41169. name: "Baseline",
  41170. height: math.unit(9, "feet"),
  41171. default: true
  41172. },
  41173. {
  41174. name: "Giant",
  41175. height: math.unit(90, "feet")
  41176. },
  41177. {
  41178. name: "Macro",
  41179. height: math.unit(900, "feet")
  41180. },
  41181. {
  41182. name: "Megamacro",
  41183. height: math.unit(9000, "feet")
  41184. },
  41185. {
  41186. name: "City-Crushing",
  41187. height: math.unit(27000, "feet")
  41188. },
  41189. {
  41190. name: "Mountain-Mashing",
  41191. height: math.unit(90000, "feet")
  41192. },
  41193. {
  41194. name: "Nation Nemesis",
  41195. height: math.unit(9e6, "feet")
  41196. },
  41197. {
  41198. name: "Continent Cracker",
  41199. height: math.unit(27e6, "feet")
  41200. },
  41201. {
  41202. name: "Earth-Eclipsing",
  41203. height: math.unit(2.7e8, "feet")
  41204. },
  41205. {
  41206. name: "Gas Giant Gulper",
  41207. height: math.unit(2.7e9, "feet")
  41208. },
  41209. {
  41210. name: "Sol-Swallowing",
  41211. height: math.unit(9e10, "feet")
  41212. },
  41213. {
  41214. name: "Galaxy Gulper",
  41215. height: math.unit(9, "galaxies")
  41216. },
  41217. {
  41218. name: "Cosmos Churner",
  41219. height: math.unit(9, "universes")
  41220. },
  41221. ]
  41222. ))
  41223. characterMakers.push(() => makeCharacter(
  41224. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41225. {
  41226. front: {
  41227. height: math.unit(160, "cm"),
  41228. weight: math.unit(55, "kg"),
  41229. name: "Front",
  41230. image: {
  41231. source: "./media/characters/tow/front.svg",
  41232. extra: 1751/1722,
  41233. bottom: 74/1825
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Norm",
  41240. height: math.unit(160, "cm")
  41241. },
  41242. {
  41243. name: "Casual",
  41244. height: math.unit(3200, "m"),
  41245. default: true
  41246. },
  41247. {
  41248. name: "Show-Off",
  41249. height: math.unit(160, "km")
  41250. },
  41251. ]
  41252. ))
  41253. characterMakers.push(() => makeCharacter(
  41254. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41255. {
  41256. front: {
  41257. height: math.unit(7 + 11/12, "feet"),
  41258. weight: math.unit(342.8, "lb"),
  41259. name: "Front",
  41260. image: {
  41261. source: "./media/characters/vivian-orca-dragon/front.svg",
  41262. extra: 1890/1865,
  41263. bottom: 28/1918
  41264. }
  41265. },
  41266. },
  41267. [
  41268. {
  41269. name: "Micro",
  41270. height: math.unit(5, "inches")
  41271. },
  41272. {
  41273. name: "Normal",
  41274. height: math.unit(7 + 11/12, "feet"),
  41275. default: true
  41276. },
  41277. {
  41278. name: "Macro",
  41279. height: math.unit(395 + 7/12, "feet")
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41285. {
  41286. side: {
  41287. height: math.unit(10, "feet"),
  41288. weight: math.unit(1442, "lb"),
  41289. name: "Side",
  41290. image: {
  41291. source: "./media/characters/lotherakon/side.svg",
  41292. extra: 1604/1497,
  41293. bottom: 89/1693
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Mortal Interaction",
  41300. height: math.unit(10, "feet")
  41301. },
  41302. {
  41303. name: "Large",
  41304. height: math.unit(30, "feet"),
  41305. default: true
  41306. },
  41307. {
  41308. name: "Giant",
  41309. height: math.unit(100, "feet")
  41310. },
  41311. {
  41312. name: "Kaiju",
  41313. height: math.unit(300, "feet")
  41314. },
  41315. {
  41316. name: "Macro",
  41317. height: math.unit(1000, "feet")
  41318. },
  41319. {
  41320. name: "Macro+",
  41321. height: math.unit(3000, "feet")
  41322. },
  41323. {
  41324. name: "Megamacro",
  41325. height: math.unit(10000, "feet")
  41326. },
  41327. {
  41328. name: "City-Crushing",
  41329. height: math.unit(30000, "feet")
  41330. },
  41331. {
  41332. name: "Continent Cracker",
  41333. height: math.unit(30e6, "feet")
  41334. },
  41335. {
  41336. name: "Earth Eclipsing",
  41337. height: math.unit(3e8, "feet")
  41338. },
  41339. {
  41340. name: "Gas Giant Gulper",
  41341. height: math.unit(3e9, "feet")
  41342. },
  41343. {
  41344. name: "Sol-Swallowing",
  41345. height: math.unit(1e11, "feet")
  41346. },
  41347. {
  41348. name: "System Swallower",
  41349. height: math.unit(3e14, "feet")
  41350. },
  41351. {
  41352. name: "Galaxy Gulper",
  41353. height: math.unit(10, "galaxies")
  41354. },
  41355. {
  41356. name: "Light Universal",
  41357. height: math.unit(5, "universes")
  41358. },
  41359. {
  41360. name: "Universe Palm",
  41361. height: math.unit(20, "universes")
  41362. },
  41363. {
  41364. name: "Light Multiversal",
  41365. height: math.unit(5, "multiverses")
  41366. },
  41367. {
  41368. name: "Multiverse Palm",
  41369. height: math.unit(20, "multiverses")
  41370. },
  41371. {
  41372. name: "Inferno Incarnate",
  41373. height: math.unit(1e7, "multiverses")
  41374. },
  41375. ]
  41376. ))
  41377. characterMakers.push(() => makeCharacter(
  41378. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41379. {
  41380. front: {
  41381. height: math.unit(8, "feet"),
  41382. weight: math.unit(1200, "lb"),
  41383. name: "Front",
  41384. image: {
  41385. source: "./media/characters/malithee/front.svg",
  41386. extra: 1675/1640,
  41387. bottom: 162/1837
  41388. }
  41389. },
  41390. },
  41391. [
  41392. {
  41393. name: "Mortal Interaction",
  41394. height: math.unit(8, "feet"),
  41395. default: true
  41396. },
  41397. {
  41398. name: "Large",
  41399. height: math.unit(24, "feet")
  41400. },
  41401. {
  41402. name: "Kaiju",
  41403. height: math.unit(240, "feet")
  41404. },
  41405. {
  41406. name: "Megamacro",
  41407. height: math.unit(8000, "feet")
  41408. },
  41409. {
  41410. name: "Continent Cracker",
  41411. height: math.unit(24e6, "feet")
  41412. },
  41413. {
  41414. name: "Earth-Eclipsing",
  41415. height: math.unit(2.4e8, "feet")
  41416. },
  41417. {
  41418. name: "Sol-Swallowing",
  41419. height: math.unit(8e10, "feet")
  41420. },
  41421. {
  41422. name: "Galaxy Gulper",
  41423. height: math.unit(8, "galaxies")
  41424. },
  41425. {
  41426. name: "Light Universal",
  41427. height: math.unit(4, "universes")
  41428. },
  41429. {
  41430. name: "Universe Atoms",
  41431. height: math.unit(1.829e9, "universes")
  41432. },
  41433. {
  41434. name: "Light Multiversal",
  41435. height: math.unit(4, "multiverses")
  41436. },
  41437. {
  41438. name: "Multiverse Atoms",
  41439. height: math.unit(1.829e9, "multiverses")
  41440. },
  41441. {
  41442. name: "Nigh-Omnipresence",
  41443. height: math.unit(8e261, "multiverses")
  41444. },
  41445. ]
  41446. ))
  41447. characterMakers.push(() => makeCharacter(
  41448. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41449. {
  41450. front: {
  41451. height: math.unit(10, "feet"),
  41452. weight: math.unit(1500, "lb"),
  41453. name: "Front",
  41454. image: {
  41455. source: "./media/characters/miles-thestia/front.svg",
  41456. extra: 1812/1727,
  41457. bottom: 86/1898
  41458. }
  41459. },
  41460. back: {
  41461. height: math.unit(10, "feet"),
  41462. weight: math.unit(1500, "lb"),
  41463. name: "Back",
  41464. image: {
  41465. source: "./media/characters/miles-thestia/back.svg",
  41466. extra: 1799/1690,
  41467. bottom: 47/1846
  41468. }
  41469. },
  41470. frontNsfw: {
  41471. height: math.unit(10, "feet"),
  41472. weight: math.unit(1500, "lb"),
  41473. name: "Front (NSFW)",
  41474. image: {
  41475. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41476. extra: 1812/1727,
  41477. bottom: 86/1898
  41478. }
  41479. },
  41480. },
  41481. [
  41482. {
  41483. name: "Mini-Macro",
  41484. height: math.unit(10, "feet"),
  41485. default: true
  41486. },
  41487. ]
  41488. ))
  41489. characterMakers.push(() => makeCharacter(
  41490. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41491. {
  41492. front: {
  41493. height: math.unit(25, "feet"),
  41494. name: "Front",
  41495. image: {
  41496. source: "./media/characters/titan-s-wulf/front.svg",
  41497. extra: 1560/1484,
  41498. bottom: 76/1636
  41499. }
  41500. },
  41501. },
  41502. [
  41503. {
  41504. name: "Smallest",
  41505. height: math.unit(25, "feet"),
  41506. default: true
  41507. },
  41508. {
  41509. name: "Normal",
  41510. height: math.unit(200, "feet")
  41511. },
  41512. {
  41513. name: "Macro",
  41514. height: math.unit(200000, "feet")
  41515. },
  41516. {
  41517. name: "Multiversal Original",
  41518. height: math.unit(10000, "multiverses")
  41519. },
  41520. ]
  41521. ))
  41522. characterMakers.push(() => makeCharacter(
  41523. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41524. {
  41525. front: {
  41526. height: math.unit(8, "feet"),
  41527. weight: math.unit(553, "lb"),
  41528. name: "Front",
  41529. image: {
  41530. source: "./media/characters/tawendeh/front.svg",
  41531. extra: 2365/2268,
  41532. bottom: 83/2448
  41533. }
  41534. },
  41535. frontClothed: {
  41536. height: math.unit(8, "feet"),
  41537. weight: math.unit(553, "lb"),
  41538. name: "Front (Clothed)",
  41539. image: {
  41540. source: "./media/characters/tawendeh/front-clothed.svg",
  41541. extra: 2365/2268,
  41542. bottom: 83/2448
  41543. }
  41544. },
  41545. back: {
  41546. height: math.unit(8, "feet"),
  41547. weight: math.unit(553, "lb"),
  41548. name: "Back",
  41549. image: {
  41550. source: "./media/characters/tawendeh/back.svg",
  41551. extra: 2397/2294,
  41552. bottom: 42/2439
  41553. }
  41554. },
  41555. },
  41556. [
  41557. {
  41558. name: "Mortal Interaction",
  41559. height: math.unit(8, "feet"),
  41560. default: true
  41561. },
  41562. {
  41563. name: "Giant",
  41564. height: math.unit(80, "feet")
  41565. },
  41566. {
  41567. name: "Macro",
  41568. height: math.unit(800, "feet")
  41569. },
  41570. {
  41571. name: "Megamacro",
  41572. height: math.unit(8000, "feet")
  41573. },
  41574. {
  41575. name: "City-Crushing",
  41576. height: math.unit(24000, "feet")
  41577. },
  41578. {
  41579. name: "Mountain-Mashing",
  41580. height: math.unit(80000, "feet")
  41581. },
  41582. {
  41583. name: "Nation Nemesis",
  41584. height: math.unit(8e6, "feet")
  41585. },
  41586. {
  41587. name: "Continent Cracker",
  41588. height: math.unit(24e6, "feet")
  41589. },
  41590. {
  41591. name: "Earth-Eclipsing",
  41592. height: math.unit(2.4e8, "feet")
  41593. },
  41594. {
  41595. name: "Gas Giant Gulper",
  41596. height: math.unit(2.4e9, "feet")
  41597. },
  41598. {
  41599. name: "Sol-Swallowing",
  41600. height: math.unit(8e10, "feet")
  41601. },
  41602. {
  41603. name: "Galaxy Gulper",
  41604. height: math.unit(8, "galaxies")
  41605. },
  41606. {
  41607. name: "Cosmos Churner",
  41608. height: math.unit(8, "universes")
  41609. },
  41610. {
  41611. name: "Omnipotent Otter",
  41612. height: math.unit(80, "universes")
  41613. },
  41614. ]
  41615. ))
  41616. characterMakers.push(() => makeCharacter(
  41617. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41618. {
  41619. front: {
  41620. height: math.unit(2.6, "meters"),
  41621. weight: math.unit(900, "kg"),
  41622. name: "Front",
  41623. image: {
  41624. source: "./media/characters/neesha/front.svg",
  41625. extra: 1803/1653,
  41626. bottom: 128/1931
  41627. }
  41628. },
  41629. },
  41630. [
  41631. {
  41632. name: "Normal",
  41633. height: math.unit(2.6, "meters"),
  41634. default: true
  41635. },
  41636. {
  41637. name: "Macro",
  41638. height: math.unit(50, "meters")
  41639. },
  41640. ]
  41641. ))
  41642. characterMakers.push(() => makeCharacter(
  41643. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41644. {
  41645. front: {
  41646. height: math.unit(5, "feet"),
  41647. weight: math.unit(185, "lb"),
  41648. name: "Front",
  41649. image: {
  41650. source: "./media/characters/kyera/front.svg",
  41651. extra: 1875/1790,
  41652. bottom: 96/1971
  41653. }
  41654. },
  41655. },
  41656. [
  41657. {
  41658. name: "Normal",
  41659. height: math.unit(5, "feet"),
  41660. default: true
  41661. },
  41662. ]
  41663. ))
  41664. characterMakers.push(() => makeCharacter(
  41665. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41666. {
  41667. front: {
  41668. height: math.unit(7 + 6/12, "feet"),
  41669. weight: math.unit(540, "lb"),
  41670. name: "Front",
  41671. image: {
  41672. source: "./media/characters/yuko/front.svg",
  41673. extra: 1282/1222,
  41674. bottom: 101/1383
  41675. }
  41676. },
  41677. frontClothed: {
  41678. height: math.unit(7 + 6/12, "feet"),
  41679. weight: math.unit(540, "lb"),
  41680. name: "Front (Clothed)",
  41681. image: {
  41682. source: "./media/characters/yuko/front-clothed.svg",
  41683. extra: 1282/1222,
  41684. bottom: 101/1383
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Normal",
  41691. height: math.unit(7 + 6/12, "feet"),
  41692. default: true
  41693. },
  41694. {
  41695. name: "Macro",
  41696. height: math.unit(26 + 9/12, "feet")
  41697. },
  41698. {
  41699. name: "Megamacro",
  41700. height: math.unit(300, "feet")
  41701. },
  41702. {
  41703. name: "Gigamacro",
  41704. height: math.unit(5000, "feet")
  41705. },
  41706. {
  41707. name: "Planetary",
  41708. height: math.unit(10000, "miles")
  41709. },
  41710. ]
  41711. ))
  41712. characterMakers.push(() => makeCharacter(
  41713. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41714. {
  41715. front: {
  41716. height: math.unit(8 + 2/12, "feet"),
  41717. weight: math.unit(600, "lb"),
  41718. name: "Front",
  41719. image: {
  41720. source: "./media/characters/deam-nitrel/front.svg",
  41721. extra: 1308/1234,
  41722. bottom: 125/1433
  41723. }
  41724. },
  41725. },
  41726. [
  41727. {
  41728. name: "Normal",
  41729. height: math.unit(8 + 2/12, "feet"),
  41730. default: true
  41731. },
  41732. ]
  41733. ))
  41734. characterMakers.push(() => makeCharacter(
  41735. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41736. {
  41737. front: {
  41738. height: math.unit(6.1, "feet"),
  41739. weight: math.unit(180, "lb"),
  41740. name: "Front",
  41741. image: {
  41742. source: "./media/characters/skyress/front.svg",
  41743. extra: 1045/915,
  41744. bottom: 28/1073
  41745. }
  41746. },
  41747. maw: {
  41748. height: math.unit(1, "feet"),
  41749. name: "Maw",
  41750. image: {
  41751. source: "./media/characters/skyress/maw.svg"
  41752. }
  41753. },
  41754. },
  41755. [
  41756. {
  41757. name: "Normal",
  41758. height: math.unit(6.1, "feet"),
  41759. default: true
  41760. },
  41761. {
  41762. name: "Macro",
  41763. height: math.unit(200, "feet")
  41764. },
  41765. ]
  41766. ))
  41767. characterMakers.push(() => makeCharacter(
  41768. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41769. {
  41770. front: {
  41771. height: math.unit(4 + 2/12, "feet"),
  41772. weight: math.unit(40, "kg"),
  41773. name: "Front",
  41774. image: {
  41775. source: "./media/characters/amethyst-jones/front.svg",
  41776. extra: 1220/1150,
  41777. bottom: 101/1321
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Normal",
  41784. height: math.unit(4 + 2/12, "feet"),
  41785. default: true
  41786. },
  41787. ]
  41788. ))
  41789. characterMakers.push(() => makeCharacter(
  41790. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41791. {
  41792. front: {
  41793. height: math.unit(1.7, "m"),
  41794. weight: math.unit(135, "lb"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/jade/front.svg",
  41798. extra: 1818/1767,
  41799. bottom: 32/1850
  41800. }
  41801. },
  41802. back: {
  41803. height: math.unit(1.7, "m"),
  41804. weight: math.unit(135, "lb"),
  41805. name: "Back",
  41806. image: {
  41807. source: "./media/characters/jade/back.svg",
  41808. extra: 1869/1809,
  41809. bottom: 35/1904
  41810. }
  41811. },
  41812. hand: {
  41813. height: math.unit(0.24, "m"),
  41814. name: "Hand",
  41815. image: {
  41816. source: "./media/characters/jade/hand.svg"
  41817. }
  41818. },
  41819. foot: {
  41820. height: math.unit(0.263, "m"),
  41821. name: "Foot",
  41822. image: {
  41823. source: "./media/characters/jade/foot.svg"
  41824. }
  41825. },
  41826. dick: {
  41827. height: math.unit(0.47, "m"),
  41828. name: "Dick",
  41829. image: {
  41830. source: "./media/characters/jade/dick.svg"
  41831. }
  41832. },
  41833. },
  41834. [
  41835. {
  41836. name: "Micro",
  41837. height: math.unit(22, "cm")
  41838. },
  41839. {
  41840. name: "Normal",
  41841. height: math.unit(1.7, "m"),
  41842. default: true
  41843. },
  41844. {
  41845. name: "Macro",
  41846. height: math.unit(152, "m")
  41847. },
  41848. ]
  41849. ))
  41850. characterMakers.push(() => makeCharacter(
  41851. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41852. {
  41853. front: {
  41854. height: math.unit(100, "miles"),
  41855. weight: math.unit(20000, "tons"),
  41856. name: "Front",
  41857. image: {
  41858. source: "./media/characters/cookie/front.svg",
  41859. extra: 1125/1070,
  41860. bottom: 30/1155
  41861. }
  41862. },
  41863. },
  41864. [
  41865. {
  41866. name: "Big",
  41867. height: math.unit(50, "feet")
  41868. },
  41869. {
  41870. name: "Macro",
  41871. height: math.unit(100, "miles"),
  41872. default: true
  41873. },
  41874. {
  41875. name: "Megamacro",
  41876. height: math.unit(90000, "miles")
  41877. },
  41878. ]
  41879. ))
  41880. characterMakers.push(() => makeCharacter(
  41881. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41882. {
  41883. front: {
  41884. height: math.unit(6, "feet"),
  41885. weight: math.unit(145, "lb"),
  41886. name: "Front",
  41887. image: {
  41888. source: "./media/characters/farzian/front.svg",
  41889. extra: 1902/1693,
  41890. bottom: 108/2010
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Macro",
  41897. height: math.unit(500, "feet"),
  41898. default: true
  41899. },
  41900. ]
  41901. ))
  41902. characterMakers.push(() => makeCharacter(
  41903. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41904. {
  41905. front: {
  41906. height: math.unit(3 + 6/12, "feet"),
  41907. weight: math.unit(50, "lb"),
  41908. name: "Front",
  41909. image: {
  41910. source: "./media/characters/kimberly-tilson/front.svg",
  41911. extra: 1400/1322,
  41912. bottom: 36/1436
  41913. }
  41914. },
  41915. back: {
  41916. height: math.unit(3 + 6/12, "feet"),
  41917. weight: math.unit(50, "lb"),
  41918. name: "Back",
  41919. image: {
  41920. source: "./media/characters/kimberly-tilson/back.svg",
  41921. extra: 1370/1307,
  41922. bottom: 20/1390
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Normal",
  41929. height: math.unit(3 + 6/12, "feet"),
  41930. default: true
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(1148, "feet"),
  41939. weight: math.unit(34057, "lb"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/harthos/front.svg",
  41943. extra: 1391/1339,
  41944. bottom: 13/1404
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Macro",
  41951. height: math.unit(1148, "feet"),
  41952. default: true
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(15, "feet"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/hypatia/front.svg",
  41964. extra: 1653/1591,
  41965. bottom: 79/1732
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Normal",
  41972. height: math.unit(15, "feet")
  41973. },
  41974. {
  41975. name: "Small",
  41976. height: math.unit(300, "feet")
  41977. },
  41978. {
  41979. name: "Macro",
  41980. height: math.unit(2500, "feet"),
  41981. default: true
  41982. },
  41983. {
  41984. name: "Mega Macro",
  41985. height: math.unit(1500, "miles")
  41986. },
  41987. {
  41988. name: "Giga Macro",
  41989. height: math.unit(1.5e6, "miles")
  41990. },
  41991. ]
  41992. ))
  41993. characterMakers.push(() => makeCharacter(
  41994. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41995. {
  41996. front: {
  41997. height: math.unit(6, "feet"),
  41998. weight: math.unit(200, "lb"),
  41999. name: "Front",
  42000. image: {
  42001. source: "./media/characters/wulver/front.svg",
  42002. extra: 1724/1632,
  42003. bottom: 130/1854
  42004. }
  42005. },
  42006. frontNsfw: {
  42007. height: math.unit(6, "feet"),
  42008. weight: math.unit(200, "lb"),
  42009. name: "Front (NSFW)",
  42010. image: {
  42011. source: "./media/characters/wulver/front-nsfw.svg",
  42012. extra: 1724/1632,
  42013. bottom: 130/1854
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Human-Sized",
  42020. height: math.unit(6, "feet")
  42021. },
  42022. {
  42023. name: "Normal",
  42024. height: math.unit(4, "meters"),
  42025. default: true
  42026. },
  42027. {
  42028. name: "Large",
  42029. height: math.unit(6, "m")
  42030. },
  42031. ]
  42032. ))
  42033. characterMakers.push(() => makeCharacter(
  42034. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42035. {
  42036. front: {
  42037. height: math.unit(7, "feet"),
  42038. name: "Front",
  42039. image: {
  42040. source: "./media/characters/maru/front.svg",
  42041. extra: 1595/1570,
  42042. bottom: 0/1595
  42043. }
  42044. },
  42045. },
  42046. [
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(7, "feet"),
  42050. default: true
  42051. },
  42052. {
  42053. name: "Macro",
  42054. height: math.unit(700, "feet")
  42055. },
  42056. {
  42057. name: "Mega Macro",
  42058. height: math.unit(25, "miles")
  42059. },
  42060. ]
  42061. ))
  42062. characterMakers.push(() => makeCharacter(
  42063. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42064. {
  42065. front: {
  42066. height: math.unit(6, "feet"),
  42067. weight: math.unit(170, "lb"),
  42068. name: "Front",
  42069. image: {
  42070. source: "./media/characters/xenon/front.svg",
  42071. extra: 1376/1305,
  42072. bottom: 56/1432
  42073. }
  42074. },
  42075. back: {
  42076. height: math.unit(6, "feet"),
  42077. weight: math.unit(170, "lb"),
  42078. name: "Back",
  42079. image: {
  42080. source: "./media/characters/xenon/back.svg",
  42081. extra: 1328/1259,
  42082. bottom: 95/1423
  42083. }
  42084. },
  42085. maw: {
  42086. height: math.unit(0.52, "feet"),
  42087. name: "Maw",
  42088. image: {
  42089. source: "./media/characters/xenon/maw.svg"
  42090. }
  42091. },
  42092. handLeft: {
  42093. height: math.unit(0.82 * 169 / 153, "feet"),
  42094. name: "Hand (Left)",
  42095. image: {
  42096. source: "./media/characters/xenon/hand-left.svg"
  42097. }
  42098. },
  42099. handRight: {
  42100. height: math.unit(0.82, "feet"),
  42101. name: "Hand (Right)",
  42102. image: {
  42103. source: "./media/characters/xenon/hand-right.svg"
  42104. }
  42105. },
  42106. footLeft: {
  42107. height: math.unit(1.13, "feet"),
  42108. name: "Foot (Left)",
  42109. image: {
  42110. source: "./media/characters/xenon/foot-left.svg"
  42111. }
  42112. },
  42113. footRight: {
  42114. height: math.unit(1.13 * 194 / 196, "feet"),
  42115. name: "Foot (Right)",
  42116. image: {
  42117. source: "./media/characters/xenon/foot-right.svg"
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Micro",
  42124. height: math.unit(0.8, "inches")
  42125. },
  42126. {
  42127. name: "Normal",
  42128. height: math.unit(6, "feet")
  42129. },
  42130. {
  42131. name: "Macro",
  42132. height: math.unit(50, "feet"),
  42133. default: true
  42134. },
  42135. {
  42136. name: "Macro+",
  42137. height: math.unit(250, "feet")
  42138. },
  42139. {
  42140. name: "Megamacro",
  42141. height: math.unit(1500, "feet")
  42142. },
  42143. ]
  42144. ))
  42145. characterMakers.push(() => makeCharacter(
  42146. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42147. {
  42148. front: {
  42149. height: math.unit(7 + 5/12, "feet"),
  42150. name: "Front",
  42151. image: {
  42152. source: "./media/characters/zane/front.svg",
  42153. extra: 1260/1203,
  42154. bottom: 94/1354
  42155. }
  42156. },
  42157. back: {
  42158. height: math.unit(5.05, "feet"),
  42159. name: "Back",
  42160. image: {
  42161. source: "./media/characters/zane/back.svg",
  42162. extra: 893/829,
  42163. bottom: 30/923
  42164. }
  42165. },
  42166. werewolf: {
  42167. height: math.unit(11, "feet"),
  42168. name: "Werewolf",
  42169. image: {
  42170. source: "./media/characters/zane/werewolf.svg",
  42171. extra: 1383/1323,
  42172. bottom: 89/1472
  42173. }
  42174. },
  42175. foot: {
  42176. height: math.unit(1.46, "feet"),
  42177. name: "Foot",
  42178. image: {
  42179. source: "./media/characters/zane/foot.svg"
  42180. }
  42181. },
  42182. footFront: {
  42183. height: math.unit(0.784, "feet"),
  42184. name: "Foot (Front)",
  42185. image: {
  42186. source: "./media/characters/zane/foot-front.svg"
  42187. }
  42188. },
  42189. dick: {
  42190. height: math.unit(1.95, "feet"),
  42191. name: "Dick",
  42192. image: {
  42193. source: "./media/characters/zane/dick.svg"
  42194. }
  42195. },
  42196. dickWerewolf: {
  42197. height: math.unit(3.77, "feet"),
  42198. name: "Dick (Werewolf)",
  42199. image: {
  42200. source: "./media/characters/zane/dick.svg"
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Normal",
  42207. height: math.unit(7 + 5/12, "feet"),
  42208. default: true
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(6 + 2/12, "feet"),
  42217. weight: math.unit(284, "lb"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/benni-desparque/front.svg",
  42221. extra: 1353/1126,
  42222. bottom: 69/1422
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Civilian",
  42229. height: math.unit(6 + 2/12, "feet")
  42230. },
  42231. {
  42232. name: "Normal",
  42233. height: math.unit(98, "feet"),
  42234. default: true
  42235. },
  42236. {
  42237. name: "Kaiju Fighter",
  42238. height: math.unit(268, "feet")
  42239. },
  42240. ]
  42241. ))
  42242. characterMakers.push(() => makeCharacter(
  42243. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42244. {
  42245. front: {
  42246. height: math.unit(5, "feet"),
  42247. weight: math.unit(105, "lb"),
  42248. name: "Front",
  42249. image: {
  42250. source: "./media/characters/maxine/front.svg",
  42251. extra: 1386/1250,
  42252. bottom: 71/1457
  42253. }
  42254. },
  42255. },
  42256. [
  42257. {
  42258. name: "Normal",
  42259. height: math.unit(5, "feet"),
  42260. default: true
  42261. },
  42262. ]
  42263. ))
  42264. characterMakers.push(() => makeCharacter(
  42265. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42266. {
  42267. front: {
  42268. height: math.unit(11 + 7/12, "feet"),
  42269. weight: math.unit(9576, "lb"),
  42270. name: "Front",
  42271. image: {
  42272. source: "./media/characters/scaly/front.svg",
  42273. extra: 888/867,
  42274. bottom: 36/924
  42275. }
  42276. },
  42277. },
  42278. [
  42279. {
  42280. name: "Normal",
  42281. height: math.unit(11 + 7/12, "feet"),
  42282. default: true
  42283. },
  42284. ]
  42285. ))
  42286. characterMakers.push(() => makeCharacter(
  42287. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42288. {
  42289. front: {
  42290. height: math.unit(6 + 3/12, "feet"),
  42291. name: "Front",
  42292. image: {
  42293. source: "./media/characters/saelria/front.svg",
  42294. extra: 1243/1138,
  42295. bottom: 46/1289
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Micro",
  42302. height: math.unit(6, "inches"),
  42303. },
  42304. {
  42305. name: "Normal",
  42306. height: math.unit(6 + 3/12, "feet"),
  42307. default: true
  42308. },
  42309. {
  42310. name: "Macro",
  42311. height: math.unit(25, "feet")
  42312. },
  42313. ]
  42314. ))
  42315. characterMakers.push(() => makeCharacter(
  42316. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42317. {
  42318. front: {
  42319. height: math.unit(80, "meters"),
  42320. weight: math.unit(7000, "tonnes"),
  42321. name: "Front",
  42322. image: {
  42323. source: "./media/characters/tef/front.svg",
  42324. extra: 2036/1991,
  42325. bottom: 54/2090
  42326. }
  42327. },
  42328. back: {
  42329. height: math.unit(80, "meters"),
  42330. weight: math.unit(7000, "tonnes"),
  42331. name: "Back",
  42332. image: {
  42333. source: "./media/characters/tef/back.svg",
  42334. extra: 2036/1991,
  42335. bottom: 54/2090
  42336. }
  42337. },
  42338. },
  42339. [
  42340. {
  42341. name: "Macro",
  42342. height: math.unit(80, "meters"),
  42343. default: true
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42349. {
  42350. front: {
  42351. height: math.unit(13, "feet"),
  42352. weight: math.unit(6, "tons"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/rover/front.svg",
  42356. extra: 1233/1156,
  42357. bottom: 50/1283
  42358. }
  42359. },
  42360. back: {
  42361. height: math.unit(13, "feet"),
  42362. weight: math.unit(6, "tons"),
  42363. name: "Back",
  42364. image: {
  42365. source: "./media/characters/rover/back.svg",
  42366. extra: 1327/1258,
  42367. bottom: 39/1366
  42368. }
  42369. },
  42370. },
  42371. [
  42372. {
  42373. name: "Normal",
  42374. height: math.unit(13, "feet"),
  42375. default: true
  42376. },
  42377. {
  42378. name: "Macro",
  42379. height: math.unit(1300, "feet")
  42380. },
  42381. {
  42382. name: "Megamacro",
  42383. height: math.unit(1300, "miles")
  42384. },
  42385. {
  42386. name: "Gigamacro",
  42387. height: math.unit(1300000, "miles")
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(6, "feet"),
  42396. weight: math.unit(150, "lb"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/ariz/front.svg",
  42400. extra: 1401/1346,
  42401. bottom: 5/1406
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(10, "feet"),
  42409. default: true
  42410. },
  42411. ]
  42412. ))
  42413. characterMakers.push(() => makeCharacter(
  42414. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42415. {
  42416. front: {
  42417. height: math.unit(6, "feet"),
  42418. weight: math.unit(140, "lb"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/sigrun/front.svg",
  42422. extra: 1418/1359,
  42423. bottom: 27/1445
  42424. }
  42425. },
  42426. },
  42427. [
  42428. {
  42429. name: "Macro",
  42430. height: math.unit(35, "feet"),
  42431. default: true
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(6, "feet"),
  42440. weight: math.unit(150, "lb"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/numin/front.svg",
  42444. extra: 1433/1388,
  42445. bottom: 12/1445
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Macro",
  42452. height: math.unit(21.5, "km"),
  42453. default: true
  42454. },
  42455. ]
  42456. ))
  42457. characterMakers.push(() => makeCharacter(
  42458. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42459. {
  42460. front: {
  42461. height: math.unit(6, "feet"),
  42462. weight: math.unit(463, "lb"),
  42463. name: "Front",
  42464. image: {
  42465. source: "./media/characters/melwa/front.svg",
  42466. extra: 1307/1248,
  42467. bottom: 93/1400
  42468. }
  42469. },
  42470. },
  42471. [
  42472. {
  42473. name: "Macro",
  42474. height: math.unit(50, "meters"),
  42475. default: true
  42476. },
  42477. ]
  42478. ))
  42479. characterMakers.push(() => makeCharacter(
  42480. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42481. {
  42482. front: {
  42483. height: math.unit(325, "feet"),
  42484. name: "Front",
  42485. image: {
  42486. source: "./media/characters/zorkaiju/front.svg",
  42487. extra: 1955/1814,
  42488. bottom: 40/1995
  42489. }
  42490. },
  42491. frontExtended: {
  42492. height: math.unit(325, "feet"),
  42493. name: "Front (Extended)",
  42494. image: {
  42495. source: "./media/characters/zorkaiju/front-extended.svg",
  42496. extra: 1955/1814,
  42497. bottom: 40/1995
  42498. }
  42499. },
  42500. side: {
  42501. height: math.unit(325, "feet"),
  42502. name: "Side",
  42503. image: {
  42504. source: "./media/characters/zorkaiju/side.svg",
  42505. extra: 1495/1396,
  42506. bottom: 17/1512
  42507. }
  42508. },
  42509. sideExtended: {
  42510. height: math.unit(325, "feet"),
  42511. name: "Side (Extended)",
  42512. image: {
  42513. source: "./media/characters/zorkaiju/side-extended.svg",
  42514. extra: 1495/1396,
  42515. bottom: 17/1512
  42516. }
  42517. },
  42518. back: {
  42519. height: math.unit(325, "feet"),
  42520. name: "Back",
  42521. image: {
  42522. source: "./media/characters/zorkaiju/back.svg",
  42523. extra: 1959/1821,
  42524. bottom: 31/1990
  42525. }
  42526. },
  42527. backExtended: {
  42528. height: math.unit(325, "feet"),
  42529. name: "Back (Extended)",
  42530. image: {
  42531. source: "./media/characters/zorkaiju/back-extended.svg",
  42532. extra: 1959/1821,
  42533. bottom: 31/1990
  42534. }
  42535. },
  42536. hand: {
  42537. height: math.unit(58.4, "feet"),
  42538. name: "Hand",
  42539. image: {
  42540. source: "./media/characters/zorkaiju/hand.svg"
  42541. }
  42542. },
  42543. handExtended: {
  42544. height: math.unit(61.4, "feet"),
  42545. name: "Hand (Extended)",
  42546. image: {
  42547. source: "./media/characters/zorkaiju/hand-extended.svg"
  42548. }
  42549. },
  42550. foot: {
  42551. height: math.unit(95, "feet"),
  42552. name: "Foot",
  42553. image: {
  42554. source: "./media/characters/zorkaiju/foot.svg"
  42555. }
  42556. },
  42557. leftArm: {
  42558. height: math.unit(59, "feet"),
  42559. name: "Left Arm",
  42560. image: {
  42561. source: "./media/characters/zorkaiju/left-arm.svg"
  42562. }
  42563. },
  42564. rightArm: {
  42565. height: math.unit(59, "feet"),
  42566. name: "Right Arm",
  42567. image: {
  42568. source: "./media/characters/zorkaiju/right-arm.svg"
  42569. }
  42570. },
  42571. leftArmExtended: {
  42572. height: math.unit(59 * 1.033546, "feet"),
  42573. name: "Left Arm (Extended)",
  42574. image: {
  42575. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42576. }
  42577. },
  42578. rightArmExtended: {
  42579. height: math.unit(59 * 1.0496, "feet"),
  42580. name: "Right Arm (Extended)",
  42581. image: {
  42582. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42583. }
  42584. },
  42585. tail: {
  42586. height: math.unit(104, "feet"),
  42587. name: "Tail",
  42588. image: {
  42589. source: "./media/characters/zorkaiju/tail.svg"
  42590. }
  42591. },
  42592. tailExtended: {
  42593. height: math.unit(104, "feet"),
  42594. name: "Tail (Extended)",
  42595. image: {
  42596. source: "./media/characters/zorkaiju/tail-extended.svg"
  42597. }
  42598. },
  42599. tailBottom: {
  42600. height: math.unit(104, "feet"),
  42601. name: "Tail Bottom",
  42602. image: {
  42603. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42604. }
  42605. },
  42606. crystal: {
  42607. height: math.unit(27.54, "feet"),
  42608. name: "Crystal",
  42609. image: {
  42610. source: "./media/characters/zorkaiju/crystal.svg"
  42611. }
  42612. },
  42613. },
  42614. [
  42615. {
  42616. name: "Kaiju",
  42617. height: math.unit(325, "feet"),
  42618. default: true
  42619. },
  42620. ]
  42621. ))
  42622. characterMakers.push(() => makeCharacter(
  42623. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42624. {
  42625. front: {
  42626. height: math.unit(6 + 1/12, "feet"),
  42627. weight: math.unit(115, "lb"),
  42628. name: "Front",
  42629. image: {
  42630. source: "./media/characters/bailey-belfry/front.svg",
  42631. extra: 1240/1121,
  42632. bottom: 101/1341
  42633. }
  42634. },
  42635. },
  42636. [
  42637. {
  42638. name: "Normal",
  42639. height: math.unit(6 + 1/12, "feet"),
  42640. default: true
  42641. },
  42642. ]
  42643. ))
  42644. characterMakers.push(() => makeCharacter(
  42645. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42646. {
  42647. side: {
  42648. height: math.unit(4, "meters"),
  42649. weight: math.unit(250, "kg"),
  42650. name: "Side",
  42651. image: {
  42652. source: "./media/characters/blacky/side.svg",
  42653. extra: 1027/919,
  42654. bottom: 43/1070
  42655. }
  42656. },
  42657. maw: {
  42658. height: math.unit(1, "meters"),
  42659. name: "Maw",
  42660. image: {
  42661. source: "./media/characters/blacky/maw.svg"
  42662. }
  42663. },
  42664. paw: {
  42665. height: math.unit(1, "meters"),
  42666. name: "Paw",
  42667. image: {
  42668. source: "./media/characters/blacky/paw.svg"
  42669. }
  42670. },
  42671. },
  42672. [
  42673. {
  42674. name: "Normal",
  42675. height: math.unit(4, "meters"),
  42676. default: true
  42677. },
  42678. ]
  42679. ))
  42680. characterMakers.push(() => makeCharacter(
  42681. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42682. {
  42683. front: {
  42684. height: math.unit(170, "cm"),
  42685. weight: math.unit(66, "kg"),
  42686. name: "Front",
  42687. image: {
  42688. source: "./media/characters/thux-ei/front.svg",
  42689. extra: 1109/1011,
  42690. bottom: 8/1117
  42691. }
  42692. },
  42693. },
  42694. [
  42695. {
  42696. name: "Normal",
  42697. height: math.unit(170, "cm"),
  42698. default: true
  42699. },
  42700. ]
  42701. ))
  42702. characterMakers.push(() => makeCharacter(
  42703. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42704. {
  42705. front: {
  42706. height: math.unit(5, "feet"),
  42707. weight: math.unit(120, "lb"),
  42708. name: "Front",
  42709. image: {
  42710. source: "./media/characters/roxanne-voltaire/front.svg",
  42711. extra: 1901/1779,
  42712. bottom: 53/1954
  42713. }
  42714. },
  42715. },
  42716. [
  42717. {
  42718. name: "Normal",
  42719. height: math.unit(5, "feet"),
  42720. default: true
  42721. },
  42722. {
  42723. name: "Giant",
  42724. height: math.unit(50, "feet")
  42725. },
  42726. {
  42727. name: "Titan",
  42728. height: math.unit(500, "feet")
  42729. },
  42730. {
  42731. name: "Macro",
  42732. height: math.unit(5000, "feet")
  42733. },
  42734. {
  42735. name: "Megamacro",
  42736. height: math.unit(50000, "feet")
  42737. },
  42738. {
  42739. name: "Gigamacro",
  42740. height: math.unit(500000, "feet")
  42741. },
  42742. {
  42743. name: "Teramacro",
  42744. height: math.unit(5e6, "feet")
  42745. },
  42746. ]
  42747. ))
  42748. characterMakers.push(() => makeCharacter(
  42749. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42750. {
  42751. front: {
  42752. height: math.unit(6 + 2/12, "feet"),
  42753. name: "Front",
  42754. image: {
  42755. source: "./media/characters/squeaks/front.svg",
  42756. extra: 1823/1768,
  42757. bottom: 138/1961
  42758. }
  42759. },
  42760. },
  42761. [
  42762. {
  42763. name: "Micro",
  42764. height: math.unit(0.5, "inches")
  42765. },
  42766. {
  42767. name: "Normal",
  42768. height: math.unit(6 + 2/12, "feet"),
  42769. default: true
  42770. },
  42771. {
  42772. name: "Macro",
  42773. height: math.unit(600, "feet")
  42774. },
  42775. ]
  42776. ))
  42777. characterMakers.push(() => makeCharacter(
  42778. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42779. {
  42780. front: {
  42781. height: math.unit(1.72, "meters"),
  42782. name: "Front",
  42783. image: {
  42784. source: "./media/characters/archinger/front.svg",
  42785. extra: 1861/1675,
  42786. bottom: 125/1986
  42787. }
  42788. },
  42789. back: {
  42790. height: math.unit(1.72, "meters"),
  42791. name: "Back",
  42792. image: {
  42793. source: "./media/characters/archinger/back.svg",
  42794. extra: 1844/1701,
  42795. bottom: 104/1948
  42796. }
  42797. },
  42798. cock: {
  42799. height: math.unit(0.59, "feet"),
  42800. name: "Cock",
  42801. image: {
  42802. source: "./media/characters/archinger/cock.svg"
  42803. }
  42804. },
  42805. },
  42806. [
  42807. {
  42808. name: "Normal",
  42809. height: math.unit(1.72, "meters"),
  42810. default: true
  42811. },
  42812. {
  42813. name: "Macro",
  42814. height: math.unit(84, "meters")
  42815. },
  42816. {
  42817. name: "Macro+",
  42818. height: math.unit(112, "meters")
  42819. },
  42820. {
  42821. name: "Macro++",
  42822. height: math.unit(960, "meters")
  42823. },
  42824. {
  42825. name: "Macro+++",
  42826. height: math.unit(4, "km")
  42827. },
  42828. {
  42829. name: "Macro++++",
  42830. height: math.unit(48, "km")
  42831. },
  42832. {
  42833. name: "Macro+++++",
  42834. height: math.unit(4500, "km")
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(5 + 5/12, "feet"),
  42843. name: "Front",
  42844. image: {
  42845. source: "./media/characters/alsnapz/front.svg",
  42846. extra: 1157/1065,
  42847. bottom: 42/1199
  42848. }
  42849. },
  42850. },
  42851. [
  42852. {
  42853. name: "Normal",
  42854. height: math.unit(5 + 5/12, "feet"),
  42855. default: true
  42856. },
  42857. ]
  42858. ))
  42859. characterMakers.push(() => makeCharacter(
  42860. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42861. {
  42862. side: {
  42863. height: math.unit(3.2, "earths"),
  42864. name: "Side",
  42865. image: {
  42866. source: "./media/characters/mag/side.svg",
  42867. extra: 1331/1008,
  42868. bottom: 52/1383
  42869. }
  42870. },
  42871. wing: {
  42872. height: math.unit(1.94, "earths"),
  42873. name: "Wing",
  42874. image: {
  42875. source: "./media/characters/mag/wing.svg"
  42876. }
  42877. },
  42878. dick: {
  42879. height: math.unit(1.8, "earths"),
  42880. name: "Dick",
  42881. image: {
  42882. source: "./media/characters/mag/dick.svg"
  42883. }
  42884. },
  42885. ass: {
  42886. height: math.unit(1.33, "earths"),
  42887. name: "Ass",
  42888. image: {
  42889. source: "./media/characters/mag/ass.svg"
  42890. }
  42891. },
  42892. head: {
  42893. height: math.unit(1.1, "earths"),
  42894. name: "Head",
  42895. image: {
  42896. source: "./media/characters/mag/head.svg"
  42897. }
  42898. },
  42899. maw: {
  42900. height: math.unit(1.62, "earths"),
  42901. name: "Maw",
  42902. image: {
  42903. source: "./media/characters/mag/maw.svg"
  42904. }
  42905. },
  42906. },
  42907. [
  42908. {
  42909. name: "Small",
  42910. height: math.unit(162, "feet")
  42911. },
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(3.2, "earths"),
  42915. default: true
  42916. },
  42917. ]
  42918. ))
  42919. characterMakers.push(() => makeCharacter(
  42920. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42921. {
  42922. front: {
  42923. height: math.unit(512, "feet"),
  42924. weight: math.unit(63509, "tonnes"),
  42925. name: "Front",
  42926. image: {
  42927. source: "./media/characters/vorrel-harroc/front.svg",
  42928. extra: 1075/1063,
  42929. bottom: 62/1137
  42930. }
  42931. },
  42932. },
  42933. [
  42934. {
  42935. name: "Normal",
  42936. height: math.unit(10, "feet")
  42937. },
  42938. {
  42939. name: "Macro",
  42940. height: math.unit(512, "feet"),
  42941. default: true
  42942. },
  42943. {
  42944. name: "Megamacro",
  42945. height: math.unit(256, "miles")
  42946. },
  42947. {
  42948. name: "Gigamacro",
  42949. height: math.unit(4096, "miles")
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42955. {
  42956. side: {
  42957. height: math.unit(50, "feet"),
  42958. name: "Side",
  42959. image: {
  42960. source: "./media/characters/froimar/side.svg",
  42961. extra: 855/638,
  42962. bottom: 99/954
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Macro",
  42969. height: math.unit(50, "feet"),
  42970. default: true
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42976. {
  42977. front: {
  42978. height: math.unit(210, "miles"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/timothy/front.svg",
  42982. extra: 1007/943,
  42983. bottom: 62/1069
  42984. }
  42985. },
  42986. frontSkirt: {
  42987. height: math.unit(210, "miles"),
  42988. name: "Front (Skirt)",
  42989. image: {
  42990. source: "./media/characters/timothy/front-skirt.svg",
  42991. extra: 1007/943,
  42992. bottom: 62/1069
  42993. }
  42994. },
  42995. frontCoat: {
  42996. height: math.unit(210, "miles"),
  42997. name: "Front (Coat)",
  42998. image: {
  42999. source: "./media/characters/timothy/front-coat.svg",
  43000. extra: 1007/943,
  43001. bottom: 62/1069
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Macro",
  43008. height: math.unit(210, "miles"),
  43009. default: true
  43010. },
  43011. {
  43012. name: "Megamacro",
  43013. height: math.unit(210000, "miles")
  43014. },
  43015. ]
  43016. ))
  43017. characterMakers.push(() => makeCharacter(
  43018. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43019. {
  43020. front: {
  43021. height: math.unit(188, "feet"),
  43022. name: "Front",
  43023. image: {
  43024. source: "./media/characters/pyotr/front.svg",
  43025. extra: 1912/1826,
  43026. bottom: 18/1930
  43027. }
  43028. },
  43029. },
  43030. [
  43031. {
  43032. name: "Macro",
  43033. height: math.unit(188, "feet"),
  43034. default: true
  43035. },
  43036. {
  43037. name: "Megamacro",
  43038. height: math.unit(8, "miles")
  43039. },
  43040. ]
  43041. ))
  43042. characterMakers.push(() => makeCharacter(
  43043. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43044. {
  43045. side: {
  43046. height: math.unit(10, "feet"),
  43047. weight: math.unit(4500, "lb"),
  43048. name: "Side",
  43049. image: {
  43050. source: "./media/characters/ackart/side.svg",
  43051. extra: 1776/1668,
  43052. bottom: 116/1892
  43053. }
  43054. },
  43055. },
  43056. [
  43057. {
  43058. name: "Normal",
  43059. height: math.unit(10, "feet"),
  43060. default: true
  43061. },
  43062. ]
  43063. ))
  43064. characterMakers.push(() => makeCharacter(
  43065. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43066. {
  43067. side: {
  43068. height: math.unit(21, "feet"),
  43069. name: "Side",
  43070. image: {
  43071. source: "./media/characters/nolow/side.svg",
  43072. extra: 1484/1434,
  43073. bottom: 85/1569
  43074. }
  43075. },
  43076. sideErect: {
  43077. height: math.unit(21, "feet"),
  43078. name: "Side-erect",
  43079. image: {
  43080. source: "./media/characters/nolow/side-erect.svg",
  43081. extra: 1484/1434,
  43082. bottom: 85/1569
  43083. }
  43084. },
  43085. },
  43086. [
  43087. {
  43088. name: "Regular",
  43089. height: math.unit(12, "feet")
  43090. },
  43091. {
  43092. name: "Big Chee",
  43093. height: math.unit(21, "feet"),
  43094. default: true
  43095. },
  43096. ]
  43097. ))
  43098. characterMakers.push(() => makeCharacter(
  43099. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43100. {
  43101. front: {
  43102. height: math.unit(7, "feet"),
  43103. weight: math.unit(250, "lb"),
  43104. name: "Front",
  43105. image: {
  43106. source: "./media/characters/nines/front.svg",
  43107. extra: 1741/1607,
  43108. bottom: 41/1782
  43109. }
  43110. },
  43111. side: {
  43112. height: math.unit(7, "feet"),
  43113. weight: math.unit(250, "lb"),
  43114. name: "Side",
  43115. image: {
  43116. source: "./media/characters/nines/side.svg",
  43117. extra: 1854/1735,
  43118. bottom: 93/1947
  43119. }
  43120. },
  43121. back: {
  43122. height: math.unit(7, "feet"),
  43123. weight: math.unit(250, "lb"),
  43124. name: "Back",
  43125. image: {
  43126. source: "./media/characters/nines/back.svg",
  43127. extra: 1748/1615,
  43128. bottom: 20/1768
  43129. }
  43130. },
  43131. },
  43132. [
  43133. {
  43134. name: "Megamacro",
  43135. height: math.unit(99, "km"),
  43136. default: true
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43142. {
  43143. front: {
  43144. height: math.unit(5 + 10/12, "feet"),
  43145. weight: math.unit(210, "lb"),
  43146. name: "Front",
  43147. image: {
  43148. source: "./media/characters/zenith/front.svg",
  43149. extra: 1531/1452,
  43150. bottom: 198/1729
  43151. }
  43152. },
  43153. back: {
  43154. height: math.unit(5 + 10/12, "feet"),
  43155. weight: math.unit(210, "lb"),
  43156. name: "Back",
  43157. image: {
  43158. source: "./media/characters/zenith/back.svg",
  43159. extra: 1571/1487,
  43160. bottom: 75/1646
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal",
  43167. height: math.unit(5 + 10/12, "feet"),
  43168. default: true
  43169. }
  43170. ]
  43171. ))
  43172. characterMakers.push(() => makeCharacter(
  43173. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43174. {
  43175. front: {
  43176. height: math.unit(4, "feet"),
  43177. weight: math.unit(60, "lb"),
  43178. name: "Front",
  43179. image: {
  43180. source: "./media/characters/jasper/front.svg",
  43181. extra: 1450/1379,
  43182. bottom: 19/1469
  43183. }
  43184. },
  43185. },
  43186. [
  43187. {
  43188. name: "Normal",
  43189. height: math.unit(4, "feet"),
  43190. default: true
  43191. },
  43192. ]
  43193. ))
  43194. characterMakers.push(() => makeCharacter(
  43195. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43196. {
  43197. front: {
  43198. height: math.unit(6 + 5/12, "feet"),
  43199. weight: math.unit(290, "lb"),
  43200. name: "Front",
  43201. image: {
  43202. source: "./media/characters/tiberius-thyben/front.svg",
  43203. extra: 757/739,
  43204. bottom: 39/796
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Micro",
  43211. height: math.unit(1.5, "inches")
  43212. },
  43213. {
  43214. name: "Normal",
  43215. height: math.unit(6 + 5/12, "feet"),
  43216. default: true
  43217. },
  43218. {
  43219. name: "Macro",
  43220. height: math.unit(300, "feet")
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43226. {
  43227. front: {
  43228. height: math.unit(5 + 6/12, "feet"),
  43229. weight: math.unit(60, "kg"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/sabre/front.svg",
  43233. extra: 738/671,
  43234. bottom: 27/765
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Teeny",
  43241. height: math.unit(2, "inches")
  43242. },
  43243. {
  43244. name: "Smol",
  43245. height: math.unit(8, "inches")
  43246. },
  43247. {
  43248. name: "Normal",
  43249. height: math.unit(5 + 6/12, "feet"),
  43250. default: true
  43251. },
  43252. {
  43253. name: "Mini-Macro",
  43254. height: math.unit(15, "feet")
  43255. },
  43256. {
  43257. name: "Macro",
  43258. height: math.unit(50, "feet")
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(6 + 4/12, "feet"),
  43267. weight: math.unit(170, "lb"),
  43268. name: "Front",
  43269. image: {
  43270. source: "./media/characters/charlie/front.svg",
  43271. extra: 1348/1228,
  43272. bottom: 15/1363
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Macro",
  43279. height: math.unit(1700, "meters"),
  43280. default: true
  43281. },
  43282. {
  43283. name: "MegaMacro",
  43284. height: math.unit(20400, "meters")
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(6 + 3/12, "feet"),
  43293. weight: math.unit(185, "lb"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/susan-grant/front.svg",
  43297. extra: 1351/1327,
  43298. bottom: 26/1377
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(6 + 3/12, "feet"),
  43306. default: true
  43307. },
  43308. {
  43309. name: "Macro",
  43310. height: math.unit(225, "feet")
  43311. },
  43312. {
  43313. name: "Macro+",
  43314. height: math.unit(900, "feet")
  43315. },
  43316. {
  43317. name: "MegaMacro",
  43318. height: math.unit(14400, "feet")
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43324. {
  43325. front: {
  43326. height: math.unit(5 + 4/12, "feet"),
  43327. weight: math.unit(110, "lb"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/axel-isanov/front.svg",
  43331. extra: 1096/1065,
  43332. bottom: 13/1109
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(5 + 4/12, "feet"),
  43340. default: true
  43341. },
  43342. ]
  43343. ))
  43344. characterMakers.push(() => makeCharacter(
  43345. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43346. {
  43347. front: {
  43348. height: math.unit(9, "feet"),
  43349. weight: math.unit(467, "lb"),
  43350. name: "Front",
  43351. image: {
  43352. source: "./media/characters/necahual/front.svg",
  43353. extra: 920/873,
  43354. bottom: 26/946
  43355. }
  43356. },
  43357. back: {
  43358. height: math.unit(9, "feet"),
  43359. weight: math.unit(467, "lb"),
  43360. name: "Back",
  43361. image: {
  43362. source: "./media/characters/necahual/back.svg",
  43363. extra: 930/884,
  43364. bottom: 16/946
  43365. }
  43366. },
  43367. frontUnderwear: {
  43368. height: math.unit(9, "feet"),
  43369. weight: math.unit(467, "lb"),
  43370. name: "Front (Underwear)",
  43371. image: {
  43372. source: "./media/characters/necahual/front-underwear.svg",
  43373. extra: 920/873,
  43374. bottom: 26/946
  43375. }
  43376. },
  43377. frontDressed: {
  43378. height: math.unit(9, "feet"),
  43379. weight: math.unit(467, "lb"),
  43380. name: "Front (Dressed)",
  43381. image: {
  43382. source: "./media/characters/necahual/front-dressed.svg",
  43383. extra: 920/873,
  43384. bottom: 26/946
  43385. }
  43386. },
  43387. },
  43388. [
  43389. {
  43390. name: "Comprsesed",
  43391. height: math.unit(9, "feet")
  43392. },
  43393. {
  43394. name: "Natural",
  43395. height: math.unit(15, "feet"),
  43396. default: true
  43397. },
  43398. {
  43399. name: "Boosted",
  43400. height: math.unit(50, "feet")
  43401. },
  43402. {
  43403. name: "Boosted+",
  43404. height: math.unit(150, "feet")
  43405. },
  43406. {
  43407. name: "Max",
  43408. height: math.unit(500, "feet")
  43409. },
  43410. ]
  43411. ))
  43412. characterMakers.push(() => makeCharacter(
  43413. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43414. {
  43415. front: {
  43416. height: math.unit(22 + 1/12, "feet"),
  43417. weight: math.unit(3200, "lb"),
  43418. name: "Front",
  43419. image: {
  43420. source: "./media/characters/theo-acacia/front.svg",
  43421. extra: 1796/1741,
  43422. bottom: 83/1879
  43423. }
  43424. },
  43425. frontUnderwear: {
  43426. height: math.unit(22 + 1/12, "feet"),
  43427. weight: math.unit(3200, "lb"),
  43428. name: "Front (Underwear)",
  43429. image: {
  43430. source: "./media/characters/theo-acacia/front-underwear.svg",
  43431. extra: 1796/1741,
  43432. bottom: 83/1879
  43433. }
  43434. },
  43435. frontNude: {
  43436. height: math.unit(22 + 1/12, "feet"),
  43437. weight: math.unit(3200, "lb"),
  43438. name: "Front (Nude)",
  43439. image: {
  43440. source: "./media/characters/theo-acacia/front-nude.svg",
  43441. extra: 1796/1741,
  43442. bottom: 83/1879
  43443. }
  43444. },
  43445. },
  43446. [
  43447. {
  43448. name: "Normal",
  43449. height: math.unit(22 + 1/12, "feet"),
  43450. default: true
  43451. },
  43452. ]
  43453. ))
  43454. characterMakers.push(() => makeCharacter(
  43455. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43456. {
  43457. front: {
  43458. height: math.unit(20, "feet"),
  43459. name: "Front",
  43460. image: {
  43461. source: "./media/characters/astra/front.svg",
  43462. extra: 1850/1714,
  43463. bottom: 106/1956
  43464. }
  43465. },
  43466. frontUndressed: {
  43467. height: math.unit(20, "feet"),
  43468. name: "Front (Undressed)",
  43469. image: {
  43470. source: "./media/characters/astra/front-undressed.svg",
  43471. extra: 1926/1749,
  43472. bottom: 0/1926
  43473. }
  43474. },
  43475. hand: {
  43476. height: math.unit(1.53, "feet"),
  43477. name: "Hand",
  43478. image: {
  43479. source: "./media/characters/astra/hand.svg"
  43480. }
  43481. },
  43482. paw: {
  43483. height: math.unit(1.53, "feet"),
  43484. name: "Paw",
  43485. image: {
  43486. source: "./media/characters/astra/paw.svg"
  43487. }
  43488. },
  43489. },
  43490. [
  43491. {
  43492. name: "Smallest",
  43493. height: math.unit(20, "feet")
  43494. },
  43495. {
  43496. name: "Normal",
  43497. height: math.unit(1e9, "miles"),
  43498. default: true
  43499. },
  43500. {
  43501. name: "Larger",
  43502. height: math.unit(5, "multiverses")
  43503. },
  43504. {
  43505. name: "Largest",
  43506. height: math.unit(1e9, "multiverses")
  43507. },
  43508. ]
  43509. ))
  43510. characterMakers.push(() => makeCharacter(
  43511. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43512. {
  43513. front: {
  43514. height: math.unit(8, "feet"),
  43515. name: "Front",
  43516. image: {
  43517. source: "./media/characters/breanna/front.svg",
  43518. extra: 1912/1632,
  43519. bottom: 33/1945
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Smallest",
  43526. height: math.unit(8, "feet")
  43527. },
  43528. {
  43529. name: "Normal",
  43530. height: math.unit(1, "mile"),
  43531. default: true
  43532. },
  43533. {
  43534. name: "Maximum",
  43535. height: math.unit(1500000000000, "lightyears")
  43536. },
  43537. ]
  43538. ))
  43539. characterMakers.push(() => makeCharacter(
  43540. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43541. {
  43542. front: {
  43543. height: math.unit(5 + 11/12, "feet"),
  43544. weight: math.unit(155, "lb"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/cai/front.svg",
  43548. extra: 1823/1702,
  43549. bottom: 32/1855
  43550. }
  43551. },
  43552. back: {
  43553. height: math.unit(5 + 11/12, "feet"),
  43554. weight: math.unit(155, "lb"),
  43555. name: "Back",
  43556. image: {
  43557. source: "./media/characters/cai/back.svg",
  43558. extra: 1809/1708,
  43559. bottom: 31/1840
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(5 + 11/12, "feet"),
  43567. default: true
  43568. },
  43569. {
  43570. name: "Big",
  43571. height: math.unit(15, "feet")
  43572. },
  43573. {
  43574. name: "Macro",
  43575. height: math.unit(200, "feet")
  43576. },
  43577. ]
  43578. ))
  43579. characterMakers.push(() => makeCharacter(
  43580. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43581. {
  43582. front: {
  43583. height: math.unit(5 + 6/12, "feet"),
  43584. weight: math.unit(160, "lb"),
  43585. name: "Front",
  43586. image: {
  43587. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43588. extra: 1227/1174,
  43589. bottom: 37/1264
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Macro",
  43596. height: math.unit(444, "meters"),
  43597. default: true
  43598. },
  43599. ]
  43600. ))
  43601. characterMakers.push(() => makeCharacter(
  43602. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43603. {
  43604. front: {
  43605. height: math.unit(18 + 7/12, "feet"),
  43606. name: "Front",
  43607. image: {
  43608. source: "./media/characters/rex/front.svg",
  43609. extra: 1941/1807,
  43610. bottom: 66/2007
  43611. }
  43612. },
  43613. back: {
  43614. height: math.unit(18 + 7/12, "feet"),
  43615. name: "Back",
  43616. image: {
  43617. source: "./media/characters/rex/back.svg",
  43618. extra: 1937/1822,
  43619. bottom: 42/1979
  43620. }
  43621. },
  43622. boot: {
  43623. height: math.unit(3.45, "feet"),
  43624. name: "Boot",
  43625. image: {
  43626. source: "./media/characters/rex/boot.svg"
  43627. }
  43628. },
  43629. paw: {
  43630. height: math.unit(4.17, "feet"),
  43631. name: "Paw",
  43632. image: {
  43633. source: "./media/characters/rex/paw.svg"
  43634. }
  43635. },
  43636. head: {
  43637. height: math.unit(6.728, "feet"),
  43638. name: "Head",
  43639. image: {
  43640. source: "./media/characters/rex/head.svg"
  43641. }
  43642. },
  43643. },
  43644. [
  43645. {
  43646. name: "Nano",
  43647. height: math.unit(18 + 7/12, "feet")
  43648. },
  43649. {
  43650. name: "Micro",
  43651. height: math.unit(1.5, "megameters")
  43652. },
  43653. {
  43654. name: "Normal",
  43655. height: math.unit(440, "megameters"),
  43656. default: true
  43657. },
  43658. {
  43659. name: "Macro",
  43660. height: math.unit(2.5, "gigameters")
  43661. },
  43662. {
  43663. name: "Gigamacro",
  43664. height: math.unit(2, "galaxies")
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43670. {
  43671. side: {
  43672. height: math.unit(32, "feet"),
  43673. weight: math.unit(250000, "lb"),
  43674. name: "Side",
  43675. image: {
  43676. source: "./media/characters/silverwing/side.svg",
  43677. extra: 1100/1019,
  43678. bottom: 204/1304
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Normal",
  43685. height: math.unit(32, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43692. {
  43693. front: {
  43694. height: math.unit(6 + 6/12, "feet"),
  43695. weight: math.unit(350, "lb"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/tristan-hawthorne/front.svg",
  43699. extra: 1159/1124,
  43700. bottom: 37/1196
  43701. },
  43702. form: "labrador",
  43703. default: true
  43704. },
  43705. skunkFront: {
  43706. height: math.unit(4 + 6/12, "feet"),
  43707. weight: math.unit(120, "lb"),
  43708. name: "Front",
  43709. image: {
  43710. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43711. extra: 1609/1551,
  43712. bottom: 169/1778
  43713. },
  43714. form: "skunk",
  43715. default: true
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(6 + 6/12, "feet"),
  43722. form: "labrador",
  43723. default: true
  43724. },
  43725. {
  43726. name: "Normal",
  43727. height: math.unit(4 + 6/12, "feet"),
  43728. form: "skunk",
  43729. default: true
  43730. },
  43731. ],
  43732. {
  43733. "labrador": {
  43734. name: "Labrador",
  43735. default: true
  43736. },
  43737. "skunk": {
  43738. name: "Skunk"
  43739. }
  43740. }
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43744. {
  43745. front: {
  43746. height: math.unit(5 + 11/12, "feet"),
  43747. weight: math.unit(190, "lb"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/mizu/front.svg",
  43751. extra: 1988/1788,
  43752. bottom: 14/2002
  43753. }
  43754. },
  43755. },
  43756. [
  43757. {
  43758. name: "Normal",
  43759. height: math.unit(5 + 11/12, "feet"),
  43760. default: true
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43766. {
  43767. front: {
  43768. height: math.unit(1.7, "feet"),
  43769. weight: math.unit(50, "lb"),
  43770. name: "Front",
  43771. image: {
  43772. source: "./media/characters/dechroma/front.svg",
  43773. extra: 1095/859,
  43774. bottom: 64/1159
  43775. }
  43776. },
  43777. },
  43778. [
  43779. {
  43780. name: "Normal",
  43781. height: math.unit(1.7, "feet"),
  43782. default: true
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43788. {
  43789. side: {
  43790. height: math.unit(30, "feet"),
  43791. name: "Side",
  43792. image: {
  43793. source: "./media/characters/veluren-thanazel/side.svg",
  43794. extra: 1611/633,
  43795. bottom: 118/1729
  43796. }
  43797. },
  43798. front: {
  43799. height: math.unit(30, "feet"),
  43800. name: "Front",
  43801. image: {
  43802. source: "./media/characters/veluren-thanazel/front.svg",
  43803. extra: 1486/636,
  43804. bottom: 238/1724
  43805. }
  43806. },
  43807. head: {
  43808. height: math.unit(21.4, "feet"),
  43809. name: "Head",
  43810. image: {
  43811. source: "./media/characters/veluren-thanazel/head.svg"
  43812. }
  43813. },
  43814. genitals: {
  43815. height: math.unit(19.4, "feet"),
  43816. name: "Genitals",
  43817. image: {
  43818. source: "./media/characters/veluren-thanazel/genitals.svg"
  43819. }
  43820. },
  43821. },
  43822. [
  43823. {
  43824. name: "Social",
  43825. height: math.unit(6, "feet")
  43826. },
  43827. {
  43828. name: "Play",
  43829. height: math.unit(12, "feet")
  43830. },
  43831. {
  43832. name: "True",
  43833. height: math.unit(30, "feet"),
  43834. default: true
  43835. },
  43836. ]
  43837. ))
  43838. characterMakers.push(() => makeCharacter(
  43839. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43840. {
  43841. front: {
  43842. height: math.unit(7 + 6/12, "feet"),
  43843. weight: math.unit(500, "kg"),
  43844. name: "Front",
  43845. image: {
  43846. source: "./media/characters/arcturas/front.svg",
  43847. extra: 1700/1500,
  43848. bottom: 145/1845
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(7 + 6/12, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43862. {
  43863. side: {
  43864. height: math.unit(6, "feet"),
  43865. weight: math.unit(2, "tons"),
  43866. name: "Side",
  43867. image: {
  43868. source: "./media/characters/vitaen/side.svg",
  43869. extra: 1157/617,
  43870. bottom: 122/1279
  43871. }
  43872. },
  43873. },
  43874. [
  43875. {
  43876. name: "Normal",
  43877. height: math.unit(6, "feet"),
  43878. default: true
  43879. },
  43880. ]
  43881. ))
  43882. characterMakers.push(() => makeCharacter(
  43883. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43884. {
  43885. front: {
  43886. height: math.unit(19, "feet"),
  43887. name: "Front",
  43888. image: {
  43889. source: "./media/characters/fia-dreamweaver/front.svg",
  43890. extra: 1630/1504,
  43891. bottom: 25/1655
  43892. }
  43893. },
  43894. },
  43895. [
  43896. {
  43897. name: "Normal",
  43898. height: math.unit(19, "feet"),
  43899. default: true
  43900. },
  43901. ]
  43902. ))
  43903. characterMakers.push(() => makeCharacter(
  43904. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43905. {
  43906. front: {
  43907. height: math.unit(5 + 4/12, "feet"),
  43908. name: "Front",
  43909. image: {
  43910. source: "./media/characters/artan/front.svg",
  43911. extra: 1618/1535,
  43912. bottom: 46/1664
  43913. }
  43914. },
  43915. back: {
  43916. height: math.unit(5 + 4/12, "feet"),
  43917. name: "Back",
  43918. image: {
  43919. source: "./media/characters/artan/back.svg",
  43920. extra: 1618/1543,
  43921. bottom: 31/1649
  43922. }
  43923. },
  43924. },
  43925. [
  43926. {
  43927. name: "Normal",
  43928. height: math.unit(5 + 4/12, "feet"),
  43929. default: true
  43930. },
  43931. ]
  43932. ))
  43933. characterMakers.push(() => makeCharacter(
  43934. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43935. {
  43936. side: {
  43937. height: math.unit(182, "cm"),
  43938. weight: math.unit(1000, "lb"),
  43939. name: "Side",
  43940. image: {
  43941. source: "./media/characters/silver-dragon/side.svg",
  43942. extra: 710/287,
  43943. bottom: 88/798
  43944. }
  43945. },
  43946. },
  43947. [
  43948. {
  43949. name: "Normal",
  43950. height: math.unit(182, "cm"),
  43951. default: true
  43952. },
  43953. ]
  43954. ))
  43955. characterMakers.push(() => makeCharacter(
  43956. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43957. {
  43958. side: {
  43959. height: math.unit(6 + 6/12, "feet"),
  43960. weight: math.unit(1.5, "tons"),
  43961. name: "Side",
  43962. image: {
  43963. source: "./media/characters/zephyr/side.svg",
  43964. extra: 1433/586,
  43965. bottom: 109/1542
  43966. }
  43967. },
  43968. },
  43969. [
  43970. {
  43971. name: "Normal",
  43972. height: math.unit(6 + 6/12, "feet"),
  43973. default: true
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43979. {
  43980. side: {
  43981. height: math.unit(1, "feet"),
  43982. name: "Side",
  43983. image: {
  43984. source: "./media/characters/vixye/side.svg",
  43985. extra: 632/541,
  43986. bottom: 0/632
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Normal",
  43993. height: math.unit(1, "feet"),
  43994. default: true
  43995. },
  43996. {
  43997. name: "True",
  43998. height: math.unit(1e15, "multiverses")
  43999. },
  44000. ]
  44001. ))
  44002. characterMakers.push(() => makeCharacter(
  44003. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44004. {
  44005. front: {
  44006. height: math.unit(8 + 2/12, "feet"),
  44007. weight: math.unit(650, "lb"),
  44008. name: "Front",
  44009. image: {
  44010. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44011. extra: 1174/1137,
  44012. bottom: 82/1256
  44013. }
  44014. },
  44015. back: {
  44016. height: math.unit(8 + 2/12, "feet"),
  44017. weight: math.unit(650, "lb"),
  44018. name: "Back",
  44019. image: {
  44020. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44021. extra: 1204/1157,
  44022. bottom: 46/1250
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Wildform",
  44029. height: math.unit(8 + 2/12, "feet"),
  44030. default: true
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(18, "feet"),
  44039. name: "Front",
  44040. image: {
  44041. source: "./media/characters/cyphin/front.svg",
  44042. extra: 970/886,
  44043. bottom: 42/1012
  44044. }
  44045. },
  44046. back: {
  44047. height: math.unit(18, "feet"),
  44048. name: "Back",
  44049. image: {
  44050. source: "./media/characters/cyphin/back.svg",
  44051. extra: 1009/894,
  44052. bottom: 24/1033
  44053. }
  44054. },
  44055. head: {
  44056. height: math.unit(5.05, "feet"),
  44057. name: "Head",
  44058. image: {
  44059. source: "./media/characters/cyphin/head.svg"
  44060. }
  44061. },
  44062. tailbud: {
  44063. height: math.unit(5, "feet"),
  44064. name: "Tailbud",
  44065. image: {
  44066. source: "./media/characters/cyphin/tailbud.svg"
  44067. }
  44068. },
  44069. },
  44070. [
  44071. ]
  44072. ))
  44073. characterMakers.push(() => makeCharacter(
  44074. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44075. {
  44076. side: {
  44077. height: math.unit(10, "feet"),
  44078. weight: math.unit(6, "tons"),
  44079. name: "Side",
  44080. image: {
  44081. source: "./media/characters/raijin/side.svg",
  44082. extra: 1529/613,
  44083. bottom: 337/1866
  44084. }
  44085. },
  44086. },
  44087. [
  44088. {
  44089. name: "Normal",
  44090. height: math.unit(10, "feet"),
  44091. default: true
  44092. },
  44093. ]
  44094. ))
  44095. characterMakers.push(() => makeCharacter(
  44096. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44097. {
  44098. side: {
  44099. height: math.unit(9, "feet"),
  44100. name: "Side",
  44101. image: {
  44102. source: "./media/characters/nilghais/side.svg",
  44103. extra: 1047/744,
  44104. bottom: 91/1138
  44105. }
  44106. },
  44107. head: {
  44108. height: math.unit(3.14, "feet"),
  44109. name: "Head",
  44110. image: {
  44111. source: "./media/characters/nilghais/head.svg"
  44112. }
  44113. },
  44114. mouth: {
  44115. height: math.unit(4.6, "feet"),
  44116. name: "Mouth",
  44117. image: {
  44118. source: "./media/characters/nilghais/mouth.svg"
  44119. }
  44120. },
  44121. wings: {
  44122. height: math.unit(24, "feet"),
  44123. name: "Wings",
  44124. image: {
  44125. source: "./media/characters/nilghais/wings.svg"
  44126. }
  44127. },
  44128. ass: {
  44129. height: math.unit(6.12, "feet"),
  44130. name: "Ass",
  44131. image: {
  44132. source: "./media/characters/nilghais/ass.svg"
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Normal",
  44139. height: math.unit(9, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44146. {
  44147. regular: {
  44148. height: math.unit(16 + 2/12, "feet"),
  44149. weight: math.unit(2300, "lb"),
  44150. name: "Regular",
  44151. image: {
  44152. source: "./media/characters/zolgar/regular.svg",
  44153. extra: 1246/1004,
  44154. bottom: 124/1370
  44155. }
  44156. },
  44157. boxers: {
  44158. height: math.unit(16 + 2/12, "feet"),
  44159. weight: math.unit(2300, "lb"),
  44160. name: "Boxers",
  44161. image: {
  44162. source: "./media/characters/zolgar/boxers.svg",
  44163. extra: 1246/1004,
  44164. bottom: 124/1370
  44165. }
  44166. },
  44167. armored: {
  44168. height: math.unit(16 + 2/12, "feet"),
  44169. weight: math.unit(2300, "lb"),
  44170. name: "Armored",
  44171. image: {
  44172. source: "./media/characters/zolgar/armored.svg",
  44173. extra: 1246/1004,
  44174. bottom: 124/1370
  44175. }
  44176. },
  44177. goth: {
  44178. height: math.unit(16 + 2/12, "feet"),
  44179. weight: math.unit(2300, "lb"),
  44180. name: "Goth",
  44181. image: {
  44182. source: "./media/characters/zolgar/goth.svg",
  44183. extra: 1246/1004,
  44184. bottom: 124/1370
  44185. }
  44186. },
  44187. },
  44188. [
  44189. {
  44190. name: "Shrunken Down",
  44191. height: math.unit(9 + 2/12, "feet")
  44192. },
  44193. {
  44194. name: "Normal",
  44195. height: math.unit(16 + 2/12, "feet"),
  44196. default: true
  44197. },
  44198. ]
  44199. ))
  44200. characterMakers.push(() => makeCharacter(
  44201. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44202. {
  44203. front: {
  44204. height: math.unit(6, "feet"),
  44205. weight: math.unit(168, "lb"),
  44206. name: "Front",
  44207. image: {
  44208. source: "./media/characters/luca/front.svg",
  44209. extra: 841/667,
  44210. bottom: 102/943
  44211. }
  44212. },
  44213. },
  44214. [
  44215. {
  44216. name: "Normal",
  44217. height: math.unit(6, "feet"),
  44218. default: true
  44219. },
  44220. ]
  44221. ))
  44222. characterMakers.push(() => makeCharacter(
  44223. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44224. {
  44225. side: {
  44226. height: math.unit(7 + 3/12, "feet"),
  44227. weight: math.unit(312, "lb"),
  44228. name: "Side",
  44229. image: {
  44230. source: "./media/characters/zezo/side.svg",
  44231. extra: 1192/1067,
  44232. bottom: 63/1255
  44233. }
  44234. },
  44235. },
  44236. [
  44237. {
  44238. name: "Normal",
  44239. height: math.unit(7 + 3/12, "feet"),
  44240. default: true
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(5 + 5/12, "feet"),
  44249. weight: math.unit(170, "lb"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/mayso/front.svg",
  44253. extra: 1215/1108,
  44254. bottom: 16/1231
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(5 + 5/12, "feet"),
  44262. default: true
  44263. },
  44264. ]
  44265. ))
  44266. characterMakers.push(() => makeCharacter(
  44267. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44268. {
  44269. front: {
  44270. height: math.unit(4 + 3/12, "feet"),
  44271. weight: math.unit(80, "lb"),
  44272. name: "Front",
  44273. image: {
  44274. source: "./media/characters/hess/front.svg",
  44275. extra: 1200/1123,
  44276. bottom: 16/1216
  44277. }
  44278. },
  44279. },
  44280. [
  44281. {
  44282. name: "Normal",
  44283. height: math.unit(4 + 3/12, "feet"),
  44284. default: true
  44285. },
  44286. ]
  44287. ))
  44288. characterMakers.push(() => makeCharacter(
  44289. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44290. {
  44291. front: {
  44292. height: math.unit(1.9, "meters"),
  44293. name: "Front",
  44294. image: {
  44295. source: "./media/characters/ashgar/front.svg",
  44296. extra: 1177/1146,
  44297. bottom: 99/1276
  44298. }
  44299. },
  44300. back: {
  44301. height: math.unit(1.9, "meters"),
  44302. name: "Back",
  44303. image: {
  44304. source: "./media/characters/ashgar/back.svg",
  44305. extra: 1201/1183,
  44306. bottom: 53/1254
  44307. }
  44308. },
  44309. feral: {
  44310. height: math.unit(1.4, "meters"),
  44311. name: "Feral",
  44312. image: {
  44313. source: "./media/characters/ashgar/feral.svg",
  44314. extra: 370/345,
  44315. bottom: 45/415
  44316. }
  44317. },
  44318. },
  44319. [
  44320. {
  44321. name: "Normal",
  44322. height: math.unit(1.9, "meters"),
  44323. default: true
  44324. },
  44325. ]
  44326. ))
  44327. characterMakers.push(() => makeCharacter(
  44328. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44329. {
  44330. regular: {
  44331. height: math.unit(6, "feet"),
  44332. weight: math.unit(220, "lb"),
  44333. name: "Regular",
  44334. image: {
  44335. source: "./media/characters/phillip/regular.svg",
  44336. extra: 1373/1277,
  44337. bottom: 75/1448
  44338. }
  44339. },
  44340. dressed: {
  44341. height: math.unit(6, "feet"),
  44342. weight: math.unit(220, "lb"),
  44343. name: "Dressed",
  44344. image: {
  44345. source: "./media/characters/phillip/dressed.svg",
  44346. extra: 1373/1277,
  44347. bottom: 75/1448
  44348. }
  44349. },
  44350. paw: {
  44351. height: math.unit(1.44, "feet"),
  44352. name: "Paw",
  44353. image: {
  44354. source: "./media/characters/phillip/paw.svg"
  44355. }
  44356. },
  44357. },
  44358. [
  44359. {
  44360. name: "Normal",
  44361. height: math.unit(6, "feet"),
  44362. default: true
  44363. },
  44364. ]
  44365. ))
  44366. characterMakers.push(() => makeCharacter(
  44367. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44368. {
  44369. side: {
  44370. height: math.unit(42, "feet"),
  44371. name: "Side",
  44372. image: {
  44373. source: "./media/characters/uvula/side.svg",
  44374. extra: 683/586,
  44375. bottom: 60/743
  44376. }
  44377. },
  44378. front: {
  44379. height: math.unit(42, "feet"),
  44380. name: "Front",
  44381. image: {
  44382. source: "./media/characters/uvula/front.svg",
  44383. extra: 705/613,
  44384. bottom: 54/759
  44385. }
  44386. },
  44387. maw: {
  44388. height: math.unit(23.5, "feet"),
  44389. name: "Maw",
  44390. image: {
  44391. source: "./media/characters/uvula/maw.svg"
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Original Size",
  44398. height: math.unit(14, "inches")
  44399. },
  44400. {
  44401. name: "Human Size",
  44402. height: math.unit(6, "feet")
  44403. },
  44404. {
  44405. name: "Big",
  44406. height: math.unit(42, "feet"),
  44407. default: true
  44408. },
  44409. {
  44410. name: "Bigger",
  44411. height: math.unit(100, "feet")
  44412. },
  44413. ]
  44414. ))
  44415. characterMakers.push(() => makeCharacter(
  44416. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44417. {
  44418. front: {
  44419. height: math.unit(5 + 11/12, "feet"),
  44420. name: "Front",
  44421. image: {
  44422. source: "./media/characters/lannah/front.svg",
  44423. extra: 1208/1113,
  44424. bottom: 97/1305
  44425. }
  44426. },
  44427. },
  44428. [
  44429. {
  44430. name: "Normal",
  44431. height: math.unit(5 + 11/12, "feet"),
  44432. default: true
  44433. },
  44434. ]
  44435. ))
  44436. characterMakers.push(() => makeCharacter(
  44437. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44438. {
  44439. front: {
  44440. height: math.unit(6 + 3/12, "feet"),
  44441. weight: math.unit(3.5, "tons"),
  44442. name: "Front",
  44443. image: {
  44444. source: "./media/characters/emberflame/front.svg",
  44445. extra: 1198/672,
  44446. bottom: 82/1280
  44447. }
  44448. },
  44449. side: {
  44450. height: math.unit(6 + 3/12, "feet"),
  44451. weight: math.unit(3.5, "tons"),
  44452. name: "Side",
  44453. image: {
  44454. source: "./media/characters/emberflame/side.svg",
  44455. extra: 938/527,
  44456. bottom: 56/994
  44457. }
  44458. },
  44459. },
  44460. [
  44461. {
  44462. name: "Normal",
  44463. height: math.unit(6 + 3/12, "feet"),
  44464. default: true
  44465. },
  44466. ]
  44467. ))
  44468. characterMakers.push(() => makeCharacter(
  44469. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44470. {
  44471. side: {
  44472. height: math.unit(17.5, "feet"),
  44473. weight: math.unit(35, "tons"),
  44474. name: "Side",
  44475. image: {
  44476. source: "./media/characters/sophie-ambrose/side.svg",
  44477. extra: 1573/1242,
  44478. bottom: 71/1644
  44479. }
  44480. },
  44481. maw: {
  44482. height: math.unit(7.4, "feet"),
  44483. name: "Maw",
  44484. image: {
  44485. source: "./media/characters/sophie-ambrose/maw.svg"
  44486. }
  44487. },
  44488. },
  44489. [
  44490. {
  44491. name: "Normal",
  44492. height: math.unit(17.5, "feet"),
  44493. default: true
  44494. },
  44495. ]
  44496. ))
  44497. characterMakers.push(() => makeCharacter(
  44498. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44499. {
  44500. front: {
  44501. height: math.unit(280, "feet"),
  44502. weight: math.unit(550, "tons"),
  44503. name: "Front",
  44504. image: {
  44505. source: "./media/characters/king-mugi/front.svg",
  44506. extra: 1102/947,
  44507. bottom: 104/1206
  44508. }
  44509. },
  44510. },
  44511. [
  44512. {
  44513. name: "King Mugi",
  44514. height: math.unit(280, "feet"),
  44515. default: true
  44516. },
  44517. ]
  44518. ))
  44519. characterMakers.push(() => makeCharacter(
  44520. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44521. {
  44522. front: {
  44523. height: math.unit(64, "meters"),
  44524. name: "Front",
  44525. image: {
  44526. source: "./media/characters/nova-fox/front.svg",
  44527. extra: 1310/1246,
  44528. bottom: 65/1375
  44529. }
  44530. },
  44531. },
  44532. [
  44533. {
  44534. name: "Macro",
  44535. height: math.unit(64, "meters"),
  44536. default: true
  44537. },
  44538. ]
  44539. ))
  44540. characterMakers.push(() => makeCharacter(
  44541. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44542. {
  44543. front: {
  44544. height: math.unit(6 + 3/12, "feet"),
  44545. weight: math.unit(170, "lb"),
  44546. name: "Front",
  44547. image: {
  44548. source: "./media/characters/sam-bat/front.svg",
  44549. extra: 1601/1411,
  44550. bottom: 125/1726
  44551. }
  44552. },
  44553. back: {
  44554. height: math.unit(6 + 3/12, "feet"),
  44555. weight: math.unit(170, "lb"),
  44556. name: "Back",
  44557. image: {
  44558. source: "./media/characters/sam-bat/back.svg",
  44559. extra: 1577/1405,
  44560. bottom: 58/1635
  44561. }
  44562. },
  44563. },
  44564. [
  44565. {
  44566. name: "Normal",
  44567. height: math.unit(6 + 3/12, "feet"),
  44568. default: true
  44569. },
  44570. ]
  44571. ))
  44572. characterMakers.push(() => makeCharacter(
  44573. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44574. {
  44575. front: {
  44576. height: math.unit(59, "feet"),
  44577. weight: math.unit(40000, "lb"),
  44578. name: "Front",
  44579. image: {
  44580. source: "./media/characters/inari/front.svg",
  44581. extra: 1884/1350,
  44582. bottom: 95/1979
  44583. }
  44584. },
  44585. },
  44586. [
  44587. {
  44588. name: "Gigantamax",
  44589. height: math.unit(59, "feet"),
  44590. default: true
  44591. },
  44592. ]
  44593. ))
  44594. characterMakers.push(() => makeCharacter(
  44595. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44596. {
  44597. front: {
  44598. height: math.unit(5 + 8/12, "feet"),
  44599. name: "Front",
  44600. image: {
  44601. source: "./media/characters/elizabeth/front.svg",
  44602. extra: 1395/1298,
  44603. bottom: 54/1449
  44604. }
  44605. },
  44606. mouth: {
  44607. height: math.unit(1.97, "feet"),
  44608. name: "Mouth",
  44609. image: {
  44610. source: "./media/characters/elizabeth/mouth.svg"
  44611. }
  44612. },
  44613. foot: {
  44614. height: math.unit(1.17, "feet"),
  44615. name: "Foot",
  44616. image: {
  44617. source: "./media/characters/elizabeth/foot.svg"
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(5 + 8/12, "feet"),
  44625. default: true
  44626. },
  44627. {
  44628. name: "Minimacro",
  44629. height: math.unit(18, "feet")
  44630. },
  44631. {
  44632. name: "Macro",
  44633. height: math.unit(180, "feet")
  44634. },
  44635. ]
  44636. ))
  44637. characterMakers.push(() => makeCharacter(
  44638. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44639. {
  44640. front: {
  44641. height: math.unit(5 + 2/12, "feet"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/october-gossamer/front.svg",
  44645. extra: 505/454,
  44646. bottom: 7/512
  44647. }
  44648. },
  44649. back: {
  44650. height: math.unit(5 + 2/12, "feet"),
  44651. name: "Back",
  44652. image: {
  44653. source: "./media/characters/october-gossamer/back.svg",
  44654. extra: 501/454,
  44655. bottom: 11/512
  44656. }
  44657. },
  44658. },
  44659. [
  44660. {
  44661. name: "Normal",
  44662. height: math.unit(5 + 2/12, "feet"),
  44663. default: true
  44664. },
  44665. ]
  44666. ))
  44667. characterMakers.push(() => makeCharacter(
  44668. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44669. {
  44670. front: {
  44671. height: math.unit(5, "feet"),
  44672. name: "Front",
  44673. image: {
  44674. source: "./media/characters/epiglottis/front.svg",
  44675. extra: 923/849,
  44676. bottom: 17/940
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Original Size",
  44683. height: math.unit(10, "inches")
  44684. },
  44685. {
  44686. name: "Human Size",
  44687. height: math.unit(5, "feet"),
  44688. default: true
  44689. },
  44690. {
  44691. name: "Big",
  44692. height: math.unit(25, "feet")
  44693. },
  44694. {
  44695. name: "Bigger",
  44696. height: math.unit(50, "feet")
  44697. },
  44698. {
  44699. name: "oh lawd",
  44700. height: math.unit(75, "feet")
  44701. },
  44702. ]
  44703. ))
  44704. characterMakers.push(() => makeCharacter(
  44705. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44706. {
  44707. front: {
  44708. height: math.unit(2 + 4/12, "feet"),
  44709. weight: math.unit(60, "lb"),
  44710. name: "Front",
  44711. image: {
  44712. source: "./media/characters/lerm/front.svg",
  44713. extra: 796/790,
  44714. bottom: 79/875
  44715. }
  44716. },
  44717. },
  44718. [
  44719. {
  44720. name: "Normal",
  44721. height: math.unit(2 + 4/12, "feet"),
  44722. default: true
  44723. },
  44724. ]
  44725. ))
  44726. characterMakers.push(() => makeCharacter(
  44727. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44728. {
  44729. front: {
  44730. height: math.unit(5.5, "feet"),
  44731. weight: math.unit(130, "lb"),
  44732. name: "Front",
  44733. image: {
  44734. source: "./media/characters/xena-nebadon/front.svg",
  44735. extra: 1828/1730,
  44736. bottom: 79/1907
  44737. }
  44738. },
  44739. },
  44740. [
  44741. {
  44742. name: "Tiny Puppy",
  44743. height: math.unit(3, "inches")
  44744. },
  44745. {
  44746. name: "Normal",
  44747. height: math.unit(5.5, "feet"),
  44748. default: true
  44749. },
  44750. {
  44751. name: "Lotta Lady",
  44752. height: math.unit(12, "feet")
  44753. },
  44754. {
  44755. name: "Pretty Big",
  44756. height: math.unit(100, "feet")
  44757. },
  44758. {
  44759. name: "Big",
  44760. height: math.unit(500, "feet")
  44761. },
  44762. {
  44763. name: "Skyscraper Toys",
  44764. height: math.unit(2500, "feet")
  44765. },
  44766. {
  44767. name: "Plane Catcher",
  44768. height: math.unit(8, "miles")
  44769. },
  44770. {
  44771. name: "Planet Toys",
  44772. height: math.unit(15, "earths")
  44773. },
  44774. {
  44775. name: "Stardust",
  44776. height: math.unit(0.25, "galaxies")
  44777. },
  44778. {
  44779. name: "Snacks",
  44780. height: math.unit(70, "universes")
  44781. },
  44782. ]
  44783. ))
  44784. characterMakers.push(() => makeCharacter(
  44785. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44786. {
  44787. front: {
  44788. height: math.unit(1.6, "meters"),
  44789. weight: math.unit(60, "kg"),
  44790. name: "Front",
  44791. image: {
  44792. source: "./media/characters/bounty/front.svg",
  44793. extra: 1426/1308,
  44794. bottom: 15/1441
  44795. }
  44796. },
  44797. back: {
  44798. height: math.unit(1.6, "meters"),
  44799. weight: math.unit(60, "kg"),
  44800. name: "Back",
  44801. image: {
  44802. source: "./media/characters/bounty/back.svg",
  44803. extra: 1417/1307,
  44804. bottom: 8/1425
  44805. }
  44806. },
  44807. },
  44808. [
  44809. {
  44810. name: "Normal",
  44811. height: math.unit(1.6, "meters"),
  44812. default: true
  44813. },
  44814. {
  44815. name: "Macro",
  44816. height: math.unit(300, "meters")
  44817. },
  44818. ]
  44819. ))
  44820. characterMakers.push(() => makeCharacter(
  44821. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44822. {
  44823. front: {
  44824. height: math.unit(2 + 8/12, "feet"),
  44825. weight: math.unit(15, "lb"),
  44826. name: "Front",
  44827. image: {
  44828. source: "./media/characters/mochi/front.svg",
  44829. extra: 1022/852,
  44830. bottom: 435/1457
  44831. }
  44832. },
  44833. back: {
  44834. height: math.unit(2 + 8/12, "feet"),
  44835. weight: math.unit(15, "lb"),
  44836. name: "Back",
  44837. image: {
  44838. source: "./media/characters/mochi/back.svg",
  44839. extra: 1335/1119,
  44840. bottom: 39/1374
  44841. }
  44842. },
  44843. bird: {
  44844. height: math.unit(2 + 8/12, "feet"),
  44845. weight: math.unit(15, "lb"),
  44846. name: "Bird",
  44847. image: {
  44848. source: "./media/characters/mochi/bird.svg",
  44849. extra: 1251/1113,
  44850. bottom: 178/1429
  44851. }
  44852. },
  44853. kaiju: {
  44854. height: math.unit(154, "feet"),
  44855. weight: math.unit(1e7, "lb"),
  44856. name: "Kaiju",
  44857. image: {
  44858. source: "./media/characters/mochi/kaiju.svg",
  44859. extra: 460/324,
  44860. bottom: 40/500
  44861. }
  44862. },
  44863. head: {
  44864. height: math.unit(1.21, "feet"),
  44865. name: "Head",
  44866. image: {
  44867. source: "./media/characters/mochi/head.svg"
  44868. }
  44869. },
  44870. alternateTail: {
  44871. height: math.unit(2 + 8/12, "feet"),
  44872. weight: math.unit(45, "lb"),
  44873. name: "Alternate Tail",
  44874. image: {
  44875. source: "./media/characters/mochi/alternate-tail.svg",
  44876. extra: 139/76,
  44877. bottom: 45/184
  44878. }
  44879. },
  44880. },
  44881. [
  44882. {
  44883. name: "Micro",
  44884. height: math.unit(2, "inches")
  44885. },
  44886. {
  44887. name: "Normal",
  44888. height: math.unit(2 + 8/12, "feet"),
  44889. default: true
  44890. },
  44891. {
  44892. name: "Macro",
  44893. height: math.unit(106, "feet")
  44894. },
  44895. ]
  44896. ))
  44897. characterMakers.push(() => makeCharacter(
  44898. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44899. {
  44900. front: {
  44901. height: math.unit(5.67, "feet"),
  44902. weight: math.unit(135, "lb"),
  44903. name: "Front",
  44904. image: {
  44905. source: "./media/characters/sarel/front.svg",
  44906. extra: 865/788,
  44907. bottom: 97/962
  44908. }
  44909. },
  44910. back: {
  44911. height: math.unit(5.67, "feet"),
  44912. weight: math.unit(135, "lb"),
  44913. name: "Back",
  44914. image: {
  44915. source: "./media/characters/sarel/back.svg",
  44916. extra: 857/777,
  44917. bottom: 32/889
  44918. }
  44919. },
  44920. chozoan: {
  44921. height: math.unit(5.67, "feet"),
  44922. weight: math.unit(135, "lb"),
  44923. name: "Chozoan",
  44924. image: {
  44925. source: "./media/characters/sarel/chozoan.svg",
  44926. extra: 865/788,
  44927. bottom: 97/962
  44928. }
  44929. },
  44930. current: {
  44931. height: math.unit(5.67, "feet"),
  44932. weight: math.unit(135, "lb"),
  44933. name: "Current",
  44934. image: {
  44935. source: "./media/characters/sarel/current.svg",
  44936. extra: 865/788,
  44937. bottom: 97/962
  44938. }
  44939. },
  44940. head: {
  44941. height: math.unit(1.77, "feet"),
  44942. name: "Head",
  44943. image: {
  44944. source: "./media/characters/sarel/head.svg"
  44945. }
  44946. },
  44947. claws: {
  44948. height: math.unit(1.8, "feet"),
  44949. name: "Claws",
  44950. image: {
  44951. source: "./media/characters/sarel/claws.svg"
  44952. }
  44953. },
  44954. clawsAlt: {
  44955. height: math.unit(1.8, "feet"),
  44956. name: "Claws-alt",
  44957. image: {
  44958. source: "./media/characters/sarel/claws-alt.svg"
  44959. }
  44960. },
  44961. },
  44962. [
  44963. {
  44964. name: "Normal",
  44965. height: math.unit(5.67, "feet"),
  44966. default: true
  44967. },
  44968. ]
  44969. ))
  44970. characterMakers.push(() => makeCharacter(
  44971. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44972. {
  44973. front: {
  44974. height: math.unit(5500, "feet"),
  44975. name: "Front",
  44976. image: {
  44977. source: "./media/characters/alyonia/front.svg",
  44978. extra: 1200/1135,
  44979. bottom: 29/1229
  44980. }
  44981. },
  44982. back: {
  44983. height: math.unit(5500, "feet"),
  44984. name: "Back",
  44985. image: {
  44986. source: "./media/characters/alyonia/back.svg",
  44987. extra: 1205/1138,
  44988. bottom: 10/1215
  44989. }
  44990. },
  44991. },
  44992. [
  44993. {
  44994. name: "Small",
  44995. height: math.unit(10, "feet")
  44996. },
  44997. {
  44998. name: "Macro",
  44999. height: math.unit(500, "feet")
  45000. },
  45001. {
  45002. name: "Mega Macro",
  45003. height: math.unit(5500, "feet"),
  45004. default: true
  45005. },
  45006. {
  45007. name: "Mega Macro+",
  45008. height: math.unit(500000, "feet")
  45009. },
  45010. {
  45011. name: "Giga Macro",
  45012. height: math.unit(3000, "miles")
  45013. },
  45014. {
  45015. name: "Tera Macro",
  45016. height: math.unit(2.8e6, "miles")
  45017. },
  45018. {
  45019. name: "Galactic",
  45020. height: math.unit(120000, "lightyears")
  45021. },
  45022. ]
  45023. ))
  45024. characterMakers.push(() => makeCharacter(
  45025. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45026. {
  45027. werewolf: {
  45028. height: math.unit(8, "feet"),
  45029. weight: math.unit(425, "lb"),
  45030. name: "Werewolf",
  45031. image: {
  45032. source: "./media/characters/autumn/werewolf.svg",
  45033. extra: 2154/2031,
  45034. bottom: 160/2314
  45035. }
  45036. },
  45037. human: {
  45038. height: math.unit(5 + 8/12, "feet"),
  45039. weight: math.unit(150, "lb"),
  45040. name: "Human",
  45041. image: {
  45042. source: "./media/characters/autumn/human.svg",
  45043. extra: 1200/1149,
  45044. bottom: 30/1230
  45045. }
  45046. },
  45047. },
  45048. [
  45049. {
  45050. name: "Normal",
  45051. height: math.unit(8, "feet"),
  45052. default: true
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(8 + 5/12, "feet"),
  45061. weight: math.unit(825, "lb"),
  45062. name: "Front",
  45063. image: {
  45064. source: "./media/characters/cobalt-charizard/front.svg",
  45065. extra: 1268/1155,
  45066. bottom: 122/1390
  45067. }
  45068. },
  45069. side: {
  45070. height: math.unit(8 + 5/12, "feet"),
  45071. weight: math.unit(825, "lb"),
  45072. name: "Side",
  45073. image: {
  45074. source: "./media/characters/cobalt-charizard/side.svg",
  45075. extra: 1348/1257,
  45076. bottom: 58/1406
  45077. }
  45078. },
  45079. gMax: {
  45080. height: math.unit(134 + 11/12, "feet"),
  45081. name: "G-Max",
  45082. image: {
  45083. source: "./media/characters/cobalt-charizard/g-max.svg",
  45084. extra: 1835/1541,
  45085. bottom: 151/1986
  45086. }
  45087. },
  45088. },
  45089. [
  45090. {
  45091. name: "Normal",
  45092. height: math.unit(8 + 5/12, "feet"),
  45093. default: true
  45094. },
  45095. ]
  45096. ))
  45097. characterMakers.push(() => makeCharacter(
  45098. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45099. {
  45100. front: {
  45101. height: math.unit(6 + 3/12, "feet"),
  45102. weight: math.unit(210, "lb"),
  45103. name: "Front",
  45104. image: {
  45105. source: "./media/characters/stella/front.svg",
  45106. extra: 3549/3335,
  45107. bottom: 51/3600
  45108. }
  45109. },
  45110. },
  45111. [
  45112. {
  45113. name: "Normal",
  45114. height: math.unit(6 + 3/12, "feet"),
  45115. default: true
  45116. },
  45117. ]
  45118. ))
  45119. characterMakers.push(() => makeCharacter(
  45120. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45121. {
  45122. front: {
  45123. height: math.unit(5, "feet"),
  45124. weight: math.unit(90, "lb"),
  45125. name: "Front",
  45126. image: {
  45127. source: "./media/characters/riley-bishop/front.svg",
  45128. extra: 1450/1428,
  45129. bottom: 152/1602
  45130. }
  45131. },
  45132. },
  45133. [
  45134. {
  45135. name: "Normal",
  45136. height: math.unit(5, "feet"),
  45137. default: true
  45138. },
  45139. ]
  45140. ))
  45141. characterMakers.push(() => makeCharacter(
  45142. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45143. {
  45144. side: {
  45145. height: math.unit(8 + 2/12, "feet"),
  45146. weight: math.unit(500, "kg"),
  45147. name: "Side",
  45148. image: {
  45149. source: "./media/characters/theo-arcanine/side.svg",
  45150. extra: 1342/1074,
  45151. bottom: 111/1453
  45152. }
  45153. },
  45154. },
  45155. [
  45156. {
  45157. name: "Normal",
  45158. height: math.unit(8 + 2/12, "feet"),
  45159. default: true
  45160. },
  45161. ]
  45162. ))
  45163. characterMakers.push(() => makeCharacter(
  45164. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45165. {
  45166. front: {
  45167. height: math.unit(4, "feet"),
  45168. name: "Front",
  45169. image: {
  45170. source: "./media/characters/kali/front.svg",
  45171. extra: 1921/1357,
  45172. bottom: 70/1991
  45173. }
  45174. },
  45175. },
  45176. [
  45177. {
  45178. name: "Normal",
  45179. height: math.unit(4, "feet"),
  45180. default: true
  45181. },
  45182. {
  45183. name: "Macro",
  45184. height: math.unit(32, "meters")
  45185. },
  45186. {
  45187. name: "Macro+",
  45188. height: math.unit(150, "meters")
  45189. },
  45190. {
  45191. name: "Megamacro",
  45192. height: math.unit(7500, "meters")
  45193. },
  45194. {
  45195. name: "Megamacro+",
  45196. height: math.unit(80, "kilometers")
  45197. },
  45198. ]
  45199. ))
  45200. characterMakers.push(() => makeCharacter(
  45201. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45202. {
  45203. side: {
  45204. height: math.unit(5 + 11/12, "feet"),
  45205. weight: math.unit(236, "lb"),
  45206. name: "Side",
  45207. image: {
  45208. source: "./media/characters/gapp/side.svg",
  45209. extra: 775/340,
  45210. bottom: 58/833
  45211. }
  45212. },
  45213. mouth: {
  45214. height: math.unit(2.98, "feet"),
  45215. name: "Mouth",
  45216. image: {
  45217. source: "./media/characters/gapp/mouth.svg"
  45218. }
  45219. },
  45220. },
  45221. [
  45222. {
  45223. name: "Normal",
  45224. height: math.unit(5 + 1/12, "feet"),
  45225. default: true
  45226. },
  45227. ]
  45228. ))
  45229. characterMakers.push(() => makeCharacter(
  45230. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45231. {
  45232. front: {
  45233. height: math.unit(6, "feet"),
  45234. name: "Front",
  45235. image: {
  45236. source: "./media/characters/persephone/front.svg",
  45237. extra: 1895/1717,
  45238. bottom: 96/1991
  45239. }
  45240. },
  45241. back: {
  45242. height: math.unit(6, "feet"),
  45243. name: "Back",
  45244. image: {
  45245. source: "./media/characters/persephone/back.svg",
  45246. extra: 1868/1679,
  45247. bottom: 26/1894
  45248. }
  45249. },
  45250. casual: {
  45251. height: math.unit(6, "feet"),
  45252. name: "Casual",
  45253. image: {
  45254. source: "./media/characters/persephone/casual.svg",
  45255. extra: 1713/1541,
  45256. bottom: 76/1789
  45257. }
  45258. },
  45259. },
  45260. [
  45261. {
  45262. name: "Human Size",
  45263. height: math.unit(6, "feet")
  45264. },
  45265. {
  45266. name: "Big Steppy",
  45267. height: math.unit(600, "meters"),
  45268. default: true
  45269. },
  45270. {
  45271. name: "Galaxy Brain",
  45272. height: math.unit(1, "zettameter")
  45273. },
  45274. ]
  45275. ))
  45276. characterMakers.push(() => makeCharacter(
  45277. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45278. {
  45279. front: {
  45280. height: math.unit(1.85, "meters"),
  45281. name: "Front",
  45282. image: {
  45283. source: "./media/characters/riley-foxthing/front.svg",
  45284. extra: 1495/1354,
  45285. bottom: 122/1617
  45286. }
  45287. },
  45288. frontAlt: {
  45289. height: math.unit(1.85, "meters"),
  45290. name: "Front (Alt)",
  45291. image: {
  45292. source: "./media/characters/riley-foxthing/front-alt.svg",
  45293. extra: 1572/1389,
  45294. bottom: 116/1688
  45295. }
  45296. },
  45297. },
  45298. [
  45299. {
  45300. name: "Normal Sized",
  45301. height: math.unit(1.85, "meters"),
  45302. default: true
  45303. },
  45304. {
  45305. name: "Quite Sizable",
  45306. height: math.unit(5, "meters")
  45307. },
  45308. {
  45309. name: "Rather Large",
  45310. height: math.unit(20, "meters")
  45311. },
  45312. {
  45313. name: "Macro",
  45314. height: math.unit(450, "meters")
  45315. },
  45316. {
  45317. name: "Giga",
  45318. height: math.unit(5, "km")
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45324. {
  45325. front: {
  45326. height: math.unit(6, "feet"),
  45327. weight: math.unit(200, "lb"),
  45328. name: "Front",
  45329. image: {
  45330. source: "./media/characters/blizzard/front.svg",
  45331. extra: 1136/990,
  45332. bottom: 136/1272
  45333. }
  45334. },
  45335. back: {
  45336. height: math.unit(6, "feet"),
  45337. weight: math.unit(200, "lb"),
  45338. name: "Back",
  45339. image: {
  45340. source: "./media/characters/blizzard/back.svg",
  45341. extra: 1175/1034,
  45342. bottom: 97/1272
  45343. }
  45344. },
  45345. sitting: {
  45346. height: math.unit(3.725, "feet"),
  45347. weight: math.unit(200, "lb"),
  45348. name: "Sitting",
  45349. image: {
  45350. source: "./media/characters/blizzard/sitting.svg",
  45351. extra: 581/485,
  45352. bottom: 90/671
  45353. }
  45354. },
  45355. frontWizard: {
  45356. height: math.unit(7.9, "feet"),
  45357. weight: math.unit(200, "lb"),
  45358. name: "Front (Wizard)",
  45359. image: {
  45360. source: "./media/characters/blizzard/front-wizard.svg"
  45361. }
  45362. },
  45363. backWizard: {
  45364. height: math.unit(7.9, "feet"),
  45365. weight: math.unit(200, "lb"),
  45366. name: "Back (Wizard)",
  45367. image: {
  45368. source: "./media/characters/blizzard/back-wizard.svg"
  45369. }
  45370. },
  45371. frontNsfw: {
  45372. height: math.unit(6, "feet"),
  45373. weight: math.unit(200, "lb"),
  45374. name: "Front (NSFW)",
  45375. image: {
  45376. source: "./media/characters/blizzard/front-nsfw.svg",
  45377. extra: 1136/990,
  45378. bottom: 136/1272
  45379. }
  45380. },
  45381. backNsfw: {
  45382. height: math.unit(6, "feet"),
  45383. weight: math.unit(200, "lb"),
  45384. name: "Back (NSFW)",
  45385. image: {
  45386. source: "./media/characters/blizzard/back-nsfw.svg",
  45387. extra: 1175/1034,
  45388. bottom: 97/1272
  45389. }
  45390. },
  45391. sittingNsfw: {
  45392. height: math.unit(3.725, "feet"),
  45393. weight: math.unit(200, "lb"),
  45394. name: "Sitting (NSFW)",
  45395. image: {
  45396. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45397. extra: 581/485,
  45398. bottom: 90/671
  45399. }
  45400. },
  45401. wizardFrontNsfw: {
  45402. height: math.unit(7.9, "feet"),
  45403. weight: math.unit(200, "lb"),
  45404. name: "Wizard (Front, NSFW)",
  45405. image: {
  45406. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45407. }
  45408. },
  45409. },
  45410. [
  45411. {
  45412. name: "Normal",
  45413. height: math.unit(6, "feet"),
  45414. default: true
  45415. },
  45416. ]
  45417. ))
  45418. characterMakers.push(() => makeCharacter(
  45419. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45420. {
  45421. front: {
  45422. height: math.unit(5 + 2/12, "feet"),
  45423. name: "Front",
  45424. image: {
  45425. source: "./media/characters/lumi/front.svg",
  45426. extra: 1328/1268,
  45427. bottom: 103/1431
  45428. }
  45429. },
  45430. back: {
  45431. height: math.unit(5 + 2/12, "feet"),
  45432. name: "Back",
  45433. image: {
  45434. source: "./media/characters/lumi/back.svg",
  45435. extra: 1381/1327,
  45436. bottom: 43/1424
  45437. }
  45438. },
  45439. },
  45440. [
  45441. {
  45442. name: "Normal",
  45443. height: math.unit(5 + 2/12, "feet"),
  45444. default: true
  45445. },
  45446. ]
  45447. ))
  45448. characterMakers.push(() => makeCharacter(
  45449. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45450. {
  45451. front: {
  45452. height: math.unit(5 + 9/12, "feet"),
  45453. name: "Front",
  45454. image: {
  45455. source: "./media/characters/aliya-cotton/front.svg",
  45456. extra: 577/564,
  45457. bottom: 29/606
  45458. }
  45459. },
  45460. },
  45461. [
  45462. {
  45463. name: "Normal",
  45464. height: math.unit(5 + 9/12, "feet"),
  45465. default: true
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(2.7, "meters"),
  45474. weight: math.unit(25000, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/noah-luxray/front.svg",
  45478. extra: 1644/825,
  45479. bottom: 339/1983
  45480. }
  45481. },
  45482. side: {
  45483. height: math.unit(2.97, "meters"),
  45484. weight: math.unit(25000, "lb"),
  45485. name: "Side",
  45486. image: {
  45487. source: "./media/characters/noah-luxray/side.svg",
  45488. extra: 1319/650,
  45489. bottom: 163/1482
  45490. }
  45491. },
  45492. dick: {
  45493. height: math.unit(7.4, "feet"),
  45494. weight: math.unit(2500, "lb"),
  45495. name: "Dick",
  45496. image: {
  45497. source: "./media/characters/noah-luxray/dick.svg"
  45498. }
  45499. },
  45500. dickAlt: {
  45501. height: math.unit(10.83, "feet"),
  45502. weight: math.unit(2500, "lb"),
  45503. name: "Dick-alt",
  45504. image: {
  45505. source: "./media/characters/noah-luxray/dick-alt.svg"
  45506. }
  45507. },
  45508. },
  45509. [
  45510. {
  45511. name: "BIG",
  45512. height: math.unit(2.7, "meters"),
  45513. default: true
  45514. },
  45515. ]
  45516. ))
  45517. characterMakers.push(() => makeCharacter(
  45518. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45519. {
  45520. standing: {
  45521. height: math.unit(183, "cm"),
  45522. weight: math.unit(68, "kg"),
  45523. name: "Standing",
  45524. image: {
  45525. source: "./media/characters/arion/standing.svg",
  45526. extra: 1869/1807,
  45527. bottom: 93/1962
  45528. }
  45529. },
  45530. reclining: {
  45531. height: math.unit(70.5, "cm"),
  45532. weight: math.unit(68, "lb"),
  45533. name: "Reclining",
  45534. image: {
  45535. source: "./media/characters/arion/reclining.svg",
  45536. extra: 937/870,
  45537. bottom: 63/1000
  45538. }
  45539. },
  45540. },
  45541. [
  45542. {
  45543. name: "Colossus Size, Low",
  45544. height: math.unit(33, "meters"),
  45545. default: true
  45546. },
  45547. {
  45548. name: "Colossus Size, Mid",
  45549. height: math.unit(52, "meters")
  45550. },
  45551. {
  45552. name: "Colossus Size, High",
  45553. height: math.unit(60, "meters")
  45554. },
  45555. {
  45556. name: "Titan Size, Low",
  45557. height: math.unit(91, "meters"),
  45558. },
  45559. {
  45560. name: "Titan Size, Mid",
  45561. height: math.unit(122, "meters")
  45562. },
  45563. {
  45564. name: "Titan Size, High",
  45565. height: math.unit(162, "meters")
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45571. {
  45572. front: {
  45573. height: math.unit(53, "meters"),
  45574. name: "Front",
  45575. image: {
  45576. source: "./media/characters/stellar-marbey/front.svg",
  45577. extra: 1913/1805,
  45578. bottom: 92/2005
  45579. }
  45580. },
  45581. back: {
  45582. height: math.unit(53, "meters"),
  45583. name: "Back",
  45584. image: {
  45585. source: "./media/characters/stellar-marbey/back.svg",
  45586. extra: 1960/1851,
  45587. bottom: 28/1988
  45588. }
  45589. },
  45590. mouth: {
  45591. height: math.unit(3.5, "meters"),
  45592. name: "Mouth",
  45593. image: {
  45594. source: "./media/characters/stellar-marbey/mouth.svg"
  45595. }
  45596. },
  45597. },
  45598. [
  45599. {
  45600. name: "Macro",
  45601. height: math.unit(53, "meters"),
  45602. default: true
  45603. },
  45604. ]
  45605. ))
  45606. characterMakers.push(() => makeCharacter(
  45607. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45608. {
  45609. front: {
  45610. height: math.unit(8 + 1/12, "feet"),
  45611. weight: math.unit(233, "lb"),
  45612. name: "Front",
  45613. image: {
  45614. source: "./media/characters/matsu/front.svg",
  45615. extra: 832/772,
  45616. bottom: 40/872
  45617. }
  45618. },
  45619. back: {
  45620. height: math.unit(8 + 1/12, "feet"),
  45621. weight: math.unit(233, "lb"),
  45622. name: "Back",
  45623. image: {
  45624. source: "./media/characters/matsu/back.svg",
  45625. extra: 839/780,
  45626. bottom: 47/886
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(8 + 1/12, "feet"),
  45634. default: true
  45635. },
  45636. ]
  45637. ))
  45638. characterMakers.push(() => makeCharacter(
  45639. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45640. {
  45641. front: {
  45642. height: math.unit(4, "feet"),
  45643. weight: math.unit(148, "lb"),
  45644. name: "Front",
  45645. image: {
  45646. source: "./media/characters/thiz/front.svg",
  45647. extra: 1913/1748,
  45648. bottom: 62/1975
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Normal",
  45655. height: math.unit(4, "feet"),
  45656. default: true
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45662. {
  45663. front: {
  45664. height: math.unit(7 + 6/12, "feet"),
  45665. weight: math.unit(267, "lb"),
  45666. name: "Front",
  45667. image: {
  45668. source: "./media/characters/marcel/front.svg",
  45669. extra: 1221/1096,
  45670. bottom: 76/1297
  45671. }
  45672. },
  45673. },
  45674. [
  45675. {
  45676. name: "Normal",
  45677. height: math.unit(7 + 6/12, "feet"),
  45678. default: true
  45679. },
  45680. ]
  45681. ))
  45682. characterMakers.push(() => makeCharacter(
  45683. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45684. {
  45685. side: {
  45686. height: math.unit(42, "meters"),
  45687. name: "Side",
  45688. image: {
  45689. source: "./media/characters/flake/side.svg",
  45690. extra: 1525/1306,
  45691. bottom: 209/1734
  45692. }
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Normal",
  45698. height: math.unit(42, "meters"),
  45699. default: true
  45700. },
  45701. ]
  45702. ))
  45703. characterMakers.push(() => makeCharacter(
  45704. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45705. {
  45706. dressed: {
  45707. height: math.unit(6 + 4/12, "feet"),
  45708. weight: math.unit(520, "lb"),
  45709. name: "Dressed",
  45710. image: {
  45711. source: "./media/characters/someonne/dressed.svg",
  45712. extra: 1020/1010,
  45713. bottom: 178/1198
  45714. }
  45715. },
  45716. undressed: {
  45717. height: math.unit(6 + 4/12, "feet"),
  45718. weight: math.unit(520, "lb"),
  45719. name: "Undressed",
  45720. image: {
  45721. source: "./media/characters/someonne/undressed.svg",
  45722. extra: 1019/1014,
  45723. bottom: 169/1188
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(6 + 4/12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(3, "feet"),
  45740. weight: math.unit(30, "lb"),
  45741. name: "Front",
  45742. image: {
  45743. source: "./media/characters/till/front.svg",
  45744. extra: 892/823,
  45745. bottom: 55/947
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Normal",
  45752. height: math.unit(3, "feet"),
  45753. default: true
  45754. },
  45755. ]
  45756. ))
  45757. characterMakers.push(() => makeCharacter(
  45758. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45759. {
  45760. front: {
  45761. height: math.unit(9 + 8/12, "feet"),
  45762. weight: math.unit(800, "lb"),
  45763. name: "Front",
  45764. image: {
  45765. source: "./media/characters/sydney-heki/front.svg",
  45766. extra: 1360/1300,
  45767. bottom: 22/1382
  45768. }
  45769. },
  45770. back: {
  45771. height: math.unit(9 + 8/12, "feet"),
  45772. weight: math.unit(800, "lb"),
  45773. name: "Back",
  45774. image: {
  45775. source: "./media/characters/sydney-heki/back.svg",
  45776. extra: 1356/1293,
  45777. bottom: 12/1368
  45778. }
  45779. },
  45780. frontDressed: {
  45781. height: math.unit(9 + 8/12, "feet"),
  45782. weight: math.unit(800, "lb"),
  45783. name: "Front-dressed",
  45784. image: {
  45785. source: "./media/characters/sydney-heki/front-dressed.svg",
  45786. extra: 1360/1300,
  45787. bottom: 22/1382
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Normal",
  45794. height: math.unit(9 + 8/12, "feet"),
  45795. default: true
  45796. },
  45797. {
  45798. name: "Macro",
  45799. height: math.unit(500, "feet")
  45800. },
  45801. {
  45802. name: "Megamacro",
  45803. height: math.unit(3.6, "miles")
  45804. },
  45805. ]
  45806. ))
  45807. characterMakers.push(() => makeCharacter(
  45808. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45809. {
  45810. front: {
  45811. height: math.unit(200, "cm"),
  45812. weight: math.unit(250, "lb"),
  45813. name: "Front",
  45814. image: {
  45815. source: "./media/characters/fowler-karlsson/front.svg",
  45816. extra: 897/845,
  45817. bottom: 123/1020
  45818. }
  45819. },
  45820. back: {
  45821. height: math.unit(200, "cm"),
  45822. weight: math.unit(250, "lb"),
  45823. name: "Back",
  45824. image: {
  45825. source: "./media/characters/fowler-karlsson/back.svg",
  45826. extra: 999/944,
  45827. bottom: 26/1025
  45828. }
  45829. },
  45830. dick: {
  45831. height: math.unit(1.92, "feet"),
  45832. weight: math.unit(150, "lb"),
  45833. name: "Dick",
  45834. image: {
  45835. source: "./media/characters/fowler-karlsson/dick.svg"
  45836. }
  45837. },
  45838. },
  45839. [
  45840. {
  45841. name: "Normal",
  45842. height: math.unit(200, "cm"),
  45843. default: true
  45844. },
  45845. {
  45846. name: "Smaller Macro",
  45847. height: math.unit(90, "m")
  45848. },
  45849. {
  45850. name: "Macro",
  45851. height: math.unit(150, "m")
  45852. },
  45853. {
  45854. name: "Bigger Macro",
  45855. height: math.unit(300, "m")
  45856. },
  45857. ]
  45858. ))
  45859. characterMakers.push(() => makeCharacter(
  45860. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45861. {
  45862. side: {
  45863. height: math.unit(8 + 2/12, "feet"),
  45864. weight: math.unit(1, "tonne"),
  45865. name: "Side",
  45866. image: {
  45867. source: "./media/characters/rylide/side.svg",
  45868. extra: 1318/1034,
  45869. bottom: 106/1424
  45870. }
  45871. },
  45872. sitting: {
  45873. height: math.unit(303, "cm"),
  45874. weight: math.unit(1, "tonne"),
  45875. name: "Sitting",
  45876. image: {
  45877. source: "./media/characters/rylide/sitting.svg",
  45878. extra: 1303/1103,
  45879. bottom: 36/1339
  45880. }
  45881. },
  45882. },
  45883. [
  45884. {
  45885. name: "Normal",
  45886. height: math.unit(8 + 2/12, "feet"),
  45887. default: true
  45888. },
  45889. ]
  45890. ))
  45891. characterMakers.push(() => makeCharacter(
  45892. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45893. {
  45894. front: {
  45895. height: math.unit(5 + 10/12, "feet"),
  45896. weight: math.unit(160, "lb"),
  45897. name: "Front",
  45898. image: {
  45899. source: "./media/characters/pudask/front.svg",
  45900. extra: 1616/1590,
  45901. bottom: 161/1777
  45902. }
  45903. },
  45904. },
  45905. [
  45906. {
  45907. name: "Ferret Height",
  45908. height: math.unit(2 + 5/12, "feet")
  45909. },
  45910. {
  45911. name: "Canon Height",
  45912. height: math.unit(5 + 10/12, "feet"),
  45913. default: true
  45914. },
  45915. ]
  45916. ))
  45917. characterMakers.push(() => makeCharacter(
  45918. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45919. {
  45920. front: {
  45921. height: math.unit(3 + 6/12, "feet"),
  45922. weight: math.unit(60, "lb"),
  45923. name: "Front",
  45924. image: {
  45925. source: "./media/characters/ramita/front.svg",
  45926. extra: 1402/1232,
  45927. bottom: 62/1464
  45928. }
  45929. },
  45930. dressed: {
  45931. height: math.unit(3 + 6/12, "feet"),
  45932. weight: math.unit(60, "lb"),
  45933. name: "Dressed",
  45934. image: {
  45935. source: "./media/characters/ramita/dressed.svg",
  45936. extra: 1534/1249,
  45937. bottom: 50/1584
  45938. }
  45939. },
  45940. },
  45941. [
  45942. {
  45943. name: "Normal",
  45944. height: math.unit(3 + 6/12, "feet"),
  45945. default: true
  45946. },
  45947. ]
  45948. ))
  45949. characterMakers.push(() => makeCharacter(
  45950. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45951. {
  45952. front: {
  45953. height: math.unit(8, "feet"),
  45954. name: "Front",
  45955. image: {
  45956. source: "./media/characters/ark/front.svg",
  45957. extra: 772/693,
  45958. bottom: 45/817
  45959. }
  45960. },
  45961. },
  45962. [
  45963. {
  45964. name: "Normal",
  45965. height: math.unit(8, "feet"),
  45966. default: true
  45967. },
  45968. ]
  45969. ))
  45970. characterMakers.push(() => makeCharacter(
  45971. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45972. {
  45973. front: {
  45974. height: math.unit(6, "feet"),
  45975. weight: math.unit(250, "lb"),
  45976. volume: math.unit(5/8, "gallons"),
  45977. name: "Front",
  45978. image: {
  45979. source: "./media/characters/ludwig-horn/front.svg",
  45980. extra: 1782/1635,
  45981. bottom: 96/1878
  45982. }
  45983. },
  45984. back: {
  45985. height: math.unit(6, "feet"),
  45986. weight: math.unit(250, "lb"),
  45987. volume: math.unit(5/8, "gallons"),
  45988. name: "Back",
  45989. image: {
  45990. source: "./media/characters/ludwig-horn/back.svg",
  45991. extra: 1874/1729,
  45992. bottom: 27/1901
  45993. }
  45994. },
  45995. dick: {
  45996. height: math.unit(1.05, "feet"),
  45997. weight: math.unit(15, "lb"),
  45998. volume: math.unit(5/8, "gallons"),
  45999. name: "Dick",
  46000. image: {
  46001. source: "./media/characters/ludwig-horn/dick.svg"
  46002. }
  46003. },
  46004. },
  46005. [
  46006. {
  46007. name: "Small",
  46008. height: math.unit(6, "feet")
  46009. },
  46010. {
  46011. name: "Typical",
  46012. height: math.unit(12, "feet"),
  46013. default: true
  46014. },
  46015. {
  46016. name: "Building",
  46017. height: math.unit(80, "feet")
  46018. },
  46019. {
  46020. name: "Town",
  46021. height: math.unit(800, "feet")
  46022. },
  46023. {
  46024. name: "Kingdom",
  46025. height: math.unit(80000, "feet")
  46026. },
  46027. {
  46028. name: "Planet",
  46029. height: math.unit(8000000, "feet")
  46030. },
  46031. {
  46032. name: "Universe",
  46033. height: math.unit(8000000000, "feet")
  46034. },
  46035. {
  46036. name: "Transcended",
  46037. height: math.unit(8e27, "feet")
  46038. },
  46039. ]
  46040. ))
  46041. characterMakers.push(() => makeCharacter(
  46042. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46043. {
  46044. front: {
  46045. height: math.unit(5, "feet"),
  46046. weight: math.unit(50, "kg"),
  46047. name: "Front",
  46048. image: {
  46049. source: "./media/characters/biot-avery/front.svg",
  46050. extra: 1295/1232,
  46051. bottom: 86/1381
  46052. }
  46053. },
  46054. },
  46055. [
  46056. {
  46057. name: "Normal",
  46058. height: math.unit(5, "feet"),
  46059. default: true
  46060. },
  46061. ]
  46062. ))
  46063. characterMakers.push(() => makeCharacter(
  46064. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46065. {
  46066. front: {
  46067. height: math.unit(6, "feet"),
  46068. name: "Front",
  46069. image: {
  46070. source: "./media/characters/kitsune-kiro/front.svg",
  46071. extra: 1270/1158,
  46072. bottom: 42/1312
  46073. }
  46074. },
  46075. frontAlt: {
  46076. height: math.unit(6, "feet"),
  46077. name: "Front-alt",
  46078. image: {
  46079. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46080. extra: 1130/1081,
  46081. bottom: 36/1166
  46082. }
  46083. },
  46084. },
  46085. [
  46086. {
  46087. name: "Smol",
  46088. height: math.unit(3, "feet")
  46089. },
  46090. {
  46091. name: "Normal",
  46092. height: math.unit(6, "feet"),
  46093. default: true
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46099. {
  46100. front: {
  46101. height: math.unit(6, "feet"),
  46102. weight: math.unit(125, "lb"),
  46103. name: "Front",
  46104. image: {
  46105. source: "./media/characters/jack-thatcher/front.svg",
  46106. extra: 1474/1370,
  46107. bottom: 26/1500
  46108. }
  46109. },
  46110. back: {
  46111. height: math.unit(6, "feet"),
  46112. weight: math.unit(125, "lb"),
  46113. name: "Back",
  46114. image: {
  46115. source: "./media/characters/jack-thatcher/back.svg",
  46116. extra: 1489/1384,
  46117. bottom: 18/1507
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(6, "feet"),
  46125. default: true
  46126. },
  46127. {
  46128. name: "Macro",
  46129. height: math.unit(75, "feet")
  46130. },
  46131. {
  46132. name: "Macro-er",
  46133. height: math.unit(250, "feet")
  46134. },
  46135. ]
  46136. ))
  46137. characterMakers.push(() => makeCharacter(
  46138. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46139. {
  46140. front: {
  46141. height: math.unit(7, "feet"),
  46142. weight: math.unit(110, "kg"),
  46143. name: "Front",
  46144. image: {
  46145. source: "./media/characters/max-hyper/front.svg",
  46146. extra: 1969/1881,
  46147. bottom: 49/2018
  46148. }
  46149. },
  46150. },
  46151. [
  46152. {
  46153. name: "Normal",
  46154. height: math.unit(7, "feet"),
  46155. default: true
  46156. },
  46157. ]
  46158. ))
  46159. characterMakers.push(() => makeCharacter(
  46160. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46161. {
  46162. front: {
  46163. height: math.unit(5 + 5/12, "feet"),
  46164. weight: math.unit(160, "lb"),
  46165. name: "Front",
  46166. image: {
  46167. source: "./media/characters/spook/front.svg",
  46168. extra: 794/791,
  46169. bottom: 54/848
  46170. }
  46171. },
  46172. back: {
  46173. height: math.unit(5 + 5/12, "feet"),
  46174. weight: math.unit(160, "lb"),
  46175. name: "Back",
  46176. image: {
  46177. source: "./media/characters/spook/back.svg",
  46178. extra: 812/798,
  46179. bottom: 32/844
  46180. }
  46181. },
  46182. },
  46183. [
  46184. {
  46185. name: "Normal",
  46186. height: math.unit(5 + 5/12, "feet"),
  46187. default: true
  46188. },
  46189. ]
  46190. ))
  46191. characterMakers.push(() => makeCharacter(
  46192. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46193. {
  46194. front: {
  46195. height: math.unit(18, "feet"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/xeaduulix/front.svg",
  46199. extra: 1380/1166,
  46200. bottom: 110/1490
  46201. }
  46202. },
  46203. back: {
  46204. height: math.unit(18, "feet"),
  46205. name: "Back",
  46206. image: {
  46207. source: "./media/characters/xeaduulix/back.svg",
  46208. extra: 1592/1170,
  46209. bottom: 128/1720
  46210. }
  46211. },
  46212. frontNsfw: {
  46213. height: math.unit(18, "feet"),
  46214. name: "Front (NSFW)",
  46215. image: {
  46216. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46217. extra: 1380/1166,
  46218. bottom: 110/1490
  46219. }
  46220. },
  46221. backNsfw: {
  46222. height: math.unit(18, "feet"),
  46223. name: "Back (NSFW)",
  46224. image: {
  46225. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46226. extra: 1592/1170,
  46227. bottom: 128/1720
  46228. }
  46229. },
  46230. },
  46231. [
  46232. {
  46233. name: "Normal",
  46234. height: math.unit(18, "feet"),
  46235. default: true
  46236. },
  46237. ]
  46238. ))
  46239. characterMakers.push(() => makeCharacter(
  46240. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46241. {
  46242. spreadWings: {
  46243. height: math.unit(20, "feet"),
  46244. name: "Spread Wings",
  46245. image: {
  46246. source: "./media/characters/fledge/spread-wings.svg",
  46247. extra: 693/635,
  46248. bottom: 26/719
  46249. }
  46250. },
  46251. front: {
  46252. height: math.unit(20, "feet"),
  46253. name: "Front",
  46254. image: {
  46255. source: "./media/characters/fledge/front.svg",
  46256. extra: 684/637,
  46257. bottom: 18/702
  46258. }
  46259. },
  46260. frontAlt: {
  46261. height: math.unit(20, "feet"),
  46262. name: "Front (Alt)",
  46263. image: {
  46264. source: "./media/characters/fledge/front-alt.svg",
  46265. extra: 708/664,
  46266. bottom: 13/721
  46267. }
  46268. },
  46269. back: {
  46270. height: math.unit(20, "feet"),
  46271. name: "Back",
  46272. image: {
  46273. source: "./media/characters/fledge/back.svg",
  46274. extra: 718/634,
  46275. bottom: 22/740
  46276. }
  46277. },
  46278. head: {
  46279. height: math.unit(5.55, "feet"),
  46280. name: "Head",
  46281. image: {
  46282. source: "./media/characters/fledge/head.svg"
  46283. }
  46284. },
  46285. headAlt: {
  46286. height: math.unit(5.1, "feet"),
  46287. name: "Head (Alt)",
  46288. image: {
  46289. source: "./media/characters/fledge/head-alt.svg"
  46290. }
  46291. },
  46292. },
  46293. [
  46294. {
  46295. name: "Small",
  46296. height: math.unit(6 + 2/12, "feet")
  46297. },
  46298. {
  46299. name: "Big",
  46300. height: math.unit(20, "feet"),
  46301. default: true
  46302. },
  46303. {
  46304. name: "Giant",
  46305. height: math.unit(100, "feet")
  46306. },
  46307. {
  46308. name: "Macro",
  46309. height: math.unit(200, "feet")
  46310. },
  46311. ]
  46312. ))
  46313. characterMakers.push(() => makeCharacter(
  46314. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46315. {
  46316. front: {
  46317. height: math.unit(1, "meter"),
  46318. name: "Front",
  46319. image: {
  46320. source: "./media/characters/atlas-morenai/front.svg",
  46321. extra: 1275/1043,
  46322. bottom: 19/1294
  46323. }
  46324. },
  46325. back: {
  46326. height: math.unit(1, "meter"),
  46327. name: "Back",
  46328. image: {
  46329. source: "./media/characters/atlas-morenai/back.svg",
  46330. extra: 1141/1001,
  46331. bottom: 25/1166
  46332. }
  46333. },
  46334. },
  46335. [
  46336. {
  46337. name: "Normal",
  46338. height: math.unit(1, "meter"),
  46339. default: true
  46340. },
  46341. {
  46342. name: "Magic-Infused",
  46343. height: math.unit(5, "meters")
  46344. },
  46345. ]
  46346. ))
  46347. characterMakers.push(() => makeCharacter(
  46348. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46349. {
  46350. front: {
  46351. height: math.unit(5, "meters"),
  46352. name: "Front",
  46353. image: {
  46354. source: "./media/characters/cintia/front.svg",
  46355. extra: 1312/1228,
  46356. bottom: 38/1350
  46357. }
  46358. },
  46359. back: {
  46360. height: math.unit(5, "meters"),
  46361. name: "Back",
  46362. image: {
  46363. source: "./media/characters/cintia/back.svg",
  46364. extra: 1260/1166,
  46365. bottom: 98/1358
  46366. }
  46367. },
  46368. frontDick: {
  46369. height: math.unit(5, "meters"),
  46370. name: "Front (Dick)",
  46371. image: {
  46372. source: "./media/characters/cintia/front-dick.svg",
  46373. extra: 1312/1228,
  46374. bottom: 38/1350
  46375. }
  46376. },
  46377. backDick: {
  46378. height: math.unit(5, "meters"),
  46379. name: "Back (Dick)",
  46380. image: {
  46381. source: "./media/characters/cintia/back-dick.svg",
  46382. extra: 1260/1166,
  46383. bottom: 98/1358
  46384. }
  46385. },
  46386. bust: {
  46387. height: math.unit(1.97, "meters"),
  46388. name: "Bust",
  46389. image: {
  46390. source: "./media/characters/cintia/bust.svg",
  46391. extra: 617/565,
  46392. bottom: 0/617
  46393. }
  46394. },
  46395. },
  46396. [
  46397. {
  46398. name: "Normal",
  46399. height: math.unit(5, "meters"),
  46400. default: true
  46401. },
  46402. ]
  46403. ))
  46404. characterMakers.push(() => makeCharacter(
  46405. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46406. {
  46407. side: {
  46408. height: math.unit(100, "feet"),
  46409. name: "Side",
  46410. image: {
  46411. source: "./media/characters/denora/side.svg",
  46412. extra: 875/803,
  46413. bottom: 9/884
  46414. }
  46415. },
  46416. },
  46417. [
  46418. {
  46419. name: "Standard",
  46420. height: math.unit(100, "feet"),
  46421. default: true
  46422. },
  46423. {
  46424. name: "Grand",
  46425. height: math.unit(1000, "feet")
  46426. },
  46427. {
  46428. name: "Conquering",
  46429. height: math.unit(10000, "feet")
  46430. },
  46431. ]
  46432. ))
  46433. characterMakers.push(() => makeCharacter(
  46434. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46435. {
  46436. dressed: {
  46437. height: math.unit(8 + 5/12, "feet"),
  46438. weight: math.unit(700, "lb"),
  46439. name: "Dressed",
  46440. image: {
  46441. source: "./media/characters/kiva/dressed.svg",
  46442. extra: 1102/1055,
  46443. bottom: 60/1162
  46444. }
  46445. },
  46446. nude: {
  46447. height: math.unit(8 + 5/12, "feet"),
  46448. weight: math.unit(700, "lb"),
  46449. name: "Nude",
  46450. image: {
  46451. source: "./media/characters/kiva/nude.svg",
  46452. extra: 1102/1055,
  46453. bottom: 60/1162
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Base Height",
  46460. height: math.unit(8 + 5/12, "feet"),
  46461. default: true
  46462. },
  46463. {
  46464. name: "Macro",
  46465. height: math.unit(100, "feet")
  46466. },
  46467. {
  46468. name: "Max",
  46469. height: math.unit(3280, "feet")
  46470. },
  46471. ]
  46472. ))
  46473. characterMakers.push(() => makeCharacter(
  46474. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46475. {
  46476. front: {
  46477. height: math.unit(6 + 8/12, "feet"),
  46478. weight: math.unit(250, "lb"),
  46479. name: "Front",
  46480. image: {
  46481. source: "./media/characters/ztragon/front.svg",
  46482. extra: 1825/1684,
  46483. bottom: 98/1923
  46484. }
  46485. },
  46486. },
  46487. [
  46488. {
  46489. name: "Normal",
  46490. height: math.unit(6 + 8/12, "feet"),
  46491. default: true
  46492. },
  46493. {
  46494. name: "Macro",
  46495. height: math.unit(80, "feet")
  46496. },
  46497. ]
  46498. ))
  46499. characterMakers.push(() => makeCharacter(
  46500. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46501. {
  46502. front: {
  46503. height: math.unit(10.4, "feet"),
  46504. weight: math.unit(2, "tons"),
  46505. name: "Front",
  46506. image: {
  46507. source: "./media/characters/yesenia/front.svg",
  46508. extra: 1479/1474,
  46509. bottom: 233/1712
  46510. }
  46511. },
  46512. },
  46513. [
  46514. {
  46515. name: "Normal",
  46516. height: math.unit(10.4, "feet"),
  46517. default: true
  46518. },
  46519. ]
  46520. ))
  46521. characterMakers.push(() => makeCharacter(
  46522. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46523. {
  46524. normal: {
  46525. height: math.unit(6 + 1/12, "feet"),
  46526. weight: math.unit(180, "lb"),
  46527. name: "Normal",
  46528. image: {
  46529. source: "./media/characters/leanne-lycheborne/normal.svg",
  46530. extra: 1748/1660,
  46531. bottom: 98/1846
  46532. }
  46533. },
  46534. were: {
  46535. height: math.unit(12, "feet"),
  46536. weight: math.unit(1600, "lb"),
  46537. name: "Were",
  46538. image: {
  46539. source: "./media/characters/leanne-lycheborne/were.svg",
  46540. extra: 1485/1432,
  46541. bottom: 66/1551
  46542. }
  46543. },
  46544. },
  46545. [
  46546. {
  46547. name: "Normal",
  46548. height: math.unit(6 + 1/12, "feet"),
  46549. default: true
  46550. },
  46551. ]
  46552. ))
  46553. characterMakers.push(() => makeCharacter(
  46554. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46555. {
  46556. side: {
  46557. height: math.unit(13, "feet"),
  46558. name: "Side",
  46559. image: {
  46560. source: "./media/characters/kira-tyler/side.svg",
  46561. extra: 693/393,
  46562. bottom: 58/751
  46563. }
  46564. },
  46565. },
  46566. [
  46567. {
  46568. name: "Normal",
  46569. height: math.unit(13, "feet"),
  46570. default: true
  46571. },
  46572. ]
  46573. ))
  46574. characterMakers.push(() => makeCharacter(
  46575. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46576. {
  46577. front: {
  46578. height: math.unit(10.3, "feet"),
  46579. weight: math.unit(150, "lb"),
  46580. name: "Front",
  46581. image: {
  46582. source: "./media/characters/blaze/front.svg",
  46583. extra: 1378/1286,
  46584. bottom: 172/1550
  46585. }
  46586. },
  46587. },
  46588. [
  46589. {
  46590. name: "Normal",
  46591. height: math.unit(10.3, "feet"),
  46592. default: true
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46598. {
  46599. side: {
  46600. height: math.unit(2, "meters"),
  46601. weight: math.unit(400, "kg"),
  46602. name: "Side",
  46603. image: {
  46604. source: "./media/characters/anu/side.svg",
  46605. extra: 506/394,
  46606. bottom: 18/524
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Humanoid",
  46613. height: math.unit(2, "meters")
  46614. },
  46615. {
  46616. name: "Normal",
  46617. height: math.unit(5, "meters"),
  46618. default: true
  46619. },
  46620. ]
  46621. ))
  46622. characterMakers.push(() => makeCharacter(
  46623. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46624. {
  46625. front: {
  46626. height: math.unit(5 + 5/12, "feet"),
  46627. weight: math.unit(170, "lb"),
  46628. name: "Front",
  46629. image: {
  46630. source: "./media/characters/synx-the-lynx/front.svg",
  46631. extra: 1893/1745,
  46632. bottom: 17/1910
  46633. }
  46634. },
  46635. side: {
  46636. height: math.unit(5 + 5/12, "feet"),
  46637. weight: math.unit(170, "lb"),
  46638. name: "Side",
  46639. image: {
  46640. source: "./media/characters/synx-the-lynx/side.svg",
  46641. extra: 1884/1740,
  46642. bottom: 39/1923
  46643. }
  46644. },
  46645. back: {
  46646. height: math.unit(5 + 5/12, "feet"),
  46647. weight: math.unit(170, "lb"),
  46648. name: "Back",
  46649. image: {
  46650. source: "./media/characters/synx-the-lynx/back.svg",
  46651. extra: 1903/1755,
  46652. bottom: 14/1917
  46653. }
  46654. },
  46655. },
  46656. [
  46657. {
  46658. name: "Normal",
  46659. height: math.unit(5 + 5/12, "feet"),
  46660. default: true
  46661. },
  46662. ]
  46663. ))
  46664. characterMakers.push(() => makeCharacter(
  46665. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46666. {
  46667. back: {
  46668. height: math.unit(15, "feet"),
  46669. name: "Back",
  46670. image: {
  46671. source: "./media/characters/nadezda-fex/back.svg",
  46672. extra: 1695/1481,
  46673. bottom: 25/1720
  46674. }
  46675. },
  46676. },
  46677. [
  46678. {
  46679. name: "Normal",
  46680. height: math.unit(15, "feet"),
  46681. default: true
  46682. },
  46683. {
  46684. name: "Macro",
  46685. height: math.unit(2.5, "miles")
  46686. },
  46687. {
  46688. name: "Goddess",
  46689. height: math.unit(2, "multiverses")
  46690. },
  46691. ]
  46692. ))
  46693. characterMakers.push(() => makeCharacter(
  46694. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46695. {
  46696. front: {
  46697. height: math.unit(216, "cm"),
  46698. name: "Front",
  46699. image: {
  46700. source: "./media/characters/lev/front.svg",
  46701. extra: 1728/1670,
  46702. bottom: 82/1810
  46703. }
  46704. },
  46705. back: {
  46706. height: math.unit(216, "cm"),
  46707. name: "Back",
  46708. image: {
  46709. source: "./media/characters/lev/back.svg",
  46710. extra: 1738/1675,
  46711. bottom: 24/1762
  46712. }
  46713. },
  46714. dressed: {
  46715. height: math.unit(216, "cm"),
  46716. name: "Dressed",
  46717. image: {
  46718. source: "./media/characters/lev/dressed.svg",
  46719. extra: 1397/1351,
  46720. bottom: 73/1470
  46721. }
  46722. },
  46723. head: {
  46724. height: math.unit(0.51, "meter"),
  46725. name: "Head",
  46726. image: {
  46727. source: "./media/characters/lev/head.svg"
  46728. }
  46729. },
  46730. },
  46731. [
  46732. {
  46733. name: "Normal",
  46734. height: math.unit(216, "cm"),
  46735. default: true
  46736. },
  46737. {
  46738. name: "Relatively Macro",
  46739. height: math.unit(80, "meters")
  46740. },
  46741. {
  46742. name: "Megamacro",
  46743. height: math.unit(21600, "meters")
  46744. },
  46745. {
  46746. name: "Megamacro+",
  46747. height: math.unit(64800, "meters")
  46748. },
  46749. ]
  46750. ))
  46751. characterMakers.push(() => makeCharacter(
  46752. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46753. {
  46754. front: {
  46755. height: math.unit(2, "meters"),
  46756. weight: math.unit(80, "kg"),
  46757. name: "Front",
  46758. image: {
  46759. source: "./media/characters/moka/front.svg",
  46760. extra: 1337/1255,
  46761. bottom: 58/1395
  46762. }
  46763. },
  46764. },
  46765. [
  46766. {
  46767. name: "Micro",
  46768. height: math.unit(15, "cm")
  46769. },
  46770. {
  46771. name: "Normal",
  46772. height: math.unit(2, "meters"),
  46773. default: true
  46774. },
  46775. {
  46776. name: "Macro",
  46777. height: math.unit(20, "meters"),
  46778. },
  46779. ]
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(9, "feet"),
  46786. weight: math.unit(240, "lb"),
  46787. name: "Front",
  46788. image: {
  46789. source: "./media/characters/kuzco/front.svg",
  46790. extra: 1593/1487,
  46791. bottom: 32/1625
  46792. }
  46793. },
  46794. side: {
  46795. height: math.unit(9, "feet"),
  46796. weight: math.unit(240, "lb"),
  46797. name: "Side",
  46798. image: {
  46799. source: "./media/characters/kuzco/side.svg",
  46800. extra: 1575/1485,
  46801. bottom: 30/1605
  46802. }
  46803. },
  46804. back: {
  46805. height: math.unit(9, "feet"),
  46806. weight: math.unit(240, "lb"),
  46807. name: "Back",
  46808. image: {
  46809. source: "./media/characters/kuzco/back.svg",
  46810. extra: 1603/1514,
  46811. bottom: 14/1617
  46812. }
  46813. },
  46814. },
  46815. [
  46816. {
  46817. name: "Normal",
  46818. height: math.unit(9, "feet"),
  46819. default: true
  46820. },
  46821. ]
  46822. ))
  46823. characterMakers.push(() => makeCharacter(
  46824. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46825. {
  46826. side: {
  46827. height: math.unit(2, "meters"),
  46828. weight: math.unit(300, "kg"),
  46829. name: "Side",
  46830. image: {
  46831. source: "./media/characters/ceruleus/side.svg",
  46832. extra: 1068/974,
  46833. bottom: 126/1194
  46834. }
  46835. },
  46836. maw: {
  46837. height: math.unit(0.8125, "meter"),
  46838. name: "Maw",
  46839. image: {
  46840. source: "./media/characters/ceruleus/maw.svg"
  46841. }
  46842. },
  46843. },
  46844. [
  46845. {
  46846. name: "Normal",
  46847. height: math.unit(16, "meters"),
  46848. default: true
  46849. },
  46850. ]
  46851. ))
  46852. characterMakers.push(() => makeCharacter(
  46853. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46854. {
  46855. front: {
  46856. height: math.unit(9, "feet"),
  46857. weight: math.unit(500, "kg"),
  46858. name: "Front",
  46859. image: {
  46860. source: "./media/characters/acouya/front.svg",
  46861. extra: 1660/1473,
  46862. bottom: 28/1688
  46863. }
  46864. },
  46865. },
  46866. [
  46867. {
  46868. name: "Normal",
  46869. height: math.unit(9, "feet"),
  46870. default: true
  46871. },
  46872. ]
  46873. ))
  46874. characterMakers.push(() => makeCharacter(
  46875. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46876. {
  46877. front: {
  46878. height: math.unit(5 + 6/12, "feet"),
  46879. weight: math.unit(195, "lb"),
  46880. name: "Front",
  46881. image: {
  46882. source: "./media/characters/vant/front.svg",
  46883. extra: 1396/1320,
  46884. bottom: 20/1416
  46885. }
  46886. },
  46887. back: {
  46888. height: math.unit(5 + 6/12, "feet"),
  46889. weight: math.unit(195, "lb"),
  46890. name: "Back",
  46891. image: {
  46892. source: "./media/characters/vant/back.svg",
  46893. extra: 1396/1320,
  46894. bottom: 20/1416
  46895. }
  46896. },
  46897. maw: {
  46898. height: math.unit(0.75, "feet"),
  46899. name: "Maw",
  46900. image: {
  46901. source: "./media/characters/vant/maw.svg"
  46902. }
  46903. },
  46904. paw: {
  46905. height: math.unit(1.07, "feet"),
  46906. name: "Paw",
  46907. image: {
  46908. source: "./media/characters/vant/paw.svg"
  46909. }
  46910. },
  46911. },
  46912. [
  46913. {
  46914. name: "Micro",
  46915. height: math.unit(0.25, "inches")
  46916. },
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(5 + 6/12, "feet"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Macro",
  46924. height: math.unit(75, "feet")
  46925. },
  46926. ]
  46927. ))
  46928. characterMakers.push(() => makeCharacter(
  46929. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46930. {
  46931. front: {
  46932. height: math.unit(30, "meters"),
  46933. weight: math.unit(363, "tons"),
  46934. name: "Front",
  46935. image: {
  46936. source: "./media/characters/ahra/front.svg",
  46937. extra: 1914/1814,
  46938. bottom: 46/1960
  46939. }
  46940. },
  46941. },
  46942. [
  46943. {
  46944. name: "Macro",
  46945. height: math.unit(30, "meters"),
  46946. default: true
  46947. },
  46948. ]
  46949. ))
  46950. characterMakers.push(() => makeCharacter(
  46951. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46952. {
  46953. undressed: {
  46954. height: math.unit(2, "m"),
  46955. weight: math.unit(250, "kg"),
  46956. name: "Undressed",
  46957. image: {
  46958. source: "./media/characters/coriander/undressed.svg",
  46959. extra: 1757/1606,
  46960. bottom: 107/1864
  46961. }
  46962. },
  46963. dressed: {
  46964. height: math.unit(2, "m"),
  46965. weight: math.unit(250, "kg"),
  46966. name: "Dressed",
  46967. image: {
  46968. source: "./media/characters/coriander/dressed.svg",
  46969. extra: 1757/1606,
  46970. bottom: 107/1864
  46971. }
  46972. },
  46973. },
  46974. [
  46975. {
  46976. name: "Normal",
  46977. height: math.unit(4, "meters"),
  46978. default: true
  46979. },
  46980. {
  46981. name: "XL",
  46982. height: math.unit(6, "meters")
  46983. },
  46984. {
  46985. name: "XXL",
  46986. height: math.unit(8, "meters")
  46987. },
  46988. ]
  46989. ))
  46990. characterMakers.push(() => makeCharacter(
  46991. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46992. {
  46993. front: {
  46994. height: math.unit(6, "feet"),
  46995. name: "Front",
  46996. image: {
  46997. source: "./media/characters/syrinx/front.svg",
  46998. extra: 1557/1259,
  46999. bottom: 171/1728
  47000. }
  47001. },
  47002. },
  47003. [
  47004. {
  47005. name: "Normal",
  47006. height: math.unit(6 + 3/12, "feet"),
  47007. default: true
  47008. },
  47009. ]
  47010. ))
  47011. characterMakers.push(() => makeCharacter(
  47012. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47013. {
  47014. front: {
  47015. height: math.unit(11 + 6/12, "feet"),
  47016. weight: math.unit(1.5, "tons"),
  47017. name: "Front",
  47018. image: {
  47019. source: "./media/characters/bor/front.svg",
  47020. extra: 1189/1109,
  47021. bottom: 170/1359
  47022. }
  47023. },
  47024. },
  47025. [
  47026. {
  47027. name: "Normal",
  47028. height: math.unit(11 + 6/12, "feet"),
  47029. default: true
  47030. },
  47031. {
  47032. name: "Macro",
  47033. height: math.unit(32 + 9/12, "feet")
  47034. },
  47035. ]
  47036. ))
  47037. characterMakers.push(() => makeCharacter(
  47038. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47039. {
  47040. anthro: {
  47041. height: math.unit(9, "feet"),
  47042. weight: math.unit(2076, "lb"),
  47043. name: "Anthro",
  47044. image: {
  47045. source: "./media/characters/abacus/anthro.svg",
  47046. extra: 1540/1494,
  47047. bottom: 233/1773
  47048. }
  47049. },
  47050. pigeon: {
  47051. height: math.unit(1, "feet"),
  47052. name: "Pigeon",
  47053. image: {
  47054. source: "./media/characters/abacus/pigeon.svg",
  47055. extra: 528/525,
  47056. bottom: 46/574
  47057. }
  47058. },
  47059. },
  47060. [
  47061. {
  47062. name: "Normal",
  47063. height: math.unit(9, "feet"),
  47064. default: true
  47065. },
  47066. ]
  47067. ))
  47068. characterMakers.push(() => makeCharacter(
  47069. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47070. {
  47071. side: {
  47072. height: math.unit(6, "feet"),
  47073. name: "Side",
  47074. image: {
  47075. source: "./media/characters/delkhan/side.svg",
  47076. extra: 1884/1786,
  47077. bottom: 308/2192
  47078. }
  47079. },
  47080. head: {
  47081. height: math.unit(3.38, "feet"),
  47082. name: "Head",
  47083. image: {
  47084. source: "./media/characters/delkhan/head.svg"
  47085. }
  47086. },
  47087. },
  47088. [
  47089. {
  47090. name: "Normal",
  47091. height: math.unit(72, "feet"),
  47092. default: true
  47093. },
  47094. {
  47095. name: "Giant",
  47096. height: math.unit(172, "feet")
  47097. },
  47098. ]
  47099. ))
  47100. characterMakers.push(() => makeCharacter(
  47101. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47102. {
  47103. standing: {
  47104. height: math.unit(6, "feet"),
  47105. name: "Standing",
  47106. image: {
  47107. source: "./media/characters/euchidat/standing.svg",
  47108. extra: 1612/1553,
  47109. bottom: 116/1728
  47110. }
  47111. },
  47112. leaning: {
  47113. height: math.unit(6, "feet"),
  47114. name: "Leaning",
  47115. image: {
  47116. source: "./media/characters/euchidat/leaning.svg",
  47117. extra: 1719/1674,
  47118. bottom: 27/1746
  47119. }
  47120. },
  47121. },
  47122. [
  47123. {
  47124. name: "Normal",
  47125. height: math.unit(175, "feet"),
  47126. default: true
  47127. },
  47128. {
  47129. name: "Megamacro",
  47130. height: math.unit(190, "miles")
  47131. },
  47132. {
  47133. name: "Gigamacro",
  47134. height: math.unit(190000, "miles")
  47135. },
  47136. ]
  47137. ))
  47138. characterMakers.push(() => makeCharacter(
  47139. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47140. {
  47141. front: {
  47142. height: math.unit(6, "feet"),
  47143. weight: math.unit(150, "lb"),
  47144. name: "Front",
  47145. image: {
  47146. source: "./media/characters/rebecca-stack/front.svg",
  47147. extra: 1256/1201,
  47148. bottom: 18/1274
  47149. }
  47150. },
  47151. },
  47152. [
  47153. {
  47154. name: "Normal",
  47155. height: math.unit(5 + 8/12, "feet"),
  47156. default: true
  47157. },
  47158. {
  47159. name: "Demolitionist",
  47160. height: math.unit(200, "feet")
  47161. },
  47162. {
  47163. name: "Out of Control",
  47164. height: math.unit(2, "miles")
  47165. },
  47166. {
  47167. name: "Giga",
  47168. height: math.unit(7200, "miles")
  47169. },
  47170. ]
  47171. ))
  47172. characterMakers.push(() => makeCharacter(
  47173. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47174. {
  47175. front: {
  47176. height: math.unit(6, "feet"),
  47177. weight: math.unit(150, "lb"),
  47178. name: "Front",
  47179. image: {
  47180. source: "./media/characters/jenny-cartwright/front.svg",
  47181. extra: 1384/1376,
  47182. bottom: 58/1442
  47183. }
  47184. },
  47185. },
  47186. [
  47187. {
  47188. name: "Normal",
  47189. height: math.unit(6 + 7/12, "feet"),
  47190. default: true
  47191. },
  47192. {
  47193. name: "Librarian",
  47194. height: math.unit(55, "feet")
  47195. },
  47196. {
  47197. name: "Sightseer",
  47198. height: math.unit(50, "miles")
  47199. },
  47200. {
  47201. name: "Giga",
  47202. height: math.unit(30000, "miles")
  47203. },
  47204. ]
  47205. ))
  47206. characterMakers.push(() => makeCharacter(
  47207. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47208. {
  47209. nude: {
  47210. height: math.unit(8, "feet"),
  47211. weight: math.unit(225, "lb"),
  47212. name: "Nude",
  47213. image: {
  47214. source: "./media/characters/marvy/nude.svg",
  47215. extra: 1900/1683,
  47216. bottom: 89/1989
  47217. }
  47218. },
  47219. dressed: {
  47220. height: math.unit(8, "feet"),
  47221. weight: math.unit(225, "lb"),
  47222. name: "Dressed",
  47223. image: {
  47224. source: "./media/characters/marvy/dressed.svg",
  47225. extra: 1900/1683,
  47226. bottom: 89/1989
  47227. }
  47228. },
  47229. head: {
  47230. height: math.unit(2.85, "feet"),
  47231. name: "Head",
  47232. image: {
  47233. source: "./media/characters/marvy/head.svg"
  47234. }
  47235. },
  47236. },
  47237. [
  47238. {
  47239. name: "Normal",
  47240. height: math.unit(8, "feet"),
  47241. default: true
  47242. },
  47243. ]
  47244. ))
  47245. characterMakers.push(() => makeCharacter(
  47246. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47247. {
  47248. front: {
  47249. height: math.unit(8, "feet"),
  47250. weight: math.unit(250, "lb"),
  47251. name: "Front",
  47252. image: {
  47253. source: "./media/characters/leah/front.svg",
  47254. extra: 1257/1149,
  47255. bottom: 109/1366
  47256. }
  47257. },
  47258. },
  47259. [
  47260. {
  47261. name: "Normal",
  47262. height: math.unit(8, "feet"),
  47263. default: true
  47264. },
  47265. {
  47266. name: "Minimacro",
  47267. height: math.unit(40, "feet")
  47268. },
  47269. {
  47270. name: "Macro",
  47271. height: math.unit(124, "feet")
  47272. },
  47273. {
  47274. name: "Megamacro",
  47275. height: math.unit(850, "feet")
  47276. },
  47277. ]
  47278. ))
  47279. characterMakers.push(() => makeCharacter(
  47280. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47281. {
  47282. side: {
  47283. height: math.unit(13 + 6/12, "feet"),
  47284. weight: math.unit(3200, "lb"),
  47285. name: "Side",
  47286. image: {
  47287. source: "./media/characters/alvir/side.svg",
  47288. extra: 896/589,
  47289. bottom: 26/922
  47290. }
  47291. },
  47292. },
  47293. [
  47294. {
  47295. name: "Normal",
  47296. height: math.unit(13 + 6/12, "feet"),
  47297. default: true
  47298. },
  47299. ]
  47300. ))
  47301. characterMakers.push(() => makeCharacter(
  47302. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47303. {
  47304. front: {
  47305. height: math.unit(5 + 4/12, "feet"),
  47306. weight: math.unit(236, "lb"),
  47307. name: "Front",
  47308. image: {
  47309. source: "./media/characters/zaina-khalil/front.svg",
  47310. extra: 1533/1485,
  47311. bottom: 94/1627
  47312. }
  47313. },
  47314. side: {
  47315. height: math.unit(5 + 4/12, "feet"),
  47316. weight: math.unit(236, "lb"),
  47317. name: "Side",
  47318. image: {
  47319. source: "./media/characters/zaina-khalil/side.svg",
  47320. extra: 1537/1498,
  47321. bottom: 66/1603
  47322. }
  47323. },
  47324. back: {
  47325. height: math.unit(5 + 4/12, "feet"),
  47326. weight: math.unit(236, "lb"),
  47327. name: "Back",
  47328. image: {
  47329. source: "./media/characters/zaina-khalil/back.svg",
  47330. extra: 1546/1494,
  47331. bottom: 89/1635
  47332. }
  47333. },
  47334. },
  47335. [
  47336. {
  47337. name: "Normal",
  47338. height: math.unit(5 + 4/12, "feet"),
  47339. default: true
  47340. },
  47341. ]
  47342. ))
  47343. characterMakers.push(() => makeCharacter(
  47344. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47345. {
  47346. side: {
  47347. height: math.unit(12, "feet"),
  47348. weight: math.unit(4000, "lb"),
  47349. name: "Side",
  47350. image: {
  47351. source: "./media/characters/terry/side.svg",
  47352. extra: 1518/1439,
  47353. bottom: 149/1667
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(12, "feet"),
  47361. default: true
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47367. {
  47368. front: {
  47369. height: math.unit(12, "feet"),
  47370. weight: math.unit(1500, "lb"),
  47371. name: "Front",
  47372. image: {
  47373. source: "./media/characters/kahea/front.svg",
  47374. extra: 1722/1617,
  47375. bottom: 179/1901
  47376. }
  47377. },
  47378. },
  47379. [
  47380. {
  47381. name: "Normal",
  47382. height: math.unit(12, "feet"),
  47383. default: true
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47389. {
  47390. demonFront: {
  47391. height: math.unit(36, "feet"),
  47392. name: "Front",
  47393. image: {
  47394. source: "./media/characters/alex-xuria/demon-front.svg",
  47395. extra: 1705/1673,
  47396. bottom: 198/1903
  47397. },
  47398. form: "demon",
  47399. default: true
  47400. },
  47401. demonBack: {
  47402. height: math.unit(36, "feet"),
  47403. name: "Back",
  47404. image: {
  47405. source: "./media/characters/alex-xuria/demon-back.svg",
  47406. extra: 1725/1693,
  47407. bottom: 70/1795
  47408. },
  47409. form: "demon"
  47410. },
  47411. demonHead: {
  47412. height: math.unit(2.14, "meters"),
  47413. name: "Head",
  47414. image: {
  47415. source: "./media/characters/alex-xuria/demon-head.svg"
  47416. },
  47417. form: "demon"
  47418. },
  47419. demonHand: {
  47420. height: math.unit(1.61, "meters"),
  47421. name: "Hand",
  47422. image: {
  47423. source: "./media/characters/alex-xuria/demon-hand.svg"
  47424. },
  47425. form: "demon"
  47426. },
  47427. demonPaw: {
  47428. height: math.unit(1.35, "meters"),
  47429. name: "Paw",
  47430. image: {
  47431. source: "./media/characters/alex-xuria/demon-paw.svg"
  47432. },
  47433. form: "demon"
  47434. },
  47435. demonFoot: {
  47436. height: math.unit(2.2, "meters"),
  47437. name: "Foot",
  47438. image: {
  47439. source: "./media/characters/alex-xuria/demon-foot.svg"
  47440. },
  47441. form: "demon"
  47442. },
  47443. demonCock: {
  47444. height: math.unit(1.74, "meters"),
  47445. name: "Cock",
  47446. image: {
  47447. source: "./media/characters/alex-xuria/demon-cock.svg"
  47448. },
  47449. form: "demon"
  47450. },
  47451. demonTailClosed: {
  47452. height: math.unit(1.47, "meters"),
  47453. name: "Tail (Closed)",
  47454. image: {
  47455. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47456. },
  47457. form: "demon"
  47458. },
  47459. demonTailOpen: {
  47460. height: math.unit(2.85, "meters"),
  47461. name: "Tail (Open)",
  47462. image: {
  47463. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47464. },
  47465. form: "demon"
  47466. },
  47467. incubusFront: {
  47468. height: math.unit(12, "feet"),
  47469. name: "Front",
  47470. image: {
  47471. source: "./media/characters/alex-xuria/incubus-front.svg",
  47472. extra: 1754/1677,
  47473. bottom: 125/1879
  47474. },
  47475. form: "incubus",
  47476. default: true
  47477. },
  47478. incubusBack: {
  47479. height: math.unit(12, "feet"),
  47480. name: "Back",
  47481. image: {
  47482. source: "./media/characters/alex-xuria/incubus-back.svg",
  47483. extra: 1702/1647,
  47484. bottom: 30/1732
  47485. },
  47486. form: "incubus"
  47487. },
  47488. incubusHead: {
  47489. height: math.unit(3.45, "feet"),
  47490. name: "Head",
  47491. image: {
  47492. source: "./media/characters/alex-xuria/incubus-head.svg"
  47493. },
  47494. form: "incubus"
  47495. },
  47496. rabbitFront: {
  47497. height: math.unit(6, "feet"),
  47498. name: "Front",
  47499. image: {
  47500. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47501. extra: 1369/1349,
  47502. bottom: 45/1414
  47503. },
  47504. form: "rabbit",
  47505. default: true
  47506. },
  47507. rabbitSide: {
  47508. height: math.unit(6, "feet"),
  47509. name: "Side",
  47510. image: {
  47511. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47512. extra: 1370/1356,
  47513. bottom: 37/1407
  47514. },
  47515. form: "rabbit"
  47516. },
  47517. rabbitBack: {
  47518. height: math.unit(6, "feet"),
  47519. name: "Back",
  47520. image: {
  47521. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47522. extra: 1375/1358,
  47523. bottom: 43/1418
  47524. },
  47525. form: "rabbit"
  47526. },
  47527. },
  47528. [
  47529. {
  47530. name: "Normal",
  47531. height: math.unit(6, "feet"),
  47532. default: true,
  47533. form: "rabbit"
  47534. },
  47535. {
  47536. name: "Incubus",
  47537. height: math.unit(12, "feet"),
  47538. default: true,
  47539. form: "incubus"
  47540. },
  47541. {
  47542. name: "Demon",
  47543. height: math.unit(36, "feet"),
  47544. default: true,
  47545. form: "demon"
  47546. }
  47547. ],
  47548. {
  47549. "demon": {
  47550. name: "Demon",
  47551. default: true
  47552. },
  47553. "incubus": {
  47554. name: "Incubus",
  47555. },
  47556. "rabbit": {
  47557. name: "Rabbit"
  47558. }
  47559. }
  47560. ))
  47561. characterMakers.push(() => makeCharacter(
  47562. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47563. {
  47564. front: {
  47565. height: math.unit(7 + 5/12, "feet"),
  47566. weight: math.unit(510, "lb"),
  47567. name: "Front",
  47568. image: {
  47569. source: "./media/characters/syrup/front.svg",
  47570. extra: 932/916,
  47571. bottom: 26/958
  47572. }
  47573. },
  47574. },
  47575. [
  47576. {
  47577. name: "Normal",
  47578. height: math.unit(7 + 5/12, "feet"),
  47579. default: true
  47580. },
  47581. {
  47582. name: "Big",
  47583. height: math.unit(50, "feet")
  47584. },
  47585. {
  47586. name: "Macro",
  47587. height: math.unit(300, "feet")
  47588. },
  47589. {
  47590. name: "Megamacro",
  47591. height: math.unit(1, "mile")
  47592. },
  47593. ]
  47594. ))
  47595. characterMakers.push(() => makeCharacter(
  47596. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47597. {
  47598. front: {
  47599. height: math.unit(6 + 9/12, "feet"),
  47600. name: "Front",
  47601. image: {
  47602. source: "./media/characters/zeimne/front.svg",
  47603. extra: 1969/1806,
  47604. bottom: 53/2022
  47605. }
  47606. },
  47607. },
  47608. [
  47609. {
  47610. name: "Normal",
  47611. height: math.unit(6 + 9/12, "feet"),
  47612. default: true
  47613. },
  47614. {
  47615. name: "Giant",
  47616. height: math.unit(550, "feet")
  47617. },
  47618. {
  47619. name: "Mega",
  47620. height: math.unit(3, "miles")
  47621. },
  47622. {
  47623. name: "Giga",
  47624. height: math.unit(250, "miles")
  47625. },
  47626. {
  47627. name: "Tera",
  47628. height: math.unit(1, "AU")
  47629. },
  47630. ]
  47631. ))
  47632. characterMakers.push(() => makeCharacter(
  47633. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47634. {
  47635. front: {
  47636. height: math.unit(5 + 2/12, "feet"),
  47637. name: "Front",
  47638. image: {
  47639. source: "./media/characters/grar/front.svg",
  47640. extra: 1331/1119,
  47641. bottom: 60/1391
  47642. }
  47643. },
  47644. back: {
  47645. height: math.unit(5 + 2/12, "feet"),
  47646. name: "Back",
  47647. image: {
  47648. source: "./media/characters/grar/back.svg",
  47649. extra: 1385/1169,
  47650. bottom: 23/1408
  47651. }
  47652. },
  47653. },
  47654. [
  47655. {
  47656. name: "Normal",
  47657. height: math.unit(5 + 2/12, "feet"),
  47658. default: true
  47659. },
  47660. ]
  47661. ))
  47662. characterMakers.push(() => makeCharacter(
  47663. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47664. {
  47665. front: {
  47666. height: math.unit(13 + 7/12, "feet"),
  47667. weight: math.unit(2200, "lb"),
  47668. name: "Front",
  47669. image: {
  47670. source: "./media/characters/endraya/front.svg",
  47671. extra: 1289/1215,
  47672. bottom: 50/1339
  47673. }
  47674. },
  47675. nude: {
  47676. height: math.unit(13 + 7/12, "feet"),
  47677. weight: math.unit(2200, "lb"),
  47678. name: "Nude",
  47679. image: {
  47680. source: "./media/characters/endraya/nude.svg",
  47681. extra: 1247/1171,
  47682. bottom: 40/1287
  47683. }
  47684. },
  47685. head: {
  47686. height: math.unit(2.6, "feet"),
  47687. name: "Head",
  47688. image: {
  47689. source: "./media/characters/endraya/head.svg"
  47690. }
  47691. },
  47692. slit: {
  47693. height: math.unit(3.4, "feet"),
  47694. name: "Slit",
  47695. image: {
  47696. source: "./media/characters/endraya/slit.svg"
  47697. }
  47698. },
  47699. },
  47700. [
  47701. {
  47702. name: "Normal",
  47703. height: math.unit(13 + 7/12, "feet"),
  47704. default: true
  47705. },
  47706. {
  47707. name: "Macro",
  47708. height: math.unit(200, "feet")
  47709. },
  47710. ]
  47711. ))
  47712. characterMakers.push(() => makeCharacter(
  47713. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47714. {
  47715. front: {
  47716. height: math.unit(1.81, "meters"),
  47717. weight: math.unit(69, "kg"),
  47718. name: "Front",
  47719. image: {
  47720. source: "./media/characters/rodryana/front.svg",
  47721. extra: 2002/1921,
  47722. bottom: 53/2055
  47723. }
  47724. },
  47725. back: {
  47726. height: math.unit(1.81, "meters"),
  47727. weight: math.unit(69, "kg"),
  47728. name: "Back",
  47729. image: {
  47730. source: "./media/characters/rodryana/back.svg",
  47731. extra: 1993/1926,
  47732. bottom: 48/2041
  47733. }
  47734. },
  47735. maw: {
  47736. height: math.unit(0.19769417475, "meters"),
  47737. name: "Maw",
  47738. image: {
  47739. source: "./media/characters/rodryana/maw.svg"
  47740. }
  47741. },
  47742. slit: {
  47743. height: math.unit(0.31631067961, "meters"),
  47744. name: "Slit",
  47745. image: {
  47746. source: "./media/characters/rodryana/slit.svg"
  47747. }
  47748. },
  47749. },
  47750. [
  47751. {
  47752. name: "Normal",
  47753. height: math.unit(1.81, "meters")
  47754. },
  47755. {
  47756. name: "Mini Macro",
  47757. height: math.unit(181, "meters")
  47758. },
  47759. {
  47760. name: "Macro",
  47761. height: math.unit(452, "meters"),
  47762. default: true
  47763. },
  47764. {
  47765. name: "Mega Macro",
  47766. height: math.unit(1.375, "km")
  47767. },
  47768. {
  47769. name: "Giga Macro",
  47770. height: math.unit(13.575, "km")
  47771. },
  47772. ]
  47773. ))
  47774. characterMakers.push(() => makeCharacter(
  47775. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47776. {
  47777. front: {
  47778. height: math.unit(6, "feet"),
  47779. weight: math.unit(1000, "lb"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/asaya/front.svg",
  47783. extra: 1460/1200,
  47784. bottom: 71/1531
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Normal",
  47791. height: math.unit(8, "km"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47798. {
  47799. front: {
  47800. height: math.unit(3.5, "meters"),
  47801. name: "Front",
  47802. image: {
  47803. source: "./media/characters/sarzu-and-israz/front.svg",
  47804. extra: 1570/1558,
  47805. bottom: 150/1720
  47806. },
  47807. },
  47808. back: {
  47809. height: math.unit(3.5, "meters"),
  47810. name: "Back",
  47811. image: {
  47812. source: "./media/characters/sarzu-and-israz/back.svg",
  47813. extra: 1523/1509,
  47814. bottom: 132/1655
  47815. },
  47816. },
  47817. frontFemale: {
  47818. height: math.unit(3.5, "meters"),
  47819. name: "Front (Female)",
  47820. image: {
  47821. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47822. extra: 1570/1558,
  47823. bottom: 150/1720
  47824. },
  47825. },
  47826. frontHerm: {
  47827. height: math.unit(3.5, "meters"),
  47828. name: "Front (Herm)",
  47829. image: {
  47830. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47831. extra: 1570/1558,
  47832. bottom: 150/1720
  47833. },
  47834. },
  47835. },
  47836. [
  47837. {
  47838. name: "Normal",
  47839. height: math.unit(3.5, "meters"),
  47840. default: true,
  47841. },
  47842. {
  47843. name: "Macro",
  47844. height: math.unit(65.5, "meters"),
  47845. },
  47846. ],
  47847. ))
  47848. characterMakers.push(() => makeCharacter(
  47849. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47850. {
  47851. front: {
  47852. height: math.unit(6, "feet"),
  47853. weight: math.unit(250, "lb"),
  47854. name: "Front",
  47855. image: {
  47856. source: "./media/characters/zenimma/front.svg",
  47857. extra: 1346/1320,
  47858. bottom: 58/1404
  47859. }
  47860. },
  47861. back: {
  47862. height: math.unit(6, "feet"),
  47863. weight: math.unit(250, "lb"),
  47864. name: "Back",
  47865. image: {
  47866. source: "./media/characters/zenimma/back.svg",
  47867. extra: 1324/1308,
  47868. bottom: 44/1368
  47869. }
  47870. },
  47871. dick: {
  47872. height: math.unit(1.44, "feet"),
  47873. name: "Dick",
  47874. image: {
  47875. source: "./media/characters/zenimma/dick.svg"
  47876. }
  47877. },
  47878. },
  47879. [
  47880. {
  47881. name: "Canon Height",
  47882. height: math.unit(66, "miles"),
  47883. default: true
  47884. },
  47885. ]
  47886. ))
  47887. characterMakers.push(() => makeCharacter(
  47888. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47889. {
  47890. nude: {
  47891. height: math.unit(6, "feet"),
  47892. weight: math.unit(150, "lb"),
  47893. name: "Nude",
  47894. image: {
  47895. source: "./media/characters/shavon/nude.svg",
  47896. extra: 1242/1096,
  47897. bottom: 98/1340
  47898. }
  47899. },
  47900. dressed: {
  47901. height: math.unit(6, "feet"),
  47902. weight: math.unit(150, "lb"),
  47903. name: "Dressed",
  47904. image: {
  47905. source: "./media/characters/shavon/dressed.svg",
  47906. extra: 1242/1096,
  47907. bottom: 98/1340
  47908. }
  47909. },
  47910. },
  47911. [
  47912. {
  47913. name: "Macro",
  47914. height: math.unit(255, "feet"),
  47915. default: true
  47916. },
  47917. ]
  47918. ))
  47919. characterMakers.push(() => makeCharacter(
  47920. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47921. {
  47922. front: {
  47923. height: math.unit(6, "feet"),
  47924. name: "Front",
  47925. image: {
  47926. source: "./media/characters/steph/front.svg",
  47927. extra: 1430/1330,
  47928. bottom: 54/1484
  47929. }
  47930. },
  47931. },
  47932. [
  47933. {
  47934. name: "Normal",
  47935. height: math.unit(6, "feet"),
  47936. default: true
  47937. },
  47938. ]
  47939. ))
  47940. characterMakers.push(() => makeCharacter(
  47941. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47942. {
  47943. front: {
  47944. height: math.unit(9, "feet"),
  47945. weight: math.unit(400, "lb"),
  47946. name: "Front",
  47947. image: {
  47948. source: "./media/characters/kil'aman/front.svg",
  47949. extra: 1210/1159,
  47950. bottom: 109/1319
  47951. }
  47952. },
  47953. head: {
  47954. height: math.unit(2.14, "feet"),
  47955. name: "Head",
  47956. image: {
  47957. source: "./media/characters/kil'aman/head.svg"
  47958. }
  47959. },
  47960. maw: {
  47961. height: math.unit(1.21, "feet"),
  47962. name: "Maw",
  47963. image: {
  47964. source: "./media/characters/kil'aman/maw.svg"
  47965. }
  47966. },
  47967. foot: {
  47968. height: math.unit(1.7, "feet"),
  47969. name: "Foot",
  47970. image: {
  47971. source: "./media/characters/kil'aman/foot.svg"
  47972. }
  47973. },
  47974. dick: {
  47975. height: math.unit(2.1, "feet"),
  47976. name: "Dick",
  47977. image: {
  47978. source: "./media/characters/kil'aman/dick.svg"
  47979. }
  47980. },
  47981. },
  47982. [
  47983. {
  47984. name: "Normal",
  47985. height: math.unit(9, "feet")
  47986. },
  47987. {
  47988. name: "Canon Height",
  47989. height: math.unit(10, "miles"),
  47990. default: true
  47991. },
  47992. {
  47993. name: "Maximum",
  47994. height: math.unit(6e9, "miles")
  47995. },
  47996. ]
  47997. ))
  47998. characterMakers.push(() => makeCharacter(
  47999. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48000. {
  48001. front: {
  48002. height: math.unit(90, "feet"),
  48003. weight: math.unit(675000, "lb"),
  48004. name: "Front",
  48005. image: {
  48006. source: "./media/characters/qadan/front.svg",
  48007. extra: 1012/1004,
  48008. bottom: 78/1090
  48009. }
  48010. },
  48011. back: {
  48012. height: math.unit(90, "feet"),
  48013. weight: math.unit(675000, "lb"),
  48014. name: "Back",
  48015. image: {
  48016. source: "./media/characters/qadan/back.svg",
  48017. extra: 1042/1031,
  48018. bottom: 55/1097
  48019. }
  48020. },
  48021. armored: {
  48022. height: math.unit(90, "feet"),
  48023. weight: math.unit(675000, "lb"),
  48024. name: "Armored",
  48025. image: {
  48026. source: "./media/characters/qadan/armored.svg",
  48027. extra: 1047/1037,
  48028. bottom: 48/1095
  48029. }
  48030. },
  48031. },
  48032. [
  48033. {
  48034. name: "Normal",
  48035. height: math.unit(90, "feet"),
  48036. default: true
  48037. },
  48038. ]
  48039. ))
  48040. characterMakers.push(() => makeCharacter(
  48041. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48042. {
  48043. front: {
  48044. height: math.unit(6, "feet"),
  48045. weight: math.unit(225, "lb"),
  48046. name: "Front",
  48047. image: {
  48048. source: "./media/characters/brooke/front.svg",
  48049. extra: 1050/1010,
  48050. bottom: 66/1116
  48051. }
  48052. },
  48053. back: {
  48054. height: math.unit(6, "feet"),
  48055. weight: math.unit(225, "lb"),
  48056. name: "Back",
  48057. image: {
  48058. source: "./media/characters/brooke/back.svg",
  48059. extra: 1053/1013,
  48060. bottom: 41/1094
  48061. }
  48062. },
  48063. dressed: {
  48064. height: math.unit(6, "feet"),
  48065. weight: math.unit(225, "lb"),
  48066. name: "Dressed",
  48067. image: {
  48068. source: "./media/characters/brooke/dressed.svg",
  48069. extra: 1050/1010,
  48070. bottom: 66/1116
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Canon Height",
  48077. height: math.unit(500, "miles"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(6 + 2/12, "feet"),
  48087. weight: math.unit(210, "lb"),
  48088. name: "Front",
  48089. image: {
  48090. source: "./media/characters/wubs/front.svg",
  48091. extra: 1345/1325,
  48092. bottom: 70/1415
  48093. }
  48094. },
  48095. back: {
  48096. height: math.unit(6 + 2/12, "feet"),
  48097. weight: math.unit(210, "lb"),
  48098. name: "Back",
  48099. image: {
  48100. source: "./media/characters/wubs/back.svg",
  48101. extra: 1296/1275,
  48102. bottom: 58/1354
  48103. }
  48104. },
  48105. },
  48106. [
  48107. {
  48108. name: "Normal",
  48109. height: math.unit(6 + 2/12, "feet"),
  48110. default: true
  48111. },
  48112. {
  48113. name: "Macro",
  48114. height: math.unit(1000, "feet")
  48115. },
  48116. {
  48117. name: "Megamacro",
  48118. height: math.unit(1, "mile")
  48119. },
  48120. ]
  48121. ))
  48122. characterMakers.push(() => makeCharacter(
  48123. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48124. {
  48125. front: {
  48126. height: math.unit(4, "feet"),
  48127. weight: math.unit(120, "lb"),
  48128. name: "Front",
  48129. image: {
  48130. source: "./media/characters/blue/front.svg",
  48131. extra: 1636/1525,
  48132. bottom: 43/1679
  48133. }
  48134. },
  48135. back: {
  48136. height: math.unit(4, "feet"),
  48137. weight: math.unit(120, "lb"),
  48138. name: "Back",
  48139. image: {
  48140. source: "./media/characters/blue/back.svg",
  48141. extra: 1660/1560,
  48142. bottom: 57/1717
  48143. }
  48144. },
  48145. paws: {
  48146. height: math.unit(0.826, "feet"),
  48147. name: "Paws",
  48148. image: {
  48149. source: "./media/characters/blue/paws.svg"
  48150. }
  48151. },
  48152. },
  48153. [
  48154. {
  48155. name: "Micro",
  48156. height: math.unit(3, "inches")
  48157. },
  48158. {
  48159. name: "Normal",
  48160. height: math.unit(4, "feet"),
  48161. default: true
  48162. },
  48163. {
  48164. name: "Femenine Form",
  48165. height: math.unit(14, "feet")
  48166. },
  48167. {
  48168. name: "Werebat Form",
  48169. height: math.unit(18, "feet")
  48170. },
  48171. ]
  48172. ))
  48173. characterMakers.push(() => makeCharacter(
  48174. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48175. {
  48176. female: {
  48177. height: math.unit(7 + 4/12, "feet"),
  48178. weight: math.unit(243, "lb"),
  48179. name: "Female",
  48180. image: {
  48181. source: "./media/characters/kaya/female.svg",
  48182. extra: 975/898,
  48183. bottom: 34/1009
  48184. }
  48185. },
  48186. herm: {
  48187. height: math.unit(7 + 4/12, "feet"),
  48188. weight: math.unit(243, "lb"),
  48189. name: "Herm",
  48190. image: {
  48191. source: "./media/characters/kaya/herm.svg",
  48192. extra: 975/898,
  48193. bottom: 34/1009
  48194. }
  48195. },
  48196. },
  48197. [
  48198. {
  48199. name: "Normal",
  48200. height: math.unit(7 + 4/12, "feet"),
  48201. default: true
  48202. },
  48203. ]
  48204. ))
  48205. characterMakers.push(() => makeCharacter(
  48206. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48207. {
  48208. female: {
  48209. height: math.unit(9 + 4/12, "feet"),
  48210. weight: math.unit(398, "lb"),
  48211. name: "Female",
  48212. image: {
  48213. source: "./media/characters/kassandra/female.svg",
  48214. extra: 908/839,
  48215. bottom: 61/969
  48216. }
  48217. },
  48218. intersex: {
  48219. height: math.unit(9 + 4/12, "feet"),
  48220. weight: math.unit(398, "lb"),
  48221. name: "Intersex",
  48222. image: {
  48223. source: "./media/characters/kassandra/intersex.svg",
  48224. extra: 908/839,
  48225. bottom: 61/969
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Normal",
  48232. height: math.unit(9 + 4/12, "feet"),
  48233. default: true
  48234. },
  48235. ]
  48236. ))
  48237. characterMakers.push(() => makeCharacter(
  48238. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48239. {
  48240. front: {
  48241. height: math.unit(3, "meters"),
  48242. name: "Front",
  48243. image: {
  48244. source: "./media/characters/amy/front.svg",
  48245. extra: 1380/1343,
  48246. bottom: 70/1450
  48247. }
  48248. },
  48249. back: {
  48250. height: math.unit(3, "meters"),
  48251. name: "Back",
  48252. image: {
  48253. source: "./media/characters/amy/back.svg",
  48254. extra: 1380/1347,
  48255. bottom: 66/1446
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(3, "meters"),
  48263. default: true
  48264. },
  48265. ]
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48269. {
  48270. side: {
  48271. height: math.unit(47, "cm"),
  48272. weight: math.unit(10.8, "kg"),
  48273. name: "Side",
  48274. image: {
  48275. source: "./media/characters/alphaschakal/side.svg",
  48276. extra: 1058/568,
  48277. bottom: 62/1120
  48278. }
  48279. },
  48280. back: {
  48281. height: math.unit(78, "cm"),
  48282. weight: math.unit(10.8, "kg"),
  48283. name: "Back",
  48284. image: {
  48285. source: "./media/characters/alphaschakal/back.svg",
  48286. extra: 1102/942,
  48287. bottom: 185/1287
  48288. }
  48289. },
  48290. head: {
  48291. height: math.unit(28, "cm"),
  48292. name: "Head",
  48293. image: {
  48294. source: "./media/characters/alphaschakal/head.svg",
  48295. extra: 696/508,
  48296. bottom: 0/696
  48297. }
  48298. },
  48299. paw: {
  48300. height: math.unit(16, "cm"),
  48301. name: "Paw",
  48302. image: {
  48303. source: "./media/characters/alphaschakal/paw.svg"
  48304. }
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Normal",
  48310. height: math.unit(47, "cm"),
  48311. default: true
  48312. },
  48313. {
  48314. name: "Macro",
  48315. height: math.unit(340, "cm")
  48316. },
  48317. ]
  48318. ))
  48319. characterMakers.push(() => makeCharacter(
  48320. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48321. {
  48322. front: {
  48323. height: math.unit(36, "earths"),
  48324. name: "Front",
  48325. image: {
  48326. source: "./media/characters/ecobyss/front.svg",
  48327. extra: 1282/1215,
  48328. bottom: 11/1293
  48329. }
  48330. },
  48331. back: {
  48332. height: math.unit(36, "earths"),
  48333. name: "Back",
  48334. image: {
  48335. source: "./media/characters/ecobyss/back.svg",
  48336. extra: 1291/1222,
  48337. bottom: 8/1299
  48338. }
  48339. },
  48340. },
  48341. [
  48342. {
  48343. name: "Normal",
  48344. height: math.unit(36, "earths"),
  48345. default: true
  48346. },
  48347. ]
  48348. ))
  48349. characterMakers.push(() => makeCharacter(
  48350. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48351. {
  48352. front: {
  48353. height: math.unit(12, "feet"),
  48354. name: "Front",
  48355. image: {
  48356. source: "./media/characters/vasuk/front.svg",
  48357. extra: 1326/1207,
  48358. bottom: 64/1390
  48359. }
  48360. },
  48361. },
  48362. [
  48363. {
  48364. name: "Normal",
  48365. height: math.unit(12, "feet"),
  48366. default: true
  48367. },
  48368. ]
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48372. {
  48373. side: {
  48374. height: math.unit(100, "feet"),
  48375. name: "Side",
  48376. image: {
  48377. source: "./media/characters/linneaus/side.svg",
  48378. extra: 987/807,
  48379. bottom: 47/1034
  48380. }
  48381. },
  48382. },
  48383. [
  48384. {
  48385. name: "Macro",
  48386. height: math.unit(100, "feet"),
  48387. default: true
  48388. },
  48389. ]
  48390. ))
  48391. characterMakers.push(() => makeCharacter(
  48392. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48393. {
  48394. front: {
  48395. height: math.unit(8, "feet"),
  48396. weight: math.unit(1200, "lb"),
  48397. name: "Front",
  48398. image: {
  48399. source: "./media/characters/nyterious-daligdig/front.svg",
  48400. extra: 1284/1094,
  48401. bottom: 84/1368
  48402. }
  48403. },
  48404. back: {
  48405. height: math.unit(8, "feet"),
  48406. weight: math.unit(1200, "lb"),
  48407. name: "Back",
  48408. image: {
  48409. source: "./media/characters/nyterious-daligdig/back.svg",
  48410. extra: 1301/1121,
  48411. bottom: 129/1430
  48412. }
  48413. },
  48414. mouth: {
  48415. height: math.unit(1.464, "feet"),
  48416. name: "Mouth",
  48417. image: {
  48418. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48419. }
  48420. },
  48421. },
  48422. [
  48423. {
  48424. name: "Small",
  48425. height: math.unit(8, "feet"),
  48426. default: true
  48427. },
  48428. {
  48429. name: "Normal",
  48430. height: math.unit(15, "feet")
  48431. },
  48432. {
  48433. name: "Macro",
  48434. height: math.unit(90, "feet")
  48435. },
  48436. ]
  48437. ))
  48438. characterMakers.push(() => makeCharacter(
  48439. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48440. {
  48441. front: {
  48442. height: math.unit(7 + 4/12, "feet"),
  48443. weight: math.unit(252, "lb"),
  48444. name: "Front",
  48445. image: {
  48446. source: "./media/characters/bandel/front.svg",
  48447. extra: 1946/1775,
  48448. bottom: 26/1972
  48449. }
  48450. },
  48451. back: {
  48452. height: math.unit(7 + 4/12, "feet"),
  48453. weight: math.unit(252, "lb"),
  48454. name: "Back",
  48455. image: {
  48456. source: "./media/characters/bandel/back.svg",
  48457. extra: 1940/1770,
  48458. bottom: 25/1965
  48459. }
  48460. },
  48461. maw: {
  48462. height: math.unit(2.15, "feet"),
  48463. name: "Maw",
  48464. image: {
  48465. source: "./media/characters/bandel/maw.svg"
  48466. }
  48467. },
  48468. stomach: {
  48469. height: math.unit(1.95, "feet"),
  48470. name: "Stomach",
  48471. image: {
  48472. source: "./media/characters/bandel/stomach.svg"
  48473. }
  48474. },
  48475. },
  48476. [
  48477. {
  48478. name: "Normal",
  48479. height: math.unit(7 + 4/12, "feet"),
  48480. default: true
  48481. },
  48482. ]
  48483. ))
  48484. characterMakers.push(() => makeCharacter(
  48485. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48486. {
  48487. front: {
  48488. height: math.unit(10 + 5/12, "feet"),
  48489. weight: math.unit(773.5, "kg"),
  48490. name: "Front",
  48491. image: {
  48492. source: "./media/characters/zed/front.svg",
  48493. extra: 987/941,
  48494. bottom: 52/1039
  48495. }
  48496. },
  48497. },
  48498. [
  48499. {
  48500. name: "Short",
  48501. height: math.unit(5 + 4/12, "feet")
  48502. },
  48503. {
  48504. name: "Average",
  48505. height: math.unit(10 + 5/12, "feet"),
  48506. default: true
  48507. },
  48508. {
  48509. name: "Mini-Macro",
  48510. height: math.unit(24 + 9/12, "feet")
  48511. },
  48512. {
  48513. name: "Macro",
  48514. height: math.unit(249, "feet")
  48515. },
  48516. {
  48517. name: "Mega-Macro",
  48518. height: math.unit(12490, "feet")
  48519. },
  48520. {
  48521. name: "Giga-Macro",
  48522. height: math.unit(24.9, "miles")
  48523. },
  48524. {
  48525. name: "Tera-Macro",
  48526. height: math.unit(24900, "miles")
  48527. },
  48528. {
  48529. name: "Cosmic Scale",
  48530. height: math.unit(38.9, "lightyears")
  48531. },
  48532. {
  48533. name: "Universal Scale",
  48534. height: math.unit(138e12, "lightyears")
  48535. },
  48536. ]
  48537. ))
  48538. characterMakers.push(() => makeCharacter(
  48539. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48540. {
  48541. front: {
  48542. height: math.unit(1561, "inches"),
  48543. name: "Front",
  48544. image: {
  48545. source: "./media/characters/ivan/front.svg",
  48546. extra: 1126/1071,
  48547. bottom: 26/1152
  48548. }
  48549. },
  48550. back: {
  48551. height: math.unit(1561, "inches"),
  48552. name: "Back",
  48553. image: {
  48554. source: "./media/characters/ivan/back.svg",
  48555. extra: 1134/1079,
  48556. bottom: 30/1164
  48557. }
  48558. },
  48559. },
  48560. [
  48561. {
  48562. name: "Normal",
  48563. height: math.unit(1561, "inches"),
  48564. default: true
  48565. },
  48566. ]
  48567. ))
  48568. characterMakers.push(() => makeCharacter(
  48569. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48570. {
  48571. front: {
  48572. height: math.unit(5 + 7/12, "feet"),
  48573. weight: math.unit(150, "lb"),
  48574. name: "Front",
  48575. image: {
  48576. source: "./media/characters/robin-arctic-hare/front.svg",
  48577. extra: 1148/974,
  48578. bottom: 20/1168
  48579. }
  48580. },
  48581. },
  48582. [
  48583. {
  48584. name: "Normal",
  48585. height: math.unit(5 + 7/12, "feet"),
  48586. default: true
  48587. },
  48588. ]
  48589. ))
  48590. characterMakers.push(() => makeCharacter(
  48591. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48592. {
  48593. side: {
  48594. height: math.unit(5, "feet"),
  48595. name: "Side",
  48596. image: {
  48597. source: "./media/characters/birch/side.svg",
  48598. extra: 985/796,
  48599. bottom: 111/1096
  48600. }
  48601. },
  48602. },
  48603. [
  48604. {
  48605. name: "Normal",
  48606. height: math.unit(5, "feet"),
  48607. default: true
  48608. },
  48609. ]
  48610. ))
  48611. characterMakers.push(() => makeCharacter(
  48612. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48613. {
  48614. front: {
  48615. height: math.unit(4, "feet"),
  48616. name: "Front",
  48617. image: {
  48618. source: "./media/characters/rasp/front.svg",
  48619. extra: 561/478,
  48620. bottom: 74/635
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Normal",
  48627. height: math.unit(4, "feet"),
  48628. default: true
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48634. {
  48635. front: {
  48636. height: math.unit(4 + 6/12, "feet"),
  48637. name: "Front",
  48638. image: {
  48639. source: "./media/characters/agatha/front.svg",
  48640. extra: 947/933,
  48641. bottom: 42/989
  48642. }
  48643. },
  48644. back: {
  48645. height: math.unit(4 + 6/12, "feet"),
  48646. name: "Back",
  48647. image: {
  48648. source: "./media/characters/agatha/back.svg",
  48649. extra: 935/922,
  48650. bottom: 48/983
  48651. }
  48652. },
  48653. },
  48654. [
  48655. {
  48656. name: "Normal",
  48657. height: math.unit(4 + 6 /12, "feet"),
  48658. default: true
  48659. },
  48660. {
  48661. name: "Max Size",
  48662. height: math.unit(500, "feet")
  48663. },
  48664. ]
  48665. ))
  48666. characterMakers.push(() => makeCharacter(
  48667. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48668. {
  48669. side: {
  48670. height: math.unit(30, "feet"),
  48671. name: "Side",
  48672. image: {
  48673. source: "./media/characters/roggy/side.svg",
  48674. extra: 909/643,
  48675. bottom: 63/972
  48676. }
  48677. },
  48678. lounging: {
  48679. height: math.unit(20, "feet"),
  48680. name: "Lounging",
  48681. image: {
  48682. source: "./media/characters/roggy/lounging.svg",
  48683. extra: 643/479,
  48684. bottom: 145/788
  48685. }
  48686. },
  48687. handpaw: {
  48688. height: math.unit(13.1, "feet"),
  48689. name: "Handpaw",
  48690. image: {
  48691. source: "./media/characters/roggy/handpaw.svg"
  48692. }
  48693. },
  48694. footpaw: {
  48695. height: math.unit(15.8, "feet"),
  48696. name: "Footpaw",
  48697. image: {
  48698. source: "./media/characters/roggy/footpaw.svg"
  48699. }
  48700. },
  48701. },
  48702. [
  48703. {
  48704. name: "Menacing",
  48705. height: math.unit(30, "feet"),
  48706. default: true
  48707. },
  48708. ]
  48709. ))
  48710. characterMakers.push(() => makeCharacter(
  48711. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48712. {
  48713. front: {
  48714. height: math.unit(5 + 7/12, "feet"),
  48715. weight: math.unit(135, "lb"),
  48716. name: "Front",
  48717. image: {
  48718. source: "./media/characters/naomi/front.svg",
  48719. extra: 1209/1154,
  48720. bottom: 129/1338
  48721. }
  48722. },
  48723. back: {
  48724. height: math.unit(5 + 7/12, "feet"),
  48725. weight: math.unit(135, "lb"),
  48726. name: "Back",
  48727. image: {
  48728. source: "./media/characters/naomi/back.svg",
  48729. extra: 1252/1190,
  48730. bottom: 23/1275
  48731. }
  48732. },
  48733. },
  48734. [
  48735. {
  48736. name: "Normal",
  48737. height: math.unit(5 + 7 /12, "feet"),
  48738. default: true
  48739. },
  48740. ]
  48741. ))
  48742. characterMakers.push(() => makeCharacter(
  48743. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48744. {
  48745. side: {
  48746. height: math.unit(35, "meters"),
  48747. name: "Side",
  48748. image: {
  48749. source: "./media/characters/kimpi/side.svg",
  48750. extra: 419/382,
  48751. bottom: 63/482
  48752. }
  48753. },
  48754. hand: {
  48755. height: math.unit(8.96, "meters"),
  48756. name: "Hand",
  48757. image: {
  48758. source: "./media/characters/kimpi/hand.svg"
  48759. }
  48760. },
  48761. },
  48762. [
  48763. {
  48764. name: "Normal",
  48765. height: math.unit(35, "meters"),
  48766. default: true
  48767. },
  48768. ]
  48769. ))
  48770. characterMakers.push(() => makeCharacter(
  48771. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48772. {
  48773. front: {
  48774. height: math.unit(4 + 4/12, "feet"),
  48775. name: "Front",
  48776. image: {
  48777. source: "./media/characters/pepper-purrloin/front.svg",
  48778. extra: 1141/1024,
  48779. bottom: 21/1162
  48780. }
  48781. },
  48782. },
  48783. [
  48784. {
  48785. name: "Normal",
  48786. height: math.unit(4 + 4/12, "feet"),
  48787. default: true
  48788. },
  48789. ]
  48790. ))
  48791. characterMakers.push(() => makeCharacter(
  48792. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48793. {
  48794. front: {
  48795. height: math.unit(6 + 2/12, "feet"),
  48796. name: "Front",
  48797. image: {
  48798. source: "./media/characters/raphael/front.svg",
  48799. extra: 1101/962,
  48800. bottom: 59/1160
  48801. }
  48802. },
  48803. },
  48804. [
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(6 + 2/12, "feet"),
  48808. default: true
  48809. },
  48810. ]
  48811. ))
  48812. characterMakers.push(() => makeCharacter(
  48813. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48814. {
  48815. front: {
  48816. height: math.unit(6, "feet"),
  48817. weight: math.unit(150, "lb"),
  48818. name: "Front",
  48819. image: {
  48820. source: "./media/characters/victor-williams/front.svg",
  48821. extra: 1894/1825,
  48822. bottom: 67/1961
  48823. }
  48824. },
  48825. },
  48826. [
  48827. {
  48828. name: "Normal",
  48829. height: math.unit(6, "feet"),
  48830. default: true
  48831. },
  48832. ]
  48833. ))
  48834. characterMakers.push(() => makeCharacter(
  48835. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48836. {
  48837. front: {
  48838. height: math.unit(5 + 8/12, "feet"),
  48839. weight: math.unit(150, "lb"),
  48840. name: "Front",
  48841. image: {
  48842. source: "./media/characters/rachel/front.svg",
  48843. extra: 1902/1787,
  48844. bottom: 46/1948
  48845. }
  48846. },
  48847. },
  48848. [
  48849. {
  48850. name: "Base Height",
  48851. height: math.unit(5 + 8/12, "feet"),
  48852. default: true
  48853. },
  48854. {
  48855. name: "Macro",
  48856. height: math.unit(200, "feet")
  48857. },
  48858. {
  48859. name: "Mega Macro",
  48860. height: math.unit(1, "mile")
  48861. },
  48862. {
  48863. name: "Giga Macro",
  48864. height: math.unit(1500, "miles")
  48865. },
  48866. {
  48867. name: "Tera Macro",
  48868. height: math.unit(8000, "miles")
  48869. },
  48870. {
  48871. name: "Tera Macro+",
  48872. height: math.unit(2e5, "miles")
  48873. },
  48874. ]
  48875. ))
  48876. characterMakers.push(() => makeCharacter(
  48877. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48878. {
  48879. front: {
  48880. height: math.unit(6.5, "feet"),
  48881. name: "Front",
  48882. image: {
  48883. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48884. extra: 860/819,
  48885. bottom: 307/1167
  48886. }
  48887. },
  48888. back: {
  48889. height: math.unit(6.5, "feet"),
  48890. name: "Back",
  48891. image: {
  48892. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48893. extra: 880/837,
  48894. bottom: 395/1275
  48895. }
  48896. },
  48897. sleeping: {
  48898. height: math.unit(2.79, "feet"),
  48899. name: "Sleeping",
  48900. image: {
  48901. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48902. extra: 465/383,
  48903. bottom: 263/728
  48904. }
  48905. },
  48906. maw: {
  48907. height: math.unit(2.52, "feet"),
  48908. name: "Maw",
  48909. image: {
  48910. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48911. }
  48912. },
  48913. },
  48914. [
  48915. {
  48916. name: "Normal",
  48917. height: math.unit(6.5, "feet"),
  48918. default: true
  48919. },
  48920. ]
  48921. ))
  48922. characterMakers.push(() => makeCharacter(
  48923. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48924. {
  48925. front: {
  48926. height: math.unit(5, "feet"),
  48927. name: "Front",
  48928. image: {
  48929. source: "./media/characters/nova-nerium/front.svg",
  48930. extra: 1548/1392,
  48931. bottom: 374/1922
  48932. }
  48933. },
  48934. back: {
  48935. height: math.unit(5, "feet"),
  48936. name: "Back",
  48937. image: {
  48938. source: "./media/characters/nova-nerium/back.svg",
  48939. extra: 1658/1468,
  48940. bottom: 257/1915
  48941. }
  48942. },
  48943. },
  48944. [
  48945. {
  48946. name: "Normal",
  48947. height: math.unit(5, "feet"),
  48948. default: true
  48949. },
  48950. ]
  48951. ))
  48952. characterMakers.push(() => makeCharacter(
  48953. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48954. {
  48955. front: {
  48956. height: math.unit(5 + 4/12, "feet"),
  48957. name: "Front",
  48958. image: {
  48959. source: "./media/characters/ashe-pyriph/front.svg",
  48960. extra: 1935/1747,
  48961. bottom: 60/1995
  48962. }
  48963. },
  48964. },
  48965. [
  48966. {
  48967. name: "Normal",
  48968. height: math.unit(5 + 4/12, "feet"),
  48969. default: true
  48970. },
  48971. ]
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48975. {
  48976. front: {
  48977. height: math.unit(8.7, "feet"),
  48978. name: "Front",
  48979. image: {
  48980. source: "./media/characters/flicker-wisp/front.svg",
  48981. extra: 1835/1613,
  48982. bottom: 449/2284
  48983. }
  48984. },
  48985. side: {
  48986. height: math.unit(8.7, "feet"),
  48987. name: "Side",
  48988. image: {
  48989. source: "./media/characters/flicker-wisp/side.svg",
  48990. extra: 1841/1642,
  48991. bottom: 336/2177
  48992. },
  48993. default: true
  48994. },
  48995. maw: {
  48996. height: math.unit(3.35, "feet"),
  48997. name: "Maw",
  48998. image: {
  48999. source: "./media/characters/flicker-wisp/maw.svg",
  49000. extra: 2338/1506,
  49001. bottom: 0/2338
  49002. }
  49003. },
  49004. ovipositor: {
  49005. height: math.unit(4.95, "feet"),
  49006. name: "Ovipositor",
  49007. image: {
  49008. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49009. }
  49010. },
  49011. egg: {
  49012. height: math.unit(0.385, "feet"),
  49013. weight: math.unit(2, "lb"),
  49014. name: "Egg",
  49015. image: {
  49016. source: "./media/characters/flicker-wisp/egg.svg"
  49017. }
  49018. },
  49019. },
  49020. [
  49021. {
  49022. name: "Normal",
  49023. height: math.unit(8.7, "feet"),
  49024. default: true
  49025. },
  49026. ]
  49027. ))
  49028. characterMakers.push(() => makeCharacter(
  49029. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49030. {
  49031. side: {
  49032. height: math.unit(11, "feet"),
  49033. name: "Side",
  49034. image: {
  49035. source: "./media/characters/faefnul/side.svg",
  49036. extra: 1100/1007,
  49037. bottom: 0/1100
  49038. }
  49039. },
  49040. },
  49041. [
  49042. {
  49043. name: "Normal",
  49044. height: math.unit(11, "feet"),
  49045. default: true
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49051. {
  49052. front: {
  49053. height: math.unit(6 + 2/12, "feet"),
  49054. name: "Front",
  49055. image: {
  49056. source: "./media/characters/shady/front.svg",
  49057. extra: 502/461,
  49058. bottom: 9/511
  49059. }
  49060. },
  49061. kneeling: {
  49062. height: math.unit(4.6, "feet"),
  49063. name: "Kneeling",
  49064. image: {
  49065. source: "./media/characters/shady/kneeling.svg",
  49066. extra: 1328/1219,
  49067. bottom: 117/1445
  49068. }
  49069. },
  49070. maw: {
  49071. height: math.unit(2, "feet"),
  49072. name: "Maw",
  49073. image: {
  49074. source: "./media/characters/shady/maw.svg"
  49075. }
  49076. },
  49077. },
  49078. [
  49079. {
  49080. name: "Nano",
  49081. height: math.unit(1, "mm")
  49082. },
  49083. {
  49084. name: "Micro",
  49085. height: math.unit(12, "mm")
  49086. },
  49087. {
  49088. name: "Tiny",
  49089. height: math.unit(3, "inches")
  49090. },
  49091. {
  49092. name: "Normal",
  49093. height: math.unit(6 + 2/12, "feet"),
  49094. default: true
  49095. },
  49096. {
  49097. name: "Big",
  49098. height: math.unit(15, "feet")
  49099. },
  49100. {
  49101. name: "Macro",
  49102. height: math.unit(150, "feet")
  49103. },
  49104. {
  49105. name: "Titanic",
  49106. height: math.unit(500, "feet")
  49107. },
  49108. ]
  49109. ))
  49110. characterMakers.push(() => makeCharacter(
  49111. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49112. {
  49113. front: {
  49114. height: math.unit(12, "feet"),
  49115. name: "Front",
  49116. image: {
  49117. source: "./media/characters/fenrir/front.svg",
  49118. extra: 968/875,
  49119. bottom: 22/990
  49120. }
  49121. },
  49122. },
  49123. [
  49124. {
  49125. name: "Big",
  49126. height: math.unit(12, "feet"),
  49127. default: true
  49128. },
  49129. ]
  49130. ))
  49131. characterMakers.push(() => makeCharacter(
  49132. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49133. {
  49134. front: {
  49135. height: math.unit(5 + 4/12, "feet"),
  49136. name: "Front",
  49137. image: {
  49138. source: "./media/characters/makar/front.svg",
  49139. extra: 1181/1112,
  49140. bottom: 78/1259
  49141. }
  49142. },
  49143. },
  49144. [
  49145. {
  49146. name: "Normal",
  49147. height: math.unit(5 + 4/12, "feet"),
  49148. default: true
  49149. },
  49150. ]
  49151. ))
  49152. characterMakers.push(() => makeCharacter(
  49153. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49154. {
  49155. front: {
  49156. height: math.unit(5 + 7/12, "feet"),
  49157. name: "Front",
  49158. image: {
  49159. source: "./media/characters/callow/front.svg",
  49160. extra: 1482/1304,
  49161. bottom: 23/1505
  49162. }
  49163. },
  49164. back: {
  49165. height: math.unit(5 + 7/12, "feet"),
  49166. name: "Back",
  49167. image: {
  49168. source: "./media/characters/callow/back.svg",
  49169. extra: 1484/1296,
  49170. bottom: 25/1509
  49171. }
  49172. },
  49173. },
  49174. [
  49175. {
  49176. name: "Micro",
  49177. height: math.unit(3, "inches"),
  49178. default: true
  49179. },
  49180. {
  49181. name: "Normal",
  49182. height: math.unit(5 + 7/12, "feet")
  49183. },
  49184. ]
  49185. ))
  49186. characterMakers.push(() => makeCharacter(
  49187. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49188. {
  49189. front: {
  49190. height: math.unit(6 + 2/12, "feet"),
  49191. name: "Front",
  49192. image: {
  49193. source: "./media/characters/natel/front.svg",
  49194. extra: 1833/1692,
  49195. bottom: 166/1999
  49196. }
  49197. },
  49198. },
  49199. [
  49200. {
  49201. name: "Normal",
  49202. height: math.unit(6 + 2/12, "feet"),
  49203. default: true
  49204. },
  49205. ]
  49206. ))
  49207. characterMakers.push(() => makeCharacter(
  49208. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49209. {
  49210. front: {
  49211. height: math.unit(1.75, "meters"),
  49212. name: "Front",
  49213. image: {
  49214. source: "./media/characters/misu/front.svg",
  49215. extra: 1690/1558,
  49216. bottom: 234/1924
  49217. }
  49218. },
  49219. back: {
  49220. height: math.unit(1.75, "meters"),
  49221. name: "Back",
  49222. image: {
  49223. source: "./media/characters/misu/back.svg",
  49224. extra: 1762/1618,
  49225. bottom: 146/1908
  49226. }
  49227. },
  49228. frontNude: {
  49229. height: math.unit(1.75, "meters"),
  49230. name: "Front (Nude)",
  49231. image: {
  49232. source: "./media/characters/misu/front-nude.svg",
  49233. extra: 1690/1558,
  49234. bottom: 234/1924
  49235. }
  49236. },
  49237. backNude: {
  49238. height: math.unit(1.75, "meters"),
  49239. name: "Back (Nude)",
  49240. image: {
  49241. source: "./media/characters/misu/back-nude.svg",
  49242. extra: 1762/1618,
  49243. bottom: 146/1908
  49244. }
  49245. },
  49246. frontErect: {
  49247. height: math.unit(1.75, "meters"),
  49248. name: "Front (Erect)",
  49249. image: {
  49250. source: "./media/characters/misu/front-erect.svg",
  49251. extra: 1690/1558,
  49252. bottom: 234/1924
  49253. }
  49254. },
  49255. maw: {
  49256. height: math.unit(0.47, "meters"),
  49257. name: "Maw",
  49258. image: {
  49259. source: "./media/characters/misu/maw.svg"
  49260. }
  49261. },
  49262. head: {
  49263. height: math.unit(0.35, "meters"),
  49264. name: "Head",
  49265. image: {
  49266. source: "./media/characters/misu/head.svg"
  49267. }
  49268. },
  49269. rear: {
  49270. height: math.unit(0.47, "meters"),
  49271. name: "Rear",
  49272. image: {
  49273. source: "./media/characters/misu/rear.svg"
  49274. }
  49275. },
  49276. },
  49277. [
  49278. {
  49279. name: "Normal",
  49280. height: math.unit(1.75, "meters")
  49281. },
  49282. {
  49283. name: "Not good for the people",
  49284. height: math.unit(42, "meters")
  49285. },
  49286. {
  49287. name: "Not good for the neighborhood",
  49288. height: math.unit(135, "meters")
  49289. },
  49290. {
  49291. name: "Bit bigger problem",
  49292. height: math.unit(380, "meters"),
  49293. default: true
  49294. },
  49295. {
  49296. name: "Not good for the city",
  49297. height: math.unit(1.5, "km")
  49298. },
  49299. {
  49300. name: "Not good for the county",
  49301. height: math.unit(5.5, "km")
  49302. },
  49303. {
  49304. name: "Not good for the state",
  49305. height: math.unit(25, "km")
  49306. },
  49307. {
  49308. name: "Not good for the country",
  49309. height: math.unit(125, "km")
  49310. },
  49311. {
  49312. name: "Not good for the continent",
  49313. height: math.unit(2100, "km")
  49314. },
  49315. {
  49316. name: "Not good for the planet",
  49317. height: math.unit(35000, "km")
  49318. },
  49319. {
  49320. name: "Just no",
  49321. height: math.unit(8.5e18, "km")
  49322. },
  49323. ]
  49324. ))
  49325. characterMakers.push(() => makeCharacter(
  49326. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49327. {
  49328. front: {
  49329. height: math.unit(6.5, "feet"),
  49330. name: "Front",
  49331. image: {
  49332. source: "./media/characters/poppy/front.svg",
  49333. extra: 1878/1812,
  49334. bottom: 43/1921
  49335. }
  49336. },
  49337. feet: {
  49338. height: math.unit(1.06, "feet"),
  49339. name: "Feet",
  49340. image: {
  49341. source: "./media/characters/poppy/feet.svg",
  49342. extra: 1083/1083,
  49343. bottom: 87/1170
  49344. }
  49345. },
  49346. },
  49347. [
  49348. {
  49349. name: "Human",
  49350. height: math.unit(6.5, "feet")
  49351. },
  49352. {
  49353. name: "Default",
  49354. height: math.unit(300, "feet"),
  49355. default: true
  49356. },
  49357. {
  49358. name: "Huge",
  49359. height: math.unit(850, "feet")
  49360. },
  49361. {
  49362. name: "Mega",
  49363. height: math.unit(8000, "feet")
  49364. },
  49365. {
  49366. name: "Giga",
  49367. height: math.unit(300, "miles")
  49368. },
  49369. ]
  49370. ))
  49371. characterMakers.push(() => makeCharacter(
  49372. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49373. {
  49374. bipedal: {
  49375. height: math.unit(7, "feet"),
  49376. name: "Bipedal",
  49377. image: {
  49378. source: "./media/characters/zener/bipedal.svg",
  49379. extra: 874/805,
  49380. bottom: 109/983
  49381. }
  49382. },
  49383. quadrupedal: {
  49384. height: math.unit(4.64, "feet"),
  49385. name: "Quadrupedal",
  49386. image: {
  49387. source: "./media/characters/zener/quadrupedal.svg",
  49388. extra: 638/507,
  49389. bottom: 190/828
  49390. }
  49391. },
  49392. cock: {
  49393. height: math.unit(18, "inches"),
  49394. name: "Cock",
  49395. image: {
  49396. source: "./media/characters/zener/cock.svg"
  49397. }
  49398. },
  49399. },
  49400. [
  49401. {
  49402. name: "Normal",
  49403. height: math.unit(7, "feet"),
  49404. default: true
  49405. },
  49406. ]
  49407. ))
  49408. characterMakers.push(() => makeCharacter(
  49409. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49410. {
  49411. nude: {
  49412. height: math.unit(5 + 6/12, "feet"),
  49413. name: "Nude",
  49414. image: {
  49415. source: "./media/characters/charlie-dog/nude.svg",
  49416. extra: 768/734,
  49417. bottom: 26/794
  49418. }
  49419. },
  49420. dressed: {
  49421. height: math.unit(5 + 6/12, "feet"),
  49422. name: "Dressed",
  49423. image: {
  49424. source: "./media/characters/charlie-dog/dressed.svg",
  49425. extra: 768/734,
  49426. bottom: 26/794
  49427. }
  49428. },
  49429. },
  49430. [
  49431. {
  49432. name: "Normal",
  49433. height: math.unit(5 + 6/12, "feet"),
  49434. default: true
  49435. },
  49436. ]
  49437. ))
  49438. characterMakers.push(() => makeCharacter(
  49439. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49440. {
  49441. front: {
  49442. height: math.unit(6 + 4/12, "feet"),
  49443. name: "Front",
  49444. image: {
  49445. source: "./media/characters/ir'istrasz/front.svg",
  49446. extra: 1014/977,
  49447. bottom: 65/1079
  49448. }
  49449. },
  49450. back: {
  49451. height: math.unit(6 + 4/12, "feet"),
  49452. name: "Back",
  49453. image: {
  49454. source: "./media/characters/ir'istrasz/back.svg",
  49455. extra: 1024/992,
  49456. bottom: 34/1058
  49457. }
  49458. },
  49459. },
  49460. [
  49461. {
  49462. name: "Normal",
  49463. height: math.unit(6 + 4/12, "feet"),
  49464. default: true
  49465. },
  49466. ]
  49467. ))
  49468. characterMakers.push(() => makeCharacter(
  49469. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49470. {
  49471. front: {
  49472. height: math.unit(5 + 8/12, "feet"),
  49473. name: "Front",
  49474. image: {
  49475. source: "./media/characters/dee-ditto/front.svg",
  49476. extra: 1874/1785,
  49477. bottom: 68/1942
  49478. }
  49479. },
  49480. back: {
  49481. height: math.unit(5 + 8/12, "feet"),
  49482. name: "Back",
  49483. image: {
  49484. source: "./media/characters/dee-ditto/back.svg",
  49485. extra: 1870/1783,
  49486. bottom: 77/1947
  49487. }
  49488. },
  49489. },
  49490. [
  49491. {
  49492. name: "Normal",
  49493. height: math.unit(5 + 8/12, "feet"),
  49494. default: true
  49495. },
  49496. ]
  49497. ))
  49498. characterMakers.push(() => makeCharacter(
  49499. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49500. {
  49501. front: {
  49502. height: math.unit(7 + 6/12, "feet"),
  49503. name: "Front",
  49504. image: {
  49505. source: "./media/characters/fey/front.svg",
  49506. extra: 995/979,
  49507. bottom: 30/1025
  49508. }
  49509. },
  49510. back: {
  49511. height: math.unit(7 + 6/12, "feet"),
  49512. name: "Back",
  49513. image: {
  49514. source: "./media/characters/fey/back.svg",
  49515. extra: 1079/1008,
  49516. bottom: 5/1084
  49517. }
  49518. },
  49519. dressed: {
  49520. height: math.unit(7 + 6/12, "feet"),
  49521. name: "Dressed",
  49522. image: {
  49523. source: "./media/characters/fey/dressed.svg",
  49524. extra: 995/979,
  49525. bottom: 30/1025
  49526. }
  49527. },
  49528. },
  49529. [
  49530. {
  49531. name: "Normal",
  49532. height: math.unit(7 + 6/12, "feet"),
  49533. default: true
  49534. },
  49535. ]
  49536. ))
  49537. characterMakers.push(() => makeCharacter(
  49538. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49539. {
  49540. standing: {
  49541. height: math.unit(17, "feet"),
  49542. name: "Standing",
  49543. image: {
  49544. source: "./media/characters/aster/standing.svg",
  49545. extra: 1798/1598,
  49546. bottom: 117/1915
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Normal",
  49553. height: math.unit(17, "feet"),
  49554. default: true
  49555. },
  49556. {
  49557. name: "Homewrecker",
  49558. height: math.unit(95, "feet")
  49559. },
  49560. {
  49561. name: "Planet Devourer",
  49562. height: math.unit(1008000, "miles")
  49563. },
  49564. ]
  49565. ))
  49566. characterMakers.push(() => makeCharacter(
  49567. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49568. {
  49569. front: {
  49570. height: math.unit(6 + 5/12, "feet"),
  49571. weight: math.unit(265, "lb"),
  49572. name: "Front",
  49573. image: {
  49574. source: "./media/characters/devon-childs/front.svg",
  49575. extra: 1795/1721,
  49576. bottom: 41/1836
  49577. }
  49578. },
  49579. side: {
  49580. height: math.unit(6 + 5/12, "feet"),
  49581. weight: math.unit(265, "lb"),
  49582. name: "Side",
  49583. image: {
  49584. source: "./media/characters/devon-childs/side.svg",
  49585. extra: 1812/1738,
  49586. bottom: 30/1842
  49587. }
  49588. },
  49589. back: {
  49590. height: math.unit(6 + 5/12, "feet"),
  49591. weight: math.unit(265, "lb"),
  49592. name: "Back",
  49593. image: {
  49594. source: "./media/characters/devon-childs/back.svg",
  49595. extra: 1808/1735,
  49596. bottom: 23/1831
  49597. }
  49598. },
  49599. hand: {
  49600. height: math.unit(1.464, "feet"),
  49601. name: "Hand",
  49602. image: {
  49603. source: "./media/characters/devon-childs/hand.svg"
  49604. }
  49605. },
  49606. foot: {
  49607. height: math.unit(1.6, "feet"),
  49608. name: "Foot",
  49609. image: {
  49610. source: "./media/characters/devon-childs/foot.svg"
  49611. }
  49612. },
  49613. },
  49614. [
  49615. {
  49616. name: "Micro",
  49617. height: math.unit(7, "cm")
  49618. },
  49619. {
  49620. name: "Normal",
  49621. height: math.unit(6 + 5/12, "feet"),
  49622. default: true
  49623. },
  49624. {
  49625. name: "Macro",
  49626. height: math.unit(154, "feet")
  49627. },
  49628. ]
  49629. ))
  49630. characterMakers.push(() => makeCharacter(
  49631. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49632. {
  49633. front: {
  49634. height: math.unit(6, "feet"),
  49635. weight: math.unit(180, "lb"),
  49636. name: "Front",
  49637. image: {
  49638. source: "./media/characters/lydemox-vir/front.svg",
  49639. extra: 1632/1435,
  49640. bottom: 58/1690
  49641. }
  49642. },
  49643. frontSFW: {
  49644. height: math.unit(6, "feet"),
  49645. weight: math.unit(180, "lb"),
  49646. name: "Front (SFW)",
  49647. image: {
  49648. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49649. extra: 1632/1435,
  49650. bottom: 58/1690
  49651. }
  49652. },
  49653. back: {
  49654. height: math.unit(6, "feet"),
  49655. weight: math.unit(180, "lb"),
  49656. name: "Back",
  49657. image: {
  49658. source: "./media/characters/lydemox-vir/back.svg",
  49659. extra: 1593/1408,
  49660. bottom: 31/1624
  49661. }
  49662. },
  49663. paw: {
  49664. height: math.unit(1.85, "feet"),
  49665. name: "Paw",
  49666. image: {
  49667. source: "./media/characters/lydemox-vir/paw.svg"
  49668. }
  49669. },
  49670. dick: {
  49671. height: math.unit(1.8, "feet"),
  49672. name: "Dick",
  49673. image: {
  49674. source: "./media/characters/lydemox-vir/dick.svg"
  49675. }
  49676. },
  49677. },
  49678. [
  49679. {
  49680. name: "Macro",
  49681. height: math.unit(100, "feet"),
  49682. default: true
  49683. },
  49684. {
  49685. name: "Teramacro",
  49686. height: math.unit(1, "earth")
  49687. },
  49688. {
  49689. name: "Planetary",
  49690. height: math.unit(20, "earths")
  49691. },
  49692. ]
  49693. ))
  49694. characterMakers.push(() => makeCharacter(
  49695. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49696. {
  49697. front: {
  49698. height: math.unit(15 + 8/12, "feet"),
  49699. weight: math.unit(1237, "kg"),
  49700. name: "Front",
  49701. image: {
  49702. source: "./media/characters/mia/front.svg",
  49703. extra: 1573/1446,
  49704. bottom: 58/1631
  49705. }
  49706. },
  49707. },
  49708. [
  49709. {
  49710. name: "Small",
  49711. height: math.unit(9 + 5/12, "feet")
  49712. },
  49713. {
  49714. name: "Normal",
  49715. height: math.unit(15 + 8/12, "feet"),
  49716. default: true
  49717. },
  49718. ]
  49719. ))
  49720. characterMakers.push(() => makeCharacter(
  49721. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49722. {
  49723. front: {
  49724. height: math.unit(10 + 6/12, "feet"),
  49725. weight: math.unit(1.3, "tons"),
  49726. name: "Front",
  49727. image: {
  49728. source: "./media/characters/mr-graves/front.svg",
  49729. extra: 1779/1695,
  49730. bottom: 198/1977
  49731. }
  49732. },
  49733. },
  49734. [
  49735. {
  49736. name: "Normal",
  49737. height: math.unit(10 + 6 /12, "feet"),
  49738. default: true
  49739. },
  49740. ]
  49741. ))
  49742. characterMakers.push(() => makeCharacter(
  49743. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49744. {
  49745. dressedFront: {
  49746. height: math.unit(5 + 8/12, "feet"),
  49747. weight: math.unit(125, "lb"),
  49748. name: "Dressed (Front)",
  49749. image: {
  49750. source: "./media/characters/jess/dressed-front.svg",
  49751. extra: 1176/1152,
  49752. bottom: 42/1218
  49753. }
  49754. },
  49755. dressedSide: {
  49756. height: math.unit(5 + 8/12, "feet"),
  49757. weight: math.unit(125, "lb"),
  49758. name: "Dressed (Side)",
  49759. image: {
  49760. source: "./media/characters/jess/dressed-side.svg",
  49761. extra: 1204/1190,
  49762. bottom: 6/1210
  49763. }
  49764. },
  49765. nudeFront: {
  49766. height: math.unit(5 + 8/12, "feet"),
  49767. weight: math.unit(125, "lb"),
  49768. name: "Nude (Front)",
  49769. image: {
  49770. source: "./media/characters/jess/nude-front.svg",
  49771. extra: 1176/1152,
  49772. bottom: 42/1218
  49773. }
  49774. },
  49775. nudeSide: {
  49776. height: math.unit(5 + 8/12, "feet"),
  49777. weight: math.unit(125, "lb"),
  49778. name: "Nude (Side)",
  49779. image: {
  49780. source: "./media/characters/jess/nude-side.svg",
  49781. extra: 1204/1190,
  49782. bottom: 6/1210
  49783. }
  49784. },
  49785. organsFront: {
  49786. height: math.unit(2.83799342105, "feet"),
  49787. name: "Organs (Front)",
  49788. image: {
  49789. source: "./media/characters/jess/organs-front.svg"
  49790. }
  49791. },
  49792. organsSide: {
  49793. height: math.unit(2.64225290474, "feet"),
  49794. name: "Organs (Side)",
  49795. image: {
  49796. source: "./media/characters/jess/organs-side.svg"
  49797. }
  49798. },
  49799. digestiveTractFront: {
  49800. height: math.unit(2.8106580871, "feet"),
  49801. name: "Digestive Tract (Front)",
  49802. image: {
  49803. source: "./media/characters/jess/digestive-tract-front.svg"
  49804. }
  49805. },
  49806. digestiveTractSide: {
  49807. height: math.unit(2.54365045014, "feet"),
  49808. name: "Digestive Tract (Side)",
  49809. image: {
  49810. source: "./media/characters/jess/digestive-tract-side.svg"
  49811. }
  49812. },
  49813. respiratorySystemFront: {
  49814. height: math.unit(1.11196233456, "feet"),
  49815. name: "Respiratory System (Front)",
  49816. image: {
  49817. source: "./media/characters/jess/respiratory-system-front.svg"
  49818. }
  49819. },
  49820. respiratorySystemSide: {
  49821. height: math.unit(0.89327966297, "feet"),
  49822. name: "Respiratory System (Side)",
  49823. image: {
  49824. source: "./media/characters/jess/respiratory-system-side.svg"
  49825. }
  49826. },
  49827. urinaryTractFront: {
  49828. height: math.unit(1.16126356186, "feet"),
  49829. name: "Urinary Tract (Front)",
  49830. image: {
  49831. source: "./media/characters/jess/urinary-tract-front.svg"
  49832. }
  49833. },
  49834. urinaryTractSide: {
  49835. height: math.unit(1.20910039627, "feet"),
  49836. name: "Urinary Tract (Side)",
  49837. image: {
  49838. source: "./media/characters/jess/urinary-tract-side.svg"
  49839. }
  49840. },
  49841. reproductiveOrgansFront: {
  49842. height: math.unit(0.48422591566, "feet"),
  49843. name: "Reproductive Organs (Front)",
  49844. image: {
  49845. source: "./media/characters/jess/reproductive-organs-front.svg"
  49846. }
  49847. },
  49848. reproductiveOrgansSide: {
  49849. height: math.unit(0.61553314481, "feet"),
  49850. name: "Reproductive Organs (Side)",
  49851. image: {
  49852. source: "./media/characters/jess/reproductive-organs-side.svg"
  49853. }
  49854. },
  49855. breastsFront: {
  49856. height: math.unit(0.47690395121, "feet"),
  49857. name: "Breasts (Front)",
  49858. image: {
  49859. source: "./media/characters/jess/breasts-front.svg"
  49860. }
  49861. },
  49862. breastsSide: {
  49863. height: math.unit(0.30556998307, "feet"),
  49864. name: "Breasts (Side)",
  49865. image: {
  49866. source: "./media/characters/jess/breasts-side.svg"
  49867. }
  49868. },
  49869. heartFront: {
  49870. height: math.unit(0.53011022622, "feet"),
  49871. name: "Heart (Front)",
  49872. image: {
  49873. source: "./media/characters/jess/heart-front.svg"
  49874. }
  49875. },
  49876. heartSide: {
  49877. height: math.unit(0.51790695213, "feet"),
  49878. name: "Heart (Side)",
  49879. image: {
  49880. source: "./media/characters/jess/heart-side.svg"
  49881. }
  49882. },
  49883. earsAndNoseFront: {
  49884. height: math.unit(0.29385483995, "feet"),
  49885. name: "Ears and Nose (Front)",
  49886. image: {
  49887. source: "./media/characters/jess/ears-and-nose-front.svg"
  49888. }
  49889. },
  49890. earsAndNoseSide: {
  49891. height: math.unit(0.18109658741, "feet"),
  49892. name: "Ears and Nose (Side)",
  49893. image: {
  49894. source: "./media/characters/jess/ears-and-nose-side.svg"
  49895. }
  49896. },
  49897. },
  49898. [
  49899. {
  49900. name: "Normal",
  49901. height: math.unit(5 + 8/12, "feet"),
  49902. default: true
  49903. },
  49904. ]
  49905. ))
  49906. characterMakers.push(() => makeCharacter(
  49907. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49908. {
  49909. front: {
  49910. height: math.unit(6, "feet"),
  49911. weight: math.unit(6.64467e-7, "grams"),
  49912. name: "Front",
  49913. image: {
  49914. source: "./media/characters/wimpering/front.svg",
  49915. extra: 597/587,
  49916. bottom: 34/631
  49917. }
  49918. },
  49919. },
  49920. [
  49921. {
  49922. name: "Micro",
  49923. height: math.unit(0.4, "mm"),
  49924. default: true
  49925. },
  49926. ]
  49927. ))
  49928. characterMakers.push(() => makeCharacter(
  49929. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49930. {
  49931. front: {
  49932. height: math.unit(5 + 2/12, "feet"),
  49933. weight: math.unit(110, "lb"),
  49934. name: "Front",
  49935. image: {
  49936. source: "./media/characters/keltre/front.svg",
  49937. extra: 1099/1057,
  49938. bottom: 22/1121
  49939. }
  49940. },
  49941. back: {
  49942. height: math.unit(5 + 2/12, "feet"),
  49943. weight: math.unit(110, "lb"),
  49944. name: "Back",
  49945. image: {
  49946. source: "./media/characters/keltre/back.svg",
  49947. extra: 1095/1053,
  49948. bottom: 17/1112
  49949. }
  49950. },
  49951. dressed: {
  49952. height: math.unit(5 + 2/12, "feet"),
  49953. weight: math.unit(110, "lb"),
  49954. name: "Dressed",
  49955. image: {
  49956. source: "./media/characters/keltre/dressed.svg",
  49957. extra: 1099/1057,
  49958. bottom: 22/1121
  49959. }
  49960. },
  49961. winter: {
  49962. height: math.unit(5 + 2/12, "feet"),
  49963. weight: math.unit(110, "lb"),
  49964. name: "Winter",
  49965. image: {
  49966. source: "./media/characters/keltre/winter.svg",
  49967. extra: 1099/1057,
  49968. bottom: 22/1121
  49969. }
  49970. },
  49971. head: {
  49972. height: math.unit(1.61 * 0.86, "feet"),
  49973. name: "Head",
  49974. image: {
  49975. source: "./media/characters/keltre/head.svg",
  49976. extra: 534/421,
  49977. bottom: 0/534
  49978. }
  49979. },
  49980. hand: {
  49981. height: math.unit(1.3 * 0.86, "feet"),
  49982. name: "Hand",
  49983. image: {
  49984. source: "./media/characters/keltre/hand.svg"
  49985. }
  49986. },
  49987. foot: {
  49988. height: math.unit(1.8 * 0.86, "feet"),
  49989. name: "Foot",
  49990. image: {
  49991. source: "./media/characters/keltre/foot.svg"
  49992. }
  49993. },
  49994. },
  49995. [
  49996. {
  49997. name: "Fine",
  49998. height: math.unit(1, "inch")
  49999. },
  50000. {
  50001. name: "Dimnutive",
  50002. height: math.unit(4, "inches")
  50003. },
  50004. {
  50005. name: "Tiny",
  50006. height: math.unit(1, "foot")
  50007. },
  50008. {
  50009. name: "Small",
  50010. height: math.unit(3, "feet")
  50011. },
  50012. {
  50013. name: "Normal",
  50014. height: math.unit(5 + 2/12, "feet"),
  50015. default: true
  50016. },
  50017. ]
  50018. ))
  50019. characterMakers.push(() => makeCharacter(
  50020. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50021. {
  50022. front: {
  50023. height: math.unit(6 + 2/12, "feet"),
  50024. name: "Front",
  50025. image: {
  50026. source: "./media/characters/nox/front.svg",
  50027. extra: 1917/1830,
  50028. bottom: 74/1991
  50029. }
  50030. },
  50031. back: {
  50032. height: math.unit(6 + 2/12, "feet"),
  50033. name: "Back",
  50034. image: {
  50035. source: "./media/characters/nox/back.svg",
  50036. extra: 1896/1815,
  50037. bottom: 21/1917
  50038. }
  50039. },
  50040. head: {
  50041. height: math.unit(1.1, "feet"),
  50042. name: "Head",
  50043. image: {
  50044. source: "./media/characters/nox/head.svg",
  50045. extra: 874/704,
  50046. bottom: 0/874
  50047. }
  50048. },
  50049. tattoo: {
  50050. height: math.unit(0.729, "feet"),
  50051. name: "Tattoo",
  50052. image: {
  50053. source: "./media/characters/nox/tattoo.svg"
  50054. }
  50055. },
  50056. },
  50057. [
  50058. {
  50059. name: "Normal",
  50060. height: math.unit(6 + 2/12, "feet")
  50061. },
  50062. {
  50063. name: "Gigamacro",
  50064. height: math.unit(2, "earths"),
  50065. default: true
  50066. },
  50067. {
  50068. name: "Cosmic",
  50069. height: math.unit(867, "yottameters")
  50070. },
  50071. ]
  50072. ))
  50073. characterMakers.push(() => makeCharacter(
  50074. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50075. {
  50076. front: {
  50077. height: math.unit(6, "feet"),
  50078. weight: math.unit(150, "lb"),
  50079. name: "Front",
  50080. image: {
  50081. source: "./media/characters/caspian/front.svg",
  50082. extra: 1443/1359,
  50083. bottom: 0/1443
  50084. }
  50085. },
  50086. back: {
  50087. height: math.unit(6, "feet"),
  50088. weight: math.unit(150, "lb"),
  50089. name: "Back",
  50090. image: {
  50091. source: "./media/characters/caspian/back.svg",
  50092. extra: 1379/1309,
  50093. bottom: 0/1379
  50094. }
  50095. },
  50096. head: {
  50097. height: math.unit(0.9, "feet"),
  50098. name: "Head",
  50099. image: {
  50100. source: "./media/characters/caspian/head.svg",
  50101. extra: 692/492,
  50102. bottom: 0/692
  50103. }
  50104. },
  50105. headAlt: {
  50106. height: math.unit(0.95, "feet"),
  50107. name: "Head (Alt)",
  50108. image: {
  50109. source: "./media/characters/caspian/head-alt.svg",
  50110. extra: 668/508,
  50111. bottom: 0/668
  50112. }
  50113. },
  50114. hand: {
  50115. height: math.unit(0.8, "feet"),
  50116. name: "Hand",
  50117. image: {
  50118. source: "./media/characters/caspian/hand.svg"
  50119. }
  50120. },
  50121. paw: {
  50122. height: math.unit(0.95, "feet"),
  50123. name: "Paw",
  50124. image: {
  50125. source: "./media/characters/caspian/paw.svg"
  50126. }
  50127. },
  50128. },
  50129. [
  50130. {
  50131. name: "Normal",
  50132. height: math.unit(162, "feet"),
  50133. default: true
  50134. },
  50135. ]
  50136. ))
  50137. characterMakers.push(() => makeCharacter(
  50138. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50139. {
  50140. front: {
  50141. height: math.unit(6, "feet"),
  50142. name: "Front",
  50143. image: {
  50144. source: "./media/characters/myra-aisling/front.svg",
  50145. extra: 1268/1166,
  50146. bottom: 73/1341
  50147. }
  50148. },
  50149. back: {
  50150. height: math.unit(6, "feet"),
  50151. name: "Back",
  50152. image: {
  50153. source: "./media/characters/myra-aisling/back.svg",
  50154. extra: 1249/1149,
  50155. bottom: 79/1328
  50156. }
  50157. },
  50158. dressed: {
  50159. height: math.unit(6, "feet"),
  50160. name: "Dressed",
  50161. image: {
  50162. source: "./media/characters/myra-aisling/dressed.svg",
  50163. extra: 1290/1189,
  50164. bottom: 47/1337
  50165. }
  50166. },
  50167. hand: {
  50168. height: math.unit(1.1, "feet"),
  50169. name: "Hand",
  50170. image: {
  50171. source: "./media/characters/myra-aisling/hand.svg"
  50172. }
  50173. },
  50174. paw: {
  50175. height: math.unit(1.23, "feet"),
  50176. name: "Paw",
  50177. image: {
  50178. source: "./media/characters/myra-aisling/paw.svg"
  50179. }
  50180. },
  50181. },
  50182. [
  50183. {
  50184. name: "Normal",
  50185. height: math.unit(160, "feet"),
  50186. default: true
  50187. },
  50188. ]
  50189. ))
  50190. characterMakers.push(() => makeCharacter(
  50191. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50192. {
  50193. front: {
  50194. height: math.unit(6, "feet"),
  50195. name: "Front",
  50196. image: {
  50197. source: "./media/characters/tenley-sidero/front.svg",
  50198. extra: 1365/1276,
  50199. bottom: 47/1412
  50200. }
  50201. },
  50202. back: {
  50203. height: math.unit(6, "feet"),
  50204. name: "Back",
  50205. image: {
  50206. source: "./media/characters/tenley-sidero/back.svg",
  50207. extra: 1383/1283,
  50208. bottom: 35/1418
  50209. }
  50210. },
  50211. dressed: {
  50212. height: math.unit(6, "feet"),
  50213. name: "Dressed",
  50214. image: {
  50215. source: "./media/characters/tenley-sidero/dressed.svg",
  50216. extra: 1364/1275,
  50217. bottom: 42/1406
  50218. }
  50219. },
  50220. head: {
  50221. height: math.unit(1.47, "feet"),
  50222. name: "Head",
  50223. image: {
  50224. source: "./media/characters/tenley-sidero/head.svg",
  50225. extra: 610/490,
  50226. bottom: 0/610
  50227. }
  50228. },
  50229. },
  50230. [
  50231. {
  50232. name: "Normal",
  50233. height: math.unit(154, "feet"),
  50234. default: true
  50235. },
  50236. ]
  50237. ))
  50238. characterMakers.push(() => makeCharacter(
  50239. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50240. {
  50241. front: {
  50242. height: math.unit(5, "inches"),
  50243. name: "Front",
  50244. image: {
  50245. source: "./media/characters/mallory/front.svg",
  50246. extra: 1919/1678,
  50247. bottom: 29/1948
  50248. }
  50249. },
  50250. hand: {
  50251. height: math.unit(0.73, "inches"),
  50252. name: "Hand",
  50253. image: {
  50254. source: "./media/characters/mallory/hand.svg"
  50255. }
  50256. },
  50257. paw: {
  50258. height: math.unit(0.68, "inches"),
  50259. name: "Paw",
  50260. image: {
  50261. source: "./media/characters/mallory/paw.svg"
  50262. }
  50263. },
  50264. },
  50265. [
  50266. {
  50267. name: "Small",
  50268. height: math.unit(5, "inches"),
  50269. default: true
  50270. },
  50271. ]
  50272. ))
  50273. characterMakers.push(() => makeCharacter(
  50274. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50275. {
  50276. naked: {
  50277. height: math.unit(6, "feet"),
  50278. name: "Naked",
  50279. image: {
  50280. source: "./media/characters/mab/naked.svg",
  50281. extra: 1855/1757,
  50282. bottom: 208/2063
  50283. }
  50284. },
  50285. outside: {
  50286. height: math.unit(6, "feet"),
  50287. name: "Outside",
  50288. image: {
  50289. source: "./media/characters/mab/outside.svg",
  50290. extra: 1855/1757,
  50291. bottom: 208/2063
  50292. }
  50293. },
  50294. party: {
  50295. height: math.unit(6, "feet"),
  50296. name: "Party",
  50297. image: {
  50298. source: "./media/characters/mab/party.svg",
  50299. extra: 1855/1757,
  50300. bottom: 208/2063
  50301. }
  50302. },
  50303. },
  50304. [
  50305. {
  50306. name: "Normal",
  50307. height: math.unit(165, "feet"),
  50308. default: true
  50309. },
  50310. ]
  50311. ))
  50312. characterMakers.push(() => makeCharacter(
  50313. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50314. {
  50315. feral: {
  50316. height: math.unit(12, "feet"),
  50317. weight: math.unit(20000, "lb"),
  50318. name: "Side",
  50319. image: {
  50320. source: "./media/characters/winter/feral.svg",
  50321. extra: 1286/943,
  50322. bottom: 112/1398
  50323. },
  50324. form: "feral",
  50325. default: true
  50326. },
  50327. feralNsfw: {
  50328. height: math.unit(12, "feet"),
  50329. weight: math.unit(20000, "lb"),
  50330. name: "Side (NSFW)",
  50331. image: {
  50332. source: "./media/characters/winter/feral-nsfw.svg",
  50333. extra: 1286/943,
  50334. bottom: 112/1398
  50335. },
  50336. form: "feral"
  50337. },
  50338. dick: {
  50339. height: math.unit(3.79, "feet"),
  50340. name: "Dick",
  50341. image: {
  50342. source: "./media/characters/winter/dick.svg"
  50343. },
  50344. form: "feral"
  50345. },
  50346. anthro: {
  50347. height: math.unit(12, "feet"),
  50348. weight: math.unit(10, "tons"),
  50349. name: "Anthro",
  50350. image: {
  50351. source: "./media/characters/winter/anthro.svg",
  50352. extra: 1701/1553,
  50353. bottom: 64/1765
  50354. },
  50355. form: "anthro",
  50356. default: true
  50357. },
  50358. },
  50359. [
  50360. {
  50361. name: "Big",
  50362. height: math.unit(12, "feet"),
  50363. default: true,
  50364. form: "feral"
  50365. },
  50366. {
  50367. name: "Big",
  50368. height: math.unit(12, "feet"),
  50369. default: true,
  50370. form: "anthro"
  50371. },
  50372. ],
  50373. {
  50374. "feral": {
  50375. name: "Feral",
  50376. default: true
  50377. },
  50378. "anthro": {
  50379. name: "Anthro"
  50380. }
  50381. }
  50382. ))
  50383. characterMakers.push(() => makeCharacter(
  50384. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50385. {
  50386. front: {
  50387. height: math.unit(4.1, "inches"),
  50388. name: "Front",
  50389. image: {
  50390. source: "./media/characters/alto/front.svg",
  50391. extra: 736/627,
  50392. bottom: 90/826
  50393. }
  50394. },
  50395. },
  50396. [
  50397. {
  50398. name: "Normal",
  50399. height: math.unit(4.1, "inches"),
  50400. default: true
  50401. },
  50402. ]
  50403. ))
  50404. characterMakers.push(() => makeCharacter(
  50405. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50406. {
  50407. sitting: {
  50408. height: math.unit(3, "feet"),
  50409. name: "Sitting",
  50410. image: {
  50411. source: "./media/characters/ratstrid-v/sitting.svg",
  50412. extra: 355/310,
  50413. bottom: 136/491
  50414. }
  50415. },
  50416. },
  50417. [
  50418. {
  50419. name: "Normal",
  50420. height: math.unit(3, "feet"),
  50421. default: true
  50422. },
  50423. ]
  50424. ))
  50425. characterMakers.push(() => makeCharacter(
  50426. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50427. {
  50428. back: {
  50429. height: math.unit(6, "feet"),
  50430. weight: math.unit(450, "lb"),
  50431. name: "Back",
  50432. image: {
  50433. source: "./media/characters/siz/back.svg",
  50434. extra: 1449/1274,
  50435. bottom: 13/1462
  50436. }
  50437. },
  50438. },
  50439. [
  50440. {
  50441. name: "Smallest",
  50442. height: math.unit(18 + 3/12, "feet")
  50443. },
  50444. {
  50445. name: "Modest",
  50446. height: math.unit(56 + 8/12, "feet"),
  50447. default: true
  50448. },
  50449. {
  50450. name: "Largest",
  50451. height: math.unit(3590, "feet")
  50452. },
  50453. ]
  50454. ))
  50455. characterMakers.push(() => makeCharacter(
  50456. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50457. {
  50458. front: {
  50459. height: math.unit(5 + 9/12, "feet"),
  50460. weight: math.unit(150, "lb"),
  50461. name: "Front",
  50462. image: {
  50463. source: "./media/characters/ven/front.svg",
  50464. extra: 1372/1320,
  50465. bottom: 73/1445
  50466. }
  50467. },
  50468. side: {
  50469. height: math.unit(5 + 9/12, "feet"),
  50470. weight: math.unit(1150, "lb"),
  50471. name: "Side",
  50472. image: {
  50473. source: "./media/characters/ven/side.svg",
  50474. extra: 1119/1070,
  50475. bottom: 42/1161
  50476. },
  50477. default: true
  50478. },
  50479. },
  50480. [
  50481. {
  50482. name: "Normal",
  50483. height: math.unit(5 + 9/12, "feet"),
  50484. default: true
  50485. },
  50486. ]
  50487. ))
  50488. characterMakers.push(() => makeCharacter(
  50489. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50490. {
  50491. front: {
  50492. height: math.unit(12, "feet"),
  50493. weight: math.unit(1000, "kg"),
  50494. name: "Front",
  50495. image: {
  50496. source: "./media/characters/maple/front.svg",
  50497. extra: 1193/1081,
  50498. bottom: 22/1215
  50499. }
  50500. },
  50501. },
  50502. [
  50503. {
  50504. name: "Compressed",
  50505. height: math.unit(7, "feet")
  50506. },
  50507. {
  50508. name: "Normal",
  50509. height: math.unit(12, "feet"),
  50510. default: true
  50511. },
  50512. ]
  50513. ))
  50514. characterMakers.push(() => makeCharacter(
  50515. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50516. {
  50517. front: {
  50518. height: math.unit(9, "feet"),
  50519. weight: math.unit(1500, "lb"),
  50520. name: "Front",
  50521. image: {
  50522. source: "./media/characters/nora/front.svg",
  50523. extra: 1348/1286,
  50524. bottom: 218/1566
  50525. }
  50526. },
  50527. erect: {
  50528. height: math.unit(9, "feet"),
  50529. weight: math.unit(11500, "lb"),
  50530. name: "Erect",
  50531. image: {
  50532. source: "./media/characters/nora/erect.svg",
  50533. extra: 1488/1433,
  50534. bottom: 133/1621
  50535. }
  50536. },
  50537. },
  50538. [
  50539. {
  50540. name: "Normal",
  50541. height: math.unit(9, "feet"),
  50542. default: true
  50543. },
  50544. ]
  50545. ))
  50546. characterMakers.push(() => makeCharacter(
  50547. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50548. {
  50549. front: {
  50550. height: math.unit(25, "feet"),
  50551. weight: math.unit(27500, "lb"),
  50552. name: "Front",
  50553. image: {
  50554. source: "./media/characters/north-caudin/front.svg",
  50555. extra: 1184/1082,
  50556. bottom: 23/1207
  50557. }
  50558. },
  50559. },
  50560. [
  50561. {
  50562. name: "Compressed",
  50563. height: math.unit(10, "feet")
  50564. },
  50565. {
  50566. name: "Normal",
  50567. height: math.unit(25, "feet"),
  50568. default: true
  50569. },
  50570. ]
  50571. ))
  50572. characterMakers.push(() => makeCharacter(
  50573. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50574. {
  50575. front: {
  50576. height: math.unit(9, "feet"),
  50577. weight: math.unit(1250, "lb"),
  50578. name: "Front",
  50579. image: {
  50580. source: "./media/characters/merrian/front.svg",
  50581. extra: 2393/2304,
  50582. bottom: 40/2433
  50583. }
  50584. },
  50585. },
  50586. [
  50587. {
  50588. name: "Normal",
  50589. height: math.unit(9, "feet"),
  50590. default: true
  50591. },
  50592. ]
  50593. ))
  50594. characterMakers.push(() => makeCharacter(
  50595. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50596. {
  50597. front: {
  50598. height: math.unit(9, "feet"),
  50599. weight: math.unit(1000, "lb"),
  50600. name: "Front",
  50601. image: {
  50602. source: "./media/characters/hazel/front.svg",
  50603. extra: 2351/2298,
  50604. bottom: 38/2389
  50605. }
  50606. },
  50607. },
  50608. [
  50609. {
  50610. name: "Normal",
  50611. height: math.unit(9, "feet"),
  50612. default: true
  50613. },
  50614. ]
  50615. ))
  50616. characterMakers.push(() => makeCharacter(
  50617. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50618. {
  50619. front: {
  50620. height: math.unit(13, "feet"),
  50621. weight: math.unit(3200, "lb"),
  50622. name: "Front",
  50623. image: {
  50624. source: "./media/characters/emma/front.svg",
  50625. extra: 2263/2029,
  50626. bottom: 68/2331
  50627. }
  50628. },
  50629. },
  50630. [
  50631. {
  50632. name: "Normal",
  50633. height: math.unit(13, "feet"),
  50634. default: true
  50635. },
  50636. ]
  50637. ))
  50638. characterMakers.push(() => makeCharacter(
  50639. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50640. {
  50641. front: {
  50642. height: math.unit(11 + 9/12, "feet"),
  50643. weight: math.unit(2500, "lb"),
  50644. name: "Front",
  50645. image: {
  50646. source: "./media/characters/ilumina/front.svg",
  50647. extra: 2248/2209,
  50648. bottom: 164/2412
  50649. }
  50650. },
  50651. },
  50652. [
  50653. {
  50654. name: "Normal",
  50655. height: math.unit(11 + 9/12, "feet"),
  50656. default: true
  50657. },
  50658. ]
  50659. ))
  50660. characterMakers.push(() => makeCharacter(
  50661. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50662. {
  50663. front: {
  50664. height: math.unit(8 + 10/12, "feet"),
  50665. weight: math.unit(1350, "lb"),
  50666. name: "Front",
  50667. image: {
  50668. source: "./media/characters/moonshine/front.svg",
  50669. extra: 2395/2288,
  50670. bottom: 40/2435
  50671. }
  50672. },
  50673. },
  50674. [
  50675. {
  50676. name: "Normal",
  50677. height: math.unit(8 + 10/12, "feet"),
  50678. default: true
  50679. },
  50680. ]
  50681. ))
  50682. characterMakers.push(() => makeCharacter(
  50683. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50684. {
  50685. front: {
  50686. height: math.unit(14, "feet"),
  50687. weight: math.unit(3400, "lb"),
  50688. name: "Front",
  50689. image: {
  50690. source: "./media/characters/aletia/front.svg",
  50691. extra: 1185/1052,
  50692. bottom: 21/1206
  50693. }
  50694. },
  50695. },
  50696. [
  50697. {
  50698. name: "Compressed",
  50699. height: math.unit(8, "feet")
  50700. },
  50701. {
  50702. name: "Normal",
  50703. height: math.unit(14, "feet"),
  50704. default: true
  50705. },
  50706. ]
  50707. ))
  50708. characterMakers.push(() => makeCharacter(
  50709. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50710. {
  50711. front: {
  50712. height: math.unit(17, "feet"),
  50713. weight: math.unit(6500, "lb"),
  50714. name: "Front",
  50715. image: {
  50716. source: "./media/characters/deidra/front.svg",
  50717. extra: 1201/1081,
  50718. bottom: 16/1217
  50719. }
  50720. },
  50721. },
  50722. [
  50723. {
  50724. name: "Compressed",
  50725. height: math.unit(9 + 6/12, "feet")
  50726. },
  50727. {
  50728. name: "Normal",
  50729. height: math.unit(17, "feet"),
  50730. default: true
  50731. },
  50732. ]
  50733. ))
  50734. characterMakers.push(() => makeCharacter(
  50735. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50736. {
  50737. front: {
  50738. height: math.unit(7 + 4/12, "feet"),
  50739. weight: math.unit(280, "lb"),
  50740. name: "Front",
  50741. image: {
  50742. source: "./media/characters/freki-yrmori/front.svg",
  50743. extra: 1286/1182,
  50744. bottom: 29/1315
  50745. }
  50746. },
  50747. maw: {
  50748. height: math.unit(0.9, "feet"),
  50749. name: "Maw",
  50750. image: {
  50751. source: "./media/characters/freki-yrmori/maw.svg"
  50752. }
  50753. },
  50754. },
  50755. [
  50756. {
  50757. name: "Normal",
  50758. height: math.unit(7 + 4/12, "feet"),
  50759. default: true
  50760. },
  50761. {
  50762. name: "Macro",
  50763. height: math.unit(38.5, "meters")
  50764. },
  50765. ]
  50766. ))
  50767. characterMakers.push(() => makeCharacter(
  50768. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50769. {
  50770. side: {
  50771. height: math.unit(47.2, "meters"),
  50772. weight: math.unit(10000, "tons"),
  50773. name: "Side",
  50774. image: {
  50775. source: "./media/characters/aetherios/side.svg",
  50776. extra: 2363/642,
  50777. bottom: 221/2584
  50778. }
  50779. },
  50780. top: {
  50781. height: math.unit(240, "meters"),
  50782. weight: math.unit(10000, "tons"),
  50783. name: "Top",
  50784. image: {
  50785. source: "./media/characters/aetherios/top.svg"
  50786. }
  50787. },
  50788. bottom: {
  50789. height: math.unit(240, "meters"),
  50790. weight: math.unit(10000, "tons"),
  50791. name: "Bottom",
  50792. image: {
  50793. source: "./media/characters/aetherios/bottom.svg"
  50794. }
  50795. },
  50796. head: {
  50797. height: math.unit(38.6, "meters"),
  50798. name: "Head",
  50799. image: {
  50800. source: "./media/characters/aetherios/head.svg",
  50801. extra: 1335/1112,
  50802. bottom: 0/1335
  50803. }
  50804. },
  50805. front: {
  50806. height: math.unit(29, "meters"),
  50807. name: "Front",
  50808. image: {
  50809. source: "./media/characters/aetherios/front.svg",
  50810. extra: 1266/953,
  50811. bottom: 158/1424
  50812. }
  50813. },
  50814. maw: {
  50815. height: math.unit(16.37, "meters"),
  50816. name: "Maw",
  50817. image: {
  50818. source: "./media/characters/aetherios/maw.svg",
  50819. extra: 748/637,
  50820. bottom: 0/748
  50821. },
  50822. extraAttributes: {
  50823. preyCapacity: {
  50824. name: "Capacity",
  50825. power: 3,
  50826. type: "volume",
  50827. base: math.unit(1000, "people")
  50828. },
  50829. tongueSize: {
  50830. name: "Tongue Size",
  50831. power: 2,
  50832. type: "area",
  50833. base: math.unit(21, "m^2")
  50834. }
  50835. }
  50836. },
  50837. forepaw: {
  50838. height: math.unit(18, "meters"),
  50839. name: "Forepaw",
  50840. image: {
  50841. source: "./media/characters/aetherios/forepaw.svg"
  50842. }
  50843. },
  50844. hindpaw: {
  50845. height: math.unit(23, "meters"),
  50846. name: "Hindpaw",
  50847. image: {
  50848. source: "./media/characters/aetherios/hindpaw.svg"
  50849. }
  50850. },
  50851. genitals: {
  50852. height: math.unit(42, "meters"),
  50853. name: "Genitals",
  50854. image: {
  50855. source: "./media/characters/aetherios/genitals.svg"
  50856. }
  50857. },
  50858. },
  50859. [
  50860. {
  50861. name: "Normal",
  50862. height: math.unit(47.2, "meters"),
  50863. default: true
  50864. },
  50865. {
  50866. name: "Macro",
  50867. height: math.unit(160, "meters")
  50868. },
  50869. {
  50870. name: "Mega",
  50871. height: math.unit(1.87, "km")
  50872. },
  50873. {
  50874. name: "Giga",
  50875. height: math.unit(40000, "km")
  50876. },
  50877. {
  50878. name: "Stellar",
  50879. height: math.unit(158000000, "km")
  50880. },
  50881. {
  50882. name: "Cosmic",
  50883. height: math.unit(9.46e12, "km")
  50884. },
  50885. ]
  50886. ))
  50887. characterMakers.push(() => makeCharacter(
  50888. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50889. {
  50890. front: {
  50891. height: math.unit(5 + 4/12, "feet"),
  50892. weight: math.unit(80, "lb"),
  50893. name: "Front",
  50894. image: {
  50895. source: "./media/characters/mizu-gieeg/front.svg",
  50896. extra: 850/709,
  50897. bottom: 52/902
  50898. }
  50899. },
  50900. back: {
  50901. height: math.unit(5 + 4/12, "feet"),
  50902. weight: math.unit(80, "lb"),
  50903. name: "Back",
  50904. image: {
  50905. source: "./media/characters/mizu-gieeg/back.svg",
  50906. extra: 882/745,
  50907. bottom: 25/907
  50908. }
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Normal",
  50914. height: math.unit(5 + 4/12, "feet"),
  50915. default: true
  50916. },
  50917. ]
  50918. ))
  50919. characterMakers.push(() => makeCharacter(
  50920. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50921. {
  50922. front: {
  50923. height: math.unit(6, "feet"),
  50924. name: "Front",
  50925. image: {
  50926. source: "./media/characters/roselle-st-papier/front.svg",
  50927. extra: 1430/1280,
  50928. bottom: 37/1467
  50929. }
  50930. },
  50931. back: {
  50932. height: math.unit(6, "feet"),
  50933. name: "Back",
  50934. image: {
  50935. source: "./media/characters/roselle-st-papier/back.svg",
  50936. extra: 1491/1296,
  50937. bottom: 23/1514
  50938. }
  50939. },
  50940. ear: {
  50941. height: math.unit(1.26, "feet"),
  50942. name: "Ear",
  50943. image: {
  50944. source: "./media/characters/roselle-st-papier/ear.svg"
  50945. }
  50946. },
  50947. },
  50948. [
  50949. {
  50950. name: "Normal",
  50951. height: math.unit(150, "feet"),
  50952. default: true
  50953. },
  50954. ]
  50955. ))
  50956. characterMakers.push(() => makeCharacter(
  50957. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50958. {
  50959. front: {
  50960. height: math.unit(1, "inches"),
  50961. name: "Front",
  50962. image: {
  50963. source: "./media/characters/valargent/front.svg",
  50964. extra: 1825/1694,
  50965. bottom: 62/1887
  50966. }
  50967. },
  50968. back: {
  50969. height: math.unit(1, "inches"),
  50970. name: "Back",
  50971. image: {
  50972. source: "./media/characters/valargent/back.svg",
  50973. extra: 1775/1682,
  50974. bottom: 88/1863
  50975. }
  50976. },
  50977. },
  50978. [
  50979. {
  50980. name: "Micro",
  50981. height: math.unit(1, "inch"),
  50982. default: true
  50983. },
  50984. ]
  50985. ))
  50986. characterMakers.push(() => makeCharacter(
  50987. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50988. {
  50989. front: {
  50990. height: math.unit(3.4, "meters"),
  50991. name: "Front",
  50992. image: {
  50993. source: "./media/characters/zarina/front.svg",
  50994. extra: 1733/1425,
  50995. bottom: 93/1826
  50996. }
  50997. },
  50998. squatting: {
  50999. height: math.unit(2.14, "meters"),
  51000. name: "Squatting",
  51001. image: {
  51002. source: "./media/characters/zarina/squatting.svg",
  51003. extra: 1073/788,
  51004. bottom: 63/1136
  51005. }
  51006. },
  51007. back: {
  51008. height: math.unit(2.14, "meters"),
  51009. name: "Back",
  51010. image: {
  51011. source: "./media/characters/zarina/back.svg",
  51012. extra: 1128/885,
  51013. bottom: 0/1128
  51014. }
  51015. },
  51016. },
  51017. [
  51018. {
  51019. name: "Normal",
  51020. height: math.unit(3.4, "meters"),
  51021. default: true
  51022. },
  51023. {
  51024. name: "Big",
  51025. height: math.unit(5, "meters")
  51026. },
  51027. {
  51028. name: "Macro",
  51029. height: math.unit(110, "meters")
  51030. },
  51031. ]
  51032. ))
  51033. characterMakers.push(() => makeCharacter(
  51034. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51035. {
  51036. front: {
  51037. height: math.unit(7, "feet"),
  51038. name: "Front",
  51039. image: {
  51040. source: "./media/characters/ventus-astro-fox/front.svg",
  51041. extra: 1792/1623,
  51042. bottom: 28/1820
  51043. }
  51044. },
  51045. back: {
  51046. height: math.unit(7, "feet"),
  51047. name: "Back",
  51048. image: {
  51049. source: "./media/characters/ventus-astro-fox/back.svg",
  51050. extra: 1789/1620,
  51051. bottom: 31/1820
  51052. }
  51053. },
  51054. outfit: {
  51055. height: math.unit(7, "feet"),
  51056. name: "Outfit",
  51057. image: {
  51058. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51059. extra: 1054/925,
  51060. bottom: 15/1069
  51061. }
  51062. },
  51063. head: {
  51064. height: math.unit(1.12, "feet"),
  51065. name: "Head",
  51066. image: {
  51067. source: "./media/characters/ventus-astro-fox/head.svg",
  51068. extra: 866/504,
  51069. bottom: 0/866
  51070. }
  51071. },
  51072. hand: {
  51073. height: math.unit(1, "feet"),
  51074. name: "Hand",
  51075. image: {
  51076. source: "./media/characters/ventus-astro-fox/hand.svg"
  51077. }
  51078. },
  51079. paw: {
  51080. height: math.unit(1.5, "feet"),
  51081. name: "Paw",
  51082. image: {
  51083. source: "./media/characters/ventus-astro-fox/paw.svg"
  51084. }
  51085. },
  51086. },
  51087. [
  51088. {
  51089. name: "Normal",
  51090. height: math.unit(7, "feet"),
  51091. default: true
  51092. },
  51093. {
  51094. name: "Macro",
  51095. height: math.unit(200, "feet")
  51096. },
  51097. {
  51098. name: "Cosmic",
  51099. height: math.unit(3, "universes")
  51100. },
  51101. ]
  51102. ))
  51103. characterMakers.push(() => makeCharacter(
  51104. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51105. {
  51106. front: {
  51107. height: math.unit(3, "meters"),
  51108. weight: math.unit(7000, "lb"),
  51109. name: "Front",
  51110. image: {
  51111. source: "./media/characters/core-t/front.svg",
  51112. extra: 5729/4941,
  51113. bottom: 1129/6858
  51114. }
  51115. },
  51116. },
  51117. [
  51118. {
  51119. name: "Big",
  51120. height: math.unit(3, "meters"),
  51121. default: true
  51122. },
  51123. ]
  51124. ))
  51125. characterMakers.push(() => makeCharacter(
  51126. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51127. {
  51128. normal: {
  51129. height: math.unit(6 + 6/12, "feet"),
  51130. weight: math.unit(275, "lb"),
  51131. name: "Front",
  51132. image: {
  51133. source: "./media/characters/cadbunny/normal.svg",
  51134. extra: 1129/947,
  51135. bottom: 93/1222
  51136. },
  51137. default: true,
  51138. form: "normal"
  51139. },
  51140. gigantamax: {
  51141. height: math.unit(26, "feet"),
  51142. weight: math.unit(16000, "lb"),
  51143. name: "Front",
  51144. image: {
  51145. source: "./media/characters/cadbunny/gigantamax.svg",
  51146. extra: 1133/944,
  51147. bottom: 90/1223
  51148. },
  51149. default: true,
  51150. form: "gigantamax"
  51151. },
  51152. },
  51153. [
  51154. {
  51155. name: "Normal",
  51156. height: math.unit(6 + 6/12, "feet"),
  51157. default: true,
  51158. form: "normal"
  51159. },
  51160. {
  51161. name: "Small",
  51162. height: math.unit(26, "feet"),
  51163. default: true,
  51164. form: "gigantamax"
  51165. },
  51166. {
  51167. name: "Large",
  51168. height: math.unit(78, "feet"),
  51169. form: "gigantamax"
  51170. },
  51171. ],
  51172. {
  51173. "normal": {
  51174. name: "Normal",
  51175. default: true
  51176. },
  51177. "gigantamax": {
  51178. name: "Gigantamax"
  51179. }
  51180. }
  51181. ))
  51182. characterMakers.push(() => makeCharacter(
  51183. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51184. {
  51185. anthroFront: {
  51186. height: math.unit(8, "feet"),
  51187. weight: math.unit(300, "lb"),
  51188. name: "Front",
  51189. image: {
  51190. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51191. extra: 1272/1176,
  51192. bottom: 53/1325
  51193. },
  51194. form: "anthro",
  51195. default: true
  51196. },
  51197. feralSide: {
  51198. height: math.unit(4, "feet"),
  51199. weight: math.unit(250, "lb"),
  51200. name: "Side",
  51201. image: {
  51202. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51203. extra: 731/621,
  51204. bottom: 0/731
  51205. },
  51206. form: "feral",
  51207. default: true
  51208. },
  51209. },
  51210. [
  51211. {
  51212. name: "Regular",
  51213. height: math.unit(8, "feet"),
  51214. form: "anthro"
  51215. },
  51216. {
  51217. name: "Macro",
  51218. height: math.unit(250, "feet"),
  51219. form: "anthro",
  51220. default: true
  51221. },
  51222. {
  51223. name: "Regular",
  51224. height: math.unit(4, "feet"),
  51225. form: "feral"
  51226. },
  51227. {
  51228. name: "Macro",
  51229. height: math.unit(125, "feet"),
  51230. form: "feral",
  51231. default: true
  51232. },
  51233. ],
  51234. {
  51235. "anthro": {
  51236. name: "Anthro",
  51237. default: true
  51238. },
  51239. "feral": {
  51240. name: "Feral",
  51241. },
  51242. }
  51243. ))
  51244. characterMakers.push(() => makeCharacter(
  51245. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51246. {
  51247. front: {
  51248. height: math.unit(11 + 10/12, "feet"),
  51249. weight: math.unit(1587, "kg"),
  51250. name: "Front",
  51251. image: {
  51252. source: "./media/characters/maple-javira-dragon/front.svg",
  51253. extra: 1136/744,
  51254. bottom: 73/1209
  51255. }
  51256. },
  51257. side: {
  51258. height: math.unit(11 + 10/12, "feet"),
  51259. weight: math.unit(1587, "kg"),
  51260. name: "Side",
  51261. image: {
  51262. source: "./media/characters/maple-javira-dragon/side.svg",
  51263. extra: 712/505,
  51264. bottom: 17/729
  51265. }
  51266. },
  51267. head: {
  51268. height: math.unit(8.05, "feet"),
  51269. name: "Head",
  51270. image: {
  51271. source: "./media/characters/maple-javira-dragon/head.svg",
  51272. extra: 1420/1344,
  51273. bottom: 0/1420
  51274. }
  51275. },
  51276. },
  51277. [
  51278. {
  51279. name: "Normal",
  51280. height: math.unit(11 + 10/12, "feet"),
  51281. default: true
  51282. },
  51283. ]
  51284. ))
  51285. characterMakers.push(() => makeCharacter(
  51286. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51287. {
  51288. front: {
  51289. height: math.unit(117, "cm"),
  51290. weight: math.unit(50, "kg"),
  51291. name: "Front",
  51292. image: {
  51293. source: "./media/characters/sonia-wyverntail/front.svg",
  51294. extra: 708/592,
  51295. bottom: 25/733
  51296. }
  51297. },
  51298. },
  51299. [
  51300. {
  51301. name: "Normal",
  51302. height: math.unit(117, "cm"),
  51303. default: true
  51304. },
  51305. ]
  51306. ))
  51307. characterMakers.push(() => makeCharacter(
  51308. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51309. {
  51310. front: {
  51311. height: math.unit(6 + 5/12, "feet"),
  51312. name: "Front",
  51313. image: {
  51314. source: "./media/characters/micah/front.svg",
  51315. extra: 1758/1546,
  51316. bottom: 214/1972
  51317. }
  51318. },
  51319. },
  51320. [
  51321. {
  51322. name: "Normal",
  51323. height: math.unit(6 + 5/12, "feet"),
  51324. default: true
  51325. },
  51326. ]
  51327. ))
  51328. characterMakers.push(() => makeCharacter(
  51329. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51330. {
  51331. front: {
  51332. height: math.unit(1.75, "meters"),
  51333. weight: math.unit(100, "kg"),
  51334. name: "Front",
  51335. image: {
  51336. source: "./media/characters/zarya/front.svg",
  51337. extra: 741/735,
  51338. bottom: 44/785
  51339. },
  51340. extraAttributes: {
  51341. "tailLength": {
  51342. name: "Tail Length",
  51343. power: 1,
  51344. type: "length",
  51345. base: math.unit(180, "cm")
  51346. },
  51347. "pawLength": {
  51348. name: "Paw Length",
  51349. power: 1,
  51350. type: "length",
  51351. base: math.unit(31, "cm")
  51352. },
  51353. }
  51354. },
  51355. side: {
  51356. height: math.unit(1.75, "meters"),
  51357. weight: math.unit(100, "kg"),
  51358. name: "Side",
  51359. image: {
  51360. source: "./media/characters/zarya/side.svg",
  51361. extra: 776/770,
  51362. bottom: 17/793
  51363. },
  51364. extraAttributes: {
  51365. "tailLength": {
  51366. name: "Tail Length",
  51367. power: 1,
  51368. type: "length",
  51369. base: math.unit(180, "cm")
  51370. },
  51371. "pawLength": {
  51372. name: "Paw Length",
  51373. power: 1,
  51374. type: "length",
  51375. base: math.unit(31, "cm")
  51376. },
  51377. }
  51378. },
  51379. back: {
  51380. height: math.unit(1.75, "meters"),
  51381. weight: math.unit(100, "kg"),
  51382. name: "Back",
  51383. image: {
  51384. source: "./media/characters/zarya/back.svg",
  51385. extra: 741/735,
  51386. bottom: 44/785
  51387. },
  51388. extraAttributes: {
  51389. "tailLength": {
  51390. name: "Tail Length",
  51391. power: 1,
  51392. type: "length",
  51393. base: math.unit(180, "cm")
  51394. },
  51395. "pawLength": {
  51396. name: "Paw Length",
  51397. power: 1,
  51398. type: "length",
  51399. base: math.unit(31, "cm")
  51400. },
  51401. }
  51402. },
  51403. frontNoTail: {
  51404. height: math.unit(1.75, "meters"),
  51405. weight: math.unit(100, "kg"),
  51406. name: "Front (No Tail)",
  51407. image: {
  51408. source: "./media/characters/zarya/front-no-tail.svg",
  51409. extra: 741/735,
  51410. bottom: 44/785
  51411. },
  51412. extraAttributes: {
  51413. "tailLength": {
  51414. name: "Tail Length",
  51415. power: 1,
  51416. type: "length",
  51417. base: math.unit(180, "cm")
  51418. },
  51419. "pawLength": {
  51420. name: "Paw Length",
  51421. power: 1,
  51422. type: "length",
  51423. base: math.unit(31, "cm")
  51424. },
  51425. }
  51426. },
  51427. dressed: {
  51428. height: math.unit(1.75, "meters"),
  51429. weight: math.unit(100, "kg"),
  51430. name: "Dressed",
  51431. image: {
  51432. source: "./media/characters/zarya/dressed.svg",
  51433. extra: 683/672,
  51434. bottom: 79/762
  51435. },
  51436. extraAttributes: {
  51437. "tailLength": {
  51438. name: "Tail Length",
  51439. power: 1,
  51440. type: "length",
  51441. base: math.unit(180, "cm")
  51442. },
  51443. "pawLength": {
  51444. name: "Paw Length",
  51445. power: 1,
  51446. type: "length",
  51447. base: math.unit(31, "cm")
  51448. },
  51449. }
  51450. },
  51451. },
  51452. [
  51453. {
  51454. name: "Micro",
  51455. height: math.unit(5, "cm")
  51456. },
  51457. {
  51458. name: "Normal",
  51459. height: math.unit(1.75, "meters"),
  51460. default: true
  51461. },
  51462. {
  51463. name: "Macro",
  51464. height: math.unit(122, "meters")
  51465. },
  51466. ]
  51467. ))
  51468. characterMakers.push(() => makeCharacter(
  51469. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51470. {
  51471. front: {
  51472. height: math.unit(7.5, "feet"),
  51473. name: "Front",
  51474. image: {
  51475. source: "./media/characters/sven-hatisson/front.svg",
  51476. extra: 917/857,
  51477. bottom: 42/959
  51478. }
  51479. },
  51480. back: {
  51481. height: math.unit(7.5, "feet"),
  51482. name: "Back",
  51483. image: {
  51484. source: "./media/characters/sven-hatisson/back.svg",
  51485. extra: 903/856,
  51486. bottom: 15/918
  51487. }
  51488. },
  51489. },
  51490. [
  51491. {
  51492. name: "Base Height",
  51493. height: math.unit(7.5, "feet")
  51494. },
  51495. {
  51496. name: "Usual Height",
  51497. height: math.unit(13.5, "feet"),
  51498. default: true
  51499. },
  51500. {
  51501. name: "Smaller Macro",
  51502. height: math.unit(85, "feet")
  51503. },
  51504. {
  51505. name: "Moderate Macro",
  51506. height: math.unit(320, "feet")
  51507. },
  51508. {
  51509. name: "Large Macro",
  51510. height: math.unit(1000, "feet")
  51511. },
  51512. {
  51513. name: "Largest Size",
  51514. height: math.unit(2, "miles")
  51515. },
  51516. ]
  51517. ))
  51518. characterMakers.push(() => makeCharacter(
  51519. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51520. {
  51521. side: {
  51522. height: math.unit(1.8, "meters"),
  51523. weight: math.unit(275, "kg"),
  51524. name: "Side",
  51525. image: {
  51526. source: "./media/characters/terra/side.svg",
  51527. extra: 1273/1147,
  51528. bottom: 0/1273
  51529. }
  51530. },
  51531. },
  51532. [
  51533. {
  51534. name: "Normal",
  51535. height: math.unit(16.2, "meters"),
  51536. default: true
  51537. },
  51538. ]
  51539. ))
  51540. characterMakers.push(() => makeCharacter(
  51541. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51542. {
  51543. borzoiFront: {
  51544. height: math.unit(6 + 9/12, "feet"),
  51545. name: "Front",
  51546. image: {
  51547. source: "./media/characters/rae/borzoi-front.svg",
  51548. extra: 1161/1098,
  51549. bottom: 31/1192
  51550. },
  51551. form: "borzoi",
  51552. default: true
  51553. },
  51554. werewolfFront: {
  51555. height: math.unit(8 + 7/12, "feet"),
  51556. name: "Front",
  51557. image: {
  51558. source: "./media/characters/rae/werewolf-front.svg",
  51559. extra: 1411/1334,
  51560. bottom: 127/1538
  51561. },
  51562. form: "werewolf",
  51563. default: true
  51564. },
  51565. },
  51566. [
  51567. {
  51568. name: "Normal",
  51569. height: math.unit(6 + 9/12, "feet"),
  51570. default: true,
  51571. form: "borzoi"
  51572. },
  51573. {
  51574. name: "Normal",
  51575. height: math.unit(8 + 7/12, "feet"),
  51576. default: true,
  51577. form: "werewolf"
  51578. },
  51579. ],
  51580. {
  51581. "borzoi": {
  51582. name: "Borzoi",
  51583. default: true
  51584. },
  51585. "werewolf": {
  51586. name: "Werewolf",
  51587. },
  51588. }
  51589. ))
  51590. characterMakers.push(() => makeCharacter(
  51591. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51592. {
  51593. front: {
  51594. height: math.unit(8 + 7/12, "feet"),
  51595. weight: math.unit(482, "lb"),
  51596. name: "Front",
  51597. image: {
  51598. source: "./media/characters/kit/front.svg",
  51599. extra: 1247/1103,
  51600. bottom: 41/1288
  51601. }
  51602. },
  51603. back: {
  51604. height: math.unit(8 + 7/12, "feet"),
  51605. weight: math.unit(482, "lb"),
  51606. name: "Back",
  51607. image: {
  51608. source: "./media/characters/kit/back.svg",
  51609. extra: 1252/1123,
  51610. bottom: 21/1273
  51611. }
  51612. },
  51613. paw: {
  51614. height: math.unit(1.46, "feet"),
  51615. name: "Paw",
  51616. image: {
  51617. source: "./media/characters/kit/paw.svg"
  51618. }
  51619. },
  51620. },
  51621. [
  51622. {
  51623. name: "Normal",
  51624. height: math.unit(2.61, "meters"),
  51625. default: true
  51626. },
  51627. {
  51628. name: "\"Tall\"",
  51629. height: math.unit(8.21, "meters")
  51630. },
  51631. {
  51632. name: "Tall",
  51633. height: math.unit(19.6, "meters")
  51634. },
  51635. {
  51636. name: "Very Tall",
  51637. height: math.unit(57.91, "meters")
  51638. },
  51639. {
  51640. name: "Semi-Macro",
  51641. height: math.unit(138.64, "meters")
  51642. },
  51643. {
  51644. name: "Macro",
  51645. height: math.unit(831.99, "meters")
  51646. },
  51647. {
  51648. name: "EX-Macro",
  51649. height: math.unit(96451121, "meters")
  51650. },
  51651. {
  51652. name: "S1-Omnipotent",
  51653. height: math.unit(4.42074e+9, "meters")
  51654. },
  51655. {
  51656. name: "S2-Omnipotent",
  51657. height: math.unit(9.42074e+17, "meters")
  51658. },
  51659. {
  51660. name: "Omnipotent",
  51661. height: math.unit(4.23112e+24, "meters")
  51662. },
  51663. {
  51664. name: "Hypergod",
  51665. height: math.unit(5.05176e+27, "meters")
  51666. },
  51667. {
  51668. name: "Hypergod-EX",
  51669. height: math.unit(9.45532e+49, "meters")
  51670. },
  51671. {
  51672. name: "Hypergod-SP",
  51673. height: math.unit(9.45532e+195, "meters")
  51674. },
  51675. ]
  51676. ))
  51677. characterMakers.push(() => makeCharacter(
  51678. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51679. {
  51680. side: {
  51681. height: math.unit(0.6, "meters"),
  51682. weight: math.unit(24, "kg"),
  51683. name: "Side",
  51684. image: {
  51685. source: "./media/characters/celeste/side.svg",
  51686. extra: 810/517,
  51687. bottom: 53/863
  51688. }
  51689. },
  51690. },
  51691. [
  51692. {
  51693. name: "Velociraptor",
  51694. height: math.unit(0.6, "meters"),
  51695. default: true
  51696. },
  51697. {
  51698. name: "Utahraptor",
  51699. height: math.unit(1.8, "meters")
  51700. },
  51701. {
  51702. name: "Gallimimus",
  51703. height: math.unit(4.0, "meters")
  51704. },
  51705. {
  51706. name: "Large",
  51707. height: math.unit(20, "meters")
  51708. },
  51709. {
  51710. name: "Planetary",
  51711. height: math.unit(50, "megameters")
  51712. },
  51713. {
  51714. name: "Stellar",
  51715. height: math.unit(1.5, "gigameters")
  51716. },
  51717. {
  51718. name: "Galactic",
  51719. height: math.unit(100, "exameters")
  51720. },
  51721. ]
  51722. ))
  51723. characterMakers.push(() => makeCharacter(
  51724. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51725. {
  51726. front: {
  51727. height: math.unit(6, "feet"),
  51728. weight: math.unit(210, "lb"),
  51729. name: "Front",
  51730. image: {
  51731. source: "./media/characters/glacia/front.svg",
  51732. extra: 958/901,
  51733. bottom: 45/1003
  51734. }
  51735. },
  51736. },
  51737. [
  51738. {
  51739. name: "Macro",
  51740. height: math.unit(1000, "meters"),
  51741. default: true
  51742. },
  51743. ]
  51744. ))
  51745. characterMakers.push(() => makeCharacter(
  51746. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51747. {
  51748. front: {
  51749. height: math.unit(4, "meters"),
  51750. name: "Front",
  51751. image: {
  51752. source: "./media/characters/giri/front.svg",
  51753. extra: 966/894,
  51754. bottom: 21/987
  51755. }
  51756. },
  51757. },
  51758. [
  51759. {
  51760. name: "Normal",
  51761. height: math.unit(4, "meters"),
  51762. default: true
  51763. },
  51764. ]
  51765. ))
  51766. characterMakers.push(() => makeCharacter(
  51767. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51768. {
  51769. back: {
  51770. height: math.unit(4, "feet"),
  51771. weight: math.unit(37, "lb"),
  51772. name: "Back",
  51773. image: {
  51774. source: "./media/characters/tin/back.svg",
  51775. extra: 845/780,
  51776. bottom: 28/873
  51777. }
  51778. },
  51779. },
  51780. [
  51781. {
  51782. name: "Normal",
  51783. height: math.unit(4, "feet"),
  51784. default: true
  51785. },
  51786. ]
  51787. ))
  51788. characterMakers.push(() => makeCharacter(
  51789. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51790. {
  51791. front: {
  51792. height: math.unit(25, "feet"),
  51793. name: "Front",
  51794. image: {
  51795. source: "./media/characters/cadenza-vivace/front.svg",
  51796. extra: 1842/1578,
  51797. bottom: 30/1872
  51798. }
  51799. },
  51800. },
  51801. [
  51802. {
  51803. name: "Macro",
  51804. height: math.unit(25, "feet"),
  51805. default: true
  51806. },
  51807. ]
  51808. ))
  51809. characterMakers.push(() => makeCharacter(
  51810. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51811. {
  51812. front: {
  51813. height: math.unit(10, "feet"),
  51814. weight: math.unit(625, "kg"),
  51815. name: "Front",
  51816. image: {
  51817. source: "./media/characters/zain/front.svg",
  51818. extra: 1682/1498,
  51819. bottom: 223/1905
  51820. }
  51821. },
  51822. back: {
  51823. height: math.unit(10, "feet"),
  51824. weight: math.unit(625, "kg"),
  51825. name: "Back",
  51826. image: {
  51827. source: "./media/characters/zain/back.svg",
  51828. extra: 1814/1657,
  51829. bottom: 152/1966
  51830. }
  51831. },
  51832. head: {
  51833. height: math.unit(10, "feet"),
  51834. weight: math.unit(625, "kg"),
  51835. name: "Head",
  51836. image: {
  51837. source: "./media/characters/zain/head.svg",
  51838. extra: 1059/762,
  51839. bottom: 0/1059
  51840. }
  51841. },
  51842. },
  51843. [
  51844. {
  51845. name: "Normal",
  51846. height: math.unit(10, "feet"),
  51847. default: true
  51848. },
  51849. ]
  51850. ))
  51851. characterMakers.push(() => makeCharacter(
  51852. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51853. {
  51854. front: {
  51855. height: math.unit(6 + 5/12, "feet"),
  51856. weight: math.unit(750, "lb"),
  51857. name: "Front",
  51858. image: {
  51859. source: "./media/characters/ruchex/front.svg",
  51860. extra: 877/820,
  51861. bottom: 17/894
  51862. },
  51863. extraAttributes: {
  51864. "width": {
  51865. name: "Width",
  51866. power: 1,
  51867. type: "length",
  51868. base: math.unit(4.757, "feet")
  51869. },
  51870. }
  51871. },
  51872. },
  51873. [
  51874. {
  51875. name: "Normal",
  51876. height: math.unit(6 + 5/12, "feet"),
  51877. default: true
  51878. },
  51879. ]
  51880. ))
  51881. characterMakers.push(() => makeCharacter(
  51882. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51883. {
  51884. dressedFront: {
  51885. height: math.unit(191, "cm"),
  51886. weight: math.unit(80, "kg"),
  51887. name: "Front",
  51888. image: {
  51889. source: "./media/characters/buster/dressed-front.svg",
  51890. extra: 1022/973,
  51891. bottom: 69/1091
  51892. }
  51893. },
  51894. dressedBack: {
  51895. height: math.unit(191, "cm"),
  51896. weight: math.unit(80, "kg"),
  51897. name: "Back",
  51898. image: {
  51899. source: "./media/characters/buster/dressed-back.svg",
  51900. extra: 1018/970,
  51901. bottom: 55/1073
  51902. }
  51903. },
  51904. nudeFront: {
  51905. height: math.unit(191, "cm"),
  51906. weight: math.unit(80, "kg"),
  51907. name: "Front (Nude)",
  51908. image: {
  51909. source: "./media/characters/buster/nude-front.svg",
  51910. extra: 1022/973,
  51911. bottom: 69/1091
  51912. }
  51913. },
  51914. nudeBack: {
  51915. height: math.unit(191, "cm"),
  51916. weight: math.unit(80, "kg"),
  51917. name: "Back (Nude)",
  51918. image: {
  51919. source: "./media/characters/buster/nude-back.svg",
  51920. extra: 1018/970,
  51921. bottom: 55/1073
  51922. }
  51923. },
  51924. dick: {
  51925. height: math.unit(2.59, "feet"),
  51926. name: "Dick",
  51927. image: {
  51928. source: "./media/characters/buster/dick.svg"
  51929. }
  51930. },
  51931. ass: {
  51932. height: math.unit(1.2, "feet"),
  51933. name: "Ass",
  51934. image: {
  51935. source: "./media/characters/buster/ass.svg"
  51936. }
  51937. },
  51938. },
  51939. [
  51940. {
  51941. name: "Normal",
  51942. height: math.unit(191, "cm"),
  51943. default: true
  51944. },
  51945. ]
  51946. ))
  51947. characterMakers.push(() => makeCharacter(
  51948. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51949. {
  51950. side: {
  51951. height: math.unit(8.1, "feet"),
  51952. weight: math.unit(3500, "lb"),
  51953. name: "Side",
  51954. image: {
  51955. source: "./media/characters/sonya/side.svg",
  51956. extra: 1730/1317,
  51957. bottom: 86/1816
  51958. }
  51959. },
  51960. },
  51961. [
  51962. {
  51963. name: "Normal",
  51964. height: math.unit(8.1, "feet"),
  51965. default: true
  51966. },
  51967. ]
  51968. ))
  51969. characterMakers.push(() => makeCharacter(
  51970. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51971. {
  51972. front: {
  51973. height: math.unit(6, "feet"),
  51974. weight: math.unit(150, "lb"),
  51975. name: "Front",
  51976. image: {
  51977. source: "./media/characters/cadence-andrysiak/front.svg",
  51978. extra: 1164/1121,
  51979. bottom: 60/1224
  51980. }
  51981. },
  51982. back: {
  51983. height: math.unit(6, "feet"),
  51984. weight: math.unit(150, "lb"),
  51985. name: "Back",
  51986. image: {
  51987. source: "./media/characters/cadence-andrysiak/back.svg",
  51988. extra: 1200/1165,
  51989. bottom: 9/1209
  51990. }
  51991. },
  51992. dressed: {
  51993. height: math.unit(6, "feet"),
  51994. weight: math.unit(150, "lb"),
  51995. name: "Dressed",
  51996. image: {
  51997. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51998. extra: 1164/1121,
  51999. bottom: 60/1224
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Micro",
  52006. height: math.unit(1, "mm")
  52007. },
  52008. {
  52009. name: "Normal",
  52010. height: math.unit(6, "feet"),
  52011. default: true
  52012. },
  52013. ]
  52014. ))
  52015. characterMakers.push(() => makeCharacter(
  52016. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52017. {
  52018. front: {
  52019. height: math.unit(60, "inches"),
  52020. weight: math.unit(16, "lb"),
  52021. preyCapacity: math.unit(80, "liters"),
  52022. name: "Front",
  52023. image: {
  52024. source: "./media/characters/penny-lynx/front.svg",
  52025. extra: 1959/1769,
  52026. bottom: 49/2008
  52027. }
  52028. },
  52029. },
  52030. [
  52031. {
  52032. name: "Nokia",
  52033. height: math.unit(2, "inches")
  52034. },
  52035. {
  52036. name: "Desktop",
  52037. height: math.unit(24, "inches")
  52038. },
  52039. {
  52040. name: "TV",
  52041. height: math.unit(60, "inches")
  52042. },
  52043. {
  52044. name: "Jumbotron",
  52045. height: math.unit(12, "feet")
  52046. },
  52047. {
  52048. name: "Billboard",
  52049. height: math.unit(48, "feet"),
  52050. default: true
  52051. },
  52052. {
  52053. name: "IMAX",
  52054. height: math.unit(96, "feet")
  52055. },
  52056. {
  52057. name: "SINGULARITY",
  52058. height: math.unit(864938, "miles")
  52059. },
  52060. ]
  52061. ))
  52062. characterMakers.push(() => makeCharacter(
  52063. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52064. {
  52065. front: {
  52066. height: math.unit(5 + 4/12, "feet"),
  52067. weight: math.unit(230, "lb"),
  52068. name: "Front",
  52069. image: {
  52070. source: "./media/characters/sukebe/front.svg",
  52071. extra: 2130/2038,
  52072. bottom: 90/2220
  52073. }
  52074. },
  52075. back: {
  52076. height: math.unit(3.48, "feet"),
  52077. weight: math.unit(230, "lb"),
  52078. name: "Back",
  52079. image: {
  52080. source: "./media/characters/sukebe/back.svg",
  52081. extra: 1670/1604,
  52082. bottom: 0/1670
  52083. }
  52084. },
  52085. },
  52086. [
  52087. {
  52088. name: "Normal",
  52089. height: math.unit(5 + 4/12, "feet"),
  52090. default: true
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(6, "feet"),
  52099. name: "Front",
  52100. image: {
  52101. source: "./media/characters/nylla/front.svg",
  52102. extra: 1868/1699,
  52103. bottom: 97/1965
  52104. }
  52105. },
  52106. back: {
  52107. height: math.unit(6, "feet"),
  52108. name: "Back",
  52109. image: {
  52110. source: "./media/characters/nylla/back.svg",
  52111. extra: 1889/1712,
  52112. bottom: 93/1982
  52113. }
  52114. },
  52115. frontNsfw: {
  52116. height: math.unit(6, "feet"),
  52117. name: "Front (NSFW)",
  52118. image: {
  52119. source: "./media/characters/nylla/front-nsfw.svg",
  52120. extra: 1868/1699,
  52121. bottom: 97/1965
  52122. },
  52123. extraAttributes: {
  52124. "dickLength": {
  52125. name: "Dick Length",
  52126. power: 1,
  52127. type: "length",
  52128. base: math.unit(1.4, "feet")
  52129. },
  52130. "cumVolume": {
  52131. name: "Cum Volume",
  52132. power: 3,
  52133. type: "volume",
  52134. base: math.unit(100, "mL")
  52135. },
  52136. }
  52137. },
  52138. backNsfw: {
  52139. height: math.unit(6, "feet"),
  52140. name: "Back (NSFW)",
  52141. image: {
  52142. source: "./media/characters/nylla/back-nsfw.svg",
  52143. extra: 1889/1712,
  52144. bottom: 93/1982
  52145. }
  52146. },
  52147. maw: {
  52148. height: math.unit(2.10, "feet"),
  52149. name: "Maw",
  52150. image: {
  52151. source: "./media/characters/nylla/maw.svg"
  52152. }
  52153. },
  52154. paws: {
  52155. height: math.unit(2.06, "feet"),
  52156. name: "Paws",
  52157. image: {
  52158. source: "./media/characters/nylla/paws.svg"
  52159. }
  52160. },
  52161. muzzle: {
  52162. height: math.unit(0.61, "feet"),
  52163. name: "Muzzle",
  52164. image: {
  52165. source: "./media/characters/nylla/muzzle.svg"
  52166. }
  52167. },
  52168. sheath: {
  52169. height: math.unit(1.305, "feet"),
  52170. name: "Sheath",
  52171. image: {
  52172. source: "./media/characters/nylla/sheath.svg"
  52173. }
  52174. },
  52175. },
  52176. [
  52177. {
  52178. name: "Micro",
  52179. height: math.unit(7.5, "inches")
  52180. },
  52181. {
  52182. name: "Normal",
  52183. height: math.unit(7, "feet"),
  52184. default: true
  52185. },
  52186. {
  52187. name: "Macro",
  52188. height: math.unit(60, "feet")
  52189. },
  52190. {
  52191. name: "Mega",
  52192. height: math.unit(200, "feet")
  52193. },
  52194. ]
  52195. ))
  52196. characterMakers.push(() => makeCharacter(
  52197. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52198. {
  52199. front: {
  52200. height: math.unit(10, "feet"),
  52201. weight: math.unit(2300, "lb"),
  52202. name: "Front",
  52203. image: {
  52204. source: "./media/characters/hunt3r/front.svg",
  52205. extra: 1909/1742,
  52206. bottom: 46/1955
  52207. }
  52208. },
  52209. },
  52210. [
  52211. {
  52212. name: "Normal",
  52213. height: math.unit(10, "feet"),
  52214. default: true
  52215. },
  52216. ]
  52217. ))
  52218. characterMakers.push(() => makeCharacter(
  52219. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52220. {
  52221. dressed: {
  52222. height: math.unit(11, "feet"),
  52223. weight: math.unit(18500, "lb"),
  52224. preyCapacity: math.unit(9, "people"),
  52225. name: "Dressed",
  52226. image: {
  52227. source: "./media/characters/cylphis/dressed.svg",
  52228. extra: 1028/1003,
  52229. bottom: 75/1103
  52230. },
  52231. },
  52232. undressed: {
  52233. height: math.unit(11, "feet"),
  52234. weight: math.unit(18500, "lb"),
  52235. preyCapacity: math.unit(9, "people"),
  52236. name: "Undressed",
  52237. image: {
  52238. source: "./media/characters/cylphis/undressed.svg",
  52239. extra: 1028/1003,
  52240. bottom: 75/1103
  52241. }
  52242. },
  52243. full: {
  52244. height: math.unit(11, "feet"),
  52245. weight: math.unit(18500 + 150*9, "lb"),
  52246. preyCapacity: math.unit(9, "people"),
  52247. name: "Full",
  52248. image: {
  52249. source: "./media/characters/cylphis/full.svg",
  52250. extra: 1028/1003,
  52251. bottom: 75/1103
  52252. }
  52253. },
  52254. },
  52255. [
  52256. {
  52257. name: "Small",
  52258. height: math.unit(8, "feet")
  52259. },
  52260. {
  52261. name: "Normal",
  52262. height: math.unit(11, "feet"),
  52263. default: true
  52264. },
  52265. ]
  52266. ))
  52267. characterMakers.push(() => makeCharacter(
  52268. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52269. {
  52270. front: {
  52271. height: math.unit(2 + 7/12, "feet"),
  52272. name: "Front",
  52273. image: {
  52274. source: "./media/characters/orishan/front.svg",
  52275. extra: 1058/1023,
  52276. bottom: 23/1081
  52277. }
  52278. },
  52279. back: {
  52280. height: math.unit(2 + 7/12, "feet"),
  52281. name: "Back",
  52282. image: {
  52283. source: "./media/characters/orishan/back.svg",
  52284. extra: 1058/1023,
  52285. bottom: 23/1081
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Micro",
  52292. height: math.unit(2, "cm")
  52293. },
  52294. {
  52295. name: "Normal",
  52296. height: math.unit(2 + 7/12, "feet"),
  52297. default: true
  52298. },
  52299. ]
  52300. ))
  52301. characterMakers.push(() => makeCharacter(
  52302. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52303. {
  52304. front: {
  52305. height: math.unit(3, "meters"),
  52306. weight: math.unit(508, "kg"),
  52307. name: "Front",
  52308. image: {
  52309. source: "./media/characters/seranis/front.svg",
  52310. extra: 1478/1454,
  52311. bottom: 41/1519
  52312. }
  52313. },
  52314. },
  52315. [
  52316. {
  52317. name: "Normal",
  52318. height: math.unit(3, "meters"),
  52319. default: true
  52320. },
  52321. {
  52322. name: "Macro",
  52323. height: math.unit(108, "meters")
  52324. },
  52325. {
  52326. name: "Megamacro",
  52327. height: math.unit(1250, "meters")
  52328. },
  52329. ]
  52330. ))
  52331. characterMakers.push(() => makeCharacter(
  52332. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52333. {
  52334. undressed: {
  52335. height: math.unit(5 + 3/12, "feet"),
  52336. name: "Undressed",
  52337. image: {
  52338. source: "./media/characters/ankou/undressed.svg",
  52339. extra: 1301/1213,
  52340. bottom: 87/1388
  52341. }
  52342. },
  52343. dressed: {
  52344. height: math.unit(5 + 3/12, "feet"),
  52345. name: "Dressed",
  52346. image: {
  52347. source: "./media/characters/ankou/dressed.svg",
  52348. extra: 1301/1213,
  52349. bottom: 87/1388
  52350. }
  52351. },
  52352. head: {
  52353. height: math.unit(1.61, "feet"),
  52354. name: "Head",
  52355. image: {
  52356. source: "./media/characters/ankou/head.svg"
  52357. }
  52358. },
  52359. },
  52360. [
  52361. {
  52362. name: "Normal",
  52363. height: math.unit(5 + 3/12, "feet"),
  52364. default: true
  52365. },
  52366. ]
  52367. ))
  52368. characterMakers.push(() => makeCharacter(
  52369. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52370. {
  52371. side: {
  52372. height: math.unit(6 + 3/12, "feet"),
  52373. weight: math.unit(200, "kg"),
  52374. name: "Side",
  52375. image: {
  52376. source: "./media/characters/juniper-skunktaur/side.svg",
  52377. extra: 1574/1229,
  52378. bottom: 38/1612
  52379. }
  52380. },
  52381. front: {
  52382. height: math.unit(6 + 3/12, "feet"),
  52383. weight: math.unit(200, "kg"),
  52384. name: "Front",
  52385. image: {
  52386. source: "./media/characters/juniper-skunktaur/front.svg",
  52387. extra: 1337/1278,
  52388. bottom: 22/1359
  52389. }
  52390. },
  52391. back: {
  52392. height: math.unit(6 + 3/12, "feet"),
  52393. weight: math.unit(200, "kg"),
  52394. name: "Back",
  52395. image: {
  52396. source: "./media/characters/juniper-skunktaur/back.svg",
  52397. extra: 1618/1273,
  52398. bottom: 13/1631
  52399. }
  52400. },
  52401. top: {
  52402. height: math.unit(2.62, "feet"),
  52403. weight: math.unit(200, "kg"),
  52404. name: "Top",
  52405. image: {
  52406. source: "./media/characters/juniper-skunktaur/top.svg"
  52407. }
  52408. },
  52409. },
  52410. [
  52411. {
  52412. name: "Normal",
  52413. height: math.unit(6 + 3/12, "feet"),
  52414. default: true
  52415. },
  52416. ]
  52417. ))
  52418. characterMakers.push(() => makeCharacter(
  52419. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52420. {
  52421. front: {
  52422. height: math.unit(20.5, "feet"),
  52423. name: "Front",
  52424. image: {
  52425. source: "./media/characters/rei/front.svg",
  52426. extra: 1349/1195,
  52427. bottom: 31/1380
  52428. }
  52429. },
  52430. back: {
  52431. height: math.unit(20.5, "feet"),
  52432. name: "Back",
  52433. image: {
  52434. source: "./media/characters/rei/back.svg",
  52435. extra: 1358/1204,
  52436. bottom: 22/1380
  52437. }
  52438. },
  52439. pawsDigi: {
  52440. height: math.unit(3.45, "feet"),
  52441. name: "Paws (Digi)",
  52442. image: {
  52443. source: "./media/characters/rei/paws-digi.svg"
  52444. }
  52445. },
  52446. pawsPlanti: {
  52447. height: math.unit(3.45, "feet"),
  52448. name: "Paws (Planti)",
  52449. image: {
  52450. source: "./media/characters/rei/paws-planti.svg"
  52451. }
  52452. },
  52453. },
  52454. [
  52455. {
  52456. name: "Normal",
  52457. height: math.unit(20.5, "feet"),
  52458. default: true
  52459. },
  52460. ]
  52461. ))
  52462. characterMakers.push(() => makeCharacter(
  52463. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52464. {
  52465. front: {
  52466. height: math.unit(5 + 11/12, "feet"),
  52467. name: "Front",
  52468. image: {
  52469. source: "./media/characters/carina/front.svg",
  52470. extra: 1720/1449,
  52471. bottom: 14/1734
  52472. }
  52473. },
  52474. back: {
  52475. height: math.unit(5 + 11/12, "feet"),
  52476. name: "Back",
  52477. image: {
  52478. source: "./media/characters/carina/back.svg",
  52479. extra: 1493/1445,
  52480. bottom: 17/1510
  52481. }
  52482. },
  52483. paw: {
  52484. height: math.unit(0.92, "feet"),
  52485. name: "Paw",
  52486. image: {
  52487. source: "./media/characters/carina/paw.svg"
  52488. }
  52489. },
  52490. },
  52491. [
  52492. {
  52493. name: "Normal",
  52494. height: math.unit(5 + 11/12, "feet"),
  52495. default: true
  52496. },
  52497. ]
  52498. ))
  52499. characterMakers.push(() => makeCharacter(
  52500. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52501. {
  52502. front: {
  52503. height: math.unit(4.88, "meters"),
  52504. name: "Front",
  52505. image: {
  52506. source: "./media/characters/maya/front.svg",
  52507. extra: 1222/1145,
  52508. bottom: 57/1279
  52509. }
  52510. },
  52511. },
  52512. [
  52513. {
  52514. name: "Normal",
  52515. height: math.unit(4.88, "meters"),
  52516. default: true
  52517. },
  52518. {
  52519. name: "Macro",
  52520. height: math.unit(38.1, "meters")
  52521. },
  52522. {
  52523. name: "Macro+",
  52524. height: math.unit(152.4, "meters")
  52525. },
  52526. {
  52527. name: "Macro++",
  52528. height: math.unit(16.09, "km")
  52529. },
  52530. {
  52531. name: "Mega-macro",
  52532. height: math.unit(700, "megameters")
  52533. },
  52534. ]
  52535. ))
  52536. characterMakers.push(() => makeCharacter(
  52537. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52538. {
  52539. front: {
  52540. height: math.unit(6 + 2/12, "feet"),
  52541. weight: math.unit(500, "lb"),
  52542. preyCapacity: math.unit(4, "people"),
  52543. name: "Front",
  52544. image: {
  52545. source: "./media/characters/yepir/front.svg"
  52546. }
  52547. },
  52548. side: {
  52549. height: math.unit(6 + 2/12, "feet"),
  52550. weight: math.unit(500, "lb"),
  52551. preyCapacity: math.unit(4, "people"),
  52552. name: "Side",
  52553. image: {
  52554. source: "./media/characters/yepir/side.svg"
  52555. }
  52556. },
  52557. paw: {
  52558. height: math.unit(1.05, "feet"),
  52559. name: "Paw",
  52560. image: {
  52561. source: "./media/characters/yepir/paw.svg"
  52562. }
  52563. },
  52564. },
  52565. [
  52566. {
  52567. name: "Normal",
  52568. height: math.unit(6 + 2/12, "feet"),
  52569. default: true
  52570. },
  52571. ]
  52572. ))
  52573. characterMakers.push(() => makeCharacter(
  52574. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52575. {
  52576. front: {
  52577. height: math.unit(5 + 4/12, "feet"),
  52578. name: "Front",
  52579. image: {
  52580. source: "./media/characters/russec/front.svg",
  52581. extra: 1926/1626,
  52582. bottom: 72/1998
  52583. }
  52584. },
  52585. back: {
  52586. height: math.unit(5 + 4/12, "feet"),
  52587. name: "Back",
  52588. image: {
  52589. source: "./media/characters/russec/back.svg",
  52590. extra: 1910/1591,
  52591. bottom: 48/1958
  52592. }
  52593. },
  52594. },
  52595. [
  52596. {
  52597. name: "Small",
  52598. height: math.unit(5 + 4/12, "feet")
  52599. },
  52600. {
  52601. name: "Normal",
  52602. height: math.unit(72, "feet"),
  52603. default: true
  52604. },
  52605. ]
  52606. ))
  52607. characterMakers.push(() => makeCharacter(
  52608. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52609. {
  52610. side: {
  52611. height: math.unit(12, "feet"),
  52612. name: "Side",
  52613. image: {
  52614. source: "./media/characters/cianus/side.svg",
  52615. extra: 808/526,
  52616. bottom: 61/869
  52617. }
  52618. },
  52619. },
  52620. [
  52621. {
  52622. name: "Normal",
  52623. height: math.unit(12, "feet"),
  52624. default: true
  52625. },
  52626. ]
  52627. ))
  52628. characterMakers.push(() => makeCharacter(
  52629. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52630. {
  52631. front: {
  52632. height: math.unit(9 + 6/12, "feet"),
  52633. weight: math.unit(300, "lb"),
  52634. name: "Front",
  52635. image: {
  52636. source: "./media/characters/ahab/front.svg",
  52637. extra: 1897/1868,
  52638. bottom: 121/2018
  52639. }
  52640. },
  52641. frontNsfw: {
  52642. height: math.unit(9 + 6/12, "feet"),
  52643. weight: math.unit(300, "lb"),
  52644. name: "Front-nsfw",
  52645. image: {
  52646. source: "./media/characters/ahab/front-nsfw.svg",
  52647. extra: 1897/1868,
  52648. bottom: 121/2018
  52649. }
  52650. },
  52651. },
  52652. [
  52653. {
  52654. name: "Normal",
  52655. height: math.unit(9 + 6/12, "feet")
  52656. },
  52657. {
  52658. name: "Macro",
  52659. height: math.unit(657, "feet"),
  52660. default: true
  52661. },
  52662. ]
  52663. ))
  52664. characterMakers.push(() => makeCharacter(
  52665. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52666. {
  52667. front: {
  52668. height: math.unit(2.69, "meters"),
  52669. weight: math.unit(132, "kg"),
  52670. name: "Front",
  52671. image: {
  52672. source: "./media/characters/aarkus/front.svg",
  52673. extra: 1400/1231,
  52674. bottom: 34/1434
  52675. }
  52676. },
  52677. back: {
  52678. height: math.unit(2.69, "meters"),
  52679. weight: math.unit(132, "kg"),
  52680. name: "Back",
  52681. image: {
  52682. source: "./media/characters/aarkus/back.svg",
  52683. extra: 1381/1218,
  52684. bottom: 30/1411
  52685. }
  52686. },
  52687. frontNsfw: {
  52688. height: math.unit(2.69, "meters"),
  52689. weight: math.unit(132, "kg"),
  52690. name: "Front (NSFW)",
  52691. image: {
  52692. source: "./media/characters/aarkus/front-nsfw.svg",
  52693. extra: 1400/1231,
  52694. bottom: 34/1434
  52695. }
  52696. },
  52697. foot: {
  52698. height: math.unit(1.45, "feet"),
  52699. name: "Foot",
  52700. image: {
  52701. source: "./media/characters/aarkus/foot.svg"
  52702. }
  52703. },
  52704. head: {
  52705. height: math.unit(2.85, "feet"),
  52706. name: "Head",
  52707. image: {
  52708. source: "./media/characters/aarkus/head.svg"
  52709. }
  52710. },
  52711. headAlt: {
  52712. height: math.unit(3.07, "feet"),
  52713. name: "Head (Alt)",
  52714. image: {
  52715. source: "./media/characters/aarkus/head-alt.svg"
  52716. }
  52717. },
  52718. mouth: {
  52719. height: math.unit(1.25, "feet"),
  52720. name: "Mouth",
  52721. image: {
  52722. source: "./media/characters/aarkus/mouth.svg"
  52723. }
  52724. },
  52725. dick: {
  52726. height: math.unit(1.77, "feet"),
  52727. name: "Dick",
  52728. image: {
  52729. source: "./media/characters/aarkus/dick.svg"
  52730. }
  52731. },
  52732. },
  52733. [
  52734. {
  52735. name: "Normal",
  52736. height: math.unit(2.69, "meters"),
  52737. default: true
  52738. },
  52739. {
  52740. name: "Macro",
  52741. height: math.unit(269, "meters")
  52742. },
  52743. {
  52744. name: "Macro+",
  52745. height: math.unit(672.5, "meters")
  52746. },
  52747. {
  52748. name: "Megamacro",
  52749. height: math.unit(2.017, "km")
  52750. },
  52751. ]
  52752. ))
  52753. characterMakers.push(() => makeCharacter(
  52754. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52755. {
  52756. front: {
  52757. height: math.unit(23.47, "cm"),
  52758. weight: math.unit(600, "grams"),
  52759. name: "Front",
  52760. image: {
  52761. source: "./media/characters/diode/front.svg",
  52762. extra: 1778/1396,
  52763. bottom: 95/1873
  52764. }
  52765. },
  52766. side: {
  52767. height: math.unit(23.47, "cm"),
  52768. weight: math.unit(600, "grams"),
  52769. name: "Side",
  52770. image: {
  52771. source: "./media/characters/diode/side.svg",
  52772. extra: 1831/1404,
  52773. bottom: 86/1917
  52774. }
  52775. },
  52776. wings: {
  52777. height: math.unit(0.683, "feet"),
  52778. name: "Wings",
  52779. image: {
  52780. source: "./media/characters/diode/wings.svg"
  52781. }
  52782. },
  52783. },
  52784. [
  52785. {
  52786. name: "Normal",
  52787. height: math.unit(23.47, "cm"),
  52788. default: true
  52789. },
  52790. ]
  52791. ))
  52792. characterMakers.push(() => makeCharacter(
  52793. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52794. {
  52795. front: {
  52796. height: math.unit(6 + 3/12, "feet"),
  52797. weight: math.unit(250, "lb"),
  52798. name: "Front",
  52799. image: {
  52800. source: "./media/characters/reika/front.svg",
  52801. extra: 1120/1078,
  52802. bottom: 86/1206
  52803. }
  52804. },
  52805. },
  52806. [
  52807. {
  52808. name: "Normal",
  52809. height: math.unit(6 + 3/12, "feet"),
  52810. default: true
  52811. },
  52812. ]
  52813. ))
  52814. characterMakers.push(() => makeCharacter(
  52815. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52816. {
  52817. front: {
  52818. height: math.unit(16 + 8/12, "feet"),
  52819. weight: math.unit(9000, "lb"),
  52820. name: "Front",
  52821. image: {
  52822. source: "./media/characters/lokuto-takama/front.svg",
  52823. extra: 1774/1632,
  52824. bottom: 147/1921
  52825. },
  52826. extraAttributes: {
  52827. "bustWidth": {
  52828. name: "Bust Width",
  52829. power: 1,
  52830. type: "length",
  52831. base: math.unit(2.4, "meters")
  52832. },
  52833. "breastWeight": {
  52834. name: "Breast Weight",
  52835. power: 3,
  52836. type: "mass",
  52837. base: math.unit(1000, "kg")
  52838. },
  52839. }
  52840. },
  52841. },
  52842. [
  52843. {
  52844. name: "Normal",
  52845. height: math.unit(16 + 8/12, "feet"),
  52846. default: true
  52847. },
  52848. ]
  52849. ))
  52850. characterMakers.push(() => makeCharacter(
  52851. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52852. {
  52853. front: {
  52854. height: math.unit(10, "cm"),
  52855. weight: math.unit(850, "grams"),
  52856. name: "Front",
  52857. image: {
  52858. source: "./media/characters/owak-bone/front.svg",
  52859. extra: 1965/1801,
  52860. bottom: 31/1996
  52861. }
  52862. },
  52863. },
  52864. [
  52865. {
  52866. name: "Normal",
  52867. height: math.unit(10, "cm"),
  52868. default: true
  52869. },
  52870. ]
  52871. ))
  52872. characterMakers.push(() => makeCharacter(
  52873. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52874. {
  52875. front: {
  52876. height: math.unit(2 + 6/12, "feet"),
  52877. weight: math.unit(9, "lb"),
  52878. name: "Front",
  52879. image: {
  52880. source: "./media/characters/muffin/front.svg",
  52881. extra: 1220/1195,
  52882. bottom: 84/1304
  52883. }
  52884. },
  52885. },
  52886. [
  52887. {
  52888. name: "Normal",
  52889. height: math.unit(2 + 6/12, "feet"),
  52890. default: true
  52891. },
  52892. ]
  52893. ))
  52894. characterMakers.push(() => makeCharacter(
  52895. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52896. {
  52897. front: {
  52898. height: math.unit(7, "feet"),
  52899. name: "Front",
  52900. image: {
  52901. source: "./media/characters/chimera/front.svg",
  52902. extra: 1752/1614,
  52903. bottom: 68/1820
  52904. }
  52905. },
  52906. },
  52907. [
  52908. {
  52909. name: "Normal",
  52910. height: math.unit(7, "feet")
  52911. },
  52912. {
  52913. name: "Gigamacro",
  52914. height: math.unit(2.9, "gigameters"),
  52915. default: true
  52916. },
  52917. {
  52918. name: "Universal",
  52919. height: math.unit(1.56e26, "yottameters")
  52920. },
  52921. ]
  52922. ))
  52923. characterMakers.push(() => makeCharacter(
  52924. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52925. {
  52926. front: {
  52927. height: math.unit(3, "feet"),
  52928. weight: math.unit(20, "lb"),
  52929. name: "Front",
  52930. image: {
  52931. source: "./media/characters/kit-fennec-fox/front.svg",
  52932. extra: 1027/932,
  52933. bottom: 16/1043
  52934. }
  52935. },
  52936. back: {
  52937. height: math.unit(3, "feet"),
  52938. weight: math.unit(20, "lb"),
  52939. name: "Back",
  52940. image: {
  52941. source: "./media/characters/kit-fennec-fox/back.svg",
  52942. extra: 1027/932,
  52943. bottom: 16/1043
  52944. }
  52945. },
  52946. },
  52947. [
  52948. {
  52949. name: "Normal",
  52950. height: math.unit(3, "feet"),
  52951. default: true
  52952. },
  52953. ]
  52954. ))
  52955. characterMakers.push(() => makeCharacter(
  52956. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52957. {
  52958. front: {
  52959. height: math.unit(167, "cm"),
  52960. name: "Front",
  52961. image: {
  52962. source: "./media/characters/blue-otter/front.svg",
  52963. extra: 1951/1920,
  52964. bottom: 31/1982
  52965. }
  52966. },
  52967. },
  52968. [
  52969. {
  52970. name: "Otter-Sized",
  52971. height: math.unit(100, "cm")
  52972. },
  52973. {
  52974. name: "Normal",
  52975. height: math.unit(167, "cm"),
  52976. default: true
  52977. },
  52978. ]
  52979. ))
  52980. characterMakers.push(() => makeCharacter(
  52981. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52982. {
  52983. front: {
  52984. height: math.unit(4 + 4/12, "feet"),
  52985. name: "Front",
  52986. image: {
  52987. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52988. extra: 1072/1067,
  52989. bottom: 117/1189
  52990. }
  52991. },
  52992. back: {
  52993. height: math.unit(4 + 4/12, "feet"),
  52994. name: "Back",
  52995. image: {
  52996. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52997. extra: 1135/1129,
  52998. bottom: 57/1192
  52999. }
  53000. },
  53001. head: {
  53002. height: math.unit(1.77, "feet"),
  53003. name: "Head",
  53004. image: {
  53005. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53006. }
  53007. },
  53008. },
  53009. [
  53010. {
  53011. name: "Normal",
  53012. height: math.unit(4 + 4/12, "feet"),
  53013. default: true
  53014. },
  53015. ]
  53016. ))
  53017. characterMakers.push(() => makeCharacter(
  53018. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53019. {
  53020. front: {
  53021. height: math.unit(2, "inches"),
  53022. name: "Front",
  53023. image: {
  53024. source: "./media/characters/carley-hartford/front.svg",
  53025. extra: 1035/988,
  53026. bottom: 23/1058
  53027. }
  53028. },
  53029. back: {
  53030. height: math.unit(2, "inches"),
  53031. name: "Back",
  53032. image: {
  53033. source: "./media/characters/carley-hartford/back.svg",
  53034. extra: 1035/988,
  53035. bottom: 23/1058
  53036. }
  53037. },
  53038. dressed: {
  53039. height: math.unit(2, "inches"),
  53040. name: "Dressed",
  53041. image: {
  53042. source: "./media/characters/carley-hartford/dressed.svg",
  53043. extra: 651/620,
  53044. bottom: 0/651
  53045. }
  53046. },
  53047. },
  53048. [
  53049. {
  53050. name: "Micro",
  53051. height: math.unit(2, "inches"),
  53052. default: true
  53053. },
  53054. {
  53055. name: "Macro",
  53056. height: math.unit(6 + 3/12, "feet")
  53057. },
  53058. ]
  53059. ))
  53060. characterMakers.push(() => makeCharacter(
  53061. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53062. {
  53063. front: {
  53064. height: math.unit(2 + 3/12, "feet"),
  53065. weight: math.unit(15 + 7/16, "lb"),
  53066. name: "Front",
  53067. image: {
  53068. source: "./media/characters/duke/front.svg",
  53069. extra: 910/815,
  53070. bottom: 30/940
  53071. }
  53072. },
  53073. },
  53074. [
  53075. {
  53076. name: "Normal",
  53077. height: math.unit(2 + 3/12, "feet"),
  53078. default: true
  53079. },
  53080. ]
  53081. ))
  53082. characterMakers.push(() => makeCharacter(
  53083. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53084. {
  53085. front: {
  53086. height: math.unit(5 + 4/12, "feet"),
  53087. weight: math.unit(156, "lb"),
  53088. name: "Front",
  53089. image: {
  53090. source: "./media/characters/dein/front.svg",
  53091. extra: 855/815,
  53092. bottom: 48/903
  53093. }
  53094. },
  53095. side: {
  53096. height: math.unit(5 + 4/12, "feet"),
  53097. weight: math.unit(156, "lb"),
  53098. name: "side",
  53099. image: {
  53100. source: "./media/characters/dein/side.svg",
  53101. extra: 846/803,
  53102. bottom: 25/871
  53103. }
  53104. },
  53105. maw: {
  53106. height: math.unit(1.45, "feet"),
  53107. name: "Maw",
  53108. image: {
  53109. source: "./media/characters/dein/maw.svg"
  53110. }
  53111. },
  53112. },
  53113. [
  53114. {
  53115. name: "Ferret Sized",
  53116. height: math.unit(2 + 5/12, "feet")
  53117. },
  53118. {
  53119. name: "Normal",
  53120. height: math.unit(5 + 4/12, "feet"),
  53121. default: true
  53122. },
  53123. ]
  53124. ))
  53125. characterMakers.push(() => makeCharacter(
  53126. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53127. {
  53128. front: {
  53129. height: math.unit(84 + 8/12, "feet"),
  53130. weight: math.unit(942180, "lb"),
  53131. name: "Front",
  53132. image: {
  53133. source: "./media/characters/daurine-arima/front.svg",
  53134. extra: 1989/1782,
  53135. bottom: 37/2026
  53136. }
  53137. },
  53138. side: {
  53139. height: math.unit(84 + 8/12, "feet"),
  53140. weight: math.unit(942180, "lb"),
  53141. name: "Side",
  53142. image: {
  53143. source: "./media/characters/daurine-arima/side.svg",
  53144. extra: 1997/1790,
  53145. bottom: 21/2018
  53146. }
  53147. },
  53148. back: {
  53149. height: math.unit(84 + 8/12, "feet"),
  53150. weight: math.unit(942180, "lb"),
  53151. name: "Back",
  53152. image: {
  53153. source: "./media/characters/daurine-arima/back.svg",
  53154. extra: 1992/1800,
  53155. bottom: 12/2004
  53156. }
  53157. },
  53158. head: {
  53159. height: math.unit(15.5, "feet"),
  53160. name: "Head",
  53161. image: {
  53162. source: "./media/characters/daurine-arima/head.svg"
  53163. }
  53164. },
  53165. headAlt: {
  53166. height: math.unit(19.19, "feet"),
  53167. name: "Head (Alt)",
  53168. image: {
  53169. source: "./media/characters/daurine-arima/head-alt.svg"
  53170. }
  53171. },
  53172. },
  53173. [
  53174. {
  53175. name: "Minimum height",
  53176. height: math.unit(8 + 10/12, "feet")
  53177. },
  53178. {
  53179. name: "Comfort height",
  53180. height: math.unit(19 + 6 /12, "feet")
  53181. },
  53182. {
  53183. name: "\"Normal\" height",
  53184. height: math.unit(28 + 10/12, "feet")
  53185. },
  53186. {
  53187. name: "Base height",
  53188. height: math.unit(84 + 8/12, "feet"),
  53189. default: true
  53190. },
  53191. {
  53192. name: "Mini-macro",
  53193. height: math.unit(2360, "feet")
  53194. },
  53195. {
  53196. name: "Macro",
  53197. height: math.unit(10, "miles")
  53198. },
  53199. {
  53200. name: "Goddess",
  53201. height: math.unit(9.99e40, "yottameters")
  53202. },
  53203. ]
  53204. ))
  53205. characterMakers.push(() => makeCharacter(
  53206. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53207. {
  53208. front: {
  53209. height: math.unit(2.3, "meters"),
  53210. name: "Front",
  53211. image: {
  53212. source: "./media/characters/cilenomon/front.svg",
  53213. extra: 1963/1778,
  53214. bottom: 54/2017
  53215. }
  53216. },
  53217. },
  53218. [
  53219. {
  53220. name: "Normal",
  53221. height: math.unit(2.3, "meters"),
  53222. default: true
  53223. },
  53224. {
  53225. name: "Big",
  53226. height: math.unit(5, "meters")
  53227. },
  53228. {
  53229. name: "Macro",
  53230. height: math.unit(30, "meters")
  53231. },
  53232. {
  53233. name: "True",
  53234. height: math.unit(1, "universe")
  53235. },
  53236. ]
  53237. ))
  53238. characterMakers.push(() => makeCharacter(
  53239. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53240. {
  53241. front: {
  53242. height: math.unit(5, "feet"),
  53243. name: "Front",
  53244. image: {
  53245. source: "./media/characters/sen-mink/front.svg",
  53246. extra: 1727/1675,
  53247. bottom: 35/1762
  53248. }
  53249. },
  53250. },
  53251. [
  53252. {
  53253. name: "Normal",
  53254. height: math.unit(5, "feet"),
  53255. default: true
  53256. },
  53257. ]
  53258. ))
  53259. characterMakers.push(() => makeCharacter(
  53260. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53261. {
  53262. front: {
  53263. height: math.unit(5.42999, "feet"),
  53264. weight: math.unit(100, "lb"),
  53265. name: "Front",
  53266. image: {
  53267. source: "./media/characters/ophois/front.svg",
  53268. extra: 1429/1286,
  53269. bottom: 60/1489
  53270. }
  53271. },
  53272. },
  53273. [
  53274. {
  53275. name: "Normal",
  53276. height: math.unit(5.42999, "feet"),
  53277. default: true
  53278. },
  53279. ]
  53280. ))
  53281. characterMakers.push(() => makeCharacter(
  53282. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53283. {
  53284. front: {
  53285. height: math.unit(2, "meters"),
  53286. name: "Front",
  53287. image: {
  53288. source: "./media/characters/riley/front.svg",
  53289. extra: 1779/1754,
  53290. bottom: 139/1918
  53291. }
  53292. },
  53293. },
  53294. [
  53295. {
  53296. name: "Normal",
  53297. height: math.unit(2, "meters"),
  53298. default: true
  53299. },
  53300. ]
  53301. ))
  53302. characterMakers.push(() => makeCharacter(
  53303. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53304. {
  53305. front: {
  53306. height: math.unit(6 + 2/12, "feet"),
  53307. weight: math.unit(195, "lb"),
  53308. preyCapacity: math.unit(6, "people"),
  53309. name: "Front",
  53310. image: {
  53311. source: "./media/characters/shuken-flash/front.svg",
  53312. extra: 1905/1739,
  53313. bottom: 65/1970
  53314. }
  53315. },
  53316. back: {
  53317. height: math.unit(6 + 2/12, "feet"),
  53318. weight: math.unit(195, "lb"),
  53319. preyCapacity: math.unit(6, "people"),
  53320. name: "Back",
  53321. image: {
  53322. source: "./media/characters/shuken-flash/back.svg",
  53323. extra: 1912/1751,
  53324. bottom: 13/1925
  53325. }
  53326. },
  53327. },
  53328. [
  53329. {
  53330. name: "Normal",
  53331. height: math.unit(6 + 2/12, "feet"),
  53332. default: true
  53333. },
  53334. ]
  53335. ))
  53336. characterMakers.push(() => makeCharacter(
  53337. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53338. {
  53339. front: {
  53340. height: math.unit(5 + 9/12, "feet"),
  53341. weight: math.unit(150, "lb"),
  53342. name: "Front",
  53343. image: {
  53344. source: "./media/characters/plat/front.svg",
  53345. extra: 1816/1703,
  53346. bottom: 43/1859
  53347. }
  53348. },
  53349. side: {
  53350. height: math.unit(5 + 9/12, "feet"),
  53351. weight: math.unit(300, "lb"),
  53352. name: "Side",
  53353. image: {
  53354. source: "./media/characters/plat/side.svg",
  53355. extra: 1824/1699,
  53356. bottom: 18/1842
  53357. }
  53358. },
  53359. },
  53360. [
  53361. {
  53362. name: "Normal",
  53363. height: math.unit(5 + 9/12, "feet"),
  53364. default: true
  53365. },
  53366. ]
  53367. ))
  53368. characterMakers.push(() => makeCharacter(
  53369. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53370. {
  53371. front: {
  53372. height: math.unit(9, "feet"),
  53373. weight: math.unit(1800, "lb"),
  53374. name: "Front",
  53375. image: {
  53376. source: "./media/characters/elaine/front.svg",
  53377. extra: 1833/1354,
  53378. bottom: 25/1858
  53379. }
  53380. },
  53381. back: {
  53382. height: math.unit(8.8, "feet"),
  53383. weight: math.unit(1800, "lb"),
  53384. name: "Back",
  53385. image: {
  53386. source: "./media/characters/elaine/back.svg",
  53387. extra: 1641/1233,
  53388. bottom: 53/1694
  53389. }
  53390. },
  53391. },
  53392. [
  53393. {
  53394. name: "Normal",
  53395. height: math.unit(9, "feet"),
  53396. default: true
  53397. },
  53398. ]
  53399. ))
  53400. characterMakers.push(() => makeCharacter(
  53401. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53402. {
  53403. front: {
  53404. height: math.unit(17 + 9/12, "feet"),
  53405. weight: math.unit(8000, "lb"),
  53406. name: "Front",
  53407. image: {
  53408. source: "./media/characters/vera-raven/front.svg",
  53409. extra: 1457/1412,
  53410. bottom: 121/1578
  53411. }
  53412. },
  53413. side: {
  53414. height: math.unit(17 + 9/12, "feet"),
  53415. weight: math.unit(8000, "lb"),
  53416. name: "Side",
  53417. image: {
  53418. source: "./media/characters/vera-raven/side.svg",
  53419. extra: 1510/1464,
  53420. bottom: 54/1564
  53421. }
  53422. },
  53423. },
  53424. [
  53425. {
  53426. name: "Normal",
  53427. height: math.unit(17 + 9/12, "feet"),
  53428. default: true
  53429. },
  53430. ]
  53431. ))
  53432. characterMakers.push(() => makeCharacter(
  53433. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53434. {
  53435. dressed: {
  53436. height: math.unit(6 + 9/12, "feet"),
  53437. name: "Dressed",
  53438. image: {
  53439. source: "./media/characters/nakisha/dressed.svg",
  53440. extra: 1909/1757,
  53441. bottom: 48/1957
  53442. }
  53443. },
  53444. nude: {
  53445. height: math.unit(6 + 9/12, "feet"),
  53446. name: "Nude",
  53447. image: {
  53448. source: "./media/characters/nakisha/nude.svg",
  53449. extra: 1917/1765,
  53450. bottom: 34/1951
  53451. }
  53452. },
  53453. },
  53454. [
  53455. {
  53456. name: "Normal",
  53457. height: math.unit(6 + 9/12, "feet"),
  53458. default: true
  53459. },
  53460. ]
  53461. ))
  53462. characterMakers.push(() => makeCharacter(
  53463. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53464. {
  53465. front: {
  53466. height: math.unit(87, "meters"),
  53467. name: "Front",
  53468. image: {
  53469. source: "./media/characters/serafin/front.svg",
  53470. extra: 1919/1776,
  53471. bottom: 65/1984
  53472. }
  53473. },
  53474. },
  53475. [
  53476. {
  53477. name: "Normal",
  53478. height: math.unit(87, "meters"),
  53479. default: true
  53480. },
  53481. ]
  53482. ))
  53483. characterMakers.push(() => makeCharacter(
  53484. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53485. {
  53486. front: {
  53487. height: math.unit(6, "feet"),
  53488. weight: math.unit(200, "lb"),
  53489. name: "Front",
  53490. image: {
  53491. source: "./media/characters/poptart/front.svg",
  53492. extra: 615/583,
  53493. bottom: 23/638
  53494. }
  53495. },
  53496. back: {
  53497. height: math.unit(6, "feet"),
  53498. weight: math.unit(200, "lb"),
  53499. name: "Back",
  53500. image: {
  53501. source: "./media/characters/poptart/back.svg",
  53502. extra: 617/584,
  53503. bottom: 22/639
  53504. }
  53505. },
  53506. frontNsfw: {
  53507. height: math.unit(6, "feet"),
  53508. weight: math.unit(200, "lb"),
  53509. name: "Front (NSFW)",
  53510. image: {
  53511. source: "./media/characters/poptart/front-nsfw.svg",
  53512. extra: 615/583,
  53513. bottom: 23/638
  53514. }
  53515. },
  53516. backNsfw: {
  53517. height: math.unit(6, "feet"),
  53518. weight: math.unit(200, "lb"),
  53519. name: "Back (NSFW)",
  53520. image: {
  53521. source: "./media/characters/poptart/back-nsfw.svg",
  53522. extra: 617/584,
  53523. bottom: 22/639
  53524. }
  53525. },
  53526. hand: {
  53527. height: math.unit(1.14, "feet"),
  53528. name: "Hand",
  53529. image: {
  53530. source: "./media/characters/poptart/hand.svg"
  53531. }
  53532. },
  53533. foot: {
  53534. height: math.unit(1.5, "feet"),
  53535. name: "Foot",
  53536. image: {
  53537. source: "./media/characters/poptart/foot.svg"
  53538. }
  53539. },
  53540. },
  53541. [
  53542. {
  53543. name: "Normal",
  53544. height: math.unit(6, "feet"),
  53545. default: true
  53546. },
  53547. {
  53548. name: "Grande",
  53549. height: math.unit(350, "feet")
  53550. },
  53551. {
  53552. name: "Massif",
  53553. height: math.unit(967, "feet")
  53554. },
  53555. ]
  53556. ))
  53557. characterMakers.push(() => makeCharacter(
  53558. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53559. {
  53560. hyenaSide: {
  53561. height: math.unit(120, "cm"),
  53562. weight: math.unit(120, "lb"),
  53563. name: "Side",
  53564. image: {
  53565. source: "./media/characters/trance/hyena-side.svg",
  53566. extra: 998/904,
  53567. bottom: 76/1074
  53568. }
  53569. },
  53570. },
  53571. [
  53572. {
  53573. name: "Normal",
  53574. height: math.unit(120, "cm"),
  53575. default: true
  53576. },
  53577. {
  53578. name: "Dire",
  53579. height: math.unit(230, "cm")
  53580. },
  53581. {
  53582. name: "Macro",
  53583. height: math.unit(37, "feet")
  53584. },
  53585. ]
  53586. ))
  53587. characterMakers.push(() => makeCharacter(
  53588. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53589. {
  53590. front: {
  53591. height: math.unit(6 + 3/12, "feet"),
  53592. name: "Front",
  53593. image: {
  53594. source: "./media/characters/michael-berretta/front.svg",
  53595. extra: 515/494,
  53596. bottom: 20/535
  53597. }
  53598. },
  53599. back: {
  53600. height: math.unit(6 + 3/12, "feet"),
  53601. name: "Back",
  53602. image: {
  53603. source: "./media/characters/michael-berretta/back.svg",
  53604. extra: 520/497,
  53605. bottom: 21/541
  53606. }
  53607. },
  53608. frontNsfw: {
  53609. height: math.unit(6 + 3/12, "feet"),
  53610. name: "Front (NSFW)",
  53611. image: {
  53612. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53613. extra: 515/494,
  53614. bottom: 20/535
  53615. }
  53616. },
  53617. dick: {
  53618. height: math.unit(1, "feet"),
  53619. name: "Dick",
  53620. image: {
  53621. source: "./media/characters/michael-berretta/dick.svg"
  53622. }
  53623. },
  53624. },
  53625. [
  53626. {
  53627. name: "Normal",
  53628. height: math.unit(6 + 3/12, "feet"),
  53629. default: true
  53630. },
  53631. {
  53632. name: "Big",
  53633. height: math.unit(12, "feet")
  53634. },
  53635. {
  53636. name: "Macro",
  53637. height: math.unit(187.5, "feet")
  53638. },
  53639. ]
  53640. ))
  53641. characterMakers.push(() => makeCharacter(
  53642. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53643. {
  53644. front: {
  53645. height: math.unit(9 + 9/12, "feet"),
  53646. weight: math.unit(1244, "lb"),
  53647. name: "Front",
  53648. image: {
  53649. source: "./media/characters/stella-edgecomb/front.svg",
  53650. extra: 1835/1706,
  53651. bottom: 49/1884
  53652. }
  53653. },
  53654. pen: {
  53655. height: math.unit(0.95, "feet"),
  53656. name: "Pen",
  53657. image: {
  53658. source: "./media/characters/stella-edgecomb/pen.svg"
  53659. }
  53660. },
  53661. },
  53662. [
  53663. {
  53664. name: "Cozy Bear",
  53665. height: math.unit(0.5, "inches")
  53666. },
  53667. {
  53668. name: "Normal",
  53669. height: math.unit(9 + 9/12, "feet"),
  53670. default: true
  53671. },
  53672. {
  53673. name: "Giga Bear",
  53674. height: math.unit(1, "mile")
  53675. },
  53676. {
  53677. name: "Great Bear",
  53678. height: math.unit(53, "miles")
  53679. },
  53680. {
  53681. name: "Goddess Bear",
  53682. height: math.unit(40000, "miles")
  53683. },
  53684. {
  53685. name: "Sun Bear",
  53686. height: math.unit(900000, "miles")
  53687. },
  53688. ]
  53689. ))
  53690. characterMakers.push(() => makeCharacter(
  53691. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53692. {
  53693. anthroFront: {
  53694. height: math.unit(556, "cm"),
  53695. weight: math.unit(2650, "kg"),
  53696. preyCapacity: math.unit(3, "people"),
  53697. name: "Front",
  53698. image: {
  53699. source: "./media/characters/ash´iika/front.svg",
  53700. extra: 710/673,
  53701. bottom: 15/725
  53702. },
  53703. form: "anthro",
  53704. default: true
  53705. },
  53706. anthroSide: {
  53707. height: math.unit(556, "cm"),
  53708. weight: math.unit(2650, "kg"),
  53709. preyCapacity: math.unit(3, "people"),
  53710. name: "Side",
  53711. image: {
  53712. source: "./media/characters/ash´iika/side.svg",
  53713. extra: 696/676,
  53714. bottom: 13/709
  53715. },
  53716. form: "anthro"
  53717. },
  53718. anthroDressed: {
  53719. height: math.unit(556, "cm"),
  53720. weight: math.unit(2650, "kg"),
  53721. preyCapacity: math.unit(3, "people"),
  53722. name: "Dressed",
  53723. image: {
  53724. source: "./media/characters/ash´iika/dressed.svg",
  53725. extra: 710/673,
  53726. bottom: 15/725
  53727. },
  53728. form: "anthro"
  53729. },
  53730. anthroHead: {
  53731. height: math.unit(3.5, "feet"),
  53732. name: "Head",
  53733. image: {
  53734. source: "./media/characters/ash´iika/head.svg",
  53735. extra: 348/291,
  53736. bottom: 45/393
  53737. },
  53738. form: "anthro"
  53739. },
  53740. feralSide: {
  53741. height: math.unit(870, "cm"),
  53742. weight: math.unit(17500, "kg"),
  53743. preyCapacity: math.unit(15, "people"),
  53744. name: "Side",
  53745. image: {
  53746. source: "./media/characters/ash´iika/feral.svg",
  53747. extra: 595/199,
  53748. bottom: 7/602
  53749. },
  53750. form: "feral",
  53751. default: true,
  53752. },
  53753. },
  53754. [
  53755. {
  53756. name: "Normal",
  53757. height: math.unit(556, "cm"),
  53758. default: true,
  53759. form: "anthro"
  53760. },
  53761. {
  53762. name: "Macro",
  53763. height: math.unit(88, "meters"),
  53764. form: "anthro"
  53765. },
  53766. {
  53767. name: "Normal",
  53768. height: math.unit(870, "cm"),
  53769. default: true,
  53770. form: "feral"
  53771. },
  53772. {
  53773. name: "Large",
  53774. height: math.unit(25, "meters"),
  53775. form: "feral"
  53776. },
  53777. ],
  53778. {
  53779. "anthro": {
  53780. name: "Anthro",
  53781. default: true
  53782. },
  53783. "feral": {
  53784. name: "Feral",
  53785. },
  53786. }
  53787. ))
  53788. characterMakers.push(() => makeCharacter(
  53789. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53790. {
  53791. front: {
  53792. height: math.unit(10, "feet"),
  53793. weight: math.unit(800, "lb"),
  53794. name: "Front",
  53795. image: {
  53796. source: "./media/characters/yen/front.svg",
  53797. extra: 443/411,
  53798. bottom: 6/449
  53799. }
  53800. },
  53801. sleeping: {
  53802. height: math.unit(10, "feet"),
  53803. weight: math.unit(800, "lb"),
  53804. name: "Sleeping",
  53805. image: {
  53806. source: "./media/characters/yen/sleeping.svg",
  53807. extra: 470/422,
  53808. bottom: 0/470
  53809. }
  53810. },
  53811. head: {
  53812. height: math.unit(2.2, "feet"),
  53813. name: "Head",
  53814. image: {
  53815. source: "./media/characters/yen/head.svg"
  53816. }
  53817. },
  53818. headAlt: {
  53819. height: math.unit(2.1, "feet"),
  53820. name: "Head (Alt)",
  53821. image: {
  53822. source: "./media/characters/yen/head-alt.svg"
  53823. }
  53824. },
  53825. },
  53826. [
  53827. {
  53828. name: "Normal",
  53829. height: math.unit(10, "feet"),
  53830. default: true
  53831. },
  53832. ]
  53833. ))
  53834. characterMakers.push(() => makeCharacter(
  53835. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53836. {
  53837. front: {
  53838. height: math.unit(12, "feet"),
  53839. name: "Front",
  53840. image: {
  53841. source: "./media/characters/citra/front.svg",
  53842. extra: 1950/1710,
  53843. bottom: 47/1997
  53844. }
  53845. },
  53846. },
  53847. [
  53848. {
  53849. name: "Normal",
  53850. height: math.unit(12, "feet"),
  53851. default: true
  53852. },
  53853. ]
  53854. ))
  53855. characterMakers.push(() => makeCharacter(
  53856. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53857. {
  53858. side: {
  53859. height: math.unit(7 + 10/12, "feet"),
  53860. name: "Side",
  53861. image: {
  53862. source: "./media/characters/sholstim/side.svg",
  53863. extra: 786/682,
  53864. bottom: 40/826
  53865. }
  53866. },
  53867. },
  53868. [
  53869. {
  53870. name: "Normal",
  53871. height: math.unit(7 + 10/12, "feet"),
  53872. default: true
  53873. },
  53874. ]
  53875. ))
  53876. characterMakers.push(() => makeCharacter(
  53877. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53878. {
  53879. front: {
  53880. height: math.unit(3.10, "meters"),
  53881. name: "Front",
  53882. image: {
  53883. source: "./media/characters/aggyn/front.svg",
  53884. extra: 1188/963,
  53885. bottom: 24/1212
  53886. }
  53887. },
  53888. },
  53889. [
  53890. {
  53891. name: "Normal",
  53892. height: math.unit(3.10, "meters"),
  53893. default: true
  53894. },
  53895. ]
  53896. ))
  53897. characterMakers.push(() => makeCharacter(
  53898. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53899. {
  53900. front: {
  53901. height: math.unit(7 + 5/12, "feet"),
  53902. weight: math.unit(687, "lb"),
  53903. name: "Front",
  53904. image: {
  53905. source: "./media/characters/alsandair-hergenroether/front.svg",
  53906. extra: 1251/1186,
  53907. bottom: 75/1326
  53908. }
  53909. },
  53910. back: {
  53911. height: math.unit(7 + 5/12, "feet"),
  53912. weight: math.unit(687, "lb"),
  53913. name: "Back",
  53914. image: {
  53915. source: "./media/characters/alsandair-hergenroether/back.svg",
  53916. extra: 1290/1229,
  53917. bottom: 17/1307
  53918. }
  53919. },
  53920. },
  53921. [
  53922. {
  53923. name: "Max Compression",
  53924. height: math.unit(7 + 5/12, "feet"),
  53925. default: true
  53926. },
  53927. {
  53928. name: "\"Normal\"",
  53929. height: math.unit(2, "universes")
  53930. },
  53931. ]
  53932. ))
  53933. characterMakers.push(() => makeCharacter(
  53934. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53935. {
  53936. front: {
  53937. height: math.unit(4 + 1/12, "feet"),
  53938. weight: math.unit(92, "lb"),
  53939. name: "Front",
  53940. image: {
  53941. source: "./media/characters/ie/front.svg",
  53942. extra: 1585/1352,
  53943. bottom: 91/1676
  53944. }
  53945. },
  53946. },
  53947. [
  53948. {
  53949. name: "Normal",
  53950. height: math.unit(4 + 1/12, "feet"),
  53951. default: true
  53952. },
  53953. ]
  53954. ))
  53955. characterMakers.push(() => makeCharacter(
  53956. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53957. {
  53958. anthro: {
  53959. height: math.unit(6, "feet"),
  53960. weight: math.unit(150, "lb"),
  53961. name: "Front",
  53962. image: {
  53963. source: "./media/characters/willow/anthro.svg",
  53964. extra: 1073/986,
  53965. bottom: 34/1107
  53966. },
  53967. form: "anthro",
  53968. default: true
  53969. },
  53970. taur: {
  53971. height: math.unit(6, "feet"),
  53972. weight: math.unit(150, "lb"),
  53973. name: "Side",
  53974. image: {
  53975. source: "./media/characters/willow/taur.svg",
  53976. extra: 647/512,
  53977. bottom: 136/783
  53978. },
  53979. form: "taur",
  53980. default: true
  53981. },
  53982. },
  53983. [
  53984. {
  53985. name: "Humanoid",
  53986. height: math.unit(2.7, "meters"),
  53987. form: "anthro"
  53988. },
  53989. {
  53990. name: "Normal",
  53991. height: math.unit(9, "meters"),
  53992. form: "anthro",
  53993. default: true
  53994. },
  53995. {
  53996. name: "Humanoid",
  53997. height: math.unit(2.1, "meters"),
  53998. form: "taur"
  53999. },
  54000. {
  54001. name: "Normal",
  54002. height: math.unit(7, "meters"),
  54003. form: "taur",
  54004. default: true
  54005. },
  54006. ],
  54007. {
  54008. "anthro": {
  54009. name: "Anthro",
  54010. default: true
  54011. },
  54012. "taur": {
  54013. name: "Taur",
  54014. },
  54015. }
  54016. ))
  54017. characterMakers.push(() => makeCharacter(
  54018. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54019. {
  54020. front: {
  54021. height: math.unit(2 + 5/12, "feet"),
  54022. name: "Front",
  54023. image: {
  54024. source: "./media/characters/kyan/front.svg",
  54025. extra: 460/334,
  54026. bottom: 23/483
  54027. },
  54028. extraAttributes: {
  54029. "toeLength": {
  54030. name: "Toe Length",
  54031. power: 1,
  54032. type: "length",
  54033. base: math.unit(7, "cm")
  54034. },
  54035. "toeclawLength": {
  54036. name: "Toeclaw Length",
  54037. power: 1,
  54038. type: "length",
  54039. base: math.unit(4.7, "cm")
  54040. },
  54041. "earHeight": {
  54042. name: "Ear Height",
  54043. power: 1,
  54044. type: "length",
  54045. base: math.unit(14.1, "cm")
  54046. },
  54047. }
  54048. },
  54049. paws: {
  54050. height: math.unit(0.45, "feet"),
  54051. name: "Paws",
  54052. image: {
  54053. source: "./media/characters/kyan/paws.svg",
  54054. extra: 581/581,
  54055. bottom: 114/695
  54056. }
  54057. },
  54058. },
  54059. [
  54060. {
  54061. name: "Normal",
  54062. height: math.unit(2 + 5/12, "feet"),
  54063. default: true
  54064. },
  54065. ]
  54066. ))
  54067. characterMakers.push(() => makeCharacter(
  54068. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54069. {
  54070. front: {
  54071. height: math.unit(2 + 2/3, "feet"),
  54072. name: "Front",
  54073. image: {
  54074. source: "./media/characters/xazzon/front.svg",
  54075. extra: 1109/984,
  54076. bottom: 42/1151
  54077. }
  54078. },
  54079. back: {
  54080. height: math.unit(2 + 2/3, "feet"),
  54081. name: "Back",
  54082. image: {
  54083. source: "./media/characters/xazzon/back.svg",
  54084. extra: 1095/971,
  54085. bottom: 23/1118
  54086. }
  54087. },
  54088. },
  54089. [
  54090. {
  54091. name: "Normal",
  54092. height: math.unit(2 + 2/3, "feet"),
  54093. default: true
  54094. },
  54095. ]
  54096. ))
  54097. characterMakers.push(() => makeCharacter(
  54098. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54099. {
  54100. dressed: {
  54101. height: math.unit(5 + 7/12, "feet"),
  54102. weight: math.unit(173, "lb"),
  54103. name: "Dressed",
  54104. image: {
  54105. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54106. extra: 3262/2862,
  54107. bottom: 188/3450
  54108. }
  54109. },
  54110. undressed: {
  54111. height: math.unit(5 + 7/12, "feet"),
  54112. weight: math.unit(173, "lb"),
  54113. name: "Undressed",
  54114. image: {
  54115. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54116. extra: 3262/2862,
  54117. bottom: 188/3450
  54118. }
  54119. },
  54120. },
  54121. [
  54122. {
  54123. name: "The void",
  54124. height: math.unit(7.29193e-34, "angstroms")
  54125. },
  54126. {
  54127. name: "Uh-Oh.",
  54128. height: math.unit(5.734e-7, "angstroms")
  54129. },
  54130. {
  54131. name: "Pico",
  54132. height: math.unit(0.876, "angstroms")
  54133. },
  54134. {
  54135. name: "Nano",
  54136. height: math.unit(0.000134200, "mm")
  54137. },
  54138. {
  54139. name: "Micro",
  54140. height: math.unit(0.0673020, "mm")
  54141. },
  54142. {
  54143. name: "Tiny",
  54144. height: math.unit(2.4, "mm")
  54145. },
  54146. {
  54147. name: "Actual Normal",
  54148. height: math.unit(3, "inches"),
  54149. default: true
  54150. },
  54151. {
  54152. name: "Normal",
  54153. height: math.unit(5 + 8/12, "feet")
  54154. },
  54155. {
  54156. name: "Giant",
  54157. height: math.unit(12, "feet")
  54158. },
  54159. {
  54160. name: "City Ruler",
  54161. height: math.unit(270, "meters")
  54162. },
  54163. {
  54164. name: "Giga",
  54165. height: math.unit(1117.6, "km")
  54166. },
  54167. {
  54168. name: "All-Powerful Queen",
  54169. height: math.unit(70.8, "gigameters")
  54170. },
  54171. {
  54172. name: "'Goddess'",
  54173. height: math.unit(600, "yottameters")
  54174. },
  54175. {
  54176. name: "Biggest!",
  54177. height: math.unit(4.23e5, "yottameters")
  54178. },
  54179. ]
  54180. ))
  54181. characterMakers.push(() => makeCharacter(
  54182. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54183. {
  54184. front: {
  54185. height: math.unit(8, "feet"),
  54186. weight: math.unit(300, "lb"),
  54187. name: "Front",
  54188. image: {
  54189. source: "./media/characters/khyla-shadowsong/front.svg",
  54190. extra: 861/798,
  54191. bottom: 32/893
  54192. }
  54193. },
  54194. side: {
  54195. height: math.unit(8, "feet"),
  54196. weight: math.unit(300, "lb"),
  54197. name: "Side",
  54198. image: {
  54199. source: "./media/characters/khyla-shadowsong/side.svg",
  54200. extra: 790/750,
  54201. bottom: 87/877
  54202. }
  54203. },
  54204. back: {
  54205. height: math.unit(8, "feet"),
  54206. weight: math.unit(300, "lb"),
  54207. name: "Back",
  54208. image: {
  54209. source: "./media/characters/khyla-shadowsong/back.svg",
  54210. extra: 855/808,
  54211. bottom: 14/869
  54212. }
  54213. },
  54214. head: {
  54215. height: math.unit(2.7, "feet"),
  54216. name: "Head",
  54217. image: {
  54218. source: "./media/characters/khyla-shadowsong/head.svg"
  54219. }
  54220. },
  54221. },
  54222. [
  54223. {
  54224. name: "Micro",
  54225. height: math.unit(6, "inches")
  54226. },
  54227. {
  54228. name: "Normal",
  54229. height: math.unit(8, "feet"),
  54230. default: true
  54231. },
  54232. ]
  54233. ))
  54234. characterMakers.push(() => makeCharacter(
  54235. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54236. {
  54237. hyperFront: {
  54238. height: math.unit(9 + 4/12, "feet"),
  54239. weight: math.unit(2000, "lb"),
  54240. name: "Front",
  54241. image: {
  54242. source: "./media/characters/tiden/hyper-front.svg",
  54243. extra: 400/382,
  54244. bottom: 6/406
  54245. },
  54246. form: "hyper",
  54247. },
  54248. regularFront: {
  54249. height: math.unit(7 + 10/12, "feet"),
  54250. weight: math.unit(470, "lb"),
  54251. name: "Front",
  54252. image: {
  54253. source: "./media/characters/tiden/regular-front.svg",
  54254. extra: 468/442,
  54255. bottom: 6/474
  54256. },
  54257. form: "regular",
  54258. },
  54259. },
  54260. [
  54261. {
  54262. name: "Normal",
  54263. height: math.unit(9 + 4/12, "feet"),
  54264. default: true,
  54265. form: "hyper"
  54266. },
  54267. {
  54268. name: "Normal",
  54269. height: math.unit(7 + 10/12, "feet"),
  54270. default: true,
  54271. form: "regular"
  54272. },
  54273. ],
  54274. {
  54275. "hyper": {
  54276. name: "Hyper",
  54277. default: true
  54278. },
  54279. "regular": {
  54280. name: "Regular",
  54281. },
  54282. }
  54283. ))
  54284. characterMakers.push(() => makeCharacter(
  54285. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54286. {
  54287. side: {
  54288. height: math.unit(6, "feet"),
  54289. weight: math.unit(150, "lb"),
  54290. name: "Side",
  54291. image: {
  54292. source: "./media/characters/jason-crowe/side.svg",
  54293. extra: 1771/766,
  54294. bottom: 219/1990
  54295. }
  54296. },
  54297. },
  54298. [
  54299. {
  54300. name: "Pocket Gryphon",
  54301. height: math.unit(6, "cm")
  54302. },
  54303. {
  54304. name: "Raven",
  54305. height: math.unit(60, "cm")
  54306. },
  54307. {
  54308. name: "Normal",
  54309. height: math.unit(1, "meter"),
  54310. default: true
  54311. },
  54312. ]
  54313. ))
  54314. characterMakers.push(() => makeCharacter(
  54315. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54316. {
  54317. front: {
  54318. height: math.unit(9 + 6/12, "feet"),
  54319. weight: math.unit(1100, "lb"),
  54320. name: "Front",
  54321. image: {
  54322. source: "./media/characters/django/front.svg",
  54323. extra: 1231/1136,
  54324. bottom: 34/1265
  54325. }
  54326. },
  54327. side: {
  54328. height: math.unit(9 + 6/12, "feet"),
  54329. weight: math.unit(1100, "lb"),
  54330. name: "Side",
  54331. image: {
  54332. source: "./media/characters/django/side.svg",
  54333. extra: 1267/1174,
  54334. bottom: 9/1276
  54335. }
  54336. },
  54337. },
  54338. [
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(9 + 6/12, "feet"),
  54342. default: true
  54343. },
  54344. {
  54345. name: "Macro 1",
  54346. height: math.unit(50, "feet")
  54347. },
  54348. {
  54349. name: "Macro 2",
  54350. height: math.unit(500, "feet")
  54351. },
  54352. {
  54353. name: "Mega Macro",
  54354. height: math.unit(5300, "feet")
  54355. },
  54356. ]
  54357. ))
  54358. characterMakers.push(() => makeCharacter(
  54359. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54360. {
  54361. frontSfw: {
  54362. height: math.unit(120, "cm"),
  54363. weight: math.unit(15, "kg"),
  54364. name: "Front (SFW)",
  54365. image: {
  54366. source: "./media/characters/eri/front-sfw.svg",
  54367. extra: 1014/939,
  54368. bottom: 37/1051
  54369. },
  54370. form: "moth",
  54371. },
  54372. frontNsfw: {
  54373. height: math.unit(120, "cm"),
  54374. weight: math.unit(15, "kg"),
  54375. name: "Front (NSFW)",
  54376. image: {
  54377. source: "./media/characters/eri/front-nsfw.svg",
  54378. extra: 1014/939,
  54379. bottom: 37/1051
  54380. },
  54381. form: "moth",
  54382. default: true
  54383. },
  54384. egg: {
  54385. height: math.unit(10, "cm"),
  54386. name: "Egg",
  54387. image: {
  54388. source: "./media/characters/eri/egg.svg"
  54389. },
  54390. form: "egg",
  54391. default: true
  54392. },
  54393. },
  54394. [
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(120, "cm"),
  54398. default: true,
  54399. form: "moth"
  54400. },
  54401. {
  54402. name: "Normal",
  54403. height: math.unit(10, "cm"),
  54404. default: true,
  54405. form: "egg"
  54406. },
  54407. ],
  54408. {
  54409. "moth": {
  54410. name: "Moth",
  54411. default: true
  54412. },
  54413. "egg": {
  54414. name: "Egg",
  54415. },
  54416. }
  54417. ))
  54418. characterMakers.push(() => makeCharacter(
  54419. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54420. {
  54421. front: {
  54422. height: math.unit(200, "feet"),
  54423. name: "Front",
  54424. image: {
  54425. source: "./media/characters/bishop-dowser/front.svg",
  54426. extra: 933/868,
  54427. bottom: 106/1039
  54428. }
  54429. },
  54430. },
  54431. [
  54432. {
  54433. name: "Giant",
  54434. height: math.unit(200, "feet"),
  54435. default: true
  54436. },
  54437. ]
  54438. ))
  54439. characterMakers.push(() => makeCharacter(
  54440. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54441. {
  54442. front: {
  54443. height: math.unit(2, "meters"),
  54444. preyCapacity: math.unit(3, "people"),
  54445. name: "Front",
  54446. image: {
  54447. source: "./media/characters/fryra/front.svg",
  54448. extra: 1025/948,
  54449. bottom: 30/1055
  54450. },
  54451. extraAttributes: {
  54452. "breastVolume": {
  54453. name: "Breast Volume",
  54454. power: 3,
  54455. type: "volume",
  54456. base: math.unit(8, "liters")
  54457. },
  54458. }
  54459. },
  54460. back: {
  54461. height: math.unit(2, "meters"),
  54462. preyCapacity: math.unit(3, "people"),
  54463. name: "Back",
  54464. image: {
  54465. source: "./media/characters/fryra/back.svg",
  54466. extra: 993/938,
  54467. bottom: 38/1031
  54468. },
  54469. extraAttributes: {
  54470. "breastVolume": {
  54471. name: "Breast Volume",
  54472. power: 3,
  54473. type: "volume",
  54474. base: math.unit(8, "liters")
  54475. },
  54476. }
  54477. },
  54478. head: {
  54479. height: math.unit(1.33, "feet"),
  54480. name: "Head",
  54481. image: {
  54482. source: "./media/characters/fryra/head.svg"
  54483. }
  54484. },
  54485. maw: {
  54486. height: math.unit(0.56, "feet"),
  54487. name: "Maw",
  54488. image: {
  54489. source: "./media/characters/fryra/maw.svg"
  54490. }
  54491. },
  54492. },
  54493. [
  54494. {
  54495. name: "Micro",
  54496. height: math.unit(5, "cm")
  54497. },
  54498. {
  54499. name: "Normal",
  54500. height: math.unit(2, "meters"),
  54501. default: true
  54502. },
  54503. {
  54504. name: "Small Macro",
  54505. height: math.unit(8, "meters")
  54506. },
  54507. {
  54508. name: "Macro",
  54509. height: math.unit(50, "meters")
  54510. },
  54511. {
  54512. name: "Megamacro",
  54513. height: math.unit(1, "km")
  54514. },
  54515. {
  54516. name: "Planetary",
  54517. height: math.unit(300000, "km")
  54518. },
  54519. {
  54520. name: "Universal",
  54521. height: math.unit(250, "lightyears")
  54522. },
  54523. {
  54524. name: "Fabric of Reality",
  54525. height: math.unit(1000, "multiverses")
  54526. },
  54527. ]
  54528. ))
  54529. characterMakers.push(() => makeCharacter(
  54530. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54531. {
  54532. frontDressed: {
  54533. height: math.unit(6 + 2/12, "feet"),
  54534. name: "Front (Dressed)",
  54535. image: {
  54536. source: "./media/characters/fiera/front-dressed.svg",
  54537. extra: 1883/1793,
  54538. bottom: 70/1953
  54539. }
  54540. },
  54541. backDressed: {
  54542. height: math.unit(6 + 2/12, "feet"),
  54543. name: "Back (Dressed)",
  54544. image: {
  54545. source: "./media/characters/fiera/back-dressed.svg",
  54546. extra: 1847/1780,
  54547. bottom: 70/1917
  54548. }
  54549. },
  54550. frontNude: {
  54551. height: math.unit(6 + 2/12, "feet"),
  54552. name: "Front (Nude)",
  54553. image: {
  54554. source: "./media/characters/fiera/front-nude.svg",
  54555. extra: 1875/1785,
  54556. bottom: 66/1941
  54557. }
  54558. },
  54559. backNude: {
  54560. height: math.unit(6 + 2/12, "feet"),
  54561. name: "Back (Nude)",
  54562. image: {
  54563. source: "./media/characters/fiera/back-nude.svg",
  54564. extra: 1855/1788,
  54565. bottom: 44/1899
  54566. }
  54567. },
  54568. maw: {
  54569. height: math.unit(1.3, "feet"),
  54570. name: "Maw",
  54571. image: {
  54572. source: "./media/characters/fiera/maw.svg"
  54573. }
  54574. },
  54575. paw: {
  54576. height: math.unit(1, "feet"),
  54577. name: "Paw",
  54578. image: {
  54579. source: "./media/characters/fiera/paw.svg"
  54580. }
  54581. },
  54582. shoe: {
  54583. height: math.unit(1.05, "feet"),
  54584. name: "Shoe",
  54585. image: {
  54586. source: "./media/characters/fiera/shoe.svg"
  54587. }
  54588. },
  54589. },
  54590. [
  54591. {
  54592. name: "Normal",
  54593. height: math.unit(6 + 2/12, "feet"),
  54594. default: true
  54595. },
  54596. {
  54597. name: "Size Difference",
  54598. height: math.unit(13, "feet")
  54599. },
  54600. {
  54601. name: "Macro",
  54602. height: math.unit(60, "feet")
  54603. },
  54604. {
  54605. name: "Mega Macro",
  54606. height: math.unit(200, "feet")
  54607. },
  54608. ]
  54609. ))
  54610. characterMakers.push(() => makeCharacter(
  54611. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54612. {
  54613. back: {
  54614. height: math.unit(6, "feet"),
  54615. name: "Back",
  54616. image: {
  54617. source: "./media/characters/flare/back.svg",
  54618. extra: 1883/1765,
  54619. bottom: 32/1915
  54620. }
  54621. },
  54622. },
  54623. [
  54624. {
  54625. name: "Normal",
  54626. height: math.unit(6 + 2/12, "feet"),
  54627. default: true
  54628. },
  54629. {
  54630. name: "Size Difference",
  54631. height: math.unit(13, "feet")
  54632. },
  54633. {
  54634. name: "Macro",
  54635. height: math.unit(60, "feet")
  54636. },
  54637. {
  54638. name: "Macro 2",
  54639. height: math.unit(100, "feet")
  54640. },
  54641. {
  54642. name: "Mega Macro",
  54643. height: math.unit(200, "feet")
  54644. },
  54645. ]
  54646. ))
  54647. characterMakers.push(() => makeCharacter(
  54648. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54649. {
  54650. front: {
  54651. height: math.unit(2.2, "m"),
  54652. weight: math.unit(300, "kg"),
  54653. name: "Front",
  54654. image: {
  54655. source: "./media/characters/hanna/front.svg",
  54656. extra: 1696/1502,
  54657. bottom: 206/1902
  54658. }
  54659. },
  54660. },
  54661. [
  54662. {
  54663. name: "Humanoid",
  54664. height: math.unit(2.2, "meters")
  54665. },
  54666. {
  54667. name: "Normal",
  54668. height: math.unit(4.8, "meters"),
  54669. default: true
  54670. },
  54671. ]
  54672. ))
  54673. characterMakers.push(() => makeCharacter(
  54674. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54675. {
  54676. front: {
  54677. height: math.unit(2.8, "meters"),
  54678. name: "Front",
  54679. image: {
  54680. source: "./media/characters/argo/front.svg",
  54681. extra: 731/518,
  54682. bottom: 84/815
  54683. }
  54684. },
  54685. },
  54686. [
  54687. {
  54688. name: "Normal",
  54689. height: math.unit(3, "meters"),
  54690. default: true
  54691. },
  54692. ]
  54693. ))
  54694. characterMakers.push(() => makeCharacter(
  54695. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54696. {
  54697. side: {
  54698. height: math.unit(3.8, "meters"),
  54699. name: "Side",
  54700. image: {
  54701. source: "./media/characters/sybil/side.svg",
  54702. extra: 382/361,
  54703. bottom: 25/407
  54704. }
  54705. },
  54706. },
  54707. [
  54708. {
  54709. name: "Normal",
  54710. height: math.unit(3.8, "meters"),
  54711. default: true
  54712. },
  54713. ]
  54714. ))
  54715. characterMakers.push(() => makeCharacter(
  54716. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54717. {
  54718. side: {
  54719. height: math.unit(6, "meters"),
  54720. name: "Side",
  54721. image: {
  54722. source: "./media/characters/plum/side.svg",
  54723. extra: 858/755,
  54724. bottom: 45/903
  54725. },
  54726. form: "taur",
  54727. default: true
  54728. },
  54729. back: {
  54730. height: math.unit(6.3, "meters"),
  54731. name: "Back",
  54732. image: {
  54733. source: "./media/characters/plum/back.svg",
  54734. extra: 887/813,
  54735. bottom: 32/919
  54736. },
  54737. form: "taur",
  54738. },
  54739. feral: {
  54740. height: math.unit(5.5, "meter"),
  54741. name: "Front",
  54742. image: {
  54743. source: "./media/characters/plum/feral.svg",
  54744. extra: 568/403,
  54745. bottom: 51/619
  54746. },
  54747. form: "feral",
  54748. default: true
  54749. },
  54750. head: {
  54751. height: math.unit(1.46, "meter"),
  54752. name: "Head",
  54753. image: {
  54754. source: "./media/characters/plum/head.svg"
  54755. },
  54756. form: "taur"
  54757. },
  54758. tailTop: {
  54759. height: math.unit(5.6, "meter"),
  54760. name: "Tail (Top)",
  54761. image: {
  54762. source: "./media/characters/plum/tail-top.svg"
  54763. },
  54764. form: "taur",
  54765. },
  54766. tailBottom: {
  54767. height: math.unit(5.6, "meter"),
  54768. name: "Tail (Bottom)",
  54769. image: {
  54770. source: "./media/characters/plum/tail-bottom.svg"
  54771. },
  54772. form: "taur",
  54773. },
  54774. feralHead: {
  54775. height: math.unit(2.56549521, "meter"),
  54776. name: "Head",
  54777. image: {
  54778. source: "./media/characters/plum/head.svg"
  54779. },
  54780. form: "feral"
  54781. },
  54782. feralTailTop: {
  54783. height: math.unit(5.44728435, "meter"),
  54784. name: "Tail (Top)",
  54785. image: {
  54786. source: "./media/characters/plum/tail-top.svg"
  54787. },
  54788. form: "feral",
  54789. },
  54790. feralTailBottom: {
  54791. height: math.unit(5.44728435, "meter"),
  54792. name: "Tail (Bottom)",
  54793. image: {
  54794. source: "./media/characters/plum/tail-bottom.svg"
  54795. },
  54796. form: "feral",
  54797. },
  54798. },
  54799. [
  54800. {
  54801. name: "Normal",
  54802. height: math.unit(6, "meters"),
  54803. default: true,
  54804. form: "taur"
  54805. },
  54806. {
  54807. name: "Normal",
  54808. height: math.unit(5.5, "meters"),
  54809. default: true,
  54810. form: "feral"
  54811. },
  54812. ],
  54813. {
  54814. "taur": {
  54815. name: "Taur",
  54816. default: true
  54817. },
  54818. "feral": {
  54819. name: "Feral",
  54820. },
  54821. }
  54822. ))
  54823. characterMakers.push(() => makeCharacter(
  54824. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54825. {
  54826. front: {
  54827. height: math.unit(6, "feet"),
  54828. weight: math.unit(115, "lb"),
  54829. name: "Front",
  54830. image: {
  54831. source: "./media/characters/celeste-kitsune/front.svg",
  54832. extra: 393/366,
  54833. bottom: 7/400
  54834. }
  54835. },
  54836. side: {
  54837. height: math.unit(6, "feet"),
  54838. weight: math.unit(115, "lb"),
  54839. name: "Side",
  54840. image: {
  54841. source: "./media/characters/celeste-kitsune/side.svg",
  54842. extra: 818/765,
  54843. bottom: 40/858
  54844. }
  54845. },
  54846. },
  54847. [
  54848. {
  54849. name: "Megamacro",
  54850. height: math.unit(1500, "miles"),
  54851. default: true
  54852. },
  54853. ]
  54854. ))
  54855. characterMakers.push(() => makeCharacter(
  54856. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54857. {
  54858. front: {
  54859. height: math.unit(8, "meters"),
  54860. name: "Front",
  54861. image: {
  54862. source: "./media/characters/io/front.svg",
  54863. extra: 865/722,
  54864. bottom: 58/923
  54865. }
  54866. },
  54867. back: {
  54868. height: math.unit(8, "meters"),
  54869. name: "Back",
  54870. image: {
  54871. source: "./media/characters/io/back.svg",
  54872. extra: 920/776,
  54873. bottom: 42/962
  54874. }
  54875. },
  54876. head: {
  54877. height: math.unit(5.09, "meters"),
  54878. name: "Head",
  54879. image: {
  54880. source: "./media/characters/io/head.svg"
  54881. }
  54882. },
  54883. hand: {
  54884. height: math.unit(1.6, "meters"),
  54885. name: "Hand",
  54886. image: {
  54887. source: "./media/characters/io/hand.svg"
  54888. }
  54889. },
  54890. foot: {
  54891. height: math.unit(2.4, "meters"),
  54892. name: "Foot",
  54893. image: {
  54894. source: "./media/characters/io/foot.svg"
  54895. }
  54896. },
  54897. },
  54898. [
  54899. {
  54900. name: "Normal",
  54901. height: math.unit(8, "meters"),
  54902. default: true
  54903. },
  54904. ]
  54905. ))
  54906. characterMakers.push(() => makeCharacter(
  54907. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54908. {
  54909. side: {
  54910. height: math.unit(6 + 3/12, "feet"),
  54911. weight: math.unit(225, "lb"),
  54912. name: "Side",
  54913. image: {
  54914. source: "./media/characters/silas/side.svg",
  54915. extra: 703/653,
  54916. bottom: 23/726
  54917. },
  54918. extraAttributes: {
  54919. "pawLength": {
  54920. name: "Paw Length",
  54921. power: 1,
  54922. type: "length",
  54923. base: math.unit(12, "inches")
  54924. },
  54925. "pawWidth": {
  54926. name: "Paw Width",
  54927. power: 1,
  54928. type: "length",
  54929. base: math.unit(4.5, "inches")
  54930. },
  54931. "pawArea": {
  54932. name: "Paw Area",
  54933. power: 2,
  54934. type: "area",
  54935. base: math.unit(12 * 4.5, "inches^2")
  54936. },
  54937. }
  54938. },
  54939. },
  54940. [
  54941. {
  54942. name: "Normal",
  54943. height: math.unit(6 + 3/12, "feet"),
  54944. default: true
  54945. },
  54946. ]
  54947. ))
  54948. characterMakers.push(() => makeCharacter(
  54949. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54950. {
  54951. back: {
  54952. height: math.unit(1.6, "meters"),
  54953. weight: math.unit(150, "lb"),
  54954. name: "Back",
  54955. image: {
  54956. source: "./media/characters/zari/back.svg",
  54957. extra: 424/411,
  54958. bottom: 32/456
  54959. },
  54960. extraAttributes: {
  54961. "bladderCapacity": {
  54962. name: "Bladder Size",
  54963. power: 3,
  54964. type: "volume",
  54965. base: math.unit(500, "mL")
  54966. },
  54967. "bladderFlow": {
  54968. name: "Flow Rate",
  54969. power: 3,
  54970. type: "volume",
  54971. base: math.unit(25, "mL")
  54972. },
  54973. }
  54974. },
  54975. },
  54976. [
  54977. {
  54978. name: "Normal",
  54979. height: math.unit(1.6, "meters"),
  54980. default: true
  54981. },
  54982. ]
  54983. ))
  54984. characterMakers.push(() => makeCharacter(
  54985. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54986. {
  54987. front: {
  54988. height: math.unit(25, "feet"),
  54989. weight: math.unit(5, "tons"),
  54990. name: "Front",
  54991. image: {
  54992. source: "./media/characters/charlie-human/front.svg",
  54993. extra: 1870/1740,
  54994. bottom: 102/1972
  54995. },
  54996. extraAttributes: {
  54997. "dickLength": {
  54998. name: "Dick Length",
  54999. power: 1,
  55000. type: "length",
  55001. base: math.unit(9, "feet")
  55002. },
  55003. }
  55004. },
  55005. back: {
  55006. height: math.unit(25, "feet"),
  55007. weight: math.unit(5, "tons"),
  55008. name: "Back",
  55009. image: {
  55010. source: "./media/characters/charlie-human/back.svg",
  55011. extra: 1858/1733,
  55012. bottom: 105/1963
  55013. },
  55014. extraAttributes: {
  55015. "dickLength": {
  55016. name: "Dick Length",
  55017. power: 1,
  55018. type: "length",
  55019. base: math.unit(9, "feet")
  55020. },
  55021. }
  55022. },
  55023. },
  55024. [
  55025. {
  55026. name: "\"Normal\"",
  55027. height: math.unit(6 + 4/12, "feet")
  55028. },
  55029. {
  55030. name: "Big",
  55031. height: math.unit(25, "feet"),
  55032. default: true
  55033. },
  55034. ]
  55035. ))
  55036. characterMakers.push(() => makeCharacter(
  55037. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55038. {
  55039. front: {
  55040. height: math.unit(6 + 4/12, "feet"),
  55041. weight: math.unit(320, "lb"),
  55042. name: "Front",
  55043. image: {
  55044. source: "./media/characters/ookitsu/front.svg",
  55045. extra: 1160/976,
  55046. bottom: 38/1198
  55047. }
  55048. },
  55049. frontNsfw: {
  55050. height: math.unit(6 + 4/12, "feet"),
  55051. weight: math.unit(320, "lb"),
  55052. name: "Front (NSFW)",
  55053. image: {
  55054. source: "./media/characters/ookitsu/front-nsfw.svg",
  55055. extra: 1160/976,
  55056. bottom: 38/1198
  55057. }
  55058. },
  55059. back: {
  55060. height: math.unit(6 + 4/12, "feet"),
  55061. weight: math.unit(320, "lb"),
  55062. name: "Back",
  55063. image: {
  55064. source: "./media/characters/ookitsu/back.svg",
  55065. extra: 1030/975,
  55066. bottom: 70/1100
  55067. }
  55068. },
  55069. head: {
  55070. height: math.unit(1.79, "feet"),
  55071. name: "Head",
  55072. image: {
  55073. source: "./media/characters/ookitsu/head.svg"
  55074. }
  55075. },
  55076. hand: {
  55077. height: math.unit(0.92, "feet"),
  55078. name: "Hand",
  55079. image: {
  55080. source: "./media/characters/ookitsu/hand.svg"
  55081. }
  55082. },
  55083. tails: {
  55084. height: math.unit(3.3, "feet"),
  55085. name: "Tails",
  55086. image: {
  55087. source: "./media/characters/ookitsu/tails.svg"
  55088. }
  55089. },
  55090. dick: {
  55091. height: math.unit(1.10833, "feet"),
  55092. name: "Dick",
  55093. image: {
  55094. source: "./media/characters/ookitsu/dick.svg"
  55095. }
  55096. },
  55097. },
  55098. [
  55099. {
  55100. name: "Normal",
  55101. height: math.unit(6 + 4/12, "feet"),
  55102. default: true
  55103. },
  55104. {
  55105. name: "Macro",
  55106. height: math.unit(30, "feet")
  55107. },
  55108. ]
  55109. ))
  55110. characterMakers.push(() => makeCharacter(
  55111. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55112. {
  55113. anthroFront: {
  55114. height: math.unit(6, "feet"),
  55115. weight: math.unit(250, "lb"),
  55116. name: "Front",
  55117. image: {
  55118. source: "./media/characters/jhusky/anthro-front.svg",
  55119. extra: 474/439,
  55120. bottom: 7/481
  55121. },
  55122. form: "anthro",
  55123. default: true
  55124. },
  55125. taurSideSfw: {
  55126. height: math.unit(6 + 4/12, "feet"),
  55127. weight: math.unit(500, "lb"),
  55128. name: "Side (SFW)",
  55129. image: {
  55130. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55131. extra: 1741/1629,
  55132. bottom: 196/1937
  55133. },
  55134. form: "taur",
  55135. default: true
  55136. },
  55137. taurSideNsfw: {
  55138. height: math.unit(6 + 4/12, "feet"),
  55139. weight: math.unit(500, "lb"),
  55140. name: "Taur (NSFW)",
  55141. image: {
  55142. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55143. extra: 1741/1629,
  55144. bottom: 196/1937
  55145. },
  55146. form: "taur",
  55147. },
  55148. },
  55149. [
  55150. {
  55151. name: "Huge",
  55152. height: math.unit(500, "feet"),
  55153. form: "anthro"
  55154. },
  55155. {
  55156. name: "Macro",
  55157. height: math.unit(1000, "feet"),
  55158. default: true,
  55159. form: "anthro"
  55160. },
  55161. {
  55162. name: "Megamacro",
  55163. height: math.unit(10000, "feet"),
  55164. form: "anthro"
  55165. },
  55166. {
  55167. name: "Huge",
  55168. height: math.unit(528, "feet"),
  55169. form: "taur"
  55170. },
  55171. {
  55172. name: "Macro",
  55173. height: math.unit(1056, "feet"),
  55174. default: true,
  55175. form: "taur"
  55176. },
  55177. {
  55178. name: "Megamacro",
  55179. height: math.unit(10556, "feet"),
  55180. form: "taur"
  55181. },
  55182. ],
  55183. {
  55184. "anthro": {
  55185. name: "Anthro",
  55186. default: true
  55187. },
  55188. "taur": {
  55189. name: "Taur",
  55190. },
  55191. }
  55192. ))
  55193. characterMakers.push(() => makeCharacter(
  55194. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55195. {
  55196. front: {
  55197. height: math.unit(8, "feet"),
  55198. weight: math.unit(500, "lb"),
  55199. name: "Front",
  55200. image: {
  55201. source: "./media/characters/armail/front.svg",
  55202. extra: 1753/1669,
  55203. bottom: 155/1908
  55204. }
  55205. },
  55206. back: {
  55207. height: math.unit(8, "feet"),
  55208. weight: math.unit(500, "lb"),
  55209. name: "Back",
  55210. image: {
  55211. source: "./media/characters/armail/back.svg",
  55212. extra: 1872/1803,
  55213. bottom: 63/1935
  55214. }
  55215. },
  55216. },
  55217. [
  55218. {
  55219. name: "Micro",
  55220. height: math.unit(0.25, "feet")
  55221. },
  55222. {
  55223. name: "Normal",
  55224. height: math.unit(8, "feet"),
  55225. default: true
  55226. },
  55227. {
  55228. name: "Mini-macro",
  55229. height: math.unit(30, "feet")
  55230. },
  55231. {
  55232. name: "Macro",
  55233. height: math.unit(400, "feet")
  55234. },
  55235. {
  55236. name: "Mega-macro",
  55237. height: math.unit(6000, "feet")
  55238. },
  55239. ]
  55240. ))
  55241. characterMakers.push(() => makeCharacter(
  55242. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55243. {
  55244. front: {
  55245. height: math.unit(6 + 7/12, "feet"),
  55246. weight: math.unit(210, "lb"),
  55247. name: "Front",
  55248. image: {
  55249. source: "./media/characters/wilfred-t-buxton/front.svg",
  55250. extra: 1068/882,
  55251. bottom: 28/1096
  55252. }
  55253. },
  55254. },
  55255. [
  55256. {
  55257. name: "Normal",
  55258. height: math.unit(6 + 7/12, "feet"),
  55259. default: true
  55260. },
  55261. ]
  55262. ))
  55263. characterMakers.push(() => makeCharacter(
  55264. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55265. {
  55266. front: {
  55267. height: math.unit(5 + 2/12, "feet"),
  55268. weight: math.unit(120, "lb"),
  55269. name: "Front",
  55270. image: {
  55271. source: "./media/characters/leighton-marrow/front.svg",
  55272. extra: 441/409,
  55273. bottom: 37/478
  55274. }
  55275. },
  55276. },
  55277. [
  55278. {
  55279. name: "Normal",
  55280. height: math.unit(5 + 2/12, "feet"),
  55281. default: true
  55282. },
  55283. ]
  55284. ))
  55285. characterMakers.push(() => makeCharacter(
  55286. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55287. {
  55288. front: {
  55289. height: math.unit(4, "meters"),
  55290. weight: math.unit(1200, "kg"),
  55291. name: "Front",
  55292. image: {
  55293. source: "./media/characters/licos/front.svg",
  55294. extra: 1727/1604,
  55295. bottom: 101/1828
  55296. },
  55297. form: "anthro",
  55298. default: true
  55299. },
  55300. taur_side: {
  55301. height: math.unit(20, "meters"),
  55302. weight: math.unit(1100000, "kg"),
  55303. name: "Side",
  55304. image: {
  55305. source: "./media/characters/licos/taur.svg",
  55306. extra: 1158/1091,
  55307. bottom: 80/1238
  55308. },
  55309. form: "taur",
  55310. default: true
  55311. },
  55312. },
  55313. [
  55314. {
  55315. name: "Normal",
  55316. height: math.unit(4, "meters"),
  55317. default: true,
  55318. form: "anthro"
  55319. },
  55320. {
  55321. name: "Normal",
  55322. height: math.unit(20, "meters"),
  55323. default: true,
  55324. form: "taur"
  55325. },
  55326. ],
  55327. {
  55328. "anthro": {
  55329. name: "Anthro",
  55330. default: true
  55331. },
  55332. "taur": {
  55333. name: "Taur",
  55334. },
  55335. }
  55336. ))
  55337. characterMakers.push(() => makeCharacter(
  55338. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55339. {
  55340. front: {
  55341. height: math.unit(10 + 3/12, "feet"),
  55342. name: "Front",
  55343. image: {
  55344. source: "./media/characters/theo-monkey/front.svg",
  55345. extra: 1735/1658,
  55346. bottom: 73/1808
  55347. }
  55348. },
  55349. back: {
  55350. height: math.unit(10 + 3/12, "feet"),
  55351. name: "Back",
  55352. image: {
  55353. source: "./media/characters/theo-monkey/back.svg",
  55354. extra: 1742/1664,
  55355. bottom: 33/1775
  55356. }
  55357. },
  55358. head: {
  55359. height: math.unit(2.29, "feet"),
  55360. name: "Head",
  55361. image: {
  55362. source: "./media/characters/theo-monkey/head.svg"
  55363. }
  55364. },
  55365. handPalm: {
  55366. height: math.unit(1.73, "feet"),
  55367. name: "Hand (Palm)",
  55368. image: {
  55369. source: "./media/characters/theo-monkey/hand-palm.svg"
  55370. }
  55371. },
  55372. handBack: {
  55373. height: math.unit(1.63, "feet"),
  55374. name: "Hand (Back)",
  55375. image: {
  55376. source: "./media/characters/theo-monkey/hand-back.svg"
  55377. }
  55378. },
  55379. footSole: {
  55380. height: math.unit(2.15, "feet"),
  55381. name: "Foot (Sole)",
  55382. image: {
  55383. source: "./media/characters/theo-monkey/foot-sole.svg"
  55384. }
  55385. },
  55386. footSide: {
  55387. height: math.unit(1.6, "feet"),
  55388. name: "Foot (Side)",
  55389. image: {
  55390. source: "./media/characters/theo-monkey/foot-side.svg"
  55391. }
  55392. },
  55393. },
  55394. [
  55395. {
  55396. name: "Normal",
  55397. height: math.unit(10 + 3/12, "feet"),
  55398. default: true
  55399. },
  55400. ]
  55401. ))
  55402. characterMakers.push(() => makeCharacter(
  55403. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55404. {
  55405. front: {
  55406. height: math.unit(11, "feet"),
  55407. weight: math.unit(3000, "lb"),
  55408. preyCapacity: math.unit(10, "people"),
  55409. name: "Front",
  55410. image: {
  55411. source: "./media/characters/brook/front.svg",
  55412. extra: 909/835,
  55413. bottom: 108/1017
  55414. }
  55415. },
  55416. back: {
  55417. height: math.unit(11, "feet"),
  55418. weight: math.unit(3000, "lb"),
  55419. preyCapacity: math.unit(10, "people"),
  55420. name: "Back",
  55421. image: {
  55422. source: "./media/characters/brook/back.svg",
  55423. extra: 976/916,
  55424. bottom: 34/1010
  55425. }
  55426. },
  55427. backAlt: {
  55428. height: math.unit(11, "feet"),
  55429. weight: math.unit(3000, "lb"),
  55430. preyCapacity: math.unit(10, "people"),
  55431. name: "Back (Alt)",
  55432. image: {
  55433. source: "./media/characters/brook/back-alt.svg",
  55434. extra: 1283/1213,
  55435. bottom: 35/1318
  55436. }
  55437. },
  55438. bust: {
  55439. height: math.unit(9.0859030837, "feet"),
  55440. weight: math.unit(3000, "lb"),
  55441. preyCapacity: math.unit(10, "people"),
  55442. name: "Bust",
  55443. image: {
  55444. source: "./media/characters/brook/bust.svg",
  55445. extra: 2043/1923,
  55446. bottom: 0/2043
  55447. }
  55448. },
  55449. },
  55450. [
  55451. {
  55452. name: "Small",
  55453. height: math.unit(11, "feet"),
  55454. default: true
  55455. },
  55456. {
  55457. name: "Towering",
  55458. height: math.unit(5, "km")
  55459. },
  55460. {
  55461. name: "Enormous",
  55462. height: math.unit(25, "earths")
  55463. },
  55464. ]
  55465. ))
  55466. characterMakers.push(() => makeCharacter(
  55467. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55468. {
  55469. front: {
  55470. height: math.unit(4, "feet"),
  55471. weight: math.unit(150, "lb"),
  55472. name: "Front",
  55473. image: {
  55474. source: "./media/characters/squishi/front.svg",
  55475. extra: 1428/1271,
  55476. bottom: 30/1458
  55477. },
  55478. extraAttributes: {
  55479. "pawSize": {
  55480. name: "Paw Size",
  55481. power: 1,
  55482. type: "length",
  55483. base: math.unit(14, "ShoeSizeMensUS"),
  55484. defaultUnit: "ShoeSizeMensUS"
  55485. },
  55486. }
  55487. },
  55488. side: {
  55489. height: math.unit(4, "feet"),
  55490. weight: math.unit(150, "lb"),
  55491. name: "Side",
  55492. image: {
  55493. source: "./media/characters/squishi/side.svg",
  55494. extra: 1428/1271,
  55495. bottom: 30/1458
  55496. },
  55497. extraAttributes: {
  55498. "pawSize": {
  55499. name: "Paw Size",
  55500. power: 1,
  55501. type: "length",
  55502. base: math.unit(14, "ShoeSizeMensUS"),
  55503. defaultUnit: "ShoeSizeMensUS"
  55504. },
  55505. }
  55506. },
  55507. back: {
  55508. height: math.unit(4, "feet"),
  55509. weight: math.unit(150, "lb"),
  55510. name: "Back",
  55511. image: {
  55512. source: "./media/characters/squishi/back.svg",
  55513. extra: 1428/1271,
  55514. bottom: 30/1458
  55515. },
  55516. extraAttributes: {
  55517. "pawSize": {
  55518. name: "Paw Size",
  55519. power: 1,
  55520. type: "length",
  55521. base: math.unit(14, "ShoeSizeMensUS"),
  55522. defaultUnit: "ShoeSizeMensUS"
  55523. },
  55524. }
  55525. },
  55526. },
  55527. [
  55528. {
  55529. name: "Normal",
  55530. height: math.unit(4, "feet"),
  55531. default: true
  55532. },
  55533. ]
  55534. ))
  55535. characterMakers.push(() => makeCharacter(
  55536. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55537. {
  55538. front: {
  55539. height: math.unit(7 + 8/12, "feet"),
  55540. weight: math.unit(333, "lb"),
  55541. name: "Front",
  55542. image: {
  55543. source: "./media/characters/vincent-vasroc/front.svg",
  55544. extra: 1962/1860,
  55545. bottom: 41/2003
  55546. }
  55547. },
  55548. back: {
  55549. height: math.unit(7 + 8/12, "feet"),
  55550. weight: math.unit(333, "lb"),
  55551. name: "Back",
  55552. image: {
  55553. source: "./media/characters/vincent-vasroc/back.svg",
  55554. extra: 1952/1815,
  55555. bottom: 33/1985
  55556. }
  55557. },
  55558. paw: {
  55559. height: math.unit(1.24, "feet"),
  55560. name: "Paw",
  55561. image: {
  55562. source: "./media/characters/vincent-vasroc/paw.svg"
  55563. }
  55564. },
  55565. ear: {
  55566. height: math.unit(0.75, "feet"),
  55567. name: "Ear",
  55568. image: {
  55569. source: "./media/characters/vincent-vasroc/ear.svg"
  55570. }
  55571. },
  55572. },
  55573. [
  55574. {
  55575. name: "Nano",
  55576. height: math.unit(92, "micrometers")
  55577. },
  55578. {
  55579. name: "Normal",
  55580. height: math.unit(7 + 8/12, "feet"),
  55581. default: true
  55582. },
  55583. ]
  55584. ))
  55585. characterMakers.push(() => makeCharacter(
  55586. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55587. {
  55588. frontNsfw: {
  55589. height: math.unit(40, "feet"),
  55590. weight: math.unit(58, "tons"),
  55591. name: "Front (NSFW)",
  55592. image: {
  55593. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55594. extra: 1265/965,
  55595. bottom: 155/1420
  55596. }
  55597. },
  55598. frontSfw: {
  55599. height: math.unit(40, "feet"),
  55600. weight: math.unit(58, "tons"),
  55601. name: "Front (SFW)",
  55602. image: {
  55603. source: "./media/characters/ru-kahn/front-sfw.svg",
  55604. extra: 1265/965,
  55605. bottom: 80/1345
  55606. }
  55607. },
  55608. },
  55609. [
  55610. {
  55611. name: "Small",
  55612. height: math.unit(4, "feet")
  55613. },
  55614. {
  55615. name: "Normal",
  55616. height: math.unit(40, "feet"),
  55617. default: true
  55618. },
  55619. {
  55620. name: "Macro",
  55621. height: math.unit(400, "feet")
  55622. },
  55623. ]
  55624. ))
  55625. characterMakers.push(() => makeCharacter(
  55626. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55627. {
  55628. frontNude: {
  55629. height: math.unit(6 + 5/12, "feet"),
  55630. name: "Front (Nude)",
  55631. image: {
  55632. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55633. extra: 1369/1366,
  55634. bottom: 68/1437
  55635. }
  55636. },
  55637. frontDressed: {
  55638. height: math.unit(6 + 5/12, "feet"),
  55639. name: "Front (Dressed)",
  55640. image: {
  55641. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55642. extra: 1369/1366,
  55643. bottom: 68/1437
  55644. }
  55645. },
  55646. },
  55647. [
  55648. {
  55649. name: "Normal",
  55650. height: math.unit(6 + 5/12, "feet"),
  55651. default: true
  55652. },
  55653. {
  55654. name: "Maximum",
  55655. height: math.unit(1930, "feet")
  55656. },
  55657. ]
  55658. ))
  55659. characterMakers.push(() => makeCharacter(
  55660. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55661. {
  55662. front: {
  55663. height: math.unit(5 + 6/12, "feet"),
  55664. name: "Front",
  55665. image: {
  55666. source: "./media/characters/kaja/front.svg",
  55667. extra: 1874/1514,
  55668. bottom: 117/1991
  55669. }
  55670. },
  55671. },
  55672. [
  55673. {
  55674. name: "Normal",
  55675. height: math.unit(5 + 6/12, "feet"),
  55676. default: true
  55677. },
  55678. ]
  55679. ))
  55680. characterMakers.push(() => makeCharacter(
  55681. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55682. {
  55683. front: {
  55684. height: math.unit(5 + 9/12, "feet"),
  55685. weight: math.unit(200, "lb"),
  55686. name: "Front",
  55687. image: {
  55688. source: "./media/characters/mark-smith/front.svg",
  55689. extra: 1004/943,
  55690. bottom: 58/1062
  55691. }
  55692. },
  55693. back: {
  55694. height: math.unit(5 + 9/12, "feet"),
  55695. weight: math.unit(200, "lb"),
  55696. name: "Back",
  55697. image: {
  55698. source: "./media/characters/mark-smith/back.svg",
  55699. extra: 1023/953,
  55700. bottom: 24/1047
  55701. }
  55702. },
  55703. head: {
  55704. height: math.unit(1.82, "feet"),
  55705. name: "Head",
  55706. image: {
  55707. source: "./media/characters/mark-smith/head.svg"
  55708. }
  55709. },
  55710. hand: {
  55711. height: math.unit(1.4, "feet"),
  55712. name: "Hand",
  55713. image: {
  55714. source: "./media/characters/mark-smith/hand.svg"
  55715. }
  55716. },
  55717. paw: {
  55718. height: math.unit(1.69, "feet"),
  55719. name: "Paw",
  55720. image: {
  55721. source: "./media/characters/mark-smith/paw.svg"
  55722. }
  55723. },
  55724. },
  55725. [
  55726. {
  55727. name: "Micro",
  55728. height: math.unit(0.25, "inches")
  55729. },
  55730. {
  55731. name: "Normal",
  55732. height: math.unit(5 + 9/12, "feet"),
  55733. default: true
  55734. },
  55735. {
  55736. name: "Macro",
  55737. height: math.unit(500, "feet")
  55738. },
  55739. ]
  55740. ))
  55741. characterMakers.push(() => makeCharacter(
  55742. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55743. {
  55744. frontNude: {
  55745. height: math.unit(6, "feet"),
  55746. name: "Front (Nude)",
  55747. image: {
  55748. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55749. extra: 1384/1321,
  55750. bottom: 57/1441
  55751. }
  55752. },
  55753. frontDressed: {
  55754. height: math.unit(6, "feet"),
  55755. name: "Front (Dressed)",
  55756. image: {
  55757. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55758. extra: 1384/1321,
  55759. bottom: 57/1441
  55760. }
  55761. },
  55762. },
  55763. [
  55764. {
  55765. name: "Normal",
  55766. height: math.unit(6, "feet"),
  55767. default: true
  55768. },
  55769. {
  55770. name: "Maximum",
  55771. height: math.unit(1776, "feet")
  55772. },
  55773. ]
  55774. ))
  55775. characterMakers.push(() => makeCharacter(
  55776. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55777. {
  55778. front: {
  55779. height: math.unit(2 + 4/12, "feet"),
  55780. weight: math.unit(350, "lb"),
  55781. name: "Front",
  55782. image: {
  55783. source: "./media/characters/devos/front.svg",
  55784. extra: 958/852,
  55785. bottom: 143/1101
  55786. }
  55787. },
  55788. },
  55789. [
  55790. {
  55791. name: "Base",
  55792. height: math.unit(2 + 4/12, "feet"),
  55793. default: true
  55794. },
  55795. ]
  55796. ))
  55797. characterMakers.push(() => makeCharacter(
  55798. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55799. {
  55800. front: {
  55801. height: math.unit(9 + 2/12, "feet"),
  55802. name: "Front",
  55803. image: {
  55804. source: "./media/characters/hiveheart/front.svg",
  55805. extra: 394/364,
  55806. bottom: 65/459
  55807. }
  55808. },
  55809. back: {
  55810. height: math.unit(9 + 2/12, "feet"),
  55811. name: "Back",
  55812. image: {
  55813. source: "./media/characters/hiveheart/back.svg",
  55814. extra: 374/357,
  55815. bottom: 63/437
  55816. }
  55817. },
  55818. },
  55819. [
  55820. {
  55821. name: "Base",
  55822. height: math.unit(9 + 2/12, "feet"),
  55823. default: true
  55824. },
  55825. ]
  55826. ))
  55827. characterMakers.push(() => makeCharacter(
  55828. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55829. {
  55830. front: {
  55831. height: math.unit(2.5, "inches"),
  55832. weight: math.unit(0.6, "oz"),
  55833. name: "Front",
  55834. image: {
  55835. source: "./media/characters/bryn/front.svg",
  55836. extra: 1480/1205,
  55837. bottom: 27/1507
  55838. }
  55839. },
  55840. back: {
  55841. height: math.unit(2.5, "inches"),
  55842. weight: math.unit(0.6, "oz"),
  55843. name: "Back",
  55844. image: {
  55845. source: "./media/characters/bryn/back.svg",
  55846. extra: 1475/1201,
  55847. bottom: 39/1514
  55848. }
  55849. },
  55850. foot: {
  55851. height: math.unit(0.4, "inches"),
  55852. name: "Foot",
  55853. image: {
  55854. source: "./media/characters/bryn/foot.svg"
  55855. }
  55856. },
  55857. },
  55858. [
  55859. {
  55860. name: "Normal",
  55861. height: math.unit(2.5, "inches"),
  55862. default: true
  55863. },
  55864. ]
  55865. ))
  55866. characterMakers.push(() => makeCharacter(
  55867. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55868. {
  55869. side: {
  55870. height: math.unit(7, "feet"),
  55871. weight: math.unit(657, "kg"),
  55872. name: "Side",
  55873. image: {
  55874. source: "./media/characters/delta/side.svg",
  55875. extra: 781/212,
  55876. bottom: 7/788
  55877. },
  55878. extraAttributes: {
  55879. "wingspan": {
  55880. name: "Wingspan",
  55881. power: 1,
  55882. type: "length",
  55883. base: math.unit(48, "feet")
  55884. },
  55885. "length": {
  55886. name: "Length",
  55887. power: 1,
  55888. type: "length",
  55889. base: math.unit(21, "feet")
  55890. },
  55891. "pawSize": {
  55892. name: "Paw Size",
  55893. power: 2,
  55894. type: "area",
  55895. base: math.unit(1.5*1.4, "feet^2")
  55896. },
  55897. }
  55898. },
  55899. },
  55900. [
  55901. {
  55902. name: "Normal",
  55903. height: math.unit(6, "feet"),
  55904. default: true
  55905. },
  55906. ]
  55907. ))
  55908. characterMakers.push(() => makeCharacter(
  55909. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55910. {
  55911. front: {
  55912. height: math.unit(6, "feet"),
  55913. name: "Front",
  55914. image: {
  55915. source: "./media/characters/pyrow/front.svg",
  55916. extra: 513/486,
  55917. bottom: 14/527
  55918. }
  55919. },
  55920. frontWing: {
  55921. height: math.unit(6, "feet"),
  55922. name: "Front (Wing)",
  55923. image: {
  55924. source: "./media/characters/pyrow/front-wing.svg",
  55925. extra: 539/383,
  55926. bottom: 20/559
  55927. }
  55928. },
  55929. back: {
  55930. height: math.unit(6, "feet"),
  55931. name: "Back",
  55932. image: {
  55933. source: "./media/characters/pyrow/back.svg",
  55934. extra: 500/473,
  55935. bottom: 9/509
  55936. }
  55937. },
  55938. },
  55939. [
  55940. {
  55941. name: "Normal",
  55942. height: math.unit(6, "feet"),
  55943. default: true
  55944. },
  55945. ]
  55946. ))
  55947. characterMakers.push(() => makeCharacter(
  55948. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55949. {
  55950. front: {
  55951. height: math.unit(5, "meters"),
  55952. weight: math.unit(3, "tonnes"),
  55953. name: "Front",
  55954. image: {
  55955. source: "./media/characters/velikan/front.svg",
  55956. extra: 867/744,
  55957. bottom: 71/938
  55958. },
  55959. extraAttributes: {
  55960. "shoeSize": {
  55961. name: "Shoe Size",
  55962. power: 1,
  55963. type: "length",
  55964. base: math.unit(135, "ShoeSizeUK"),
  55965. defaultUnit: "ShoeSizeUK"
  55966. },
  55967. }
  55968. },
  55969. },
  55970. [
  55971. {
  55972. name: "Normal",
  55973. height: math.unit(5, "meters"),
  55974. default: true
  55975. },
  55976. {
  55977. name: "Macro",
  55978. height: math.unit(1, "km")
  55979. },
  55980. {
  55981. name: "Mega Macro",
  55982. height: math.unit(100, "km")
  55983. },
  55984. {
  55985. name: "Giga Macro",
  55986. height: math.unit(2, "megameters")
  55987. },
  55988. {
  55989. name: "Planetary",
  55990. height: math.unit(22, "megameters")
  55991. },
  55992. {
  55993. name: "Solar",
  55994. height: math.unit(8, "gigameters")
  55995. },
  55996. {
  55997. name: "Cosmic",
  55998. height: math.unit(10, "zettameters")
  55999. },
  56000. {
  56001. name: "Omni",
  56002. height: math.unit(9e260, "multiverses")
  56003. },
  56004. ]
  56005. ))
  56006. characterMakers.push(() => makeCharacter(
  56007. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56008. {
  56009. front: {
  56010. height: math.unit(4 + 3/12, "feet"),
  56011. weight: math.unit(90, "lb"),
  56012. name: "Front",
  56013. image: {
  56014. source: "./media/characters/sabiki/front.svg",
  56015. extra: 1662/1423,
  56016. bottom: 65/1727
  56017. }
  56018. },
  56019. },
  56020. [
  56021. {
  56022. name: "Normal",
  56023. height: math.unit(4 + 3/12, "feet"),
  56024. default: true
  56025. },
  56026. ]
  56027. ))
  56028. characterMakers.push(() => makeCharacter(
  56029. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56030. {
  56031. frontSfw: {
  56032. height: math.unit(2, "mm"),
  56033. name: "Front (SFW)",
  56034. image: {
  56035. source: "./media/characters/carmel/front-sfw.svg",
  56036. extra: 1131/1006,
  56037. bottom: 66/1197
  56038. }
  56039. },
  56040. frontNsfw: {
  56041. height: math.unit(2, "mm"),
  56042. name: "Front (NSFW)",
  56043. image: {
  56044. source: "./media/characters/carmel/front-nsfw.svg",
  56045. extra: 1131/1006,
  56046. bottom: 66/1197
  56047. }
  56048. },
  56049. foot: {
  56050. height: math.unit(0.3, "mm"),
  56051. name: "Foot",
  56052. image: {
  56053. source: "./media/characters/carmel/foot.svg"
  56054. }
  56055. },
  56056. tongue: {
  56057. height: math.unit(0.71, "mm"),
  56058. name: "Tongue",
  56059. image: {
  56060. source: "./media/characters/carmel/tongue.svg"
  56061. }
  56062. },
  56063. dick: {
  56064. height: math.unit(0.085, "mm"),
  56065. name: "Dick",
  56066. image: {
  56067. source: "./media/characters/carmel/dick.svg"
  56068. }
  56069. },
  56070. },
  56071. [
  56072. {
  56073. name: "Micro",
  56074. height: math.unit(2, "mm"),
  56075. default: true
  56076. },
  56077. {
  56078. name: "Normal",
  56079. height: math.unit(4 + 8/12, "feet")
  56080. },
  56081. {
  56082. name: "Mega Macro",
  56083. height: math.unit(250, "feet")
  56084. },
  56085. {
  56086. name: "BIGGER",
  56087. height: math.unit(1000, "feet")
  56088. },
  56089. {
  56090. name: "BIGGEST",
  56091. height: math.unit(2, "miles")
  56092. },
  56093. ]
  56094. ))
  56095. characterMakers.push(() => makeCharacter(
  56096. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56097. {
  56098. front: {
  56099. height: math.unit(6.5, "feet"),
  56100. weight: math.unit(198, "lb"),
  56101. name: "Front",
  56102. image: {
  56103. source: "./media/characters/tamani/anthro.svg",
  56104. extra: 930/890,
  56105. bottom: 34/964
  56106. },
  56107. form: "anthro",
  56108. default: true
  56109. },
  56110. side: {
  56111. height: math.unit(6, "feet"),
  56112. weight: math.unit(198*2, "lb"),
  56113. name: "Side",
  56114. image: {
  56115. source: "./media/characters/tamani/feral.svg",
  56116. extra: 559/519,
  56117. bottom: 43/602
  56118. },
  56119. form: "feral"
  56120. },
  56121. },
  56122. [
  56123. {
  56124. name: "Normal",
  56125. height: math.unit(6.5, "feet"),
  56126. default: true,
  56127. form: "anthro"
  56128. },
  56129. {
  56130. name: "Normal",
  56131. height: math.unit(6, "feet"),
  56132. default: true,
  56133. form: "feral"
  56134. },
  56135. ],
  56136. {
  56137. "anthro": {
  56138. name: "Anthro",
  56139. default: true
  56140. },
  56141. "feral": {
  56142. name: "Feral",
  56143. },
  56144. }
  56145. ))
  56146. characterMakers.push(() => makeCharacter(
  56147. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56148. {
  56149. front: {
  56150. height: math.unit(4 + 1/12, "feet"),
  56151. weight: math.unit(114, "lb"),
  56152. name: "Front",
  56153. image: {
  56154. source: "./media/characters/dex/front.svg",
  56155. extra: 787/680,
  56156. bottom: 18/805
  56157. }
  56158. },
  56159. side: {
  56160. height: math.unit(4 + 1/12, "feet"),
  56161. weight: math.unit(114, "lb"),
  56162. name: "Side",
  56163. image: {
  56164. source: "./media/characters/dex/side.svg",
  56165. extra: 785/680,
  56166. bottom: 12/797
  56167. }
  56168. },
  56169. back: {
  56170. height: math.unit(4 + 1/12, "feet"),
  56171. weight: math.unit(114, "lb"),
  56172. name: "Back",
  56173. image: {
  56174. source: "./media/characters/dex/back.svg",
  56175. extra: 785/681,
  56176. bottom: 17/802
  56177. }
  56178. },
  56179. loungewear: {
  56180. height: math.unit(4 + 1/12, "feet"),
  56181. weight: math.unit(114, "lb"),
  56182. name: "Loungewear",
  56183. image: {
  56184. source: "./media/characters/dex/loungewear.svg",
  56185. extra: 787/680,
  56186. bottom: 18/805
  56187. }
  56188. },
  56189. workout: {
  56190. height: math.unit(4 + 1/12, "feet"),
  56191. weight: math.unit(114, "lb"),
  56192. name: "Workout",
  56193. image: {
  56194. source: "./media/characters/dex/workout.svg",
  56195. extra: 787/680,
  56196. bottom: 18/805
  56197. }
  56198. },
  56199. schoolUniform: {
  56200. height: math.unit(4 + 1/12, "feet"),
  56201. weight: math.unit(114, "lb"),
  56202. name: "School-uniform",
  56203. image: {
  56204. source: "./media/characters/dex/school-uniform.svg",
  56205. extra: 787/680,
  56206. bottom: 18/805
  56207. }
  56208. },
  56209. maw: {
  56210. height: math.unit(0.55, "feet"),
  56211. name: "Maw",
  56212. image: {
  56213. source: "./media/characters/dex/maw.svg"
  56214. }
  56215. },
  56216. paw: {
  56217. height: math.unit(0.87, "feet"),
  56218. name: "Paw",
  56219. image: {
  56220. source: "./media/characters/dex/paw.svg"
  56221. }
  56222. },
  56223. bust: {
  56224. height: math.unit(1.67, "feet"),
  56225. name: "Bust",
  56226. image: {
  56227. source: "./media/characters/dex/bust.svg"
  56228. }
  56229. },
  56230. },
  56231. [
  56232. {
  56233. name: "Normal",
  56234. height: math.unit(4 + 1/12, "feet"),
  56235. default: true
  56236. },
  56237. ]
  56238. ))
  56239. characterMakers.push(() => makeCharacter(
  56240. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56241. {
  56242. front: {
  56243. height: math.unit(4 + 3/12, "feet"),
  56244. weight: math.unit(60, "lb"),
  56245. name: "Front",
  56246. image: {
  56247. source: "./media/characters/silke/front.svg",
  56248. extra: 1334/1122,
  56249. bottom: 21/1355
  56250. }
  56251. },
  56252. back: {
  56253. height: math.unit(4 + 3/12, "feet"),
  56254. weight: math.unit(60, "lb"),
  56255. name: "Back",
  56256. image: {
  56257. source: "./media/characters/silke/back.svg",
  56258. extra: 1328/1092,
  56259. bottom: 16/1344
  56260. }
  56261. },
  56262. dressed: {
  56263. height: math.unit(4 + 3/12, "feet"),
  56264. weight: math.unit(60, "lb"),
  56265. name: "Dressed",
  56266. image: {
  56267. source: "./media/characters/silke/dressed.svg",
  56268. extra: 1334/1122,
  56269. bottom: 43/1377
  56270. }
  56271. },
  56272. },
  56273. [
  56274. {
  56275. name: "Normal",
  56276. height: math.unit(4 + 3/12, "feet"),
  56277. default: true
  56278. },
  56279. ]
  56280. ))
  56281. characterMakers.push(() => makeCharacter(
  56282. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56283. {
  56284. front: {
  56285. height: math.unit(1.58, "meters"),
  56286. weight: math.unit(47, "kg"),
  56287. name: "Front",
  56288. image: {
  56289. source: "./media/characters/wireshark/front.svg",
  56290. extra: 883/838,
  56291. bottom: 66/949
  56292. }
  56293. },
  56294. },
  56295. [
  56296. {
  56297. name: "Normal",
  56298. height: math.unit(1.58, "meters"),
  56299. default: true
  56300. },
  56301. ]
  56302. ))
  56303. characterMakers.push(() => makeCharacter(
  56304. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56305. {
  56306. front: {
  56307. height: math.unit(6, "meters"),
  56308. weight: math.unit(15000, "kg"),
  56309. name: "Front",
  56310. image: {
  56311. source: "./media/characters/gallagher/front.svg",
  56312. extra: 532/493,
  56313. bottom: 0/532
  56314. }
  56315. },
  56316. },
  56317. [
  56318. {
  56319. name: "Normal",
  56320. height: math.unit(6, "meters"),
  56321. default: true
  56322. },
  56323. ]
  56324. ))
  56325. characterMakers.push(() => makeCharacter(
  56326. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56327. {
  56328. front: {
  56329. height: math.unit(2.4, "meters"),
  56330. weight: math.unit(270, "kg"),
  56331. name: "Front",
  56332. image: {
  56333. source: "./media/characters/alice/front.svg",
  56334. extra: 950/900,
  56335. bottom: 36/986
  56336. }
  56337. },
  56338. side: {
  56339. height: math.unit(2.4, "meters"),
  56340. weight: math.unit(270, "kg"),
  56341. name: "Side",
  56342. image: {
  56343. source: "./media/characters/alice/side.svg",
  56344. extra: 921/876,
  56345. bottom: 19/940
  56346. }
  56347. },
  56348. dressed: {
  56349. height: math.unit(2.4, "meters"),
  56350. weight: math.unit(270, "kg"),
  56351. name: "Dressed",
  56352. image: {
  56353. source: "./media/characters/alice/dressed.svg",
  56354. extra: 905/850,
  56355. bottom: 81/986
  56356. }
  56357. },
  56358. fishnet: {
  56359. height: math.unit(2.4, "meters"),
  56360. weight: math.unit(270, "kg"),
  56361. name: "Fishnet",
  56362. image: {
  56363. source: "./media/characters/alice/fishnet.svg",
  56364. extra: 905/850,
  56365. bottom: 81/986
  56366. }
  56367. },
  56368. },
  56369. [
  56370. {
  56371. name: "Normal",
  56372. height: math.unit(2.4, "meters"),
  56373. default: true
  56374. },
  56375. ]
  56376. ))
  56377. characterMakers.push(() => makeCharacter(
  56378. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56379. {
  56380. front: {
  56381. height: math.unit(175.25, "feet"),
  56382. name: "Front",
  56383. image: {
  56384. source: "./media/characters/fio/front.svg",
  56385. extra: 1883/1591,
  56386. bottom: 34/1917
  56387. }
  56388. },
  56389. },
  56390. [
  56391. {
  56392. name: "Normal",
  56393. height: math.unit(175.25, "cm"),
  56394. default: true
  56395. },
  56396. ]
  56397. ))
  56398. characterMakers.push(() => makeCharacter(
  56399. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56400. {
  56401. side: {
  56402. height: math.unit(6, "meters"),
  56403. weight: math.unit(3400, "kg"),
  56404. preyCapacity: math.unit(1700, "liters"),
  56405. name: "Side",
  56406. image: {
  56407. source: "./media/characters/hass/side.svg",
  56408. extra: 1058/997,
  56409. bottom: 177/1235
  56410. }
  56411. },
  56412. feeding: {
  56413. height: math.unit(6*0.63, "meters"),
  56414. weight: math.unit(3400, "kg"),
  56415. preyCapacity: math.unit(1700, "liters"),
  56416. name: "Feeding",
  56417. image: {
  56418. source: "./media/characters/hass/feeding.svg",
  56419. extra: 689/579,
  56420. bottom: 146/835
  56421. }
  56422. },
  56423. guts: {
  56424. height: math.unit(6, "meters"),
  56425. weight: math.unit(3400, "kg"),
  56426. name: "Guts",
  56427. image: {
  56428. source: "./media/characters/hass/guts.svg",
  56429. extra: 1223/1198,
  56430. bottom: 182/1405
  56431. }
  56432. },
  56433. dickFront: {
  56434. height: math.unit(1.4, "meters"),
  56435. name: "Dick (Front)",
  56436. image: {
  56437. source: "./media/characters/hass/dick-front.svg"
  56438. }
  56439. },
  56440. dickSide: {
  56441. height: math.unit(1.3, "meters"),
  56442. name: "Dick (Side)",
  56443. image: {
  56444. source: "./media/characters/hass/dick-side.svg"
  56445. }
  56446. },
  56447. dickBack: {
  56448. height: math.unit(1.4, "meters"),
  56449. name: "Dick (Back)",
  56450. image: {
  56451. source: "./media/characters/hass/dick-back.svg"
  56452. }
  56453. },
  56454. },
  56455. [
  56456. {
  56457. name: "Normal",
  56458. height: math.unit(6, "meters"),
  56459. default: true
  56460. },
  56461. ]
  56462. ))
  56463. characterMakers.push(() => makeCharacter(
  56464. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56465. {
  56466. front: {
  56467. height: math.unit(4, "feet"),
  56468. weight: math.unit(60, "lb"),
  56469. name: "Front",
  56470. image: {
  56471. source: "./media/characters/hickory-finnegan/front.svg",
  56472. extra: 444/411,
  56473. bottom: 10/454
  56474. }
  56475. },
  56476. side: {
  56477. height: math.unit(4, "feet"),
  56478. weight: math.unit(60, "lb"),
  56479. name: "Side",
  56480. image: {
  56481. source: "./media/characters/hickory-finnegan/side.svg",
  56482. extra: 444/411,
  56483. bottom: 10/454
  56484. }
  56485. },
  56486. back: {
  56487. height: math.unit(4, "feet"),
  56488. weight: math.unit(60, "lb"),
  56489. name: "Back",
  56490. image: {
  56491. source: "./media/characters/hickory-finnegan/back.svg",
  56492. extra: 444/411,
  56493. bottom: 10/454
  56494. }
  56495. },
  56496. },
  56497. [
  56498. {
  56499. name: "Normal",
  56500. height: math.unit(4, "feet"),
  56501. default: true
  56502. },
  56503. ]
  56504. ))
  56505. characterMakers.push(() => makeCharacter(
  56506. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56507. {
  56508. snivy_front: {
  56509. height: math.unit(2, "feet"),
  56510. weight: math.unit(17.9, "lb"),
  56511. name: "Front",
  56512. image: {
  56513. source: "./media/characters/robin-phox/snivy-front.svg",
  56514. extra: 569/504,
  56515. bottom: 33/602
  56516. },
  56517. form: "snivy",
  56518. default: true
  56519. },
  56520. snivy_frontNsfw: {
  56521. height: math.unit(2, "feet"),
  56522. weight: math.unit(17.9, "lb"),
  56523. name: "Front (NSFW)",
  56524. image: {
  56525. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56526. extra: 569/504,
  56527. bottom: 33/602
  56528. },
  56529. form: "snivy",
  56530. },
  56531. snivy_back: {
  56532. height: math.unit(2, "feet"),
  56533. weight: math.unit(17.9, "lb"),
  56534. name: "Back",
  56535. image: {
  56536. source: "./media/characters/robin-phox/snivy-back.svg",
  56537. extra: 577/508,
  56538. bottom: 21/598
  56539. },
  56540. form: "snivy",
  56541. },
  56542. snivy_foot: {
  56543. height: math.unit(0.68, "feet"),
  56544. name: "Foot",
  56545. image: {
  56546. source: "./media/characters/robin-phox/snivy-foot.svg"
  56547. },
  56548. form: "snivy",
  56549. },
  56550. snivy_sole: {
  56551. height: math.unit(0.68, "feet"),
  56552. name: "Sole",
  56553. image: {
  56554. source: "./media/characters/robin-phox/snivy-sole.svg"
  56555. },
  56556. form: "snivy",
  56557. },
  56558. yoshi_front: {
  56559. height: math.unit(6, "feet"),
  56560. weight: math.unit(150, "lb"),
  56561. name: "Front",
  56562. image: {
  56563. source: "./media/characters/robin-phox/yoshi-front.svg",
  56564. extra: 890/792,
  56565. bottom: 29/919
  56566. },
  56567. form: "yoshi",
  56568. default: true
  56569. },
  56570. yoshi_frontNsfw: {
  56571. height: math.unit(6, "feet"),
  56572. weight: math.unit(150, "lb"),
  56573. name: "Front (NSFW)",
  56574. image: {
  56575. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56576. extra: 890/792,
  56577. bottom: 29/919
  56578. },
  56579. form: "yoshi",
  56580. },
  56581. yoshi_back: {
  56582. height: math.unit(6, "feet"),
  56583. weight: math.unit(150, "lb"),
  56584. name: "Back",
  56585. image: {
  56586. source: "./media/characters/robin-phox/yoshi-back.svg",
  56587. extra: 890/792,
  56588. bottom: 29/919
  56589. },
  56590. form: "yoshi",
  56591. },
  56592. yoshi_foot: {
  56593. height: math.unit(1.5, "feet"),
  56594. name: "Foot",
  56595. image: {
  56596. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56597. },
  56598. form: "yoshi",
  56599. },
  56600. delphox_front: {
  56601. height: math.unit(4 + 11/12, "feet"),
  56602. weight: math.unit(86, "lb"),
  56603. name: "Front",
  56604. image: {
  56605. source: "./media/characters/robin-phox/delphox-front.svg",
  56606. extra: 1266/1069,
  56607. bottom: 32/1298
  56608. },
  56609. form: "delphox",
  56610. default: true
  56611. },
  56612. delphox_frontNsfw: {
  56613. height: math.unit(4 + 11/12, "feet"),
  56614. weight: math.unit(86, "lb"),
  56615. name: "Front (NSFW)",
  56616. image: {
  56617. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  56618. extra: 1266/1069,
  56619. bottom: 32/1298
  56620. },
  56621. form: "delphox",
  56622. },
  56623. delphox_back: {
  56624. height: math.unit(4 + 11/12, "feet"),
  56625. weight: math.unit(86, "lb"),
  56626. name: "Back",
  56627. image: {
  56628. source: "./media/characters/robin-phox/delphox-back.svg",
  56629. extra: 1269/1083,
  56630. bottom: 15/1284
  56631. },
  56632. form: "delphox",
  56633. },
  56634. mienshao_front: {
  56635. height: math.unit(4 + 7/12, "feet"),
  56636. weight: math.unit(78.3, "lb"),
  56637. name: "Front",
  56638. image: {
  56639. source: "./media/characters/robin-phox/mienshao-front.svg",
  56640. extra: 1052/970,
  56641. bottom: 108/1160
  56642. },
  56643. form: "mienshao",
  56644. default: true
  56645. },
  56646. mienshao_frontNsfw: {
  56647. height: math.unit(4 + 7/12, "feet"),
  56648. weight: math.unit(78.3, "lb"),
  56649. name: "Front (NSFW)",
  56650. image: {
  56651. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  56652. extra: 1052/970,
  56653. bottom: 108/1160
  56654. },
  56655. form: "mienshao",
  56656. },
  56657. mienshao_back: {
  56658. height: math.unit(4 + 7/12, "feet"),
  56659. weight: math.unit(78.3, "lb"),
  56660. name: "Back",
  56661. image: {
  56662. source: "./media/characters/robin-phox/mienshao-back.svg",
  56663. extra: 1102/982,
  56664. bottom: 32/1134
  56665. },
  56666. form: "mienshao",
  56667. },
  56668. inteleon_front: {
  56669. height: math.unit(6 + 3/12, "feet"),
  56670. weight: math.unit(99.6, "lb"),
  56671. name: "Front",
  56672. image: {
  56673. source: "./media/characters/robin-phox/inteleon-front.svg",
  56674. extra: 910/799,
  56675. bottom: 76/986
  56676. },
  56677. form: "inteleon",
  56678. default: true
  56679. },
  56680. inteleon_frontNsfw: {
  56681. height: math.unit(6 + 3/12, "feet"),
  56682. weight: math.unit(99.6, "lb"),
  56683. name: "Front (NSFW)",
  56684. image: {
  56685. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  56686. extra: 910/799,
  56687. bottom: 76/986
  56688. },
  56689. form: "inteleon",
  56690. },
  56691. inteleon_back: {
  56692. height: math.unit(6 + 3/12, "feet"),
  56693. weight: math.unit(99.6, "lb"),
  56694. name: "Back",
  56695. image: {
  56696. source: "./media/characters/robin-phox/inteleon-back.svg",
  56697. extra: 907/796,
  56698. bottom: 25/932
  56699. },
  56700. form: "inteleon",
  56701. },
  56702. reshiram_front: {
  56703. height: math.unit(10 + 6/12, "feet"),
  56704. weight: math.unit(727.5, "lb"),
  56705. name: "Front",
  56706. image: {
  56707. source: "./media/characters/robin-phox/reshiram-front.svg",
  56708. extra: 1198/940,
  56709. bottom: 123/1321
  56710. },
  56711. form: "reshiram",
  56712. },
  56713. reshiram_frontNsfw: {
  56714. height: math.unit(10 + 6/12, "feet"),
  56715. weight: math.unit(727.5, "lb"),
  56716. name: "Front-nsfw",
  56717. image: {
  56718. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  56719. extra: 1198/940,
  56720. bottom: 123/1321
  56721. },
  56722. form: "reshiram",
  56723. },
  56724. reshiram_back: {
  56725. height: math.unit(10 + 6/12, "feet"),
  56726. weight: math.unit(727.5, "lb"),
  56727. name: "Back",
  56728. image: {
  56729. source: "./media/characters/robin-phox/reshiram-back.svg",
  56730. extra: 1024/904,
  56731. bottom: 85/1109
  56732. },
  56733. form: "reshiram",
  56734. },
  56735. samurott_front: {
  56736. height: math.unit(8, "feet"),
  56737. weight: math.unit(208.6, "lb"),
  56738. name: "Front",
  56739. image: {
  56740. source: "./media/characters/robin-phox/samurott-front.svg",
  56741. extra: 1048/984,
  56742. bottom: 100/1148
  56743. },
  56744. form: "samurott",
  56745. },
  56746. samurott_frontNsfw: {
  56747. height: math.unit(8, "feet"),
  56748. weight: math.unit(208.6, "lb"),
  56749. name: "Front-nsfw",
  56750. image: {
  56751. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  56752. extra: 1048/984,
  56753. bottom: 100/1148
  56754. },
  56755. form: "samurott",
  56756. },
  56757. samurott_back: {
  56758. height: math.unit(8, "feet"),
  56759. weight: math.unit(208.6, "lb"),
  56760. name: "Back",
  56761. image: {
  56762. source: "./media/characters/robin-phox/samurott-back.svg",
  56763. extra: 1110/1042,
  56764. bottom: 12/1122
  56765. },
  56766. form: "samurott",
  56767. },
  56768. samurott_feral: {
  56769. height: math.unit(4 + 11/12, "feet"),
  56770. weight: math.unit(208.6, "lb"),
  56771. name: "Feral",
  56772. image: {
  56773. source: "./media/characters/robin-phox/samurott-feral.svg",
  56774. extra: 766/681,
  56775. bottom: 108/874
  56776. },
  56777. form: "samurott",
  56778. },
  56779. },
  56780. [
  56781. {
  56782. name: "Normal",
  56783. height: math.unit(2, "feet"),
  56784. default: true,
  56785. form: "snivy"
  56786. },
  56787. {
  56788. name: "Normal",
  56789. height: math.unit(6, "feet"),
  56790. default: true,
  56791. form: "yoshi"
  56792. },
  56793. {
  56794. name: "Normal",
  56795. height: math.unit(4 + 11/12, "feet"),
  56796. default: true,
  56797. form: "delphox"
  56798. },
  56799. {
  56800. name: "Normal",
  56801. height: math.unit(4 + 7/12, "feet"),
  56802. default: true,
  56803. form: "mienshao"
  56804. },
  56805. {
  56806. name: "Normal",
  56807. height: math.unit(6 + 3/12, "feet"),
  56808. default: true,
  56809. form: "inteleon"
  56810. },
  56811. {
  56812. name: "Normal",
  56813. height: math.unit(10 + 6/12, "feet"),
  56814. default: true,
  56815. form: "reshiram"
  56816. },
  56817. {
  56818. name: "Normal",
  56819. height: math.unit(8, "feet"),
  56820. default: true,
  56821. form: "samurott"
  56822. },
  56823. {
  56824. name: "Macro",
  56825. height: math.unit(500, "feet"),
  56826. allForms: true
  56827. },
  56828. {
  56829. name: "Mega Macro",
  56830. height: math.unit(10, "earths"),
  56831. allForms: true
  56832. },
  56833. {
  56834. name: "Giga Macro",
  56835. height: math.unit(1, "galaxy"),
  56836. allForms: true
  56837. },
  56838. {
  56839. name: "Godly Macro",
  56840. height: math.unit(1e10, "multiverses"),
  56841. allForms: true
  56842. },
  56843. ],
  56844. {
  56845. "snivy": {
  56846. name: "Snivy",
  56847. default: true
  56848. },
  56849. "yoshi": {
  56850. name: "Yoshi",
  56851. },
  56852. "delphox": {
  56853. name: "Delphox",
  56854. },
  56855. "mienshao": {
  56856. name: "Mienshao",
  56857. },
  56858. "inteleon": {
  56859. name: "Inteleon",
  56860. },
  56861. "reshiram": {
  56862. name: "Reshiram",
  56863. },
  56864. "samurott": {
  56865. name: "Samurott",
  56866. },
  56867. }
  56868. ))
  56869. characterMakers.push(() => makeCharacter(
  56870. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  56871. {
  56872. front: {
  56873. height: math.unit(4, "feet"),
  56874. name: "Front",
  56875. image: {
  56876. source: "./media/characters/ash-leung/front.svg",
  56877. extra: 1916/1792,
  56878. bottom: 50/1966
  56879. }
  56880. },
  56881. },
  56882. [
  56883. {
  56884. name: "Atomic",
  56885. height: math.unit(1, "angstrom")
  56886. },
  56887. {
  56888. name: "Microscopic",
  56889. height: math.unit(4000, "angstroms")
  56890. },
  56891. {
  56892. name: "Speck",
  56893. height: math.unit(1, "mm")
  56894. },
  56895. {
  56896. name: "Small",
  56897. height: math.unit(1, "inch")
  56898. },
  56899. {
  56900. name: "Normal",
  56901. height: math.unit(4, "feet"),
  56902. default: true
  56903. },
  56904. ]
  56905. ))
  56906. characterMakers.push(() => makeCharacter(
  56907. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  56908. {
  56909. frontDressed: {
  56910. height: math.unit(2.08, "meters"),
  56911. weight: math.unit(175, "lb"),
  56912. name: "Front (Dressed)",
  56913. image: {
  56914. source: "./media/characters/carie/front-dressed.svg",
  56915. extra: 456/417,
  56916. bottom: 7/463
  56917. }
  56918. },
  56919. backDressed: {
  56920. height: math.unit(2.08, "meters"),
  56921. weight: math.unit(175, "lb"),
  56922. name: "Back (Dressed)",
  56923. image: {
  56924. source: "./media/characters/carie/back-dressed.svg",
  56925. extra: 455/414,
  56926. bottom: 11/466
  56927. }
  56928. },
  56929. front: {
  56930. height: math.unit(2, "meters"),
  56931. weight: math.unit(175, "lb"),
  56932. name: "Front",
  56933. image: {
  56934. source: "./media/characters/carie/front.svg",
  56935. extra: 438/399,
  56936. bottom: 12/450
  56937. }
  56938. },
  56939. back: {
  56940. height: math.unit(2, "meters"),
  56941. weight: math.unit(175, "lb"),
  56942. name: "Back",
  56943. image: {
  56944. source: "./media/characters/carie/back.svg",
  56945. extra: 438/397,
  56946. bottom: 7/445
  56947. }
  56948. },
  56949. },
  56950. [
  56951. {
  56952. name: "Normal",
  56953. height: math.unit(2.08, "meters"),
  56954. default: true
  56955. },
  56956. {
  56957. name: "Macro",
  56958. height: math.unit(2.08e3, "meters")
  56959. },
  56960. {
  56961. name: "Mega Macro",
  56962. height: math.unit(2.08e6, "meters")
  56963. },
  56964. {
  56965. name: "Giga Macro",
  56966. height: math.unit(2.08e9, "meters")
  56967. },
  56968. {
  56969. name: "Tera Macro",
  56970. height: math.unit(2.08e12, "meters")
  56971. },
  56972. {
  56973. name: "Peta Macro",
  56974. height: math.unit(2.08e15, "meters")
  56975. },
  56976. {
  56977. name: "Exa Macro",
  56978. height: math.unit(2.08e18, "meters")
  56979. },
  56980. {
  56981. name: "Zetta Macro",
  56982. height: math.unit(2.08e21, "meters")
  56983. },
  56984. {
  56985. name: "Yotta Macro",
  56986. height: math.unit(2.08e24, "meters")
  56987. },
  56988. ]
  56989. ))
  56990. characterMakers.push(() => makeCharacter(
  56991. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  56992. {
  56993. front: {
  56994. height: math.unit(5 + 2/12, "feet"),
  56995. weight: math.unit(120, "lb"),
  56996. name: "Front",
  56997. image: {
  56998. source: "./media/characters/sai-bree/front.svg",
  56999. extra: 1843/1702,
  57000. bottom: 91/1934
  57001. }
  57002. },
  57003. back: {
  57004. height: math.unit(5 + 2/12, "feet"),
  57005. weight: math.unit(120, "lb"),
  57006. name: "Back",
  57007. image: {
  57008. source: "./media/characters/sai-bree/back.svg",
  57009. extra: 1809/1637,
  57010. bottom: 56/1865
  57011. }
  57012. },
  57013. },
  57014. [
  57015. {
  57016. name: "Normal",
  57017. height: math.unit(5 + 2/12, "feet"),
  57018. default: true
  57019. },
  57020. {
  57021. name: "Macro",
  57022. height: math.unit(500, "feet")
  57023. },
  57024. ]
  57025. ))
  57026. characterMakers.push(() => makeCharacter(
  57027. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57028. {
  57029. side: {
  57030. height: math.unit(0.77, "meters"),
  57031. weight: math.unit(120, "lb"),
  57032. name: "Side",
  57033. image: {
  57034. source: "./media/characters/davwyn/side.svg",
  57035. extra: 1557/1225,
  57036. bottom: 131/1688
  57037. }
  57038. },
  57039. front: {
  57040. height: math.unit(0.835410, "meters"),
  57041. weight: math.unit(120, "lb"),
  57042. name: "Front",
  57043. image: {
  57044. source: "./media/characters/davwyn/front.svg",
  57045. extra: 870/843,
  57046. bottom: 175/1045
  57047. }
  57048. },
  57049. },
  57050. [
  57051. {
  57052. name: "Minidrake",
  57053. height: math.unit(0.77/4, "meters")
  57054. },
  57055. {
  57056. name: "Normal",
  57057. height: math.unit(0.77, "meters"),
  57058. default: true
  57059. },
  57060. ]
  57061. ))
  57062. characterMakers.push(() => makeCharacter(
  57063. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57064. {
  57065. front: {
  57066. height: math.unit(10 + 3/12, "feet"),
  57067. weight: math.unit(2857, "lb"),
  57068. name: "Front",
  57069. image: {
  57070. source: "./media/characters/balans/front.svg",
  57071. extra: 427/402,
  57072. bottom: 26/453
  57073. }
  57074. },
  57075. side: {
  57076. height: math.unit(10 + 3/12, "feet"),
  57077. weight: math.unit(2857, "lb"),
  57078. name: "Side",
  57079. image: {
  57080. source: "./media/characters/balans/side.svg",
  57081. extra: 397/371,
  57082. bottom: 17/414
  57083. }
  57084. },
  57085. back: {
  57086. height: math.unit(10 + 3/12, "feet"),
  57087. weight: math.unit(2857, "lb"),
  57088. name: "Back",
  57089. image: {
  57090. source: "./media/characters/balans/back.svg",
  57091. extra: 408/381,
  57092. bottom: 14/422
  57093. }
  57094. },
  57095. hand: {
  57096. height: math.unit(1.15, "feet"),
  57097. name: "Hand",
  57098. image: {
  57099. source: "./media/characters/balans/hand.svg"
  57100. }
  57101. },
  57102. footRest: {
  57103. height: math.unit(3.1, "feet"),
  57104. name: "Foot (Rest)",
  57105. image: {
  57106. source: "./media/characters/balans/foot-rest.svg"
  57107. }
  57108. },
  57109. footActive: {
  57110. height: math.unit(3.5, "feet"),
  57111. name: "Foot (Active)",
  57112. image: {
  57113. source: "./media/characters/balans/foot-active.svg"
  57114. }
  57115. },
  57116. },
  57117. [
  57118. {
  57119. name: "Normal",
  57120. height: math.unit(10 + 3/12, "feet"),
  57121. default: true
  57122. },
  57123. ]
  57124. ))
  57125. characterMakers.push(() => makeCharacter(
  57126. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57127. {
  57128. side: {
  57129. height: math.unit(9, "meters"),
  57130. weight: math.unit(114, "tonnes"),
  57131. name: "Side",
  57132. image: {
  57133. source: "./media/characters/eldkveikir/side.svg",
  57134. extra: 1927/338,
  57135. bottom: 42/1969
  57136. }
  57137. },
  57138. sitting: {
  57139. height: math.unit(13.4, "meters"),
  57140. weight: math.unit(114, "tonnes"),
  57141. name: "Sitting",
  57142. image: {
  57143. source: "./media/characters/eldkveikir/sitting.svg",
  57144. extra: 1108/963,
  57145. bottom: 610/1718
  57146. }
  57147. },
  57148. maw: {
  57149. height: math.unit(8.36, "meters"),
  57150. name: "Maw",
  57151. image: {
  57152. source: "./media/characters/eldkveikir/maw.svg"
  57153. }
  57154. },
  57155. hand: {
  57156. height: math.unit(4.84, "meters"),
  57157. name: "Hand",
  57158. image: {
  57159. source: "./media/characters/eldkveikir/hand.svg"
  57160. }
  57161. },
  57162. foot: {
  57163. height: math.unit(6.9, "meters"),
  57164. name: "Foot",
  57165. image: {
  57166. source: "./media/characters/eldkveikir/foot.svg"
  57167. }
  57168. },
  57169. genitals: {
  57170. height: math.unit(9.6, "meters"),
  57171. name: "Genitals",
  57172. image: {
  57173. source: "./media/characters/eldkveikir/genitals.svg"
  57174. }
  57175. },
  57176. },
  57177. [
  57178. {
  57179. name: "Normal",
  57180. height: math.unit(9, "meters"),
  57181. default: true
  57182. },
  57183. ]
  57184. ))
  57185. characterMakers.push(() => makeCharacter(
  57186. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57187. {
  57188. front: {
  57189. height: math.unit(14, "feet"),
  57190. weight: math.unit(4100, "lb"),
  57191. name: "Front",
  57192. image: {
  57193. source: "./media/characters/arrow/front.svg",
  57194. extra: 330/318,
  57195. bottom: 56/386
  57196. }
  57197. },
  57198. },
  57199. [
  57200. {
  57201. name: "Normal",
  57202. height: math.unit(14, "feet"),
  57203. default: true
  57204. },
  57205. {
  57206. name: "Minimacro",
  57207. height: math.unit(63, "feet")
  57208. },
  57209. {
  57210. name: "Macro",
  57211. height: math.unit(630, "feet")
  57212. },
  57213. {
  57214. name: "Megamacro",
  57215. height: math.unit(12600, "feet")
  57216. },
  57217. {
  57218. name: "Gigamacro",
  57219. height: math.unit(18000, "miles")
  57220. },
  57221. ]
  57222. ))
  57223. characterMakers.push(() => makeCharacter(
  57224. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57225. {
  57226. front: {
  57227. height: math.unit(10, "feet"),
  57228. weight: math.unit(2.4, "tons"),
  57229. name: "Front",
  57230. image: {
  57231. source: "./media/characters/3yk-k0-unit/front.svg",
  57232. extra: 573/561,
  57233. bottom: 33/606
  57234. }
  57235. },
  57236. back: {
  57237. height: math.unit(10, "feet"),
  57238. weight: math.unit(2.4, "tons"),
  57239. name: "Back",
  57240. image: {
  57241. source: "./media/characters/3yk-k0-unit/back.svg",
  57242. extra: 614/573,
  57243. bottom: 32/646
  57244. }
  57245. },
  57246. maw: {
  57247. height: math.unit(2.15, "feet"),
  57248. name: "Maw",
  57249. image: {
  57250. source: "./media/characters/3yk-k0-unit/maw.svg"
  57251. }
  57252. },
  57253. },
  57254. [
  57255. {
  57256. name: "Normal",
  57257. height: math.unit(10, "feet"),
  57258. default: true
  57259. },
  57260. ]
  57261. ))
  57262. characterMakers.push(() => makeCharacter(
  57263. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57264. {
  57265. front: {
  57266. height: math.unit(8 + 8/12, "feet"),
  57267. name: "Front",
  57268. image: {
  57269. source: "./media/characters/nemo/front.svg",
  57270. extra: 1308/1217,
  57271. bottom: 57/1365
  57272. }
  57273. },
  57274. },
  57275. [
  57276. {
  57277. name: "Normal",
  57278. height: math.unit(8 + 8/12, "feet"),
  57279. default: true
  57280. },
  57281. ]
  57282. ))
  57283. characterMakers.push(() => makeCharacter(
  57284. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57285. {
  57286. front: {
  57287. height: math.unit(8, "feet"),
  57288. weight: math.unit(760, "lb"),
  57289. name: "Front",
  57290. image: {
  57291. source: "./media/characters/rexx/front.svg",
  57292. extra: 786/750,
  57293. bottom: 17/803
  57294. },
  57295. extraAttributes: {
  57296. "pawLength": {
  57297. name: "Paw Length",
  57298. power: 1,
  57299. type: "length",
  57300. base: math.unit(27, "inches")
  57301. },
  57302. }
  57303. },
  57304. },
  57305. [
  57306. {
  57307. name: "Micro",
  57308. height: math.unit(2, "inches")
  57309. },
  57310. {
  57311. name: "Normal",
  57312. height: math.unit(8, "feet"),
  57313. default: true
  57314. },
  57315. {
  57316. name: "Macro",
  57317. height: math.unit(150, "feet")
  57318. },
  57319. ]
  57320. ))
  57321. characterMakers.push(() => makeCharacter(
  57322. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57323. {
  57324. front: {
  57325. height: math.unit(18, "feet"),
  57326. weight: math.unit(1975, "lb"),
  57327. name: "Front",
  57328. image: {
  57329. source: "./media/characters/draco/front.svg",
  57330. extra: 1325/1241,
  57331. bottom: 83/1408
  57332. }
  57333. },
  57334. back: {
  57335. height: math.unit(18, "feet"),
  57336. weight: math.unit(1975, "lb"),
  57337. name: "Back",
  57338. image: {
  57339. source: "./media/characters/draco/back.svg",
  57340. extra: 1332/1250,
  57341. bottom: 43/1375
  57342. }
  57343. },
  57344. dick: {
  57345. height: math.unit(7.5, "feet"),
  57346. name: "Dick",
  57347. image: {
  57348. source: "./media/characters/draco/dick.svg"
  57349. }
  57350. },
  57351. },
  57352. [
  57353. {
  57354. name: "Normal",
  57355. height: math.unit(18, "feet"),
  57356. default: true
  57357. },
  57358. ]
  57359. ))
  57360. characterMakers.push(() => makeCharacter(
  57361. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57362. {
  57363. front: {
  57364. height: math.unit(3.2, "meters"),
  57365. name: "Front",
  57366. image: {
  57367. source: "./media/characters/harriett/front.svg",
  57368. extra: 1966/1915,
  57369. bottom: 9/1975
  57370. }
  57371. },
  57372. },
  57373. [
  57374. {
  57375. name: "Normal",
  57376. height: math.unit(3.2, "meters"),
  57377. default: true
  57378. },
  57379. ]
  57380. ))
  57381. characterMakers.push(() => makeCharacter(
  57382. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57383. {
  57384. sitting: {
  57385. height: math.unit(0.8, "meter"),
  57386. name: "Sitting",
  57387. image: {
  57388. source: "./media/characters/serpentus/sitting.svg",
  57389. extra: 293/290,
  57390. bottom: 140/433
  57391. }
  57392. },
  57393. },
  57394. [
  57395. {
  57396. name: "Normal",
  57397. height: math.unit(0.8, "meter"),
  57398. default: true
  57399. },
  57400. ]
  57401. ))
  57402. characterMakers.push(() => makeCharacter(
  57403. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57404. {
  57405. front: {
  57406. height: math.unit(5.7174385736, "feet"),
  57407. name: "Front",
  57408. image: {
  57409. source: "./media/characters/nova-polecat/front.svg",
  57410. extra: 1317/1216,
  57411. bottom: 92/1409
  57412. }
  57413. },
  57414. },
  57415. [
  57416. {
  57417. name: "Normal",
  57418. height: math.unit(5.7174385736, "feet"),
  57419. default: true
  57420. },
  57421. ]
  57422. ))
  57423. characterMakers.push(() => makeCharacter(
  57424. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57425. {
  57426. front: {
  57427. height: math.unit(5 + 4/12, "feet"),
  57428. weight: math.unit(250, "lb"),
  57429. name: "Front",
  57430. image: {
  57431. source: "./media/characters/mook/front.svg",
  57432. extra: 1088/1037,
  57433. bottom: 132/1220
  57434. }
  57435. },
  57436. back: {
  57437. height: math.unit(5 + 1/12, "feet"),
  57438. weight: math.unit(250, "lb"),
  57439. name: "Back",
  57440. image: {
  57441. source: "./media/characters/mook/back.svg",
  57442. extra: 1184/905,
  57443. bottom: 96/1280
  57444. }
  57445. },
  57446. head: {
  57447. height: math.unit(1.85, "feet"),
  57448. name: "Head",
  57449. image: {
  57450. source: "./media/characters/mook/head.svg"
  57451. }
  57452. },
  57453. hand: {
  57454. height: math.unit(1.9, "feet"),
  57455. name: "Hand",
  57456. image: {
  57457. source: "./media/characters/mook/hand.svg"
  57458. }
  57459. },
  57460. palm: {
  57461. height: math.unit(1.84, "feet"),
  57462. name: "Palm",
  57463. image: {
  57464. source: "./media/characters/mook/palm.svg"
  57465. }
  57466. },
  57467. foot: {
  57468. height: math.unit(1.44, "feet"),
  57469. name: "Foot",
  57470. image: {
  57471. source: "./media/characters/mook/foot.svg"
  57472. }
  57473. },
  57474. sole: {
  57475. height: math.unit(1.44, "feet"),
  57476. name: "Sole",
  57477. image: {
  57478. source: "./media/characters/mook/sole.svg"
  57479. }
  57480. },
  57481. },
  57482. [
  57483. {
  57484. name: "Normal",
  57485. height: math.unit(5 + 4/12, "feet"),
  57486. default: true
  57487. },
  57488. {
  57489. name: "Big",
  57490. height: math.unit(12, "feet")
  57491. },
  57492. ]
  57493. ))
  57494. characterMakers.push(() => makeCharacter(
  57495. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57496. {
  57497. front: {
  57498. height: math.unit(6 + 10/12, "feet"),
  57499. weight: math.unit(233, "lb"),
  57500. name: "Front",
  57501. image: {
  57502. source: "./media/characters/kayla/front.svg",
  57503. extra: 1850/1775,
  57504. bottom: 65/1915
  57505. }
  57506. },
  57507. },
  57508. [
  57509. {
  57510. name: "Normal",
  57511. height: math.unit(6 + 10/12, "feet"),
  57512. default: true
  57513. },
  57514. {
  57515. name: "Amazonian",
  57516. height: math.unit(12 + 5/12, "feet")
  57517. },
  57518. {
  57519. name: "Mini Giantess",
  57520. height: math.unit(26, "feet")
  57521. },
  57522. {
  57523. name: "Giantess",
  57524. height: math.unit(200, "feet")
  57525. },
  57526. {
  57527. name: "Mega Giantess",
  57528. height: math.unit(2500, "feet")
  57529. },
  57530. {
  57531. name: "City Sized",
  57532. height: math.unit(50, "miles")
  57533. },
  57534. {
  57535. name: "Country Sized",
  57536. height: math.unit(500, "miles")
  57537. },
  57538. {
  57539. name: "Continent Sized",
  57540. height: math.unit(2500, "miles")
  57541. },
  57542. {
  57543. name: "Planet Sized",
  57544. height: math.unit(10000, "miles")
  57545. },
  57546. {
  57547. name: "Star Sized",
  57548. height: math.unit(5e6, "miles")
  57549. },
  57550. {
  57551. name: "Solar System Sized",
  57552. height: math.unit(125, "AU")
  57553. },
  57554. {
  57555. name: "Galaxy Sized",
  57556. height: math.unit(300e3, "lightyears")
  57557. },
  57558. {
  57559. name: "Universe Sized",
  57560. height: math.unit(200e9, "lightyears")
  57561. },
  57562. {
  57563. name: "Multiverse Sized",
  57564. height: math.unit(20, "exauniverses")
  57565. },
  57566. {
  57567. name: "Mother of Existence",
  57568. height: math.unit(1e6, "yottauniverses")
  57569. },
  57570. ]
  57571. ))
  57572. characterMakers.push(() => makeCharacter(
  57573. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57574. {
  57575. side: {
  57576. height: math.unit(9.5, "meters"),
  57577. name: "Side",
  57578. image: {
  57579. source: "./media/characters/kulve-ragnarok/side.svg",
  57580. extra: 364/326,
  57581. bottom: 50/414
  57582. }
  57583. },
  57584. },
  57585. [
  57586. {
  57587. name: "Normal",
  57588. height: math.unit(9.5, "meters"),
  57589. default: true
  57590. },
  57591. ]
  57592. ))
  57593. characterMakers.push(() => makeCharacter(
  57594. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57595. {
  57596. front: {
  57597. height: math.unit(8 + 9/12, "feet"),
  57598. name: "Front",
  57599. image: {
  57600. source: "./media/characters/atlas-goat/front.svg",
  57601. extra: 1462/1323,
  57602. bottom: 12/1474
  57603. }
  57604. },
  57605. },
  57606. [
  57607. {
  57608. name: "Normal",
  57609. height: math.unit(8 + 9/12, "feet"),
  57610. default: true
  57611. },
  57612. {
  57613. name: "Skyline",
  57614. height: math.unit(845, "feet")
  57615. },
  57616. {
  57617. name: "Orbital",
  57618. height: math.unit(93000, "miles")
  57619. },
  57620. {
  57621. name: "Constellation",
  57622. height: math.unit(27000, "lightyears")
  57623. },
  57624. ]
  57625. ))
  57626. characterMakers.push(() => makeCharacter(
  57627. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  57628. {
  57629. side: {
  57630. height: math.unit(1.8, "meters"),
  57631. weight: math.unit(120, "kg"),
  57632. name: "Side",
  57633. image: {
  57634. source: "./media/characters/xie-ling/side.svg",
  57635. extra: 646/574,
  57636. bottom: 44/690
  57637. }
  57638. },
  57639. },
  57640. [
  57641. {
  57642. name: "Tiny",
  57643. height: math.unit(1.80, "meters")
  57644. },
  57645. {
  57646. name: "Small",
  57647. height: math.unit(6, "meters")
  57648. },
  57649. {
  57650. name: "Medium",
  57651. height: math.unit(15, "meters")
  57652. },
  57653. {
  57654. name: "Normal",
  57655. height: math.unit(30, "meters"),
  57656. default: true
  57657. },
  57658. {
  57659. name: "Above Normal",
  57660. height: math.unit(60, "meters")
  57661. },
  57662. {
  57663. name: "Big",
  57664. height: math.unit(220, "meters")
  57665. },
  57666. {
  57667. name: "Giant",
  57668. height: math.unit(2.2, "km")
  57669. },
  57670. {
  57671. name: "Macro",
  57672. height: math.unit(25, "km")
  57673. },
  57674. {
  57675. name: "Mega Macro",
  57676. height: math.unit(350, "km")
  57677. },
  57678. {
  57679. name: "Mega Macro+",
  57680. height: math.unit(5000, "km")
  57681. },
  57682. {
  57683. name: "Goddess",
  57684. height: math.unit(3, "multiverses")
  57685. },
  57686. ]
  57687. ))
  57688. characterMakers.push(() => makeCharacter(
  57689. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  57690. {
  57691. frontSfw: {
  57692. height: math.unit(5 + 11/12, "feet"),
  57693. weight: math.unit(210, "lb"),
  57694. name: "Front",
  57695. image: {
  57696. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  57697. extra: 1928/1821,
  57698. bottom: 45/1973
  57699. }
  57700. },
  57701. backSfw: {
  57702. height: math.unit(5 + 11/12, "feet"),
  57703. weight: math.unit(210, "lb"),
  57704. name: "Back",
  57705. image: {
  57706. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  57707. extra: 1920/1813,
  57708. bottom: 34/1954
  57709. }
  57710. },
  57711. frontNsfw: {
  57712. height: math.unit(5 + 11/12, "feet"),
  57713. weight: math.unit(210, "lb"),
  57714. name: "Front (NSFW)",
  57715. image: {
  57716. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  57717. extra: 1928/1821,
  57718. bottom: 45/1973
  57719. }
  57720. },
  57721. backNsfw: {
  57722. height: math.unit(5 + 11/12, "feet"),
  57723. weight: math.unit(210, "lb"),
  57724. name: "Back (NSFW)",
  57725. image: {
  57726. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  57727. extra: 1920/1813,
  57728. bottom: 34/1954
  57729. }
  57730. },
  57731. },
  57732. [
  57733. {
  57734. name: "Normal",
  57735. height: math.unit(5 + 11/12, "feet"),
  57736. default: true
  57737. },
  57738. {
  57739. name: "Goddess",
  57740. height: math.unit(20 + 3/12, "feet")
  57741. },
  57742. {
  57743. name: "Breaker of Man",
  57744. height: math.unit(329 + 9/12, "feet")
  57745. },
  57746. {
  57747. name: "Solar Justice",
  57748. height: math.unit(0.6, "solarradii")
  57749. },
  57750. {
  57751. name: "She Who Judges",
  57752. height: math.unit(1, "universe")
  57753. },
  57754. ]
  57755. ))
  57756. characterMakers.push(() => makeCharacter(
  57757. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  57758. {
  57759. casual_front: {
  57760. height: math.unit(6 + 1/12, "feet"),
  57761. weight: math.unit(190, "lb"),
  57762. preyCapacity: math.unit(1, "people"),
  57763. name: "Front",
  57764. image: {
  57765. source: "./media/characters/managarmr/casual-front.svg",
  57766. extra: 411/381,
  57767. bottom: 15/426
  57768. },
  57769. extraAttributes: {
  57770. "pawSize": {
  57771. name: "Paw Size",
  57772. power: 1,
  57773. type: "length",
  57774. base: math.unit(0.2, "meters")
  57775. },
  57776. },
  57777. form: "casual",
  57778. },
  57779. casual_back: {
  57780. height: math.unit(6 + 1/12, "feet"),
  57781. weight: math.unit(190, "lb"),
  57782. preyCapacity: math.unit(1, "people"),
  57783. name: "Back",
  57784. image: {
  57785. source: "./media/characters/managarmr/casual-back.svg",
  57786. extra: 413/383,
  57787. bottom: 13/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. base_front: {
  57800. height: math.unit(7, "feet"),
  57801. weight: math.unit(210, "lb"),
  57802. preyCapacity: math.unit(2, "people"),
  57803. name: "Front",
  57804. image: {
  57805. source: "./media/characters/managarmr/base-front.svg",
  57806. extra: 580/485,
  57807. bottom: 32/612
  57808. },
  57809. extraAttributes: {
  57810. "wingspan": {
  57811. name: "Wingspan",
  57812. power: 1,
  57813. type: "length",
  57814. base: math.unit(4, "meters")
  57815. },
  57816. "pawSize": {
  57817. name: "Paw Size",
  57818. power: 1,
  57819. type: "length",
  57820. base: math.unit(0.2, "meters")
  57821. },
  57822. },
  57823. form: "base",
  57824. },
  57825. "true-divine_front": {
  57826. height: math.unit(40, "feet"),
  57827. weight: math.unit(39000, "lb"),
  57828. preyCapacity: math.unit(375, "people"),
  57829. name: "Front",
  57830. image: {
  57831. source: "./media/characters/managarmr/true-divine-front.svg",
  57832. extra: 725/573,
  57833. bottom: 120/845
  57834. },
  57835. extraAttributes: {
  57836. "wingspan": {
  57837. name: "Wingspan",
  57838. power: 1,
  57839. type: "length",
  57840. base: math.unit(20, "meters")
  57841. },
  57842. "pawSize": {
  57843. name: "Paw Size",
  57844. power: 1,
  57845. type: "length",
  57846. base: math.unit(1.5, "meters")
  57847. },
  57848. },
  57849. form: "true-divine",
  57850. },
  57851. },
  57852. [
  57853. {
  57854. name: "Normal",
  57855. height: math.unit(6 + 1/12, "feet"),
  57856. form: "casual",
  57857. default: true
  57858. },
  57859. {
  57860. name: "Normal",
  57861. height: math.unit(7, "feet"),
  57862. form: "base",
  57863. default: true
  57864. },
  57865. ],
  57866. {
  57867. "casual": {
  57868. name: "Casual",
  57869. default: true
  57870. },
  57871. "base": {
  57872. name: "Base",
  57873. },
  57874. "true-divine": {
  57875. name: "True Divine",
  57876. },
  57877. }
  57878. ))
  57879. characterMakers.push(() => makeCharacter(
  57880. { name: "Mystra", species: ["sergal"], tags: ["anthro"] },
  57881. {
  57882. front: {
  57883. height: math.unit(1.8, "meters"),
  57884. weight: math.unit(110, "kg"),
  57885. name: "Front",
  57886. image: {
  57887. source: "./media/characters/mystra/front.svg",
  57888. extra: 529/442,
  57889. bottom: 31/560
  57890. }
  57891. },
  57892. frontLewd: {
  57893. height: math.unit(1.8, "meters"),
  57894. weight: math.unit(110, "kg"),
  57895. name: "Front (Lewd)",
  57896. image: {
  57897. source: "./media/characters/mystra/front-lewd.svg",
  57898. extra: 529/442,
  57899. bottom: 31/560
  57900. }
  57901. },
  57902. head: {
  57903. height: math.unit(1.63, "feet"),
  57904. name: "Head",
  57905. image: {
  57906. source: "./media/characters/mystra/head.svg"
  57907. }
  57908. },
  57909. paw: {
  57910. height: math.unit(1.9, "feet"),
  57911. name: "Paw",
  57912. image: {
  57913. source: "./media/characters/mystra/paw.svg"
  57914. }
  57915. },
  57916. },
  57917. [
  57918. {
  57919. name: "Incognito",
  57920. height: math.unit(2.3, "meters")
  57921. },
  57922. {
  57923. name: "Small Macro",
  57924. height: math.unit(300, "meters")
  57925. },
  57926. {
  57927. name: "Small Mega",
  57928. height: math.unit(2, "km")
  57929. },
  57930. {
  57931. name: "Mega",
  57932. height: math.unit(30, "km")
  57933. },
  57934. {
  57935. name: "Small Giga",
  57936. height: math.unit(100, "km")
  57937. },
  57938. {
  57939. name: "Giga",
  57940. height: math.unit(1000, "km"),
  57941. default: true
  57942. },
  57943. {
  57944. name: "Continental",
  57945. height: math.unit(5000, "km")
  57946. },
  57947. {
  57948. name: "Terra",
  57949. height: math.unit(20000, "km")
  57950. },
  57951. {
  57952. name: "Solar",
  57953. height: math.unit(2e6, "km")
  57954. },
  57955. {
  57956. name: "Galactic",
  57957. height: math.unit(528502, "lightyears")
  57958. },
  57959. {
  57960. name: "Universal",
  57961. height: math.unit(20, "universes")
  57962. },
  57963. ]
  57964. ))
  57965. characterMakers.push(() => makeCharacter(
  57966. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera"], tags: ["anthro"] },
  57967. {
  57968. front: {
  57969. height: math.unit(2, "meters"),
  57970. weight: math.unit(140, "kg"),
  57971. name: "Front",
  57972. image: {
  57973. source: "./media/characters/caleb/front.svg",
  57974. extra: 873/817,
  57975. bottom: 47/920
  57976. }
  57977. },
  57978. back: {
  57979. height: math.unit(2, "meters"),
  57980. weight: math.unit(140, "kg"),
  57981. name: "Back",
  57982. image: {
  57983. source: "./media/characters/caleb/back.svg",
  57984. extra: 877/828,
  57985. bottom: 24/901
  57986. }
  57987. },
  57988. snakeTail: {
  57989. height: math.unit(1.44, "feet"),
  57990. name: "Snake Tail",
  57991. image: {
  57992. source: "./media/characters/caleb/snake-tail.svg"
  57993. }
  57994. },
  57995. dick: {
  57996. height: math.unit(2.6, "feet"),
  57997. name: "Dick",
  57998. image: {
  57999. source: "./media/characters/caleb/dick.svg"
  58000. }
  58001. },
  58002. },
  58003. [
  58004. {
  58005. name: "Incognito",
  58006. height: math.unit(3, "meters")
  58007. },
  58008. {
  58009. name: "Home Size",
  58010. height: math.unit(200, "meters"),
  58011. default: true
  58012. },
  58013. {
  58014. name: "Macro",
  58015. height: math.unit(500, "meters")
  58016. },
  58017. {
  58018. name: "Big Macro",
  58019. height: math.unit(5, "km")
  58020. },
  58021. {
  58022. name: "Giga",
  58023. height: math.unit(250, "km")
  58024. },
  58025. {
  58026. name: "Giga+",
  58027. height: math.unit(5000, "km")
  58028. },
  58029. {
  58030. name: "Small Terra",
  58031. height: math.unit(35e3, "km")
  58032. },
  58033. {
  58034. name: "Terra",
  58035. height: math.unit(2e6, "km")
  58036. },
  58037. {
  58038. name: "Terra+",
  58039. height: math.unit(1.5e6, "km")
  58040. },
  58041. ]
  58042. ))
  58043. characterMakers.push(() => makeCharacter(
  58044. { name: "Gilirian", species: ["giraffe", "zebra"], tags: ["anthro"] },
  58045. {
  58046. front: {
  58047. height: math.unit(2, "meters"),
  58048. weight: math.unit(120, "kg"),
  58049. name: "Front",
  58050. image: {
  58051. source: "./media/characters/gilirian/front.svg",
  58052. extra: 805/737,
  58053. bottom: 13/818
  58054. }
  58055. },
  58056. side: {
  58057. height: math.unit(2, "meters"),
  58058. weight: math.unit(120, "kg"),
  58059. name: "Side",
  58060. image: {
  58061. source: "./media/characters/gilirian/side.svg",
  58062. extra: 810/746,
  58063. bottom: 6/816
  58064. }
  58065. },
  58066. back: {
  58067. height: math.unit(2, "meters"),
  58068. weight: math.unit(120, "kg"),
  58069. name: "Back",
  58070. image: {
  58071. source: "./media/characters/gilirian/back.svg",
  58072. extra: 815/745,
  58073. bottom: 15/830
  58074. }
  58075. },
  58076. frontNsfw: {
  58077. height: math.unit(2, "meters"),
  58078. weight: math.unit(120, "kg"),
  58079. name: "Front (NSFW)",
  58080. image: {
  58081. source: "./media/characters/gilirian/front-nsfw.svg",
  58082. extra: 805/737,
  58083. bottom: 13/818
  58084. }
  58085. },
  58086. sideNsfw: {
  58087. height: math.unit(2, "meters"),
  58088. weight: math.unit(120, "kg"),
  58089. name: "Side (NSFW)",
  58090. image: {
  58091. source: "./media/characters/gilirian/side-nsfw.svg",
  58092. extra: 810/746,
  58093. bottom: 6/816
  58094. }
  58095. },
  58096. },
  58097. [
  58098. {
  58099. name: "Incognito",
  58100. height: math.unit(2, "meters"),
  58101. default: true
  58102. },
  58103. {
  58104. name: "Macro",
  58105. height: math.unit(250, "meters")
  58106. },
  58107. {
  58108. name: "Big Macro",
  58109. height: math.unit(1500, "meters")
  58110. },
  58111. {
  58112. name: "Mega",
  58113. height: math.unit(40, "km")
  58114. },
  58115. {
  58116. name: "Giga",
  58117. height: math.unit(300, "km")
  58118. },
  58119. {
  58120. name: "Extra Giga",
  58121. height: math.unit(5000, "km")
  58122. },
  58123. {
  58124. name: "Small Terra",
  58125. height: math.unit(10e3, "km")
  58126. },
  58127. {
  58128. name: "Terra",
  58129. height: math.unit(3e5, "km")
  58130. },
  58131. {
  58132. name: "Galactic",
  58133. height: math.unit(369950, "lightyears")
  58134. },
  58135. ]
  58136. ))
  58137. characterMakers.push(() => makeCharacter(
  58138. { name: "Tarken", species: ["t-rex", "kaiju"], tags: ["anthro"] },
  58139. {
  58140. front: {
  58141. height: math.unit(2.5, "meters"),
  58142. weight: math.unit(230, "lb"),
  58143. name: "Front",
  58144. image: {
  58145. source: "./media/characters/tarken/front.svg",
  58146. extra: 764/720,
  58147. bottom: 49/813
  58148. }
  58149. },
  58150. back: {
  58151. height: math.unit(2.5, "meters"),
  58152. weight: math.unit(230, "lb"),
  58153. name: "Back",
  58154. image: {
  58155. source: "./media/characters/tarken/back.svg",
  58156. extra: 756/720,
  58157. bottom: 35/791
  58158. }
  58159. },
  58160. frontNsfw: {
  58161. height: math.unit(2.5, "meters"),
  58162. weight: math.unit(230, "lb"),
  58163. name: "Front (NSFW)",
  58164. image: {
  58165. source: "./media/characters/tarken/front-nsfw.svg",
  58166. extra: 764/720,
  58167. bottom: 49/813
  58168. }
  58169. },
  58170. backNsfw: {
  58171. height: math.unit(2.5, "meters"),
  58172. weight: math.unit(230, "lb"),
  58173. name: "Back (NSFW)",
  58174. image: {
  58175. source: "./media/characters/tarken/back-nsfw.svg",
  58176. extra: 756/720,
  58177. bottom: 35/791
  58178. }
  58179. },
  58180. head: {
  58181. height: math.unit(2.22, "feet"),
  58182. name: "Head",
  58183. image: {
  58184. source: "./media/characters/tarken/head.svg"
  58185. }
  58186. },
  58187. tail: {
  58188. height: math.unit(5.25, "feet"),
  58189. name: "Tail",
  58190. image: {
  58191. source: "./media/characters/tarken/tail.svg"
  58192. }
  58193. },
  58194. dick: {
  58195. height: math.unit(1.95, "feet"),
  58196. name: "Dick",
  58197. image: {
  58198. source: "./media/characters/tarken/dick.svg"
  58199. }
  58200. },
  58201. hand: {
  58202. height: math.unit(1.78, "feet"),
  58203. name: "Hand",
  58204. image: {
  58205. source: "./media/characters/tarken/hand.svg"
  58206. }
  58207. },
  58208. beam: {
  58209. height: math.unit(1.5, "feet"),
  58210. name: "Beam",
  58211. image: {
  58212. source: "./media/characters/tarken/beam.svg"
  58213. }
  58214. },
  58215. },
  58216. [
  58217. {
  58218. name: "Original Size",
  58219. height: math.unit(2.5, "meters")
  58220. },
  58221. {
  58222. name: "Macro",
  58223. height: math.unit(150, "meters"),
  58224. default: true
  58225. },
  58226. {
  58227. name: "Macro+",
  58228. height: math.unit(300, "meters")
  58229. },
  58230. {
  58231. name: "Mega",
  58232. height: math.unit(2, "km")
  58233. },
  58234. {
  58235. name: "Mega+",
  58236. height: math.unit(35, "km")
  58237. },
  58238.  {
  58239. name: "Mega++",
  58240. height: math.unit(60, "km")
  58241. },
  58242. {
  58243. name: "Giga",
  58244. height: math.unit(200, "km")
  58245. },
  58246. {
  58247. name: "Giga+",
  58248. height: math.unit(2500, "km")
  58249. },
  58250. {
  58251. name: "Giga++",
  58252. height: math.unit(6600, "km")
  58253. },
  58254. {
  58255. name: "Terra",
  58256. height: math.unit(20000, "km")
  58257. },
  58258. {
  58259. name: "Terra+",
  58260. height: math.unit(300000, "km")
  58261. },
  58262. ]
  58263. ))
  58264. characterMakers.push(() => makeCharacter(
  58265. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58266. {
  58267. magpie_dressed: {
  58268. height: math.unit(1.7, "meters"),
  58269. weight: math.unit(70, "kg"),
  58270. name: "Dressed",
  58271. image: {
  58272. source: "./media/characters/otreus/magpie-dressed.svg",
  58273. extra: 691/672,
  58274. bottom: 116/807
  58275. },
  58276. form: "magpie",
  58277. default: true
  58278. },
  58279. magpie_nude: {
  58280. height: math.unit(1.7, "meters"),
  58281. weight: math.unit(70, "kg"),
  58282. name: "Nude",
  58283. image: {
  58284. source: "./media/characters/otreus/magpie-nude.svg",
  58285. extra: 691/672,
  58286. bottom: 116/807
  58287. },
  58288. form: "magpie",
  58289. },
  58290. magpie_dressedLewd: {
  58291. height: math.unit(1.7, "meters"),
  58292. weight: math.unit(70, "kg"),
  58293. name: "Dressed (Lewd)",
  58294. image: {
  58295. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58296. extra: 691/672,
  58297. bottom: 116/807
  58298. },
  58299. form: "magpie",
  58300. },
  58301. magpie_nudeLewd: {
  58302. height: math.unit(1.7, "meters"),
  58303. weight: math.unit(70, "kg"),
  58304. name: "Nude (Lewd)",
  58305. image: {
  58306. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58307. extra: 691/672,
  58308. bottom: 116/807
  58309. },
  58310. form: "magpie",
  58311. },
  58312. magpie_leftFoot: {
  58313. height: math.unit(1.58, "feet"),
  58314. name: "Left Foot",
  58315. image: {
  58316. source: "./media/characters/otreus/magpie-left-foot.svg"
  58317. },
  58318. form: "magpie",
  58319. },
  58320. magpie_rightFoot: {
  58321. height: math.unit(1.58, "feet"),
  58322. name: "Right Foot",
  58323. image: {
  58324. source: "./media/characters/otreus/magpie-right-foot.svg"
  58325. },
  58326. form: "magpie",
  58327. },
  58328. magpie_wingspan: {
  58329. height: math.unit(2, "meters"),
  58330. weight: math.unit(70, "kg"),
  58331. name: "Wingspan",
  58332. image: {
  58333. source: "./media/characters/otreus/magpie-wingspan.svg"
  58334. },
  58335. extraAttributes: {
  58336. "wingspan": {
  58337. name: "Wingspan",
  58338. power: 1,
  58339. type: "length",
  58340. base: math.unit(3.35, "meters")
  58341. },
  58342. },
  58343. form: "magpie",
  58344. },
  58345. hippogriff_dressed: {
  58346. height: math.unit(1.7, "meters"),
  58347. weight: math.unit(70, "kg"),
  58348. name: "Dressed",
  58349. image: {
  58350. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58351. extra: 710/689,
  58352. bottom: 67/777
  58353. },
  58354. form: "hippogriff",
  58355. default: true
  58356. },
  58357. hippogriff_nude: {
  58358. height: math.unit(1.7, "meters"),
  58359. weight: math.unit(70, "kg"),
  58360. name: "Nude",
  58361. image: {
  58362. source: "./media/characters/otreus/hippogriff-nude.svg",
  58363. extra: 710/689,
  58364. bottom: 67/777
  58365. },
  58366. form: "hippogriff",
  58367. },
  58368. hippogriff_dressedLewd: {
  58369. height: math.unit(1.7, "meters"),
  58370. weight: math.unit(70, "kg"),
  58371. name: "Dressed (Lewd)",
  58372. image: {
  58373. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58374. extra: 710/689,
  58375. bottom: 67/777
  58376. },
  58377. form: "hippogriff",
  58378. },
  58379. hippogriff_nudeLewd: {
  58380. height: math.unit(1.7, "meters"),
  58381. weight: math.unit(70, "kg"),
  58382. name: "Nude (Lewd)",
  58383. image: {
  58384. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58385. extra: 710/689,
  58386. bottom: 67/777
  58387. },
  58388. form: "hippogriff",
  58389. },
  58390. },
  58391. [
  58392. {
  58393. name: "Original Size",
  58394. height: math.unit(1.7, "meters"),
  58395. allForms: true
  58396. },
  58397. {
  58398. name: "Incognito Size",
  58399. height: math.unit(2, "meters"),
  58400. allForms: true
  58401. },
  58402. {
  58403. name: "Mega",
  58404. height: math.unit(2, "km"),
  58405. allForms: true
  58406. },
  58407. {
  58408. name: "Mega+",
  58409. height: math.unit(40, "km"),
  58410. allForms: true
  58411. },
  58412. {
  58413. name: "Giga",
  58414. height: math.unit(250, "km"),
  58415. allForms: true
  58416. },
  58417. {
  58418. name: "Giga+",
  58419. height: math.unit(3000, "km"),
  58420. allForms: true
  58421. },
  58422. {
  58423. name: "Terra",
  58424. height: math.unit(20000, "km"),
  58425. allForms: true
  58426. },
  58427. {
  58428. name: "Solar (Home Size)",
  58429. height: math.unit(3e6, "km"),
  58430. allForms: true,
  58431. default: true
  58432. },
  58433. ],
  58434. {
  58435. "magpie": {
  58436. name: "Magpie",
  58437. default: true
  58438. },
  58439. "hippogriff": {
  58440. name: "Hippogriff",
  58441. },
  58442. }
  58443. ))
  58444. characterMakers.push(() => makeCharacter(
  58445. { name: "Thalia", species: ["flying-fox", "fox"], tags: ["anthro"] },
  58446. {
  58447. frontDressed: {
  58448. height: math.unit(1.8, "meters"),
  58449. weight: math.unit(90, "kg"),
  58450. name: "Front (Dressed)",
  58451. image: {
  58452. source: "./media/characters/thalia/front-dressed.svg",
  58453. extra: 478/402,
  58454. bottom: 55/533
  58455. }
  58456. },
  58457. backDressed: {
  58458. height: math.unit(1.8, "meters"),
  58459. weight: math.unit(90, "kg"),
  58460. name: "Back (Dressed)",
  58461. image: {
  58462. source: "./media/characters/thalia/back-dressed.svg",
  58463. extra: 500/424,
  58464. bottom: 15/515
  58465. }
  58466. },
  58467. frontNude: {
  58468. height: math.unit(1.8, "meters"),
  58469. weight: math.unit(90, "kg"),
  58470. name: "Front (Nude)",
  58471. image: {
  58472. source: "./media/characters/thalia/front-nude.svg",
  58473. extra: 478/402,
  58474. bottom: 55/533
  58475. }
  58476. },
  58477. backNude: {
  58478. height: math.unit(1.8, "meters"),
  58479. weight: math.unit(90, "kg"),
  58480. name: "Back (Nude)",
  58481. image: {
  58482. source: "./media/characters/thalia/back-nude.svg",
  58483. extra: 500/424,
  58484. bottom: 15/515
  58485. }
  58486. },
  58487. },
  58488. [
  58489. {
  58490. name: "Incognito",
  58491. height: math.unit(3, "meters")
  58492. },
  58493. {
  58494. name: "Macro",
  58495. height: math.unit(500, "meters")
  58496. },
  58497. {
  58498. name: "Mega",
  58499. height: math.unit(5, "km")
  58500. },
  58501. {
  58502. name: "Mega+",
  58503. height: math.unit(30, "km")
  58504. },
  58505. {
  58506. name: "Giga",
  58507. height: math.unit(350, "km")
  58508. },
  58509. {
  58510. name: "Giga+",
  58511. height: math.unit(4000, "km")
  58512. },
  58513. {
  58514. name: "Terra",
  58515. height: math.unit(35000, "km")
  58516. },
  58517. {
  58518. name: "Original Size",
  58519. height: math.unit(130000, "km")
  58520. },
  58521. {
  58522. name: "Solar (Home Size)",
  58523. height: math.unit(4e6, "km"),
  58524. default: true
  58525. },
  58526. ]
  58527. ))
  58528. characterMakers.push(() => makeCharacter(
  58529. { name: "Shango", species: ["african-wild-dog"], tags: ["anthro"] },
  58530. {
  58531. front: {
  58532. height: math.unit(1.8, "meters"),
  58533. weight: math.unit(95, "kg"),
  58534. name: "Front",
  58535. image: {
  58536. source: "./media/characters/shango/front.svg",
  58537. extra: 1925/1774,
  58538. bottom: 67/1992
  58539. }
  58540. },
  58541. back: {
  58542. height: math.unit(1.8, "meters"),
  58543. weight: math.unit(95, "kg"),
  58544. name: "Back",
  58545. image: {
  58546. source: "./media/characters/shango/back.svg",
  58547. extra: 1915/1766,
  58548. bottom: 52/1967
  58549. }
  58550. },
  58551. frontLewd: {
  58552. height: math.unit(1.8, "meters"),
  58553. weight: math.unit(95, "kg"),
  58554. name: "Front (Lewd)",
  58555. image: {
  58556. source: "./media/characters/shango/front-lewd.svg",
  58557. extra: 1925/1774,
  58558. bottom: 67/1992
  58559. }
  58560. },
  58561. backLewd: {
  58562. height: math.unit(1.8, "meters"),
  58563. weight: math.unit(95, "kg"),
  58564. name: "Back (Lewd)",
  58565. image: {
  58566. source: "./media/characters/shango/back-lewd.svg",
  58567. extra: 1915/1766,
  58568. bottom: 52/1967
  58569. }
  58570. },
  58571. maw: {
  58572. height: math.unit(1.64, "feet"),
  58573. name: "Maw",
  58574. image: {
  58575. source: "./media/characters/shango/maw.svg"
  58576. }
  58577. },
  58578. dick: {
  58579. height: math.unit(2.14, "feet"),
  58580. name: "Dick",
  58581. image: {
  58582. source: "./media/characters/shango/dick.svg"
  58583. }
  58584. },
  58585. },
  58586. [
  58587. {
  58588. name: "Incognito",
  58589. height: math.unit(1.8, "meters")
  58590. },
  58591. {
  58592. name: "Home Size",
  58593. height: math.unit(60, "meters"),
  58594. default: true
  58595. },
  58596. {
  58597. name: "Macro",
  58598. height: math.unit(450, "meters")
  58599. },
  58600. {
  58601. name: "Mega",
  58602. height: math.unit(6, "km")
  58603. },
  58604. {
  58605. name: "Mega+",
  58606. height: math.unit(35, "km")
  58607. },
  58608. {
  58609. name: "Giga",
  58610. height: math.unit(500, "km")
  58611. },
  58612. {
  58613. name: "Giga+",
  58614. height: math.unit(5000, "km")
  58615. },
  58616. {
  58617. name: "Terra",
  58618. height: math.unit(60000, "km")
  58619. },
  58620. {
  58621. name: "Terra+",
  58622. height: math.unit(400000, "km")
  58623. },
  58624. ]
  58625. ))
  58626. //characters
  58627. function makeCharacters() {
  58628. const results = [];
  58629. characterMakers.forEach(character => {
  58630. results.push(character());
  58631. });
  58632. return results;
  58633. }