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

57537 строки
1.4 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: ["lizard"]
  700. },
  701. "lynx": {
  702. name: "Lynx",
  703. parents: ["cat"]
  704. },
  705. "unknown": {
  706. name: "Unknown",
  707. parents: []
  708. },
  709. "thylacine": {
  710. name: "Thylacine",
  711. parents: ["mammal"]
  712. },
  713. "gabumon": {
  714. name: "Gabumon",
  715. parents: ["digimon"]
  716. },
  717. "border-collie": {
  718. name: "Border Collie",
  719. parents: ["dog"]
  720. },
  721. "imp": {
  722. name: "Imp",
  723. parents: ["demon"]
  724. },
  725. "kangaroo": {
  726. name: "Kangaroo",
  727. parents: ["marsupial"]
  728. },
  729. "renamon": {
  730. name: "Renamon",
  731. parents: ["digimon", "fox"]
  732. },
  733. "candy-orca-dragon": {
  734. name: "Candy Orca Dragon",
  735. parents: ["fish", "dragon", "candy"]
  736. },
  737. "sabertooth-tiger": {
  738. name: "Sabertooth Tiger",
  739. parents: ["cat"]
  740. },
  741. "espurr": {
  742. name: "Espurr",
  743. parents: ["pokemon", "cat"]
  744. },
  745. "otter": {
  746. name: "Otter",
  747. parents: ["mustelid"]
  748. },
  749. "elemental": {
  750. name: "Elemental",
  751. parents: ["mammal"]
  752. },
  753. "mew": {
  754. name: "Mew",
  755. parents: ["pokemon"]
  756. },
  757. "goodra": {
  758. name: "Goodra",
  759. parents: ["pokemon"]
  760. },
  761. "fairy": {
  762. name: "Fairy",
  763. parents: ["magical"]
  764. },
  765. "typhlosion": {
  766. name: "Typhlosion",
  767. parents: ["pokemon"]
  768. },
  769. "magical": {
  770. name: "Magical",
  771. parents: []
  772. },
  773. "xenomorph": {
  774. name: "Xenomorph",
  775. parents: ["monster", "alien"]
  776. },
  777. "charr": {
  778. name: "Charr",
  779. parents: ["cat"]
  780. },
  781. "siberian-husky": {
  782. name: "Siberian Husky",
  783. parents: ["husky"]
  784. },
  785. "alligator": {
  786. name: "Alligator",
  787. parents: ["reptile"]
  788. },
  789. "bernese-mountain-dog": {
  790. name: "Bernese Mountain Dog",
  791. parents: ["dog"]
  792. },
  793. "reshiram": {
  794. name: "Reshiram",
  795. parents: ["pokemon", "dragon"]
  796. },
  797. "grizzly-bear": {
  798. name: "Grizzly Bear",
  799. parents: ["bear"]
  800. },
  801. "water-monitor": {
  802. name: "Water Monitor",
  803. parents: ["lizard"]
  804. },
  805. "banchofossa": {
  806. name: "Banchofossa",
  807. parents: ["mammal"]
  808. },
  809. "kirin": {
  810. name: "Kirin",
  811. parents: ["monster"]
  812. },
  813. "quilava": {
  814. name: "Quilava",
  815. parents: ["pokemon"]
  816. },
  817. "seviper": {
  818. name: "Seviper",
  819. parents: ["pokemon", "viper"]
  820. },
  821. "flying-fox": {
  822. name: "Flying Fox",
  823. parents: ["bat"]
  824. },
  825. "keynain": {
  826. name: "Keynain",
  827. parents: ["avian"]
  828. },
  829. "lucario": {
  830. name: "Lucario",
  831. parents: ["pokemon", "jackal"]
  832. },
  833. "siamese-cat": {
  834. name: "Siamese Cat",
  835. parents: ["cat"]
  836. },
  837. "spider": {
  838. name: "Spider",
  839. parents: ["insect"]
  840. },
  841. "samurott": {
  842. name: "Samurott",
  843. parents: ["pokemon", "otter"]
  844. },
  845. "megalodon": {
  846. name: "Megalodon",
  847. parents: ["shark"]
  848. },
  849. "unicorn": {
  850. name: "Unicorn",
  851. parents: ["horse"]
  852. },
  853. "greninja": {
  854. name: "Greninja",
  855. parents: ["pokemon", "frog"]
  856. },
  857. "water-dragon": {
  858. name: "Water Dragon",
  859. parents: ["dragon"]
  860. },
  861. "cross-fox": {
  862. name: "Cross Fox",
  863. parents: ["fox"]
  864. },
  865. "synth": {
  866. name: "Synth",
  867. parents: ["machine"]
  868. },
  869. "construct": {
  870. name: "Construct",
  871. parents: []
  872. },
  873. "mexican-wolf": {
  874. name: "Mexican Wolf",
  875. parents: ["wolf"]
  876. },
  877. "leopard": {
  878. name: "Leopard",
  879. parents: ["cat"]
  880. },
  881. "pig": {
  882. name: "Pig",
  883. parents: ["mammal"]
  884. },
  885. "ampharos": {
  886. name: "Ampharos",
  887. parents: ["pokemon", "sheep"]
  888. },
  889. "orca": {
  890. name: "Orca",
  891. parents: ["fish"]
  892. },
  893. "lycanroc": {
  894. name: "Lycanroc",
  895. parents: ["pokemon", "wolf"]
  896. },
  897. "surkanu": {
  898. name: "Surkanu",
  899. parents: ["monster"]
  900. },
  901. "seal": {
  902. name: "Seal",
  903. parents: ["mammal"]
  904. },
  905. "keldeo": {
  906. name: "Keldeo",
  907. parents: ["pokemon"]
  908. },
  909. "great-dane": {
  910. name: "Great Dane",
  911. parents: ["dog"]
  912. },
  913. "black-backed-jackal": {
  914. name: "Black Backed Jackal",
  915. parents: ["jackal"]
  916. },
  917. "sheep": {
  918. name: "Sheep",
  919. parents: ["mammal"]
  920. },
  921. "leopard-seal": {
  922. name: "Leopard Seal",
  923. parents: ["seal"]
  924. },
  925. "zoroark": {
  926. name: "Zoroark",
  927. parents: ["pokemon", "fox"]
  928. },
  929. "maned-wolf": {
  930. name: "Maned Wolf",
  931. parents: ["canine"]
  932. },
  933. "dracha": {
  934. name: "Dracha",
  935. parents: ["dragon"]
  936. },
  937. "wolxi": {
  938. name: "Wolxi",
  939. parents: ["mammal", "alien"]
  940. },
  941. "dratini": {
  942. name: "Dratini",
  943. parents: ["pokemon", "dragon"]
  944. },
  945. "skaven": {
  946. name: "Skaven",
  947. parents: ["rat"]
  948. },
  949. "mongoose": {
  950. name: "Mongoose",
  951. parents: ["mammal"]
  952. },
  953. "lopunny": {
  954. name: "Lopunny",
  955. parents: ["pokemon", "rabbit"]
  956. },
  957. "feraligatr": {
  958. name: "Feraligatr",
  959. parents: ["pokemon", "alligator"]
  960. },
  961. "houndoom": {
  962. name: "Houndoom",
  963. parents: ["pokemon", "dog"]
  964. },
  965. "protogen": {
  966. name: "Protogen",
  967. parents: ["machine"]
  968. },
  969. "saint-bernard": {
  970. name: "Saint Bernard",
  971. parents: ["dog"]
  972. },
  973. "crow": {
  974. name: "Crow",
  975. parents: ["corvid"]
  976. },
  977. "delphox": {
  978. name: "Delphox",
  979. parents: ["pokemon", "fox"]
  980. },
  981. "moose": {
  982. name: "Moose",
  983. parents: ["mammal"]
  984. },
  985. "joraxian": {
  986. name: "Joraxian",
  987. parents: ["monster", "canine", "demon"]
  988. },
  989. "nimbat": {
  990. name: "Nimbat",
  991. parents: ["mammal"]
  992. },
  993. "aardwolf": {
  994. name: "Aardwolf",
  995. parents: ["canine"]
  996. },
  997. "fluudrani": {
  998. name: "Fluudrani",
  999. parents: ["animal"]
  1000. },
  1001. "arcanine": {
  1002. name: "Arcanine",
  1003. parents: ["pokemon", "dog"]
  1004. },
  1005. "inteleon": {
  1006. name: "Inteleon",
  1007. parents: ["pokemon", "fish"]
  1008. },
  1009. "ninetales": {
  1010. name: "Ninetales",
  1011. parents: ["pokemon", "kitsune"]
  1012. },
  1013. "tigrex": {
  1014. name: "Tigrex",
  1015. parents: ["tiger"]
  1016. },
  1017. "zorua": {
  1018. name: "Zorua",
  1019. parents: ["pokemon", "fox"]
  1020. },
  1021. "vulpix": {
  1022. name: "Vulpix",
  1023. parents: ["pokemon", "fox"]
  1024. },
  1025. "barghest": {
  1026. name: "Barghest",
  1027. parents: ["monster"]
  1028. },
  1029. "gray-wolf": {
  1030. name: "Gray Wolf",
  1031. parents: ["wolf"]
  1032. },
  1033. "ruppells-fox": {
  1034. name: "Rüppell's Fox",
  1035. parents: ["fox"]
  1036. },
  1037. "bull-terrier": {
  1038. name: "Bull Terrier",
  1039. parents: ["dog"]
  1040. },
  1041. "european-honey-buzzard": {
  1042. name: "European Honey Buzzard",
  1043. parents: ["avian"]
  1044. },
  1045. "t-rex": {
  1046. name: "Tyrannosaurus Rex",
  1047. parents: ["dinosaur"]
  1048. },
  1049. "mactarian": {
  1050. name: "Mactarian",
  1051. parents: ["shark", "monster"]
  1052. },
  1053. "mewtwo-y": {
  1054. name: "Mewtwo Y",
  1055. parents: ["mewtwo"]
  1056. },
  1057. "mewtwo": {
  1058. name: "Mewtwo",
  1059. parents: ["pokemon"]
  1060. },
  1061. "eevee": {
  1062. name: "Eevee",
  1063. parents: ["eeveelution"]
  1064. },
  1065. "mienshao": {
  1066. name: "Mienshao",
  1067. parents: ["pokemon"]
  1068. },
  1069. "sugar-glider": {
  1070. name: "Sugar Glider",
  1071. parents: ["opossum"]
  1072. },
  1073. "spectral-bat": {
  1074. name: "Spectral Bat",
  1075. parents: ["bat"]
  1076. },
  1077. "scolipede": {
  1078. name: "Scolipede",
  1079. parents: ["pokemon", "insect"]
  1080. },
  1081. "jackalope": {
  1082. name: "Jackalope",
  1083. parents: ["rabbit", "antelope"]
  1084. },
  1085. "caracal": {
  1086. name: "Caracal",
  1087. parents: ["cat"]
  1088. },
  1089. "stoat": {
  1090. name: "Stoat",
  1091. parents: ["mammal"]
  1092. },
  1093. "african-golden-cat": {
  1094. name: "African Golden Cat",
  1095. parents: ["cat"]
  1096. },
  1097. "gigantosaurus": {
  1098. name: "Gigantosaurus",
  1099. parents: ["dinosaur"]
  1100. },
  1101. "zorgoia": {
  1102. name: "Zorgoia",
  1103. parents: ["mammal"]
  1104. },
  1105. "monitor-lizard": {
  1106. name: "Monitor Lizard",
  1107. parents: ["lizard"]
  1108. },
  1109. "ziralkia": {
  1110. name: "Ziralkia",
  1111. parents: ["mammal"]
  1112. },
  1113. "kiiasi": {
  1114. name: "Kiiasi",
  1115. parents: ["animal"]
  1116. },
  1117. "synx": {
  1118. name: "Synx",
  1119. parents: ["monster"]
  1120. },
  1121. "panther": {
  1122. name: "Panther",
  1123. parents: ["cat"]
  1124. },
  1125. "azumarill": {
  1126. name: "Azumarill",
  1127. parents: ["pokemon"]
  1128. },
  1129. "river-snaptail": {
  1130. name: "River Snaptail",
  1131. parents: ["otter", "crocodile"]
  1132. },
  1133. "great-blue-heron": {
  1134. name: "Great Blue Heron",
  1135. parents: ["avian"]
  1136. },
  1137. "smeargle": {
  1138. name: "Smeargle",
  1139. parents: ["pokemon"]
  1140. },
  1141. "vendeilen": {
  1142. name: "Vendeilen",
  1143. parents: ["monster"]
  1144. },
  1145. "ventura": {
  1146. name: "Ventura",
  1147. parents: ["canine"]
  1148. },
  1149. "clouded-leopard": {
  1150. name: "Clouded Leopard",
  1151. parents: ["leopard"]
  1152. },
  1153. "argonian": {
  1154. name: "Argonian",
  1155. parents: ["lizard"]
  1156. },
  1157. "salazzle": {
  1158. name: "Salazzle",
  1159. parents: ["pokemon", "lizard"]
  1160. },
  1161. "je-stoff-drachen": {
  1162. name: "Je-Stoff Drachen",
  1163. parents: ["dragon"]
  1164. },
  1165. "finnish-spitz-dog": {
  1166. name: "Finnish Spitz Dog",
  1167. parents: ["dog"]
  1168. },
  1169. "gray-fox": {
  1170. name: "Gray Fox",
  1171. parents: ["fox"]
  1172. },
  1173. "opossum": {
  1174. name: "Opossum",
  1175. parents: ["mammal"]
  1176. },
  1177. "antelope": {
  1178. name: "Antelope",
  1179. parents: ["mammal"]
  1180. },
  1181. "weavile": {
  1182. name: "Weavile",
  1183. parents: ["pokemon"]
  1184. },
  1185. "pikachu": {
  1186. name: "Pikachu",
  1187. parents: ["pokemon", "mouse"]
  1188. },
  1189. "grovyle": {
  1190. name: "Grovyle",
  1191. parents: ["pokemon", "plant"]
  1192. },
  1193. "sthara": {
  1194. name: "Sthara",
  1195. parents: ["snow-leopard", "reptile"]
  1196. },
  1197. "star-warrior": {
  1198. name: "Star Warrior",
  1199. parents: ["magical"]
  1200. },
  1201. "dragonoid": {
  1202. name: "Dragonoid",
  1203. parents: ["dragon"]
  1204. },
  1205. "suicune": {
  1206. name: "Suicune",
  1207. parents: ["pokemon"]
  1208. },
  1209. "vole": {
  1210. name: "Vole",
  1211. parents: ["mammal"]
  1212. },
  1213. "blaziken": {
  1214. name: "Blaziken",
  1215. parents: ["pokemon", "avian"]
  1216. },
  1217. "buizel": {
  1218. name: "Buizel",
  1219. parents: ["pokemon", "fish"]
  1220. },
  1221. "floatzel": {
  1222. name: "Floatzel",
  1223. parents: ["pokemon", "fish"]
  1224. },
  1225. "umok": {
  1226. name: "Umok",
  1227. parents: ["avian"]
  1228. },
  1229. "sea-monster": {
  1230. name: "Sea Monster",
  1231. parents: ["monster", "fish"]
  1232. },
  1233. "egyptian-vulture": {
  1234. name: "Egyptian Vulture",
  1235. parents: ["avian"]
  1236. },
  1237. "doberman": {
  1238. name: "Doberman",
  1239. parents: ["dog"]
  1240. },
  1241. "zangoose": {
  1242. name: "Zangoose",
  1243. parents: ["pokemon", "mongoose"]
  1244. },
  1245. "mongoose": {
  1246. name: "Mongoose",
  1247. parents: ["mammal"]
  1248. },
  1249. "wickerbeast": {
  1250. name: "Wickerbeast",
  1251. parents: ["monster"]
  1252. },
  1253. "zenari": {
  1254. name: "Zenari",
  1255. parents: ["lizard"]
  1256. },
  1257. "plant": {
  1258. name: "Plant",
  1259. parents: []
  1260. },
  1261. "raskatox": {
  1262. name: "Raskatox",
  1263. parents: ["raccoon", "skunk", "cat", "fox"]
  1264. },
  1265. "mikromare": {
  1266. name: "mikromare",
  1267. parents: ["alien"]
  1268. },
  1269. "alien": {
  1270. name: "Alien",
  1271. parents: ["animal"]
  1272. },
  1273. "deity": {
  1274. name: "Deity",
  1275. parents: []
  1276. },
  1277. "skarlan": {
  1278. name: "Skarlan",
  1279. parents: ["slug", "dragon"]
  1280. },
  1281. "slug": {
  1282. name: "Slug",
  1283. parents: ["mollusk"]
  1284. },
  1285. "mollusk": {
  1286. name: "Mollusk",
  1287. parents: ["animal"]
  1288. },
  1289. "chimera": {
  1290. name: "Chimera",
  1291. parents: ["monster"]
  1292. },
  1293. "gestalt": {
  1294. name: "Gestalt",
  1295. parents: ["construct"]
  1296. },
  1297. "mimic": {
  1298. name: "Mimic",
  1299. parents: ["monster"]
  1300. },
  1301. "calico-rat": {
  1302. name: "Calico Rat",
  1303. parents: ["rat"]
  1304. },
  1305. "panda": {
  1306. name: "Panda",
  1307. parents: ["mammal"]
  1308. },
  1309. "oni": {
  1310. name: "Oni",
  1311. parents: ["monster"]
  1312. },
  1313. "pegasus": {
  1314. name: "Pegasus",
  1315. parents: ["horse"]
  1316. },
  1317. "vulpera": {
  1318. name: "Vulpera",
  1319. parents: ["fennec-fox"]
  1320. },
  1321. "ceratosaurus": {
  1322. name: "Ceratosaurus",
  1323. parents: ["dinosaur"]
  1324. },
  1325. "nykur": {
  1326. name: "Nykur",
  1327. parents: ["horse", "monster"]
  1328. },
  1329. "giraffe": {
  1330. name: "Giraffe",
  1331. parents: ["mammal"]
  1332. },
  1333. "tauren": {
  1334. name: "Tauren",
  1335. parents: ["cow"]
  1336. },
  1337. "draconi": {
  1338. name: "Draconi",
  1339. parents: ["alien", "cat", "cyborg"]
  1340. },
  1341. "dire-wolf": {
  1342. name: "Dire Wolf",
  1343. parents: ["wolf"]
  1344. },
  1345. "ferromorph": {
  1346. name: "Ferromorph",
  1347. parents: ["construct"]
  1348. },
  1349. "meowth": {
  1350. name: "Meowth",
  1351. parents: ["cat", "pokemon"]
  1352. },
  1353. "pavodragon": {
  1354. name: "Pavodragon",
  1355. parents: ["dragon"]
  1356. },
  1357. "aaltranae": {
  1358. name: "Aaltranae",
  1359. parents: ["dragon"]
  1360. },
  1361. "cyborg": {
  1362. name: "Cyborg",
  1363. parents: ["machine"]
  1364. },
  1365. "draptor": {
  1366. name: "Draptor",
  1367. parents: ["dragon"]
  1368. },
  1369. "candy": {
  1370. name: "Candy",
  1371. parents: []
  1372. },
  1373. "drenath": {
  1374. name: "Drenath",
  1375. parents: ["dragon", "snake", "rabbit"]
  1376. },
  1377. "coyju": {
  1378. name: "Coyju",
  1379. parents: ["coyote", "kaiju"]
  1380. },
  1381. "kaiju": {
  1382. name: "Kaiju",
  1383. parents: ["monster"]
  1384. },
  1385. "nickit": {
  1386. name: "Nickit",
  1387. parents: ["pokemon", "cat"]
  1388. },
  1389. "lopunny": {
  1390. name: "Lopunny",
  1391. parents: ["pokemon", "rabbit"]
  1392. },
  1393. "korean-jindo-dog": {
  1394. name: "Korean Jindo Dog",
  1395. parents: ["dog"]
  1396. },
  1397. "naga": {
  1398. name: "Naga",
  1399. parents: ["snake", "monster"]
  1400. },
  1401. "undead": {
  1402. name: "Undead",
  1403. parents: ["monster"]
  1404. },
  1405. "whale": {
  1406. name: "Whale",
  1407. parents: ["fish"]
  1408. },
  1409. "gelato-bee": {
  1410. name: "Gelato Bee",
  1411. parents: ["bee"]
  1412. },
  1413. "bee": {
  1414. name: "Bee",
  1415. parents: ["insect"]
  1416. },
  1417. "gardevoir": {
  1418. name: "Gardevoir",
  1419. parents: ["pokemon"]
  1420. },
  1421. "ant": {
  1422. name: "Ant",
  1423. parents: ["insect"]
  1424. },
  1425. "frog": {
  1426. name: "Frog",
  1427. parents: ["amphibian"]
  1428. },
  1429. "amphibian": {
  1430. name: "Amphibian",
  1431. parents: ["animal"]
  1432. },
  1433. "pangolin": {
  1434. name: "Pangolin",
  1435. parents: ["mammal"]
  1436. },
  1437. "uragi'viidorn": {
  1438. name: "Uragi'viidorn",
  1439. parents: ["avian", "bear"]
  1440. },
  1441. "gryphdelphais": {
  1442. name: "Gryphdelphais",
  1443. parents: ["dolphin", "gryphon"]
  1444. },
  1445. "plush": {
  1446. name: "Plush",
  1447. parents: ["construct"]
  1448. },
  1449. "draiger": {
  1450. name: "Draiger",
  1451. parents: ["dragon","tiger"]
  1452. },
  1453. "foxsky": {
  1454. name: "Foxsky",
  1455. parents: ["fox", "husky"]
  1456. },
  1457. "umbreon": {
  1458. name: "Umbreon",
  1459. parents: ["eeveelution"]
  1460. },
  1461. "slime-dragon": {
  1462. name: "Slime Dragon",
  1463. parents: ["dragon", "goo"]
  1464. },
  1465. "enderman": {
  1466. name: "Enderman",
  1467. parents: ["monster"]
  1468. },
  1469. "gremlin": {
  1470. name: "Gremlin",
  1471. parents: ["monster"]
  1472. },
  1473. "dragonsune": {
  1474. name: "Dragonsune",
  1475. parents: ["dragon", "kitsune"]
  1476. },
  1477. "ghost": {
  1478. name: "Ghost",
  1479. parents: ["supernatural"]
  1480. },
  1481. "false-vampire-bat": {
  1482. name: "False Vampire Bat",
  1483. parents: ["bat"]
  1484. },
  1485. "succubus": {
  1486. name: "Succubus",
  1487. parents: ["demon"]
  1488. },
  1489. "mia": {
  1490. name: "Mia",
  1491. parents: ["canine"]
  1492. },
  1493. "rainbow": {
  1494. name: "Rainbow",
  1495. parents: ["monster"]
  1496. },
  1497. "solgaleo": {
  1498. name: "Solgaleo",
  1499. parents: ["pokemon"]
  1500. },
  1501. "lucent-nargacuga": {
  1502. name: "Lucent Nargacuga",
  1503. parents: ["nargacuga"]
  1504. },
  1505. "monster-hunter": {
  1506. name: "Monster Hunter",
  1507. parents: ["monster", "video-games"]
  1508. },
  1509. "leviathan": {
  1510. "name": "Leviathan",
  1511. "url": "sea-monster"
  1512. },
  1513. "bull": {
  1514. name: "Bull",
  1515. parents: ["mammal"]
  1516. },
  1517. "tanuki": {
  1518. name: "Tanuki",
  1519. parents: ["monster"]
  1520. },
  1521. "chakat": {
  1522. name: "Chakat",
  1523. parents: ["cat"]
  1524. },
  1525. "hydra": {
  1526. name: "Hydra",
  1527. parents: ["monster"]
  1528. },
  1529. "zigzagoon": {
  1530. name: "Zigzagoon",
  1531. parents: ["raccoon", "pokemon"]
  1532. },
  1533. "vulture": {
  1534. name: "Vulture",
  1535. parents: ["avian"]
  1536. },
  1537. "eastern-dragon": {
  1538. name: "Eastern Dragon",
  1539. parents: ["dragon"]
  1540. },
  1541. "gryffon": {
  1542. name: "Gryffon",
  1543. parents: ["phoenix", "red-panda"]
  1544. },
  1545. "amtsvane": {
  1546. name: "Amtsvane",
  1547. parents: ["reptile"]
  1548. },
  1549. "kigavi": {
  1550. name: "Kigavi",
  1551. parents: ["avian"]
  1552. },
  1553. "turian": {
  1554. name: "Turian",
  1555. parents: ["avian"]
  1556. },
  1557. "zeraora": {
  1558. name: "Zeraora",
  1559. parents: ["pokemon", "cat"]
  1560. },
  1561. "sandshrew": {
  1562. name: "Sandshrew",
  1563. parents: ["pokemon", "pangolin"]
  1564. },
  1565. "valais-blacknose-sheep": {
  1566. name: "Valais Blacknose Sheep",
  1567. parents: ["sheep"]
  1568. },
  1569. "novaleit": {
  1570. name: "Novaleit",
  1571. parents: ["mammal"]
  1572. },
  1573. "dunnoh": {
  1574. name: "Dunnoh",
  1575. parents: ["mammal"]
  1576. },
  1577. "lunaral-dragon": {
  1578. name: "Lunaral Dragon",
  1579. parents: ["dragon"]
  1580. },
  1581. "arctic-wolf": {
  1582. name: "Arctic Wolf",
  1583. parents: ["wolf"]
  1584. },
  1585. "donkey": {
  1586. name: "Donkey",
  1587. parents: ["horse"]
  1588. },
  1589. "chinchilla": {
  1590. name: "Chinchilla",
  1591. parents: ["rodent"]
  1592. },
  1593. "felkin": {
  1594. name: "Felkin",
  1595. parents: ["dragon"]
  1596. },
  1597. "tykeriel": {
  1598. name: "Tykeriel",
  1599. parents: ["avian"]
  1600. },
  1601. "folf": {
  1602. name: "Folf",
  1603. parents: ["fox", "wolf"]
  1604. },
  1605. "pooltoy": {
  1606. name: "Pooltoy",
  1607. parents: ["construct"]
  1608. },
  1609. "demi": {
  1610. name: "Demi",
  1611. parents: ["human"]
  1612. },
  1613. "stegosaurus": {
  1614. name: "Stegosaurus",
  1615. parents: ["dinosaur"]
  1616. },
  1617. "computer-virus": {
  1618. name: "Computer Virus",
  1619. parents: ["program"]
  1620. },
  1621. "program": {
  1622. name: "Program",
  1623. parents: ["construct"]
  1624. },
  1625. "space-springhare": {
  1626. name: "Space Springhare",
  1627. parents: ["hare"]
  1628. },
  1629. "river-drake": {
  1630. name: "River Drake",
  1631. parents: ["dragon"]
  1632. },
  1633. "djinn": {
  1634. "name": "Djinn",
  1635. "url": "supernatural"
  1636. },
  1637. "supernatural": {
  1638. name: "Supernatural",
  1639. parents: ["monster"]
  1640. },
  1641. "grasshopper-mouse": {
  1642. name: "Grasshopper Mouse",
  1643. parents: ["mouse"]
  1644. },
  1645. "somali-cat": {
  1646. name: "Somali Cat",
  1647. parents: ["cat"]
  1648. },
  1649. "minccino": {
  1650. name: "Minccino",
  1651. parents: ["pokemon", "chinchilla"]
  1652. },
  1653. "pine-marten": {
  1654. name: "Pine Marten",
  1655. parents: ["marten"]
  1656. },
  1657. "marten": {
  1658. name: "Marten",
  1659. parents: ["mustelid"]
  1660. },
  1661. "mustelid": {
  1662. name: "Mustelid",
  1663. parents: ["mammal"]
  1664. },
  1665. "caribou": {
  1666. name: "Caribou",
  1667. parents: ["deer"]
  1668. },
  1669. "gnoll": {
  1670. name: "Gnoll",
  1671. parents: ["hyena", "monster"]
  1672. },
  1673. "peacekeeper": {
  1674. name: "Peacekeeper",
  1675. parents: ["human"]
  1676. },
  1677. "river-otter": {
  1678. name: "River Otter",
  1679. parents: ["otter"]
  1680. },
  1681. "dhole": {
  1682. name: "Dhole",
  1683. parents: ["canine"]
  1684. },
  1685. "springbok": {
  1686. name: "Springbok",
  1687. parents: ["antelope"]
  1688. },
  1689. "marsupial": {
  1690. name: "Marsupial",
  1691. parents: ["mammal"]
  1692. },
  1693. "townsend-big-eared-bat": {
  1694. name: "Townsend Big-eared Bat",
  1695. parents: ["bat"]
  1696. },
  1697. "squirrel": {
  1698. name: "Squirrel",
  1699. parents: ["rodent"]
  1700. },
  1701. "magpie": {
  1702. name: "Magpie",
  1703. parents: ["corvid"]
  1704. },
  1705. "civet": {
  1706. name: "Civet",
  1707. parents: ["feliform"]
  1708. },
  1709. "feliform": {
  1710. name: "Feliform",
  1711. parents: ["mammal"]
  1712. },
  1713. "tiefling": {
  1714. name: "Tiefling",
  1715. parents: ["devil"]
  1716. },
  1717. "devil": {
  1718. name: "Devil",
  1719. parents: ["supernatural"]
  1720. },
  1721. "sika-deer": {
  1722. name: "Sika Deer",
  1723. parents: ["deer"]
  1724. },
  1725. "vaporeon": {
  1726. name: "Vaporeon",
  1727. parents: ["eeveelution"]
  1728. },
  1729. "leafeon": {
  1730. name: "Leafeon",
  1731. parents: ["eeveelution"]
  1732. },
  1733. "jolteon": {
  1734. name: "Jolteon",
  1735. parents: ["eeveelution"]
  1736. },
  1737. "spireborn": {
  1738. name: "Spireborn",
  1739. parents: ["zorgoia"]
  1740. },
  1741. "vampire": {
  1742. name: "Vampire",
  1743. parents: ["monster"]
  1744. },
  1745. "extraplanar": {
  1746. name: "Extraplanar",
  1747. parents: []
  1748. },
  1749. "goo": {
  1750. name: "Goo",
  1751. parents: []
  1752. },
  1753. "skink": {
  1754. name: "Skink",
  1755. parents: ["lizard"]
  1756. },
  1757. "bat-eared-fox": {
  1758. name: "Bat-eared Fox",
  1759. parents: ["fox"]
  1760. },
  1761. "belted-kingfisher": {
  1762. name: "Belted Kingfisher",
  1763. parents: ["avian"]
  1764. },
  1765. "omnifalcon": {
  1766. name: "Omnifalcon",
  1767. parents: ["gryphon", "falcon", "harpy-eagle"]
  1768. },
  1769. "falcon": {
  1770. name: "Falcon",
  1771. parents: ["bird-of-prey"]
  1772. },
  1773. "avali": {
  1774. name: "Avali",
  1775. parents: ["avian", "alien"]
  1776. },
  1777. "arctic-fox": {
  1778. name: "Arctic Fox",
  1779. parents: ["fox"]
  1780. },
  1781. "snow-tiger": {
  1782. name: "Snow Tiger",
  1783. parents: ["tiger"]
  1784. },
  1785. "marble-fox": {
  1786. name: "Marble Fox",
  1787. parents: ["fox"]
  1788. },
  1789. "king-wickerbeast": {
  1790. name: "King Wickerbeast",
  1791. parents: ["wickerbeast"]
  1792. },
  1793. "wickerbeast": {
  1794. name: "Wickerbeast",
  1795. parents: ["mammal"]
  1796. },
  1797. "european-polecat": {
  1798. name: "European Polecat",
  1799. parents: ["mustelid"]
  1800. },
  1801. "teshari": {
  1802. name: "Teshari",
  1803. parents: ["avian", "raptor"]
  1804. },
  1805. "alicorn": {
  1806. name: "Alicorn",
  1807. parents: ["horse"]
  1808. },
  1809. "atlas-moth": {
  1810. name: "Atlas Moth",
  1811. parents: ["moth"]
  1812. },
  1813. "owlbear": {
  1814. name: "Owlbear",
  1815. parents: ["owl", "bear", "monster"]
  1816. },
  1817. "owl": {
  1818. name: "Owl",
  1819. parents: ["avian"]
  1820. },
  1821. "silvertongue": {
  1822. name: "Silvertongue",
  1823. parents: ["reptile"]
  1824. },
  1825. "ahuizotl": {
  1826. name: "Ahuizotl",
  1827. parents: ["monster"]
  1828. },
  1829. "ender-dragon": {
  1830. name: "Ender Dragon",
  1831. parents: ["dragon"]
  1832. },
  1833. "bruhathkayosaurus": {
  1834. name: "Bruhathkayosaurus",
  1835. parents: ["sauropod"]
  1836. },
  1837. "sauropod": {
  1838. name: "Sauropod",
  1839. parents: ["dinosaur"]
  1840. },
  1841. "black-sable-antelope": {
  1842. name: "Black Sable Antelope",
  1843. parents: ["antelope"]
  1844. },
  1845. "slime": {
  1846. name: "Slime",
  1847. parents: ["goo"]
  1848. },
  1849. "utahraptor": {
  1850. name: "Utahraptor",
  1851. parents: ["raptor"]
  1852. },
  1853. "indian-giant-squirrel": {
  1854. name: "Indian Giant Squirrel",
  1855. parents: ["squirrel"]
  1856. },
  1857. "golden-retriever": {
  1858. name: "Golden Retriever",
  1859. parents: ["dog"]
  1860. },
  1861. "triceratops": {
  1862. name: "Triceratops",
  1863. parents: ["dinosaur"]
  1864. },
  1865. "drake": {
  1866. name: "Drake",
  1867. parents: ["dragon"]
  1868. },
  1869. "okapi": {
  1870. name: "Okapi",
  1871. parents: ["giraffe"]
  1872. },
  1873. "arctic-hare": {
  1874. name: "Arctic Hare",
  1875. parents: ["hare"]
  1876. },
  1877. "hare": {
  1878. name: "Hare",
  1879. parents: ["leporidae"]
  1880. },
  1881. "leporidae": {
  1882. name: "Leporidae",
  1883. parents: ["mammal"]
  1884. },
  1885. "leopard-gecko": {
  1886. name: "Leopard Gecko",
  1887. parents: ["gecko"]
  1888. },
  1889. "dreamspawn": {
  1890. name: "Dreamspawn",
  1891. parents: ["illusion"]
  1892. },
  1893. "illusion": {
  1894. name: "Illusion",
  1895. parents: []
  1896. },
  1897. "purrloin": {
  1898. name: "Purrloin",
  1899. parents: ["cat", "pokemon"]
  1900. },
  1901. "noivern": {
  1902. name: "Noivern",
  1903. parents: ["bat", "dragon", "pokemon"]
  1904. },
  1905. "hedgehog": {
  1906. name: "Hedgehog",
  1907. parents: ["mammal"]
  1908. },
  1909. "liger": {
  1910. name: "Liger",
  1911. parents: ["lion", "tiger", "hybrid"]
  1912. },
  1913. "hybrid": {
  1914. name: "Hybrid",
  1915. parents: []
  1916. },
  1917. "drider": {
  1918. name: "Drider",
  1919. parents: ["spider"]
  1920. },
  1921. "sabresune": {
  1922. name: "Sabresune",
  1923. parents: ["kitsune", "sabertooth-tiger"]
  1924. },
  1925. "ditto": {
  1926. name: "Ditto",
  1927. parents: ["pokemon", "goo"]
  1928. },
  1929. "amogus": {
  1930. name: "Amogus",
  1931. parents: ["deity"]
  1932. },
  1933. "ferret": {
  1934. name: "Ferret",
  1935. parents: ["mustelid"]
  1936. },
  1937. "guinea-pig": {
  1938. name: "Guinea Pig",
  1939. parents: ["rodent"]
  1940. },
  1941. "viper": {
  1942. name: "Viper",
  1943. parents: ["snake"]
  1944. },
  1945. "cinderace": {
  1946. name: "Cinderace",
  1947. parents: ["pokemon", "rabbit"]
  1948. },
  1949. "caudin": {
  1950. name: "Caudin",
  1951. parents: ["dragon"]
  1952. },
  1953. "red-winged-blackbird": {
  1954. name: "Red-Winged Blackbird",
  1955. parents: ["avian"]
  1956. },
  1957. "hooded-wheater": {
  1958. name: "Hooded Wheater",
  1959. parents: ["passerine"]
  1960. },
  1961. "passerine": {
  1962. name: "Passerine",
  1963. parents: ["avian"]
  1964. },
  1965. "gieeg": {
  1966. name: "Gieeg",
  1967. parents: ["alien"]
  1968. },
  1969. "ringtail": {
  1970. name: "Ringtail",
  1971. parents: ["raccoon"]
  1972. },
  1973. "hisuian-zoroark": {
  1974. name: "Hisuian Zoroark",
  1975. parents: ["zoroark", "hisuian"]
  1976. },
  1977. "hisuian": {
  1978. name: "Hisuian",
  1979. parents: ["regional-pokemon"]
  1980. },
  1981. "regional-pokemon": {
  1982. name: "Regional Pokemon",
  1983. parents: ["pokemon"]
  1984. },
  1985. "cybeast": {
  1986. name: "Cybeast",
  1987. parents: ["computer-virus"]
  1988. },
  1989. "javira-dragon": {
  1990. name: "Javira Dragon",
  1991. parents: ["dragon"]
  1992. },
  1993. "koopew": {
  1994. name: "Koopew",
  1995. parents: ["dragon", "alien"]
  1996. },
  1997. "nevrean": {
  1998. name: "Nevrean",
  1999. parents: ["avian", "vilous"]
  2000. },
  2001. "vilous": {
  2002. name: "Vilous Species",
  2003. parents: []
  2004. },
  2005. "titanoboa": {
  2006. name: "Titanoboa",
  2007. parents: ["snake"]
  2008. },
  2009. "raichu": {
  2010. name: "Raichu",
  2011. parents: ["pikachu"]
  2012. },
  2013. "taur": {
  2014. name: "Taur",
  2015. parents: []
  2016. },
  2017. "continental-giant-rabbit": {
  2018. name: "Continental Giant Rabbit",
  2019. parents: ["rabbit"]
  2020. },
  2021. "demigryph": {
  2022. name: "Demigryph",
  2023. parents: ["lion", "eagle"]
  2024. },
  2025. "bald-eagle": {
  2026. name: "Bald Eagle",
  2027. parents: ["eagle"]
  2028. },
  2029. "kestrel": {
  2030. name: "Kestrel",
  2031. parents: ["falcon"]
  2032. },
  2033. "mockingbird": {
  2034. name: "Mockingbird",
  2035. parents: ["songbird"]
  2036. },
  2037. "songbird": {
  2038. name: "Songbird",
  2039. parents: ["avian"]
  2040. },
  2041. "bird-of-prey": {
  2042. name: "Bird of Prey",
  2043. parents: ["avian"]
  2044. },
  2045. "marowak": {
  2046. name: "Marowak",
  2047. parents: ["pokemon", "reptile"]
  2048. },
  2049. "joltik": {
  2050. name: "Joltik",
  2051. parents: ["pokemon", "insect"]
  2052. },
  2053. "mink": {
  2054. name: "Mink",
  2055. parents: ["mustelid"]
  2056. },
  2057. "sandcat": {
  2058. name: "Sandcat",
  2059. parents: ["cat"]
  2060. },
  2061. "hrothgar": {
  2062. name: "Hrothgar",
  2063. parents: ["cat"]
  2064. },
  2065. "garchomp": {
  2066. name: "Garchomp",
  2067. parents: ["dragon", "pokemon"]
  2068. },
  2069. "nargacuga": {
  2070. name: "Nargacuga",
  2071. parents: ["monster-hunter"]
  2072. },
  2073. "sable": {
  2074. name: "Sable",
  2075. parents: ["marten"]
  2076. },
  2077. "deino": {
  2078. name: "Deino",
  2079. parents: ["pokemon", "dinosaur"]
  2080. },
  2081. "housecat": {
  2082. name: "Housecat",
  2083. parents: ["cat"]
  2084. },
  2085. "bombay-cat": {
  2086. name: "Bombay Cat",
  2087. parents: ["housecat"]
  2088. },
  2089. "maine-coon": {
  2090. name: "Maine Coon",
  2091. parents: ["housecat"]
  2092. },
  2093. "coelacanth": {
  2094. name: "Coelacanth",
  2095. parents: ["fish"]
  2096. },
  2097. "silvally": {
  2098. name: "Silvally",
  2099. parents: ["legendary-pokemon"]
  2100. },
  2101. "legendary-pokemon": {
  2102. name: "Legendary Pokemon",
  2103. parents: ["pokemon"]
  2104. },
  2105. "great-maccao": {
  2106. name: "Great Maccao",
  2107. parents: ["monster-hunter", "raptor"]
  2108. },
  2109. "shapeshifter": {
  2110. name: "shapeshifter",
  2111. parents: []
  2112. },
  2113. "obstagoon": {
  2114. name: "Obstagoon",
  2115. parents: ["zigzagoon"]
  2116. },
  2117. "thomsons-gazelle": {
  2118. name: "Thomsons Gazelle",
  2119. parents: ["gazelle"]
  2120. },
  2121. "gazelle": {
  2122. name: "Gazelle",
  2123. parents: ["antelope"]
  2124. },
  2125. "monkey": {
  2126. name: "Monkey",
  2127. parents: ["mammal"]
  2128. },
  2129. "serval": {
  2130. name: "Serval",
  2131. parents: ["cat"]
  2132. },
  2133. "swampert": {
  2134. name: "Swampert",
  2135. parents: ["pokemon"]
  2136. },
  2137. "red-fox": {
  2138. name: "Red Fox",
  2139. parents: ["fox"]
  2140. },
  2141. "sliver": {
  2142. name: "Sliver",
  2143. parents: ["alien"]
  2144. },
  2145. "sergix": {
  2146. name: "Sergix",
  2147. parents: ["demon", "sergal", "phoenix"]
  2148. },
  2149. "behemoth": {
  2150. name: "Behemoth",
  2151. parents: ["monster", "dragon", "final-fantasy"]
  2152. },
  2153. "final-fantasy": {
  2154. name: "Final Fantasy",
  2155. parents: ["video-games"]
  2156. },
  2157. "video-games": {
  2158. name: "Video Games",
  2159. parents: []
  2160. },
  2161. "eastern-cottontail-rabbit": {
  2162. name: "Eastern Cottontail Rabbit",
  2163. parents: ["rabbit"]
  2164. },
  2165. "thresher-shark": {
  2166. name: "Thresher Shark",
  2167. parents: ["shark"]
  2168. },
  2169. "ai": {
  2170. name: "AI",
  2171. parents: []
  2172. },
  2173. "black-tip-reef-shark": {
  2174. name: "Black Tip Reef Shark",
  2175. parents: ["shark"]
  2176. },
  2177. "quetzalcoatlus-northropi": {
  2178. name: "Quetzalcoatlus Northropi",
  2179. parents: ["dinosaur"]
  2180. },
  2181. }
  2182. //species
  2183. function getSpeciesInfo(speciesList) {
  2184. let result = new Set();
  2185. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2186. result.add(entry)
  2187. });
  2188. return Array.from(result);
  2189. };
  2190. function getSpeciesInfoHelper(species) {
  2191. if (!speciesData[species]) {
  2192. console.warn(species + " doesn't exist");
  2193. return [];
  2194. }
  2195. if (speciesData[species].parents) {
  2196. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2197. } else {
  2198. return [species];
  2199. }
  2200. }
  2201. characterMakers.push(() => makeCharacter(
  2202. {
  2203. name: "Fen",
  2204. species: ["crux"],
  2205. description: {
  2206. title: "Bio",
  2207. text: "Very furry. Sheds on everything."
  2208. },
  2209. tags: [
  2210. "anthro",
  2211. "goo"
  2212. ]
  2213. },
  2214. {
  2215. front: {
  2216. height: math.unit(12, "feet"),
  2217. weight: math.unit(2400, "lb"),
  2218. preyCapacity: math.unit(1, "people"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/fen/front.svg",
  2222. extra: 1804/1562,
  2223. bottom: 205/2009
  2224. },
  2225. extraAttributes: {
  2226. pawSize: {
  2227. name: "Paw Size",
  2228. power: 2,
  2229. type: "area",
  2230. base: math.unit(0.35, "m^2")
  2231. }
  2232. }
  2233. },
  2234. diving: {
  2235. height: math.unit(4.9, "meters"),
  2236. weight: math.unit(2400, "lb"),
  2237. name: "Diving",
  2238. image: {
  2239. source: "./media/characters/fen/diving.svg"
  2240. }
  2241. },
  2242. sleeby: {
  2243. height: math.unit(3.45, "meters"),
  2244. weight: math.unit(2400, "lb"),
  2245. name: "Sleeby",
  2246. image: {
  2247. source: "./media/characters/fen/sleeby.svg"
  2248. }
  2249. },
  2250. goo: {
  2251. height: math.unit(12, "feet"),
  2252. weight: math.unit(3600, "lb"),
  2253. volume: math.unit(1000, "liters"),
  2254. preyCapacity: math.unit(6, "people"),
  2255. name: "Goo",
  2256. image: {
  2257. source: "./media/characters/fen/goo.svg",
  2258. extra: 1307/1071,
  2259. bottom: 134/1441
  2260. }
  2261. },
  2262. gooNsfw: {
  2263. height: math.unit(12, "feet"),
  2264. weight: math.unit(3750, "lb"),
  2265. volume: math.unit(1000, "liters"),
  2266. preyCapacity: math.unit(6, "people"),
  2267. name: "Goo (NSFW)",
  2268. image: {
  2269. source: "./media/characters/fen/goo-nsfw.svg",
  2270. extra: 1875/1734,
  2271. bottom: 122/1997
  2272. }
  2273. },
  2274. maw: {
  2275. height: math.unit(5.03, "feet"),
  2276. name: "Maw",
  2277. image: {
  2278. source: "./media/characters/fen/maw.svg"
  2279. }
  2280. },
  2281. gooCeiling: {
  2282. height: math.unit(6.6, "feet"),
  2283. weight: math.unit(3000, "lb"),
  2284. volume: math.unit(1000, "liters"),
  2285. preyCapacity: math.unit(6, "people"),
  2286. name: "Goo (Ceiling)",
  2287. image: {
  2288. source: "./media/characters/fen/goo-ceiling.svg"
  2289. }
  2290. },
  2291. paw: {
  2292. height: math.unit(3.77, "feet"),
  2293. name: "Paw",
  2294. image: {
  2295. source: "./media/characters/fen/paw.svg"
  2296. },
  2297. extraAttributes: {
  2298. "toeSize": {
  2299. name: "Toe Size",
  2300. power: 2,
  2301. type: "area",
  2302. base: math.unit(0.02875, "m^2")
  2303. },
  2304. "pawSize": {
  2305. name: "Paw Size",
  2306. power: 2,
  2307. type: "area",
  2308. base: math.unit(0.378, "m^2")
  2309. },
  2310. }
  2311. },
  2312. tail: {
  2313. height: math.unit(12.1, "feet"),
  2314. name: "Tail",
  2315. image: {
  2316. source: "./media/characters/fen/tail.svg"
  2317. }
  2318. },
  2319. tailFull: {
  2320. height: math.unit(12.1, "feet"),
  2321. name: "Full Tail",
  2322. image: {
  2323. source: "./media/characters/fen/tail-full.svg"
  2324. }
  2325. },
  2326. back: {
  2327. height: math.unit(12, "feet"),
  2328. weight: math.unit(2400, "lb"),
  2329. name: "Back",
  2330. image: {
  2331. source: "./media/characters/fen/back.svg",
  2332. },
  2333. info: {
  2334. description: {
  2335. mode: "append",
  2336. text: "\n\nHe is not currently looking at you."
  2337. }
  2338. }
  2339. },
  2340. full: {
  2341. height: math.unit(1.85, "meter"),
  2342. weight: math.unit(3200, "lb"),
  2343. name: "Full",
  2344. image: {
  2345. source: "./media/characters/fen/full.svg",
  2346. extra: 1133/859,
  2347. bottom: 145/1278
  2348. },
  2349. info: {
  2350. description: {
  2351. mode: "append",
  2352. text: "\n\nMunch."
  2353. }
  2354. }
  2355. },
  2356. gooLounging: {
  2357. height: math.unit(4.53, "feet"),
  2358. weight: math.unit(3000, "lb"),
  2359. preyCapacity: math.unit(6, "people"),
  2360. name: "Goo (Lounging)",
  2361. image: {
  2362. source: "./media/characters/fen/goo-lounging.svg",
  2363. bottom: 116 / 613
  2364. }
  2365. },
  2366. lounging: {
  2367. height: math.unit(10.52, "feet"),
  2368. weight: math.unit(2400, "lb"),
  2369. name: "Lounging",
  2370. image: {
  2371. source: "./media/characters/fen/lounging.svg"
  2372. }
  2373. },
  2374. },
  2375. [
  2376. {
  2377. name: "Small",
  2378. height: math.unit(2.2428, "meter")
  2379. },
  2380. {
  2381. name: "Normal",
  2382. height: math.unit(12, "feet"),
  2383. default: true,
  2384. },
  2385. {
  2386. name: "Big",
  2387. height: math.unit(20, "feet")
  2388. },
  2389. {
  2390. name: "Minimacro",
  2391. height: math.unit(40, "feet"),
  2392. info: {
  2393. description: {
  2394. mode: "append",
  2395. text: "\n\nTOO DAMN BIG"
  2396. }
  2397. }
  2398. },
  2399. {
  2400. name: "Macro",
  2401. height: math.unit(100, "feet"),
  2402. info: {
  2403. description: {
  2404. mode: "append",
  2405. text: "\n\nTOO DAMN BIG"
  2406. }
  2407. }
  2408. },
  2409. {
  2410. name: "Megamacro",
  2411. height: math.unit(2, "miles")
  2412. },
  2413. {
  2414. name: "Gigamacro",
  2415. height: math.unit(10, "earths")
  2416. },
  2417. ]
  2418. ))
  2419. characterMakers.push(() => makeCharacter(
  2420. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2421. {
  2422. front: {
  2423. height: math.unit(183, "cm"),
  2424. weight: math.unit(80, "kg"),
  2425. name: "Front",
  2426. image: {
  2427. source: "./media/characters/sofia-fluttertail/front.svg",
  2428. bottom: 0.01,
  2429. extra: 2154 / 2081
  2430. }
  2431. },
  2432. frontAlt: {
  2433. height: math.unit(183, "cm"),
  2434. weight: math.unit(80, "kg"),
  2435. name: "Front (alt)",
  2436. image: {
  2437. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2438. }
  2439. },
  2440. back: {
  2441. height: math.unit(183, "cm"),
  2442. weight: math.unit(80, "kg"),
  2443. name: "Back",
  2444. image: {
  2445. source: "./media/characters/sofia-fluttertail/back.svg"
  2446. }
  2447. },
  2448. kneeling: {
  2449. height: math.unit(125, "cm"),
  2450. weight: math.unit(80, "kg"),
  2451. name: "Kneeling",
  2452. image: {
  2453. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2454. extra: 1033 / 977,
  2455. bottom: 23.7 / 1057
  2456. }
  2457. },
  2458. maw: {
  2459. height: math.unit(183 / 5, "cm"),
  2460. name: "Maw",
  2461. image: {
  2462. source: "./media/characters/sofia-fluttertail/maw.svg"
  2463. }
  2464. },
  2465. mawcloseup: {
  2466. height: math.unit(183 / 5 * 0.41, "cm"),
  2467. name: "Maw (Closeup)",
  2468. image: {
  2469. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2470. }
  2471. },
  2472. paws: {
  2473. height: math.unit(1.17, "feet"),
  2474. name: "Paws",
  2475. image: {
  2476. source: "./media/characters/sofia-fluttertail/paws.svg",
  2477. extra: 851 / 851,
  2478. bottom: 17 / 868
  2479. }
  2480. },
  2481. },
  2482. [
  2483. {
  2484. name: "Normal",
  2485. height: math.unit(1.83, "meter")
  2486. },
  2487. {
  2488. name: "Size Thief",
  2489. height: math.unit(18, "feet")
  2490. },
  2491. {
  2492. name: "50 Foot Collie",
  2493. height: math.unit(50, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(96, "feet"),
  2498. default: true
  2499. },
  2500. {
  2501. name: "Megamerger",
  2502. height: math.unit(650, "feet")
  2503. },
  2504. ]
  2505. ))
  2506. characterMakers.push(() => makeCharacter(
  2507. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2508. {
  2509. front: {
  2510. height: math.unit(7, "feet"),
  2511. weight: math.unit(100, "kg"),
  2512. name: "Front",
  2513. image: {
  2514. source: "./media/characters/march/front.svg",
  2515. extra: 1992/1851,
  2516. bottom: 39/2031
  2517. }
  2518. },
  2519. foot: {
  2520. height: math.unit(0.9, "feet"),
  2521. name: "Foot",
  2522. image: {
  2523. source: "./media/characters/march/foot.svg"
  2524. }
  2525. },
  2526. },
  2527. [
  2528. {
  2529. name: "Normal",
  2530. height: math.unit(7.9, "feet")
  2531. },
  2532. {
  2533. name: "Macro",
  2534. height: math.unit(220, "meters")
  2535. },
  2536. {
  2537. name: "Megamacro",
  2538. height: math.unit(2.98, "km"),
  2539. default: true
  2540. },
  2541. {
  2542. name: "Gigamacro",
  2543. height: math.unit(15963, "km")
  2544. },
  2545. {
  2546. name: "Teramacro",
  2547. height: math.unit(2980000000, "km")
  2548. },
  2549. {
  2550. name: "Examacro",
  2551. height: math.unit(250, "parsecs")
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2557. {
  2558. front: {
  2559. height: math.unit(6, "feet"),
  2560. weight: math.unit(60, "kg"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/noir/front.svg",
  2564. extra: 1,
  2565. bottom: 0.032
  2566. }
  2567. },
  2568. },
  2569. [
  2570. {
  2571. name: "Normal",
  2572. height: math.unit(6.6, "feet")
  2573. },
  2574. {
  2575. name: "Macro",
  2576. height: math.unit(500, "feet")
  2577. },
  2578. {
  2579. name: "Megamacro",
  2580. height: math.unit(2.5, "km"),
  2581. default: true
  2582. },
  2583. {
  2584. name: "Gigamacro",
  2585. height: math.unit(22500, "km")
  2586. },
  2587. {
  2588. name: "Teramacro",
  2589. height: math.unit(2500000000, "km")
  2590. },
  2591. {
  2592. name: "Examacro",
  2593. height: math.unit(200, "parsecs")
  2594. },
  2595. ]
  2596. ))
  2597. characterMakers.push(() => makeCharacter(
  2598. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2599. {
  2600. front: {
  2601. height: math.unit(7, "feet"),
  2602. weight: math.unit(100, "kg"),
  2603. name: "Front",
  2604. image: {
  2605. source: "./media/characters/okuri/front.svg",
  2606. extra: 739/665,
  2607. bottom: 39/778
  2608. }
  2609. },
  2610. back: {
  2611. height: math.unit(7, "feet"),
  2612. weight: math.unit(100, "kg"),
  2613. name: "Back",
  2614. image: {
  2615. source: "./media/characters/okuri/back.svg",
  2616. extra: 734/653,
  2617. bottom: 13/747
  2618. }
  2619. },
  2620. sitting: {
  2621. height: math.unit(2.95, "feet"),
  2622. weight: math.unit(100, "kg"),
  2623. name: "Sitting",
  2624. image: {
  2625. source: "./media/characters/okuri/sitting.svg",
  2626. extra: 370/318,
  2627. bottom: 99/469
  2628. }
  2629. },
  2630. },
  2631. [
  2632. {
  2633. name: "Smallest",
  2634. height: math.unit(5 + 2/12, "feet")
  2635. },
  2636. {
  2637. name: "Smaller",
  2638. height: math.unit(300, "feet")
  2639. },
  2640. {
  2641. name: "Small",
  2642. height: math.unit(1000, "feet")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(1, "mile")
  2647. },
  2648. {
  2649. name: "Mega Macro (Small)",
  2650. height: math.unit(20, "km")
  2651. },
  2652. {
  2653. name: "Mega Macro (Large)",
  2654. height: math.unit(600, "km")
  2655. },
  2656. {
  2657. name: "Giga Macro",
  2658. height: math.unit(10000, "km")
  2659. },
  2660. {
  2661. name: "Normal",
  2662. height: math.unit(577560, "km"),
  2663. default: true
  2664. },
  2665. {
  2666. name: "Large",
  2667. height: math.unit(4, "galaxies")
  2668. },
  2669. {
  2670. name: "Largest",
  2671. height: math.unit(15, "multiverses")
  2672. },
  2673. ]
  2674. ))
  2675. characterMakers.push(() => makeCharacter(
  2676. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2677. {
  2678. front: {
  2679. height: math.unit(7, "feet"),
  2680. weight: math.unit(100, "kg"),
  2681. name: "Front",
  2682. image: {
  2683. source: "./media/characters/manny/front.svg",
  2684. extra: 1,
  2685. bottom: 0.06
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(7, "feet"),
  2690. weight: math.unit(100, "kg"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/manny/back.svg",
  2694. extra: 1,
  2695. bottom: 0.014
  2696. }
  2697. },
  2698. },
  2699. [
  2700. {
  2701. name: "Normal",
  2702. height: math.unit(7, "feet"),
  2703. },
  2704. {
  2705. name: "Macro",
  2706. height: math.unit(78, "feet"),
  2707. default: true
  2708. },
  2709. {
  2710. name: "Macro+",
  2711. height: math.unit(300, "meters")
  2712. },
  2713. {
  2714. name: "Macro++",
  2715. height: math.unit(2400, "meters")
  2716. },
  2717. {
  2718. name: "Megamacro",
  2719. height: math.unit(5167, "meters")
  2720. },
  2721. {
  2722. name: "Gigamacro",
  2723. height: math.unit(41769, "miles")
  2724. },
  2725. ]
  2726. ))
  2727. characterMakers.push(() => makeCharacter(
  2728. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2729. {
  2730. front: {
  2731. height: math.unit(7, "feet"),
  2732. weight: math.unit(100, "kg"),
  2733. name: "Front",
  2734. image: {
  2735. source: "./media/characters/adake/front-1.svg"
  2736. }
  2737. },
  2738. frontAlt: {
  2739. height: math.unit(7, "feet"),
  2740. weight: math.unit(100, "kg"),
  2741. name: "Front (Alt)",
  2742. image: {
  2743. source: "./media/characters/adake/front-2.svg",
  2744. extra: 1,
  2745. bottom: 0.01
  2746. }
  2747. },
  2748. back: {
  2749. height: math.unit(7, "feet"),
  2750. weight: math.unit(100, "kg"),
  2751. name: "Back",
  2752. image: {
  2753. source: "./media/characters/adake/back.svg",
  2754. }
  2755. },
  2756. kneel: {
  2757. height: math.unit(5.385, "feet"),
  2758. weight: math.unit(100, "kg"),
  2759. name: "Kneeling",
  2760. image: {
  2761. source: "./media/characters/adake/kneel.svg",
  2762. bottom: 0.052
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(7, "feet"),
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(78, "feet"),
  2774. default: true
  2775. },
  2776. {
  2777. name: "Macro+",
  2778. height: math.unit(300, "meters")
  2779. },
  2780. {
  2781. name: "Macro++",
  2782. height: math.unit(2400, "meters")
  2783. },
  2784. {
  2785. name: "Megamacro",
  2786. height: math.unit(5167, "meters")
  2787. },
  2788. {
  2789. name: "Gigamacro",
  2790. height: math.unit(41769, "miles")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(1.65, "meters"),
  2799. weight: math.unit(50, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/elijah/front.svg",
  2803. extra: 858 / 830,
  2804. bottom: 95.5 / 953.8559
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(1.65, "meters"),
  2809. weight: math.unit(50, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/elijah/back.svg",
  2813. extra: 895 / 850,
  2814. bottom: 5.3 / 897.956
  2815. }
  2816. },
  2817. frontNsfw: {
  2818. height: math.unit(1.65, "meters"),
  2819. weight: math.unit(50, "kg"),
  2820. name: "Front (NSFW)",
  2821. image: {
  2822. source: "./media/characters/elijah/front-nsfw.svg",
  2823. extra: 858 / 830,
  2824. bottom: 95.5 / 953.8559
  2825. }
  2826. },
  2827. backNsfw: {
  2828. height: math.unit(1.65, "meters"),
  2829. weight: math.unit(50, "kg"),
  2830. name: "Back (NSFW)",
  2831. image: {
  2832. source: "./media/characters/elijah/back-nsfw.svg",
  2833. extra: 895 / 850,
  2834. bottom: 5.3 / 897.956
  2835. }
  2836. },
  2837. dick: {
  2838. height: math.unit(1, "feet"),
  2839. name: "Dick",
  2840. image: {
  2841. source: "./media/characters/elijah/dick.svg"
  2842. }
  2843. },
  2844. beakOpen: {
  2845. height: math.unit(1.25, "feet"),
  2846. name: "Beak (Open)",
  2847. image: {
  2848. source: "./media/characters/elijah/beak-open.svg"
  2849. }
  2850. },
  2851. beakShut: {
  2852. height: math.unit(1.25, "feet"),
  2853. name: "Beak (Shut)",
  2854. image: {
  2855. source: "./media/characters/elijah/beak-shut.svg"
  2856. }
  2857. },
  2858. footFlexing: {
  2859. height: math.unit(1.61, "feet"),
  2860. name: "Foot (Flexing)",
  2861. image: {
  2862. source: "./media/characters/elijah/foot-flexing.svg"
  2863. }
  2864. },
  2865. footStepping: {
  2866. height: math.unit(1.44, "feet"),
  2867. name: "Foot (Stepping)",
  2868. image: {
  2869. source: "./media/characters/elijah/foot-stepping.svg"
  2870. }
  2871. },
  2872. plantigradeLeg: {
  2873. height: math.unit(2.34, "feet"),
  2874. name: "Plantigrade Leg",
  2875. image: {
  2876. source: "./media/characters/elijah/plantigrade-leg.svg"
  2877. }
  2878. },
  2879. plantigradeFootLeft: {
  2880. height: math.unit(0.9, "feet"),
  2881. name: "Plantigrade Foot (Left)",
  2882. image: {
  2883. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2884. }
  2885. },
  2886. plantigradeFootRight: {
  2887. height: math.unit(0.9, "feet"),
  2888. name: "Plantigrade Foot (Right)",
  2889. image: {
  2890. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2891. }
  2892. },
  2893. },
  2894. [
  2895. {
  2896. name: "Normal",
  2897. height: math.unit(1.65, "meters")
  2898. },
  2899. {
  2900. name: "Macro",
  2901. height: math.unit(55, "meters"),
  2902. default: true
  2903. },
  2904. {
  2905. name: "Macro+",
  2906. height: math.unit(105, "meters")
  2907. },
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2912. {
  2913. front: {
  2914. height: math.unit(7 + 2/12, "feet"),
  2915. weight: math.unit(320, "kg"),
  2916. preyCapacity: math.unit(0.276549935, "people"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/rai/front.svg",
  2920. extra: 1802/1696,
  2921. bottom: 68/1870
  2922. },
  2923. form: "anthro",
  2924. default: true
  2925. },
  2926. frontDressed: {
  2927. height: math.unit(7 + 2/12, "feet"),
  2928. weight: math.unit(320, "kg"),
  2929. preyCapacity: math.unit(0.276549935, "people"),
  2930. name: "Front (Dressed)",
  2931. image: {
  2932. source: "./media/characters/rai/front-dressed.svg",
  2933. extra: 1802/1696,
  2934. bottom: 68/1870
  2935. },
  2936. form: "anthro"
  2937. },
  2938. side: {
  2939. height: math.unit(7 + 2/12, "feet"),
  2940. weight: math.unit(320, "kg"),
  2941. preyCapacity: math.unit(0.276549935, "people"),
  2942. name: "Side",
  2943. image: {
  2944. source: "./media/characters/rai/side.svg",
  2945. extra: 1789/1710,
  2946. bottom: 115/1904
  2947. },
  2948. form: "anthro"
  2949. },
  2950. back: {
  2951. height: math.unit(7 + 2/12, "feet"),
  2952. weight: math.unit(320, "kg"),
  2953. preyCapacity: math.unit(0.276549935, "people"),
  2954. name: "Back",
  2955. image: {
  2956. source: "./media/characters/rai/back.svg",
  2957. extra: 1770/1707,
  2958. bottom: 28/1798
  2959. },
  2960. form: "anthro"
  2961. },
  2962. feral: {
  2963. height: math.unit(9.5, "feet"),
  2964. weight: math.unit(640, "kg"),
  2965. preyCapacity: math.unit(4, "people"),
  2966. name: "Feral",
  2967. image: {
  2968. source: "./media/characters/rai/feral.svg",
  2969. extra: 945/553,
  2970. bottom: 176/1121
  2971. },
  2972. form: "feral",
  2973. default: true
  2974. },
  2975. dragon: {
  2976. height: math.unit(23, "feet"),
  2977. weight: math.unit(50000, "lb"),
  2978. name: "Dragon",
  2979. image: {
  2980. source: "./media/characters/rai/dragon.svg",
  2981. extra: 2498 / 2030,
  2982. bottom: 85.2 / 2584
  2983. },
  2984. form: "dragon",
  2985. default: true
  2986. },
  2987. maw: {
  2988. height: math.unit(1.69, "feet"),
  2989. name: "Maw",
  2990. image: {
  2991. source: "./media/characters/rai/maw.svg"
  2992. },
  2993. form: "anthro"
  2994. },
  2995. },
  2996. [
  2997. {
  2998. name: "Normal",
  2999. height: math.unit(7 + 2/12, "feet"),
  3000. form: "anthro"
  3001. },
  3002. {
  3003. name: "Big",
  3004. height: math.unit(11, "feet"),
  3005. form: "anthro"
  3006. },
  3007. {
  3008. name: "Minimacro",
  3009. height: math.unit(77, "feet"),
  3010. form: "anthro"
  3011. },
  3012. {
  3013. name: "Macro",
  3014. height: math.unit(302, "feet"),
  3015. default: true,
  3016. form: "anthro"
  3017. },
  3018. {
  3019. name: "Normal",
  3020. height: math.unit(9.5, "feet"),
  3021. form: "feral",
  3022. default: true
  3023. },
  3024. {
  3025. name: "Normal",
  3026. height: math.unit(23, "feet"),
  3027. form: "dragon",
  3028. default: true
  3029. }
  3030. ],
  3031. {
  3032. "anthro": {
  3033. name: "Anthro",
  3034. default: true
  3035. },
  3036. "feral": {
  3037. name: "Feral",
  3038. },
  3039. "dragon": {
  3040. name: "Dragon",
  3041. },
  3042. }
  3043. ))
  3044. characterMakers.push(() => makeCharacter(
  3045. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3046. {
  3047. frontDressed: {
  3048. height: math.unit(216, "feet"),
  3049. weight: math.unit(7000000, "lb"),
  3050. preyCapacity: math.unit(1321, "people"),
  3051. name: "Front (Dressed)",
  3052. image: {
  3053. source: "./media/characters/jazzy/front-dressed.svg",
  3054. extra: 2738 / 2651,
  3055. bottom: 41.8 / 2786
  3056. }
  3057. },
  3058. backDressed: {
  3059. height: math.unit(216, "feet"),
  3060. weight: math.unit(7000000, "lb"),
  3061. preyCapacity: math.unit(1321, "people"),
  3062. name: "Back (Dressed)",
  3063. image: {
  3064. source: "./media/characters/jazzy/back-dressed.svg",
  3065. extra: 2775 / 2673,
  3066. bottom: 36.8 / 2817
  3067. }
  3068. },
  3069. front: {
  3070. height: math.unit(216, "feet"),
  3071. weight: math.unit(7000000, "lb"),
  3072. preyCapacity: math.unit(1321, "people"),
  3073. name: "Front",
  3074. image: {
  3075. source: "./media/characters/jazzy/front.svg",
  3076. extra: 2738 / 2651,
  3077. bottom: 41.8 / 2786
  3078. }
  3079. },
  3080. back: {
  3081. height: math.unit(216, "feet"),
  3082. weight: math.unit(7000000, "lb"),
  3083. preyCapacity: math.unit(1321, "people"),
  3084. name: "Back",
  3085. image: {
  3086. source: "./media/characters/jazzy/back.svg",
  3087. extra: 2775 / 2673,
  3088. bottom: 36.8 / 2817
  3089. }
  3090. },
  3091. maw: {
  3092. height: math.unit(20, "feet"),
  3093. name: "Maw",
  3094. image: {
  3095. source: "./media/characters/jazzy/maw.svg"
  3096. }
  3097. },
  3098. paws: {
  3099. height: math.unit(27.5, "feet"),
  3100. name: "Paws",
  3101. image: {
  3102. source: "./media/characters/jazzy/paws.svg"
  3103. }
  3104. },
  3105. eye: {
  3106. height: math.unit(4.4, "feet"),
  3107. name: "Eye",
  3108. image: {
  3109. source: "./media/characters/jazzy/eye.svg"
  3110. }
  3111. },
  3112. droneOffense: {
  3113. height: math.unit(9.5, "inches"),
  3114. name: "Drone (Offense)",
  3115. image: {
  3116. source: "./media/characters/jazzy/drone-offense.svg"
  3117. }
  3118. },
  3119. droneRecon: {
  3120. height: math.unit(9.5, "inches"),
  3121. name: "Drone (Recon)",
  3122. image: {
  3123. source: "./media/characters/jazzy/drone-recon.svg"
  3124. }
  3125. },
  3126. droneDefense: {
  3127. height: math.unit(9.5, "inches"),
  3128. name: "Drone (Defense)",
  3129. image: {
  3130. source: "./media/characters/jazzy/drone-defense.svg"
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(216, "feet"),
  3138. default: true
  3139. },
  3140. ]
  3141. ))
  3142. characterMakers.push(() => makeCharacter(
  3143. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3144. {
  3145. front: {
  3146. height: math.unit(9 + 6/12, "feet"),
  3147. weight: math.unit(700, "lb"),
  3148. name: "Front",
  3149. image: {
  3150. source: "./media/characters/flamm/front.svg",
  3151. extra: 1736/1596,
  3152. bottom: 93/1829
  3153. }
  3154. },
  3155. buff: {
  3156. height: math.unit(9 + 6/12, "feet"),
  3157. weight: math.unit(950, "lb"),
  3158. name: "Buff",
  3159. image: {
  3160. source: "./media/characters/flamm/buff.svg",
  3161. extra: 3018/2874,
  3162. bottom: 221/3239
  3163. }
  3164. },
  3165. },
  3166. [
  3167. {
  3168. name: "Normal",
  3169. height: math.unit(9.5, "feet")
  3170. },
  3171. {
  3172. name: "Macro",
  3173. height: math.unit(200, "feet"),
  3174. default: true
  3175. },
  3176. ]
  3177. ))
  3178. characterMakers.push(() => makeCharacter(
  3179. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3180. {
  3181. front: {
  3182. height: math.unit(5 + 3/12, "feet"),
  3183. weight: math.unit(60, "kg"),
  3184. name: "Front",
  3185. image: {
  3186. source: "./media/characters/zephiro/front.svg",
  3187. extra: 1873/1761,
  3188. bottom: 147/2020
  3189. }
  3190. },
  3191. side: {
  3192. height: math.unit(5 + 3/12, "feet"),
  3193. weight: math.unit(60, "kg"),
  3194. name: "Side",
  3195. image: {
  3196. source: "./media/characters/zephiro/side.svg",
  3197. extra: 1929/1827,
  3198. bottom: 65/1994
  3199. }
  3200. },
  3201. back: {
  3202. height: math.unit(5 + 3/12, "feet"),
  3203. weight: math.unit(60, "kg"),
  3204. name: "Back",
  3205. image: {
  3206. source: "./media/characters/zephiro/back.svg",
  3207. extra: 1926/1816,
  3208. bottom: 41/1967
  3209. }
  3210. },
  3211. hand: {
  3212. height: math.unit(0.68, "feet"),
  3213. name: "Hand",
  3214. image: {
  3215. source: "./media/characters/zephiro/hand.svg"
  3216. }
  3217. },
  3218. paw: {
  3219. height: math.unit(1, "feet"),
  3220. name: "Paw",
  3221. image: {
  3222. source: "./media/characters/zephiro/paw.svg"
  3223. }
  3224. },
  3225. beans: {
  3226. height: math.unit(0.93, "feet"),
  3227. name: "Beans",
  3228. image: {
  3229. source: "./media/characters/zephiro/beans.svg"
  3230. }
  3231. },
  3232. },
  3233. [
  3234. {
  3235. name: "Micro",
  3236. height: math.unit(3, "inches")
  3237. },
  3238. {
  3239. name: "Normal",
  3240. height: math.unit(5 + 3 / 12, "feet"),
  3241. default: true
  3242. },
  3243. {
  3244. name: "Macro",
  3245. height: math.unit(118, "feet")
  3246. },
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(5, "feet"),
  3254. weight: math.unit(90, "kg"),
  3255. preyCapacity: math.unit(14, "people"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/fory/front.svg",
  3259. extra: 2862 / 2674,
  3260. bottom: 180 / 3043.8
  3261. },
  3262. form: "weaselbun",
  3263. default: true,
  3264. extraAttributes: {
  3265. "pawSize": {
  3266. name: "Paw Size",
  3267. power: 2,
  3268. type: "area",
  3269. base: math.unit(0.1596, "m^2")
  3270. },
  3271. "pawLength": {
  3272. name: "Paw Length",
  3273. power: 1,
  3274. type: "length",
  3275. base: math.unit(0.7, "m")
  3276. }
  3277. }
  3278. },
  3279. back: {
  3280. height: math.unit(5, "feet"),
  3281. weight: math.unit(90, "kg"),
  3282. preyCapacity: math.unit(14, "people"),
  3283. name: "Back",
  3284. image: {
  3285. source: "./media/characters/fory/back.svg",
  3286. extra: 1790/1672,
  3287. bottom: 84/1874
  3288. },
  3289. form: "weaselbun",
  3290. extraAttributes: {
  3291. "pawSize": {
  3292. name: "Paw Size",
  3293. power: 2,
  3294. type: "area",
  3295. base: math.unit(0.1596, "m^2")
  3296. },
  3297. "pawLength": {
  3298. name: "Paw Length",
  3299. power: 1,
  3300. type: "length",
  3301. base: math.unit(0.7, "m")
  3302. }
  3303. }
  3304. },
  3305. paw: {
  3306. height: math.unit(2.14, "feet"),
  3307. name: "Paw",
  3308. image: {
  3309. source: "./media/characters/fory/paw.svg"
  3310. },
  3311. form: "weaselbun",
  3312. extraAttributes: {
  3313. "pawSize": {
  3314. name: "Paw Size",
  3315. power: 2,
  3316. type: "area",
  3317. base: math.unit(0.1596, "m^2")
  3318. },
  3319. "pawLength": {
  3320. name: "Paw Length",
  3321. power: 1,
  3322. type: "length",
  3323. base: math.unit(0.48, "m")
  3324. }
  3325. }
  3326. },
  3327. bunBack: {
  3328. height: math.unit(3, "feet"),
  3329. weight: math.unit(20, "kg"),
  3330. preyCapacity: math.unit(3, "people"),
  3331. name: "Back",
  3332. image: {
  3333. source: "./media/characters/fory/bun-back.svg",
  3334. extra: 1749/1564,
  3335. bottom: 246/1995
  3336. },
  3337. form: "bun",
  3338. default: true,
  3339. extraAttributes: {
  3340. "pawSize": {
  3341. name: "Paw Size",
  3342. power: 2,
  3343. type: "area",
  3344. base: math.unit(0.072, "m^2")
  3345. },
  3346. "pawLength": {
  3347. name: "Paw Length",
  3348. power: 1,
  3349. type: "length",
  3350. base: math.unit(0.45, "m")
  3351. }
  3352. }
  3353. },
  3354. },
  3355. [
  3356. {
  3357. name: "Normal",
  3358. height: math.unit(5, "feet"),
  3359. form: "weaselbun"
  3360. },
  3361. {
  3362. name: "Macro",
  3363. height: math.unit(50, "feet"),
  3364. default: true,
  3365. form: "weaselbun"
  3366. },
  3367. {
  3368. name: "Megamacro",
  3369. height: math.unit(10, "miles"),
  3370. form: "weaselbun"
  3371. },
  3372. {
  3373. name: "Gigamacro",
  3374. height: math.unit(5, "earths"),
  3375. form: "weaselbun"
  3376. },
  3377. {
  3378. name: "Normal",
  3379. height: math.unit(3, "feet"),
  3380. default: true,
  3381. form: "bun"
  3382. },
  3383. {
  3384. name: "Fun-Size",
  3385. height: math.unit(12, "feet"),
  3386. form: "bun"
  3387. },
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(100, "feet"),
  3391. form: "bun"
  3392. },
  3393. {
  3394. name: "Planetary",
  3395. height: math.unit(3, "earths"),
  3396. form: "bun"
  3397. },
  3398. ],
  3399. {
  3400. "weaselbun": {
  3401. name: "Weaselbun",
  3402. default: true
  3403. },
  3404. "bun": {
  3405. name: "Bun",
  3406. },
  3407. }
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3411. {
  3412. front: {
  3413. height: math.unit(7, "feet"),
  3414. weight: math.unit(90, "kg"),
  3415. name: "Front",
  3416. image: {
  3417. source: "./media/characters/kurrikage/front.svg",
  3418. extra: 1845/1733,
  3419. bottom: 119/1964
  3420. }
  3421. },
  3422. back: {
  3423. height: math.unit(7, "feet"),
  3424. weight: math.unit(90, "kg"),
  3425. name: "Back",
  3426. image: {
  3427. source: "./media/characters/kurrikage/back.svg",
  3428. extra: 1790/1677,
  3429. bottom: 61/1851
  3430. }
  3431. },
  3432. dressed: {
  3433. height: math.unit(7, "feet"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Dressed",
  3436. image: {
  3437. source: "./media/characters/kurrikage/dressed.svg",
  3438. extra: 1845/1733,
  3439. bottom: 119/1964
  3440. }
  3441. },
  3442. foot: {
  3443. height: math.unit(1.5, "feet"),
  3444. name: "Foot",
  3445. image: {
  3446. source: "./media/characters/kurrikage/foot.svg"
  3447. }
  3448. },
  3449. staff: {
  3450. height: math.unit(6.7, "feet"),
  3451. name: "Staff",
  3452. image: {
  3453. source: "./media/characters/kurrikage/staff.svg"
  3454. }
  3455. },
  3456. peek: {
  3457. height: math.unit(1.05, "feet"),
  3458. name: "Peeking",
  3459. image: {
  3460. source: "./media/characters/kurrikage/peek.svg",
  3461. bottom: 0.08
  3462. }
  3463. },
  3464. },
  3465. [
  3466. {
  3467. name: "Normal",
  3468. height: math.unit(12, "feet"),
  3469. default: true
  3470. },
  3471. {
  3472. name: "Big",
  3473. height: math.unit(20, "feet")
  3474. },
  3475. {
  3476. name: "Macro",
  3477. height: math.unit(500, "feet")
  3478. },
  3479. {
  3480. name: "Megamacro",
  3481. height: math.unit(20, "miles")
  3482. },
  3483. ]
  3484. ))
  3485. characterMakers.push(() => makeCharacter(
  3486. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3487. {
  3488. front: {
  3489. height: math.unit(6, "feet"),
  3490. weight: math.unit(75, "kg"),
  3491. name: "Front",
  3492. image: {
  3493. source: "./media/characters/shingo/front.svg",
  3494. extra: 1900/1825,
  3495. bottom: 82/1982
  3496. }
  3497. },
  3498. side: {
  3499. height: math.unit(6, "feet"),
  3500. weight: math.unit(75, "kg"),
  3501. name: "Side",
  3502. image: {
  3503. source: "./media/characters/shingo/side.svg",
  3504. extra: 1930/1865,
  3505. bottom: 16/1946
  3506. }
  3507. },
  3508. back: {
  3509. height: math.unit(6, "feet"),
  3510. weight: math.unit(75, "kg"),
  3511. name: "Back",
  3512. image: {
  3513. source: "./media/characters/shingo/back.svg",
  3514. extra: 1922/1852,
  3515. bottom: 16/1938
  3516. }
  3517. },
  3518. frontDressed: {
  3519. height: math.unit(6, "feet"),
  3520. weight: math.unit(150, "lb"),
  3521. name: "Front-dressed",
  3522. image: {
  3523. source: "./media/characters/shingo/front-dressed.svg",
  3524. extra: 1900/1825,
  3525. bottom: 82/1982
  3526. }
  3527. },
  3528. paw: {
  3529. height: math.unit(1.29, "feet"),
  3530. name: "Paw",
  3531. image: {
  3532. source: "./media/characters/shingo/paw.svg"
  3533. }
  3534. },
  3535. hand: {
  3536. height: math.unit(1.07, "feet"),
  3537. name: "Hand",
  3538. image: {
  3539. source: "./media/characters/shingo/hand.svg"
  3540. }
  3541. },
  3542. frontAlt: {
  3543. height: math.unit(6, "feet"),
  3544. weight: math.unit(75, "kg"),
  3545. name: "Front (Alt)",
  3546. image: {
  3547. source: "./media/characters/shingo/front-alt.svg",
  3548. extra: 3511 / 3338,
  3549. bottom: 0.005
  3550. }
  3551. },
  3552. frontAlt2: {
  3553. height: math.unit(6, "feet"),
  3554. weight: math.unit(75, "kg"),
  3555. name: "Front (Alt 2)",
  3556. image: {
  3557. source: "./media/characters/shingo/front-alt-2.svg",
  3558. extra: 706/681,
  3559. bottom: 11/717
  3560. }
  3561. },
  3562. pawAlt: {
  3563. height: math.unit(1, "feet"),
  3564. name: "Paw (Alt)",
  3565. image: {
  3566. source: "./media/characters/shingo/paw-alt.svg"
  3567. }
  3568. },
  3569. },
  3570. [
  3571. {
  3572. name: "Micro",
  3573. height: math.unit(4, "inches")
  3574. },
  3575. {
  3576. name: "Normal",
  3577. height: math.unit(6, "feet"),
  3578. default: true
  3579. },
  3580. {
  3581. name: "Macro",
  3582. height: math.unit(108, "feet")
  3583. },
  3584. {
  3585. name: "Macro+",
  3586. height: math.unit(1500, "feet")
  3587. },
  3588. ]
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3592. {
  3593. side: {
  3594. height: math.unit(6, "feet"),
  3595. weight: math.unit(75, "kg"),
  3596. name: "Side",
  3597. image: {
  3598. source: "./media/characters/aigey/side.svg"
  3599. }
  3600. },
  3601. },
  3602. [
  3603. {
  3604. name: "Macro",
  3605. height: math.unit(200, "feet"),
  3606. default: true
  3607. },
  3608. {
  3609. name: "Megamacro",
  3610. height: math.unit(100, "miles")
  3611. },
  3612. ]
  3613. )
  3614. )
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(5 + 5 / 12, "feet"),
  3620. weight: math.unit(75, "kg"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/natasha/front.svg",
  3624. extra: 859 / 824,
  3625. bottom: 23 / 879.6
  3626. }
  3627. },
  3628. frontNsfw: {
  3629. height: math.unit(5 + 5 / 12, "feet"),
  3630. weight: math.unit(75, "kg"),
  3631. name: "Front (NSFW)",
  3632. image: {
  3633. source: "./media/characters/natasha/front-nsfw.svg",
  3634. extra: 859 / 824,
  3635. bottom: 23 / 879.6
  3636. }
  3637. },
  3638. frontErect: {
  3639. height: math.unit(5 + 5 / 12, "feet"),
  3640. weight: math.unit(75, "kg"),
  3641. name: "Front (Erect)",
  3642. image: {
  3643. source: "./media/characters/natasha/front-erect.svg",
  3644. extra: 859 / 824,
  3645. bottom: 23 / 879.6
  3646. }
  3647. },
  3648. back: {
  3649. height: math.unit(5 + 5 / 12, "feet"),
  3650. weight: math.unit(75, "kg"),
  3651. name: "Back",
  3652. image: {
  3653. source: "./media/characters/natasha/back.svg",
  3654. extra: 887.9 / 852.6,
  3655. bottom: 9.7 / 896.4
  3656. }
  3657. },
  3658. backAlt: {
  3659. height: math.unit(5 + 5 / 12, "feet"),
  3660. weight: math.unit(75, "kg"),
  3661. name: "Back (Alt)",
  3662. image: {
  3663. source: "./media/characters/natasha/back-alt.svg",
  3664. extra: 1236.7 / 1192,
  3665. bottom: 22.3 / 1258.2
  3666. }
  3667. },
  3668. dick: {
  3669. height: math.unit(1.772, "feet"),
  3670. name: "Dick",
  3671. image: {
  3672. source: "./media/characters/natasha/dick.svg"
  3673. }
  3674. },
  3675. paw: {
  3676. height: math.unit(0.250, "meters"),
  3677. name: "Paw",
  3678. image: {
  3679. source: "./media/characters/natasha/paw.svg"
  3680. },
  3681. extraAttributes: {
  3682. "toeSize": {
  3683. name: "Toe Size",
  3684. power: 2,
  3685. type: "area",
  3686. base: math.unit(0.0024, "m^2")
  3687. },
  3688. "padSize": {
  3689. name: "Pad Size",
  3690. power: 2,
  3691. type: "area",
  3692. base: math.unit(0.00889, "m^2")
  3693. },
  3694. "pawSize": {
  3695. name: "Paw Size",
  3696. power: 2,
  3697. type: "area",
  3698. base: math.unit(0.023667, "m^2")
  3699. },
  3700. }
  3701. },
  3702. },
  3703. [
  3704. {
  3705. name: "Shortstack",
  3706. height: math.unit(3, "feet"),
  3707. default: true
  3708. },
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(5 + 5 / 12, "feet")
  3712. },
  3713. {
  3714. name: "Large",
  3715. height: math.unit(12, "feet")
  3716. },
  3717. {
  3718. name: "Macro",
  3719. height: math.unit(100, "feet")
  3720. },
  3721. {
  3722. name: "Macro+",
  3723. height: math.unit(260, "feet")
  3724. },
  3725. {
  3726. name: "Macro++",
  3727. height: math.unit(1, "mile")
  3728. },
  3729. ]
  3730. ))
  3731. characterMakers.push(() => makeCharacter(
  3732. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3733. {
  3734. front: {
  3735. height: math.unit(6, "feet"),
  3736. weight: math.unit(75, "kg"),
  3737. name: "Front",
  3738. image: {
  3739. source: "./media/characters/malik/front.svg",
  3740. extra: 1750/1561,
  3741. bottom: 80/1830
  3742. },
  3743. extraAttributes: {
  3744. "toeSize": {
  3745. name: "Toe Size",
  3746. power: 2,
  3747. type: "area",
  3748. base: math.unit(0.0159, "m^2")
  3749. },
  3750. "pawSize": {
  3751. name: "Paw Size",
  3752. power: 2,
  3753. type: "area",
  3754. base: math.unit(0.09834, "m^2")
  3755. },
  3756. }
  3757. },
  3758. side: {
  3759. height: math.unit(6, "feet"),
  3760. weight: math.unit(75, "kg"),
  3761. name: "Side",
  3762. image: {
  3763. source: "./media/characters/malik/side.svg",
  3764. extra: 1802/1685,
  3765. bottom: 42/1844
  3766. },
  3767. extraAttributes: {
  3768. "toeSize": {
  3769. name: "Toe Size",
  3770. power: 2,
  3771. type: "area",
  3772. base: math.unit(0.0159, "m^2")
  3773. },
  3774. "pawSize": {
  3775. name: "Paw Size",
  3776. power: 2,
  3777. type: "area",
  3778. base: math.unit(0.09834, "m^2")
  3779. },
  3780. }
  3781. },
  3782. back: {
  3783. height: math.unit(6, "feet"),
  3784. weight: math.unit(75, "kg"),
  3785. name: "Back",
  3786. image: {
  3787. source: "./media/characters/malik/back.svg",
  3788. extra: 1803/1607,
  3789. bottom: 33/1836
  3790. },
  3791. extraAttributes: {
  3792. "toeSize": {
  3793. name: "Toe Size",
  3794. power: 2,
  3795. type: "area",
  3796. base: math.unit(0.0159, "m^2")
  3797. },
  3798. "pawSize": {
  3799. name: "Paw Size",
  3800. power: 2,
  3801. type: "area",
  3802. base: math.unit(0.09834, "m^2")
  3803. },
  3804. }
  3805. },
  3806. },
  3807. [
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(156, "feet"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(1188, "feet")
  3816. },
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(75, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/sefer/front.svg",
  3828. extra: 848 / 659,
  3829. bottom: 28.3 / 876.442
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(6, "feet"),
  3834. weight: math.unit(75, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/sefer/back.svg",
  3838. extra: 864 / 695,
  3839. bottom: 10 / 871
  3840. }
  3841. },
  3842. frontDressed: {
  3843. height: math.unit(6, "feet"),
  3844. weight: math.unit(75, "kg"),
  3845. name: "Dressed",
  3846. image: {
  3847. source: "./media/characters/sefer/dressed.svg",
  3848. extra: 839 / 653,
  3849. bottom: 37.6 / 878
  3850. }
  3851. },
  3852. },
  3853. [
  3854. {
  3855. name: "Normal",
  3856. height: math.unit(6, "feet"),
  3857. default: true
  3858. },
  3859. {
  3860. name: "Big",
  3861. height: math.unit(8, "meters")
  3862. },
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3867. {
  3868. body: {
  3869. height: math.unit(2.2428, "meter"),
  3870. weight: math.unit(124.738, "kg"),
  3871. name: "Body",
  3872. image: {
  3873. extra: 1225 / 1050,
  3874. source: "./media/characters/north/front.svg"
  3875. }
  3876. }
  3877. },
  3878. [
  3879. {
  3880. name: "Micro",
  3881. height: math.unit(4, "inches")
  3882. },
  3883. {
  3884. name: "Macro",
  3885. height: math.unit(63, "meters")
  3886. },
  3887. {
  3888. name: "Megamacro",
  3889. height: math.unit(101, "miles"),
  3890. default: true
  3891. }
  3892. ]
  3893. ))
  3894. characterMakers.push(() => makeCharacter(
  3895. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3896. {
  3897. angled: {
  3898. height: math.unit(4, "meter"),
  3899. weight: math.unit(150, "kg"),
  3900. name: "Angled",
  3901. image: {
  3902. source: "./media/characters/talan/angled-sfw.svg",
  3903. bottom: 29 / 3734
  3904. }
  3905. },
  3906. angledNsfw: {
  3907. height: math.unit(4, "meter"),
  3908. weight: math.unit(150, "kg"),
  3909. name: "Angled (NSFW)",
  3910. image: {
  3911. source: "./media/characters/talan/angled-nsfw.svg",
  3912. bottom: 29 / 3734
  3913. }
  3914. },
  3915. frontNsfw: {
  3916. height: math.unit(4, "meter"),
  3917. weight: math.unit(150, "kg"),
  3918. name: "Front (NSFW)",
  3919. image: {
  3920. source: "./media/characters/talan/front-nsfw.svg",
  3921. bottom: 29 / 3734
  3922. }
  3923. },
  3924. sideNsfw: {
  3925. height: math.unit(4, "meter"),
  3926. weight: math.unit(150, "kg"),
  3927. name: "Side (NSFW)",
  3928. image: {
  3929. source: "./media/characters/talan/side-nsfw.svg",
  3930. bottom: 29 / 3734
  3931. }
  3932. },
  3933. back: {
  3934. height: math.unit(4, "meter"),
  3935. weight: math.unit(150, "kg"),
  3936. name: "Back",
  3937. image: {
  3938. source: "./media/characters/talan/back.svg"
  3939. }
  3940. },
  3941. dickBottom: {
  3942. height: math.unit(0.621, "meter"),
  3943. name: "Dick (Bottom)",
  3944. image: {
  3945. source: "./media/characters/talan/dick-bottom.svg"
  3946. }
  3947. },
  3948. dickTop: {
  3949. height: math.unit(0.621, "meter"),
  3950. name: "Dick (Top)",
  3951. image: {
  3952. source: "./media/characters/talan/dick-top.svg"
  3953. }
  3954. },
  3955. dickSide: {
  3956. height: math.unit(0.305, "meter"),
  3957. name: "Dick (Side)",
  3958. image: {
  3959. source: "./media/characters/talan/dick-side.svg"
  3960. }
  3961. },
  3962. dickFront: {
  3963. height: math.unit(0.305, "meter"),
  3964. name: "Dick (Front)",
  3965. image: {
  3966. source: "./media/characters/talan/dick-front.svg"
  3967. }
  3968. },
  3969. },
  3970. [
  3971. {
  3972. name: "Normal",
  3973. height: math.unit(4, "meters")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(100, "meters")
  3978. },
  3979. {
  3980. name: "Megamacro",
  3981. height: math.unit(2, "miles"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Gigamacro",
  3986. height: math.unit(5000, "miles")
  3987. },
  3988. {
  3989. name: "Teramacro",
  3990. height: math.unit(100, "parsecs")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(2, "meter"),
  3999. weight: math.unit(90, "kg"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/gael'rathus/front.svg"
  4003. }
  4004. },
  4005. frontAlt: {
  4006. height: math.unit(2, "meter"),
  4007. weight: math.unit(90, "kg"),
  4008. name: "Front (alt)",
  4009. image: {
  4010. source: "./media/characters/gael'rathus/front-alt.svg"
  4011. }
  4012. },
  4013. frontAlt2: {
  4014. height: math.unit(2, "meter"),
  4015. weight: math.unit(90, "kg"),
  4016. name: "Front (alt 2)",
  4017. image: {
  4018. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4019. }
  4020. }
  4021. },
  4022. [
  4023. {
  4024. name: "Normal",
  4025. height: math.unit(9, "feet"),
  4026. default: true
  4027. },
  4028. {
  4029. name: "Large",
  4030. height: math.unit(25, "feet")
  4031. },
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(0.25, "miles")
  4035. },
  4036. {
  4037. name: "Megamacro",
  4038. height: math.unit(10, "miles")
  4039. }
  4040. ]
  4041. ))
  4042. characterMakers.push(() => makeCharacter(
  4043. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4044. {
  4045. side: {
  4046. height: math.unit(2, "meter"),
  4047. weight: math.unit(140, "kg"),
  4048. name: "Side",
  4049. image: {
  4050. source: "./media/characters/sosha/side.svg",
  4051. extra: 1170/1006,
  4052. bottom: 94/1264
  4053. }
  4054. },
  4055. maw: {
  4056. height: math.unit(2.87, "feet"),
  4057. name: "Maw",
  4058. image: {
  4059. source: "./media/characters/sosha/maw.svg",
  4060. extra: 966/865,
  4061. bottom: 0/966
  4062. }
  4063. },
  4064. cooch: {
  4065. height: math.unit(5.6, "feet"),
  4066. name: "Cooch",
  4067. image: {
  4068. source: "./media/characters/sosha/cooch.svg"
  4069. }
  4070. },
  4071. },
  4072. [
  4073. {
  4074. name: "Normal",
  4075. height: math.unit(12, "feet"),
  4076. default: true
  4077. }
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4082. {
  4083. side: {
  4084. height: math.unit(5 + 5 / 12, "feet"),
  4085. weight: math.unit(170, "kg"),
  4086. name: "Side",
  4087. image: {
  4088. source: "./media/characters/runnola/side.svg",
  4089. extra: 741 / 448,
  4090. bottom: 0.05
  4091. }
  4092. },
  4093. },
  4094. [
  4095. {
  4096. name: "Small",
  4097. height: math.unit(3, "feet")
  4098. },
  4099. {
  4100. name: "Normal",
  4101. height: math.unit(5 + 5 / 12, "feet"),
  4102. default: true
  4103. },
  4104. {
  4105. name: "Big",
  4106. height: math.unit(10, "feet")
  4107. },
  4108. ]
  4109. ))
  4110. characterMakers.push(() => makeCharacter(
  4111. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4112. {
  4113. front: {
  4114. height: math.unit(2, "meter"),
  4115. weight: math.unit(50, "kg"),
  4116. name: "Front",
  4117. image: {
  4118. source: "./media/characters/kurribird/front.svg",
  4119. bottom: 0.015
  4120. }
  4121. },
  4122. frontAlt: {
  4123. height: math.unit(1.5, "meter"),
  4124. weight: math.unit(50, "kg"),
  4125. name: "Front (Alt)",
  4126. image: {
  4127. source: "./media/characters/kurribird/front-alt.svg",
  4128. extra: 1.45
  4129. }
  4130. },
  4131. },
  4132. [
  4133. {
  4134. name: "Normal",
  4135. height: math.unit(7, "feet")
  4136. },
  4137. {
  4138. name: "Big",
  4139. height: math.unit(12, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Macro",
  4144. height: math.unit(1500, "feet")
  4145. },
  4146. {
  4147. name: "Megamacro",
  4148. height: math.unit(2, "miles")
  4149. }
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(2, "meter"),
  4157. weight: math.unit(80, "kg"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/elbial/front.svg",
  4161. extra: 1643 / 1556,
  4162. bottom: 60.2 / 1696
  4163. }
  4164. },
  4165. side: {
  4166. height: math.unit(2, "meter"),
  4167. weight: math.unit(80, "kg"),
  4168. name: "Side",
  4169. image: {
  4170. source: "./media/characters/elbial/side.svg",
  4171. extra: 1601/1528,
  4172. bottom: 97/1698
  4173. }
  4174. },
  4175. back: {
  4176. height: math.unit(2, "meter"),
  4177. weight: math.unit(80, "kg"),
  4178. name: "Back",
  4179. image: {
  4180. source: "./media/characters/elbial/back.svg",
  4181. extra: 1653/1569,
  4182. bottom: 20/1673
  4183. }
  4184. },
  4185. frontDressed: {
  4186. height: math.unit(2, "meter"),
  4187. weight: math.unit(80, "kg"),
  4188. name: "Front (Dressed)",
  4189. image: {
  4190. source: "./media/characters/elbial/front-dressed.svg",
  4191. extra: 1638/1569,
  4192. bottom: 70/1708
  4193. }
  4194. },
  4195. genitals: {
  4196. height: math.unit(2 / 3.367, "meter"),
  4197. name: "Genitals",
  4198. image: {
  4199. source: "./media/characters/elbial/genitals.svg"
  4200. }
  4201. },
  4202. },
  4203. [
  4204. {
  4205. name: "Large",
  4206. height: math.unit(100, "feet")
  4207. },
  4208. {
  4209. name: "Macro",
  4210. height: math.unit(500, "feet"),
  4211. default: true
  4212. },
  4213. {
  4214. name: "Megamacro",
  4215. height: math.unit(10, "miles")
  4216. },
  4217. {
  4218. name: "Gigamacro",
  4219. height: math.unit(25000, "miles")
  4220. },
  4221. {
  4222. name: "Full-Size",
  4223. height: math.unit(8000000, "gigaparsecs")
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4229. {
  4230. front: {
  4231. height: math.unit(2, "meter"),
  4232. weight: math.unit(60, "kg"),
  4233. name: "Front",
  4234. image: {
  4235. source: "./media/characters/noah/front.svg"
  4236. }
  4237. },
  4238. talons: {
  4239. height: math.unit(0.315, "meter"),
  4240. name: "Talons",
  4241. image: {
  4242. source: "./media/characters/noah/talons.svg"
  4243. }
  4244. }
  4245. },
  4246. [
  4247. {
  4248. name: "Large",
  4249. height: math.unit(50, "feet")
  4250. },
  4251. {
  4252. name: "Macro",
  4253. height: math.unit(750, "feet"),
  4254. default: true
  4255. },
  4256. {
  4257. name: "Megamacro",
  4258. height: math.unit(50, "miles")
  4259. },
  4260. {
  4261. name: "Gigamacro",
  4262. height: math.unit(100000, "miles")
  4263. },
  4264. {
  4265. name: "Full-Size",
  4266. height: math.unit(3000000000, "miles")
  4267. }
  4268. ]
  4269. ))
  4270. characterMakers.push(() => makeCharacter(
  4271. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4272. {
  4273. front: {
  4274. height: math.unit(2, "meter"),
  4275. weight: math.unit(80, "kg"),
  4276. name: "Front",
  4277. image: {
  4278. source: "./media/characters/natalya/front.svg"
  4279. }
  4280. },
  4281. back: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(80, "kg"),
  4284. name: "Back",
  4285. image: {
  4286. source: "./media/characters/natalya/back.svg"
  4287. }
  4288. }
  4289. },
  4290. [
  4291. {
  4292. name: "Normal",
  4293. height: math.unit(150, "feet"),
  4294. default: true
  4295. },
  4296. {
  4297. name: "Megamacro",
  4298. height: math.unit(5, "miles")
  4299. },
  4300. {
  4301. name: "Full-Size",
  4302. height: math.unit(600, "kiloparsecs")
  4303. }
  4304. ]
  4305. ))
  4306. characterMakers.push(() => makeCharacter(
  4307. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4308. {
  4309. front: {
  4310. height: math.unit(2, "meter"),
  4311. weight: math.unit(50, "kg"),
  4312. name: "Front",
  4313. image: {
  4314. source: "./media/characters/erestrebah/front.svg",
  4315. extra: 1262/1162,
  4316. bottom: 96/1358
  4317. }
  4318. },
  4319. back: {
  4320. height: math.unit(2, "meter"),
  4321. weight: math.unit(50, "kg"),
  4322. name: "Back",
  4323. image: {
  4324. source: "./media/characters/erestrebah/back.svg",
  4325. extra: 1257/1139,
  4326. bottom: 13/1270
  4327. }
  4328. },
  4329. wing: {
  4330. height: math.unit(2, "meter"),
  4331. weight: math.unit(50, "kg"),
  4332. name: "Wing",
  4333. image: {
  4334. source: "./media/characters/erestrebah/wing.svg",
  4335. extra: 1262/1162,
  4336. bottom: 96/1358
  4337. }
  4338. },
  4339. mouth: {
  4340. height: math.unit(0.39, "feet"),
  4341. name: "Mouth",
  4342. image: {
  4343. source: "./media/characters/erestrebah/mouth.svg"
  4344. }
  4345. }
  4346. },
  4347. [
  4348. {
  4349. name: "Normal",
  4350. height: math.unit(10, "feet")
  4351. },
  4352. {
  4353. name: "Large",
  4354. height: math.unit(50, "feet"),
  4355. default: true
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(300, "feet")
  4360. },
  4361. {
  4362. name: "Macro+",
  4363. height: math.unit(750, "feet")
  4364. },
  4365. {
  4366. name: "Megamacro",
  4367. height: math.unit(3, "miles")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(2, "meter"),
  4376. weight: math.unit(80, "kg"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/jennifer/front.svg",
  4380. bottom: 0.11,
  4381. extra: 1.16
  4382. }
  4383. },
  4384. frontAlt: {
  4385. height: math.unit(2, "meter"),
  4386. weight: math.unit(80, "kg"),
  4387. name: "Front (Alt)",
  4388. image: {
  4389. source: "./media/characters/jennifer/front-alt.svg"
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Canon Height",
  4396. height: math.unit(120, "feet"),
  4397. default: true
  4398. },
  4399. {
  4400. name: "Macro+",
  4401. height: math.unit(300, "feet")
  4402. },
  4403. {
  4404. name: "Megamacro",
  4405. height: math.unit(20000, "feet")
  4406. }
  4407. ]
  4408. ))
  4409. characterMakers.push(() => makeCharacter(
  4410. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4411. {
  4412. front: {
  4413. height: math.unit(2, "meter"),
  4414. weight: math.unit(50, "kg"),
  4415. name: "Front",
  4416. image: {
  4417. source: "./media/characters/kalista/front.svg",
  4418. extra: 1314/1145,
  4419. bottom: 101/1415
  4420. }
  4421. },
  4422. back: {
  4423. height: math.unit(2, "meter"),
  4424. weight: math.unit(50, "kg"),
  4425. name: "Back",
  4426. image: {
  4427. source: "./media/characters/kalista/back.svg",
  4428. extra: 1366 / 1156,
  4429. bottom: 33.9 / 1362.78
  4430. }
  4431. }
  4432. },
  4433. [
  4434. {
  4435. name: "Uncomfortably Small",
  4436. height: math.unit(10, "feet")
  4437. },
  4438. {
  4439. name: "Small",
  4440. height: math.unit(30, "feet")
  4441. },
  4442. {
  4443. name: "Macro",
  4444. height: math.unit(100, "feet"),
  4445. default: true
  4446. },
  4447. {
  4448. name: "Macro+",
  4449. height: math.unit(2000, "feet")
  4450. },
  4451. {
  4452. name: "True Form",
  4453. height: math.unit(8924, "miles")
  4454. }
  4455. ]
  4456. ))
  4457. characterMakers.push(() => makeCharacter(
  4458. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4459. {
  4460. front: {
  4461. height: math.unit(2, "meter"),
  4462. weight: math.unit(120, "kg"),
  4463. name: "Front",
  4464. image: {
  4465. source: "./media/characters/ggv/front.svg"
  4466. }
  4467. },
  4468. side: {
  4469. height: math.unit(2, "meter"),
  4470. weight: math.unit(120, "kg"),
  4471. name: "Side",
  4472. image: {
  4473. source: "./media/characters/ggv/side.svg"
  4474. }
  4475. }
  4476. },
  4477. [
  4478. {
  4479. name: "Extremely Puny",
  4480. height: math.unit(9 + 5 / 12, "feet")
  4481. },
  4482. {
  4483. name: "Horribly Small",
  4484. height: math.unit(47.7, "miles"),
  4485. default: true
  4486. },
  4487. {
  4488. name: "Reasonably Sized",
  4489. height: math.unit(25000, "parsecs")
  4490. },
  4491. {
  4492. name: "Slightly Uncompressed",
  4493. height: math.unit(7.77e31, "parsecs")
  4494. },
  4495. {
  4496. name: "Omniversal",
  4497. height: math.unit(1e300, "meters")
  4498. },
  4499. ]
  4500. ))
  4501. characterMakers.push(() => makeCharacter(
  4502. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4503. {
  4504. front: {
  4505. height: math.unit(2, "meter"),
  4506. weight: math.unit(75, "lb"),
  4507. name: "Front",
  4508. image: {
  4509. source: "./media/characters/napalm/front.svg"
  4510. }
  4511. },
  4512. back: {
  4513. height: math.unit(2, "meter"),
  4514. weight: math.unit(75, "lb"),
  4515. name: "Back",
  4516. image: {
  4517. source: "./media/characters/napalm/back.svg"
  4518. }
  4519. }
  4520. },
  4521. [
  4522. {
  4523. name: "Standard",
  4524. height: math.unit(55, "feet"),
  4525. default: true
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4531. {
  4532. front: {
  4533. height: math.unit(7 + 5 / 6, "feet"),
  4534. weight: math.unit(325, "lb"),
  4535. name: "Front",
  4536. image: {
  4537. source: "./media/characters/asana/front.svg",
  4538. extra: 1133 / 1060,
  4539. bottom: 15.2 / 1148.6
  4540. }
  4541. },
  4542. back: {
  4543. height: math.unit(7 + 5 / 6, "feet"),
  4544. weight: math.unit(325, "lb"),
  4545. name: "Back",
  4546. image: {
  4547. source: "./media/characters/asana/back.svg",
  4548. extra: 1114 / 1043,
  4549. bottom: 5 / 1120
  4550. }
  4551. },
  4552. dressedDark: {
  4553. height: math.unit(7 + 5 / 6, "feet"),
  4554. weight: math.unit(325, "lb"),
  4555. name: "Dressed (Dark)",
  4556. image: {
  4557. source: "./media/characters/asana/dressed-dark.svg",
  4558. extra: 1133 / 1060,
  4559. bottom: 15.2 / 1148.6
  4560. }
  4561. },
  4562. dressedLight: {
  4563. height: math.unit(7 + 5 / 6, "feet"),
  4564. weight: math.unit(325, "lb"),
  4565. name: "Dressed (Light)",
  4566. image: {
  4567. source: "./media/characters/asana/dressed-light.svg",
  4568. extra: 1133 / 1060,
  4569. bottom: 15.2 / 1148.6
  4570. }
  4571. },
  4572. },
  4573. [
  4574. {
  4575. name: "Standard",
  4576. height: math.unit(7 + 5 / 6, "feet"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Large",
  4581. height: math.unit(10, "meters")
  4582. },
  4583. {
  4584. name: "Macro",
  4585. height: math.unit(2500, "meters")
  4586. },
  4587. {
  4588. name: "Megamacro",
  4589. height: math.unit(5e6, "meters")
  4590. },
  4591. {
  4592. name: "Examacro",
  4593. height: math.unit(5e12, "lightyears")
  4594. },
  4595. {
  4596. name: "Max Size",
  4597. height: math.unit(1e31, "lightyears")
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(2, "meter"),
  4606. weight: math.unit(60, "kg"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/ebony/front.svg",
  4610. bottom: 0.03,
  4611. extra: 1045 / 810 + 0.03
  4612. }
  4613. },
  4614. side: {
  4615. height: math.unit(2, "meter"),
  4616. weight: math.unit(60, "kg"),
  4617. name: "Side",
  4618. image: {
  4619. source: "./media/characters/ebony/side.svg",
  4620. bottom: 0.03,
  4621. extra: 1045 / 810 + 0.03
  4622. }
  4623. },
  4624. back: {
  4625. height: math.unit(2, "meter"),
  4626. weight: math.unit(60, "kg"),
  4627. name: "Back",
  4628. image: {
  4629. source: "./media/characters/ebony/back.svg",
  4630. bottom: 0.01,
  4631. extra: 1045 / 810 + 0.01
  4632. }
  4633. },
  4634. },
  4635. [
  4636. // TODO check why I did this lol
  4637. {
  4638. name: "Standard",
  4639. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4640. default: true
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(200, "feet")
  4645. },
  4646. {
  4647. name: "Gigamacro",
  4648. height: math.unit(13000, "km")
  4649. }
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4654. {
  4655. front: {
  4656. height: math.unit(6, "feet"),
  4657. weight: math.unit(175, "lb"),
  4658. name: "Front",
  4659. image: {
  4660. source: "./media/characters/mountain/front.svg",
  4661. extra: 972 / 955,
  4662. bottom: 64 / 1036.6
  4663. }
  4664. },
  4665. back: {
  4666. height: math.unit(6, "feet"),
  4667. weight: math.unit(175, "lb"),
  4668. name: "Back",
  4669. image: {
  4670. source: "./media/characters/mountain/back.svg",
  4671. extra: 970 / 950,
  4672. bottom: 28.25 / 999
  4673. }
  4674. },
  4675. },
  4676. [
  4677. {
  4678. name: "Large",
  4679. height: math.unit(20, "meters")
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(300, "meters")
  4684. },
  4685. {
  4686. name: "Gigamacro",
  4687. height: math.unit(10000, "km"),
  4688. default: true
  4689. },
  4690. {
  4691. name: "Examacro",
  4692. height: math.unit(10e9, "lightyears")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(8, "feet"),
  4701. weight: math.unit(500, "lb"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/rick/front.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(8, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "Macro",
  4716. height: math.unit(5, "km")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(8, "feet"),
  4725. weight: math.unit(120, "lb"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/ona/front.svg"
  4729. }
  4730. },
  4731. frontAlt: {
  4732. height: math.unit(8, "feet"),
  4733. weight: math.unit(120, "lb"),
  4734. name: "Front (Alt)",
  4735. image: {
  4736. source: "./media/characters/ona/front-alt.svg"
  4737. }
  4738. },
  4739. back: {
  4740. height: math.unit(8, "feet"),
  4741. weight: math.unit(120, "lb"),
  4742. name: "Back",
  4743. image: {
  4744. source: "./media/characters/ona/back.svg"
  4745. }
  4746. },
  4747. foot: {
  4748. height: math.unit(1.1, "feet"),
  4749. name: "Foot",
  4750. image: {
  4751. source: "./media/characters/ona/foot.svg"
  4752. }
  4753. }
  4754. },
  4755. [
  4756. {
  4757. name: "Megamacro",
  4758. height: math.unit(70, "km"),
  4759. default: true
  4760. },
  4761. {
  4762. name: "Gigamacro",
  4763. height: math.unit(681818, "miles")
  4764. },
  4765. {
  4766. name: "Examacro",
  4767. height: math.unit(3800000, "lightyears")
  4768. },
  4769. ]
  4770. ))
  4771. characterMakers.push(() => makeCharacter(
  4772. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4773. {
  4774. front: {
  4775. height: math.unit(12, "feet"),
  4776. weight: math.unit(3000, "lb"),
  4777. name: "Front",
  4778. image: {
  4779. source: "./media/characters/mech/front.svg",
  4780. extra: 2900 / 2770,
  4781. bottom: 110 / 3010
  4782. }
  4783. },
  4784. back: {
  4785. height: math.unit(12, "feet"),
  4786. weight: math.unit(3000, "lb"),
  4787. name: "Back",
  4788. image: {
  4789. source: "./media/characters/mech/back.svg",
  4790. extra: 3011 / 2890,
  4791. bottom: 94 / 3105
  4792. }
  4793. },
  4794. maw: {
  4795. height: math.unit(3.07, "feet"),
  4796. name: "Maw",
  4797. image: {
  4798. source: "./media/characters/mech/maw.svg"
  4799. }
  4800. },
  4801. head: {
  4802. height: math.unit(3.07, "feet"),
  4803. name: "Head",
  4804. image: {
  4805. source: "./media/characters/mech/head.svg"
  4806. }
  4807. },
  4808. dick: {
  4809. height: math.unit(1.43, "feet"),
  4810. name: "Dick",
  4811. image: {
  4812. source: "./media/characters/mech/dick.svg"
  4813. }
  4814. },
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(12, "feet")
  4820. },
  4821. {
  4822. name: "Macro",
  4823. height: math.unit(300, "feet"),
  4824. default: true
  4825. },
  4826. {
  4827. name: "Macro+",
  4828. height: math.unit(1500, "feet")
  4829. },
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(1.3, "meter"),
  4837. weight: math.unit(30, "kg"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/gregory/front.svg",
  4841. }
  4842. }
  4843. },
  4844. [
  4845. {
  4846. name: "Normal",
  4847. height: math.unit(1.3, "meter"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Macro",
  4852. height: math.unit(20, "meter")
  4853. }
  4854. ]
  4855. ))
  4856. characterMakers.push(() => makeCharacter(
  4857. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4858. {
  4859. front: {
  4860. height: math.unit(2.8, "meter"),
  4861. weight: math.unit(200, "kg"),
  4862. name: "Front",
  4863. image: {
  4864. source: "./media/characters/elory/front.svg",
  4865. }
  4866. }
  4867. },
  4868. [
  4869. {
  4870. name: "Normal",
  4871. height: math.unit(2.8, "meter"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Macro",
  4876. height: math.unit(38, "meter")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(470, "feet"),
  4885. weight: math.unit(924, "tons"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/angelpatamon/front.svg",
  4889. }
  4890. }
  4891. },
  4892. [
  4893. {
  4894. name: "Normal",
  4895. height: math.unit(470, "feet"),
  4896. default: true
  4897. },
  4898. {
  4899. name: "Deity Size I",
  4900. height: math.unit(28651.2, "km")
  4901. },
  4902. {
  4903. name: "Deity Size II",
  4904. height: math.unit(171907.2, "km")
  4905. }
  4906. ]
  4907. ))
  4908. characterMakers.push(() => makeCharacter(
  4909. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4910. {
  4911. side: {
  4912. height: math.unit(7.2, "meter"),
  4913. weight: math.unit(8.2, "tons"),
  4914. name: "Side",
  4915. image: {
  4916. source: "./media/characters/cryae/side.svg",
  4917. extra: 3500 / 1500
  4918. }
  4919. }
  4920. },
  4921. [
  4922. {
  4923. name: "Normal",
  4924. height: math.unit(7.2, "meter"),
  4925. default: true
  4926. }
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4931. {
  4932. front: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(175, "lb"),
  4935. name: "Front",
  4936. image: {
  4937. source: "./media/characters/xera/front.svg",
  4938. extra: 2377 / 1972,
  4939. bottom: 75.5 / 2452
  4940. }
  4941. },
  4942. side: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(175, "lb"),
  4945. name: "Side",
  4946. image: {
  4947. source: "./media/characters/xera/side.svg",
  4948. extra: 2345 / 2019,
  4949. bottom: 39.7 / 2384
  4950. }
  4951. },
  4952. back: {
  4953. height: math.unit(6, "feet"),
  4954. weight: math.unit(175, "lb"),
  4955. name: "Back",
  4956. image: {
  4957. source: "./media/characters/xera/back.svg",
  4958. extra: 2095 / 1984,
  4959. bottom: 67 / 2166
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Small",
  4966. height: math.unit(10, "feet")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(500, "meters"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro+",
  4975. height: math.unit(10, "km")
  4976. },
  4977. {
  4978. name: "Gigamacro",
  4979. height: math.unit(25000, "km")
  4980. },
  4981. {
  4982. name: "Teramacro",
  4983. height: math.unit(3e6, "km")
  4984. }
  4985. ]
  4986. ))
  4987. characterMakers.push(() => makeCharacter(
  4988. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4989. {
  4990. front: {
  4991. height: math.unit(6, "feet"),
  4992. weight: math.unit(175, "lb"),
  4993. name: "Front",
  4994. image: {
  4995. source: "./media/characters/nebula/front.svg",
  4996. extra: 2566 / 2362,
  4997. bottom: 81 / 2644
  4998. }
  4999. }
  5000. },
  5001. [
  5002. {
  5003. name: "Small",
  5004. height: math.unit(4.5, "meters")
  5005. },
  5006. {
  5007. name: "Macro",
  5008. height: math.unit(1500, "meters"),
  5009. default: true
  5010. },
  5011. {
  5012. name: "Megamacro",
  5013. height: math.unit(150, "km")
  5014. },
  5015. {
  5016. name: "Gigamacro",
  5017. height: math.unit(27000, "km")
  5018. }
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5023. {
  5024. front: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(225, "lb"),
  5027. name: "Front",
  5028. image: {
  5029. source: "./media/characters/abysgar/front.svg",
  5030. extra: 1739/1614,
  5031. bottom: 71/1810
  5032. }
  5033. },
  5034. frontNsfw: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(225, "lb"),
  5037. name: "Front (NSFW)",
  5038. image: {
  5039. source: "./media/characters/abysgar/front-nsfw.svg",
  5040. extra: 1739/1614,
  5041. bottom: 71/1810
  5042. }
  5043. },
  5044. back: {
  5045. height: math.unit(4.6, "feet"),
  5046. weight: math.unit(225, "lb"),
  5047. name: "Back",
  5048. image: {
  5049. source: "./media/characters/abysgar/back.svg",
  5050. extra: 1384/1327,
  5051. bottom: 0/1384
  5052. }
  5053. },
  5054. head: {
  5055. height: math.unit(1.25, "feet"),
  5056. name: "Head",
  5057. image: {
  5058. source: "./media/characters/abysgar/head.svg",
  5059. extra: 669/569,
  5060. bottom: 0/669
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Small",
  5067. height: math.unit(4.5, "meters")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(1250, "meters"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Megamacro",
  5076. height: math.unit(125, "km")
  5077. },
  5078. {
  5079. name: "Gigamacro",
  5080. height: math.unit(26000, "km")
  5081. }
  5082. ]
  5083. ))
  5084. characterMakers.push(() => makeCharacter(
  5085. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5086. {
  5087. front: {
  5088. height: math.unit(6, "feet"),
  5089. weight: math.unit(180, "lb"),
  5090. name: "Front",
  5091. image: {
  5092. source: "./media/characters/yakuz/front.svg"
  5093. }
  5094. }
  5095. },
  5096. [
  5097. {
  5098. name: "Small",
  5099. height: math.unit(5, "meters")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(1500, "meters"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Megamacro",
  5108. height: math.unit(200, "km")
  5109. },
  5110. {
  5111. name: "Gigamacro",
  5112. height: math.unit(100000, "km")
  5113. }
  5114. ]
  5115. ))
  5116. characterMakers.push(() => makeCharacter(
  5117. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5118. {
  5119. front: {
  5120. height: math.unit(6, "feet"),
  5121. weight: math.unit(175, "lb"),
  5122. name: "Front",
  5123. image: {
  5124. source: "./media/characters/mirova/front.svg",
  5125. extra: 3334 / 3071,
  5126. bottom: 42 / 3375.6
  5127. }
  5128. }
  5129. },
  5130. [
  5131. {
  5132. name: "Small",
  5133. height: math.unit(5, "meters")
  5134. },
  5135. {
  5136. name: "Macro",
  5137. height: math.unit(900, "meters"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Megamacro",
  5142. height: math.unit(135, "km")
  5143. },
  5144. {
  5145. name: "Gigamacro",
  5146. height: math.unit(20000, "km")
  5147. }
  5148. ]
  5149. ))
  5150. characterMakers.push(() => makeCharacter(
  5151. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5152. {
  5153. side: {
  5154. height: math.unit(28.35, "feet"),
  5155. weight: math.unit(99.75, "tons"),
  5156. name: "Side",
  5157. image: {
  5158. source: "./media/characters/asana-mech/side.svg",
  5159. extra: 923 / 699,
  5160. bottom: 50 / 975
  5161. }
  5162. },
  5163. chaingun: {
  5164. height: math.unit(7, "feet"),
  5165. weight: math.unit(2400, "lb"),
  5166. name: "Chaingun",
  5167. image: {
  5168. source: "./media/characters/asana-mech/chaingun.svg"
  5169. }
  5170. },
  5171. laser: {
  5172. height: math.unit(7.12, "feet"),
  5173. weight: math.unit(2000, "lb"),
  5174. name: "Laser",
  5175. image: {
  5176. source: "./media/characters/asana-mech/laser.svg"
  5177. }
  5178. },
  5179. },
  5180. [
  5181. {
  5182. name: "Normal",
  5183. height: math.unit(28.35, "feet"),
  5184. default: true
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(2500, "feet")
  5189. },
  5190. {
  5191. name: "Megamacro",
  5192. height: math.unit(25, "miles")
  5193. },
  5194. {
  5195. name: "Examacro",
  5196. height: math.unit(6e8, "lightyears")
  5197. },
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5202. {
  5203. front: {
  5204. height: math.unit(5, "meters"),
  5205. weight: math.unit(1000, "kg"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/asche/front.svg",
  5209. extra: 1258 / 1190,
  5210. bottom: 47 / 1305
  5211. }
  5212. },
  5213. frontUnderwear: {
  5214. height: math.unit(5, "meters"),
  5215. weight: math.unit(1000, "kg"),
  5216. name: "Front (Underwear)",
  5217. image: {
  5218. source: "./media/characters/asche/front-underwear.svg",
  5219. extra: 1258 / 1190,
  5220. bottom: 47 / 1305
  5221. }
  5222. },
  5223. frontDressed: {
  5224. height: math.unit(5, "meters"),
  5225. weight: math.unit(1000, "kg"),
  5226. name: "Front (Dressed)",
  5227. image: {
  5228. source: "./media/characters/asche/front-dressed.svg",
  5229. extra: 1258 / 1190,
  5230. bottom: 47 / 1305
  5231. }
  5232. },
  5233. frontArmor: {
  5234. height: math.unit(5, "meters"),
  5235. weight: math.unit(1000, "kg"),
  5236. name: "Front (Armored)",
  5237. image: {
  5238. source: "./media/characters/asche/front-armored.svg",
  5239. extra: 1374 / 1308,
  5240. bottom: 23 / 1397
  5241. }
  5242. },
  5243. mp724: {
  5244. height: math.unit(0.96, "meters"),
  5245. weight: math.unit(38, "kg"),
  5246. name: "H&K MP724",
  5247. image: {
  5248. source: "./media/characters/asche/h&k-mp724.svg"
  5249. }
  5250. },
  5251. side: {
  5252. height: math.unit(5, "meters"),
  5253. weight: math.unit(1000, "kg"),
  5254. name: "Side",
  5255. image: {
  5256. source: "./media/characters/asche/side.svg",
  5257. extra: 1717 / 1609,
  5258. bottom: 0.005
  5259. }
  5260. },
  5261. back: {
  5262. height: math.unit(5, "meters"),
  5263. weight: math.unit(1000, "kg"),
  5264. name: "Back",
  5265. image: {
  5266. source: "./media/characters/asche/back.svg",
  5267. extra: 1570 / 1501
  5268. }
  5269. },
  5270. },
  5271. [
  5272. {
  5273. name: "DEFCON 5",
  5274. height: math.unit(5, "meters")
  5275. },
  5276. {
  5277. name: "DEFCON 4",
  5278. height: math.unit(500, "meters"),
  5279. default: true
  5280. },
  5281. {
  5282. name: "DEFCON 3",
  5283. height: math.unit(5, "km")
  5284. },
  5285. {
  5286. name: "DEFCON 2",
  5287. height: math.unit(500, "km")
  5288. },
  5289. {
  5290. name: "DEFCON 1",
  5291. height: math.unit(500000, "km")
  5292. },
  5293. {
  5294. name: "DEFCON 0",
  5295. height: math.unit(3, "gigaparsecs")
  5296. },
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5301. {
  5302. front: {
  5303. height: math.unit(7, "feet"),
  5304. weight: math.unit(92.7, "kg"),
  5305. name: "Front",
  5306. image: {
  5307. source: "./media/characters/gale/front.svg",
  5308. extra: 977/919,
  5309. bottom: 105/1082
  5310. }
  5311. },
  5312. side: {
  5313. height: math.unit(6.7, "feet"),
  5314. weight: math.unit(92.7, "kg"),
  5315. name: "Side",
  5316. image: {
  5317. source: "./media/characters/gale/side.svg",
  5318. extra: 978/922,
  5319. bottom: 140/1118
  5320. }
  5321. },
  5322. back: {
  5323. height: math.unit(7, "feet"),
  5324. weight: math.unit(92.7, "kg"),
  5325. name: "Back",
  5326. image: {
  5327. source: "./media/characters/gale/back.svg",
  5328. extra: 966/920,
  5329. bottom: 61/1027
  5330. }
  5331. },
  5332. maw: {
  5333. height: math.unit(2.23, "feet"),
  5334. name: "Maw",
  5335. image: {
  5336. source: "./media/characters/gale/maw.svg"
  5337. }
  5338. },
  5339. foot: {
  5340. height: math.unit(2.1, "feet"),
  5341. name: "Foot",
  5342. image: {
  5343. source: "./media/characters/gale/foot.svg"
  5344. }
  5345. },
  5346. },
  5347. [
  5348. {
  5349. name: "Normal",
  5350. height: math.unit(7, "feet")
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(150, "feet"),
  5355. default: true
  5356. },
  5357. {
  5358. name: "Macro+",
  5359. height: math.unit(300, "feet")
  5360. },
  5361. ]
  5362. ))
  5363. characterMakers.push(() => makeCharacter(
  5364. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5365. {
  5366. front: {
  5367. height: math.unit(5 + 10/12, "feet"),
  5368. weight: math.unit(67, "kg"),
  5369. name: "Front",
  5370. image: {
  5371. source: "./media/characters/draylen/front.svg",
  5372. extra: 832/777,
  5373. bottom: 85/917
  5374. }
  5375. }
  5376. },
  5377. [
  5378. {
  5379. name: "Normal",
  5380. height: math.unit(5 + 10/12, "feet")
  5381. },
  5382. {
  5383. name: "Macro",
  5384. height: math.unit(150, "feet"),
  5385. default: true
  5386. }
  5387. ]
  5388. ))
  5389. characterMakers.push(() => makeCharacter(
  5390. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5391. {
  5392. front: {
  5393. height: math.unit(7 + 9 / 12, "feet"),
  5394. weight: math.unit(379, "lbs"),
  5395. name: "Front",
  5396. image: {
  5397. source: "./media/characters/chez/front.svg"
  5398. }
  5399. },
  5400. side: {
  5401. height: math.unit(7 + 9 / 12, "feet"),
  5402. weight: math.unit(379, "lbs"),
  5403. name: "Side",
  5404. image: {
  5405. source: "./media/characters/chez/side.svg"
  5406. }
  5407. }
  5408. },
  5409. [
  5410. {
  5411. name: "Normal",
  5412. height: math.unit(7 + 9 / 12, "feet"),
  5413. default: true
  5414. },
  5415. {
  5416. name: "God King",
  5417. height: math.unit(9750000, "meters")
  5418. }
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5423. {
  5424. front: {
  5425. height: math.unit(6, "feet"),
  5426. weight: math.unit(275, "lbs"),
  5427. name: "Front",
  5428. image: {
  5429. source: "./media/characters/kaylum/front.svg",
  5430. bottom: 0.01,
  5431. extra: 1166 / 1031
  5432. }
  5433. },
  5434. frontWingless: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(275, "lbs"),
  5437. name: "Front (Wingless)",
  5438. image: {
  5439. source: "./media/characters/kaylum/front-wingless.svg",
  5440. bottom: 0.01,
  5441. extra: 1117 / 1031
  5442. }
  5443. }
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(3.05, "meters")
  5449. },
  5450. {
  5451. name: "Master",
  5452. height: math.unit(5.5, "meters")
  5453. },
  5454. {
  5455. name: "Rampage",
  5456. height: math.unit(19, "meters")
  5457. },
  5458. {
  5459. name: "Macro Lite",
  5460. height: math.unit(37, "meters")
  5461. },
  5462. {
  5463. name: "Hyper Predator",
  5464. height: math.unit(61, "meters")
  5465. },
  5466. {
  5467. name: "Macro",
  5468. height: math.unit(138, "meters"),
  5469. default: true
  5470. }
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(5 + 5 / 12, "feet"),
  5478. weight: math.unit(120, "lbs"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/geta/front.svg",
  5482. extra: 1003/933,
  5483. bottom: 21/1024
  5484. }
  5485. },
  5486. paw: {
  5487. height: math.unit(0.35, "feet"),
  5488. name: "Paw",
  5489. image: {
  5490. source: "./media/characters/geta/paw.svg"
  5491. }
  5492. },
  5493. },
  5494. [
  5495. {
  5496. name: "Micro",
  5497. height: math.unit(3, "inches"),
  5498. default: true
  5499. },
  5500. {
  5501. name: "Normal",
  5502. height: math.unit(5 + 5 / 12, "feet")
  5503. }
  5504. ]
  5505. ))
  5506. characterMakers.push(() => makeCharacter(
  5507. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5508. {
  5509. front: {
  5510. height: math.unit(6, "feet"),
  5511. weight: math.unit(300, "lbs"),
  5512. name: "Front",
  5513. image: {
  5514. source: "./media/characters/tyrnn/front.svg"
  5515. }
  5516. }
  5517. },
  5518. [
  5519. {
  5520. name: "Main Height",
  5521. height: math.unit(355, "feet"),
  5522. default: true
  5523. },
  5524. {
  5525. name: "Fave. Height",
  5526. height: math.unit(2400, "feet")
  5527. }
  5528. ]
  5529. ))
  5530. characterMakers.push(() => makeCharacter(
  5531. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5532. {
  5533. front: {
  5534. height: math.unit(6, "feet"),
  5535. weight: math.unit(300, "lbs"),
  5536. name: "Front",
  5537. image: {
  5538. source: "./media/characters/appledectomy/front.svg"
  5539. }
  5540. }
  5541. },
  5542. [
  5543. {
  5544. name: "Macro",
  5545. height: math.unit(2500, "feet")
  5546. },
  5547. {
  5548. name: "Megamacro",
  5549. height: math.unit(50, "miles"),
  5550. default: true
  5551. },
  5552. {
  5553. name: "Gigamacro",
  5554. height: math.unit(5000, "miles")
  5555. },
  5556. {
  5557. name: "Teramacro",
  5558. height: math.unit(250000, "miles")
  5559. },
  5560. ]
  5561. ))
  5562. characterMakers.push(() => makeCharacter(
  5563. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5564. {
  5565. front: {
  5566. height: math.unit(6, "feet"),
  5567. weight: math.unit(200, "lbs"),
  5568. name: "Front",
  5569. image: {
  5570. source: "./media/characters/vulpes/front.svg",
  5571. extra: 573 / 543,
  5572. bottom: 0.033
  5573. }
  5574. },
  5575. side: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(200, "lbs"),
  5578. name: "Side",
  5579. image: {
  5580. source: "./media/characters/vulpes/side.svg",
  5581. extra: 577 / 549,
  5582. bottom: 11 / 588
  5583. }
  5584. },
  5585. back: {
  5586. height: math.unit(6, "feet"),
  5587. weight: math.unit(200, "lbs"),
  5588. name: "Back",
  5589. image: {
  5590. source: "./media/characters/vulpes/back.svg",
  5591. extra: 573 / 549,
  5592. bottom: 20 / 593
  5593. }
  5594. },
  5595. feet: {
  5596. height: math.unit(1.276, "feet"),
  5597. name: "Feet",
  5598. image: {
  5599. source: "./media/characters/vulpes/feet.svg"
  5600. }
  5601. },
  5602. maw: {
  5603. height: math.unit(1.18, "feet"),
  5604. name: "Maw",
  5605. image: {
  5606. source: "./media/characters/vulpes/maw.svg"
  5607. }
  5608. },
  5609. },
  5610. [
  5611. {
  5612. name: "Micro",
  5613. height: math.unit(2, "inches")
  5614. },
  5615. {
  5616. name: "Normal",
  5617. height: math.unit(6.3, "feet")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(850, "feet")
  5622. },
  5623. {
  5624. name: "Megamacro",
  5625. height: math.unit(7500, "feet"),
  5626. default: true
  5627. },
  5628. {
  5629. name: "Gigamacro",
  5630. height: math.unit(570000, "miles")
  5631. }
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5636. {
  5637. front: {
  5638. height: math.unit(6, "feet"),
  5639. weight: math.unit(210, "lbs"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/rain-fallen/front.svg"
  5643. }
  5644. },
  5645. side: {
  5646. height: math.unit(6, "feet"),
  5647. weight: math.unit(210, "lbs"),
  5648. name: "Side",
  5649. image: {
  5650. source: "./media/characters/rain-fallen/side.svg"
  5651. }
  5652. },
  5653. back: {
  5654. height: math.unit(6, "feet"),
  5655. weight: math.unit(210, "lbs"),
  5656. name: "Back",
  5657. image: {
  5658. source: "./media/characters/rain-fallen/back.svg"
  5659. }
  5660. },
  5661. feral: {
  5662. height: math.unit(9, "feet"),
  5663. weight: math.unit(700, "lbs"),
  5664. name: "Feral",
  5665. image: {
  5666. source: "./media/characters/rain-fallen/feral.svg"
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Meddling with Mortals",
  5673. height: math.unit(8 + 8/12, "feet")
  5674. },
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(5, "meter")
  5678. },
  5679. {
  5680. name: "Macro",
  5681. height: math.unit(150, "meter"),
  5682. default: true
  5683. },
  5684. {
  5685. name: "Megamacro",
  5686. height: math.unit(278e6, "meter")
  5687. },
  5688. {
  5689. name: "Gigamacro",
  5690. height: math.unit(2e9, "meter")
  5691. },
  5692. {
  5693. name: "Teramacro",
  5694. height: math.unit(8e12, "meter")
  5695. },
  5696. {
  5697. name: "Devourer",
  5698. height: math.unit(14, "zettameters")
  5699. },
  5700. {
  5701. name: "Scarlet King",
  5702. height: math.unit(18, "yottameters")
  5703. },
  5704. {
  5705. name: "Void",
  5706. height: math.unit(1e88, "yottameters")
  5707. }
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5712. {
  5713. standing: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(180, "lbs"),
  5716. name: "Standing",
  5717. image: {
  5718. source: "./media/characters/zaakira/standing.svg",
  5719. extra: 1599/1504,
  5720. bottom: 39/1638
  5721. }
  5722. },
  5723. laying: {
  5724. height: math.unit(3.3, "feet"),
  5725. weight: math.unit(180, "lbs"),
  5726. name: "Laying",
  5727. image: {
  5728. source: "./media/characters/zaakira/laying.svg"
  5729. }
  5730. },
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(12, "feet")
  5736. },
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(279, "feet"),
  5740. default: true
  5741. }
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5746. {
  5747. femSfw: {
  5748. height: math.unit(8, "feet"),
  5749. weight: math.unit(350, "lb"),
  5750. name: "Fem",
  5751. image: {
  5752. source: "./media/characters/sigvald/fem-sfw.svg",
  5753. extra: 182 / 164,
  5754. bottom: 8.7 / 190.5
  5755. }
  5756. },
  5757. femNsfw: {
  5758. height: math.unit(8, "feet"),
  5759. weight: math.unit(350, "lb"),
  5760. name: "Fem (NSFW)",
  5761. image: {
  5762. source: "./media/characters/sigvald/fem-nsfw.svg",
  5763. extra: 182 / 164,
  5764. bottom: 8.7 / 190.5
  5765. }
  5766. },
  5767. maleNsfw: {
  5768. height: math.unit(8, "feet"),
  5769. weight: math.unit(350, "lb"),
  5770. name: "Male (NSFW)",
  5771. image: {
  5772. source: "./media/characters/sigvald/male-nsfw.svg",
  5773. extra: 182 / 164,
  5774. bottom: 8.7 / 190.5
  5775. }
  5776. },
  5777. hermNsfw: {
  5778. height: math.unit(8, "feet"),
  5779. weight: math.unit(350, "lb"),
  5780. name: "Herm (NSFW)",
  5781. image: {
  5782. source: "./media/characters/sigvald/herm-nsfw.svg",
  5783. extra: 182 / 164,
  5784. bottom: 8.7 / 190.5
  5785. }
  5786. },
  5787. dick: {
  5788. height: math.unit(2.36, "feet"),
  5789. name: "Dick",
  5790. image: {
  5791. source: "./media/characters/sigvald/dick.svg"
  5792. }
  5793. },
  5794. eye: {
  5795. height: math.unit(0.31, "feet"),
  5796. name: "Eye",
  5797. image: {
  5798. source: "./media/characters/sigvald/eye.svg"
  5799. }
  5800. },
  5801. mouth: {
  5802. height: math.unit(0.92, "feet"),
  5803. name: "Mouth",
  5804. image: {
  5805. source: "./media/characters/sigvald/mouth.svg"
  5806. }
  5807. },
  5808. paws: {
  5809. height: math.unit(2.2, "feet"),
  5810. name: "Paws",
  5811. image: {
  5812. source: "./media/characters/sigvald/paws.svg"
  5813. }
  5814. }
  5815. },
  5816. [
  5817. {
  5818. name: "Normal",
  5819. height: math.unit(8, "feet")
  5820. },
  5821. {
  5822. name: "Large",
  5823. height: math.unit(12, "feet")
  5824. },
  5825. {
  5826. name: "Larger",
  5827. height: math.unit(20, "feet")
  5828. },
  5829. {
  5830. name: "Macro",
  5831. height: math.unit(150, "feet")
  5832. },
  5833. {
  5834. name: "Macro+",
  5835. height: math.unit(200, "feet"),
  5836. default: true
  5837. },
  5838. ]
  5839. ))
  5840. characterMakers.push(() => makeCharacter(
  5841. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5842. {
  5843. side: {
  5844. height: math.unit(12, "feet"),
  5845. weight: math.unit(2000, "kg"),
  5846. name: "Side",
  5847. image: {
  5848. source: "./media/characters/scott/side.svg",
  5849. extra: 754 / 724,
  5850. bottom: 0.069
  5851. }
  5852. },
  5853. upright: {
  5854. height: math.unit(12, "feet"),
  5855. weight: math.unit(2000, "kg"),
  5856. name: "Upright",
  5857. image: {
  5858. source: "./media/characters/scott/upright.svg",
  5859. extra: 3881 / 3722,
  5860. bottom: 0.05
  5861. }
  5862. },
  5863. },
  5864. [
  5865. {
  5866. name: "Normal",
  5867. height: math.unit(12, "feet"),
  5868. default: true
  5869. },
  5870. ]
  5871. ))
  5872. characterMakers.push(() => makeCharacter(
  5873. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5874. {
  5875. side: {
  5876. height: math.unit(8, "meters"),
  5877. weight: math.unit(84755, "lbs"),
  5878. name: "Side",
  5879. image: {
  5880. source: "./media/characters/tobias/side.svg",
  5881. extra: 1474 / 1096,
  5882. bottom: 38.9 / 1513.1235
  5883. }
  5884. },
  5885. },
  5886. [
  5887. {
  5888. name: "Normal",
  5889. height: math.unit(8, "meters"),
  5890. default: true
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5896. {
  5897. front: {
  5898. height: math.unit(5.5, "feet"),
  5899. weight: math.unit(400, "lbs"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/kieran/front.svg",
  5903. extra: 2694 / 2364,
  5904. bottom: 217 / 2908
  5905. }
  5906. },
  5907. side: {
  5908. height: math.unit(5.5, "feet"),
  5909. weight: math.unit(400, "lbs"),
  5910. name: "Side",
  5911. image: {
  5912. source: "./media/characters/kieran/side.svg",
  5913. extra: 875 / 777,
  5914. bottom: 84.6 / 959
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(5.5, "feet"),
  5922. default: true
  5923. },
  5924. ]
  5925. ))
  5926. characterMakers.push(() => makeCharacter(
  5927. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5928. {
  5929. side: {
  5930. height: math.unit(2, "meters"),
  5931. weight: math.unit(70, "kg"),
  5932. name: "Side",
  5933. image: {
  5934. source: "./media/characters/sanya/side.svg",
  5935. bottom: 0.02,
  5936. extra: 1.02
  5937. }
  5938. },
  5939. },
  5940. [
  5941. {
  5942. name: "Small",
  5943. height: math.unit(2, "meters")
  5944. },
  5945. {
  5946. name: "Normal",
  5947. height: math.unit(3, "meters")
  5948. },
  5949. {
  5950. name: "Macro",
  5951. height: math.unit(16, "meters"),
  5952. default: true
  5953. },
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5958. {
  5959. front: {
  5960. height: math.unit(2, "meters"),
  5961. weight: math.unit(120, "kg"),
  5962. name: "Front",
  5963. image: {
  5964. source: "./media/characters/miranda/front.svg",
  5965. extra: 195 / 185,
  5966. bottom: 10.9 / 206.5
  5967. }
  5968. },
  5969. back: {
  5970. height: math.unit(2, "meters"),
  5971. weight: math.unit(120, "kg"),
  5972. name: "Back",
  5973. image: {
  5974. source: "./media/characters/miranda/back.svg",
  5975. extra: 201 / 193,
  5976. bottom: 2.3 / 203.7
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(10, "feet"),
  5984. default: true
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "James", species: ["deer"], tags: ["anthro"] },
  5990. {
  5991. side: {
  5992. height: math.unit(2, "meters"),
  5993. weight: math.unit(100, "kg"),
  5994. name: "Front",
  5995. image: {
  5996. source: "./media/characters/james/front.svg",
  5997. extra: 10 / 8.5
  5998. }
  5999. },
  6000. },
  6001. [
  6002. {
  6003. name: "Normal",
  6004. height: math.unit(8.5, "feet"),
  6005. default: true
  6006. }
  6007. ]
  6008. ))
  6009. characterMakers.push(() => makeCharacter(
  6010. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6011. {
  6012. side: {
  6013. height: math.unit(9.5, "feet"),
  6014. weight: math.unit(2500, "lbs"),
  6015. name: "Side",
  6016. image: {
  6017. source: "./media/characters/heather/side.svg"
  6018. }
  6019. },
  6020. },
  6021. [
  6022. {
  6023. name: "Normal",
  6024. height: math.unit(9.5, "feet"),
  6025. default: true
  6026. }
  6027. ]
  6028. ))
  6029. characterMakers.push(() => makeCharacter(
  6030. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6031. {
  6032. side: {
  6033. height: math.unit(6.5, "feet"),
  6034. weight: math.unit(400, "lbs"),
  6035. name: "Side",
  6036. image: {
  6037. source: "./media/characters/lukas/side.svg",
  6038. extra: 7.25 / 6.5
  6039. }
  6040. },
  6041. },
  6042. [
  6043. {
  6044. name: "Normal",
  6045. height: math.unit(6.5, "feet"),
  6046. default: true
  6047. }
  6048. ]
  6049. ))
  6050. characterMakers.push(() => makeCharacter(
  6051. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6052. {
  6053. side: {
  6054. height: math.unit(5, "feet"),
  6055. weight: math.unit(3000, "lbs"),
  6056. name: "Side",
  6057. image: {
  6058. source: "./media/characters/louise/side.svg"
  6059. }
  6060. },
  6061. },
  6062. [
  6063. {
  6064. name: "Normal",
  6065. height: math.unit(5, "feet"),
  6066. default: true
  6067. }
  6068. ]
  6069. ))
  6070. characterMakers.push(() => makeCharacter(
  6071. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6072. {
  6073. side: {
  6074. height: math.unit(6, "feet"),
  6075. weight: math.unit(150, "lbs"),
  6076. name: "Side",
  6077. image: {
  6078. source: "./media/characters/ramona/side.svg",
  6079. extra: 871/854,
  6080. bottom: 41/912
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(6 + 4/12, "feet")
  6088. },
  6089. {
  6090. name: "Minimacro",
  6091. height: math.unit(5.3, "meters"),
  6092. default: true
  6093. },
  6094. {
  6095. name: "Macro",
  6096. height: math.unit(20, "stories")
  6097. },
  6098. {
  6099. name: "Macro+",
  6100. height: math.unit(50, "stories")
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6106. {
  6107. standing: {
  6108. height: math.unit(5.75, "feet"),
  6109. weight: math.unit(160, "lbs"),
  6110. name: "Standing",
  6111. image: {
  6112. source: "./media/characters/deerpuff/standing.svg",
  6113. extra: 682 / 624
  6114. }
  6115. },
  6116. sitting: {
  6117. height: math.unit(5.75 / 1.79, "feet"),
  6118. weight: math.unit(160, "lbs"),
  6119. name: "Sitting",
  6120. image: {
  6121. source: "./media/characters/deerpuff/sitting.svg",
  6122. bottom: 44 / 400,
  6123. extra: 1
  6124. }
  6125. },
  6126. taurLaying: {
  6127. height: math.unit(6, "feet"),
  6128. weight: math.unit(400, "lbs"),
  6129. name: "Taur (Laying)",
  6130. image: {
  6131. source: "./media/characters/deerpuff/taur-laying.svg"
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Puffball",
  6138. height: math.unit(6, "inches")
  6139. },
  6140. {
  6141. name: "Normalpuff",
  6142. height: math.unit(5.75, "feet")
  6143. },
  6144. {
  6145. name: "Macropuff",
  6146. height: math.unit(1500, "feet"),
  6147. default: true
  6148. },
  6149. {
  6150. name: "Megapuff",
  6151. height: math.unit(500, "miles")
  6152. },
  6153. {
  6154. name: "Gigapuff",
  6155. height: math.unit(250000, "miles")
  6156. },
  6157. {
  6158. name: "Omegapuff",
  6159. height: math.unit(1000, "lightyears")
  6160. },
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6165. {
  6166. stomping: {
  6167. height: math.unit(6, "feet"),
  6168. weight: math.unit(170, "lbs"),
  6169. name: "Stomping",
  6170. image: {
  6171. source: "./media/characters/vivian/stomping.svg"
  6172. }
  6173. },
  6174. sitting: {
  6175. height: math.unit(6 / 1.75, "feet"),
  6176. weight: math.unit(170, "lbs"),
  6177. name: "Sitting",
  6178. image: {
  6179. source: "./media/characters/vivian/sitting.svg",
  6180. bottom: 1 / 6.4,
  6181. extra: 1,
  6182. }
  6183. },
  6184. },
  6185. [
  6186. {
  6187. name: "Normal",
  6188. height: math.unit(7, "feet"),
  6189. default: true
  6190. },
  6191. {
  6192. name: "Macro",
  6193. height: math.unit(10, "stories")
  6194. },
  6195. {
  6196. name: "Macro+",
  6197. height: math.unit(30, "stories")
  6198. },
  6199. {
  6200. name: "Megamacro",
  6201. height: math.unit(10, "miles")
  6202. },
  6203. {
  6204. name: "Megamacro+",
  6205. height: math.unit(2750000, "meters")
  6206. },
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6211. {
  6212. front: {
  6213. height: math.unit(6, "feet"),
  6214. weight: math.unit(160, "lbs"),
  6215. name: "Front",
  6216. image: {
  6217. source: "./media/characters/prince/front.svg",
  6218. extra: 1938/1682,
  6219. bottom: 45/1983
  6220. }
  6221. },
  6222. back: {
  6223. height: math.unit(6, "feet"),
  6224. weight: math.unit(160, "lbs"),
  6225. name: "Back",
  6226. image: {
  6227. source: "./media/characters/prince/back.svg",
  6228. extra: 1955/1726,
  6229. bottom: 6/1961
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(7.75, "feet"),
  6237. default: true
  6238. },
  6239. {
  6240. name: "Not cute",
  6241. height: math.unit(17, "feet")
  6242. },
  6243. {
  6244. name: "I said NOT",
  6245. height: math.unit(91, "feet")
  6246. },
  6247. {
  6248. name: "Please stop",
  6249. height: math.unit(560, "feet")
  6250. },
  6251. {
  6252. name: "What have you done",
  6253. height: math.unit(2200, "feet")
  6254. },
  6255. {
  6256. name: "Deer God",
  6257. height: math.unit(3.6, "miles")
  6258. },
  6259. ]
  6260. ))
  6261. characterMakers.push(() => makeCharacter(
  6262. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6263. {
  6264. standing: {
  6265. height: math.unit(6, "feet"),
  6266. weight: math.unit(300, "lbs"),
  6267. name: "Standing",
  6268. image: {
  6269. source: "./media/characters/psymon/standing.svg",
  6270. extra: 1888 / 1810,
  6271. bottom: 0.05
  6272. }
  6273. },
  6274. slithering: {
  6275. height: math.unit(6, "feet"),
  6276. weight: math.unit(300, "lbs"),
  6277. name: "Slithering",
  6278. image: {
  6279. source: "./media/characters/psymon/slithering.svg",
  6280. extra: 1330 / 1224
  6281. }
  6282. },
  6283. slitheringAlt: {
  6284. height: math.unit(6, "feet"),
  6285. weight: math.unit(300, "lbs"),
  6286. name: "Slithering (Alt)",
  6287. image: {
  6288. source: "./media/characters/psymon/slithering-alt.svg",
  6289. extra: 1330 / 1224
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(11.25, "feet"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Large",
  6301. height: math.unit(27, "feet")
  6302. },
  6303. {
  6304. name: "Giant",
  6305. height: math.unit(87, "feet")
  6306. },
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(365, "feet")
  6310. },
  6311. {
  6312. name: "Megamacro",
  6313. height: math.unit(3, "miles")
  6314. },
  6315. {
  6316. name: "World Serpent",
  6317. height: math.unit(8000, "miles")
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6323. {
  6324. front: {
  6325. height: math.unit(6, "feet"),
  6326. weight: math.unit(180, "lbs"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/daimos/front.svg",
  6330. extra: 4160 / 3897,
  6331. bottom: 0.021
  6332. }
  6333. }
  6334. },
  6335. [
  6336. {
  6337. name: "Normal",
  6338. height: math.unit(8, "feet"),
  6339. default: true
  6340. },
  6341. {
  6342. name: "Big Dog",
  6343. height: math.unit(22, "feet")
  6344. },
  6345. {
  6346. name: "Macro",
  6347. height: math.unit(127, "feet")
  6348. },
  6349. {
  6350. name: "Megamacro",
  6351. height: math.unit(3600, "feet")
  6352. },
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6357. {
  6358. side: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(180, "lbs"),
  6361. name: "Side",
  6362. image: {
  6363. source: "./media/characters/blake/side.svg",
  6364. extra: 1212 / 1120,
  6365. bottom: 0.05
  6366. }
  6367. },
  6368. crouched: {
  6369. height: math.unit(6 * 0.57, "feet"),
  6370. weight: math.unit(180, "lbs"),
  6371. name: "Crouched",
  6372. image: {
  6373. source: "./media/characters/blake/crouched.svg",
  6374. extra: 840 / 587,
  6375. bottom: 0.04
  6376. }
  6377. },
  6378. bent: {
  6379. height: math.unit(6 * 0.75, "feet"),
  6380. weight: math.unit(180, "lbs"),
  6381. name: "Bent",
  6382. image: {
  6383. source: "./media/characters/blake/bent.svg",
  6384. extra: 592 / 544,
  6385. bottom: 0.035
  6386. }
  6387. },
  6388. },
  6389. [
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(8 + 1 / 6, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Big Backside",
  6397. height: math.unit(37, "feet")
  6398. },
  6399. {
  6400. name: "Subway Shredder",
  6401. height: math.unit(72, "feet")
  6402. },
  6403. {
  6404. name: "City Carver",
  6405. height: math.unit(1675, "feet")
  6406. },
  6407. {
  6408. name: "Tectonic Tweaker",
  6409. height: math.unit(2300, "miles")
  6410. },
  6411. ]
  6412. ))
  6413. characterMakers.push(() => makeCharacter(
  6414. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6415. {
  6416. front: {
  6417. height: math.unit(6, "feet"),
  6418. weight: math.unit(180, "lbs"),
  6419. name: "Front",
  6420. image: {
  6421. source: "./media/characters/guisetto/front.svg",
  6422. extra: 856 / 817,
  6423. bottom: 0.06
  6424. }
  6425. },
  6426. airborne: {
  6427. height: math.unit(6, "feet"),
  6428. weight: math.unit(180, "lbs"),
  6429. name: "Airborne",
  6430. image: {
  6431. source: "./media/characters/guisetto/airborne.svg",
  6432. extra: 584 / 525
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Normal",
  6439. height: math.unit(10 + 11 / 12, "feet"),
  6440. default: true
  6441. },
  6442. {
  6443. name: "Large",
  6444. height: math.unit(35, "feet")
  6445. },
  6446. {
  6447. name: "Macro",
  6448. height: math.unit(475, "feet")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6454. {
  6455. front: {
  6456. height: math.unit(6, "feet"),
  6457. weight: math.unit(180, "lbs"),
  6458. name: "Front",
  6459. image: {
  6460. source: "./media/characters/luxor/front.svg",
  6461. extra: 2940 / 2152
  6462. }
  6463. },
  6464. back: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(180, "lbs"),
  6467. name: "Back",
  6468. image: {
  6469. source: "./media/characters/luxor/back.svg",
  6470. extra: 1083 / 960
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(5 + 5 / 6, "feet"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Lamp",
  6482. height: math.unit(50, "feet")
  6483. },
  6484. {
  6485. name: "Lämp",
  6486. height: math.unit(300, "feet")
  6487. },
  6488. {
  6489. name: "The sun is a lamp",
  6490. height: math.unit(250000, "miles")
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6496. {
  6497. front: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(50, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/huoyan/front.svg"
  6503. }
  6504. },
  6505. side: {
  6506. height: math.unit(6, "feet"),
  6507. weight: math.unit(180, "lbs"),
  6508. name: "Side",
  6509. image: {
  6510. source: "./media/characters/huoyan/side.svg"
  6511. }
  6512. },
  6513. },
  6514. [
  6515. {
  6516. name: "Chef",
  6517. height: math.unit(9, "feet")
  6518. },
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(65, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(780, "feet")
  6527. },
  6528. {
  6529. name: "Flaming Mountain",
  6530. height: math.unit(4.8, "miles")
  6531. },
  6532. {
  6533. name: "Celestial",
  6534. height: math.unit(765000, "miles")
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(5 + 3 / 4, "feet"),
  6543. weight: math.unit(120, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/tails/front.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(5 + 3 / 4, "feet"),
  6554. default: true
  6555. }
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(4, "feet"),
  6563. weight: math.unit(50, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/rainy/front.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(800, "feet"),
  6574. default: true
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(150, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/rainier/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Micro",
  6593. height: math.unit(2, "mm"),
  6594. default: true
  6595. }
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(8 + 4/12, "feet"),
  6603. weight: math.unit(450, "kilograms"),
  6604. volume: math.unit(5, "cups"),
  6605. name: "Front",
  6606. image: {
  6607. source: "./media/characters/andy-renard/front.svg",
  6608. extra: 1839/1726,
  6609. bottom: 134/1973
  6610. }
  6611. },
  6612. back: {
  6613. height: math.unit(8 + 4/12, "feet"),
  6614. weight: math.unit(450, "kilograms"),
  6615. volume: math.unit(5, "cups"),
  6616. name: "Back",
  6617. image: {
  6618. source: "./media/characters/andy-renard/back.svg",
  6619. extra: 1838/1710,
  6620. bottom: 105/1943
  6621. }
  6622. },
  6623. },
  6624. [
  6625. {
  6626. name: "Tall",
  6627. height: math.unit(8 + 4/12, "feet")
  6628. },
  6629. {
  6630. name: "Mini Macro",
  6631. height: math.unit(15, "feet"),
  6632. default: true
  6633. },
  6634. {
  6635. name: "Macro",
  6636. height: math.unit(100, "feet")
  6637. },
  6638. {
  6639. name: "Mega Macro",
  6640. height: math.unit(1000, "feet")
  6641. },
  6642. {
  6643. name: "Giga Macro",
  6644. height: math.unit(10, "miles")
  6645. },
  6646. {
  6647. name: "God Macro",
  6648. height: math.unit(1, "multiverse")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(210, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/cimmaron/front-sfw.svg",
  6661. extra: 701 / 676,
  6662. bottom: 0.046
  6663. }
  6664. },
  6665. back: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(210, "lbs"),
  6668. name: "Back",
  6669. image: {
  6670. source: "./media/characters/cimmaron/back-sfw.svg",
  6671. extra: 701 / 676,
  6672. bottom: 0.046
  6673. }
  6674. },
  6675. frontNsfw: {
  6676. height: math.unit(6, "feet"),
  6677. weight: math.unit(210, "lbs"),
  6678. name: "Front (NSFW)",
  6679. image: {
  6680. source: "./media/characters/cimmaron/front-nsfw.svg",
  6681. extra: 701 / 676,
  6682. bottom: 0.046
  6683. }
  6684. },
  6685. backNsfw: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(210, "lbs"),
  6688. name: "Back (NSFW)",
  6689. image: {
  6690. source: "./media/characters/cimmaron/back-nsfw.svg",
  6691. extra: 701 / 676,
  6692. bottom: 0.046
  6693. }
  6694. },
  6695. dick: {
  6696. height: math.unit(1.714, "feet"),
  6697. name: "Dick",
  6698. image: {
  6699. source: "./media/characters/cimmaron/dick.svg"
  6700. }
  6701. },
  6702. },
  6703. [
  6704. {
  6705. name: "Normal",
  6706. height: math.unit(6, "feet"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro Mayor",
  6711. height: math.unit(350, "meters")
  6712. },
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(6, "feet"),
  6720. weight: math.unit(200, "lbs"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/akari/front.svg",
  6724. extra: 962 / 901,
  6725. bottom: 0.04
  6726. }
  6727. }
  6728. },
  6729. [
  6730. {
  6731. name: "Micro",
  6732. height: math.unit(5, "inches"),
  6733. default: true
  6734. },
  6735. {
  6736. name: "Normal",
  6737. height: math.unit(7, "feet")
  6738. },
  6739. ]
  6740. ))
  6741. characterMakers.push(() => makeCharacter(
  6742. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6743. {
  6744. front: {
  6745. height: math.unit(6, "feet"),
  6746. weight: math.unit(140, "lbs"),
  6747. name: "Front",
  6748. image: {
  6749. source: "./media/characters/cynosura/front.svg",
  6750. extra: 437/410,
  6751. bottom: 9/446
  6752. }
  6753. },
  6754. back: {
  6755. height: math.unit(6, "feet"),
  6756. weight: math.unit(140, "lbs"),
  6757. name: "Back",
  6758. image: {
  6759. source: "./media/characters/cynosura/back.svg",
  6760. extra: 1304/1160,
  6761. bottom: 71/1375
  6762. }
  6763. },
  6764. },
  6765. [
  6766. {
  6767. name: "Micro",
  6768. height: math.unit(4, "inches")
  6769. },
  6770. {
  6771. name: "Normal",
  6772. height: math.unit(5.75, "feet"),
  6773. default: true
  6774. },
  6775. {
  6776. name: "Tall",
  6777. height: math.unit(10, "feet")
  6778. },
  6779. {
  6780. name: "Big",
  6781. height: math.unit(20, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(50, "feet")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(13 + 2/12, "feet"),
  6794. weight: math.unit(800, "kg"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/gin/front.svg",
  6798. extra: 1312/1191,
  6799. bottom: 45/1357
  6800. }
  6801. },
  6802. mouth: {
  6803. height: math.unit(2.39 * 1.8, "feet"),
  6804. name: "Mouth",
  6805. image: {
  6806. source: "./media/characters/gin/mouth.svg"
  6807. }
  6808. },
  6809. hand: {
  6810. height: math.unit(1.57 * 2.19, "feet"),
  6811. name: "Hand",
  6812. image: {
  6813. source: "./media/characters/gin/hand.svg"
  6814. }
  6815. },
  6816. foot: {
  6817. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6818. name: "Foot",
  6819. image: {
  6820. source: "./media/characters/gin/foot.svg"
  6821. }
  6822. },
  6823. sole: {
  6824. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6825. name: "Sole",
  6826. image: {
  6827. source: "./media/characters/gin/sole.svg"
  6828. }
  6829. },
  6830. },
  6831. [
  6832. {
  6833. name: "Very Small",
  6834. height: math.unit(13 + 2 / 12, "feet")
  6835. },
  6836. {
  6837. name: "Micro",
  6838. height: math.unit(600, "miles")
  6839. },
  6840. {
  6841. name: "Regular",
  6842. height: math.unit(20, "earths"),
  6843. default: true
  6844. },
  6845. {
  6846. name: "Macro",
  6847. height: math.unit(2.2, "solarradii")
  6848. },
  6849. {
  6850. name: "Teramacro",
  6851. height: math.unit(1.2, "galaxies")
  6852. },
  6853. {
  6854. name: "Omegamacro",
  6855. height: math.unit(200, "universes")
  6856. },
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(6 + 1 / 6, "feet"),
  6864. weight: math.unit(178, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/guy/front.svg"
  6868. }
  6869. }
  6870. },
  6871. [
  6872. {
  6873. name: "Normal",
  6874. height: math.unit(6 + 1 / 6, "feet"),
  6875. default: true
  6876. },
  6877. {
  6878. name: "Large",
  6879. height: math.unit(25 + 7 / 12, "feet")
  6880. },
  6881. {
  6882. name: "Macro",
  6883. height: math.unit(60 + 9 / 12, "feet")
  6884. },
  6885. {
  6886. name: "Macro+",
  6887. height: math.unit(246, "feet")
  6888. },
  6889. {
  6890. name: "Macro++",
  6891. height: math.unit(878, "feet")
  6892. }
  6893. ]
  6894. ))
  6895. characterMakers.push(() => makeCharacter(
  6896. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6897. {
  6898. front: {
  6899. height: math.unit(9, "feet"),
  6900. weight: math.unit(800, "lbs"),
  6901. name: "Front",
  6902. image: {
  6903. source: "./media/characters/tiberius/front.svg",
  6904. extra: 2295 / 2071
  6905. }
  6906. },
  6907. back: {
  6908. height: math.unit(9, "feet"),
  6909. weight: math.unit(800, "lbs"),
  6910. name: "Back",
  6911. image: {
  6912. source: "./media/characters/tiberius/back.svg",
  6913. extra: 2373 / 2160
  6914. }
  6915. },
  6916. },
  6917. [
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(9, "feet"),
  6921. default: true
  6922. }
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6927. {
  6928. front: {
  6929. height: math.unit(6, "feet"),
  6930. weight: math.unit(600, "lbs"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/surgo/front.svg",
  6934. extra: 3591 / 2227
  6935. }
  6936. },
  6937. back: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(600, "lbs"),
  6940. name: "Back",
  6941. image: {
  6942. source: "./media/characters/surgo/back.svg",
  6943. extra: 3557 / 2228
  6944. }
  6945. },
  6946. laying: {
  6947. height: math.unit(6 * 0.85, "feet"),
  6948. weight: math.unit(600, "lbs"),
  6949. name: "Laying",
  6950. image: {
  6951. source: "./media/characters/surgo/laying.svg"
  6952. }
  6953. },
  6954. },
  6955. [
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(6, "feet"),
  6959. default: true
  6960. }
  6961. ]
  6962. ))
  6963. characterMakers.push(() => makeCharacter(
  6964. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6965. {
  6966. side: {
  6967. height: math.unit(6, "feet"),
  6968. weight: math.unit(150, "lbs"),
  6969. name: "Side",
  6970. image: {
  6971. source: "./media/characters/cibus/side.svg",
  6972. extra: 800 / 400
  6973. }
  6974. },
  6975. },
  6976. [
  6977. {
  6978. name: "Normal",
  6979. height: math.unit(6, "feet"),
  6980. default: true
  6981. }
  6982. ]
  6983. ))
  6984. characterMakers.push(() => makeCharacter(
  6985. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6986. {
  6987. front: {
  6988. height: math.unit(6, "feet"),
  6989. weight: math.unit(240, "lbs"),
  6990. name: "Front",
  6991. image: {
  6992. source: "./media/characters/nibbles/front.svg"
  6993. }
  6994. },
  6995. side: {
  6996. height: math.unit(6, "feet"),
  6997. weight: math.unit(240, "lbs"),
  6998. name: "Side",
  6999. image: {
  7000. source: "./media/characters/nibbles/side.svg"
  7001. }
  7002. },
  7003. },
  7004. [
  7005. {
  7006. name: "Normal",
  7007. height: math.unit(9, "feet"),
  7008. default: true
  7009. }
  7010. ]
  7011. ))
  7012. characterMakers.push(() => makeCharacter(
  7013. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7014. {
  7015. side: {
  7016. height: math.unit(5 + 1 / 6, "feet"),
  7017. weight: math.unit(130, "lbs"),
  7018. name: "Side",
  7019. image: {
  7020. source: "./media/characters/rikky/side.svg",
  7021. extra: 851 / 801
  7022. }
  7023. },
  7024. },
  7025. [
  7026. {
  7027. name: "Normal",
  7028. height: math.unit(5 + 1 / 6, "feet")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(152, "feet"),
  7033. default: true
  7034. },
  7035. {
  7036. name: "Megamacro",
  7037. height: math.unit(7, "miles")
  7038. }
  7039. ]
  7040. ))
  7041. characterMakers.push(() => makeCharacter(
  7042. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7043. {
  7044. side: {
  7045. height: math.unit(370, "cm"),
  7046. weight: math.unit(350, "lbs"),
  7047. name: "Side",
  7048. image: {
  7049. source: "./media/characters/malfressa/side.svg"
  7050. }
  7051. },
  7052. walking: {
  7053. height: math.unit(370, "cm"),
  7054. weight: math.unit(350, "lbs"),
  7055. name: "Walking",
  7056. image: {
  7057. source: "./media/characters/malfressa/walking.svg"
  7058. }
  7059. },
  7060. feral: {
  7061. height: math.unit(2500, "cm"),
  7062. weight: math.unit(100000, "lbs"),
  7063. name: "Feral",
  7064. image: {
  7065. source: "./media/characters/malfressa/feral.svg",
  7066. extra: 2108 / 837,
  7067. bottom: 0.02
  7068. }
  7069. },
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(370, "cm")
  7075. },
  7076. {
  7077. name: "Macro",
  7078. height: math.unit(300, "meters"),
  7079. default: true
  7080. }
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(6, "feet"),
  7088. weight: math.unit(60, "kg"),
  7089. name: "Front",
  7090. image: {
  7091. source: "./media/characters/jaro/front.svg",
  7092. extra: 845/817,
  7093. bottom: 45/890
  7094. }
  7095. },
  7096. back: {
  7097. height: math.unit(6, "feet"),
  7098. weight: math.unit(60, "kg"),
  7099. name: "Back",
  7100. image: {
  7101. source: "./media/characters/jaro/back.svg",
  7102. extra: 847/817,
  7103. bottom: 34/881
  7104. }
  7105. },
  7106. },
  7107. [
  7108. {
  7109. name: "Micro",
  7110. height: math.unit(7, "inches")
  7111. },
  7112. {
  7113. name: "Normal",
  7114. height: math.unit(5.5, "feet"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Minimacro",
  7119. height: math.unit(20, "feet")
  7120. },
  7121. {
  7122. name: "Macro",
  7123. height: math.unit(200, "meters")
  7124. }
  7125. ]
  7126. ))
  7127. characterMakers.push(() => makeCharacter(
  7128. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7129. {
  7130. front: {
  7131. height: math.unit(6, "feet"),
  7132. weight: math.unit(195, "lb"),
  7133. name: "Front",
  7134. image: {
  7135. source: "./media/characters/rogue/front.svg"
  7136. }
  7137. },
  7138. },
  7139. [
  7140. {
  7141. name: "Macro",
  7142. height: math.unit(90, "feet"),
  7143. default: true
  7144. },
  7145. ]
  7146. ))
  7147. characterMakers.push(() => makeCharacter(
  7148. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7149. {
  7150. standing: {
  7151. height: math.unit(5 + 8 / 12, "feet"),
  7152. weight: math.unit(140, "lb"),
  7153. name: "Standing",
  7154. image: {
  7155. source: "./media/characters/piper/standing.svg",
  7156. extra: 1440/1284,
  7157. bottom: 66/1506
  7158. }
  7159. },
  7160. running: {
  7161. height: math.unit(5 + 8 / 12, "feet"),
  7162. weight: math.unit(140, "lb"),
  7163. name: "Running",
  7164. image: {
  7165. source: "./media/characters/piper/running.svg",
  7166. extra: 3948/3655,
  7167. bottom: 0/3948
  7168. }
  7169. },
  7170. sole: {
  7171. height: math.unit(0.81, "feet"),
  7172. weight: math.unit(2, "kg"),
  7173. name: "Sole",
  7174. image: {
  7175. source: "./media/characters/piper/sole.svg"
  7176. }
  7177. },
  7178. nipple: {
  7179. height: math.unit(0.25, "feet"),
  7180. weight: math.unit(1.5, "lb"),
  7181. name: "Nipple",
  7182. image: {
  7183. source: "./media/characters/piper/nipple.svg"
  7184. }
  7185. },
  7186. head: {
  7187. height: math.unit(1.1, "feet"),
  7188. name: "Head",
  7189. image: {
  7190. source: "./media/characters/piper/head.svg"
  7191. }
  7192. },
  7193. },
  7194. [
  7195. {
  7196. name: "Micro",
  7197. height: math.unit(2, "inches")
  7198. },
  7199. {
  7200. name: "Normal",
  7201. height: math.unit(5 + 8 / 12, "feet")
  7202. },
  7203. {
  7204. name: "Macro",
  7205. height: math.unit(250, "feet"),
  7206. default: true
  7207. },
  7208. {
  7209. name: "Megamacro",
  7210. height: math.unit(7, "miles")
  7211. },
  7212. ]
  7213. ))
  7214. characterMakers.push(() => makeCharacter(
  7215. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7216. {
  7217. front: {
  7218. height: math.unit(6, "feet"),
  7219. weight: math.unit(220, "lb"),
  7220. name: "Front",
  7221. image: {
  7222. source: "./media/characters/gemini/front.svg"
  7223. }
  7224. },
  7225. back: {
  7226. height: math.unit(6, "feet"),
  7227. weight: math.unit(220, "lb"),
  7228. name: "Back",
  7229. image: {
  7230. source: "./media/characters/gemini/back.svg"
  7231. }
  7232. },
  7233. kneeling: {
  7234. height: math.unit(6 / 1.5, "feet"),
  7235. weight: math.unit(220, "lb"),
  7236. name: "Kneeling",
  7237. image: {
  7238. source: "./media/characters/gemini/kneeling.svg",
  7239. bottom: 0.02
  7240. }
  7241. },
  7242. },
  7243. [
  7244. {
  7245. name: "Macro",
  7246. height: math.unit(300, "meters"),
  7247. default: true
  7248. },
  7249. {
  7250. name: "Megamacro",
  7251. height: math.unit(6900, "meters")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7257. {
  7258. anthro: {
  7259. height: math.unit(2.35, "meters"),
  7260. weight: math.unit(73, "kg"),
  7261. name: "Anthro",
  7262. image: {
  7263. source: "./media/characters/alicia/anthro.svg",
  7264. extra: 2571 / 2385,
  7265. bottom: 75 / 2648
  7266. }
  7267. },
  7268. paw: {
  7269. height: math.unit(1.32, "feet"),
  7270. name: "Paw",
  7271. image: {
  7272. source: "./media/characters/alicia/paw.svg"
  7273. }
  7274. },
  7275. feral: {
  7276. height: math.unit(1.69, "meters"),
  7277. weight: math.unit(73, "kg"),
  7278. name: "Feral",
  7279. image: {
  7280. source: "./media/characters/alicia/feral.svg",
  7281. extra: 2123 / 1715,
  7282. bottom: 222 / 2349
  7283. }
  7284. },
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(2.35, "meters")
  7290. },
  7291. {
  7292. name: "Macro",
  7293. height: math.unit(60, "meters"),
  7294. default: true
  7295. },
  7296. {
  7297. name: "Megamacro",
  7298. height: math.unit(10000, "kilometers")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(7, "feet"),
  7307. weight: math.unit(250, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/archy/front.svg"
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(1, "inch")
  7318. },
  7319. {
  7320. name: "Shorty",
  7321. height: math.unit(5, "feet")
  7322. },
  7323. {
  7324. name: "Normal",
  7325. height: math.unit(7, "feet")
  7326. },
  7327. {
  7328. name: "Macro",
  7329. height: math.unit(600, "meters"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Megamacro",
  7334. height: math.unit(1, "mile")
  7335. },
  7336. ]
  7337. ))
  7338. characterMakers.push(() => makeCharacter(
  7339. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7340. {
  7341. front: {
  7342. height: math.unit(1.65, "meters"),
  7343. weight: math.unit(74, "kg"),
  7344. name: "Front",
  7345. image: {
  7346. source: "./media/characters/berri/front.svg",
  7347. extra: 857 / 837,
  7348. bottom: 18 / 877
  7349. }
  7350. },
  7351. bum: {
  7352. height: math.unit(1.46, "feet"),
  7353. name: "Bum",
  7354. image: {
  7355. source: "./media/characters/berri/bum.svg"
  7356. }
  7357. },
  7358. mouth: {
  7359. height: math.unit(0.44, "feet"),
  7360. name: "Mouth",
  7361. image: {
  7362. source: "./media/characters/berri/mouth.svg"
  7363. }
  7364. },
  7365. paw: {
  7366. height: math.unit(0.826, "feet"),
  7367. name: "Paw",
  7368. image: {
  7369. source: "./media/characters/berri/paw.svg"
  7370. }
  7371. },
  7372. },
  7373. [
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(1.65, "meters")
  7377. },
  7378. {
  7379. name: "Macro",
  7380. height: math.unit(60, "m"),
  7381. default: true
  7382. },
  7383. {
  7384. name: "Megamacro",
  7385. height: math.unit(9.213, "km")
  7386. },
  7387. {
  7388. name: "Planet Eater",
  7389. height: math.unit(489, "megameters")
  7390. },
  7391. {
  7392. name: "Teramacro",
  7393. height: math.unit(2471635000000, "meters")
  7394. },
  7395. {
  7396. name: "Examacro",
  7397. height: math.unit(8.0624e+26, "meters")
  7398. }
  7399. ]
  7400. ))
  7401. characterMakers.push(() => makeCharacter(
  7402. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7403. {
  7404. front: {
  7405. height: math.unit(1.72, "meters"),
  7406. weight: math.unit(68, "kg"),
  7407. name: "Front",
  7408. image: {
  7409. source: "./media/characters/lexi/front.svg"
  7410. }
  7411. }
  7412. },
  7413. [
  7414. {
  7415. name: "Very Smol",
  7416. height: math.unit(10, "mm")
  7417. },
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(6.8, "cm"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Normal",
  7425. height: math.unit(1.72, "m")
  7426. }
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7431. {
  7432. front: {
  7433. height: math.unit(1.69, "meters"),
  7434. weight: math.unit(68, "kg"),
  7435. name: "Front",
  7436. image: {
  7437. source: "./media/characters/martin/front.svg",
  7438. extra: 596 / 581
  7439. }
  7440. }
  7441. },
  7442. [
  7443. {
  7444. name: "Micro",
  7445. height: math.unit(6.85, "cm"),
  7446. default: true
  7447. },
  7448. {
  7449. name: "Normal",
  7450. height: math.unit(1.69, "m")
  7451. }
  7452. ]
  7453. ))
  7454. characterMakers.push(() => makeCharacter(
  7455. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7456. {
  7457. front: {
  7458. height: math.unit(1.69, "meters"),
  7459. weight: math.unit(68, "kg"),
  7460. name: "Front",
  7461. image: {
  7462. source: "./media/characters/juno/front.svg"
  7463. }
  7464. }
  7465. },
  7466. [
  7467. {
  7468. name: "Micro",
  7469. height: math.unit(7, "cm")
  7470. },
  7471. {
  7472. name: "Normal",
  7473. height: math.unit(1.89, "m")
  7474. },
  7475. {
  7476. name: "Macro",
  7477. height: math.unit(353, "meters"),
  7478. default: true
  7479. }
  7480. ]
  7481. ))
  7482. characterMakers.push(() => makeCharacter(
  7483. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7484. {
  7485. front: {
  7486. height: math.unit(1.93, "meters"),
  7487. weight: math.unit(83, "kg"),
  7488. name: "Front",
  7489. image: {
  7490. source: "./media/characters/samantha/front.svg"
  7491. }
  7492. },
  7493. frontClothed: {
  7494. height: math.unit(1.93, "meters"),
  7495. weight: math.unit(83, "kg"),
  7496. name: "Front (Clothed)",
  7497. image: {
  7498. source: "./media/characters/samantha/front-clothed.svg"
  7499. }
  7500. },
  7501. back: {
  7502. height: math.unit(1.93, "meters"),
  7503. weight: math.unit(83, "kg"),
  7504. name: "Back",
  7505. image: {
  7506. source: "./media/characters/samantha/back.svg"
  7507. }
  7508. },
  7509. },
  7510. [
  7511. {
  7512. name: "Normal",
  7513. height: math.unit(1.93, "m")
  7514. },
  7515. {
  7516. name: "Macro",
  7517. height: math.unit(74, "meters"),
  7518. default: true
  7519. },
  7520. {
  7521. name: "Macro+",
  7522. height: math.unit(223, "meters"),
  7523. },
  7524. {
  7525. name: "Megamacro",
  7526. height: math.unit(8381, "meters"),
  7527. },
  7528. {
  7529. name: "Megamacro+",
  7530. height: math.unit(12000, "kilometers")
  7531. },
  7532. ]
  7533. ))
  7534. characterMakers.push(() => makeCharacter(
  7535. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7536. {
  7537. front: {
  7538. height: math.unit(1.92, "meters"),
  7539. weight: math.unit(80, "kg"),
  7540. name: "Front",
  7541. image: {
  7542. source: "./media/characters/dr-clay/front.svg"
  7543. }
  7544. },
  7545. frontClothed: {
  7546. height: math.unit(1.92, "meters"),
  7547. weight: math.unit(80, "kg"),
  7548. name: "Front (Clothed)",
  7549. image: {
  7550. source: "./media/characters/dr-clay/front-clothed.svg"
  7551. }
  7552. }
  7553. },
  7554. [
  7555. {
  7556. name: "Normal",
  7557. height: math.unit(1.92, "m")
  7558. },
  7559. {
  7560. name: "Macro",
  7561. height: math.unit(214, "meters"),
  7562. default: true
  7563. },
  7564. {
  7565. name: "Macro+",
  7566. height: math.unit(12.237, "meters"),
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(557, "megameters"),
  7571. },
  7572. {
  7573. name: "Unimaginable",
  7574. height: math.unit(120e9, "lightyears")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(2, "meters"),
  7583. weight: math.unit(80, "kg"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7587. }
  7588. }
  7589. },
  7590. [
  7591. {
  7592. name: "Teramacro",
  7593. height: math.unit(500000, "lightyears"),
  7594. default: true
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7600. {
  7601. crux: {
  7602. height: math.unit(2, "meters"),
  7603. weight: math.unit(150, "kg"),
  7604. name: "Crux",
  7605. image: {
  7606. source: "./media/characters/vemus/crux.svg",
  7607. extra: 1074/936,
  7608. bottom: 23/1097
  7609. }
  7610. },
  7611. skunkTanuki: {
  7612. height: math.unit(2, "meters"),
  7613. weight: math.unit(150, "kg"),
  7614. name: "Skunk-Tanuki",
  7615. image: {
  7616. source: "./media/characters/vemus/skunk-tanuki.svg",
  7617. extra: 926/893,
  7618. bottom: 20/946
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(4, "meters"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Big",
  7630. height: math.unit(8, "meters")
  7631. },
  7632. {
  7633. name: "Macro",
  7634. height: math.unit(100, "meters")
  7635. },
  7636. {
  7637. name: "Macro+",
  7638. height: math.unit(1500, "meters")
  7639. },
  7640. {
  7641. name: "Stellar",
  7642. height: math.unit(14e8, "meters")
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(2, "meters"),
  7651. weight: math.unit(70, "kg"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/beherit/front.svg",
  7655. extra: 1234/1109,
  7656. bottom: 55/1289
  7657. }
  7658. }
  7659. },
  7660. [
  7661. {
  7662. name: "Normal",
  7663. height: math.unit(6, "feet")
  7664. },
  7665. {
  7666. name: "Lorg",
  7667. height: math.unit(25, "feet"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Lorger",
  7672. height: math.unit(75, "feet")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(200, "meters")
  7677. },
  7678. ]
  7679. ))
  7680. characterMakers.push(() => makeCharacter(
  7681. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7682. {
  7683. front: {
  7684. height: math.unit(2, "meters"),
  7685. weight: math.unit(150, "kg"),
  7686. name: "Front",
  7687. image: {
  7688. source: "./media/characters/everett/front.svg",
  7689. extra: 1017/866,
  7690. bottom: 86/1103
  7691. }
  7692. },
  7693. paw: {
  7694. height: math.unit(2 / 3.6, "meters"),
  7695. name: "Paw",
  7696. image: {
  7697. source: "./media/characters/everett/paw.svg"
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(15, "feet"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Lorg",
  7709. height: math.unit(70, "feet"),
  7710. default: true
  7711. },
  7712. {
  7713. name: "Lorger",
  7714. height: math.unit(250, "feet")
  7715. },
  7716. {
  7717. name: "Macro",
  7718. height: math.unit(500, "meters")
  7719. },
  7720. ]
  7721. ))
  7722. characterMakers.push(() => makeCharacter(
  7723. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7724. {
  7725. front: {
  7726. height: math.unit(2, "meters"),
  7727. weight: math.unit(86, "kg"),
  7728. name: "Front",
  7729. image: {
  7730. source: "./media/characters/rose/front.svg",
  7731. extra: 1785/1636,
  7732. bottom: 30/1815
  7733. },
  7734. form: "liom",
  7735. default: true
  7736. },
  7737. frontSporty: {
  7738. height: math.unit(2, "meters"),
  7739. weight: math.unit(86, "kg"),
  7740. name: "Front (Sporty)",
  7741. image: {
  7742. source: "./media/characters/rose/front-sporty.svg",
  7743. extra: 350/335,
  7744. bottom: 10/360
  7745. },
  7746. form: "liom"
  7747. },
  7748. frontAlt: {
  7749. height: math.unit(1.6, "meters"),
  7750. weight: math.unit(86, "kg"),
  7751. name: "Front (Alt)",
  7752. image: {
  7753. source: "./media/characters/rose/front-alt.svg",
  7754. extra: 299/283,
  7755. bottom: 3/302
  7756. },
  7757. form: "liom"
  7758. },
  7759. plush: {
  7760. height: math.unit(2, "meters"),
  7761. weight: math.unit(86/3, "kg"),
  7762. name: "Plush",
  7763. image: {
  7764. source: "./media/characters/rose/plush.svg",
  7765. extra: 361/337,
  7766. bottom: 11/372
  7767. },
  7768. form: "plush",
  7769. default: true
  7770. },
  7771. faeStanding: {
  7772. height: math.unit(10, "cm"),
  7773. weight: math.unit(10, "grams"),
  7774. name: "Standing",
  7775. image: {
  7776. source: "./media/characters/rose/fae-standing.svg",
  7777. extra: 1189/1060,
  7778. bottom: 27/1216
  7779. },
  7780. form: "fae",
  7781. default: true
  7782. },
  7783. faeSitting: {
  7784. height: math.unit(5, "cm"),
  7785. weight: math.unit(10, "grams"),
  7786. name: "Sitting",
  7787. image: {
  7788. source: "./media/characters/rose/fae-sitting.svg",
  7789. extra: 737/577,
  7790. bottom: 356/1093
  7791. },
  7792. form: "fae"
  7793. },
  7794. faePaw: {
  7795. height: math.unit(1.35, "cm"),
  7796. name: "Paw",
  7797. image: {
  7798. source: "./media/characters/rose/fae-paw.svg"
  7799. },
  7800. form: "fae"
  7801. },
  7802. },
  7803. [
  7804. {
  7805. name: "True Micro",
  7806. height: math.unit(9, "cm"),
  7807. form: "liom"
  7808. },
  7809. {
  7810. name: "Micro",
  7811. height: math.unit(16, "cm"),
  7812. form: "liom"
  7813. },
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(1.85, "meters"),
  7817. default: true,
  7818. form: "liom"
  7819. },
  7820. {
  7821. name: "Mini-Macro",
  7822. height: math.unit(5, "meters"),
  7823. form: "liom"
  7824. },
  7825. {
  7826. name: "Macro",
  7827. height: math.unit(15, "meters"),
  7828. form: "liom"
  7829. },
  7830. {
  7831. name: "True Macro",
  7832. height: math.unit(40, "meters"),
  7833. form: "liom"
  7834. },
  7835. {
  7836. name: "City Scale",
  7837. height: math.unit(1, "km"),
  7838. form: "liom"
  7839. },
  7840. {
  7841. name: "Plushie",
  7842. height: math.unit(9, "cm"),
  7843. form: "plush",
  7844. default: true
  7845. },
  7846. {
  7847. name: "Fae",
  7848. height: math.unit(10, "cm"),
  7849. form: "fae",
  7850. default: true
  7851. },
  7852. ],
  7853. {
  7854. "liom": {
  7855. name: "Liom"
  7856. },
  7857. "plush": {
  7858. name: "Plush"
  7859. },
  7860. "fae": {
  7861. name: "Fae Fox",
  7862. default: true
  7863. }
  7864. }
  7865. ))
  7866. characterMakers.push(() => makeCharacter(
  7867. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7868. {
  7869. front: {
  7870. height: math.unit(2, "meters"),
  7871. weight: math.unit(350, "lbs"),
  7872. name: "Front",
  7873. image: {
  7874. source: "./media/characters/regal/front.svg"
  7875. }
  7876. },
  7877. back: {
  7878. height: math.unit(2, "meters"),
  7879. weight: math.unit(350, "lbs"),
  7880. name: "Back",
  7881. image: {
  7882. source: "./media/characters/regal/back.svg"
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(350, "feet"),
  7890. default: true
  7891. }
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7896. {
  7897. front: {
  7898. height: math.unit(4 + 11 / 12, "feet"),
  7899. weight: math.unit(100, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/opal/front.svg"
  7903. }
  7904. },
  7905. frontAlt: {
  7906. height: math.unit(4 + 11 / 12, "feet"),
  7907. weight: math.unit(100, "lbs"),
  7908. name: "Front (Alt)",
  7909. image: {
  7910. source: "./media/characters/opal/front-alt.svg"
  7911. }
  7912. },
  7913. },
  7914. [
  7915. {
  7916. name: "Small",
  7917. height: math.unit(4 + 11 / 12, "feet")
  7918. },
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(20, "feet"),
  7922. default: true
  7923. },
  7924. {
  7925. name: "Macro",
  7926. height: math.unit(120, "feet")
  7927. },
  7928. {
  7929. name: "Megamacro",
  7930. height: math.unit(80, "miles")
  7931. },
  7932. {
  7933. name: "True Size",
  7934. height: math.unit(100000, "lightyears")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(6, "feet"),
  7943. weight: math.unit(200, "lbs"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/vector-wuff/front.svg"
  7947. }
  7948. }
  7949. },
  7950. [
  7951. {
  7952. name: "Normal",
  7953. height: math.unit(2.8, "meters")
  7954. },
  7955. {
  7956. name: "Macro",
  7957. height: math.unit(450, "meters"),
  7958. default: true
  7959. },
  7960. {
  7961. name: "Megamacro",
  7962. height: math.unit(15, "kilometers")
  7963. }
  7964. ]
  7965. ))
  7966. characterMakers.push(() => makeCharacter(
  7967. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7968. {
  7969. front: {
  7970. height: math.unit(6, "feet"),
  7971. weight: math.unit(256, "lbs"),
  7972. name: "Front",
  7973. image: {
  7974. source: "./media/characters/dannik/front.svg"
  7975. }
  7976. }
  7977. },
  7978. [
  7979. {
  7980. name: "Macro",
  7981. height: math.unit(69.57, "meters"),
  7982. default: true
  7983. },
  7984. ]
  7985. ))
  7986. characterMakers.push(() => makeCharacter(
  7987. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7988. {
  7989. front: {
  7990. height: math.unit(6, "feet"),
  7991. weight: math.unit(120, "lbs"),
  7992. name: "Front",
  7993. image: {
  7994. source: "./media/characters/azura-saharah/front.svg"
  7995. }
  7996. },
  7997. back: {
  7998. height: math.unit(6, "feet"),
  7999. weight: math.unit(120, "lbs"),
  8000. name: "Back",
  8001. image: {
  8002. source: "./media/characters/azura-saharah/back.svg"
  8003. }
  8004. },
  8005. },
  8006. [
  8007. {
  8008. name: "Macro",
  8009. height: math.unit(100, "feet"),
  8010. default: true
  8011. },
  8012. ]
  8013. ))
  8014. characterMakers.push(() => makeCharacter(
  8015. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8016. {
  8017. side: {
  8018. height: math.unit(5 + 4 / 12, "feet"),
  8019. weight: math.unit(163, "lbs"),
  8020. name: "Side",
  8021. image: {
  8022. source: "./media/characters/kennedy/side.svg"
  8023. }
  8024. }
  8025. },
  8026. [
  8027. {
  8028. name: "Standard Doggo",
  8029. height: math.unit(5 + 4 / 12, "feet")
  8030. },
  8031. {
  8032. name: "Big Doggo",
  8033. height: math.unit(25 + 3 / 12, "feet"),
  8034. default: true
  8035. },
  8036. ]
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8040. {
  8041. front: {
  8042. height: math.unit(5 + 5/12, "feet"),
  8043. weight: math.unit(100, "lbs"),
  8044. name: "Front",
  8045. image: {
  8046. source: "./media/characters/odios-de-lunar/front.svg",
  8047. extra: 1468/1323,
  8048. bottom: 22/1490
  8049. }
  8050. }
  8051. },
  8052. [
  8053. {
  8054. name: "Micro",
  8055. height: math.unit(3, "inches")
  8056. },
  8057. {
  8058. name: "Normal",
  8059. height: math.unit(5.5, "feet"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Macro",
  8064. height: math.unit(100, "feet")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8070. {
  8071. back: {
  8072. height: math.unit(6, "feet"),
  8073. weight: math.unit(220, "lbs"),
  8074. name: "Back",
  8075. image: {
  8076. source: "./media/characters/mandake/back.svg"
  8077. }
  8078. }
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(7, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(78, "feet")
  8089. },
  8090. {
  8091. name: "Macro+",
  8092. height: math.unit(300, "meters")
  8093. },
  8094. {
  8095. name: "Macro++",
  8096. height: math.unit(2400, "feet")
  8097. },
  8098. {
  8099. name: "Megamacro",
  8100. height: math.unit(5167, "meters")
  8101. },
  8102. {
  8103. name: "Gigamacro",
  8104. height: math.unit(41769, "miles")
  8105. },
  8106. ]
  8107. ))
  8108. characterMakers.push(() => makeCharacter(
  8109. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8110. {
  8111. front: {
  8112. height: math.unit(6, "feet"),
  8113. weight: math.unit(120, "lbs"),
  8114. name: "Front",
  8115. image: {
  8116. source: "./media/characters/yozey/front.svg"
  8117. }
  8118. },
  8119. frontAlt: {
  8120. height: math.unit(6, "feet"),
  8121. weight: math.unit(120, "lbs"),
  8122. name: "Front (Alt)",
  8123. image: {
  8124. source: "./media/characters/yozey/front-alt.svg"
  8125. }
  8126. },
  8127. side: {
  8128. height: math.unit(6, "feet"),
  8129. weight: math.unit(120, "lbs"),
  8130. name: "Side",
  8131. image: {
  8132. source: "./media/characters/yozey/side.svg"
  8133. }
  8134. },
  8135. },
  8136. [
  8137. {
  8138. name: "Micro",
  8139. height: math.unit(3, "inches"),
  8140. default: true
  8141. },
  8142. {
  8143. name: "Normal",
  8144. height: math.unit(6, "feet")
  8145. }
  8146. ]
  8147. ))
  8148. characterMakers.push(() => makeCharacter(
  8149. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8150. {
  8151. front: {
  8152. height: math.unit(6, "feet"),
  8153. weight: math.unit(103, "lbs"),
  8154. name: "Front",
  8155. image: {
  8156. source: "./media/characters/valeska-voss/front.svg"
  8157. }
  8158. }
  8159. },
  8160. [
  8161. {
  8162. name: "Mini-Sized Sub",
  8163. height: math.unit(3.1, "inches")
  8164. },
  8165. {
  8166. name: "Mid-Sized Sub",
  8167. height: math.unit(6.2, "inches")
  8168. },
  8169. {
  8170. name: "Full-Sized Sub",
  8171. height: math.unit(9.3, "inches")
  8172. },
  8173. {
  8174. name: "Normal",
  8175. height: math.unit(5 + 2 / 12, "foot"),
  8176. default: true
  8177. },
  8178. ]
  8179. ))
  8180. characterMakers.push(() => makeCharacter(
  8181. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8182. {
  8183. front: {
  8184. height: math.unit(6, "feet"),
  8185. weight: math.unit(160, "lbs"),
  8186. name: "Front",
  8187. image: {
  8188. source: "./media/characters/gene-zeta/front.svg",
  8189. extra: 3006 / 2826,
  8190. bottom: 182 / 3188
  8191. }
  8192. }
  8193. },
  8194. [
  8195. {
  8196. name: "Micro",
  8197. height: math.unit(6, "inches")
  8198. },
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(5 + 11 / 12, "foot"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(140, "feet")
  8207. },
  8208. {
  8209. name: "Supercharged",
  8210. height: math.unit(2500, "feet")
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(6, "feet"),
  8219. weight: math.unit(350, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/razinox/front.svg",
  8223. extra: 1686 / 1548,
  8224. bottom: 28.2 / 1868
  8225. }
  8226. },
  8227. back: {
  8228. height: math.unit(6, "feet"),
  8229. weight: math.unit(350, "lbs"),
  8230. name: "Back",
  8231. image: {
  8232. source: "./media/characters/razinox/back.svg",
  8233. extra: 1660 / 1590,
  8234. bottom: 15 / 1665
  8235. }
  8236. },
  8237. },
  8238. [
  8239. {
  8240. name: "Normal",
  8241. height: math.unit(10 + 8 / 12, "foot")
  8242. },
  8243. {
  8244. name: "Minimacro",
  8245. height: math.unit(15, "foot")
  8246. },
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(60, "foot"),
  8250. default: true
  8251. },
  8252. {
  8253. name: "Megamacro",
  8254. height: math.unit(5, "miles")
  8255. },
  8256. {
  8257. name: "Gigamacro",
  8258. height: math.unit(6000, "miles")
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(150, "lbs"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/cobalt/front.svg"
  8271. }
  8272. }
  8273. },
  8274. [
  8275. {
  8276. name: "Normal",
  8277. height: math.unit(8 + 1 / 12, "foot")
  8278. },
  8279. {
  8280. name: "Macro",
  8281. height: math.unit(111, "foot"),
  8282. default: true
  8283. },
  8284. {
  8285. name: "Supracosmic",
  8286. height: math.unit(1e42, "feet")
  8287. },
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8292. {
  8293. front: {
  8294. height: math.unit(5, "inches"),
  8295. name: "Front",
  8296. image: {
  8297. source: "./media/characters/amanda/front.svg",
  8298. extra: 926/791,
  8299. bottom: 38/964
  8300. }
  8301. },
  8302. back: {
  8303. height: math.unit(5, "inches"),
  8304. name: "Back",
  8305. image: {
  8306. source: "./media/characters/amanda/back.svg",
  8307. extra: 909/805,
  8308. bottom: 43/952
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Micro",
  8315. height: math.unit(5, "inches"),
  8316. default: true
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(2.75, "meters"),
  8325. weight: math.unit(1200, "lb"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/teal/front.svg",
  8329. extra: 2463 / 2320,
  8330. bottom: 166 / 2629
  8331. }
  8332. },
  8333. back: {
  8334. height: math.unit(2.75, "meters"),
  8335. weight: math.unit(1200, "lb"),
  8336. name: "Back",
  8337. image: {
  8338. source: "./media/characters/teal/back.svg",
  8339. extra: 2580 / 2489,
  8340. bottom: 151 / 2731
  8341. }
  8342. },
  8343. sitting: {
  8344. height: math.unit(1.9, "meters"),
  8345. weight: math.unit(1200, "lb"),
  8346. name: "Sitting",
  8347. image: {
  8348. source: "./media/characters/teal/sitting.svg",
  8349. extra: 623 / 590,
  8350. bottom: 121 / 744
  8351. }
  8352. },
  8353. standing: {
  8354. height: math.unit(2.75, "meters"),
  8355. weight: math.unit(1200, "lb"),
  8356. name: "Standing",
  8357. image: {
  8358. source: "./media/characters/teal/standing.svg",
  8359. extra: 923 / 893,
  8360. bottom: 60 / 983
  8361. }
  8362. },
  8363. stretching: {
  8364. height: math.unit(3.65, "meters"),
  8365. weight: math.unit(1200, "lb"),
  8366. name: "Stretching",
  8367. image: {
  8368. source: "./media/characters/teal/stretching.svg",
  8369. extra: 1276 / 1244,
  8370. bottom: 0 / 1276
  8371. }
  8372. },
  8373. legged: {
  8374. height: math.unit(1.3, "meters"),
  8375. weight: math.unit(100, "lb"),
  8376. name: "Legged",
  8377. image: {
  8378. source: "./media/characters/teal/legged.svg",
  8379. extra: 462 / 437,
  8380. bottom: 24 / 486
  8381. }
  8382. },
  8383. naga: {
  8384. height: math.unit(5.4, "meters"),
  8385. weight: math.unit(4000, "lb"),
  8386. name: "Naga",
  8387. image: {
  8388. source: "./media/characters/teal/naga.svg",
  8389. extra: 1902 / 1858,
  8390. bottom: 0 / 1902
  8391. }
  8392. },
  8393. hand: {
  8394. height: math.unit(0.52, "meters"),
  8395. name: "Hand",
  8396. image: {
  8397. source: "./media/characters/teal/hand.svg"
  8398. }
  8399. },
  8400. maw: {
  8401. height: math.unit(0.43, "meters"),
  8402. name: "Maw",
  8403. image: {
  8404. source: "./media/characters/teal/maw.svg"
  8405. }
  8406. },
  8407. slit: {
  8408. height: math.unit(0.25, "meters"),
  8409. name: "Slit",
  8410. image: {
  8411. source: "./media/characters/teal/slit.svg"
  8412. }
  8413. },
  8414. },
  8415. [
  8416. {
  8417. name: "Normal",
  8418. height: math.unit(2.75, "meters"),
  8419. default: true
  8420. },
  8421. {
  8422. name: "Macro",
  8423. height: math.unit(300, "feet")
  8424. },
  8425. {
  8426. name: "Macro+",
  8427. height: math.unit(2000, "feet")
  8428. },
  8429. ]
  8430. ))
  8431. characterMakers.push(() => makeCharacter(
  8432. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8433. {
  8434. frontCat: {
  8435. height: math.unit(6, "feet"),
  8436. weight: math.unit(180, "lbs"),
  8437. name: "Front (Cat)",
  8438. image: {
  8439. source: "./media/characters/ravin-amulet/front-cat.svg"
  8440. }
  8441. },
  8442. frontCatAlt: {
  8443. height: math.unit(6, "feet"),
  8444. weight: math.unit(180, "lbs"),
  8445. name: "Front (Alt, Cat)",
  8446. image: {
  8447. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8448. }
  8449. },
  8450. frontWerewolf: {
  8451. height: math.unit(6 * 1.2, "feet"),
  8452. weight: math.unit(225, "lbs"),
  8453. name: "Front (Werewolf)",
  8454. image: {
  8455. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8456. }
  8457. },
  8458. backWerewolf: {
  8459. height: math.unit(6 * 1.2, "feet"),
  8460. weight: math.unit(225, "lbs"),
  8461. name: "Back (Werewolf)",
  8462. image: {
  8463. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8464. }
  8465. },
  8466. },
  8467. [
  8468. {
  8469. name: "Nano",
  8470. height: math.unit(1, "micrometer")
  8471. },
  8472. {
  8473. name: "Micro",
  8474. height: math.unit(1, "inch")
  8475. },
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(6, "feet"),
  8479. default: true
  8480. },
  8481. {
  8482. name: "Macro",
  8483. height: math.unit(60, "feet")
  8484. }
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(165, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/fluoresce/front.svg"
  8496. }
  8497. }
  8498. },
  8499. [
  8500. {
  8501. name: "Micro",
  8502. height: math.unit(6, "cm")
  8503. },
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(5 + 7 / 12, "feet"),
  8507. default: true
  8508. },
  8509. {
  8510. name: "Macro",
  8511. height: math.unit(56, "feet")
  8512. },
  8513. {
  8514. name: "Megamacro",
  8515. height: math.unit(1.9, "miles")
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(9 + 6 / 12, "feet"),
  8524. weight: math.unit(523, "lbs"),
  8525. name: "Side",
  8526. image: {
  8527. source: "./media/characters/aurora/side.svg",
  8528. extra: 474/393,
  8529. bottom: 5/479
  8530. }
  8531. }
  8532. },
  8533. [
  8534. {
  8535. name: "Normal",
  8536. height: math.unit(9 + 6 / 12, "feet")
  8537. },
  8538. {
  8539. name: "Macro",
  8540. height: math.unit(96, "feet"),
  8541. default: true
  8542. },
  8543. {
  8544. name: "Macro+",
  8545. height: math.unit(243, "feet")
  8546. },
  8547. ]
  8548. ))
  8549. characterMakers.push(() => makeCharacter(
  8550. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8551. {
  8552. front: {
  8553. height: math.unit(194, "cm"),
  8554. weight: math.unit(90, "kg"),
  8555. name: "Front",
  8556. image: {
  8557. source: "./media/characters/ranek/front.svg",
  8558. extra: 1862/1791,
  8559. bottom: 80/1942
  8560. }
  8561. },
  8562. back: {
  8563. height: math.unit(194, "cm"),
  8564. weight: math.unit(90, "kg"),
  8565. name: "Back",
  8566. image: {
  8567. source: "./media/characters/ranek/back.svg",
  8568. extra: 1853/1787,
  8569. bottom: 74/1927
  8570. }
  8571. },
  8572. feral: {
  8573. height: math.unit(30, "cm"),
  8574. weight: math.unit(1.6, "lbs"),
  8575. name: "Feral",
  8576. image: {
  8577. source: "./media/characters/ranek/feral.svg",
  8578. extra: 990/631,
  8579. bottom: 29/1019
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Normal",
  8586. height: math.unit(194, "cm"),
  8587. default: true
  8588. },
  8589. {
  8590. name: "Macro",
  8591. height: math.unit(100, "meters")
  8592. },
  8593. ]
  8594. ))
  8595. characterMakers.push(() => makeCharacter(
  8596. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8597. {
  8598. front: {
  8599. height: math.unit(5 + 6 / 12, "feet"),
  8600. weight: math.unit(153, "lbs"),
  8601. name: "Front",
  8602. image: {
  8603. source: "./media/characters/andrew-cooper/front.svg"
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Nano",
  8610. height: math.unit(1, "mm")
  8611. },
  8612. {
  8613. name: "Micro",
  8614. height: math.unit(2, "inches")
  8615. },
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(5 + 6 / 12, "feet"),
  8619. default: true
  8620. }
  8621. ]
  8622. ))
  8623. characterMakers.push(() => makeCharacter(
  8624. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8625. {
  8626. front: {
  8627. height: math.unit(6, "feet"),
  8628. weight: math.unit(180, "lbs"),
  8629. name: "Front",
  8630. image: {
  8631. source: "./media/characters/akane-sato/front.svg",
  8632. extra: 1219 / 1140
  8633. }
  8634. },
  8635. back: {
  8636. height: math.unit(6, "feet"),
  8637. weight: math.unit(180, "lbs"),
  8638. name: "Back",
  8639. image: {
  8640. source: "./media/characters/akane-sato/back.svg",
  8641. extra: 1219 / 1170
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Normal",
  8648. height: math.unit(2.5, "meters")
  8649. },
  8650. {
  8651. name: "Macro",
  8652. height: math.unit(250, "meters"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Megamacro",
  8657. height: math.unit(25, "km")
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8663. {
  8664. front: {
  8665. height: math.unit(6, "feet"),
  8666. weight: math.unit(65, "kg"),
  8667. name: "Front",
  8668. image: {
  8669. source: "./media/characters/rook/front.svg",
  8670. extra: 960 / 950
  8671. }
  8672. }
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(8.8, "feet")
  8678. },
  8679. {
  8680. name: "Macro",
  8681. height: math.unit(88, "feet"),
  8682. default: true
  8683. },
  8684. {
  8685. name: "Megamacro",
  8686. height: math.unit(8, "miles")
  8687. },
  8688. ]
  8689. ))
  8690. characterMakers.push(() => makeCharacter(
  8691. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8692. {
  8693. front: {
  8694. height: math.unit(12 + 2 / 12, "feet"),
  8695. weight: math.unit(808, "lbs"),
  8696. name: "Front",
  8697. image: {
  8698. source: "./media/characters/prodigy/front.svg"
  8699. }
  8700. }
  8701. },
  8702. [
  8703. {
  8704. name: "Normal",
  8705. height: math.unit(12 + 2 / 12, "feet"),
  8706. default: true
  8707. },
  8708. {
  8709. name: "Macro",
  8710. height: math.unit(143, "feet")
  8711. },
  8712. {
  8713. name: "Macro+",
  8714. height: math.unit(400, "feet")
  8715. },
  8716. ]
  8717. ))
  8718. characterMakers.push(() => makeCharacter(
  8719. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8720. {
  8721. front: {
  8722. height: math.unit(6, "feet"),
  8723. weight: math.unit(225, "lbs"),
  8724. name: "Front",
  8725. image: {
  8726. source: "./media/characters/daniel/front.svg"
  8727. }
  8728. },
  8729. leaning: {
  8730. height: math.unit(6, "feet"),
  8731. weight: math.unit(225, "lbs"),
  8732. name: "Leaning",
  8733. image: {
  8734. source: "./media/characters/daniel/leaning.svg"
  8735. }
  8736. },
  8737. },
  8738. [
  8739. {
  8740. name: "Macro",
  8741. height: math.unit(1000, "feet"),
  8742. default: true
  8743. },
  8744. ]
  8745. ))
  8746. characterMakers.push(() => makeCharacter(
  8747. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8748. {
  8749. front: {
  8750. height: math.unit(6, "feet"),
  8751. weight: math.unit(88, "lbs"),
  8752. name: "Front",
  8753. image: {
  8754. source: "./media/characters/chiros/front.svg",
  8755. extra: 306 / 226
  8756. }
  8757. },
  8758. side: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(88, "lbs"),
  8761. name: "Side",
  8762. image: {
  8763. source: "./media/characters/chiros/side.svg",
  8764. extra: 306 / 226
  8765. }
  8766. },
  8767. },
  8768. [
  8769. {
  8770. name: "Normal",
  8771. height: math.unit(6, "cm"),
  8772. default: true
  8773. },
  8774. ]
  8775. ))
  8776. characterMakers.push(() => makeCharacter(
  8777. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8778. {
  8779. front: {
  8780. height: math.unit(6, "feet"),
  8781. weight: math.unit(100, "lbs"),
  8782. name: "Front",
  8783. image: {
  8784. source: "./media/characters/selka/front.svg",
  8785. extra: 947 / 887
  8786. }
  8787. }
  8788. },
  8789. [
  8790. {
  8791. name: "Normal",
  8792. height: math.unit(5, "cm"),
  8793. default: true
  8794. },
  8795. ]
  8796. ))
  8797. characterMakers.push(() => makeCharacter(
  8798. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8799. {
  8800. front: {
  8801. height: math.unit(8 + 3 / 12, "feet"),
  8802. weight: math.unit(424, "lbs"),
  8803. name: "Front",
  8804. image: {
  8805. source: "./media/characters/verin/front.svg",
  8806. extra: 1845 / 1550
  8807. }
  8808. },
  8809. frontArmored: {
  8810. height: math.unit(8 + 3 / 12, "feet"),
  8811. weight: math.unit(424, "lbs"),
  8812. name: "Front (Armored)",
  8813. image: {
  8814. source: "./media/characters/verin/front-armor.svg",
  8815. extra: 1845 / 1550,
  8816. bottom: 0.01
  8817. }
  8818. },
  8819. back: {
  8820. height: math.unit(8 + 3 / 12, "feet"),
  8821. weight: math.unit(424, "lbs"),
  8822. name: "Back",
  8823. image: {
  8824. source: "./media/characters/verin/back.svg",
  8825. bottom: 0.1,
  8826. extra: 1
  8827. }
  8828. },
  8829. foot: {
  8830. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8831. name: "Foot",
  8832. image: {
  8833. source: "./media/characters/verin/foot.svg"
  8834. }
  8835. },
  8836. },
  8837. [
  8838. {
  8839. name: "Normal",
  8840. height: math.unit(8 + 3 / 12, "feet")
  8841. },
  8842. {
  8843. name: "Minimacro",
  8844. height: math.unit(21, "feet"),
  8845. default: true
  8846. },
  8847. {
  8848. name: "Macro",
  8849. height: math.unit(626, "feet")
  8850. },
  8851. ]
  8852. ))
  8853. characterMakers.push(() => makeCharacter(
  8854. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8855. {
  8856. front: {
  8857. height: math.unit(2.718, "meters"),
  8858. weight: math.unit(150, "lbs"),
  8859. name: "Front",
  8860. image: {
  8861. source: "./media/characters/sovrim-terraquian/front.svg",
  8862. extra: 1752/1689,
  8863. bottom: 36/1788
  8864. }
  8865. },
  8866. back: {
  8867. height: math.unit(2.718, "meters"),
  8868. weight: math.unit(150, "lbs"),
  8869. name: "Back",
  8870. image: {
  8871. source: "./media/characters/sovrim-terraquian/back.svg",
  8872. extra: 1698/1657,
  8873. bottom: 58/1756
  8874. }
  8875. },
  8876. tongue: {
  8877. height: math.unit(2.865, "feet"),
  8878. name: "Tongue",
  8879. image: {
  8880. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8881. }
  8882. },
  8883. hand: {
  8884. height: math.unit(1.61, "feet"),
  8885. name: "Hand",
  8886. image: {
  8887. source: "./media/characters/sovrim-terraquian/hand.svg"
  8888. }
  8889. },
  8890. foot: {
  8891. height: math.unit(1.05, "feet"),
  8892. name: "Foot",
  8893. image: {
  8894. source: "./media/characters/sovrim-terraquian/foot.svg"
  8895. }
  8896. },
  8897. footAlt: {
  8898. height: math.unit(0.88, "feet"),
  8899. name: "Foot (Alt)",
  8900. image: {
  8901. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8902. }
  8903. },
  8904. },
  8905. [
  8906. {
  8907. name: "Micro",
  8908. height: math.unit(2, "inches")
  8909. },
  8910. {
  8911. name: "Small",
  8912. height: math.unit(1, "meter")
  8913. },
  8914. {
  8915. name: "Normal",
  8916. height: math.unit(Math.E, "meters"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Macro",
  8921. height: math.unit(20, "meters")
  8922. },
  8923. {
  8924. name: "Macro+",
  8925. height: math.unit(400, "meters")
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8931. {
  8932. front: {
  8933. height: math.unit(7, "feet"),
  8934. weight: math.unit(489, "lbs"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/reece-silvermane/front.svg",
  8938. bottom: 0.02,
  8939. extra: 1
  8940. }
  8941. },
  8942. },
  8943. [
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(1.5, "miles"),
  8947. default: true
  8948. },
  8949. ]
  8950. ))
  8951. characterMakers.push(() => makeCharacter(
  8952. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8953. {
  8954. front: {
  8955. height: math.unit(6, "feet"),
  8956. weight: math.unit(78, "kg"),
  8957. name: "Front",
  8958. image: {
  8959. source: "./media/characters/kane/front.svg",
  8960. extra: 978 / 899
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(2.1, "m"),
  8968. },
  8969. {
  8970. name: "Macro",
  8971. height: math.unit(1, "km"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(200, "kg"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/tegon/front.svg",
  8985. bottom: 0.01,
  8986. extra: 1
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Micro",
  8993. height: math.unit(1, "inch")
  8994. },
  8995. {
  8996. name: "Normal",
  8997. height: math.unit(6 + 3 / 12, "feet"),
  8998. default: true
  8999. },
  9000. {
  9001. name: "Macro",
  9002. height: math.unit(300, "feet")
  9003. },
  9004. {
  9005. name: "Megamacro",
  9006. height: math.unit(69, "miles")
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9012. {
  9013. side: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(2304, "lbs"),
  9016. name: "Side",
  9017. image: {
  9018. source: "./media/characters/arcturax/side.svg",
  9019. extra: 790 / 376,
  9020. bottom: 0.01
  9021. }
  9022. },
  9023. },
  9024. [
  9025. {
  9026. name: "Micro",
  9027. height: math.unit(2, "inch")
  9028. },
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(6, "feet")
  9032. },
  9033. {
  9034. name: "Macro",
  9035. height: math.unit(39, "feet"),
  9036. default: true
  9037. },
  9038. {
  9039. name: "Megamacro",
  9040. height: math.unit(7, "miles")
  9041. },
  9042. ]
  9043. ))
  9044. characterMakers.push(() => makeCharacter(
  9045. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9046. {
  9047. front: {
  9048. height: math.unit(6, "feet"),
  9049. weight: math.unit(50, "lbs"),
  9050. name: "Front",
  9051. image: {
  9052. source: "./media/characters/sentri/front.svg",
  9053. extra: 1750 / 1570,
  9054. bottom: 0.025
  9055. }
  9056. },
  9057. frontAlt: {
  9058. height: math.unit(6, "feet"),
  9059. weight: math.unit(50, "lbs"),
  9060. name: "Front (Alt)",
  9061. image: {
  9062. source: "./media/characters/sentri/front-alt.svg",
  9063. extra: 1750 / 1570,
  9064. bottom: 0.025
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(15, "feet"),
  9072. default: true
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(2500, "feet")
  9077. }
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9082. {
  9083. front: {
  9084. height: math.unit(5 + 8 / 12, "feet"),
  9085. weight: math.unit(130, "lbs"),
  9086. name: "Front",
  9087. image: {
  9088. source: "./media/characters/corvin/front.svg",
  9089. extra: 1803 / 1629
  9090. }
  9091. },
  9092. frontShirt: {
  9093. height: math.unit(5 + 8 / 12, "feet"),
  9094. weight: math.unit(130, "lbs"),
  9095. name: "Front (Shirt)",
  9096. image: {
  9097. source: "./media/characters/corvin/front-shirt.svg",
  9098. extra: 1803 / 1629
  9099. }
  9100. },
  9101. frontPoncho: {
  9102. height: math.unit(5 + 8 / 12, "feet"),
  9103. weight: math.unit(130, "lbs"),
  9104. name: "Front (Poncho)",
  9105. image: {
  9106. source: "./media/characters/corvin/front-poncho.svg",
  9107. extra: 1803 / 1629
  9108. }
  9109. },
  9110. side: {
  9111. height: math.unit(5 + 8 / 12, "feet"),
  9112. weight: math.unit(130, "lbs"),
  9113. name: "Side",
  9114. image: {
  9115. source: "./media/characters/corvin/side.svg",
  9116. extra: 1012 / 945
  9117. }
  9118. },
  9119. back: {
  9120. height: math.unit(5 + 8 / 12, "feet"),
  9121. weight: math.unit(130, "lbs"),
  9122. name: "Back",
  9123. image: {
  9124. source: "./media/characters/corvin/back.svg",
  9125. extra: 1803 / 1629
  9126. }
  9127. },
  9128. },
  9129. [
  9130. {
  9131. name: "Micro",
  9132. height: math.unit(3, "inches")
  9133. },
  9134. {
  9135. name: "Normal",
  9136. height: math.unit(5 + 8 / 12, "feet")
  9137. },
  9138. {
  9139. name: "Macro",
  9140. height: math.unit(300, "feet"),
  9141. default: true
  9142. },
  9143. {
  9144. name: "Megamacro",
  9145. height: math.unit(500, "miles")
  9146. }
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9151. {
  9152. front: {
  9153. height: math.unit(6, "feet"),
  9154. weight: math.unit(135, "lbs"),
  9155. name: "Front",
  9156. image: {
  9157. source: "./media/characters/q/front.svg",
  9158. extra: 854 / 752,
  9159. bottom: 0.005
  9160. }
  9161. },
  9162. back: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(130, "lbs"),
  9165. name: "Back",
  9166. image: {
  9167. source: "./media/characters/q/back.svg",
  9168. extra: 854 / 752
  9169. }
  9170. },
  9171. },
  9172. [
  9173. {
  9174. name: "Macro",
  9175. height: math.unit(90, "feet"),
  9176. default: true
  9177. },
  9178. {
  9179. name: "Extra Macro",
  9180. height: math.unit(300, "feet"),
  9181. },
  9182. {
  9183. name: "BIG WALF",
  9184. height: math.unit(750, "feet"),
  9185. },
  9186. ]
  9187. ))
  9188. characterMakers.push(() => makeCharacter(
  9189. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9190. {
  9191. front: {
  9192. height: math.unit(3, "feet"),
  9193. weight: math.unit(28, "lbs"),
  9194. name: "Front",
  9195. image: {
  9196. source: "./media/characters/citrine/front.svg"
  9197. }
  9198. }
  9199. },
  9200. [
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(3, "feet"),
  9204. default: true
  9205. }
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9210. {
  9211. front: {
  9212. height: math.unit(14, "feet"),
  9213. weight: math.unit(1450, "kg"),
  9214. preyCapacity: math.unit(15, "people"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/aura-starwind/front.svg",
  9218. extra: 1440/1327,
  9219. bottom: 11/1451
  9220. }
  9221. },
  9222. side: {
  9223. height: math.unit(14, "feet"),
  9224. weight: math.unit(1450, "kg"),
  9225. preyCapacity: math.unit(15, "people"),
  9226. name: "Side",
  9227. image: {
  9228. source: "./media/characters/aura-starwind/side.svg",
  9229. extra: 1654 / 1497
  9230. }
  9231. },
  9232. taur: {
  9233. height: math.unit(18, "feet"),
  9234. weight: math.unit(5500, "kg"),
  9235. preyCapacity: math.unit(50, "people"),
  9236. name: "Taur",
  9237. image: {
  9238. source: "./media/characters/aura-starwind/taur.svg",
  9239. extra: 1760 / 1650
  9240. }
  9241. },
  9242. feral: {
  9243. height: math.unit(46, "feet"),
  9244. weight: math.unit(25000, "kg"),
  9245. preyCapacity: math.unit(120, "people"),
  9246. name: "Feral",
  9247. image: {
  9248. source: "./media/characters/aura-starwind/feral.svg"
  9249. }
  9250. },
  9251. },
  9252. [
  9253. {
  9254. name: "Normal",
  9255. height: math.unit(14, "feet"),
  9256. default: true
  9257. },
  9258. {
  9259. name: "Macro",
  9260. height: math.unit(50, "meters")
  9261. },
  9262. {
  9263. name: "Megamacro",
  9264. height: math.unit(5000, "meters")
  9265. },
  9266. {
  9267. name: "Gigamacro",
  9268. height: math.unit(100000, "kilometers")
  9269. },
  9270. ]
  9271. ))
  9272. characterMakers.push(() => makeCharacter(
  9273. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9274. {
  9275. front: {
  9276. height: math.unit(2 + 7 / 12, "feet"),
  9277. weight: math.unit(32, "lbs"),
  9278. name: "Front",
  9279. image: {
  9280. source: "./media/characters/rivet/front.svg",
  9281. extra: 1716 / 1658,
  9282. bottom: 0.03
  9283. }
  9284. },
  9285. foot: {
  9286. height: math.unit(0.551, "feet"),
  9287. name: "Rivet's Foot",
  9288. image: {
  9289. source: "./media/characters/rivet/foot.svg"
  9290. },
  9291. rename: true
  9292. }
  9293. },
  9294. [
  9295. {
  9296. name: "Micro",
  9297. height: math.unit(1.5, "inches"),
  9298. },
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(2 + 7 / 12, "feet"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Macro",
  9306. height: math.unit(85, "feet")
  9307. },
  9308. {
  9309. name: "Megamacro",
  9310. height: math.unit(2.2, "km")
  9311. }
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(5 + 9 / 12, "feet"),
  9319. weight: math.unit(150, "lbs"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/coffee/front.svg",
  9323. extra: 946/880,
  9324. bottom: 66/1012
  9325. }
  9326. },
  9327. foot: {
  9328. height: math.unit(1.29, "feet"),
  9329. name: "Foot",
  9330. image: {
  9331. source: "./media/characters/coffee/foot.svg"
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Micro",
  9338. height: math.unit(2, "inches"),
  9339. },
  9340. {
  9341. name: "Normal",
  9342. height: math.unit(5 + 9 / 12, "feet"),
  9343. default: true
  9344. },
  9345. {
  9346. name: "Macro",
  9347. height: math.unit(800, "feet")
  9348. },
  9349. {
  9350. name: "Megamacro",
  9351. height: math.unit(25, "miles")
  9352. }
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(6, "feet"),
  9360. weight: math.unit(200, "lbs"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/chari-gal/front.svg",
  9364. extra: 1568 / 1385,
  9365. bottom: 0.047
  9366. }
  9367. },
  9368. gigantamax: {
  9369. height: math.unit(6 * 16, "feet"),
  9370. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9371. name: "Gigantamax",
  9372. image: {
  9373. source: "./media/characters/chari-gal/gigantamax.svg",
  9374. extra: 1124 / 888,
  9375. bottom: 0.03
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(5 + 7 / 12, "feet")
  9383. },
  9384. {
  9385. name: "Macro",
  9386. height: math.unit(200, "feet"),
  9387. default: true
  9388. }
  9389. ]
  9390. ))
  9391. characterMakers.push(() => makeCharacter(
  9392. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9393. {
  9394. front: {
  9395. height: math.unit(6, "feet"),
  9396. weight: math.unit(150, "lbs"),
  9397. name: "Front",
  9398. image: {
  9399. source: "./media/characters/nova/front.svg",
  9400. extra: 5000 / 4722,
  9401. bottom: 0.02
  9402. }
  9403. }
  9404. },
  9405. [
  9406. {
  9407. name: "Micro-",
  9408. height: math.unit(0.8, "inches")
  9409. },
  9410. {
  9411. name: "Micro",
  9412. height: math.unit(2, "inches"),
  9413. default: true
  9414. },
  9415. ]
  9416. ))
  9417. characterMakers.push(() => makeCharacter(
  9418. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9419. {
  9420. koboldFront: {
  9421. height: math.unit(3 + 1 / 12, "feet"),
  9422. weight: math.unit(21.7, "lbs"),
  9423. name: "Front",
  9424. image: {
  9425. source: "./media/characters/argent/kobold-front.svg",
  9426. extra: 1471 / 1331,
  9427. bottom: 100.8 / 1575.5
  9428. },
  9429. form: "kobold",
  9430. default: true
  9431. },
  9432. dragonFront: {
  9433. height: math.unit(75, "inches"),
  9434. name: "Front",
  9435. image: {
  9436. source: "./media/characters/argent/dragon-front.svg",
  9437. extra: 1389/1248,
  9438. bottom: 54/1443
  9439. },
  9440. form: "dragon",
  9441. },
  9442. dragonBack: {
  9443. height: math.unit(75, "inches"),
  9444. name: "Back",
  9445. image: {
  9446. source: "./media/characters/argent/dragon-back.svg",
  9447. extra: 1399/1271,
  9448. bottom: 23/1422
  9449. },
  9450. form: "dragon",
  9451. },
  9452. dragonDressed: {
  9453. height: math.unit(75, "inches"),
  9454. name: "Dressed",
  9455. image: {
  9456. source: "./media/characters/argent/dragon-dressed.svg",
  9457. extra: 1350/1215,
  9458. bottom: 26/1376
  9459. },
  9460. form: "dragon"
  9461. },
  9462. dragonHead: {
  9463. height: math.unit(23.5, "inches"),
  9464. name: "Head",
  9465. image: {
  9466. source: "./media/characters/argent/dragon-head.svg"
  9467. },
  9468. form: "dragon",
  9469. },
  9470. },
  9471. [
  9472. {
  9473. name: "Micro",
  9474. height: math.unit(2, "inches"),
  9475. form: "kobold",
  9476. },
  9477. {
  9478. name: "Normal",
  9479. height: math.unit(3 + 1 / 12, "feet"),
  9480. form: "kobold",
  9481. default: true
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(120, "feet"),
  9486. form: "kobold",
  9487. },
  9488. {
  9489. name: "Speck",
  9490. height: math.unit(1, "mm"),
  9491. form: "dragon",
  9492. },
  9493. {
  9494. name: "Tiny",
  9495. height: math.unit(1, "cm"),
  9496. form: "dragon",
  9497. },
  9498. {
  9499. name: "Micro",
  9500. height: math.unit(5, "cm"),
  9501. form: "dragon",
  9502. },
  9503. {
  9504. name: "Normal",
  9505. height: math.unit(75, "inches"),
  9506. form: "dragon",
  9507. default: true
  9508. },
  9509. {
  9510. name: "Extra Tall",
  9511. height: math.unit(9, "feet"),
  9512. form: "dragon",
  9513. },
  9514. {
  9515. name: "Inconvenient",
  9516. height: math.unit(5, "meters"),
  9517. form: "dragon",
  9518. },
  9519. {
  9520. name: "Macro",
  9521. height: math.unit(70, "meters"),
  9522. form: "dragon",
  9523. },
  9524. {
  9525. name: "Macro+",
  9526. height: math.unit(250, "meters"),
  9527. form: "dragon",
  9528. },
  9529. {
  9530. name: "Megamacro",
  9531. height: math.unit(20, "km"),
  9532. form: "dragon",
  9533. },
  9534. {
  9535. name: "Mountainous",
  9536. height: math.unit(100, "km"),
  9537. form: "dragon",
  9538. },
  9539. {
  9540. name: "Continental",
  9541. height: math.unit(2, "megameters"),
  9542. form: "dragon",
  9543. },
  9544. {
  9545. name: "Too Big",
  9546. height: math.unit(900, "megameters"),
  9547. form: "dragon",
  9548. },
  9549. ],
  9550. {
  9551. "kobold": {
  9552. name: "Kobold",
  9553. default: true
  9554. },
  9555. "dragon": {
  9556. name: "Dragon",
  9557. },
  9558. }
  9559. ))
  9560. characterMakers.push(() => makeCharacter(
  9561. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9562. {
  9563. lamp: {
  9564. height: math.unit(7 * 1559 / 989, "feet"),
  9565. name: "Magic Lamp",
  9566. image: {
  9567. source: "./media/characters/mira-al-cul/lamp.svg",
  9568. extra: 1617 / 1559
  9569. }
  9570. },
  9571. front: {
  9572. height: math.unit(7, "feet"),
  9573. name: "Front",
  9574. image: {
  9575. source: "./media/characters/mira-al-cul/front.svg",
  9576. extra: 1044 / 990
  9577. }
  9578. },
  9579. },
  9580. [
  9581. {
  9582. name: "Heavily Restricted",
  9583. height: math.unit(7 * 1559 / 989, "feet")
  9584. },
  9585. {
  9586. name: "Freshly Freed",
  9587. height: math.unit(50 * 1559 / 989, "feet")
  9588. },
  9589. {
  9590. name: "World Encompassing",
  9591. height: math.unit(10000 * 1559 / 989, "miles")
  9592. },
  9593. {
  9594. name: "Galactic",
  9595. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9596. },
  9597. {
  9598. name: "Palmed Universe",
  9599. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9600. default: true
  9601. },
  9602. {
  9603. name: "Multiversal Matriarch",
  9604. height: math.unit(8.87e10, "yottameters")
  9605. },
  9606. {
  9607. name: "Void Mother",
  9608. height: math.unit(3.14e110, "yottaparsecs")
  9609. },
  9610. {
  9611. name: "Toying with Transcendence",
  9612. height: math.unit(1e307, "meters")
  9613. },
  9614. ]
  9615. ))
  9616. characterMakers.push(() => makeCharacter(
  9617. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9618. {
  9619. front: {
  9620. height: math.unit(17 + 1 / 12, "feet"),
  9621. weight: math.unit(476.2 * 5, "lbs"),
  9622. name: "Front",
  9623. image: {
  9624. source: "./media/characters/kuro-shi-uchū/front.svg",
  9625. extra: 2329 / 1835,
  9626. bottom: 0.02
  9627. }
  9628. },
  9629. },
  9630. [
  9631. {
  9632. name: "Micro",
  9633. height: math.unit(2, "inches")
  9634. },
  9635. {
  9636. name: "Normal",
  9637. height: math.unit(12, "meters")
  9638. },
  9639. {
  9640. name: "Planetary",
  9641. height: math.unit(0.00929, "AU"),
  9642. default: true
  9643. },
  9644. {
  9645. name: "Universal",
  9646. height: math.unit(20, "gigaparsecs")
  9647. },
  9648. ]
  9649. ))
  9650. characterMakers.push(() => makeCharacter(
  9651. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9652. {
  9653. front: {
  9654. height: math.unit(5 + 2 / 12, "feet"),
  9655. weight: math.unit(120, "lbs"),
  9656. name: "Front",
  9657. image: {
  9658. source: "./media/characters/katherine/front.svg",
  9659. extra: 2075 / 1969
  9660. }
  9661. },
  9662. dress: {
  9663. height: math.unit(5 + 2 / 12, "feet"),
  9664. weight: math.unit(120, "lbs"),
  9665. name: "Dress",
  9666. image: {
  9667. source: "./media/characters/katherine/dress.svg",
  9668. extra: 2258 / 2064
  9669. }
  9670. },
  9671. },
  9672. [
  9673. {
  9674. name: "Micro",
  9675. height: math.unit(1, "inches"),
  9676. default: true
  9677. },
  9678. {
  9679. name: "Normal",
  9680. height: math.unit(5 + 2 / 12, "feet")
  9681. },
  9682. {
  9683. name: "Macro",
  9684. height: math.unit(100, "meters")
  9685. },
  9686. {
  9687. name: "Megamacro",
  9688. height: math.unit(80, "miles")
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9694. {
  9695. front: {
  9696. height: math.unit(7 + 8 / 12, "feet"),
  9697. weight: math.unit(250, "lbs"),
  9698. name: "Front",
  9699. image: {
  9700. source: "./media/characters/yevis/front.svg",
  9701. extra: 1938 / 1755
  9702. }
  9703. }
  9704. },
  9705. [
  9706. {
  9707. name: "Mortal",
  9708. height: math.unit(7 + 8 / 12, "feet")
  9709. },
  9710. {
  9711. name: "Battle",
  9712. height: math.unit(25 + 11 / 12, "feet")
  9713. },
  9714. {
  9715. name: "Wrath",
  9716. height: math.unit(1654 + 11 / 12, "feet")
  9717. },
  9718. {
  9719. name: "Planet Destroyer",
  9720. height: math.unit(12000, "miles")
  9721. },
  9722. {
  9723. name: "Galaxy Conqueror",
  9724. height: math.unit(1.45, "zettameters"),
  9725. default: true
  9726. },
  9727. {
  9728. name: "Universal War",
  9729. height: math.unit(184, "gigaparsecs")
  9730. },
  9731. {
  9732. name: "Eternity War",
  9733. height: math.unit(1.98e55, "yottaparsecs")
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(5 + 8 / 12, "feet"),
  9742. weight: math.unit(63, "kg"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/xavier/front.svg",
  9746. extra: 944 / 883
  9747. }
  9748. },
  9749. frontStretch: {
  9750. height: math.unit(5 + 8 / 12, "feet"),
  9751. weight: math.unit(63, "kg"),
  9752. name: "Stretching",
  9753. image: {
  9754. source: "./media/characters/xavier/front-stretch.svg",
  9755. extra: 962 / 820
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(5 + 8 / 12, "feet")
  9763. },
  9764. {
  9765. name: "Macro",
  9766. height: math.unit(100, "meters"),
  9767. default: true
  9768. },
  9769. {
  9770. name: "McLargeHuge",
  9771. height: math.unit(10, "miles")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(5 + 5 / 12, "feet"),
  9780. weight: math.unit(150, "lb"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/joshii/front.svg",
  9784. extra: 765 / 653,
  9785. bottom: 51 / 816
  9786. }
  9787. },
  9788. foot: {
  9789. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9790. name: "Foot",
  9791. image: {
  9792. source: "./media/characters/joshii/foot.svg"
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Micro",
  9799. height: math.unit(2, "inches")
  9800. },
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(5 + 5 / 12, "feet")
  9804. },
  9805. {
  9806. name: "Macro",
  9807. height: math.unit(785, "feet"),
  9808. default: true
  9809. },
  9810. {
  9811. name: "Megamacro",
  9812. height: math.unit(24.5, "miles")
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9818. {
  9819. front: {
  9820. height: math.unit(6, "feet"),
  9821. weight: math.unit(150, "lb"),
  9822. name: "Front",
  9823. image: {
  9824. source: "./media/characters/goddess-elizabeth/front.svg",
  9825. extra: 1800 / 1525,
  9826. bottom: 0.005
  9827. }
  9828. },
  9829. foot: {
  9830. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9831. name: "Foot",
  9832. image: {
  9833. source: "./media/characters/goddess-elizabeth/foot.svg"
  9834. }
  9835. },
  9836. mouth: {
  9837. height: math.unit(6, "feet"),
  9838. name: "Mouth",
  9839. image: {
  9840. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9841. }
  9842. },
  9843. },
  9844. [
  9845. {
  9846. name: "Micro",
  9847. height: math.unit(12, "feet")
  9848. },
  9849. {
  9850. name: "Normal",
  9851. height: math.unit(80, "miles"),
  9852. default: true
  9853. },
  9854. {
  9855. name: "Macro",
  9856. height: math.unit(15000, "parsecs")
  9857. },
  9858. ]
  9859. ))
  9860. characterMakers.push(() => makeCharacter(
  9861. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9862. {
  9863. front: {
  9864. height: math.unit(5 + 9 / 12, "feet"),
  9865. weight: math.unit(144, "lb"),
  9866. name: "Front",
  9867. image: {
  9868. source: "./media/characters/kara/front.svg"
  9869. }
  9870. },
  9871. feet: {
  9872. height: math.unit(6 / 6.765, "feet"),
  9873. name: "Kara's Feet",
  9874. rename: true,
  9875. image: {
  9876. source: "./media/characters/kara/feet.svg"
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Normal",
  9883. height: math.unit(5 + 9 / 12, "feet")
  9884. },
  9885. {
  9886. name: "Macro",
  9887. height: math.unit(174, "feet"),
  9888. default: true
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9894. {
  9895. front: {
  9896. height: math.unit(18, "feet"),
  9897. weight: math.unit(4050, "lb"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/tyrone/front.svg",
  9901. extra: 2405 / 2270,
  9902. bottom: 182 / 2587
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Normal",
  9909. height: math.unit(18, "feet"),
  9910. default: true
  9911. },
  9912. {
  9913. name: "Macro",
  9914. height: math.unit(300, "feet")
  9915. },
  9916. {
  9917. name: "Megamacro",
  9918. height: math.unit(15, "km")
  9919. },
  9920. {
  9921. name: "Gigamacro",
  9922. height: math.unit(500, "km")
  9923. },
  9924. {
  9925. name: "Teramacro",
  9926. height: math.unit(0.5, "gigameters")
  9927. },
  9928. {
  9929. name: "Omnimacro",
  9930. height: math.unit(1e252, "yottauniverse")
  9931. },
  9932. ]
  9933. ))
  9934. characterMakers.push(() => makeCharacter(
  9935. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9936. {
  9937. front: {
  9938. height: math.unit(7 + 8 / 12, "feet"),
  9939. weight: math.unit(120, "lb"),
  9940. name: "Front",
  9941. image: {
  9942. source: "./media/characters/danny/front.svg",
  9943. extra: 1490 / 1350
  9944. }
  9945. },
  9946. back: {
  9947. height: math.unit(7 + 8 / 12, "feet"),
  9948. weight: math.unit(120, "lb"),
  9949. name: "Back",
  9950. image: {
  9951. source: "./media/characters/danny/back.svg",
  9952. extra: 1490 / 1350
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(7 + 8 / 12, "feet"),
  9960. default: true
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(3.5, "inches"),
  9969. weight: math.unit(19, "grams"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/mallow/front.svg",
  9973. extra: 471 / 431
  9974. }
  9975. },
  9976. back: {
  9977. height: math.unit(3.5, "inches"),
  9978. weight: math.unit(19, "grams"),
  9979. name: "Back",
  9980. image: {
  9981. source: "./media/characters/mallow/back.svg",
  9982. extra: 471 / 431
  9983. }
  9984. },
  9985. },
  9986. [
  9987. {
  9988. name: "Normal",
  9989. height: math.unit(3.5, "inches"),
  9990. default: true
  9991. },
  9992. ]
  9993. ))
  9994. characterMakers.push(() => makeCharacter(
  9995. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9996. {
  9997. front: {
  9998. height: math.unit(9, "feet"),
  9999. weight: math.unit(230, "kg"),
  10000. name: "Front",
  10001. image: {
  10002. source: "./media/characters/starry-aqua/front.svg"
  10003. }
  10004. },
  10005. back: {
  10006. height: math.unit(9, "feet"),
  10007. weight: math.unit(230, "kg"),
  10008. name: "Back",
  10009. image: {
  10010. source: "./media/characters/starry-aqua/back.svg"
  10011. }
  10012. },
  10013. hand: {
  10014. height: math.unit(9 * 0.1168, "feet"),
  10015. name: "Hand",
  10016. image: {
  10017. source: "./media/characters/starry-aqua/hand.svg"
  10018. }
  10019. },
  10020. foot: {
  10021. height: math.unit(9 * 0.18, "feet"),
  10022. name: "Foot",
  10023. image: {
  10024. source: "./media/characters/starry-aqua/foot.svg"
  10025. }
  10026. }
  10027. },
  10028. [
  10029. {
  10030. name: "Micro",
  10031. height: math.unit(3, "inches")
  10032. },
  10033. {
  10034. name: "Normal",
  10035. height: math.unit(9, "feet")
  10036. },
  10037. {
  10038. name: "Macro",
  10039. height: math.unit(300, "feet"),
  10040. default: true
  10041. },
  10042. {
  10043. name: "Megamacro",
  10044. height: math.unit(3200, "feet")
  10045. }
  10046. ]
  10047. ))
  10048. characterMakers.push(() => makeCharacter(
  10049. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10050. {
  10051. front: {
  10052. height: math.unit(15, "feet"),
  10053. weight: math.unit(5026, "lb"),
  10054. name: "Front",
  10055. image: {
  10056. source: "./media/characters/luka-towers/front.svg",
  10057. extra: 1269/1133,
  10058. bottom: 51/1320
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(15, "feet"),
  10066. default: true
  10067. },
  10068. {
  10069. name: "Minimacro",
  10070. height: math.unit(25, "feet")
  10071. },
  10072. {
  10073. name: "Macro",
  10074. height: math.unit(320, "feet")
  10075. },
  10076. {
  10077. name: "Megamacro",
  10078. height: math.unit(35000, "feet")
  10079. },
  10080. {
  10081. name: "Gigamacro",
  10082. height: math.unit(4000, "miles")
  10083. },
  10084. {
  10085. name: "Teramacro",
  10086. height: math.unit(15000, "miles")
  10087. },
  10088. ]
  10089. ))
  10090. characterMakers.push(() => makeCharacter(
  10091. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10092. {
  10093. front: {
  10094. height: math.unit(6, "feet"),
  10095. weight: math.unit(150, "lb"),
  10096. name: "Front",
  10097. image: {
  10098. source: "./media/characters/natalie-nightring/front.svg",
  10099. extra: 1,
  10100. bottom: 0.06
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Uh Oh",
  10107. height: math.unit(0.1, "mm")
  10108. },
  10109. {
  10110. name: "Small",
  10111. height: math.unit(3, "inches")
  10112. },
  10113. {
  10114. name: "Human Scale",
  10115. height: math.unit(6, "feet")
  10116. },
  10117. {
  10118. name: "Librarian",
  10119. height: math.unit(50, "feet"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Immense",
  10124. height: math.unit(200, "miles")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(180, "lbs"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/danni-rosie/front.svg",
  10137. extra: 1260 / 1128,
  10138. bottom: 0.022
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Micro",
  10145. height: math.unit(2, "inches"),
  10146. default: true
  10147. },
  10148. ]
  10149. ))
  10150. characterMakers.push(() => makeCharacter(
  10151. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10152. {
  10153. front: {
  10154. height: math.unit(5 + 9 / 12, "feet"),
  10155. weight: math.unit(220, "lb"),
  10156. name: "Front",
  10157. image: {
  10158. source: "./media/characters/samantha-kruse/front.svg",
  10159. extra: (985 / 935),
  10160. bottom: 0.03
  10161. }
  10162. },
  10163. frontUndressed: {
  10164. height: math.unit(5 + 9 / 12, "feet"),
  10165. weight: math.unit(220, "lb"),
  10166. name: "Front (Undressed)",
  10167. image: {
  10168. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10169. extra: (973 / 923),
  10170. bottom: 0.025
  10171. }
  10172. },
  10173. fat: {
  10174. height: math.unit(5 + 9 / 12, "feet"),
  10175. weight: math.unit(900, "lb"),
  10176. name: "Front (Fat)",
  10177. image: {
  10178. source: "./media/characters/samantha-kruse/fat.svg",
  10179. extra: 2688 / 2561
  10180. }
  10181. },
  10182. },
  10183. [
  10184. {
  10185. name: "Normal",
  10186. height: math.unit(5 + 9 / 12, "feet"),
  10187. default: true
  10188. }
  10189. ]
  10190. ))
  10191. characterMakers.push(() => makeCharacter(
  10192. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10193. {
  10194. back: {
  10195. height: math.unit(5 + 4 / 12, "feet"),
  10196. weight: math.unit(4963, "lb"),
  10197. name: "Back",
  10198. image: {
  10199. source: "./media/characters/amelia-rosie/back.svg",
  10200. extra: 1113 / 963,
  10201. bottom: 0.01
  10202. }
  10203. },
  10204. },
  10205. [
  10206. {
  10207. name: "Level 0",
  10208. height: math.unit(5 + 4 / 12, "feet")
  10209. },
  10210. {
  10211. name: "Level 1",
  10212. height: math.unit(164597, "feet"),
  10213. default: true
  10214. },
  10215. {
  10216. name: "Level 2",
  10217. height: math.unit(956243, "miles")
  10218. },
  10219. {
  10220. name: "Level 3",
  10221. height: math.unit(29421709423, "miles")
  10222. },
  10223. {
  10224. name: "Level 4",
  10225. height: math.unit(154, "lightyears")
  10226. },
  10227. {
  10228. name: "Level 5",
  10229. height: math.unit(4738272, "lightyears")
  10230. },
  10231. {
  10232. name: "Level 6",
  10233. height: math.unit(145787152896, "lightyears")
  10234. },
  10235. ]
  10236. ))
  10237. characterMakers.push(() => makeCharacter(
  10238. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10239. {
  10240. front: {
  10241. height: math.unit(5 + 11 / 12, "feet"),
  10242. weight: math.unit(65, "kg"),
  10243. name: "Front",
  10244. image: {
  10245. source: "./media/characters/rook-kitara/front.svg",
  10246. extra: 1347 / 1274,
  10247. bottom: 0.005
  10248. }
  10249. },
  10250. },
  10251. [
  10252. {
  10253. name: "Totally Unfair",
  10254. height: math.unit(1.8, "mm")
  10255. },
  10256. {
  10257. name: "Lap Rookie",
  10258. height: math.unit(1.4, "feet")
  10259. },
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(5 + 11 / 12, "feet"),
  10263. default: true
  10264. },
  10265. {
  10266. name: "How Did This Happen",
  10267. height: math.unit(80, "miles")
  10268. }
  10269. ]
  10270. ))
  10271. characterMakers.push(() => makeCharacter(
  10272. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10273. {
  10274. front: {
  10275. height: math.unit(7, "feet"),
  10276. weight: math.unit(300, "lb"),
  10277. name: "Front",
  10278. image: {
  10279. source: "./media/characters/pisces/front.svg",
  10280. extra: 2255 / 2115,
  10281. bottom: 0.03
  10282. }
  10283. },
  10284. back: {
  10285. height: math.unit(7, "feet"),
  10286. weight: math.unit(300, "lb"),
  10287. name: "Back",
  10288. image: {
  10289. source: "./media/characters/pisces/back.svg",
  10290. extra: 2146 / 2055,
  10291. bottom: 0.04
  10292. }
  10293. },
  10294. },
  10295. [
  10296. {
  10297. name: "Normal",
  10298. height: math.unit(7, "feet"),
  10299. default: true
  10300. },
  10301. {
  10302. name: "Swimming Pool",
  10303. height: math.unit(12.2, "meters")
  10304. },
  10305. {
  10306. name: "Olympic Swimming Pool",
  10307. height: math.unit(56.3, "meters")
  10308. },
  10309. {
  10310. name: "Lake Superior",
  10311. height: math.unit(93900, "meters")
  10312. },
  10313. {
  10314. name: "Mediterranean Sea",
  10315. height: math.unit(644457, "meters")
  10316. },
  10317. {
  10318. name: "World's Oceans",
  10319. height: math.unit(4567491, "meters")
  10320. },
  10321. ]
  10322. ))
  10323. characterMakers.push(() => makeCharacter(
  10324. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10325. {
  10326. front: {
  10327. height: math.unit(2.3, "meters"),
  10328. weight: math.unit(120, "kg"),
  10329. name: "Front",
  10330. image: {
  10331. source: "./media/characters/zelas/front.svg"
  10332. }
  10333. },
  10334. side: {
  10335. height: math.unit(2.3, "meters"),
  10336. weight: math.unit(120, "kg"),
  10337. name: "Side",
  10338. image: {
  10339. source: "./media/characters/zelas/side.svg"
  10340. }
  10341. },
  10342. back: {
  10343. height: math.unit(2.3, "meters"),
  10344. weight: math.unit(120, "kg"),
  10345. name: "Back",
  10346. image: {
  10347. source: "./media/characters/zelas/back.svg"
  10348. }
  10349. },
  10350. foot: {
  10351. height: math.unit(1.116, "feet"),
  10352. name: "Foot",
  10353. image: {
  10354. source: "./media/characters/zelas/foot.svg"
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(2.3, "meters")
  10362. },
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(30, "meters"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(1, "inch"),
  10375. weight: math.unit(0.21, "grams"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/talbot/front.svg",
  10379. extra: 594 / 544
  10380. }
  10381. },
  10382. },
  10383. [
  10384. {
  10385. name: "Micro",
  10386. height: math.unit(1, "inch"),
  10387. default: true
  10388. },
  10389. ]
  10390. ))
  10391. characterMakers.push(() => makeCharacter(
  10392. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10393. {
  10394. front: {
  10395. height: math.unit(3 + 3 / 12, "feet"),
  10396. weight: math.unit(51.8, "lb"),
  10397. name: "Front",
  10398. image: {
  10399. source: "./media/characters/fliss/front.svg",
  10400. extra: 840 / 640
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Teeny Tiny",
  10407. height: math.unit(1, "mm")
  10408. },
  10409. {
  10410. name: "Small",
  10411. height: math.unit(1, "inch"),
  10412. default: true
  10413. },
  10414. {
  10415. name: "Standard Sylveon",
  10416. height: math.unit(3 + 3 / 12, "feet")
  10417. },
  10418. {
  10419. name: "Large Nuisance",
  10420. height: math.unit(33, "feet")
  10421. },
  10422. {
  10423. name: "City Filler",
  10424. height: math.unit(3000, "feet")
  10425. },
  10426. {
  10427. name: "New Horizon",
  10428. height: math.unit(6000, "miles")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(5, "cm"),
  10437. weight: math.unit(1.94, "g"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/fleta/front.svg",
  10441. extra: 835 / 803
  10442. }
  10443. },
  10444. back: {
  10445. height: math.unit(5, "cm"),
  10446. weight: math.unit(1.94, "g"),
  10447. name: "Back",
  10448. image: {
  10449. source: "./media/characters/fleta/back.svg",
  10450. extra: 835 / 803
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Micro",
  10457. height: math.unit(5, "cm"),
  10458. default: true
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(225, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/dominic/front.svg",
  10471. extra: 1770 / 1620,
  10472. bottom: 0.025
  10473. }
  10474. },
  10475. back: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(225, "lb"),
  10478. name: "Back",
  10479. image: {
  10480. source: "./media/characters/dominic/back.svg",
  10481. extra: 1745 / 1620,
  10482. bottom: 0.065
  10483. }
  10484. },
  10485. },
  10486. [
  10487. {
  10488. name: "Nano",
  10489. height: math.unit(0.1, "mm")
  10490. },
  10491. {
  10492. name: "Micro-",
  10493. height: math.unit(1, "mm")
  10494. },
  10495. {
  10496. name: "Micro",
  10497. height: math.unit(4, "inches")
  10498. },
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(6 + 4 / 12, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(115, "feet")
  10507. },
  10508. {
  10509. name: "Macro+",
  10510. height: math.unit(955, "feet")
  10511. },
  10512. {
  10513. name: "Megamacro",
  10514. height: math.unit(8990, "feet")
  10515. },
  10516. {
  10517. name: "Gigmacro",
  10518. height: math.unit(9310, "miles")
  10519. },
  10520. {
  10521. name: "Teramacro",
  10522. height: math.unit(1567005010, "miles")
  10523. },
  10524. {
  10525. name: "Examacro",
  10526. height: math.unit(1425, "parsecs")
  10527. },
  10528. ]
  10529. ))
  10530. characterMakers.push(() => makeCharacter(
  10531. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10532. {
  10533. front: {
  10534. height: math.unit(400, "feet"),
  10535. weight: math.unit(44444444, "lb"),
  10536. name: "Front",
  10537. image: {
  10538. source: "./media/characters/major-colonel/front.svg"
  10539. }
  10540. },
  10541. back: {
  10542. height: math.unit(400, "feet"),
  10543. weight: math.unit(44444444, "lb"),
  10544. name: "Back",
  10545. image: {
  10546. source: "./media/characters/major-colonel/back.svg"
  10547. }
  10548. },
  10549. },
  10550. [
  10551. {
  10552. name: "Macro",
  10553. height: math.unit(400, "feet"),
  10554. default: true
  10555. },
  10556. ]
  10557. ))
  10558. characterMakers.push(() => makeCharacter(
  10559. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10560. {
  10561. catFront: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(120, "lb"),
  10564. name: "Front (Cat Side)",
  10565. image: {
  10566. source: "./media/characters/axel-lycan/cat-front.svg",
  10567. extra: 430 / 402,
  10568. bottom: 43 / 472.35
  10569. }
  10570. },
  10571. catBack: {
  10572. height: math.unit(6, "feet"),
  10573. weight: math.unit(120, "lb"),
  10574. name: "Back (Cat Side)",
  10575. image: {
  10576. source: "./media/characters/axel-lycan/cat-back.svg",
  10577. extra: 447 / 419,
  10578. bottom: 23.3 / 469
  10579. }
  10580. },
  10581. wolfFront: {
  10582. height: math.unit(6, "feet"),
  10583. weight: math.unit(120, "lb"),
  10584. name: "Front (Wolf Side)",
  10585. image: {
  10586. source: "./media/characters/axel-lycan/wolf-front.svg",
  10587. extra: 485 / 456,
  10588. bottom: 19 / 504
  10589. }
  10590. },
  10591. wolfBack: {
  10592. height: math.unit(6, "feet"),
  10593. weight: math.unit(120, "lb"),
  10594. name: "Back (Wolf Side)",
  10595. image: {
  10596. source: "./media/characters/axel-lycan/wolf-back.svg",
  10597. extra: 475 / 438,
  10598. bottom: 39.2 / 514
  10599. }
  10600. },
  10601. },
  10602. [
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(1, "km"),
  10606. default: true
  10607. },
  10608. ]
  10609. ))
  10610. characterMakers.push(() => makeCharacter(
  10611. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10612. {
  10613. front: {
  10614. height: math.unit(5 + 9 / 12, "feet"),
  10615. weight: math.unit(175, "lb"),
  10616. name: "Front",
  10617. image: {
  10618. source: "./media/characters/vanrel-hyena/front.svg",
  10619. extra: 1086 / 1010,
  10620. bottom: 0.04
  10621. }
  10622. },
  10623. },
  10624. [
  10625. {
  10626. name: "Normal",
  10627. height: math.unit(5 + 9 / 12, "feet"),
  10628. default: true
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(103, "lb"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/abbott-absol/front.svg",
  10641. extra: 2010 / 1842
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Megamicro",
  10648. height: math.unit(0.1, "mm")
  10649. },
  10650. {
  10651. name: "Micro",
  10652. height: math.unit(1, "inch")
  10653. },
  10654. {
  10655. name: "Normal",
  10656. height: math.unit(6, "feet"),
  10657. default: true
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(6, "feet"),
  10666. weight: math.unit(264, "lb"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/hector/front.svg",
  10670. extra: 2280 / 2130,
  10671. bottom: 0.07
  10672. }
  10673. },
  10674. },
  10675. [
  10676. {
  10677. name: "Normal",
  10678. height: math.unit(12.25, "foot"),
  10679. default: true
  10680. },
  10681. {
  10682. name: "Macro",
  10683. height: math.unit(160, "feet")
  10684. },
  10685. ]
  10686. ))
  10687. characterMakers.push(() => makeCharacter(
  10688. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10689. {
  10690. front: {
  10691. height: math.unit(6, "feet"),
  10692. weight: math.unit(150, "lb"),
  10693. name: "Front",
  10694. image: {
  10695. source: "./media/characters/sal/front.svg",
  10696. extra: 1846 / 1699,
  10697. bottom: 0.04
  10698. }
  10699. },
  10700. },
  10701. [
  10702. {
  10703. name: "Megamacro",
  10704. height: math.unit(10, "miles"),
  10705. default: true
  10706. },
  10707. ]
  10708. ))
  10709. characterMakers.push(() => makeCharacter(
  10710. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10711. {
  10712. front: {
  10713. height: math.unit(3, "meters"),
  10714. weight: math.unit(450, "kg"),
  10715. name: "front",
  10716. image: {
  10717. source: "./media/characters/ranger/front.svg",
  10718. extra: 2401 / 2243,
  10719. bottom: 0.05
  10720. }
  10721. },
  10722. },
  10723. [
  10724. {
  10725. name: "Normal",
  10726. height: math.unit(3, "meters"),
  10727. default: true
  10728. },
  10729. ]
  10730. ))
  10731. characterMakers.push(() => makeCharacter(
  10732. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10733. {
  10734. front: {
  10735. height: math.unit(14, "feet"),
  10736. weight: math.unit(800, "kg"),
  10737. name: "Front",
  10738. image: {
  10739. source: "./media/characters/theresa/front.svg",
  10740. extra: 3575 / 3346,
  10741. bottom: 0.03
  10742. }
  10743. },
  10744. },
  10745. [
  10746. {
  10747. name: "Normal",
  10748. height: math.unit(14, "feet"),
  10749. default: true
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(3, "kg"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/ine/front.svg",
  10762. extra: 678 / 539,
  10763. bottom: 0.023
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Normal",
  10770. height: math.unit(2.265, "feet"),
  10771. default: true
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(5, "feet"),
  10780. weight: math.unit(30, "kg"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/vial/front.svg",
  10784. extra: 1365 / 1277,
  10785. bottom: 0.04
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(5, "feet"),
  10793. default: true
  10794. },
  10795. ]
  10796. ))
  10797. characterMakers.push(() => makeCharacter(
  10798. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10799. {
  10800. side: {
  10801. height: math.unit(3.4, "meters"),
  10802. weight: math.unit(1000, "lb"),
  10803. name: "Side",
  10804. image: {
  10805. source: "./media/characters/rovoska/side.svg",
  10806. extra: 4403 / 1515
  10807. }
  10808. },
  10809. },
  10810. [
  10811. {
  10812. name: "Normal",
  10813. height: math.unit(3.4, "meters"),
  10814. default: true
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10820. {
  10821. front: {
  10822. height: math.unit(8, "feet"),
  10823. weight: math.unit(315, "lb"),
  10824. name: "Front",
  10825. image: {
  10826. source: "./media/characters/gunner-rotthbauer/front.svg"
  10827. }
  10828. },
  10829. back: {
  10830. height: math.unit(8, "feet"),
  10831. weight: math.unit(315, "lb"),
  10832. name: "Back",
  10833. image: {
  10834. source: "./media/characters/gunner-rotthbauer/back.svg"
  10835. }
  10836. },
  10837. },
  10838. [
  10839. {
  10840. name: "Micro",
  10841. height: math.unit(3.5, "inches")
  10842. },
  10843. {
  10844. name: "Normal",
  10845. height: math.unit(8, "feet"),
  10846. default: true
  10847. },
  10848. {
  10849. name: "Macro",
  10850. height: math.unit(250, "feet")
  10851. },
  10852. {
  10853. name: "Megamacro",
  10854. height: math.unit(1, "AU")
  10855. },
  10856. ]
  10857. ))
  10858. characterMakers.push(() => makeCharacter(
  10859. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10860. {
  10861. front: {
  10862. height: math.unit(5 + 5 / 12, "feet"),
  10863. weight: math.unit(140, "lb"),
  10864. name: "Front",
  10865. image: {
  10866. source: "./media/characters/allatia/front.svg",
  10867. extra: 1227 / 1180,
  10868. bottom: 0.027
  10869. }
  10870. },
  10871. },
  10872. [
  10873. {
  10874. name: "Normal",
  10875. height: math.unit(5 + 5 / 12, "feet")
  10876. },
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(250, "feet"),
  10880. default: true
  10881. },
  10882. {
  10883. name: "Megamacro",
  10884. height: math.unit(8, "miles")
  10885. }
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(6, "feet"),
  10893. weight: math.unit(120, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/tene/front.svg",
  10897. extra: 814/750,
  10898. bottom: 36/850
  10899. }
  10900. },
  10901. stomping: {
  10902. height: math.unit(2.025, "meters"),
  10903. weight: math.unit(120, "lb"),
  10904. name: "Stomping",
  10905. image: {
  10906. source: "./media/characters/tene/stomping.svg",
  10907. extra: 885/821,
  10908. bottom: 15/900
  10909. }
  10910. },
  10911. sitting: {
  10912. height: math.unit(1, "meter"),
  10913. weight: math.unit(120, "lb"),
  10914. name: "Sitting",
  10915. image: {
  10916. source: "./media/characters/tene/sitting.svg",
  10917. extra: 396/366,
  10918. bottom: 79/475
  10919. }
  10920. },
  10921. smiling: {
  10922. height: math.unit(1.2, "feet"),
  10923. name: "Smiling",
  10924. image: {
  10925. source: "./media/characters/tene/smiling.svg",
  10926. extra: 1364/1071,
  10927. bottom: 0/1364
  10928. }
  10929. },
  10930. smug: {
  10931. height: math.unit(1.3, "feet"),
  10932. name: "Smug",
  10933. image: {
  10934. source: "./media/characters/tene/smug.svg",
  10935. extra: 1323/1082,
  10936. bottom: 0/1323
  10937. }
  10938. },
  10939. feral: {
  10940. height: math.unit(3.9, "feet"),
  10941. weight: math.unit(250, "lb"),
  10942. name: "Feral",
  10943. image: {
  10944. source: "./media/characters/tene/feral.svg",
  10945. extra: 717 / 458,
  10946. bottom: 0.179
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(6, "feet")
  10954. },
  10955. {
  10956. name: "Macro",
  10957. height: math.unit(300, "feet"),
  10958. default: true
  10959. },
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(5, "miles")
  10963. },
  10964. ]
  10965. ))
  10966. characterMakers.push(() => makeCharacter(
  10967. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10968. {
  10969. side: {
  10970. height: math.unit(6, "feet"),
  10971. name: "Side",
  10972. image: {
  10973. source: "./media/characters/evander/side.svg",
  10974. extra: 877 / 477
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(0.83, "meters"),
  10982. default: true
  10983. },
  10984. ]
  10985. ))
  10986. characterMakers.push(() => makeCharacter(
  10987. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10988. {
  10989. front: {
  10990. height: math.unit(12, "feet"),
  10991. weight: math.unit(1000, "lb"),
  10992. name: "Front",
  10993. image: {
  10994. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10995. extra: 1762 / 1611
  10996. }
  10997. },
  10998. back: {
  10999. height: math.unit(12, "feet"),
  11000. weight: math.unit(1000, "lb"),
  11001. name: "Back",
  11002. image: {
  11003. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11004. extra: 1762 / 1611
  11005. }
  11006. },
  11007. },
  11008. [
  11009. {
  11010. name: "Normal",
  11011. height: math.unit(12, "feet"),
  11012. default: true
  11013. },
  11014. {
  11015. name: "Kaiju",
  11016. height: math.unit(150, "feet")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11022. {
  11023. front: {
  11024. height: math.unit(6, "feet"),
  11025. weight: math.unit(150, "lb"),
  11026. name: "Front",
  11027. image: {
  11028. source: "./media/characters/zero-alurus/front.svg"
  11029. }
  11030. },
  11031. back: {
  11032. height: math.unit(6, "feet"),
  11033. weight: math.unit(150, "lb"),
  11034. name: "Back",
  11035. image: {
  11036. source: "./media/characters/zero-alurus/back.svg"
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Normal",
  11043. height: math.unit(5 + 10 / 12, "feet")
  11044. },
  11045. {
  11046. name: "Macro",
  11047. height: math.unit(60, "feet"),
  11048. default: true
  11049. },
  11050. {
  11051. name: "Macro+",
  11052. height: math.unit(450, "feet")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(200, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/mega-shi/front.svg",
  11065. extra: 1279 / 1250,
  11066. bottom: 0.02
  11067. }
  11068. },
  11069. back: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(200, "lb"),
  11072. name: "Back",
  11073. image: {
  11074. source: "./media/characters/mega-shi/back.svg",
  11075. extra: 1279 / 1250,
  11076. bottom: 0.02
  11077. }
  11078. },
  11079. },
  11080. [
  11081. {
  11082. name: "Micro",
  11083. height: math.unit(16 + 6 / 12, "feet")
  11084. },
  11085. {
  11086. name: "Third Dimension",
  11087. height: math.unit(40, "meters")
  11088. },
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(660, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(10, "miles")
  11097. },
  11098. {
  11099. name: "Planetary Launch",
  11100. height: math.unit(500, "miles")
  11101. },
  11102. {
  11103. name: "Interstellar",
  11104. height: math.unit(1e9, "miles")
  11105. },
  11106. {
  11107. name: "Leaving the Universe",
  11108. height: math.unit(1, "gigaparsec")
  11109. },
  11110. {
  11111. name: "Travelling Universes",
  11112. height: math.unit(30e15, "parsecs")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11118. {
  11119. front: {
  11120. height: math.unit(5 + 4/12, "feet"),
  11121. weight: math.unit(120, "lb"),
  11122. name: "Front",
  11123. image: {
  11124. source: "./media/characters/odyssey/front.svg",
  11125. extra: 1747/1571,
  11126. bottom: 47/1794
  11127. }
  11128. },
  11129. side: {
  11130. height: math.unit(5.1, "feet"),
  11131. weight: math.unit(120, "lb"),
  11132. name: "Side",
  11133. image: {
  11134. source: "./media/characters/odyssey/side.svg",
  11135. extra: 1847/1619,
  11136. bottom: 47/1894
  11137. }
  11138. },
  11139. lounging: {
  11140. height: math.unit(1.464, "feet"),
  11141. weight: math.unit(120, "lb"),
  11142. name: "Lounging",
  11143. image: {
  11144. source: "./media/characters/odyssey/lounging.svg",
  11145. extra: 1235/837,
  11146. bottom: 551/1786
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(5 + 4 / 12, "feet")
  11154. },
  11155. {
  11156. name: "Macro",
  11157. height: math.unit(1, "km")
  11158. },
  11159. {
  11160. name: "Megamacro",
  11161. height: math.unit(3000, "km")
  11162. },
  11163. {
  11164. name: "Gigamacro",
  11165. height: math.unit(1, "AU"),
  11166. default: true
  11167. },
  11168. {
  11169. name: "Omniversal",
  11170. height: math.unit(100e14, "lightyears")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(6, "feet"),
  11179. weight: math.unit(300, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/mekuto/front.svg",
  11183. extra: 921 / 832,
  11184. bottom: 0.03
  11185. }
  11186. },
  11187. hand: {
  11188. height: math.unit(6 / 10.24, "feet"),
  11189. name: "Hand",
  11190. image: {
  11191. source: "./media/characters/mekuto/hand.svg"
  11192. }
  11193. },
  11194. foot: {
  11195. height: math.unit(6 / 5.05, "feet"),
  11196. name: "Foot",
  11197. image: {
  11198. source: "./media/characters/mekuto/foot.svg"
  11199. }
  11200. },
  11201. },
  11202. [
  11203. {
  11204. name: "Minimicro",
  11205. height: math.unit(0.2, "inches")
  11206. },
  11207. {
  11208. name: "Micro",
  11209. height: math.unit(1.5, "inches")
  11210. },
  11211. {
  11212. name: "Normal",
  11213. height: math.unit(5 + 11 / 12, "feet"),
  11214. default: true
  11215. },
  11216. {
  11217. name: "Minimacro",
  11218. height: math.unit(17 + 9 / 12, "feet")
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(177.5, "feet")
  11223. },
  11224. {
  11225. name: "Megamacro",
  11226. height: math.unit(152, "miles")
  11227. },
  11228. ]
  11229. ))
  11230. characterMakers.push(() => makeCharacter(
  11231. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11232. {
  11233. front: {
  11234. height: math.unit(6.5, "inches"),
  11235. weight: math.unit(13, "oz"),
  11236. name: "Front",
  11237. image: {
  11238. source: "./media/characters/dafydd-tomos/front.svg",
  11239. extra: 2990 / 2603,
  11240. bottom: 0.03
  11241. }
  11242. },
  11243. },
  11244. [
  11245. {
  11246. name: "Micro",
  11247. height: math.unit(6.5, "inches"),
  11248. default: true
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(6, "feet"),
  11257. weight: math.unit(150, "lb"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/splinter/front.svg",
  11261. extra: 2990 / 2882,
  11262. bottom: 0.04
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(6, "feet"),
  11267. weight: math.unit(150, "lb"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/splinter/back.svg",
  11271. extra: 2990 / 2882,
  11272. bottom: 0.04
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(6, "feet")
  11280. },
  11281. {
  11282. name: "Macro",
  11283. height: math.unit(230, "meters"),
  11284. default: true
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(4 + 10 / 12, "feet"),
  11293. weight: math.unit(480, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/snow-gabumon/front.svg",
  11297. extra: 1140 / 963,
  11298. bottom: 0.058
  11299. }
  11300. },
  11301. back: {
  11302. height: math.unit(4 + 10 / 12, "feet"),
  11303. weight: math.unit(480, "lb"),
  11304. name: "Back",
  11305. image: {
  11306. source: "./media/characters/snow-gabumon/back.svg",
  11307. extra: 1115 / 962,
  11308. bottom: 0.041
  11309. }
  11310. },
  11311. frontUndresed: {
  11312. height: math.unit(4 + 10 / 12, "feet"),
  11313. weight: math.unit(480, "lb"),
  11314. name: "Front (Undressed)",
  11315. image: {
  11316. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11317. extra: 1061 / 960,
  11318. bottom: 0.045
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Micro",
  11325. height: math.unit(1, "inch")
  11326. },
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(4 + 10 / 12, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(200, "feet")
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(120, "miles")
  11339. },
  11340. {
  11341. name: "Gigamacro",
  11342. height: math.unit(9800, "miles")
  11343. },
  11344. ]
  11345. ))
  11346. characterMakers.push(() => makeCharacter(
  11347. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11348. {
  11349. front: {
  11350. height: math.unit(1.7, "meters"),
  11351. weight: math.unit(140, "lb"),
  11352. name: "Front",
  11353. image: {
  11354. source: "./media/characters/moody/front.svg",
  11355. extra: 3226 / 3007,
  11356. bottom: 0.087
  11357. }
  11358. },
  11359. },
  11360. [
  11361. {
  11362. name: "Micro",
  11363. height: math.unit(1, "mm")
  11364. },
  11365. {
  11366. name: "Normal",
  11367. height: math.unit(1.7, "meters"),
  11368. default: true
  11369. },
  11370. {
  11371. name: "Macro",
  11372. height: math.unit(80, "meters")
  11373. },
  11374. {
  11375. name: "Macro+",
  11376. height: math.unit(500, "meters")
  11377. },
  11378. ]
  11379. ))
  11380. characterMakers.push(() => makeCharacter(
  11381. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11382. {
  11383. front: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(150, "lb"),
  11386. name: "Front",
  11387. image: {
  11388. source: "./media/characters/zyas/front.svg",
  11389. extra: 1180 / 1120,
  11390. bottom: 0.045
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Normal",
  11397. height: math.unit(10, "feet"),
  11398. default: true
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(500, "feet")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(5, "miles")
  11407. },
  11408. {
  11409. name: "Teramacro",
  11410. height: math.unit(150000, "miles")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(6, "feet"),
  11419. weight: math.unit(150, "lb"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/cuon/front.svg",
  11423. extra: 1390 / 1320,
  11424. bottom: 0.008
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Micro",
  11431. height: math.unit(3, "inches")
  11432. },
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(18 + 9 / 12, "feet"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(360, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(360, "miles")
  11445. },
  11446. ]
  11447. ))
  11448. characterMakers.push(() => makeCharacter(
  11449. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11450. {
  11451. front: {
  11452. height: math.unit(2.4, "meters"),
  11453. weight: math.unit(70, "kg"),
  11454. name: "Front",
  11455. image: {
  11456. source: "./media/characters/nyanuxk/front.svg",
  11457. extra: 1172 / 1084,
  11458. bottom: 0.065
  11459. }
  11460. },
  11461. side: {
  11462. height: math.unit(2.4, "meters"),
  11463. weight: math.unit(70, "kg"),
  11464. name: "Side",
  11465. image: {
  11466. source: "./media/characters/nyanuxk/side.svg",
  11467. extra: 1190 / 1132,
  11468. bottom: 0.007
  11469. }
  11470. },
  11471. back: {
  11472. height: math.unit(2.4, "meters"),
  11473. weight: math.unit(70, "kg"),
  11474. name: "Back",
  11475. image: {
  11476. source: "./media/characters/nyanuxk/back.svg",
  11477. extra: 1200 / 1141,
  11478. bottom: 0.015
  11479. }
  11480. },
  11481. foot: {
  11482. height: math.unit(0.52, "meters"),
  11483. name: "Foot",
  11484. image: {
  11485. source: "./media/characters/nyanuxk/foot.svg"
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Micro",
  11492. height: math.unit(2, "cm")
  11493. },
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(2.4, "meters"),
  11497. default: true
  11498. },
  11499. {
  11500. name: "Smaller Macro",
  11501. height: math.unit(120, "meters")
  11502. },
  11503. {
  11504. name: "Bigger Macro",
  11505. height: math.unit(1.2, "km")
  11506. },
  11507. {
  11508. name: "Megamacro",
  11509. height: math.unit(15, "kilometers")
  11510. },
  11511. {
  11512. name: "Gigamacro",
  11513. height: math.unit(2000, "km")
  11514. },
  11515. {
  11516. name: "Teramacro",
  11517. height: math.unit(500000, "km")
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11523. {
  11524. side: {
  11525. height: math.unit(6, "feet"),
  11526. name: "Side",
  11527. image: {
  11528. source: "./media/characters/ailbhe/side.svg",
  11529. extra: 757 / 464,
  11530. bottom: 0.041
  11531. }
  11532. },
  11533. },
  11534. [
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(1.07, "meters"),
  11538. default: true
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(6, "feet"),
  11547. weight: math.unit(120, "kg"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/zevulfius/front.svg",
  11551. extra: 965 / 903
  11552. }
  11553. },
  11554. side: {
  11555. height: math.unit(6, "feet"),
  11556. weight: math.unit(120, "kg"),
  11557. name: "Side",
  11558. image: {
  11559. source: "./media/characters/zevulfius/side.svg",
  11560. extra: 939 / 900
  11561. }
  11562. },
  11563. back: {
  11564. height: math.unit(6, "feet"),
  11565. weight: math.unit(120, "kg"),
  11566. name: "Back",
  11567. image: {
  11568. source: "./media/characters/zevulfius/back.svg",
  11569. extra: 918 / 854,
  11570. bottom: 0.005
  11571. }
  11572. },
  11573. foot: {
  11574. height: math.unit(6 / 3.72, "feet"),
  11575. name: "Foot",
  11576. image: {
  11577. source: "./media/characters/zevulfius/foot.svg"
  11578. }
  11579. },
  11580. },
  11581. [
  11582. {
  11583. name: "Macro",
  11584. height: math.unit(750, "meters")
  11585. },
  11586. {
  11587. name: "Megamacro",
  11588. height: math.unit(20, "km"),
  11589. default: true
  11590. },
  11591. {
  11592. name: "Gigamacro",
  11593. height: math.unit(2000, "km")
  11594. },
  11595. {
  11596. name: "Teramacro",
  11597. height: math.unit(250000, "km")
  11598. },
  11599. ]
  11600. ))
  11601. characterMakers.push(() => makeCharacter(
  11602. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11603. {
  11604. front: {
  11605. height: math.unit(100, "feet"),
  11606. weight: math.unit(350, "kg"),
  11607. name: "Front",
  11608. image: {
  11609. source: "./media/characters/rikes/front.svg",
  11610. extra: 1565 / 1483,
  11611. bottom: 0.017
  11612. }
  11613. },
  11614. },
  11615. [
  11616. {
  11617. name: "Macro",
  11618. height: math.unit(100, "feet"),
  11619. default: true
  11620. },
  11621. ]
  11622. ))
  11623. characterMakers.push(() => makeCharacter(
  11624. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11625. {
  11626. front: {
  11627. height: math.unit(8, "feet"),
  11628. weight: math.unit(356, "lb"),
  11629. name: "Front",
  11630. image: {
  11631. source: "./media/characters/adam-silver-mane/front.svg",
  11632. extra: 1036/937,
  11633. bottom: 63/1099
  11634. }
  11635. },
  11636. side: {
  11637. height: math.unit(8, "feet"),
  11638. weight: math.unit(356, "lb"),
  11639. name: "Side",
  11640. image: {
  11641. source: "./media/characters/adam-silver-mane/side.svg",
  11642. extra: 997/901,
  11643. bottom: 59/1056
  11644. }
  11645. },
  11646. frontNsfw: {
  11647. height: math.unit(8, "feet"),
  11648. weight: math.unit(356, "lb"),
  11649. name: "Front (NSFW)",
  11650. image: {
  11651. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11652. extra: 1036/937,
  11653. bottom: 63/1099
  11654. }
  11655. },
  11656. sideNsfw: {
  11657. height: math.unit(8, "feet"),
  11658. weight: math.unit(356, "lb"),
  11659. name: "Side (NSFW)",
  11660. image: {
  11661. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11662. extra: 997/901,
  11663. bottom: 59/1056
  11664. }
  11665. },
  11666. dick: {
  11667. height: math.unit(2.1, "feet"),
  11668. name: "Dick",
  11669. image: {
  11670. source: "./media/characters/adam-silver-mane/dick.svg"
  11671. }
  11672. },
  11673. taur: {
  11674. height: math.unit(16, "feet"),
  11675. weight: math.unit(1500, "kg"),
  11676. name: "Taur",
  11677. image: {
  11678. source: "./media/characters/adam-silver-mane/taur.svg",
  11679. extra: 1713 / 1571,
  11680. bottom: 0.01
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(8, "feet")
  11688. },
  11689. {
  11690. name: "Minimacro",
  11691. height: math.unit(80, "feet")
  11692. },
  11693. {
  11694. name: "MDA",
  11695. height: math.unit(80, "meters")
  11696. },
  11697. {
  11698. name: "Macro",
  11699. height: math.unit(800, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Megamacro",
  11704. height: math.unit(8000, "feet")
  11705. },
  11706. {
  11707. name: "Gigamacro",
  11708. height: math.unit(800, "miles")
  11709. },
  11710. {
  11711. name: "Teramacro",
  11712. height: math.unit(80000, "miles")
  11713. },
  11714. {
  11715. name: "Celestial",
  11716. height: math.unit(8e6, "miles")
  11717. },
  11718. {
  11719. name: "Star Dragon",
  11720. height: math.unit(800000, "parsecs")
  11721. },
  11722. {
  11723. name: "Godly",
  11724. height: math.unit(800, "teraparsecs")
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11730. {
  11731. front: {
  11732. height: math.unit(6, "feet"),
  11733. weight: math.unit(150, "lb"),
  11734. name: "Front",
  11735. image: {
  11736. source: "./media/characters/ky'owin/front.svg",
  11737. extra: 3862/3053,
  11738. bottom: 74/3936
  11739. }
  11740. },
  11741. },
  11742. [
  11743. {
  11744. name: "Normal",
  11745. height: math.unit(6 + 8 / 12, "feet")
  11746. },
  11747. {
  11748. name: "Large",
  11749. height: math.unit(68, "feet")
  11750. },
  11751. {
  11752. name: "Macro",
  11753. height: math.unit(132, "feet")
  11754. },
  11755. {
  11756. name: "Macro+",
  11757. height: math.unit(340, "feet")
  11758. },
  11759. {
  11760. name: "Macro++",
  11761. height: math.unit(680, "feet"),
  11762. default: true
  11763. },
  11764. {
  11765. name: "Megamacro",
  11766. height: math.unit(1, "mile")
  11767. },
  11768. {
  11769. name: "Megamacro+",
  11770. height: math.unit(10, "miles")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11776. {
  11777. front: {
  11778. height: math.unit(4, "feet"),
  11779. weight: math.unit(50, "lb"),
  11780. name: "Front",
  11781. image: {
  11782. source: "./media/characters/mal/front.svg",
  11783. extra: 785 / 724,
  11784. bottom: 0.07
  11785. }
  11786. },
  11787. },
  11788. [
  11789. {
  11790. name: "Micro",
  11791. height: math.unit(4, "inches")
  11792. },
  11793. {
  11794. name: "Normal",
  11795. height: math.unit(4, "feet"),
  11796. default: true
  11797. },
  11798. {
  11799. name: "Macro",
  11800. height: math.unit(200, "feet")
  11801. },
  11802. ]
  11803. ))
  11804. characterMakers.push(() => makeCharacter(
  11805. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11806. {
  11807. front: {
  11808. height: math.unit(6, "feet"),
  11809. weight: math.unit(150, "lb"),
  11810. name: "Front",
  11811. image: {
  11812. source: "./media/characters/jordan-deware/front.svg",
  11813. extra: 1191 / 1012
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Nano",
  11820. height: math.unit(0.01, "mm")
  11821. },
  11822. {
  11823. name: "Minimicro",
  11824. height: math.unit(1, "mm")
  11825. },
  11826. {
  11827. name: "Micro",
  11828. height: math.unit(0.5, "inches")
  11829. },
  11830. {
  11831. name: "Normal",
  11832. height: math.unit(4, "feet"),
  11833. default: true
  11834. },
  11835. {
  11836. name: "Minimacro",
  11837. height: math.unit(40, "meters")
  11838. },
  11839. {
  11840. name: "Small Macro",
  11841. height: math.unit(400, "meters")
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(4, "miles")
  11846. },
  11847. {
  11848. name: "Megamacro",
  11849. height: math.unit(40, "miles")
  11850. },
  11851. {
  11852. name: "Megamacro+",
  11853. height: math.unit(400, "miles")
  11854. },
  11855. {
  11856. name: "Gigamacro",
  11857. height: math.unit(400000, "miles")
  11858. },
  11859. ]
  11860. ))
  11861. characterMakers.push(() => makeCharacter(
  11862. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11863. {
  11864. side: {
  11865. height: math.unit(6, "feet"),
  11866. weight: math.unit(150, "lb"),
  11867. name: "Side",
  11868. image: {
  11869. source: "./media/characters/kimiko/side.svg",
  11870. extra: 600 / 358
  11871. }
  11872. },
  11873. },
  11874. [
  11875. {
  11876. name: "Normal",
  11877. height: math.unit(15, "feet"),
  11878. default: true
  11879. },
  11880. {
  11881. name: "Macro",
  11882. height: math.unit(220, "feet")
  11883. },
  11884. {
  11885. name: "Macro+",
  11886. height: math.unit(1450, "feet")
  11887. },
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(11500, "feet")
  11891. },
  11892. {
  11893. name: "Gigamacro",
  11894. height: math.unit(9500, "miles")
  11895. },
  11896. {
  11897. name: "Teramacro",
  11898. height: math.unit(2208005005, "miles")
  11899. },
  11900. {
  11901. name: "Examacro",
  11902. height: math.unit(2750, "parsecs")
  11903. },
  11904. {
  11905. name: "Zettamacro",
  11906. height: math.unit(101500, "parsecs")
  11907. },
  11908. ]
  11909. ))
  11910. characterMakers.push(() => makeCharacter(
  11911. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11912. {
  11913. front: {
  11914. height: math.unit(6, "feet"),
  11915. weight: math.unit(70, "kg"),
  11916. name: "Front",
  11917. image: {
  11918. source: "./media/characters/andrew-sleepy/front.svg"
  11919. }
  11920. },
  11921. side: {
  11922. height: math.unit(6, "feet"),
  11923. weight: math.unit(70, "kg"),
  11924. name: "Side",
  11925. image: {
  11926. source: "./media/characters/andrew-sleepy/side.svg"
  11927. }
  11928. },
  11929. },
  11930. [
  11931. {
  11932. name: "Micro",
  11933. height: math.unit(1, "mm"),
  11934. default: true
  11935. },
  11936. ]
  11937. ))
  11938. characterMakers.push(() => makeCharacter(
  11939. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11940. {
  11941. front: {
  11942. height: math.unit(6, "feet"),
  11943. weight: math.unit(150, "lb"),
  11944. name: "Front",
  11945. image: {
  11946. source: "./media/characters/judio/front.svg",
  11947. extra: 1258 / 1110
  11948. }
  11949. },
  11950. },
  11951. [
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(5 + 6 / 12, "feet")
  11955. },
  11956. {
  11957. name: "Macro",
  11958. height: math.unit(1000, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(10, "miles")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11969. {
  11970. frontDressed: {
  11971. height: math.unit(6, "feet"),
  11972. weight: math.unit(68, "kg"),
  11973. name: "Front (Dressed)",
  11974. image: {
  11975. source: "./media/characters/nomaxice/front-dressed.svg",
  11976. extra: 1137/824,
  11977. bottom: 74/1211
  11978. }
  11979. },
  11980. frontShorts: {
  11981. height: math.unit(6, "feet"),
  11982. weight: math.unit(68, "kg"),
  11983. name: "Front (Shorts)",
  11984. image: {
  11985. source: "./media/characters/nomaxice/front-shorts.svg",
  11986. extra: 1137/824,
  11987. bottom: 74/1211
  11988. }
  11989. },
  11990. back: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(68, "kg"),
  11993. name: "Back",
  11994. image: {
  11995. source: "./media/characters/nomaxice/back.svg",
  11996. extra: 822/786,
  11997. bottom: 39/861
  11998. }
  11999. },
  12000. hand: {
  12001. height: math.unit(0.565, "feet"),
  12002. name: "Hand",
  12003. image: {
  12004. source: "./media/characters/nomaxice/hand.svg"
  12005. }
  12006. },
  12007. foot: {
  12008. height: math.unit(1, "feet"),
  12009. name: "Foot",
  12010. image: {
  12011. source: "./media/characters/nomaxice/foot.svg"
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Micro",
  12018. height: math.unit(8, "cm")
  12019. },
  12020. {
  12021. name: "Norm",
  12022. height: math.unit(1.82, "m")
  12023. },
  12024. {
  12025. name: "Norm+",
  12026. height: math.unit(8.8, "feet"),
  12027. default: true
  12028. },
  12029. {
  12030. name: "Big",
  12031. height: math.unit(8, "meters")
  12032. },
  12033. {
  12034. name: "Macro",
  12035. height: math.unit(18, "meters")
  12036. },
  12037. {
  12038. name: "Macro+",
  12039. height: math.unit(88, "meters")
  12040. },
  12041. ]
  12042. ))
  12043. characterMakers.push(() => makeCharacter(
  12044. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12045. {
  12046. front: {
  12047. height: math.unit(12, "feet"),
  12048. weight: math.unit(1.5, "tons"),
  12049. name: "Front",
  12050. image: {
  12051. source: "./media/characters/dydros/front.svg",
  12052. extra: 863 / 800,
  12053. bottom: 0.015
  12054. }
  12055. },
  12056. back: {
  12057. height: math.unit(12, "feet"),
  12058. weight: math.unit(1.5, "tons"),
  12059. name: "Back",
  12060. image: {
  12061. source: "./media/characters/dydros/back.svg",
  12062. extra: 900 / 843,
  12063. bottom: 0.005
  12064. }
  12065. },
  12066. },
  12067. [
  12068. {
  12069. name: "Normal",
  12070. height: math.unit(12, "feet"),
  12071. default: true
  12072. },
  12073. ]
  12074. ))
  12075. characterMakers.push(() => makeCharacter(
  12076. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12077. {
  12078. front: {
  12079. height: math.unit(6, "feet"),
  12080. weight: math.unit(100, "kg"),
  12081. name: "Front",
  12082. image: {
  12083. source: "./media/characters/riggi/front.svg",
  12084. extra: 5787 / 5303
  12085. }
  12086. },
  12087. hyper: {
  12088. height: math.unit(6 * 5 / 3, "feet"),
  12089. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12090. name: "Hyper",
  12091. image: {
  12092. source: "./media/characters/riggi/hyper.svg",
  12093. extra: 3595 / 3485
  12094. }
  12095. },
  12096. },
  12097. [
  12098. {
  12099. name: "Small Macro",
  12100. height: math.unit(50, "feet")
  12101. },
  12102. {
  12103. name: "Default",
  12104. height: math.unit(200, "feet"),
  12105. default: true
  12106. },
  12107. {
  12108. name: "Loom",
  12109. height: math.unit(10000, "feet")
  12110. },
  12111. {
  12112. name: "Cruising Altitude",
  12113. height: math.unit(30000, "feet")
  12114. },
  12115. {
  12116. name: "Megamacro",
  12117. height: math.unit(100, "miles")
  12118. },
  12119. {
  12120. name: "Continent Sized",
  12121. height: math.unit(2800, "miles")
  12122. },
  12123. {
  12124. name: "Earth Sized",
  12125. height: math.unit(8000, "miles")
  12126. },
  12127. ]
  12128. ))
  12129. characterMakers.push(() => makeCharacter(
  12130. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12131. {
  12132. front: {
  12133. height: math.unit(6, "feet"),
  12134. weight: math.unit(250, "lb"),
  12135. name: "Front",
  12136. image: {
  12137. source: "./media/characters/alexi/front.svg",
  12138. extra: 3483 / 3291,
  12139. bottom: 0.04
  12140. }
  12141. },
  12142. back: {
  12143. height: math.unit(6, "feet"),
  12144. weight: math.unit(250, "lb"),
  12145. name: "Back",
  12146. image: {
  12147. source: "./media/characters/alexi/back.svg",
  12148. extra: 3533 / 3356,
  12149. bottom: 0.021
  12150. }
  12151. },
  12152. frontTransforming: {
  12153. height: math.unit(8.58, "feet"),
  12154. weight: math.unit(1300, "lb"),
  12155. name: "Transforming",
  12156. image: {
  12157. source: "./media/characters/alexi/front-transforming.svg",
  12158. extra: 437 / 409,
  12159. bottom: 19 / 458.66
  12160. }
  12161. },
  12162. frontTransformed: {
  12163. height: math.unit(12.5, "feet"),
  12164. weight: math.unit(4000, "lb"),
  12165. name: "Transformed",
  12166. image: {
  12167. source: "./media/characters/alexi/front-transformed.svg",
  12168. extra: 639 / 614,
  12169. bottom: 30.55 / 671
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(14, "feet"),
  12177. default: true
  12178. },
  12179. {
  12180. name: "Minimacro",
  12181. height: math.unit(30, "meters")
  12182. },
  12183. {
  12184. name: "Macro",
  12185. height: math.unit(500, "meters")
  12186. },
  12187. {
  12188. name: "Megamacro",
  12189. height: math.unit(9000, "km")
  12190. },
  12191. {
  12192. name: "Teramacro",
  12193. height: math.unit(384000, "km")
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(6, "feet"),
  12202. weight: math.unit(150, "lb"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/kayroo/front.svg",
  12206. extra: 1153 / 1038,
  12207. bottom: 0.06
  12208. }
  12209. },
  12210. foot: {
  12211. height: math.unit(6, "feet"),
  12212. weight: math.unit(150, "lb"),
  12213. name: "Foot",
  12214. image: {
  12215. source: "./media/characters/kayroo/foot.svg"
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Normal",
  12222. height: math.unit(8, "feet"),
  12223. default: true
  12224. },
  12225. {
  12226. name: "Minimacro",
  12227. height: math.unit(250, "feet")
  12228. },
  12229. {
  12230. name: "Macro",
  12231. height: math.unit(2800, "feet")
  12232. },
  12233. {
  12234. name: "Megamacro",
  12235. height: math.unit(5200, "feet")
  12236. },
  12237. {
  12238. name: "Gigamacro",
  12239. height: math.unit(27000, "feet")
  12240. },
  12241. {
  12242. name: "Omega",
  12243. height: math.unit(45000, "feet")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(18, "feet"),
  12252. weight: math.unit(5800, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/rhys/front.svg",
  12256. extra: 3386 / 3090,
  12257. bottom: 0.07
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Normal",
  12264. height: math.unit(18, "feet"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Working Size",
  12269. height: math.unit(200, "feet")
  12270. },
  12271. {
  12272. name: "Demolition Size",
  12273. height: math.unit(2000, "feet")
  12274. },
  12275. {
  12276. name: "Maximum Licensed Size",
  12277. height: math.unit(5, "miles")
  12278. },
  12279. {
  12280. name: "Maximum Observed Size",
  12281. height: math.unit(10, "yottameters")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(250, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/toto/front.svg",
  12294. extra: 527 / 479,
  12295. bottom: 0.05
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Micro",
  12302. height: math.unit(3, "feet")
  12303. },
  12304. {
  12305. name: "Normal",
  12306. height: math.unit(10, "feet")
  12307. },
  12308. {
  12309. name: "Macro",
  12310. height: math.unit(150, "feet"),
  12311. default: true
  12312. },
  12313. {
  12314. name: "Megamacro",
  12315. height: math.unit(1200, "feet")
  12316. },
  12317. ]
  12318. ))
  12319. characterMakers.push(() => makeCharacter(
  12320. { name: "King", species: ["lion"], tags: ["anthro"] },
  12321. {
  12322. back: {
  12323. height: math.unit(6, "feet"),
  12324. weight: math.unit(150, "lb"),
  12325. name: "Back",
  12326. image: {
  12327. source: "./media/characters/king/back.svg"
  12328. }
  12329. },
  12330. },
  12331. [
  12332. {
  12333. name: "Micro",
  12334. height: math.unit(2, "inches")
  12335. },
  12336. {
  12337. name: "Normal",
  12338. height: math.unit(8, "feet")
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(200, "feet"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Megamacro",
  12347. height: math.unit(50, "miles")
  12348. },
  12349. ]
  12350. ))
  12351. characterMakers.push(() => makeCharacter(
  12352. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12353. {
  12354. front: {
  12355. height: math.unit(11, "feet"),
  12356. weight: math.unit(1400, "lb"),
  12357. name: "Front",
  12358. image: {
  12359. source: "./media/characters/cordite/front.svg",
  12360. extra: 1919/1827,
  12361. bottom: 40/1959
  12362. }
  12363. },
  12364. side: {
  12365. height: math.unit(11, "feet"),
  12366. weight: math.unit(1400, "lb"),
  12367. name: "Side",
  12368. image: {
  12369. source: "./media/characters/cordite/side.svg",
  12370. extra: 1908/1793,
  12371. bottom: 38/1946
  12372. }
  12373. },
  12374. back: {
  12375. height: math.unit(11, "feet"),
  12376. weight: math.unit(1400, "lb"),
  12377. name: "Back",
  12378. image: {
  12379. source: "./media/characters/cordite/back.svg",
  12380. extra: 1938/1837,
  12381. bottom: 10/1948
  12382. }
  12383. },
  12384. feral: {
  12385. height: math.unit(2, "feet"),
  12386. weight: math.unit(90, "lb"),
  12387. name: "Feral",
  12388. image: {
  12389. source: "./media/characters/cordite/feral.svg",
  12390. extra: 1260 / 755,
  12391. bottom: 0.05
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(11, "feet"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(150, "lb"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/pianostrong/front.svg",
  12412. extra: 6577 / 6254,
  12413. bottom: 0.02
  12414. }
  12415. },
  12416. side: {
  12417. height: math.unit(6, "feet"),
  12418. weight: math.unit(150, "lb"),
  12419. name: "Side",
  12420. image: {
  12421. source: "./media/characters/pianostrong/side.svg",
  12422. extra: 6106 / 5730
  12423. }
  12424. },
  12425. back: {
  12426. height: math.unit(6, "feet"),
  12427. weight: math.unit(150, "lb"),
  12428. name: "Back",
  12429. image: {
  12430. source: "./media/characters/pianostrong/back.svg",
  12431. extra: 6085 / 5733,
  12432. bottom: 0.01
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Macro",
  12439. height: math.unit(100, "feet")
  12440. },
  12441. {
  12442. name: "Macro+",
  12443. height: math.unit(300, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Macro++",
  12448. height: math.unit(1000, "feet")
  12449. },
  12450. ]
  12451. ))
  12452. characterMakers.push(() => makeCharacter(
  12453. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12454. {
  12455. front: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Front",
  12459. image: {
  12460. source: "./media/characters/kona/front.svg",
  12461. extra: 2960 / 2629,
  12462. bottom: 0.005
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(11 + 8 / 12, "feet")
  12470. },
  12471. {
  12472. name: "Macro",
  12473. height: math.unit(850, "feet"),
  12474. default: true
  12475. },
  12476. {
  12477. name: "Macro+",
  12478. height: math.unit(1.5, "km"),
  12479. default: true
  12480. },
  12481. {
  12482. name: "Megamacro",
  12483. height: math.unit(80, "miles")
  12484. },
  12485. {
  12486. name: "Gigamacro",
  12487. height: math.unit(3500, "miles")
  12488. },
  12489. ]
  12490. ))
  12491. characterMakers.push(() => makeCharacter(
  12492. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12493. {
  12494. side: {
  12495. height: math.unit(1.9, "meters"),
  12496. weight: math.unit(326, "kg"),
  12497. name: "Side",
  12498. image: {
  12499. source: "./media/characters/levi/side.svg",
  12500. extra: 1704 / 1334,
  12501. bottom: 0.02
  12502. }
  12503. },
  12504. },
  12505. [
  12506. {
  12507. name: "Normal",
  12508. height: math.unit(1.9, "meters"),
  12509. default: true
  12510. },
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(20, "meters")
  12514. },
  12515. {
  12516. name: "Macro+",
  12517. height: math.unit(200, "meters")
  12518. },
  12519. {
  12520. name: "Megamacro",
  12521. height: math.unit(2, "km")
  12522. },
  12523. {
  12524. name: "Megamacro+",
  12525. height: math.unit(20, "km")
  12526. },
  12527. {
  12528. name: "Gigamacro",
  12529. height: math.unit(2500, "km")
  12530. },
  12531. {
  12532. name: "Gigamacro+",
  12533. height: math.unit(120000, "km")
  12534. },
  12535. {
  12536. name: "Teramacro",
  12537. height: math.unit(7.77e6, "km")
  12538. },
  12539. ]
  12540. ))
  12541. characterMakers.push(() => makeCharacter(
  12542. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12543. {
  12544. front: {
  12545. height: math.unit(6 + 4/12, "feet"),
  12546. weight: math.unit(190, "lb"),
  12547. name: "Front",
  12548. image: {
  12549. source: "./media/characters/bmc/front.svg",
  12550. extra: 1626/1472,
  12551. bottom: 79/1705
  12552. }
  12553. },
  12554. back: {
  12555. height: math.unit(6 + 4/12, "feet"),
  12556. weight: math.unit(190, "lb"),
  12557. name: "Back",
  12558. image: {
  12559. source: "./media/characters/bmc/back.svg",
  12560. extra: 1640/1479,
  12561. bottom: 45/1685
  12562. }
  12563. },
  12564. frontArmor: {
  12565. height: math.unit(6 + 4/12, "feet"),
  12566. weight: math.unit(190, "lb"),
  12567. name: "Front-armor",
  12568. image: {
  12569. source: "./media/characters/bmc/front-armor.svg",
  12570. extra: 1538/1468,
  12571. bottom: 79/1617
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Human-sized",
  12578. height: math.unit(6 + 4 / 12, "feet")
  12579. },
  12580. {
  12581. name: "Interactive Size",
  12582. height: math.unit(25, "feet")
  12583. },
  12584. {
  12585. name: "Small",
  12586. height: math.unit(250, "feet")
  12587. },
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(1250, "feet"),
  12591. default: true
  12592. },
  12593. {
  12594. name: "Good Day",
  12595. height: math.unit(88, "miles")
  12596. },
  12597. {
  12598. name: "Largest Measured Size",
  12599. height: math.unit(105.960, "galaxies")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(20, "feet"),
  12608. weight: math.unit(2016, "kg"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/sven-the-kaiju/front.svg",
  12612. extra: 1277/1250,
  12613. bottom: 35/1312
  12614. }
  12615. },
  12616. mouth: {
  12617. height: math.unit(1.85, "feet"),
  12618. name: "Mouth",
  12619. image: {
  12620. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12621. }
  12622. },
  12623. },
  12624. [
  12625. {
  12626. name: "Fairy",
  12627. height: math.unit(6, "inches")
  12628. },
  12629. {
  12630. name: "Normal",
  12631. height: math.unit(20, "feet"),
  12632. default: true
  12633. },
  12634. {
  12635. name: "Rampage",
  12636. height: math.unit(200, "feet")
  12637. },
  12638. {
  12639. name: "Archfey Forest Guardian",
  12640. height: math.unit(1, "mile")
  12641. },
  12642. ]
  12643. ))
  12644. characterMakers.push(() => makeCharacter(
  12645. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12646. {
  12647. front: {
  12648. height: math.unit(4, "meters"),
  12649. weight: math.unit(2, "tons"),
  12650. name: "Front",
  12651. image: {
  12652. source: "./media/characters/marik/front.svg",
  12653. extra: 1057 / 1003,
  12654. bottom: 0.08
  12655. }
  12656. },
  12657. },
  12658. [
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(4, "meters"),
  12662. default: true
  12663. },
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(20, "meters")
  12667. },
  12668. {
  12669. name: "Megamacro",
  12670. height: math.unit(50, "km")
  12671. },
  12672. {
  12673. name: "Gigamacro",
  12674. height: math.unit(100, "km")
  12675. },
  12676. {
  12677. name: "Alpha Macro",
  12678. height: math.unit(7.88e7, "yottameters")
  12679. },
  12680. ]
  12681. ))
  12682. characterMakers.push(() => makeCharacter(
  12683. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12684. {
  12685. front: {
  12686. height: math.unit(6, "feet"),
  12687. weight: math.unit(110, "lb"),
  12688. name: "Front",
  12689. image: {
  12690. source: "./media/characters/mel/front.svg",
  12691. extra: 736 / 617,
  12692. bottom: 0.017
  12693. }
  12694. },
  12695. },
  12696. [
  12697. {
  12698. name: "Pico",
  12699. height: math.unit(3, "pm")
  12700. },
  12701. {
  12702. name: "Nano",
  12703. height: math.unit(3, "nm")
  12704. },
  12705. {
  12706. name: "Micro",
  12707. height: math.unit(0.3, "mm"),
  12708. default: true
  12709. },
  12710. {
  12711. name: "Micro+",
  12712. height: math.unit(3, "mm")
  12713. },
  12714. {
  12715. name: "Normal",
  12716. height: math.unit(5 + 10.5 / 12, "feet")
  12717. },
  12718. ]
  12719. ))
  12720. characterMakers.push(() => makeCharacter(
  12721. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12722. {
  12723. kaiju: {
  12724. height: math.unit(1.75, "meters"),
  12725. weight: math.unit(55, "kg"),
  12726. name: "Kaiju",
  12727. image: {
  12728. source: "./media/characters/lykonous/kaiju.svg",
  12729. extra: 1055 / 946,
  12730. bottom: 0.135
  12731. }
  12732. },
  12733. },
  12734. [
  12735. {
  12736. name: "Normal",
  12737. height: math.unit(2.5, "meters"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Kaiju Dragon",
  12742. height: math.unit(60, "meters")
  12743. },
  12744. {
  12745. name: "Mega Kaiju",
  12746. height: math.unit(120, "km")
  12747. },
  12748. {
  12749. name: "Giga Kaiju",
  12750. height: math.unit(200, "megameters")
  12751. },
  12752. {
  12753. name: "Terra Kaiju",
  12754. height: math.unit(400, "gigameters")
  12755. },
  12756. {
  12757. name: "Kaiju Dragon God",
  12758. height: math.unit(13000, "exaparsecs")
  12759. },
  12760. ]
  12761. ))
  12762. characterMakers.push(() => makeCharacter(
  12763. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12764. {
  12765. front: {
  12766. height: math.unit(6, "feet"),
  12767. weight: math.unit(150, "lb"),
  12768. name: "Front",
  12769. image: {
  12770. source: "./media/characters/blü/front.svg",
  12771. extra: 1883 / 1564,
  12772. bottom: 0.031
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Normal",
  12779. height: math.unit(13, "feet"),
  12780. default: true
  12781. },
  12782. {
  12783. name: "Big Boi",
  12784. height: math.unit(150, "meters")
  12785. },
  12786. {
  12787. name: "Mini Stomper",
  12788. height: math.unit(300, "meters")
  12789. },
  12790. {
  12791. name: "Macro",
  12792. height: math.unit(1000, "meters")
  12793. },
  12794. {
  12795. name: "Megamacro",
  12796. height: math.unit(11000, "meters")
  12797. },
  12798. {
  12799. name: "Gigamacro",
  12800. height: math.unit(11000, "km")
  12801. },
  12802. {
  12803. name: "Teramacro",
  12804. height: math.unit(420000, "km")
  12805. },
  12806. {
  12807. name: "Examacro",
  12808. height: math.unit(120, "parsecs")
  12809. },
  12810. {
  12811. name: "God Tho",
  12812. height: math.unit(98000000000, "parsecs")
  12813. },
  12814. ]
  12815. ))
  12816. characterMakers.push(() => makeCharacter(
  12817. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12818. {
  12819. taurFront: {
  12820. height: math.unit(6, "feet"),
  12821. weight: math.unit(200, "lb"),
  12822. name: "Taur (Front)",
  12823. image: {
  12824. source: "./media/characters/scales/taur-front.svg",
  12825. extra: 1,
  12826. bottom: 0.05
  12827. }
  12828. },
  12829. taurBack: {
  12830. height: math.unit(6, "feet"),
  12831. weight: math.unit(200, "lb"),
  12832. name: "Taur (Back)",
  12833. image: {
  12834. source: "./media/characters/scales/taur-back.svg",
  12835. extra: 1,
  12836. bottom: 0.08
  12837. }
  12838. },
  12839. anthro: {
  12840. height: math.unit(6 * 7 / 12, "feet"),
  12841. weight: math.unit(100, "lb"),
  12842. name: "Anthro",
  12843. image: {
  12844. source: "./media/characters/scales/anthro.svg",
  12845. extra: 1,
  12846. bottom: 0.06
  12847. }
  12848. },
  12849. },
  12850. [
  12851. {
  12852. name: "Normal",
  12853. height: math.unit(12, "feet"),
  12854. default: true
  12855. },
  12856. ]
  12857. ))
  12858. characterMakers.push(() => makeCharacter(
  12859. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12860. {
  12861. front: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Front",
  12865. image: {
  12866. source: "./media/characters/koragos/front.svg",
  12867. extra: 841 / 794,
  12868. bottom: 0.035
  12869. }
  12870. },
  12871. back: {
  12872. height: math.unit(6, "feet"),
  12873. weight: math.unit(150, "lb"),
  12874. name: "Back",
  12875. image: {
  12876. source: "./media/characters/koragos/back.svg",
  12877. extra: 841 / 810,
  12878. bottom: 0.022
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(6 + 11 / 12, "feet"),
  12886. default: true
  12887. },
  12888. {
  12889. name: "Macro",
  12890. height: math.unit(490, "feet")
  12891. },
  12892. {
  12893. name: "Megamacro",
  12894. height: math.unit(10, "miles")
  12895. },
  12896. {
  12897. name: "Gigamacro",
  12898. height: math.unit(50, "miles")
  12899. },
  12900. ]
  12901. ))
  12902. characterMakers.push(() => makeCharacter(
  12903. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12904. {
  12905. front: {
  12906. height: math.unit(6, "feet"),
  12907. weight: math.unit(250, "lb"),
  12908. name: "Front",
  12909. image: {
  12910. source: "./media/characters/xylrem/front.svg",
  12911. extra: 3323 / 3050,
  12912. bottom: 0.065
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Micro",
  12919. height: math.unit(4, "feet")
  12920. },
  12921. {
  12922. name: "Normal",
  12923. height: math.unit(16, "feet"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Macro",
  12928. height: math.unit(2720, "feet")
  12929. },
  12930. {
  12931. name: "Megamacro",
  12932. height: math.unit(25000, "miles")
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12938. {
  12939. front: {
  12940. height: math.unit(8, "feet"),
  12941. weight: math.unit(250, "kg"),
  12942. name: "Front",
  12943. image: {
  12944. source: "./media/characters/ikideru/front.svg",
  12945. extra: 930 / 870,
  12946. bottom: 0.087
  12947. }
  12948. },
  12949. back: {
  12950. height: math.unit(8, "feet"),
  12951. weight: math.unit(250, "kg"),
  12952. name: "Back",
  12953. image: {
  12954. source: "./media/characters/ikideru/back.svg",
  12955. extra: 919 / 852,
  12956. bottom: 0.055
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Rare",
  12963. height: math.unit(8, "feet"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Playful Loom",
  12968. height: math.unit(80, "feet")
  12969. },
  12970. {
  12971. name: "City Leaner",
  12972. height: math.unit(230, "feet")
  12973. },
  12974. {
  12975. name: "Megamacro",
  12976. height: math.unit(2500, "feet")
  12977. },
  12978. {
  12979. name: "Gigamacro",
  12980. height: math.unit(26400, "feet")
  12981. },
  12982. {
  12983. name: "Tectonic Shifter",
  12984. height: math.unit(1.7, "megameters")
  12985. },
  12986. {
  12987. name: "Planet Carer",
  12988. height: math.unit(21, "megameters")
  12989. },
  12990. {
  12991. name: "God",
  12992. height: math.unit(11157.22, "parsecs")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(6, "feet"),
  13001. weight: math.unit(120, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/neo/front.svg"
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Micro",
  13011. height: math.unit(2, "inches"),
  13012. default: true
  13013. },
  13014. {
  13015. name: "Human Size",
  13016. height: math.unit(5 + 8 / 12, "feet")
  13017. },
  13018. ]
  13019. ))
  13020. characterMakers.push(() => makeCharacter(
  13021. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13022. {
  13023. front: {
  13024. height: math.unit(13 + 10 / 12, "feet"),
  13025. weight: math.unit(5320, "lb"),
  13026. name: "Front",
  13027. image: {
  13028. source: "./media/characters/chauncey-chantz/front.svg",
  13029. extra: 1587 / 1435,
  13030. bottom: 0.02
  13031. }
  13032. },
  13033. },
  13034. [
  13035. {
  13036. name: "Normal",
  13037. height: math.unit(13 + 10 / 12, "feet"),
  13038. default: true
  13039. },
  13040. {
  13041. name: "Macro",
  13042. height: math.unit(45, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro",
  13046. height: math.unit(250, "miles")
  13047. },
  13048. {
  13049. name: "Planetary",
  13050. height: math.unit(10000, "miles")
  13051. },
  13052. {
  13053. name: "Galactic",
  13054. height: math.unit(40000, "parsecs")
  13055. },
  13056. {
  13057. name: "Universal",
  13058. height: math.unit(1, "yottameter")
  13059. },
  13060. ]
  13061. ))
  13062. characterMakers.push(() => makeCharacter(
  13063. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13064. {
  13065. front: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(150, "lb"),
  13068. name: "Front",
  13069. image: {
  13070. source: "./media/characters/epifox/front.svg",
  13071. extra: 1,
  13072. bottom: 0.075
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Micro",
  13079. height: math.unit(6, "inches")
  13080. },
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(12, "feet"),
  13084. default: true
  13085. },
  13086. {
  13087. name: "Macro",
  13088. height: math.unit(3810, "feet")
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(500, "miles")
  13093. },
  13094. ]
  13095. ))
  13096. characterMakers.push(() => makeCharacter(
  13097. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13098. {
  13099. front: {
  13100. height: math.unit(1.8796, "m"),
  13101. weight: math.unit(230, "lb"),
  13102. name: "Front",
  13103. image: {
  13104. source: "./media/characters/colin-t/front.svg",
  13105. extra: 1272 / 1193,
  13106. bottom: 0.07
  13107. }
  13108. },
  13109. },
  13110. [
  13111. {
  13112. name: "Micro",
  13113. height: math.unit(0.571, "meters")
  13114. },
  13115. {
  13116. name: "Normal",
  13117. height: math.unit(1.8796, "meters"),
  13118. default: true
  13119. },
  13120. {
  13121. name: "Tall",
  13122. height: math.unit(4, "meters")
  13123. },
  13124. {
  13125. name: "Macro",
  13126. height: math.unit(67.241, "meters")
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(371.856, "meters")
  13131. },
  13132. {
  13133. name: "Planetary",
  13134. height: math.unit(12631.5689, "km")
  13135. },
  13136. ]
  13137. ))
  13138. characterMakers.push(() => makeCharacter(
  13139. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13140. {
  13141. front: {
  13142. height: math.unit(1.85, "meters"),
  13143. weight: math.unit(80, "kg"),
  13144. name: "Front",
  13145. image: {
  13146. source: "./media/characters/matvei/front.svg",
  13147. extra: 456/447,
  13148. bottom: 8/464
  13149. }
  13150. },
  13151. back: {
  13152. height: math.unit(1.85, "meters"),
  13153. weight: math.unit(80, "kg"),
  13154. name: "Back",
  13155. image: {
  13156. source: "./media/characters/matvei/back.svg",
  13157. extra: 434/427,
  13158. bottom: 11/445
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(1.85, "meters"),
  13166. default: true
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(5 + 9 / 12, "feet"),
  13175. weight: math.unit(70, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/quincy/front.svg",
  13179. extra: 3041 / 2751
  13180. }
  13181. },
  13182. back: {
  13183. height: math.unit(5 + 9 / 12, "feet"),
  13184. weight: math.unit(70, "lb"),
  13185. name: "Back",
  13186. image: {
  13187. source: "./media/characters/quincy/back.svg",
  13188. extra: 3041 / 2751
  13189. }
  13190. },
  13191. flying: {
  13192. height: math.unit(5 + 4 / 12, "feet"),
  13193. weight: math.unit(70, "lb"),
  13194. name: "Flying",
  13195. image: {
  13196. source: "./media/characters/quincy/flying.svg",
  13197. extra: 1044 / 930
  13198. }
  13199. },
  13200. },
  13201. [
  13202. {
  13203. name: "Micro",
  13204. height: math.unit(3, "cm")
  13205. },
  13206. {
  13207. name: "Normal",
  13208. height: math.unit(5 + 9 / 12, "feet")
  13209. },
  13210. {
  13211. name: "Macro",
  13212. height: math.unit(200, "meters"),
  13213. default: true
  13214. },
  13215. {
  13216. name: "Megamacro",
  13217. height: math.unit(1000, "meters")
  13218. },
  13219. ]
  13220. ))
  13221. characterMakers.push(() => makeCharacter(
  13222. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13223. {
  13224. front: {
  13225. height: math.unit(3 + 11/12, "feet"),
  13226. weight: math.unit(50, "lb"),
  13227. name: "Front",
  13228. image: {
  13229. source: "./media/characters/vanrel/front.svg",
  13230. extra: 1104/949,
  13231. bottom: 52/1156
  13232. }
  13233. },
  13234. back: {
  13235. height: math.unit(3 + 11/12, "feet"),
  13236. weight: math.unit(50, "lb"),
  13237. name: "Back",
  13238. image: {
  13239. source: "./media/characters/vanrel/back.svg",
  13240. extra: 1119/976,
  13241. bottom: 37/1156
  13242. }
  13243. },
  13244. tome: {
  13245. height: math.unit(1.35, "feet"),
  13246. weight: math.unit(10, "lb"),
  13247. name: "Vanrel's Tome",
  13248. rename: true,
  13249. image: {
  13250. source: "./media/characters/vanrel/tome.svg"
  13251. }
  13252. },
  13253. beans: {
  13254. height: math.unit(0.89, "feet"),
  13255. name: "Beans",
  13256. image: {
  13257. source: "./media/characters/vanrel/beans.svg"
  13258. }
  13259. },
  13260. },
  13261. [
  13262. {
  13263. name: "Normal",
  13264. height: math.unit(3 + 11/12, "feet"),
  13265. default: true
  13266. },
  13267. ]
  13268. ))
  13269. characterMakers.push(() => makeCharacter(
  13270. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13271. {
  13272. front: {
  13273. height: math.unit(7 + 5 / 12, "feet"),
  13274. name: "Front",
  13275. image: {
  13276. source: "./media/characters/kuiper-vanrel/front.svg",
  13277. extra: 1219/1169,
  13278. bottom: 69/1288
  13279. }
  13280. },
  13281. back: {
  13282. height: math.unit(7 + 5 / 12, "feet"),
  13283. name: "Back",
  13284. image: {
  13285. source: "./media/characters/kuiper-vanrel/back.svg",
  13286. extra: 1236/1193,
  13287. bottom: 27/1263
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(0.55, "meters"),
  13292. name: "Foot",
  13293. image: {
  13294. source: "./media/characters/kuiper-vanrel/foot.svg",
  13295. }
  13296. },
  13297. battle: {
  13298. height: math.unit(6.824, "feet"),
  13299. name: "Battle",
  13300. image: {
  13301. source: "./media/characters/kuiper-vanrel/battle.svg",
  13302. extra: 1466 / 1327,
  13303. bottom: 29 / 1492.5
  13304. }
  13305. },
  13306. meerkui: {
  13307. height: math.unit(18, "inches"),
  13308. name: "Meerkui",
  13309. image: {
  13310. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13311. extra: 1354/1289,
  13312. bottom: 69/1423
  13313. }
  13314. },
  13315. },
  13316. [
  13317. {
  13318. name: "Normal",
  13319. height: math.unit(7 + 5 / 12, "feet"),
  13320. default: true
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(8 + 5 / 12, "feet"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/keset-vanrel/front.svg",
  13332. extra: 1231/1148,
  13333. bottom: 82/1313
  13334. }
  13335. },
  13336. back: {
  13337. height: math.unit(8 + 5 / 12, "feet"),
  13338. name: "Back",
  13339. image: {
  13340. source: "./media/characters/keset-vanrel/back.svg",
  13341. extra: 1240/1174,
  13342. bottom: 33/1273
  13343. }
  13344. },
  13345. hand: {
  13346. height: math.unit(0.6, "meters"),
  13347. name: "Hand",
  13348. image: {
  13349. source: "./media/characters/keset-vanrel/hand.svg"
  13350. }
  13351. },
  13352. foot: {
  13353. height: math.unit(0.94978, "meters"),
  13354. name: "Foot",
  13355. image: {
  13356. source: "./media/characters/keset-vanrel/foot.svg"
  13357. }
  13358. },
  13359. battle: {
  13360. height: math.unit(7.408, "feet"),
  13361. name: "Battle",
  13362. image: {
  13363. source: "./media/characters/keset-vanrel/battle.svg",
  13364. extra: 1890 / 1386,
  13365. bottom: 73.28 / 1970
  13366. }
  13367. },
  13368. },
  13369. [
  13370. {
  13371. name: "Normal",
  13372. height: math.unit(8 + 5 / 12, "feet"),
  13373. default: true
  13374. },
  13375. ]
  13376. ))
  13377. characterMakers.push(() => makeCharacter(
  13378. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13379. {
  13380. front: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Front",
  13384. image: {
  13385. source: "./media/characters/neos/front.svg",
  13386. extra: 1696 / 992,
  13387. bottom: 0.14
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Normal",
  13394. height: math.unit(54, "cm"),
  13395. default: true
  13396. },
  13397. {
  13398. name: "Macro",
  13399. height: math.unit(100, "m")
  13400. },
  13401. {
  13402. name: "Megamacro",
  13403. height: math.unit(10, "km")
  13404. },
  13405. {
  13406. name: "Megamacro+",
  13407. height: math.unit(100, "km")
  13408. },
  13409. {
  13410. name: "Gigamacro",
  13411. height: math.unit(100, "Mm")
  13412. },
  13413. {
  13414. name: "Teramacro",
  13415. height: math.unit(100, "Gm")
  13416. },
  13417. {
  13418. name: "Examacro",
  13419. height: math.unit(100, "Em")
  13420. },
  13421. {
  13422. name: "Godly",
  13423. height: math.unit(10000, "Ym")
  13424. },
  13425. {
  13426. name: "Beyond Godly",
  13427. height: math.unit(25, "multiverses")
  13428. },
  13429. ]
  13430. ))
  13431. characterMakers.push(() => makeCharacter(
  13432. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13433. {
  13434. feminine: {
  13435. height: math.unit(5, "feet"),
  13436. weight: math.unit(100, "lb"),
  13437. name: "Feminine",
  13438. image: {
  13439. source: "./media/characters/sammy-mouse/feminine.svg",
  13440. extra: 2526 / 2425,
  13441. bottom: 0.123
  13442. }
  13443. },
  13444. masculine: {
  13445. height: math.unit(5, "feet"),
  13446. weight: math.unit(100, "lb"),
  13447. name: "Masculine",
  13448. image: {
  13449. source: "./media/characters/sammy-mouse/masculine.svg",
  13450. extra: 2526 / 2425,
  13451. bottom: 0.123
  13452. }
  13453. },
  13454. },
  13455. [
  13456. {
  13457. name: "Micro",
  13458. height: math.unit(5, "inches")
  13459. },
  13460. {
  13461. name: "Normal",
  13462. height: math.unit(5, "feet"),
  13463. default: true
  13464. },
  13465. {
  13466. name: "Macro",
  13467. height: math.unit(60, "feet")
  13468. },
  13469. ]
  13470. ))
  13471. characterMakers.push(() => makeCharacter(
  13472. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13473. {
  13474. front: {
  13475. height: math.unit(4, "feet"),
  13476. weight: math.unit(50, "lb"),
  13477. name: "Front",
  13478. image: {
  13479. source: "./media/characters/kole/front.svg",
  13480. extra: 1423 / 1303,
  13481. bottom: 0.025
  13482. }
  13483. },
  13484. back: {
  13485. height: math.unit(4, "feet"),
  13486. weight: math.unit(50, "lb"),
  13487. name: "Back",
  13488. image: {
  13489. source: "./media/characters/kole/back.svg",
  13490. extra: 1426 / 1280,
  13491. bottom: 0.02
  13492. }
  13493. },
  13494. },
  13495. [
  13496. {
  13497. name: "Normal",
  13498. height: math.unit(4, "feet"),
  13499. default: true
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(2.5, "feet"),
  13508. weight: math.unit(32, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/rufran/front.svg",
  13512. extra: 1313/885,
  13513. bottom: 94/1407
  13514. }
  13515. },
  13516. side: {
  13517. height: math.unit(2.5, "feet"),
  13518. weight: math.unit(32, "lb"),
  13519. name: "Side",
  13520. image: {
  13521. source: "./media/characters/rufran/side.svg",
  13522. extra: 1109/852,
  13523. bottom: 118/1227
  13524. }
  13525. },
  13526. back: {
  13527. height: math.unit(2.5, "feet"),
  13528. weight: math.unit(32, "lb"),
  13529. name: "Back",
  13530. image: {
  13531. source: "./media/characters/rufran/back.svg",
  13532. extra: 1280/878,
  13533. bottom: 131/1411
  13534. }
  13535. },
  13536. mouth: {
  13537. height: math.unit(1.13, "feet"),
  13538. name: "Mouth",
  13539. image: {
  13540. source: "./media/characters/rufran/mouth.svg"
  13541. }
  13542. },
  13543. foot: {
  13544. height: math.unit(1.33, "feet"),
  13545. name: "Foot",
  13546. image: {
  13547. source: "./media/characters/rufran/foot.svg"
  13548. }
  13549. },
  13550. koboldFront: {
  13551. height: math.unit(2 + 6 / 12, "feet"),
  13552. weight: math.unit(20, "lb"),
  13553. name: "Front (Kobold)",
  13554. image: {
  13555. source: "./media/characters/rufran/kobold-front.svg",
  13556. extra: 2041 / 1839,
  13557. bottom: 0.055
  13558. }
  13559. },
  13560. koboldBack: {
  13561. height: math.unit(2 + 6 / 12, "feet"),
  13562. weight: math.unit(20, "lb"),
  13563. name: "Back (Kobold)",
  13564. image: {
  13565. source: "./media/characters/rufran/kobold-back.svg",
  13566. extra: 2054 / 1839,
  13567. bottom: 0.01
  13568. }
  13569. },
  13570. koboldHand: {
  13571. height: math.unit(0.2166, "meters"),
  13572. name: "Hand (Kobold)",
  13573. image: {
  13574. source: "./media/characters/rufran/kobold-hand.svg"
  13575. }
  13576. },
  13577. koboldFoot: {
  13578. height: math.unit(0.185, "meters"),
  13579. name: "Foot (Kobold)",
  13580. image: {
  13581. source: "./media/characters/rufran/kobold-foot.svg"
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Micro",
  13588. height: math.unit(1, "inch")
  13589. },
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(2 + 6 / 12, "feet"),
  13593. default: true
  13594. },
  13595. {
  13596. name: "Big",
  13597. height: math.unit(60, "feet")
  13598. },
  13599. {
  13600. name: "Macro",
  13601. height: math.unit(325, "feet")
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13607. {
  13608. front: {
  13609. height: math.unit(0.3, "meters"),
  13610. weight: math.unit(3.5, "kg"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/chip/front.svg",
  13614. extra: 748 / 674
  13615. }
  13616. },
  13617. },
  13618. [
  13619. {
  13620. name: "Micro",
  13621. height: math.unit(1, "inch"),
  13622. default: true
  13623. },
  13624. ]
  13625. ))
  13626. characterMakers.push(() => makeCharacter(
  13627. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13628. {
  13629. side: {
  13630. height: math.unit(2.3, "meters"),
  13631. weight: math.unit(3500, "lb"),
  13632. name: "Side",
  13633. image: {
  13634. source: "./media/characters/torvid/side.svg",
  13635. extra: 1972 / 722,
  13636. bottom: 0.035
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Normal",
  13643. height: math.unit(2.3, "meters"),
  13644. default: true
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(2, "meters"),
  13653. weight: math.unit(150.5, "kg"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/susan/front.svg",
  13657. extra: 693 / 635,
  13658. bottom: 0.05
  13659. }
  13660. },
  13661. },
  13662. [
  13663. {
  13664. name: "Megamacro",
  13665. height: math.unit(505, "miles"),
  13666. default: true
  13667. },
  13668. ]
  13669. ))
  13670. characterMakers.push(() => makeCharacter(
  13671. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13672. {
  13673. front: {
  13674. height: math.unit(6, "feet"),
  13675. weight: math.unit(150, "lb"),
  13676. name: "Front",
  13677. image: {
  13678. source: "./media/characters/raindrops/front.svg",
  13679. extra: 2655 / 2461,
  13680. bottom: 49 / 2705
  13681. }
  13682. },
  13683. back: {
  13684. height: math.unit(6, "feet"),
  13685. weight: math.unit(150, "lb"),
  13686. name: "Back",
  13687. image: {
  13688. source: "./media/characters/raindrops/back.svg",
  13689. extra: 2574 / 2400,
  13690. bottom: 65 / 2634
  13691. }
  13692. },
  13693. },
  13694. [
  13695. {
  13696. name: "Micro",
  13697. height: math.unit(6, "inches")
  13698. },
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(6 + 2 / 12, "feet")
  13702. },
  13703. {
  13704. name: "Macro",
  13705. height: math.unit(131, "feet"),
  13706. default: true
  13707. },
  13708. {
  13709. name: "Megamacro",
  13710. height: math.unit(15, "miles")
  13711. },
  13712. {
  13713. name: "Gigamacro",
  13714. height: math.unit(4000, "miles")
  13715. },
  13716. {
  13717. name: "Teramacro",
  13718. height: math.unit(315000, "miles")
  13719. },
  13720. ]
  13721. ))
  13722. characterMakers.push(() => makeCharacter(
  13723. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13724. {
  13725. front: {
  13726. height: math.unit(2.794, "meters"),
  13727. weight: math.unit(325, "kg"),
  13728. name: "Front",
  13729. image: {
  13730. source: "./media/characters/tezwa/front.svg",
  13731. extra: 2083 / 1906,
  13732. bottom: 0.031
  13733. }
  13734. },
  13735. foot: {
  13736. height: math.unit(0.687, "meters"),
  13737. name: "Foot",
  13738. image: {
  13739. source: "./media/characters/tezwa/foot.svg"
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Normal",
  13746. height: math.unit(9 + 2 / 12, "feet"),
  13747. default: true
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(58, "feet"),
  13756. weight: math.unit(89000, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/typhus/front.svg",
  13760. extra: 816 / 800,
  13761. bottom: 0.065
  13762. }
  13763. },
  13764. },
  13765. [
  13766. {
  13767. name: "Macro",
  13768. height: math.unit(58, "feet"),
  13769. default: true
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(12, "feet"),
  13778. weight: math.unit(6, "tonnes"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/lyra-von-wulf/front.svg",
  13782. extra: 1,
  13783. bottom: 0.10
  13784. }
  13785. },
  13786. frontMecha: {
  13787. height: math.unit(12, "feet"),
  13788. weight: math.unit(12, "tonnes"),
  13789. name: "Front (Mecha)",
  13790. image: {
  13791. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13792. extra: 1,
  13793. bottom: 0.042
  13794. }
  13795. },
  13796. maw: {
  13797. height: math.unit(2.2, "feet"),
  13798. name: "Maw",
  13799. image: {
  13800. source: "./media/characters/lyra-von-wulf/maw.svg"
  13801. }
  13802. },
  13803. },
  13804. [
  13805. {
  13806. name: "Normal",
  13807. height: math.unit(12, "feet"),
  13808. default: true
  13809. },
  13810. {
  13811. name: "Classic",
  13812. height: math.unit(50, "feet")
  13813. },
  13814. {
  13815. name: "Macro",
  13816. height: math.unit(500, "feet")
  13817. },
  13818. {
  13819. name: "Megamacro",
  13820. height: math.unit(1, "mile")
  13821. },
  13822. {
  13823. name: "Gigamacro",
  13824. height: math.unit(400, "miles")
  13825. },
  13826. {
  13827. name: "Teramacro",
  13828. height: math.unit(22000, "miles")
  13829. },
  13830. {
  13831. name: "Solarmacro",
  13832. height: math.unit(8600000, "miles")
  13833. },
  13834. {
  13835. name: "Galactic",
  13836. height: math.unit(1057000, "lightyears")
  13837. },
  13838. ]
  13839. ))
  13840. characterMakers.push(() => makeCharacter(
  13841. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13842. {
  13843. front: {
  13844. height: math.unit(6 + 10 / 12, "feet"),
  13845. weight: math.unit(150, "lb"),
  13846. name: "Front",
  13847. image: {
  13848. source: "./media/characters/dixon/front.svg",
  13849. extra: 3361 / 3209,
  13850. bottom: 0.01
  13851. }
  13852. },
  13853. },
  13854. [
  13855. {
  13856. name: "Normal",
  13857. height: math.unit(6 + 10 / 12, "feet"),
  13858. default: true
  13859. },
  13860. {
  13861. name: "Big",
  13862. height: math.unit(12, "meters")
  13863. },
  13864. {
  13865. name: "Macro",
  13866. height: math.unit(500, "meters")
  13867. },
  13868. {
  13869. name: "Megamacro",
  13870. height: math.unit(2, "km")
  13871. },
  13872. ]
  13873. ))
  13874. characterMakers.push(() => makeCharacter(
  13875. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13876. {
  13877. front: {
  13878. height: math.unit(185, "cm"),
  13879. weight: math.unit(68, "kg"),
  13880. name: "Front",
  13881. image: {
  13882. source: "./media/characters/kauko/front.svg",
  13883. extra: 1455 / 1421,
  13884. bottom: 0.03
  13885. }
  13886. },
  13887. back: {
  13888. height: math.unit(185, "cm"),
  13889. weight: math.unit(68, "kg"),
  13890. name: "Back",
  13891. image: {
  13892. source: "./media/characters/kauko/back.svg",
  13893. extra: 1455 / 1421,
  13894. bottom: 0.004
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(185, "cm"),
  13902. default: true
  13903. },
  13904. ]
  13905. ))
  13906. characterMakers.push(() => makeCharacter(
  13907. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13908. {
  13909. frontSfw: {
  13910. height: math.unit(5, "meters"),
  13911. weight: math.unit(4250, "lb"),
  13912. name: "Front",
  13913. image: {
  13914. source: "./media/characters/varg/front-sfw.svg",
  13915. extra: 1103/1010,
  13916. bottom: 50/1153
  13917. },
  13918. form: "anthro",
  13919. default: true
  13920. },
  13921. backSfw: {
  13922. height: math.unit(5, "meters"),
  13923. weight: math.unit(4250, "lb"),
  13924. name: "Back",
  13925. image: {
  13926. source: "./media/characters/varg/back-sfw.svg",
  13927. extra: 1038/1022,
  13928. bottom: 36/1074
  13929. },
  13930. form: "anthro"
  13931. },
  13932. frontNsfw: {
  13933. height: math.unit(5, "meters"),
  13934. weight: math.unit(4250, "lb"),
  13935. name: "Front (NSFW)",
  13936. image: {
  13937. source: "./media/characters/varg/front-nsfw.svg",
  13938. extra: 1103/1010,
  13939. bottom: 50/1153
  13940. },
  13941. form: "anthro"
  13942. },
  13943. sheath: {
  13944. height: math.unit(3.8, "feet"),
  13945. weight: math.unit(90, "kilograms"),
  13946. name: "Sheath",
  13947. image: {
  13948. source: "./media/characters/varg/sheath.svg"
  13949. },
  13950. form: "anthro"
  13951. },
  13952. dick: {
  13953. height: math.unit(4.6, "feet"),
  13954. weight: math.unit(451, "kilograms"),
  13955. name: "Dick",
  13956. image: {
  13957. source: "./media/characters/varg/dick.svg"
  13958. },
  13959. form: "anthro"
  13960. },
  13961. feralSfw: {
  13962. height: math.unit(5, "meters"),
  13963. weight: math.unit(100000, "lb"),
  13964. name: "Side",
  13965. image: {
  13966. source: "./media/characters/varg/feral-sfw.svg",
  13967. extra: 1065/511,
  13968. bottom: 211/1276
  13969. },
  13970. form: "feral",
  13971. default: true
  13972. },
  13973. feralNsfw: {
  13974. height: math.unit(5, "meters"),
  13975. weight: math.unit(100000, "lb"),
  13976. name: "Side (NSFW)",
  13977. image: {
  13978. source: "./media/characters/varg/feral-nsfw.svg",
  13979. extra: 1065/511,
  13980. bottom: 211/1276
  13981. },
  13982. form: "feral",
  13983. },
  13984. feralSheath: {
  13985. height: math.unit(9.8, "feet"),
  13986. weight: math.unit(2000, "kilograms"),
  13987. name: "Sheath",
  13988. image: {
  13989. source: "./media/characters/varg/sheath.svg"
  13990. },
  13991. form: "feral"
  13992. },
  13993. feralDick: {
  13994. height: math.unit(13.11, "feet"),
  13995. weight: math.unit(10440, "kilograms"),
  13996. name: "Dick",
  13997. image: {
  13998. source: "./media/characters/varg/dick.svg"
  13999. },
  14000. form: "feral"
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Normal",
  14006. height: math.unit(5, "meters"),
  14007. form: "anthro"
  14008. },
  14009. {
  14010. name: "Macro",
  14011. height: math.unit(200, "meters"),
  14012. form: "anthro"
  14013. },
  14014. {
  14015. name: "Megamacro",
  14016. height: math.unit(20, "kilometers"),
  14017. form: "anthro"
  14018. },
  14019. {
  14020. name: "True Size",
  14021. height: math.unit(211, "km"),
  14022. form: "anthro",
  14023. default: true
  14024. },
  14025. {
  14026. name: "Gigamacro",
  14027. height: math.unit(1000, "km"),
  14028. form: "anthro"
  14029. },
  14030. {
  14031. name: "Gigamacro+",
  14032. height: math.unit(8000, "km"),
  14033. form: "anthro"
  14034. },
  14035. {
  14036. name: "Teramacro",
  14037. height: math.unit(1000000, "km"),
  14038. form: "anthro"
  14039. },
  14040. {
  14041. name: "Normal",
  14042. height: math.unit(5, "meters"),
  14043. form: "feral"
  14044. },
  14045. {
  14046. name: "Macro",
  14047. height: math.unit(200, "meters"),
  14048. form: "feral"
  14049. },
  14050. {
  14051. name: "Megamacro",
  14052. height: math.unit(20, "kilometers"),
  14053. form: "feral"
  14054. },
  14055. {
  14056. name: "True Size",
  14057. height: math.unit(211, "km"),
  14058. form: "feral",
  14059. default: true
  14060. },
  14061. {
  14062. name: "Gigamacro",
  14063. height: math.unit(1000, "km"),
  14064. form: "feral"
  14065. },
  14066. {
  14067. name: "Gigamacro+",
  14068. height: math.unit(8000, "km"),
  14069. form: "feral"
  14070. },
  14071. {
  14072. name: "Teramacro",
  14073. height: math.unit(1000000, "km"),
  14074. form: "feral"
  14075. },
  14076. ],
  14077. {
  14078. "anthro": {
  14079. name: "Anthro",
  14080. default: true
  14081. },
  14082. "feral": {
  14083. name: "Feral",
  14084. },
  14085. }
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(7 + 7 / 12, "feet"),
  14092. weight: math.unit(267, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/dayza/front.svg",
  14096. extra: 1262 / 1200,
  14097. bottom: 0.035
  14098. }
  14099. },
  14100. side: {
  14101. height: math.unit(7 + 7 / 12, "feet"),
  14102. weight: math.unit(267, "lb"),
  14103. name: "Side",
  14104. image: {
  14105. source: "./media/characters/dayza/side.svg",
  14106. extra: 1295 / 1245,
  14107. bottom: 0.05
  14108. }
  14109. },
  14110. back: {
  14111. height: math.unit(7 + 7 / 12, "feet"),
  14112. weight: math.unit(267, "lb"),
  14113. name: "Back",
  14114. image: {
  14115. source: "./media/characters/dayza/back.svg",
  14116. extra: 1241 / 1170
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(7 + 7 / 12, "feet"),
  14124. default: true
  14125. },
  14126. {
  14127. name: "Macro",
  14128. height: math.unit(155, "feet")
  14129. },
  14130. ]
  14131. ))
  14132. characterMakers.push(() => makeCharacter(
  14133. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14134. {
  14135. front: {
  14136. height: math.unit(6 + 5 / 12, "feet"),
  14137. weight: math.unit(160, "lb"),
  14138. name: "Front",
  14139. image: {
  14140. source: "./media/characters/xanthos/front.svg",
  14141. extra: 1,
  14142. bottom: 0.04
  14143. }
  14144. },
  14145. back: {
  14146. height: math.unit(6 + 5 / 12, "feet"),
  14147. weight: math.unit(160, "lb"),
  14148. name: "Back",
  14149. image: {
  14150. source: "./media/characters/xanthos/back.svg",
  14151. extra: 1,
  14152. bottom: 0.03
  14153. }
  14154. },
  14155. hand: {
  14156. height: math.unit(0.928, "feet"),
  14157. name: "Hand",
  14158. image: {
  14159. source: "./media/characters/xanthos/hand.svg"
  14160. }
  14161. },
  14162. foot: {
  14163. height: math.unit(1.286, "feet"),
  14164. name: "Foot",
  14165. image: {
  14166. source: "./media/characters/xanthos/foot.svg"
  14167. }
  14168. },
  14169. },
  14170. [
  14171. {
  14172. name: "Normal",
  14173. height: math.unit(6 + 5 / 12, "feet"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Normal+",
  14178. height: math.unit(6, "meters")
  14179. },
  14180. {
  14181. name: "Macro",
  14182. height: math.unit(40, "feet")
  14183. },
  14184. {
  14185. name: "Macro+",
  14186. height: math.unit(200, "meters")
  14187. },
  14188. {
  14189. name: "Megamacro",
  14190. height: math.unit(20, "km")
  14191. },
  14192. {
  14193. name: "Megamacro+",
  14194. height: math.unit(100, "km")
  14195. },
  14196. {
  14197. name: "Gigamacro",
  14198. height: math.unit(200, "megameters")
  14199. },
  14200. {
  14201. name: "Gigamacro+",
  14202. height: math.unit(1.5, "gigameters")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6 + 3 / 12, "feet"),
  14211. weight: math.unit(215, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/grynn/front.svg",
  14215. extra: 4627 / 4209,
  14216. bottom: 0.047
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Micro",
  14223. height: math.unit(6, "inches")
  14224. },
  14225. {
  14226. name: "Normal",
  14227. height: math.unit(6 + 3 / 12, "feet"),
  14228. default: true
  14229. },
  14230. {
  14231. name: "Big",
  14232. height: math.unit(104, "feet")
  14233. },
  14234. {
  14235. name: "Macro",
  14236. height: math.unit(944, "feet")
  14237. },
  14238. {
  14239. name: "Macro+",
  14240. height: math.unit(9480, "feet")
  14241. },
  14242. {
  14243. name: "Megamacro",
  14244. height: math.unit(78752, "feet")
  14245. },
  14246. {
  14247. name: "Megamacro+",
  14248. height: math.unit(630128, "feet")
  14249. },
  14250. {
  14251. name: "Megamacro++",
  14252. height: math.unit(3150695, "feet")
  14253. },
  14254. ]
  14255. ))
  14256. characterMakers.push(() => makeCharacter(
  14257. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14258. {
  14259. front: {
  14260. height: math.unit(7 + 5 / 12, "feet"),
  14261. weight: math.unit(450, "lb"),
  14262. name: "Front",
  14263. image: {
  14264. source: "./media/characters/mocha-aura/front.svg",
  14265. extra: 1907 / 1817,
  14266. bottom: 0.04
  14267. }
  14268. },
  14269. back: {
  14270. height: math.unit(7 + 5 / 12, "feet"),
  14271. weight: math.unit(450, "lb"),
  14272. name: "Back",
  14273. image: {
  14274. source: "./media/characters/mocha-aura/back.svg",
  14275. extra: 1900 / 1825,
  14276. bottom: 0.045
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Nano",
  14283. height: math.unit(1, "nm")
  14284. },
  14285. {
  14286. name: "Megamicro",
  14287. height: math.unit(1, "mm")
  14288. },
  14289. {
  14290. name: "Micro",
  14291. height: math.unit(3, "inches")
  14292. },
  14293. {
  14294. name: "Normal",
  14295. height: math.unit(7 + 5 / 12, "feet"),
  14296. default: true
  14297. },
  14298. {
  14299. name: "Macro",
  14300. height: math.unit(30, "feet")
  14301. },
  14302. {
  14303. name: "Megamacro",
  14304. height: math.unit(3500, "feet")
  14305. },
  14306. {
  14307. name: "Teramacro",
  14308. height: math.unit(500000, "miles")
  14309. },
  14310. {
  14311. name: "Petamacro",
  14312. height: math.unit(50000000000000000, "parsecs")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(150, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/ilisha-devya/front.svg",
  14325. extra: 1053/1049,
  14326. bottom: 270/1323
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/ilisha-devya/back.svg",
  14335. extra: 1131/1128,
  14336. bottom: 39/1170
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Macro",
  14343. height: math.unit(500, "feet"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Megamacro",
  14348. height: math.unit(10, "miles")
  14349. },
  14350. {
  14351. name: "Gigamacro",
  14352. height: math.unit(100000, "miles")
  14353. },
  14354. {
  14355. name: "Examacro",
  14356. height: math.unit(1e9, "lightyears")
  14357. },
  14358. {
  14359. name: "Omniversal",
  14360. height: math.unit(1e33, "lightyears")
  14361. },
  14362. {
  14363. name: "Beyond Infinite",
  14364. height: math.unit(1e100, "lightyears")
  14365. },
  14366. ]
  14367. ))
  14368. characterMakers.push(() => makeCharacter(
  14369. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14370. {
  14371. Side: {
  14372. height: math.unit(6, "feet"),
  14373. weight: math.unit(150, "lb"),
  14374. name: "Side",
  14375. image: {
  14376. source: "./media/characters/mira/side.svg",
  14377. extra: 900 / 799,
  14378. bottom: 0.02
  14379. }
  14380. },
  14381. },
  14382. [
  14383. {
  14384. name: "Human Size",
  14385. height: math.unit(6, "feet")
  14386. },
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(100, "feet"),
  14390. default: true
  14391. },
  14392. {
  14393. name: "Megamacro",
  14394. height: math.unit(10, "miles")
  14395. },
  14396. {
  14397. name: "Gigamacro",
  14398. height: math.unit(25000, "miles")
  14399. },
  14400. {
  14401. name: "Teramacro",
  14402. height: math.unit(300, "AU")
  14403. },
  14404. {
  14405. name: "Full Size",
  14406. height: math.unit(4.5e10, "lightyears")
  14407. },
  14408. ]
  14409. ))
  14410. characterMakers.push(() => makeCharacter(
  14411. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14412. {
  14413. front: {
  14414. height: math.unit(6, "feet"),
  14415. weight: math.unit(150, "lb"),
  14416. name: "Front",
  14417. image: {
  14418. source: "./media/characters/holly/front.svg",
  14419. extra: 639 / 606
  14420. }
  14421. },
  14422. back: {
  14423. height: math.unit(6, "feet"),
  14424. weight: math.unit(150, "lb"),
  14425. name: "Back",
  14426. image: {
  14427. source: "./media/characters/holly/back.svg",
  14428. extra: 623 / 598
  14429. }
  14430. },
  14431. frontWorking: {
  14432. height: math.unit(6, "feet"),
  14433. weight: math.unit(150, "lb"),
  14434. name: "Front (Working)",
  14435. image: {
  14436. source: "./media/characters/holly/front-working.svg",
  14437. extra: 607 / 577,
  14438. bottom: 0.048
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(12 + 3 / 12, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(150, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/porter/front.svg",
  14459. extra: 1,
  14460. bottom: 0.01
  14461. }
  14462. },
  14463. frontRobes: {
  14464. height: math.unit(6, "feet"),
  14465. weight: math.unit(150, "lb"),
  14466. name: "Front (Robes)",
  14467. image: {
  14468. source: "./media/characters/porter/front-robes.svg",
  14469. extra: 1.01,
  14470. bottom: 0.01
  14471. }
  14472. },
  14473. },
  14474. [
  14475. {
  14476. name: "Normal",
  14477. height: math.unit(11 + 9 / 12, "feet"),
  14478. default: true
  14479. },
  14480. ]
  14481. ))
  14482. characterMakers.push(() => makeCharacter(
  14483. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14484. {
  14485. legendary: {
  14486. height: math.unit(6, "feet"),
  14487. weight: math.unit(150, "lb"),
  14488. name: "Legendary",
  14489. image: {
  14490. source: "./media/characters/lucy/legendary.svg",
  14491. extra: 1355 / 1100,
  14492. bottom: 0.045
  14493. }
  14494. },
  14495. },
  14496. [
  14497. {
  14498. name: "Legendary",
  14499. height: math.unit(86882 * 2, "miles"),
  14500. default: true
  14501. },
  14502. ]
  14503. ))
  14504. characterMakers.push(() => makeCharacter(
  14505. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14506. {
  14507. front: {
  14508. height: math.unit(6, "feet"),
  14509. weight: math.unit(150, "lb"),
  14510. name: "Front",
  14511. image: {
  14512. source: "./media/characters/drusilla/front.svg",
  14513. extra: 678 / 635,
  14514. bottom: 0.03
  14515. }
  14516. },
  14517. back: {
  14518. height: math.unit(6, "feet"),
  14519. weight: math.unit(150, "lb"),
  14520. name: "Back",
  14521. image: {
  14522. source: "./media/characters/drusilla/back.svg",
  14523. extra: 678 / 635,
  14524. bottom: 0.005
  14525. }
  14526. },
  14527. },
  14528. [
  14529. {
  14530. name: "Macro",
  14531. height: math.unit(100, "feet")
  14532. },
  14533. {
  14534. name: "Canon Height",
  14535. height: math.unit(2000, "feet"),
  14536. default: true
  14537. },
  14538. ]
  14539. ))
  14540. characterMakers.push(() => makeCharacter(
  14541. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14542. {
  14543. front: {
  14544. height: math.unit(6, "feet"),
  14545. weight: math.unit(180, "lb"),
  14546. name: "Front",
  14547. image: {
  14548. source: "./media/characters/renard-thatch/front.svg",
  14549. extra: 2411 / 2275,
  14550. bottom: 0.01
  14551. }
  14552. },
  14553. frontPosing: {
  14554. height: math.unit(6, "feet"),
  14555. weight: math.unit(180, "lb"),
  14556. name: "Front (Posing)",
  14557. image: {
  14558. source: "./media/characters/renard-thatch/front-posing.svg",
  14559. extra: 2381 / 2261,
  14560. bottom: 0.01
  14561. }
  14562. },
  14563. back: {
  14564. height: math.unit(6, "feet"),
  14565. weight: math.unit(180, "lb"),
  14566. name: "Back",
  14567. image: {
  14568. source: "./media/characters/renard-thatch/back.svg",
  14569. extra: 2428 / 2288
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Micro",
  14576. height: math.unit(3, "inches")
  14577. },
  14578. {
  14579. name: "Default",
  14580. height: math.unit(6, "feet"),
  14581. default: true
  14582. },
  14583. {
  14584. name: "Macro",
  14585. height: math.unit(75, "feet")
  14586. },
  14587. ]
  14588. ))
  14589. characterMakers.push(() => makeCharacter(
  14590. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14591. {
  14592. front: {
  14593. height: math.unit(1450, "feet"),
  14594. weight: math.unit(1.21e6, "tons"),
  14595. name: "Front",
  14596. image: {
  14597. source: "./media/characters/sekvra/front.svg",
  14598. extra: 1193/1190,
  14599. bottom: 78/1271
  14600. }
  14601. },
  14602. side: {
  14603. height: math.unit(1450, "feet"),
  14604. weight: math.unit(1.21e6, "tons"),
  14605. name: "Side",
  14606. image: {
  14607. source: "./media/characters/sekvra/side.svg",
  14608. extra: 1193/1190,
  14609. bottom: 52/1245
  14610. }
  14611. },
  14612. back: {
  14613. height: math.unit(1450, "feet"),
  14614. weight: math.unit(1.21e6, "tons"),
  14615. name: "Back",
  14616. image: {
  14617. source: "./media/characters/sekvra/back.svg",
  14618. extra: 1219/1216,
  14619. bottom: 21/1240
  14620. }
  14621. },
  14622. frontClothed: {
  14623. height: math.unit(1450, "feet"),
  14624. weight: math.unit(1.21e6, "tons"),
  14625. name: "Front (Clothed)",
  14626. image: {
  14627. source: "./media/characters/sekvra/front-clothed.svg",
  14628. extra: 1192/1189,
  14629. bottom: 79/1271
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Macro",
  14636. height: math.unit(1450, "feet"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Megamacro",
  14641. height: math.unit(15000, "feet")
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14647. {
  14648. front: {
  14649. height: math.unit(6, "feet"),
  14650. weight: math.unit(150, "lb"),
  14651. name: "Front",
  14652. image: {
  14653. source: "./media/characters/carmine/front.svg",
  14654. extra: 1,
  14655. bottom: 0.035
  14656. }
  14657. },
  14658. frontArmor: {
  14659. height: math.unit(6, "feet"),
  14660. weight: math.unit(150, "lb"),
  14661. name: "Front (Armor)",
  14662. image: {
  14663. source: "./media/characters/carmine/front-armor.svg",
  14664. extra: 1,
  14665. bottom: 0.035
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Large",
  14672. height: math.unit(1, "mile")
  14673. },
  14674. {
  14675. name: "Huge",
  14676. height: math.unit(40, "miles"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Colossal",
  14681. height: math.unit(2500, "miles")
  14682. },
  14683. ]
  14684. ))
  14685. characterMakers.push(() => makeCharacter(
  14686. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14687. {
  14688. front: {
  14689. height: math.unit(6, "feet"),
  14690. weight: math.unit(150, "lb"),
  14691. name: "Front",
  14692. image: {
  14693. source: "./media/characters/elyssia/front.svg",
  14694. extra: 2201 / 2035,
  14695. bottom: 0.05
  14696. }
  14697. },
  14698. frontClothed: {
  14699. height: math.unit(6, "feet"),
  14700. weight: math.unit(150, "lb"),
  14701. name: "Front (Clothed)",
  14702. image: {
  14703. source: "./media/characters/elyssia/front-clothed.svg",
  14704. extra: 2201 / 2035,
  14705. bottom: 0.05
  14706. }
  14707. },
  14708. back: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Back",
  14712. image: {
  14713. source: "./media/characters/elyssia/back.svg",
  14714. extra: 2201 / 2035,
  14715. bottom: 0.013
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Smaller",
  14722. height: math.unit(150, "feet")
  14723. },
  14724. {
  14725. name: "Standard",
  14726. height: math.unit(1400, "feet"),
  14727. default: true
  14728. },
  14729. {
  14730. name: "Distracted",
  14731. height: math.unit(15000, "feet")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(7 + 4/12, "feet"),
  14740. weight: math.unit(690, "lb"),
  14741. name: "Front",
  14742. image: {
  14743. source: "./media/characters/geno-maxwell/front.svg",
  14744. extra: 984/856,
  14745. bottom: 87/1071
  14746. }
  14747. },
  14748. back: {
  14749. height: math.unit(7 + 4/12, "feet"),
  14750. weight: math.unit(690, "lb"),
  14751. name: "Back",
  14752. image: {
  14753. source: "./media/characters/geno-maxwell/back.svg",
  14754. extra: 981/854,
  14755. bottom: 57/1038
  14756. }
  14757. },
  14758. frontCostume: {
  14759. height: math.unit(7 + 4/12, "feet"),
  14760. weight: math.unit(690, "lb"),
  14761. name: "Front (Costume)",
  14762. image: {
  14763. source: "./media/characters/geno-maxwell/front-costume.svg",
  14764. extra: 984/856,
  14765. bottom: 87/1071
  14766. }
  14767. },
  14768. backcostume: {
  14769. height: math.unit(7 + 4/12, "feet"),
  14770. weight: math.unit(690, "lb"),
  14771. name: "Back (Costume)",
  14772. image: {
  14773. source: "./media/characters/geno-maxwell/back-costume.svg",
  14774. extra: 981/854,
  14775. bottom: 57/1038
  14776. }
  14777. },
  14778. },
  14779. [
  14780. {
  14781. name: "Micro",
  14782. height: math.unit(3, "inches")
  14783. },
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(7 + 4 / 12, "feet"),
  14787. default: true
  14788. },
  14789. {
  14790. name: "Macro",
  14791. height: math.unit(220, "feet")
  14792. },
  14793. {
  14794. name: "Megamacro",
  14795. height: math.unit(11, "miles")
  14796. },
  14797. ]
  14798. ))
  14799. characterMakers.push(() => makeCharacter(
  14800. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14801. {
  14802. front: {
  14803. height: math.unit(7 + 4/12, "feet"),
  14804. weight: math.unit(750, "lb"),
  14805. name: "Front",
  14806. image: {
  14807. source: "./media/characters/regena-maxwell/front.svg",
  14808. extra: 984/856,
  14809. bottom: 87/1071
  14810. }
  14811. },
  14812. back: {
  14813. height: math.unit(7 + 4/12, "feet"),
  14814. weight: math.unit(750, "lb"),
  14815. name: "Back",
  14816. image: {
  14817. source: "./media/characters/regena-maxwell/back.svg",
  14818. extra: 981/854,
  14819. bottom: 57/1038
  14820. }
  14821. },
  14822. frontCostume: {
  14823. height: math.unit(7 + 4/12, "feet"),
  14824. weight: math.unit(750, "lb"),
  14825. name: "Front (Costume)",
  14826. image: {
  14827. source: "./media/characters/regena-maxwell/front-costume.svg",
  14828. extra: 984/856,
  14829. bottom: 87/1071
  14830. }
  14831. },
  14832. backcostume: {
  14833. height: math.unit(7 + 4/12, "feet"),
  14834. weight: math.unit(750, "lb"),
  14835. name: "Back (Costume)",
  14836. image: {
  14837. source: "./media/characters/regena-maxwell/back-costume.svg",
  14838. extra: 981/854,
  14839. bottom: 57/1038
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(7 + 4 / 12, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(220, "feet")
  14852. },
  14853. {
  14854. name: "Megamacro",
  14855. height: math.unit(11, "miles")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6, "feet"),
  14864. weight: math.unit(150, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14868. extra: 860 / 690,
  14869. bottom: 0.03
  14870. }
  14871. },
  14872. },
  14873. [
  14874. {
  14875. name: "Normal",
  14876. height: math.unit(1.7, "meters"),
  14877. default: true
  14878. },
  14879. ]
  14880. ))
  14881. characterMakers.push(() => makeCharacter(
  14882. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14883. {
  14884. front: {
  14885. height: math.unit(6, "feet"),
  14886. weight: math.unit(150, "lb"),
  14887. name: "Front",
  14888. image: {
  14889. source: "./media/characters/quilly/front.svg",
  14890. extra: 890 / 776
  14891. }
  14892. },
  14893. },
  14894. [
  14895. {
  14896. name: "Gigamacro",
  14897. height: math.unit(404090, "miles"),
  14898. default: true
  14899. },
  14900. ]
  14901. ))
  14902. characterMakers.push(() => makeCharacter(
  14903. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14904. {
  14905. front: {
  14906. height: math.unit(7 + 8 / 12, "feet"),
  14907. weight: math.unit(350, "lb"),
  14908. name: "Front",
  14909. image: {
  14910. source: "./media/characters/tempest/front.svg",
  14911. extra: 1175 / 1086,
  14912. bottom: 0.02
  14913. }
  14914. },
  14915. },
  14916. [
  14917. {
  14918. name: "Normal",
  14919. height: math.unit(7 + 8 / 12, "feet"),
  14920. default: true
  14921. },
  14922. ]
  14923. ))
  14924. characterMakers.push(() => makeCharacter(
  14925. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14926. {
  14927. side: {
  14928. height: math.unit(4 + 5 / 12, "feet"),
  14929. weight: math.unit(80, "lb"),
  14930. name: "Side",
  14931. image: {
  14932. source: "./media/characters/rodger/side.svg",
  14933. extra: 1235 / 1118
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Micro",
  14940. height: math.unit(1, "inch")
  14941. },
  14942. {
  14943. name: "Normal",
  14944. height: math.unit(4 + 5 / 12, "feet"),
  14945. default: true
  14946. },
  14947. {
  14948. name: "Macro",
  14949. height: math.unit(120, "feet")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/danyel/front.svg",
  14962. extra: 1185 / 1123,
  14963. bottom: 0.05
  14964. }
  14965. },
  14966. },
  14967. [
  14968. {
  14969. name: "Shrunken",
  14970. height: math.unit(0.5, "mm")
  14971. },
  14972. {
  14973. name: "Micro",
  14974. height: math.unit(1, "mm"),
  14975. default: true
  14976. },
  14977. {
  14978. name: "Upsized",
  14979. height: math.unit(5 + 5 / 12, "feet")
  14980. },
  14981. ]
  14982. ))
  14983. characterMakers.push(() => makeCharacter(
  14984. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14985. {
  14986. front: {
  14987. height: math.unit(5 + 6 / 12, "feet"),
  14988. weight: math.unit(200, "lb"),
  14989. name: "Front",
  14990. image: {
  14991. source: "./media/characters/vivian-bijoux/front.svg",
  14992. extra: 1217/1209,
  14993. bottom: 76/1293
  14994. }
  14995. },
  14996. back: {
  14997. height: math.unit(5 + 6 / 12, "feet"),
  14998. weight: math.unit(200, "lb"),
  14999. name: "Back",
  15000. image: {
  15001. source: "./media/characters/vivian-bijoux/back.svg",
  15002. extra: 1214/1208,
  15003. bottom: 51/1265
  15004. }
  15005. },
  15006. dressed: {
  15007. height: math.unit(5 + 6 / 12, "feet"),
  15008. weight: math.unit(200, "lb"),
  15009. name: "Dressed",
  15010. image: {
  15011. source: "./media/characters/vivian-bijoux/dressed.svg",
  15012. extra: 1217/1209,
  15013. bottom: 76/1293
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(5 + 6 / 12, "feet"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Bad Dream",
  15025. height: math.unit(500, "feet")
  15026. },
  15027. {
  15028. name: "Nightmare",
  15029. height: math.unit(500, "miles")
  15030. },
  15031. ]
  15032. ))
  15033. characterMakers.push(() => makeCharacter(
  15034. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15035. {
  15036. front: {
  15037. height: math.unit(6 + 1 / 12, "feet"),
  15038. weight: math.unit(260, "lb"),
  15039. name: "Front",
  15040. image: {
  15041. source: "./media/characters/zeta/front.svg",
  15042. extra: 1968 / 1889,
  15043. bottom: 0.06
  15044. }
  15045. },
  15046. back: {
  15047. height: math.unit(6 + 1 / 12, "feet"),
  15048. weight: math.unit(260, "lb"),
  15049. name: "Back",
  15050. image: {
  15051. source: "./media/characters/zeta/back.svg",
  15052. extra: 1944 / 1858,
  15053. bottom: 0.03
  15054. }
  15055. },
  15056. hand: {
  15057. height: math.unit(1.112, "feet"),
  15058. name: "Hand",
  15059. image: {
  15060. source: "./media/characters/zeta/hand.svg"
  15061. }
  15062. },
  15063. foot: {
  15064. height: math.unit(1.48, "feet"),
  15065. name: "Foot",
  15066. image: {
  15067. source: "./media/characters/zeta/foot.svg"
  15068. }
  15069. },
  15070. },
  15071. [
  15072. {
  15073. name: "Micro",
  15074. height: math.unit(6, "inches")
  15075. },
  15076. {
  15077. name: "Normal",
  15078. height: math.unit(6 + 1 / 12, "feet"),
  15079. default: true
  15080. },
  15081. {
  15082. name: "Macro",
  15083. height: math.unit(20, "feet")
  15084. },
  15085. ]
  15086. ))
  15087. characterMakers.push(() => makeCharacter(
  15088. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15089. {
  15090. front: {
  15091. height: math.unit(6, "feet"),
  15092. weight: math.unit(150, "lb"),
  15093. name: "Front",
  15094. image: {
  15095. source: "./media/characters/jamie-larsen/front.svg",
  15096. extra: 962 / 933,
  15097. bottom: 0.02
  15098. }
  15099. },
  15100. back: {
  15101. height: math.unit(6, "feet"),
  15102. weight: math.unit(150, "lb"),
  15103. name: "Back",
  15104. image: {
  15105. source: "./media/characters/jamie-larsen/back.svg",
  15106. extra: 997 / 946
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Macro",
  15113. height: math.unit(28 + 7 / 12, "feet"),
  15114. default: true
  15115. },
  15116. {
  15117. name: "Macro+",
  15118. height: math.unit(180, "feet")
  15119. },
  15120. {
  15121. name: "Megamacro",
  15122. height: math.unit(10, "miles")
  15123. },
  15124. {
  15125. name: "Gigamacro",
  15126. height: math.unit(200000, "miles")
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15132. {
  15133. front: {
  15134. height: math.unit(6, "feet"),
  15135. weight: math.unit(120, "lb"),
  15136. name: "Front",
  15137. image: {
  15138. source: "./media/characters/vance/front.svg",
  15139. extra: 1980 / 1890,
  15140. bottom: 0.09
  15141. }
  15142. },
  15143. back: {
  15144. height: math.unit(6, "feet"),
  15145. weight: math.unit(120, "lb"),
  15146. name: "Back",
  15147. image: {
  15148. source: "./media/characters/vance/back.svg",
  15149. extra: 2081 / 1994,
  15150. bottom: 0.014
  15151. }
  15152. },
  15153. hand: {
  15154. height: math.unit(0.88, "feet"),
  15155. name: "Hand",
  15156. image: {
  15157. source: "./media/characters/vance/hand.svg"
  15158. }
  15159. },
  15160. foot: {
  15161. height: math.unit(0.64, "feet"),
  15162. name: "Foot",
  15163. image: {
  15164. source: "./media/characters/vance/foot.svg"
  15165. }
  15166. },
  15167. },
  15168. [
  15169. {
  15170. name: "Small",
  15171. height: math.unit(90, "feet"),
  15172. default: true
  15173. },
  15174. {
  15175. name: "Macro",
  15176. height: math.unit(100, "meters")
  15177. },
  15178. {
  15179. name: "Megamacro",
  15180. height: math.unit(15, "miles")
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(6, "feet"),
  15189. weight: math.unit(180, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/xochitl/front.svg",
  15193. extra: 2297 / 2261,
  15194. bottom: 0.065
  15195. }
  15196. },
  15197. back: {
  15198. height: math.unit(6, "feet"),
  15199. weight: math.unit(180, "lb"),
  15200. name: "Back",
  15201. image: {
  15202. source: "./media/characters/xochitl/back.svg",
  15203. extra: 2386 / 2354,
  15204. bottom: 0.01
  15205. }
  15206. },
  15207. foot: {
  15208. height: math.unit(6 / 5 * 1.15, "feet"),
  15209. weight: math.unit(150, "lb"),
  15210. name: "Foot",
  15211. image: {
  15212. source: "./media/characters/xochitl/foot.svg"
  15213. }
  15214. },
  15215. },
  15216. [
  15217. {
  15218. name: "Macro",
  15219. height: math.unit(80, "feet")
  15220. },
  15221. {
  15222. name: "Macro+",
  15223. height: math.unit(400, "feet"),
  15224. default: true
  15225. },
  15226. {
  15227. name: "Gigamacro",
  15228. height: math.unit(80000, "miles")
  15229. },
  15230. {
  15231. name: "Gigamacro+",
  15232. height: math.unit(400000, "miles")
  15233. },
  15234. {
  15235. name: "Teramacro",
  15236. height: math.unit(300, "AU")
  15237. },
  15238. ]
  15239. ))
  15240. characterMakers.push(() => makeCharacter(
  15241. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15242. {
  15243. front: {
  15244. height: math.unit(6, "feet"),
  15245. weight: math.unit(150, "lb"),
  15246. name: "Front",
  15247. image: {
  15248. source: "./media/characters/vincent/front.svg",
  15249. extra: 1130 / 1080,
  15250. bottom: 0.055
  15251. }
  15252. },
  15253. beak: {
  15254. height: math.unit(6 * 0.1, "feet"),
  15255. name: "Beak",
  15256. image: {
  15257. source: "./media/characters/vincent/beak.svg"
  15258. }
  15259. },
  15260. hand: {
  15261. height: math.unit(6 * 0.85, "feet"),
  15262. weight: math.unit(150, "lb"),
  15263. name: "Hand",
  15264. image: {
  15265. source: "./media/characters/vincent/hand.svg"
  15266. }
  15267. },
  15268. foot: {
  15269. height: math.unit(6 * 0.19, "feet"),
  15270. weight: math.unit(150, "lb"),
  15271. name: "Foot",
  15272. image: {
  15273. source: "./media/characters/vincent/foot.svg"
  15274. }
  15275. },
  15276. },
  15277. [
  15278. {
  15279. name: "Base",
  15280. height: math.unit(6 + 5 / 12, "feet"),
  15281. default: true
  15282. },
  15283. {
  15284. name: "Macro",
  15285. height: math.unit(300, "feet")
  15286. },
  15287. {
  15288. name: "Megamacro",
  15289. height: math.unit(2, "miles")
  15290. },
  15291. {
  15292. name: "Gigamacro",
  15293. height: math.unit(1000, "miles")
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(2, "meters"),
  15302. weight: math.unit(500, "kg"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/coatl/front.svg",
  15306. extra: 3948 / 3500,
  15307. bottom: 0.082
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(4, "meters")
  15315. },
  15316. {
  15317. name: "Macro",
  15318. height: math.unit(100, "meters"),
  15319. default: true
  15320. },
  15321. {
  15322. name: "Macro+",
  15323. height: math.unit(300, "meters")
  15324. },
  15325. {
  15326. name: "Megamacro",
  15327. height: math.unit(3, "gigameters")
  15328. },
  15329. {
  15330. name: "Megamacro+",
  15331. height: math.unit(300, "terameters")
  15332. },
  15333. {
  15334. name: "Megamacro++",
  15335. height: math.unit(3, "lightyears")
  15336. },
  15337. ]
  15338. ))
  15339. characterMakers.push(() => makeCharacter(
  15340. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15341. {
  15342. front: {
  15343. height: math.unit(6, "feet"),
  15344. weight: math.unit(50, "kg"),
  15345. name: "front",
  15346. image: {
  15347. source: "./media/characters/shiroryu/front.svg",
  15348. extra: 1990 / 1935
  15349. }
  15350. },
  15351. },
  15352. [
  15353. {
  15354. name: "Mortal Mingling",
  15355. height: math.unit(3, "meters")
  15356. },
  15357. {
  15358. name: "Kaiju-ish",
  15359. height: math.unit(250, "meters")
  15360. },
  15361. {
  15362. name: "Somewhat Godly",
  15363. height: math.unit(400, "km"),
  15364. default: true
  15365. },
  15366. {
  15367. name: "Planetary",
  15368. height: math.unit(300, "megameters")
  15369. },
  15370. {
  15371. name: "Galaxy-dwarfing",
  15372. height: math.unit(450, "kiloparsecs")
  15373. },
  15374. {
  15375. name: "Universe Eater",
  15376. height: math.unit(150, "gigaparsecs")
  15377. },
  15378. {
  15379. name: "Almost Immeasurable",
  15380. height: math.unit(1.3e266, "yottaparsecs")
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(150, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/umeko/front.svg",
  15393. extra: 1,
  15394. bottom: 0.019
  15395. }
  15396. },
  15397. frontArmored: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(150, "lb"),
  15400. name: "Front (Armored)",
  15401. image: {
  15402. source: "./media/characters/umeko/front-armored.svg",
  15403. extra: 1,
  15404. bottom: 0.021
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Macro",
  15411. height: math.unit(220, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Guardian Dragon",
  15416. height: math.unit(50, "miles")
  15417. },
  15418. {
  15419. name: "Cosmic",
  15420. height: math.unit(800000, "miles")
  15421. },
  15422. ]
  15423. ))
  15424. characterMakers.push(() => makeCharacter(
  15425. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15426. {
  15427. front: {
  15428. height: math.unit(6, "feet"),
  15429. weight: math.unit(150, "lb"),
  15430. name: "Front",
  15431. image: {
  15432. source: "./media/characters/cassidy/front.svg",
  15433. extra: 810/808,
  15434. bottom: 41/851
  15435. }
  15436. },
  15437. },
  15438. [
  15439. {
  15440. name: "Canon Height",
  15441. height: math.unit(120, "feet"),
  15442. default: true
  15443. },
  15444. {
  15445. name: "Macro+",
  15446. height: math.unit(400, "feet")
  15447. },
  15448. {
  15449. name: "Macro++",
  15450. height: math.unit(4000, "feet")
  15451. },
  15452. {
  15453. name: "Megamacro",
  15454. height: math.unit(3, "miles")
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(6, "feet"),
  15463. weight: math.unit(150, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/isaac/front.svg",
  15467. extra: 896 / 815,
  15468. bottom: 0.11
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Human Size",
  15475. height: math.unit(8, "feet"),
  15476. default: true
  15477. },
  15478. {
  15479. name: "Macro",
  15480. height: math.unit(400, "feet")
  15481. },
  15482. {
  15483. name: "Megamacro",
  15484. height: math.unit(50, "miles")
  15485. },
  15486. {
  15487. name: "Canon Height",
  15488. height: math.unit(200, "AU")
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(6, "feet"),
  15497. weight: math.unit(72, "kg"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/sleekit/front.svg",
  15501. extra: 4693 / 4487,
  15502. bottom: 0.012
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Minimum Height",
  15509. height: math.unit(10, "meters")
  15510. },
  15511. {
  15512. name: "Smaller",
  15513. height: math.unit(25, "meters")
  15514. },
  15515. {
  15516. name: "Larger",
  15517. height: math.unit(38, "meters"),
  15518. default: true
  15519. },
  15520. {
  15521. name: "Maximum height",
  15522. height: math.unit(100, "meters")
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(6, "feet"),
  15531. weight: math.unit(150, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/nillia/front.svg",
  15535. extra: 2195 / 2037,
  15536. bottom: 0.005
  15537. }
  15538. },
  15539. back: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(150, "lb"),
  15542. name: "Back",
  15543. image: {
  15544. source: "./media/characters/nillia/back.svg",
  15545. extra: 2195 / 2037,
  15546. bottom: 0.005
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Canon Height",
  15553. height: math.unit(489, "feet"),
  15554. default: true
  15555. }
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/mesmyriza/front.svg",
  15567. extra: 2067 / 1784,
  15568. bottom: 0.035
  15569. }
  15570. },
  15571. foot: {
  15572. height: math.unit(6 / (250 / 35), "feet"),
  15573. name: "Foot",
  15574. image: {
  15575. source: "./media/characters/mesmyriza/foot.svg"
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Macro",
  15582. height: math.unit(457, "meters"),
  15583. default: true
  15584. },
  15585. {
  15586. name: "Megamacro",
  15587. height: math.unit(8, "megameters")
  15588. },
  15589. ]
  15590. ))
  15591. characterMakers.push(() => makeCharacter(
  15592. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15593. {
  15594. front: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(250, "lb"),
  15597. name: "Front",
  15598. image: {
  15599. source: "./media/characters/saudade/front.svg",
  15600. extra: 1172 / 1139,
  15601. bottom: 0.035
  15602. }
  15603. },
  15604. },
  15605. [
  15606. {
  15607. name: "Micro",
  15608. height: math.unit(3, "inches")
  15609. },
  15610. {
  15611. name: "Normal",
  15612. height: math.unit(6, "feet"),
  15613. default: true
  15614. },
  15615. {
  15616. name: "Macro",
  15617. height: math.unit(50, "feet")
  15618. },
  15619. {
  15620. name: "Megamacro",
  15621. height: math.unit(2800, "feet")
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15627. {
  15628. front: {
  15629. height: math.unit(5 + 4 / 12, "feet"),
  15630. weight: math.unit(100, "lb"),
  15631. name: "Front",
  15632. image: {
  15633. source: "./media/characters/keireer/front.svg",
  15634. extra: 716 / 666,
  15635. bottom: 0.05
  15636. }
  15637. },
  15638. },
  15639. [
  15640. {
  15641. name: "Normal",
  15642. height: math.unit(5 + 4 / 12, "feet"),
  15643. default: true
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15649. {
  15650. front: {
  15651. height: math.unit(5.5, "feet"),
  15652. weight: math.unit(90, "kg"),
  15653. name: "Front",
  15654. image: {
  15655. source: "./media/characters/mirja/front.svg",
  15656. extra: 1452/1262,
  15657. bottom: 67/1519
  15658. }
  15659. },
  15660. frontDressed: {
  15661. height: math.unit(5.5, "feet"),
  15662. weight: math.unit(90, "lb"),
  15663. name: "Front (Dressed)",
  15664. image: {
  15665. source: "./media/characters/mirja/dressed.svg",
  15666. extra: 1452/1262,
  15667. bottom: 67/1519
  15668. }
  15669. },
  15670. back: {
  15671. height: math.unit(6, "feet"),
  15672. weight: math.unit(90, "lb"),
  15673. name: "Back",
  15674. image: {
  15675. source: "./media/characters/mirja/back.svg",
  15676. extra: 1892/1795,
  15677. bottom: 48/1940
  15678. }
  15679. },
  15680. maw: {
  15681. height: math.unit(1.312, "feet"),
  15682. name: "Maw",
  15683. image: {
  15684. source: "./media/characters/mirja/maw.svg"
  15685. }
  15686. },
  15687. paw: {
  15688. height: math.unit(1.15, "feet"),
  15689. name: "Paw",
  15690. image: {
  15691. source: "./media/characters/mirja/paw.svg"
  15692. }
  15693. },
  15694. },
  15695. [
  15696. {
  15697. name: "\"Incognito\"",
  15698. height: math.unit(3, "meters")
  15699. },
  15700. {
  15701. name: "Strolling Size",
  15702. height: math.unit(15, "km")
  15703. },
  15704. {
  15705. name: "Larger Strolling Size",
  15706. height: math.unit(400, "km")
  15707. },
  15708. {
  15709. name: "Preferred Size",
  15710. height: math.unit(5000, "km"),
  15711. default: true
  15712. },
  15713. {
  15714. name: "True Size",
  15715. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15716. },
  15717. ]
  15718. ))
  15719. characterMakers.push(() => makeCharacter(
  15720. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15721. {
  15722. front: {
  15723. height: math.unit(15, "feet"),
  15724. weight: math.unit(880, "kg"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/nightraver/front.svg",
  15728. extra: 2444 / 2160,
  15729. bottom: 0.027
  15730. }
  15731. },
  15732. back: {
  15733. height: math.unit(15, "feet"),
  15734. weight: math.unit(880, "kg"),
  15735. name: "Back",
  15736. image: {
  15737. source: "./media/characters/nightraver/back.svg",
  15738. extra: 2309 / 2180,
  15739. bottom: 0.005
  15740. }
  15741. },
  15742. sole: {
  15743. height: math.unit(2.878, "feet"),
  15744. name: "Sole",
  15745. image: {
  15746. source: "./media/characters/nightraver/sole.svg"
  15747. }
  15748. },
  15749. foot: {
  15750. height: math.unit(2.285, "feet"),
  15751. name: "Foot",
  15752. image: {
  15753. source: "./media/characters/nightraver/foot.svg"
  15754. }
  15755. },
  15756. maw: {
  15757. height: math.unit(2.67, "feet"),
  15758. name: "Maw",
  15759. image: {
  15760. source: "./media/characters/nightraver/maw.svg"
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Micro",
  15767. height: math.unit(1, "cm")
  15768. },
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(15, "feet"),
  15772. default: true
  15773. },
  15774. {
  15775. name: "Macro",
  15776. height: math.unit(300, "feet")
  15777. },
  15778. {
  15779. name: "Megamacro",
  15780. height: math.unit(300, "miles")
  15781. },
  15782. {
  15783. name: "Gigamacro",
  15784. height: math.unit(10000, "miles")
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15790. {
  15791. side: {
  15792. height: math.unit(2, "inches"),
  15793. weight: math.unit(5, "grams"),
  15794. name: "Side",
  15795. image: {
  15796. source: "./media/characters/arc/side.svg"
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Micro",
  15803. height: math.unit(2, "inches"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15810. {
  15811. front: {
  15812. height: math.unit(1.1938, "meters"),
  15813. weight: math.unit(54, "kg"),
  15814. name: "Front",
  15815. image: {
  15816. source: "./media/characters/nebula-shahar/front.svg",
  15817. extra: 1642 / 1436,
  15818. bottom: 0.06
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Megamicro",
  15825. height: math.unit(0.3, "mm")
  15826. },
  15827. {
  15828. name: "Micro",
  15829. height: math.unit(3, "cm")
  15830. },
  15831. {
  15832. name: "Normal",
  15833. height: math.unit(138, "cm"),
  15834. default: true
  15835. },
  15836. {
  15837. name: "Macro",
  15838. height: math.unit(30, "m")
  15839. },
  15840. ]
  15841. ))
  15842. characterMakers.push(() => makeCharacter(
  15843. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15844. {
  15845. front: {
  15846. height: math.unit(5.24, "feet"),
  15847. weight: math.unit(150, "lb"),
  15848. name: "Front",
  15849. image: {
  15850. source: "./media/characters/shayla/front.svg",
  15851. extra: 1512 / 1414,
  15852. bottom: 0.01
  15853. }
  15854. },
  15855. back: {
  15856. height: math.unit(5.24, "feet"),
  15857. weight: math.unit(150, "lb"),
  15858. name: "Back",
  15859. image: {
  15860. source: "./media/characters/shayla/back.svg",
  15861. extra: 1512 / 1414
  15862. }
  15863. },
  15864. hand: {
  15865. height: math.unit(0.7781496062992126, "feet"),
  15866. name: "Hand",
  15867. image: {
  15868. source: "./media/characters/shayla/hand.svg"
  15869. }
  15870. },
  15871. foot: {
  15872. height: math.unit(1.4206036745406823, "feet"),
  15873. name: "Foot",
  15874. image: {
  15875. source: "./media/characters/shayla/foot.svg"
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Micro",
  15882. height: math.unit(0.32, "feet")
  15883. },
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(5.24, "feet"),
  15887. default: true
  15888. },
  15889. {
  15890. name: "Macro",
  15891. height: math.unit(492.12, "feet")
  15892. },
  15893. {
  15894. name: "Megamacro",
  15895. height: math.unit(186.41, "miles")
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(2.2, "m"),
  15904. weight: math.unit(120, "kg"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/pia-jr/front.svg",
  15908. extra: 1000 / 970,
  15909. bottom: 0.035
  15910. }
  15911. },
  15912. hand: {
  15913. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15914. name: "Hand",
  15915. image: {
  15916. source: "./media/characters/pia-jr/hand.svg"
  15917. }
  15918. },
  15919. paw: {
  15920. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15921. name: "Paw",
  15922. image: {
  15923. source: "./media/characters/pia-jr/paw.svg"
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Micro",
  15930. height: math.unit(1.2, "cm")
  15931. },
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(2.2, "m"),
  15935. default: true
  15936. },
  15937. {
  15938. name: "Macro",
  15939. height: math.unit(180, "m")
  15940. },
  15941. {
  15942. name: "Megamacro",
  15943. height: math.unit(420, "km")
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(2, "m"),
  15952. weight: math.unit(115, "kg"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/pia-sr/front.svg",
  15956. extra: 760 / 730,
  15957. bottom: 0.015
  15958. }
  15959. },
  15960. back: {
  15961. height: math.unit(2, "m"),
  15962. weight: math.unit(115, "kg"),
  15963. name: "Back",
  15964. image: {
  15965. source: "./media/characters/pia-sr/back.svg",
  15966. extra: 760 / 730,
  15967. bottom: 0.01
  15968. }
  15969. },
  15970. hand: {
  15971. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15972. name: "Hand",
  15973. image: {
  15974. source: "./media/characters/pia-sr/hand.svg"
  15975. }
  15976. },
  15977. foot: {
  15978. height: math.unit(1.83, "feet"),
  15979. name: "Foot",
  15980. image: {
  15981. source: "./media/characters/pia-sr/foot.svg"
  15982. }
  15983. },
  15984. },
  15985. [
  15986. {
  15987. name: "Micro",
  15988. height: math.unit(88, "mm")
  15989. },
  15990. {
  15991. name: "Normal",
  15992. height: math.unit(2, "m"),
  15993. default: true
  15994. },
  15995. {
  15996. name: "Macro",
  15997. height: math.unit(200, "m")
  15998. },
  15999. {
  16000. name: "Megamacro",
  16001. height: math.unit(420, "km")
  16002. },
  16003. ]
  16004. ))
  16005. characterMakers.push(() => makeCharacter(
  16006. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16007. {
  16008. front: {
  16009. height: math.unit(8 + 2 / 12, "feet"),
  16010. weight: math.unit(300, "lb"),
  16011. name: "Front",
  16012. image: {
  16013. source: "./media/characters/kibibyte/front.svg",
  16014. extra: 2221 / 2098,
  16015. bottom: 0.04
  16016. }
  16017. },
  16018. },
  16019. [
  16020. {
  16021. name: "Normal",
  16022. height: math.unit(8 + 2 / 12, "feet"),
  16023. default: true
  16024. },
  16025. {
  16026. name: "Socialable Macro",
  16027. height: math.unit(50, "feet")
  16028. },
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(300, "feet")
  16032. },
  16033. {
  16034. name: "Megamacro",
  16035. height: math.unit(500, "miles")
  16036. },
  16037. ]
  16038. ))
  16039. characterMakers.push(() => makeCharacter(
  16040. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16041. {
  16042. front: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(150, "lb"),
  16045. name: "Front",
  16046. image: {
  16047. source: "./media/characters/felix/front.svg",
  16048. extra: 762 / 722,
  16049. bottom: 0.02
  16050. }
  16051. },
  16052. frontClothed: {
  16053. height: math.unit(6, "feet"),
  16054. weight: math.unit(150, "lb"),
  16055. name: "Front (Clothed)",
  16056. image: {
  16057. source: "./media/characters/felix/front-clothed.svg",
  16058. extra: 762 / 722,
  16059. bottom: 0.02
  16060. }
  16061. },
  16062. },
  16063. [
  16064. {
  16065. name: "Normal",
  16066. height: math.unit(6 + 8 / 12, "feet"),
  16067. default: true
  16068. },
  16069. {
  16070. name: "Macro",
  16071. height: math.unit(2600, "feet")
  16072. },
  16073. {
  16074. name: "Megamacro",
  16075. height: math.unit(450, "miles")
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16081. {
  16082. front: {
  16083. height: math.unit(6 + 1 / 12, "feet"),
  16084. weight: math.unit(250, "lb"),
  16085. name: "Front",
  16086. image: {
  16087. source: "./media/characters/tobo/front.svg",
  16088. extra: 608 / 586,
  16089. bottom: 0.023
  16090. }
  16091. },
  16092. back: {
  16093. height: math.unit(6 + 1 / 12, "feet"),
  16094. weight: math.unit(250, "lb"),
  16095. name: "Back",
  16096. image: {
  16097. source: "./media/characters/tobo/back.svg",
  16098. extra: 608 / 586
  16099. }
  16100. },
  16101. },
  16102. [
  16103. {
  16104. name: "Nano",
  16105. height: math.unit(2, "nm")
  16106. },
  16107. {
  16108. name: "Megamicro",
  16109. height: math.unit(0.1, "mm")
  16110. },
  16111. {
  16112. name: "Micro",
  16113. height: math.unit(1, "inch"),
  16114. default: true
  16115. },
  16116. {
  16117. name: "Human-sized",
  16118. height: math.unit(6 + 1 / 12, "feet")
  16119. },
  16120. {
  16121. name: "Macro",
  16122. height: math.unit(250, "feet")
  16123. },
  16124. {
  16125. name: "Megamacro",
  16126. height: math.unit(75, "miles")
  16127. },
  16128. {
  16129. name: "Texas-sized",
  16130. height: math.unit(750, "miles")
  16131. },
  16132. {
  16133. name: "Teramacro",
  16134. height: math.unit(50000, "miles")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6, "feet"),
  16143. weight: math.unit(269, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/danny-kapowsky/front.svg",
  16147. extra: 766 / 736,
  16148. bottom: 0.044
  16149. }
  16150. },
  16151. back: {
  16152. height: math.unit(6, "feet"),
  16153. weight: math.unit(269, "lb"),
  16154. name: "Back",
  16155. image: {
  16156. source: "./media/characters/danny-kapowsky/back.svg",
  16157. extra: 797 / 760,
  16158. bottom: 0.025
  16159. }
  16160. },
  16161. },
  16162. [
  16163. {
  16164. name: "Macro",
  16165. height: math.unit(150, "feet"),
  16166. default: true
  16167. },
  16168. {
  16169. name: "Macro+",
  16170. height: math.unit(200, "feet")
  16171. },
  16172. {
  16173. name: "Macro++",
  16174. height: math.unit(300, "feet")
  16175. },
  16176. {
  16177. name: "Macro+++",
  16178. height: math.unit(400, "feet")
  16179. },
  16180. ]
  16181. ))
  16182. characterMakers.push(() => makeCharacter(
  16183. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16184. {
  16185. side: {
  16186. height: math.unit(6, "feet"),
  16187. weight: math.unit(170, "lb"),
  16188. name: "Side",
  16189. image: {
  16190. source: "./media/characters/finn/side.svg",
  16191. extra: 1953 / 1807,
  16192. bottom: 0.057
  16193. }
  16194. },
  16195. },
  16196. [
  16197. {
  16198. name: "Megamacro",
  16199. height: math.unit(14445, "feet"),
  16200. default: true
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(5 + 6 / 12, "feet"),
  16209. weight: math.unit(125, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/roy/front.svg",
  16213. extra: 1,
  16214. bottom: 0.11
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Micro",
  16221. height: math.unit(3, "inches"),
  16222. default: true
  16223. },
  16224. {
  16225. name: "Normal",
  16226. height: math.unit(5 + 6 / 12, "feet")
  16227. },
  16228. {
  16229. name: "Lesser Macro",
  16230. height: math.unit(60, "feet")
  16231. },
  16232. {
  16233. name: "Greater Macro",
  16234. height: math.unit(120, "feet")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(100, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/aevsivs/front.svg",
  16247. extra: 1,
  16248. bottom: 0.03
  16249. }
  16250. },
  16251. back: {
  16252. height: math.unit(6, "feet"),
  16253. weight: math.unit(100, "lb"),
  16254. name: "Back",
  16255. image: {
  16256. source: "./media/characters/aevsivs/back.svg"
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Micro",
  16263. height: math.unit(2, "inches"),
  16264. default: true
  16265. },
  16266. {
  16267. name: "Normal",
  16268. height: math.unit(5, "feet")
  16269. },
  16270. ]
  16271. ))
  16272. characterMakers.push(() => makeCharacter(
  16273. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16274. {
  16275. front: {
  16276. height: math.unit(5 + 7 / 12, "feet"),
  16277. weight: math.unit(159, "lb"),
  16278. name: "Front",
  16279. image: {
  16280. source: "./media/characters/hildegard/front.svg",
  16281. extra: 289 / 269,
  16282. bottom: 7.63 / 297.8
  16283. }
  16284. },
  16285. back: {
  16286. height: math.unit(5 + 7 / 12, "feet"),
  16287. weight: math.unit(159, "lb"),
  16288. name: "Back",
  16289. image: {
  16290. source: "./media/characters/hildegard/back.svg",
  16291. extra: 280 / 260,
  16292. bottom: 2.3 / 282
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Normal",
  16299. height: math.unit(5 + 7 / 12, "feet"),
  16300. default: true
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16306. {
  16307. bernard: {
  16308. height: math.unit(2 + 7 / 12, "feet"),
  16309. weight: math.unit(66, "lb"),
  16310. name: "Bernard",
  16311. rename: true,
  16312. image: {
  16313. source: "./media/characters/bernard-wilder/bernard.svg",
  16314. extra: 192 / 128,
  16315. bottom: 0.05
  16316. }
  16317. },
  16318. wilder: {
  16319. height: math.unit(5 + 8 / 12, "feet"),
  16320. weight: math.unit(143, "lb"),
  16321. name: "Wilder",
  16322. rename: true,
  16323. image: {
  16324. source: "./media/characters/bernard-wilder/wilder.svg",
  16325. extra: 361 / 312,
  16326. bottom: 0.02
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(2 + 7 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16340. {
  16341. anthro: {
  16342. height: math.unit(6 + 1 / 12, "feet"),
  16343. weight: math.unit(155, "lb"),
  16344. name: "Anthro",
  16345. image: {
  16346. source: "./media/characters/hearth/anthro.svg",
  16347. extra: 1178/1136,
  16348. bottom: 28/1206
  16349. }
  16350. },
  16351. feral: {
  16352. height: math.unit(3.78, "feet"),
  16353. weight: math.unit(35, "kg"),
  16354. name: "Feral",
  16355. image: {
  16356. source: "./media/characters/hearth/feral.svg",
  16357. extra: 153 / 135,
  16358. bottom: 0.03
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(6 + 1 / 12, "feet"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16372. {
  16373. front: {
  16374. height: math.unit(6, "feet"),
  16375. weight: math.unit(182, "lb"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/ingrid/front.svg",
  16379. extra: 294 / 268,
  16380. bottom: 0.027
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(6, "feet"),
  16388. default: true
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16394. {
  16395. eevee: {
  16396. height: math.unit(2 + 10 / 12, "feet"),
  16397. weight: math.unit(86, "lb"),
  16398. name: "Malgam",
  16399. image: {
  16400. source: "./media/characters/malgam/eevee.svg",
  16401. extra: 952/784,
  16402. bottom: 38/990
  16403. }
  16404. },
  16405. sylveon: {
  16406. height: math.unit(4, "feet"),
  16407. weight: math.unit(101, "lb"),
  16408. name: "Future Malgam",
  16409. rename: true,
  16410. image: {
  16411. source: "./media/characters/malgam/sylveon.svg",
  16412. extra: 371 / 325,
  16413. bottom: 0.015
  16414. }
  16415. },
  16416. gigantamax: {
  16417. height: math.unit(50, "feet"),
  16418. name: "Gigantamax Malgam",
  16419. rename: true,
  16420. image: {
  16421. source: "./media/characters/malgam/gigantamax.svg"
  16422. }
  16423. },
  16424. },
  16425. [
  16426. {
  16427. name: "Normal",
  16428. height: math.unit(2 + 10 / 12, "feet"),
  16429. default: true
  16430. },
  16431. ]
  16432. ))
  16433. characterMakers.push(() => makeCharacter(
  16434. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16435. {
  16436. front: {
  16437. height: math.unit(5 + 11 / 12, "feet"),
  16438. weight: math.unit(188, "lb"),
  16439. name: "Front",
  16440. image: {
  16441. source: "./media/characters/fleur/front.svg",
  16442. extra: 309 / 283,
  16443. bottom: 0.007
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Normal",
  16450. height: math.unit(5 + 11 / 12, "feet"),
  16451. default: true
  16452. },
  16453. ]
  16454. ))
  16455. characterMakers.push(() => makeCharacter(
  16456. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16457. {
  16458. front: {
  16459. height: math.unit(5 + 4 / 12, "feet"),
  16460. weight: math.unit(122, "lb"),
  16461. name: "Front",
  16462. image: {
  16463. source: "./media/characters/jude/front.svg",
  16464. extra: 288 / 273,
  16465. bottom: 0.03
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(5 + 4 / 12, "feet"),
  16473. default: true
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16479. {
  16480. front: {
  16481. height: math.unit(5 + 11 / 12, "feet"),
  16482. weight: math.unit(190, "lb"),
  16483. name: "Front",
  16484. image: {
  16485. source: "./media/characters/seara/front.svg",
  16486. extra: 1,
  16487. bottom: 0.05
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(5 + 11 / 12, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(16 + 5 / 12, "feet"),
  16504. weight: math.unit(524, "lb"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/caspian-lugia/front.svg",
  16508. extra: 1,
  16509. bottom: 0.04
  16510. }
  16511. },
  16512. },
  16513. [
  16514. {
  16515. name: "Normal",
  16516. height: math.unit(16 + 5 / 12, "feet"),
  16517. default: true
  16518. },
  16519. ]
  16520. ))
  16521. characterMakers.push(() => makeCharacter(
  16522. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16523. {
  16524. front: {
  16525. height: math.unit(5 + 7 / 12, "feet"),
  16526. weight: math.unit(170, "lb"),
  16527. name: "Front",
  16528. image: {
  16529. source: "./media/characters/mika/front.svg",
  16530. extra: 1,
  16531. bottom: 0.016
  16532. }
  16533. },
  16534. },
  16535. [
  16536. {
  16537. name: "Normal",
  16538. height: math.unit(5 + 7 / 12, "feet"),
  16539. default: true
  16540. },
  16541. ]
  16542. ))
  16543. characterMakers.push(() => makeCharacter(
  16544. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16545. {
  16546. front: {
  16547. height: math.unit(6 + 2 / 12, "feet"),
  16548. weight: math.unit(268, "lb"),
  16549. name: "Front",
  16550. image: {
  16551. source: "./media/characters/sol/front.svg",
  16552. extra: 247 / 231,
  16553. bottom: 0.05
  16554. }
  16555. },
  16556. },
  16557. [
  16558. {
  16559. name: "Normal",
  16560. height: math.unit(6 + 2 / 12, "feet"),
  16561. default: true
  16562. },
  16563. ]
  16564. ))
  16565. characterMakers.push(() => makeCharacter(
  16566. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16567. {
  16568. buizel: {
  16569. height: math.unit(2 + 5 / 12, "feet"),
  16570. weight: math.unit(87, "lb"),
  16571. name: "Front",
  16572. image: {
  16573. source: "./media/characters/umiko/buizel.svg",
  16574. extra: 172 / 157,
  16575. bottom: 0.01
  16576. },
  16577. form: "buizel",
  16578. default: true
  16579. },
  16580. floatzel: {
  16581. height: math.unit(5 + 9 / 12, "feet"),
  16582. weight: math.unit(250, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/umiko/floatzel.svg",
  16586. extra: 1076/1006,
  16587. bottom: 15/1091
  16588. },
  16589. form: "floatzel",
  16590. default: true
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Normal",
  16596. height: math.unit(2 + 5 / 12, "feet"),
  16597. form: "buizel",
  16598. default: true
  16599. },
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(5 + 9 / 12, "feet"),
  16603. form: "floatzel",
  16604. default: true
  16605. },
  16606. ],
  16607. {
  16608. "buizel": {
  16609. name: "Buizel"
  16610. },
  16611. "floatzel": {
  16612. name: "Floatzel",
  16613. default: true
  16614. }
  16615. }
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(6 + 2 / 12, "feet"),
  16622. weight: math.unit(146, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/iliac/front.svg",
  16626. extra: 389 / 365,
  16627. bottom: 0.035
  16628. }
  16629. },
  16630. },
  16631. [
  16632. {
  16633. name: "Normal",
  16634. height: math.unit(6 + 2 / 12, "feet"),
  16635. default: true
  16636. },
  16637. ]
  16638. ))
  16639. characterMakers.push(() => makeCharacter(
  16640. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16641. {
  16642. front: {
  16643. height: math.unit(6, "feet"),
  16644. weight: math.unit(170, "lb"),
  16645. name: "Front",
  16646. image: {
  16647. source: "./media/characters/topaz/front.svg",
  16648. extra: 317 / 303,
  16649. bottom: 0.055
  16650. }
  16651. },
  16652. },
  16653. [
  16654. {
  16655. name: "Normal",
  16656. height: math.unit(6, "feet"),
  16657. default: true
  16658. },
  16659. ]
  16660. ))
  16661. characterMakers.push(() => makeCharacter(
  16662. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16663. {
  16664. front: {
  16665. height: math.unit(5 + 11 / 12, "feet"),
  16666. weight: math.unit(144, "lb"),
  16667. name: "Front",
  16668. image: {
  16669. source: "./media/characters/gabriel/front.svg",
  16670. extra: 285 / 262,
  16671. bottom: 0.004
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(5 + 11 / 12, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16685. {
  16686. side: {
  16687. height: math.unit(6 + 5 / 12, "feet"),
  16688. weight: math.unit(300, "lb"),
  16689. name: "Side",
  16690. image: {
  16691. source: "./media/characters/tempest-suicune/side.svg",
  16692. extra: 195 / 154,
  16693. bottom: 0.04
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(6 + 5 / 12, "feet"),
  16701. default: true
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(7 + 2 / 12, "feet"),
  16710. weight: math.unit(322, "lb"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/vulcan/front.svg",
  16714. extra: 154 / 147,
  16715. bottom: 0.04
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(7 + 2 / 12, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(5 + 10 / 12, "feet"),
  16732. weight: math.unit(264, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/gault/front.svg",
  16736. extra: 161 / 140,
  16737. bottom: 0.028
  16738. }
  16739. },
  16740. },
  16741. [
  16742. {
  16743. name: "Normal",
  16744. height: math.unit(5 + 10 / 12, "feet"),
  16745. default: true
  16746. },
  16747. ]
  16748. ))
  16749. characterMakers.push(() => makeCharacter(
  16750. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16751. {
  16752. front: {
  16753. height: math.unit(6, "feet"),
  16754. weight: math.unit(150, "lb"),
  16755. name: "Front",
  16756. image: {
  16757. source: "./media/characters/shard/front.svg",
  16758. extra: 273 / 238,
  16759. bottom: 0.02
  16760. }
  16761. },
  16762. },
  16763. [
  16764. {
  16765. name: "Normal",
  16766. height: math.unit(3 + 6 / 12, "feet"),
  16767. default: true
  16768. },
  16769. ]
  16770. ))
  16771. characterMakers.push(() => makeCharacter(
  16772. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16773. {
  16774. front: {
  16775. height: math.unit(5 + 11 / 12, "feet"),
  16776. weight: math.unit(146, "lb"),
  16777. name: "Front",
  16778. image: {
  16779. source: "./media/characters/ashe/front.svg",
  16780. extra: 400 / 373,
  16781. bottom: 0.01
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Normal",
  16788. height: math.unit(5 + 11 / 12, "feet"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(5 + 5 / 12, "feet"),
  16798. weight: math.unit(135, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/beatrix/front.svg",
  16802. extra: 392 / 379,
  16803. bottom: 0.01
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Normal",
  16810. height: math.unit(6, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6 + 2/12, "feet"),
  16820. weight: math.unit(135, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/ignatius/front.svg",
  16824. extra: 1380/1259,
  16825. bottom: 27/1407
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Normal",
  16832. height: math.unit(6 + 2/12, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6 + 2 / 12, "feet"),
  16842. weight: math.unit(138, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/mei-li/front.svg",
  16846. extra: 237 / 229,
  16847. bottom: 0.03
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(6 + 2 / 12, "feet"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16861. {
  16862. front: {
  16863. height: math.unit(2 + 4 / 12, "feet"),
  16864. weight: math.unit(62, "lb"),
  16865. name: "Front",
  16866. image: {
  16867. source: "./media/characters/puru/front.svg",
  16868. extra: 206 / 149,
  16869. bottom: 0.06
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(2 + 4 / 12, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16883. {
  16884. anthro: {
  16885. height: math.unit(5 + 8/12, "feet"),
  16886. weight: math.unit(200, "lb"),
  16887. energyNeed: math.unit(2000, "kcal"),
  16888. name: "Anthro",
  16889. image: {
  16890. source: "./media/characters/kee/anthro.svg",
  16891. extra: 3251/3184,
  16892. bottom: 250/3501
  16893. }
  16894. },
  16895. taur: {
  16896. height: math.unit(11, "feet"),
  16897. weight: math.unit(500, "lb"),
  16898. energyNeed: math.unit(5000, "kcal"),
  16899. name: "Taur",
  16900. image: {
  16901. source: "./media/characters/kee/taur.svg",
  16902. extra: 1362/1320,
  16903. bottom: 83/1445
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(5 + 8/12, "feet"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "Macro",
  16915. height: math.unit(35, "feet")
  16916. },
  16917. ]
  16918. ))
  16919. characterMakers.push(() => makeCharacter(
  16920. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16921. {
  16922. anthro: {
  16923. height: math.unit(7, "feet"),
  16924. weight: math.unit(190, "lb"),
  16925. name: "Anthro",
  16926. image: {
  16927. source: "./media/characters/cobalt-dracha/anthro.svg",
  16928. extra: 231 / 225,
  16929. bottom: 0.04
  16930. }
  16931. },
  16932. feral: {
  16933. height: math.unit(9 + 7 / 12, "feet"),
  16934. weight: math.unit(294, "lb"),
  16935. name: "Feral",
  16936. image: {
  16937. source: "./media/characters/cobalt-dracha/feral.svg",
  16938. extra: 692 / 633,
  16939. bottom: 0.05
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Normal",
  16946. height: math.unit(7, "feet"),
  16947. default: true
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16953. {
  16954. fallen: {
  16955. height: math.unit(11 + 8 / 12, "feet"),
  16956. weight: math.unit(485, "lb"),
  16957. name: "Java (Fallen)",
  16958. rename: true,
  16959. image: {
  16960. source: "./media/characters/java/fallen.svg",
  16961. extra: 226 / 208,
  16962. bottom: 0.005
  16963. }
  16964. },
  16965. godkin: {
  16966. height: math.unit(10 + 6 / 12, "feet"),
  16967. weight: math.unit(328, "lb"),
  16968. name: "Java (Godkin)",
  16969. rename: true,
  16970. image: {
  16971. source: "./media/characters/java/godkin.svg",
  16972. extra: 1104/1068,
  16973. bottom: 36/1140
  16974. }
  16975. },
  16976. },
  16977. [
  16978. {
  16979. name: "Normal",
  16980. height: math.unit(11 + 8 / 12, "feet"),
  16981. default: true
  16982. },
  16983. ]
  16984. ))
  16985. characterMakers.push(() => makeCharacter(
  16986. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16987. {
  16988. front: {
  16989. height: math.unit(5 + 9 / 12, "feet"),
  16990. weight: math.unit(170, "lb"),
  16991. name: "Front",
  16992. image: {
  16993. source: "./media/characters/purna/front.svg",
  16994. extra: 239 / 229,
  16995. bottom: 0.01
  16996. }
  16997. },
  16998. },
  16999. [
  17000. {
  17001. name: "Normal",
  17002. height: math.unit(5 + 9 / 12, "feet"),
  17003. default: true
  17004. },
  17005. ]
  17006. ))
  17007. characterMakers.push(() => makeCharacter(
  17008. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17009. {
  17010. front: {
  17011. height: math.unit(5 + 9 / 12, "feet"),
  17012. weight: math.unit(142, "lb"),
  17013. name: "Front",
  17014. image: {
  17015. source: "./media/characters/kuva/front.svg",
  17016. extra: 281 / 271,
  17017. bottom: 0.006
  17018. }
  17019. },
  17020. },
  17021. [
  17022. {
  17023. name: "Normal",
  17024. height: math.unit(5 + 9 / 12, "feet"),
  17025. default: true
  17026. },
  17027. ]
  17028. ))
  17029. characterMakers.push(() => makeCharacter(
  17030. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17031. {
  17032. anthro: {
  17033. height: math.unit(9 + 2 / 12, "feet"),
  17034. weight: math.unit(270, "lb"),
  17035. name: "Anthro",
  17036. image: {
  17037. source: "./media/characters/embra/anthro.svg",
  17038. extra: 200 / 187,
  17039. bottom: 0.02
  17040. }
  17041. },
  17042. feral: {
  17043. height: math.unit(18 + 8 / 12, "feet"),
  17044. weight: math.unit(576, "lb"),
  17045. name: "Feral",
  17046. image: {
  17047. source: "./media/characters/embra/feral.svg",
  17048. extra: 152 / 137,
  17049. bottom: 0.037
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(9 + 2 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17063. {
  17064. anthro: {
  17065. height: math.unit(10 + 9 / 12, "feet"),
  17066. weight: math.unit(224, "lb"),
  17067. name: "Anthro",
  17068. image: {
  17069. source: "./media/characters/grottos/anthro.svg",
  17070. extra: 350 / 332,
  17071. bottom: 0.045
  17072. }
  17073. },
  17074. feral: {
  17075. height: math.unit(20 + 7 / 12, "feet"),
  17076. weight: math.unit(629, "lb"),
  17077. name: "Feral",
  17078. image: {
  17079. source: "./media/characters/grottos/feral.svg",
  17080. extra: 207 / 190,
  17081. bottom: 0.05
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(10 + 9 / 12, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17095. {
  17096. anthro: {
  17097. height: math.unit(9 + 6 / 12, "feet"),
  17098. weight: math.unit(298, "lb"),
  17099. name: "Anthro",
  17100. image: {
  17101. source: "./media/characters/frifna/anthro.svg",
  17102. extra: 282 / 269,
  17103. bottom: 0.015
  17104. }
  17105. },
  17106. feral: {
  17107. height: math.unit(16 + 2 / 12, "feet"),
  17108. weight: math.unit(624, "lb"),
  17109. name: "Feral",
  17110. image: {
  17111. source: "./media/characters/frifna/feral.svg"
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(9 + 6 / 12, "feet"),
  17119. default: true
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17125. {
  17126. front: {
  17127. height: math.unit(6 + 2 / 12, "feet"),
  17128. weight: math.unit(168, "lb"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/elise/front.svg",
  17132. extra: 276 / 271
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Normal",
  17139. height: math.unit(6 + 2 / 12, "feet"),
  17140. default: true
  17141. },
  17142. ]
  17143. ))
  17144. characterMakers.push(() => makeCharacter(
  17145. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17146. {
  17147. front: {
  17148. height: math.unit(5 + 10 / 12, "feet"),
  17149. weight: math.unit(210, "lb"),
  17150. name: "Front",
  17151. image: {
  17152. source: "./media/characters/glade/front.svg",
  17153. extra: 258 / 247,
  17154. bottom: 0.008
  17155. }
  17156. },
  17157. },
  17158. [
  17159. {
  17160. name: "Normal",
  17161. height: math.unit(5 + 10 / 12, "feet"),
  17162. default: true
  17163. },
  17164. ]
  17165. ))
  17166. characterMakers.push(() => makeCharacter(
  17167. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17168. {
  17169. front: {
  17170. height: math.unit(5 + 10 / 12, "feet"),
  17171. weight: math.unit(129, "lb"),
  17172. name: "Front",
  17173. image: {
  17174. source: "./media/characters/rina/front.svg",
  17175. extra: 266 / 255,
  17176. bottom: 0.005
  17177. }
  17178. },
  17179. },
  17180. [
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(5 + 10 / 12, "feet"),
  17184. default: true
  17185. },
  17186. ]
  17187. ))
  17188. characterMakers.push(() => makeCharacter(
  17189. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17190. {
  17191. front: {
  17192. height: math.unit(6 + 1 / 12, "feet"),
  17193. weight: math.unit(192, "lb"),
  17194. name: "Front",
  17195. image: {
  17196. source: "./media/characters/veronica/front.svg",
  17197. extra: 319 / 309,
  17198. bottom: 0.005
  17199. }
  17200. },
  17201. },
  17202. [
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(6 + 1 / 12, "feet"),
  17206. default: true
  17207. },
  17208. ]
  17209. ))
  17210. characterMakers.push(() => makeCharacter(
  17211. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17212. {
  17213. front: {
  17214. height: math.unit(9 + 3 / 12, "feet"),
  17215. weight: math.unit(1100, "lb"),
  17216. name: "Front",
  17217. image: {
  17218. source: "./media/characters/braxton/front.svg",
  17219. extra: 1057 / 984,
  17220. bottom: 0.05
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(9 + 3 / 12, "feet")
  17228. },
  17229. {
  17230. name: "Giant",
  17231. height: math.unit(300, "feet"),
  17232. default: true
  17233. },
  17234. {
  17235. name: "Macro",
  17236. height: math.unit(700, "feet")
  17237. },
  17238. {
  17239. name: "Megamacro",
  17240. height: math.unit(6000, "feet")
  17241. },
  17242. ]
  17243. ))
  17244. characterMakers.push(() => makeCharacter(
  17245. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17246. {
  17247. front: {
  17248. height: math.unit(6 + 7 / 12, "feet"),
  17249. weight: math.unit(150, "lb"),
  17250. name: "Front",
  17251. image: {
  17252. source: "./media/characters/blue-feyonics/front.svg",
  17253. extra: 1403 / 1306,
  17254. bottom: 0.047
  17255. }
  17256. },
  17257. },
  17258. [
  17259. {
  17260. name: "Normal",
  17261. height: math.unit(6 + 7 / 12, "feet"),
  17262. default: true
  17263. },
  17264. ]
  17265. ))
  17266. characterMakers.push(() => makeCharacter(
  17267. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17268. {
  17269. front: {
  17270. height: math.unit(1.8, "meters"),
  17271. weight: math.unit(60, "kg"),
  17272. name: "Front",
  17273. image: {
  17274. source: "./media/characters/maxwell/front.svg",
  17275. extra: 2060 / 1873
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Micro",
  17282. height: math.unit(1, "mm")
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(1.8, "meter"),
  17287. default: true
  17288. },
  17289. {
  17290. name: "Macro",
  17291. height: math.unit(30, "meters")
  17292. },
  17293. {
  17294. name: "Megamacro",
  17295. height: math.unit(10, "km")
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17301. {
  17302. front: {
  17303. height: math.unit(6, "feet"),
  17304. weight: math.unit(150, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/jack/front.svg",
  17308. extra: 1754 / 1640,
  17309. bottom: 0.01
  17310. }
  17311. },
  17312. },
  17313. [
  17314. {
  17315. name: "Normal",
  17316. height: math.unit(80000, "feet"),
  17317. default: true
  17318. },
  17319. {
  17320. name: "Max size",
  17321. height: math.unit(10, "lightyears")
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17327. {
  17328. urban: {
  17329. height: math.unit(5, "feet"),
  17330. weight: math.unit(240, "lb"),
  17331. name: "Urban",
  17332. image: {
  17333. source: "./media/characters/cafat/urban.svg",
  17334. extra: 1223/1126,
  17335. bottom: 205/1428
  17336. }
  17337. },
  17338. summer: {
  17339. height: math.unit(5, "feet"),
  17340. weight: math.unit(240, "lb"),
  17341. name: "Summer",
  17342. image: {
  17343. source: "./media/characters/cafat/summer.svg",
  17344. extra: 1223/1126,
  17345. bottom: 205/1428
  17346. }
  17347. },
  17348. winter: {
  17349. height: math.unit(5, "feet"),
  17350. weight: math.unit(240, "lb"),
  17351. name: "Winter",
  17352. image: {
  17353. source: "./media/characters/cafat/winter.svg",
  17354. extra: 1223/1126,
  17355. bottom: 205/1428
  17356. }
  17357. },
  17358. lingerie: {
  17359. height: math.unit(5, "feet"),
  17360. weight: math.unit(240, "lb"),
  17361. name: "Lingerie",
  17362. image: {
  17363. source: "./media/characters/cafat/lingerie.svg",
  17364. extra: 1223/1126,
  17365. bottom: 205/1428
  17366. }
  17367. },
  17368. upright: {
  17369. height: math.unit(6.3, "feet"),
  17370. weight: math.unit(240, "lb"),
  17371. name: "Upright",
  17372. image: {
  17373. source: "./media/characters/cafat/upright.svg",
  17374. bottom: 0.01
  17375. }
  17376. },
  17377. uprightFull: {
  17378. height: math.unit(6.3, "feet"),
  17379. weight: math.unit(240, "lb"),
  17380. name: "Upright (Full)",
  17381. image: {
  17382. source: "./media/characters/cafat/upright-full.svg",
  17383. bottom: 0.01
  17384. }
  17385. },
  17386. },
  17387. [
  17388. {
  17389. name: "Small",
  17390. height: math.unit(5, "feet"),
  17391. default: true
  17392. },
  17393. {
  17394. name: "Large",
  17395. height: math.unit(13, "feet")
  17396. },
  17397. ]
  17398. ))
  17399. characterMakers.push(() => makeCharacter(
  17400. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17401. {
  17402. front: {
  17403. height: math.unit(6, "feet"),
  17404. weight: math.unit(150, "lb"),
  17405. name: "Front",
  17406. image: {
  17407. source: "./media/characters/verin-raharra/front.svg",
  17408. extra: 5019 / 4835,
  17409. bottom: 0.023
  17410. }
  17411. },
  17412. },
  17413. [
  17414. {
  17415. name: "Normal",
  17416. height: math.unit(7 + 5 / 12, "feet"),
  17417. default: true
  17418. },
  17419. {
  17420. name: "Upsized",
  17421. height: math.unit(20, "feet")
  17422. },
  17423. ]
  17424. ))
  17425. characterMakers.push(() => makeCharacter(
  17426. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17427. {
  17428. front: {
  17429. height: math.unit(7, "feet"),
  17430. weight: math.unit(230, "lb"),
  17431. name: "Front",
  17432. image: {
  17433. source: "./media/characters/nakata/front.svg",
  17434. extra: 1.005,
  17435. bottom: 0.01
  17436. }
  17437. },
  17438. },
  17439. [
  17440. {
  17441. name: "Normal",
  17442. height: math.unit(7, "feet"),
  17443. default: true
  17444. },
  17445. {
  17446. name: "Big",
  17447. height: math.unit(14, "feet")
  17448. },
  17449. {
  17450. name: "Macro",
  17451. height: math.unit(400, "feet")
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(4.91, "feet"),
  17460. weight: math.unit(100, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/lily/front.svg",
  17464. extra: 1585 / 1415,
  17465. bottom: 0.02
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(4.91, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17479. {
  17480. laying: {
  17481. height: math.unit(4 + 4 / 12, "feet"),
  17482. weight: math.unit(600, "lb"),
  17483. name: "Laying",
  17484. image: {
  17485. source: "./media/characters/sheila/laying.svg",
  17486. extra: 1333 / 1265,
  17487. bottom: 0.16
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(4 + 4 / 12, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6, "feet"),
  17504. weight: math.unit(190, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/sax/front.svg",
  17508. extra: 1187 / 973,
  17509. bottom: 0.042
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Micro",
  17516. height: math.unit(4, "inches"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6, "feet"),
  17526. weight: math.unit(150, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/pandora/front.svg",
  17530. extra: 2720 / 2556,
  17531. bottom: 0.015
  17532. }
  17533. },
  17534. back: {
  17535. height: math.unit(6, "feet"),
  17536. weight: math.unit(150, "lb"),
  17537. name: "Back",
  17538. image: {
  17539. source: "./media/characters/pandora/back.svg",
  17540. extra: 2720 / 2556,
  17541. bottom: 0.01
  17542. }
  17543. },
  17544. beans: {
  17545. height: math.unit(6 / 8, "feet"),
  17546. name: "Beans",
  17547. image: {
  17548. source: "./media/characters/pandora/beans.svg"
  17549. }
  17550. },
  17551. collar: {
  17552. height: math.unit(0.31, "feet"),
  17553. name: "Collar",
  17554. image: {
  17555. source: "./media/characters/pandora/collar.svg"
  17556. }
  17557. },
  17558. skirt: {
  17559. height: math.unit(6, "feet"),
  17560. weight: math.unit(150, "lb"),
  17561. name: "Skirt",
  17562. image: {
  17563. source: "./media/characters/pandora/skirt.svg",
  17564. extra: 1622 / 1525,
  17565. bottom: 0.015
  17566. }
  17567. },
  17568. hoodie: {
  17569. height: math.unit(6, "feet"),
  17570. weight: math.unit(150, "lb"),
  17571. name: "Hoodie",
  17572. image: {
  17573. source: "./media/characters/pandora/hoodie.svg",
  17574. extra: 1622 / 1525,
  17575. bottom: 0.015
  17576. }
  17577. },
  17578. casual: {
  17579. height: math.unit(6, "feet"),
  17580. weight: math.unit(150, "lb"),
  17581. name: "Casual",
  17582. image: {
  17583. source: "./media/characters/pandora/casual.svg",
  17584. extra: 1622 / 1525,
  17585. bottom: 0.015
  17586. }
  17587. },
  17588. },
  17589. [
  17590. {
  17591. name: "Normal",
  17592. height: math.unit(6, "feet")
  17593. },
  17594. {
  17595. name: "Big Steppy",
  17596. height: math.unit(1, "km"),
  17597. default: true
  17598. },
  17599. {
  17600. name: "Galactic Steppy",
  17601. height: math.unit(2, "gigameters")
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17607. {
  17608. side: {
  17609. height: math.unit(10, "feet"),
  17610. weight: math.unit(800, "kg"),
  17611. name: "Side",
  17612. image: {
  17613. source: "./media/characters/venio-darcony/side.svg",
  17614. extra: 1373 / 1003,
  17615. bottom: 0.037
  17616. }
  17617. },
  17618. front: {
  17619. height: math.unit(19, "feet"),
  17620. weight: math.unit(800, "kg"),
  17621. name: "Front",
  17622. image: {
  17623. source: "./media/characters/venio-darcony/front.svg"
  17624. }
  17625. },
  17626. back: {
  17627. height: math.unit(19, "feet"),
  17628. weight: math.unit(800, "kg"),
  17629. name: "Back",
  17630. image: {
  17631. source: "./media/characters/venio-darcony/back.svg"
  17632. }
  17633. },
  17634. sideNsfw: {
  17635. height: math.unit(10, "feet"),
  17636. weight: math.unit(800, "kg"),
  17637. name: "Side (NSFW)",
  17638. image: {
  17639. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17640. extra: 1373 / 1003,
  17641. bottom: 0.037
  17642. }
  17643. },
  17644. frontNsfw: {
  17645. height: math.unit(19, "feet"),
  17646. weight: math.unit(800, "kg"),
  17647. name: "Front (NSFW)",
  17648. image: {
  17649. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17650. }
  17651. },
  17652. backNsfw: {
  17653. height: math.unit(19, "feet"),
  17654. weight: math.unit(800, "kg"),
  17655. name: "Back (NSFW)",
  17656. image: {
  17657. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17658. }
  17659. },
  17660. sideArmored: {
  17661. height: math.unit(10, "feet"),
  17662. weight: math.unit(800, "kg"),
  17663. name: "Side (Armored)",
  17664. image: {
  17665. source: "./media/characters/venio-darcony/side-armored.svg",
  17666. extra: 1373 / 1003,
  17667. bottom: 0.037
  17668. }
  17669. },
  17670. frontArmored: {
  17671. height: math.unit(19, "feet"),
  17672. weight: math.unit(900, "kg"),
  17673. name: "Front (Armored)",
  17674. image: {
  17675. source: "./media/characters/venio-darcony/front-armored.svg"
  17676. }
  17677. },
  17678. backArmored: {
  17679. height: math.unit(19, "feet"),
  17680. weight: math.unit(900, "kg"),
  17681. name: "Back (Armored)",
  17682. image: {
  17683. source: "./media/characters/venio-darcony/back-armored.svg"
  17684. }
  17685. },
  17686. sword: {
  17687. height: math.unit(10, "feet"),
  17688. weight: math.unit(50, "lb"),
  17689. name: "Sword",
  17690. image: {
  17691. source: "./media/characters/venio-darcony/sword.svg"
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Normal",
  17698. height: math.unit(10, "feet")
  17699. },
  17700. {
  17701. name: "Macro",
  17702. height: math.unit(130, "feet"),
  17703. default: true
  17704. },
  17705. {
  17706. name: "Macro+",
  17707. height: math.unit(240, "feet")
  17708. },
  17709. ]
  17710. ))
  17711. characterMakers.push(() => makeCharacter(
  17712. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17713. {
  17714. front: {
  17715. height: math.unit(6, "feet"),
  17716. weight: math.unit(150, "lb"),
  17717. name: "Front",
  17718. image: {
  17719. source: "./media/characters/veski/front.svg",
  17720. extra: 1299 / 1225,
  17721. bottom: 0.04
  17722. }
  17723. },
  17724. back: {
  17725. height: math.unit(6, "feet"),
  17726. weight: math.unit(150, "lb"),
  17727. name: "Back",
  17728. image: {
  17729. source: "./media/characters/veski/back.svg",
  17730. extra: 1299 / 1225,
  17731. bottom: 0.008
  17732. }
  17733. },
  17734. maw: {
  17735. height: math.unit(1.5 * 1.21, "feet"),
  17736. name: "Maw",
  17737. image: {
  17738. source: "./media/characters/veski/maw.svg"
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Macro",
  17745. height: math.unit(2, "km"),
  17746. default: true
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17752. {
  17753. front: {
  17754. height: math.unit(5 + 7 / 12, "feet"),
  17755. name: "Front",
  17756. image: {
  17757. source: "./media/characters/isabelle/front.svg",
  17758. extra: 2130 / 1976,
  17759. bottom: 0.05
  17760. }
  17761. },
  17762. },
  17763. [
  17764. {
  17765. name: "Supermicro",
  17766. height: math.unit(10, "micrometers")
  17767. },
  17768. {
  17769. name: "Micro",
  17770. height: math.unit(1, "inch")
  17771. },
  17772. {
  17773. name: "Tiny",
  17774. height: math.unit(5, "inches")
  17775. },
  17776. {
  17777. name: "Standard",
  17778. height: math.unit(5 + 7 / 12, "inches")
  17779. },
  17780. {
  17781. name: "Macro",
  17782. height: math.unit(80, "meters"),
  17783. default: true
  17784. },
  17785. {
  17786. name: "Megamacro",
  17787. height: math.unit(250, "meters")
  17788. },
  17789. {
  17790. name: "Gigamacro",
  17791. height: math.unit(5, "km")
  17792. },
  17793. {
  17794. name: "Cosmic",
  17795. height: math.unit(2.5e6, "miles")
  17796. },
  17797. ]
  17798. ))
  17799. characterMakers.push(() => makeCharacter(
  17800. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17801. {
  17802. front: {
  17803. height: math.unit(6, "feet"),
  17804. weight: math.unit(150, "lb"),
  17805. name: "Front",
  17806. image: {
  17807. source: "./media/characters/hanzo/front.svg",
  17808. extra: 374 / 344,
  17809. bottom: 0.02
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(8, "feet"),
  17817. default: true
  17818. },
  17819. ]
  17820. ))
  17821. characterMakers.push(() => makeCharacter(
  17822. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17823. {
  17824. front: {
  17825. height: math.unit(7, "feet"),
  17826. weight: math.unit(130, "lb"),
  17827. name: "Front",
  17828. image: {
  17829. source: "./media/characters/anna/front.svg",
  17830. extra: 169 / 145,
  17831. bottom: 0.06
  17832. }
  17833. },
  17834. full: {
  17835. height: math.unit(4.96, "feet"),
  17836. weight: math.unit(220, "lb"),
  17837. name: "Full",
  17838. image: {
  17839. source: "./media/characters/anna/full.svg",
  17840. extra: 138 / 114,
  17841. bottom: 0.15
  17842. }
  17843. },
  17844. tongue: {
  17845. height: math.unit(2.53, "feet"),
  17846. name: "Tongue",
  17847. image: {
  17848. source: "./media/characters/anna/tongue.svg"
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(7, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17862. {
  17863. front: {
  17864. height: math.unit(7, "feet"),
  17865. weight: math.unit(150, "lb"),
  17866. name: "Front",
  17867. image: {
  17868. source: "./media/characters/ian-corvid/front.svg",
  17869. extra: 150 / 142,
  17870. bottom: 0.02
  17871. }
  17872. },
  17873. back: {
  17874. height: math.unit(7, "feet"),
  17875. weight: math.unit(150, "lb"),
  17876. name: "Back",
  17877. image: {
  17878. source: "./media/characters/ian-corvid/back.svg",
  17879. extra: 150 / 143,
  17880. bottom: 0.01
  17881. }
  17882. },
  17883. stomping: {
  17884. height: math.unit(7, "feet"),
  17885. weight: math.unit(150, "lb"),
  17886. name: "Stomping",
  17887. image: {
  17888. source: "./media/characters/ian-corvid/stomping.svg",
  17889. extra: 76 / 72
  17890. }
  17891. },
  17892. sitting: {
  17893. height: math.unit(7 / 1.8, "feet"),
  17894. weight: math.unit(150, "lb"),
  17895. name: "Sitting",
  17896. image: {
  17897. source: "./media/characters/ian-corvid/sitting.svg",
  17898. extra: 1400 / 1269,
  17899. bottom: 0.15
  17900. }
  17901. },
  17902. },
  17903. [
  17904. {
  17905. name: "Tiny Microw",
  17906. height: math.unit(1, "inch")
  17907. },
  17908. {
  17909. name: "Microw",
  17910. height: math.unit(6, "inches")
  17911. },
  17912. {
  17913. name: "Crow",
  17914. height: math.unit(7 + 1 / 12, "feet"),
  17915. default: true
  17916. },
  17917. {
  17918. name: "Macrow",
  17919. height: math.unit(176, "feet")
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17925. {
  17926. front: {
  17927. height: math.unit(5 + 7 / 12, "feet"),
  17928. weight: math.unit(147, "lb"),
  17929. name: "Front",
  17930. image: {
  17931. source: "./media/characters/natalie-kellon/front.svg",
  17932. extra: 1214 / 1141,
  17933. bottom: 0.02
  17934. }
  17935. },
  17936. },
  17937. [
  17938. {
  17939. name: "Micro",
  17940. height: math.unit(1 / 16, "inch")
  17941. },
  17942. {
  17943. name: "Tiny",
  17944. height: math.unit(4, "inches")
  17945. },
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(5 + 7 / 12, "feet"),
  17949. default: true
  17950. },
  17951. {
  17952. name: "Amazon",
  17953. height: math.unit(12, "feet")
  17954. },
  17955. {
  17956. name: "Giantess",
  17957. height: math.unit(160, "meters")
  17958. },
  17959. {
  17960. name: "Titaness",
  17961. height: math.unit(800, "meters")
  17962. },
  17963. ]
  17964. ))
  17965. characterMakers.push(() => makeCharacter(
  17966. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17967. {
  17968. front: {
  17969. height: math.unit(6, "feet"),
  17970. weight: math.unit(150, "lb"),
  17971. name: "Front",
  17972. image: {
  17973. source: "./media/characters/alluria/front.svg",
  17974. extra: 806 / 738,
  17975. bottom: 0.01
  17976. }
  17977. },
  17978. side: {
  17979. height: math.unit(6, "feet"),
  17980. weight: math.unit(150, "lb"),
  17981. name: "Side",
  17982. image: {
  17983. source: "./media/characters/alluria/side.svg",
  17984. extra: 800 / 750,
  17985. }
  17986. },
  17987. back: {
  17988. height: math.unit(6, "feet"),
  17989. weight: math.unit(150, "lb"),
  17990. name: "Back",
  17991. image: {
  17992. source: "./media/characters/alluria/back.svg",
  17993. extra: 806 / 738,
  17994. }
  17995. },
  17996. frontMaid: {
  17997. height: math.unit(6, "feet"),
  17998. weight: math.unit(150, "lb"),
  17999. name: "Front (Maid)",
  18000. image: {
  18001. source: "./media/characters/alluria/front-maid.svg",
  18002. extra: 806 / 738,
  18003. bottom: 0.01
  18004. }
  18005. },
  18006. sideMaid: {
  18007. height: math.unit(6, "feet"),
  18008. weight: math.unit(150, "lb"),
  18009. name: "Side (Maid)",
  18010. image: {
  18011. source: "./media/characters/alluria/side-maid.svg",
  18012. extra: 800 / 750,
  18013. bottom: 0.005
  18014. }
  18015. },
  18016. backMaid: {
  18017. height: math.unit(6, "feet"),
  18018. weight: math.unit(150, "lb"),
  18019. name: "Back (Maid)",
  18020. image: {
  18021. source: "./media/characters/alluria/back-maid.svg",
  18022. extra: 806 / 738,
  18023. }
  18024. },
  18025. },
  18026. [
  18027. {
  18028. name: "Micro",
  18029. height: math.unit(6, "inches"),
  18030. default: true
  18031. },
  18032. ]
  18033. ))
  18034. characterMakers.push(() => makeCharacter(
  18035. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18036. {
  18037. front: {
  18038. height: math.unit(6, "feet"),
  18039. weight: math.unit(150, "lb"),
  18040. name: "Front",
  18041. image: {
  18042. source: "./media/characters/kyle/front.svg",
  18043. extra: 1069 / 962,
  18044. bottom: 77.228 / 1727.45
  18045. }
  18046. },
  18047. },
  18048. [
  18049. {
  18050. name: "Macro",
  18051. height: math.unit(150, "feet"),
  18052. default: true
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(6, "feet"),
  18061. weight: math.unit(300, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/duncan/front.svg",
  18065. extra: 1650 / 1482,
  18066. bottom: 0.05
  18067. }
  18068. },
  18069. },
  18070. [
  18071. {
  18072. name: "Macro",
  18073. height: math.unit(100, "feet"),
  18074. default: true
  18075. },
  18076. ]
  18077. ))
  18078. characterMakers.push(() => makeCharacter(
  18079. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18080. {
  18081. front: {
  18082. height: math.unit(5 + 4 / 12, "feet"),
  18083. weight: math.unit(220, "lb"),
  18084. name: "Front",
  18085. image: {
  18086. source: "./media/characters/memory/front.svg",
  18087. extra: 3641 / 3545,
  18088. bottom: 0.03
  18089. }
  18090. },
  18091. back: {
  18092. height: math.unit(5 + 4 / 12, "feet"),
  18093. weight: math.unit(220, "lb"),
  18094. name: "Back",
  18095. image: {
  18096. source: "./media/characters/memory/back.svg",
  18097. extra: 3641 / 3545,
  18098. bottom: 0.025
  18099. }
  18100. },
  18101. frontSkirt: {
  18102. height: math.unit(5 + 4 / 12, "feet"),
  18103. weight: math.unit(220, "lb"),
  18104. name: "Front (Skirt)",
  18105. image: {
  18106. source: "./media/characters/memory/front-skirt.svg",
  18107. extra: 3641 / 3545,
  18108. bottom: 0.03
  18109. }
  18110. },
  18111. frontDress: {
  18112. height: math.unit(5 + 4 / 12, "feet"),
  18113. weight: math.unit(220, "lb"),
  18114. name: "Front (Dress)",
  18115. image: {
  18116. source: "./media/characters/memory/front-dress.svg",
  18117. extra: 3641 / 3545,
  18118. bottom: 0.03
  18119. }
  18120. },
  18121. },
  18122. [
  18123. {
  18124. name: "Micro",
  18125. height: math.unit(6, "inches"),
  18126. default: true
  18127. },
  18128. {
  18129. name: "Normal",
  18130. height: math.unit(5 + 4 / 12, "feet")
  18131. },
  18132. ]
  18133. ))
  18134. characterMakers.push(() => makeCharacter(
  18135. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18136. {
  18137. front: {
  18138. height: math.unit(4 + 11 / 12, "feet"),
  18139. weight: math.unit(100, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/luno/front.svg",
  18143. extra: 1535 / 1487,
  18144. bottom: 0.03
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Micro",
  18151. height: math.unit(3, "inches")
  18152. },
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(4 + 11 / 12, "feet"),
  18156. default: true
  18157. },
  18158. {
  18159. name: "Macro",
  18160. height: math.unit(300, "feet")
  18161. },
  18162. {
  18163. name: "Megamacro",
  18164. height: math.unit(700, "miles")
  18165. },
  18166. ]
  18167. ))
  18168. characterMakers.push(() => makeCharacter(
  18169. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18170. {
  18171. front: {
  18172. height: math.unit(6 + 2 / 12, "feet"),
  18173. weight: math.unit(170, "lb"),
  18174. name: "Front",
  18175. image: {
  18176. source: "./media/characters/jamesy/front.svg",
  18177. extra: 440 / 382,
  18178. bottom: 0.005
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Micro",
  18185. height: math.unit(3, "inches")
  18186. },
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(6 + 2 / 12, "feet"),
  18190. default: true
  18191. },
  18192. {
  18193. name: "Macro",
  18194. height: math.unit(300, "feet")
  18195. },
  18196. {
  18197. name: "Megamacro",
  18198. height: math.unit(700, "miles")
  18199. },
  18200. ]
  18201. ))
  18202. characterMakers.push(() => makeCharacter(
  18203. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18204. {
  18205. front: {
  18206. height: math.unit(6, "feet"),
  18207. weight: math.unit(160, "lb"),
  18208. name: "Front",
  18209. image: {
  18210. source: "./media/characters/mark/front.svg",
  18211. extra: 3300 / 3100,
  18212. bottom: 136.42 / 3440.47
  18213. }
  18214. },
  18215. },
  18216. [
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(120, "meters")
  18220. },
  18221. {
  18222. name: "Bigger Macro",
  18223. height: math.unit(350, "meters")
  18224. },
  18225. {
  18226. name: "Megamacro",
  18227. height: math.unit(8, "km"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Continental",
  18232. height: math.unit(4550, "km")
  18233. },
  18234. {
  18235. name: "Planetary",
  18236. height: math.unit(65000, "km")
  18237. },
  18238. ]
  18239. ))
  18240. characterMakers.push(() => makeCharacter(
  18241. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18242. {
  18243. front: {
  18244. height: math.unit(6, "feet"),
  18245. weight: math.unit(400, "lb"),
  18246. name: "Front",
  18247. image: {
  18248. source: "./media/characters/mac/front.svg",
  18249. extra: 1048 / 987.7,
  18250. bottom: 60 / 1107.6,
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Macro",
  18257. height: math.unit(500, "feet"),
  18258. default: true
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(5 + 2 / 12, "feet"),
  18267. weight: math.unit(190, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/bari/front.svg",
  18271. extra: 3156 / 2880,
  18272. bottom: 0.03
  18273. }
  18274. },
  18275. back: {
  18276. height: math.unit(5 + 2 / 12, "feet"),
  18277. weight: math.unit(190, "lb"),
  18278. name: "Back",
  18279. image: {
  18280. source: "./media/characters/bari/back.svg",
  18281. extra: 3260 / 2834,
  18282. bottom: 0.025
  18283. }
  18284. },
  18285. frontPlush: {
  18286. height: math.unit(5 + 2 / 12, "feet"),
  18287. weight: math.unit(190, "lb"),
  18288. name: "Front (Plush)",
  18289. image: {
  18290. source: "./media/characters/bari/front-plush.svg",
  18291. extra: 1112 / 1061,
  18292. bottom: 0.002
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Micro",
  18299. height: math.unit(3, "inches")
  18300. },
  18301. {
  18302. name: "Normal",
  18303. height: math.unit(5 + 2 / 12, "feet"),
  18304. default: true
  18305. },
  18306. {
  18307. name: "Macro",
  18308. height: math.unit(20, "feet")
  18309. },
  18310. ]
  18311. ))
  18312. characterMakers.push(() => makeCharacter(
  18313. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18314. {
  18315. front: {
  18316. height: math.unit(6 + 1 / 12, "feet"),
  18317. weight: math.unit(275, "lb"),
  18318. name: "Front",
  18319. image: {
  18320. source: "./media/characters/hunter-misha-raven/front.svg"
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Mortal",
  18327. height: math.unit(6 + 1 / 12, "feet")
  18328. },
  18329. {
  18330. name: "Divine",
  18331. height: math.unit(1.12134e34, "parsecs"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18338. {
  18339. front: {
  18340. height: math.unit(6 + 3 / 12, "feet"),
  18341. weight: math.unit(220, "lb"),
  18342. name: "Front",
  18343. image: {
  18344. source: "./media/characters/max-calore/front.svg",
  18345. extra: 1700 / 1648,
  18346. bottom: 0.01
  18347. }
  18348. },
  18349. back: {
  18350. height: math.unit(6 + 3 / 12, "feet"),
  18351. weight: math.unit(220, "lb"),
  18352. name: "Back",
  18353. image: {
  18354. source: "./media/characters/max-calore/back.svg",
  18355. extra: 1700 / 1648,
  18356. bottom: 0.01
  18357. }
  18358. },
  18359. },
  18360. [
  18361. {
  18362. name: "Normal",
  18363. height: math.unit(6 + 3 / 12, "feet"),
  18364. default: true
  18365. },
  18366. ]
  18367. ))
  18368. characterMakers.push(() => makeCharacter(
  18369. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18370. {
  18371. side: {
  18372. height: math.unit(2 + 8 / 12, "feet"),
  18373. weight: math.unit(99, "lb"),
  18374. name: "Side",
  18375. image: {
  18376. source: "./media/characters/aspen/side.svg",
  18377. extra: 152 / 138,
  18378. bottom: 0.032
  18379. }
  18380. },
  18381. },
  18382. [
  18383. {
  18384. name: "Normal",
  18385. height: math.unit(2 + 8 / 12, "feet"),
  18386. default: true
  18387. },
  18388. ]
  18389. ))
  18390. characterMakers.push(() => makeCharacter(
  18391. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18392. {
  18393. side: {
  18394. height: math.unit(3 + 2 / 12, "feet"),
  18395. weight: math.unit(224, "lb"),
  18396. name: "Side",
  18397. image: {
  18398. source: "./media/characters/sheila-feral-wolf/side.svg",
  18399. extra: 179 / 166,
  18400. bottom: 0.03
  18401. }
  18402. },
  18403. },
  18404. [
  18405. {
  18406. name: "Normal",
  18407. height: math.unit(3 + 2 / 12, "feet"),
  18408. default: true
  18409. },
  18410. ]
  18411. ))
  18412. characterMakers.push(() => makeCharacter(
  18413. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18414. {
  18415. side: {
  18416. height: math.unit(1 + 9 / 12, "feet"),
  18417. weight: math.unit(38, "lb"),
  18418. name: "Side",
  18419. image: {
  18420. source: "./media/characters/michelle/side.svg",
  18421. extra: 147 / 136.7,
  18422. bottom: 0.03
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Normal",
  18429. height: math.unit(1 + 9 / 12, "feet"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(1.54, "feet"),
  18439. weight: math.unit(50, "lb"),
  18440. name: "Front",
  18441. image: {
  18442. source: "./media/characters/nino/front.svg"
  18443. }
  18444. },
  18445. },
  18446. [
  18447. {
  18448. name: "Normal",
  18449. height: math.unit(1.54, "feet"),
  18450. default: true
  18451. },
  18452. ]
  18453. ))
  18454. characterMakers.push(() => makeCharacter(
  18455. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18456. {
  18457. front: {
  18458. height: math.unit(1.49, "feet"),
  18459. weight: math.unit(45, "lb"),
  18460. name: "Front",
  18461. image: {
  18462. source: "./media/characters/viola/front.svg"
  18463. }
  18464. },
  18465. },
  18466. [
  18467. {
  18468. name: "Normal",
  18469. height: math.unit(1.49, "feet"),
  18470. default: true
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(6 + 5 / 12, "feet"),
  18479. weight: math.unit(580, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/atlas/front.svg",
  18483. extra: 298.5 / 290,
  18484. bottom: 0.015
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(6 + 5 / 12, "feet"),
  18492. default: true
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18498. {
  18499. side: {
  18500. height: math.unit(15.6, "inches"),
  18501. weight: math.unit(10, "lb"),
  18502. name: "Side",
  18503. image: {
  18504. source: "./media/characters/davy/side.svg",
  18505. extra: 200 / 170,
  18506. bottom: 0.01
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(15.6, "inches"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18520. {
  18521. side: {
  18522. height: math.unit(4 + 8 / 12, "feet"),
  18523. weight: math.unit(166, "lb"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/fiona/side.svg",
  18527. extra: 232 / 220,
  18528. bottom: 0.03
  18529. }
  18530. },
  18531. },
  18532. [
  18533. {
  18534. name: "Normal",
  18535. height: math.unit(4 + 8 / 12, "feet"),
  18536. default: true
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18542. {
  18543. front: {
  18544. height: math.unit(26, "inches"),
  18545. weight: math.unit(35, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/lyla/front.svg",
  18549. bottom: 0.1
  18550. }
  18551. },
  18552. },
  18553. [
  18554. {
  18555. name: "Normal",
  18556. height: math.unit(3, "feet"),
  18557. default: true
  18558. },
  18559. ]
  18560. ))
  18561. characterMakers.push(() => makeCharacter(
  18562. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18563. {
  18564. side: {
  18565. height: math.unit(1.8, "feet"),
  18566. weight: math.unit(44, "lb"),
  18567. name: "Side",
  18568. image: {
  18569. source: "./media/characters/perseus/side.svg",
  18570. bottom: 0.21
  18571. }
  18572. },
  18573. },
  18574. [
  18575. {
  18576. name: "Normal",
  18577. height: math.unit(1.8, "feet"),
  18578. default: true
  18579. },
  18580. ]
  18581. ))
  18582. characterMakers.push(() => makeCharacter(
  18583. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18584. {
  18585. side: {
  18586. height: math.unit(4 + 2 / 12, "feet"),
  18587. weight: math.unit(20, "lb"),
  18588. name: "Side",
  18589. image: {
  18590. source: "./media/characters/remus/side.svg"
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Normal",
  18597. height: math.unit(4 + 2 / 12, "feet"),
  18598. default: true
  18599. },
  18600. ]
  18601. ))
  18602. characterMakers.push(() => makeCharacter(
  18603. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18604. {
  18605. front: {
  18606. height: math.unit(4 + 11 / 12, "feet"),
  18607. weight: math.unit(114, "lb"),
  18608. name: "Front",
  18609. image: {
  18610. source: "./media/characters/raf/front.svg",
  18611. extra: 1504/1339,
  18612. bottom: 26/1530
  18613. }
  18614. },
  18615. side: {
  18616. height: math.unit(4 + 11 / 12, "feet"),
  18617. weight: math.unit(114, "lb"),
  18618. name: "Side",
  18619. image: {
  18620. source: "./media/characters/raf/side.svg",
  18621. extra: 1466/1316,
  18622. bottom: 29/1495
  18623. }
  18624. },
  18625. paw: {
  18626. height: math.unit(1.45, "feet"),
  18627. name: "Paw",
  18628. image: {
  18629. source: "./media/characters/raf/paw.svg"
  18630. },
  18631. extraAttributes: {
  18632. "toeSize": {
  18633. name: "Toe Size",
  18634. power: 2,
  18635. type: "area",
  18636. base: math.unit(0.004, "m^2")
  18637. },
  18638. "padSize": {
  18639. name: "Pad Size",
  18640. power: 2,
  18641. type: "area",
  18642. base: math.unit(0.04, "m^2")
  18643. },
  18644. "footSize": {
  18645. name: "Foot Size",
  18646. power: 2,
  18647. type: "area",
  18648. base: math.unit(0.08, "m^2")
  18649. },
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Micro",
  18656. height: math.unit(2, "inches")
  18657. },
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(4 + 11 / 12, "feet"),
  18661. default: true
  18662. },
  18663. {
  18664. name: "Macro",
  18665. height: math.unit(70, "feet")
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(1.5, "meters"),
  18674. weight: math.unit(68, "kg"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/liam-einarr/front.svg",
  18678. extra: 2822 / 2666
  18679. }
  18680. },
  18681. back: {
  18682. height: math.unit(1.5, "meters"),
  18683. weight: math.unit(68, "kg"),
  18684. name: "Back",
  18685. image: {
  18686. source: "./media/characters/liam-einarr/back.svg",
  18687. extra: 2822 / 2666,
  18688. bottom: 0.015
  18689. }
  18690. },
  18691. },
  18692. [
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(1.5, "meters"),
  18696. default: true
  18697. },
  18698. {
  18699. name: "Macro",
  18700. height: math.unit(150, "meters")
  18701. },
  18702. {
  18703. name: "Megamacro",
  18704. height: math.unit(35, "km")
  18705. },
  18706. ]
  18707. ))
  18708. characterMakers.push(() => makeCharacter(
  18709. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18710. {
  18711. front: {
  18712. height: math.unit(6, "feet"),
  18713. weight: math.unit(75, "kg"),
  18714. name: "Front",
  18715. image: {
  18716. source: "./media/characters/linda/front.svg",
  18717. extra: 930 / 874,
  18718. bottom: 0.004
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(6, "feet"),
  18726. default: true
  18727. },
  18728. ]
  18729. ))
  18730. characterMakers.push(() => makeCharacter(
  18731. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18732. {
  18733. front: {
  18734. height: math.unit(6 + 8 / 12, "feet"),
  18735. weight: math.unit(220, "lb"),
  18736. name: "Front",
  18737. image: {
  18738. source: "./media/characters/caylex/front.svg",
  18739. extra: 821 / 772,
  18740. bottom: 0.07
  18741. }
  18742. },
  18743. back: {
  18744. height: math.unit(6 + 8 / 12, "feet"),
  18745. weight: math.unit(220, "lb"),
  18746. name: "Back",
  18747. image: {
  18748. source: "./media/characters/caylex/back.svg",
  18749. extra: 821 / 772,
  18750. bottom: 0.022
  18751. }
  18752. },
  18753. hand: {
  18754. height: math.unit(1.25, "feet"),
  18755. name: "Hand",
  18756. image: {
  18757. source: "./media/characters/caylex/hand.svg"
  18758. }
  18759. },
  18760. foot: {
  18761. height: math.unit(1.6, "feet"),
  18762. name: "Foot",
  18763. image: {
  18764. source: "./media/characters/caylex/foot.svg"
  18765. }
  18766. },
  18767. armored: {
  18768. height: math.unit(6 + 8 / 12, "feet"),
  18769. weight: math.unit(250, "lb"),
  18770. name: "Armored",
  18771. image: {
  18772. source: "./media/characters/caylex/armored.svg",
  18773. extra: 1420 / 1310,
  18774. bottom: 0.045
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(6 + 8 / 12, "feet"),
  18782. default: true
  18783. },
  18784. {
  18785. name: "Normal+",
  18786. height: math.unit(12, "feet")
  18787. },
  18788. ]
  18789. ))
  18790. characterMakers.push(() => makeCharacter(
  18791. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18792. {
  18793. front: {
  18794. height: math.unit(7 + 6 / 12, "feet"),
  18795. weight: math.unit(288, "lb"),
  18796. name: "Front",
  18797. image: {
  18798. source: "./media/characters/alana/front.svg",
  18799. extra: 679 / 653,
  18800. bottom: 22.5 / 701
  18801. }
  18802. },
  18803. },
  18804. [
  18805. {
  18806. name: "Normal",
  18807. height: math.unit(7 + 6 / 12, "feet")
  18808. },
  18809. {
  18810. name: "Large",
  18811. height: math.unit(50, "feet")
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(100, "feet"),
  18816. default: true
  18817. },
  18818. {
  18819. name: "Macro+",
  18820. height: math.unit(200, "feet")
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18826. {
  18827. front: {
  18828. height: math.unit(6 + 1 / 12, "feet"),
  18829. weight: math.unit(210, "lb"),
  18830. name: "Front",
  18831. image: {
  18832. source: "./media/characters/hasani/front.svg",
  18833. extra: 244 / 232,
  18834. bottom: 0.01
  18835. }
  18836. },
  18837. back: {
  18838. height: math.unit(6 + 1 / 12, "feet"),
  18839. weight: math.unit(210, "lb"),
  18840. name: "Back",
  18841. image: {
  18842. source: "./media/characters/hasani/back.svg",
  18843. extra: 244 / 232,
  18844. bottom: 0.01
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Normal",
  18851. height: math.unit(6 + 1 / 12, "feet")
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(175, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(1.82, "meters"),
  18865. weight: math.unit(140, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/nita/front.svg",
  18869. extra: 2473 / 2363,
  18870. bottom: 0.01
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Normal",
  18877. height: math.unit(1.82, "m")
  18878. },
  18879. {
  18880. name: "Macro",
  18881. height: math.unit(300, "m")
  18882. },
  18883. {
  18884. name: "Mistake Canon",
  18885. height: math.unit(0.5, "miles"),
  18886. default: true
  18887. },
  18888. {
  18889. name: "Big Mistake",
  18890. height: math.unit(13, "miles")
  18891. },
  18892. {
  18893. name: "Playing God",
  18894. height: math.unit(2450, "miles")
  18895. },
  18896. ]
  18897. ))
  18898. characterMakers.push(() => makeCharacter(
  18899. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18900. {
  18901. front: {
  18902. height: math.unit(4, "feet"),
  18903. weight: math.unit(120, "lb"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/shiriko/front.svg",
  18907. extra: 970/934,
  18908. bottom: 5/975
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(4, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(6, "feet"),
  18925. name: "front",
  18926. image: {
  18927. source: "./media/characters/deja/front.svg",
  18928. extra: 926 / 840,
  18929. bottom: 0.07
  18930. }
  18931. },
  18932. },
  18933. [
  18934. {
  18935. name: "Planck Length",
  18936. height: math.unit(1.6e-35, "meters")
  18937. },
  18938. {
  18939. name: "Normal",
  18940. height: math.unit(30.48, "meters"),
  18941. default: true
  18942. },
  18943. {
  18944. name: "Universal",
  18945. height: math.unit(8.8e26, "meters")
  18946. },
  18947. ]
  18948. ))
  18949. characterMakers.push(() => makeCharacter(
  18950. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18951. {
  18952. side: {
  18953. height: math.unit(8, "feet"),
  18954. weight: math.unit(6300, "lb"),
  18955. name: "Side",
  18956. image: {
  18957. source: "./media/characters/anima/side.svg",
  18958. bottom: 0.035
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(8, "feet"),
  18966. default: true
  18967. },
  18968. ]
  18969. ))
  18970. characterMakers.push(() => makeCharacter(
  18971. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18972. {
  18973. front: {
  18974. height: math.unit(8, "feet"),
  18975. weight: math.unit(350, "lb"),
  18976. name: "Front",
  18977. image: {
  18978. source: "./media/characters/bianca/front.svg",
  18979. extra: 234 / 225,
  18980. bottom: 0.03
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(8, "feet"),
  18988. default: true
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(11 + 5/12, "feet"),
  18997. weight: math.unit(1200, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/adinia/front.svg",
  19001. extra: 1767/1641,
  19002. bottom: 44/1811
  19003. },
  19004. extraAttributes: {
  19005. "energyIntake": {
  19006. name: "Energy Intake",
  19007. power: 3,
  19008. type: "energy",
  19009. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19010. },
  19011. }
  19012. },
  19013. back: {
  19014. height: math.unit(11 + 5/12, "feet"),
  19015. weight: math.unit(1200, "lb"),
  19016. name: "Back",
  19017. image: {
  19018. source: "./media/characters/adinia/back.svg",
  19019. extra: 1834/1684,
  19020. bottom: 14/1848
  19021. },
  19022. extraAttributes: {
  19023. "energyIntake": {
  19024. name: "Energy Intake",
  19025. power: 3,
  19026. type: "energy",
  19027. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19028. },
  19029. }
  19030. },
  19031. maw: {
  19032. height: math.unit(3.79, "feet"),
  19033. name: "Maw",
  19034. image: {
  19035. source: "./media/characters/adinia/maw.svg"
  19036. }
  19037. },
  19038. rump: {
  19039. height: math.unit(4.6, "feet"),
  19040. name: "Rump",
  19041. image: {
  19042. source: "./media/characters/adinia/rump.svg"
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(11 + 5 / 12, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(3, "meters"),
  19059. weight: math.unit(200, "kg"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/lykasa/front.svg",
  19063. extra: 1076 / 976,
  19064. bottom: 0.06
  19065. }
  19066. },
  19067. },
  19068. [
  19069. {
  19070. name: "Normal",
  19071. height: math.unit(3, "meters")
  19072. },
  19073. {
  19074. name: "Kaiju",
  19075. height: math.unit(120, "meters"),
  19076. default: true
  19077. },
  19078. {
  19079. name: "Mega Kaiju",
  19080. height: math.unit(240, "km")
  19081. },
  19082. {
  19083. name: "Giga Kaiju",
  19084. height: math.unit(400, "megameters")
  19085. },
  19086. {
  19087. name: "Tera Kaiju",
  19088. height: math.unit(800, "gigameters")
  19089. },
  19090. {
  19091. name: "Kaiju Dragon Goddess",
  19092. height: math.unit(26, "zettaparsecs")
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19098. {
  19099. side: {
  19100. height: math.unit(283 / 124 * 6, "feet"),
  19101. weight: math.unit(35000, "lb"),
  19102. name: "Side",
  19103. image: {
  19104. source: "./media/characters/malfaren/side.svg",
  19105. extra: 1310/529,
  19106. bottom: 24/1334
  19107. }
  19108. },
  19109. front: {
  19110. height: math.unit(22.36, "feet"),
  19111. weight: math.unit(35000, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/malfaren/front.svg",
  19115. extra: 1237/1115,
  19116. bottom: 32/1269
  19117. }
  19118. },
  19119. maw: {
  19120. height: math.unit(6.9, "feet"),
  19121. name: "Maw",
  19122. image: {
  19123. source: "./media/characters/malfaren/maw.svg"
  19124. }
  19125. },
  19126. dick: {
  19127. height: math.unit(6.19, "feet"),
  19128. name: "Dick",
  19129. image: {
  19130. source: "./media/characters/malfaren/dick.svg"
  19131. }
  19132. },
  19133. eye: {
  19134. height: math.unit(0.69, "feet"),
  19135. name: "Eye",
  19136. image: {
  19137. source: "./media/characters/malfaren/eye.svg"
  19138. }
  19139. },
  19140. },
  19141. [
  19142. {
  19143. name: "Big",
  19144. height: math.unit(283 / 162 * 6, "feet"),
  19145. },
  19146. {
  19147. name: "Bigger",
  19148. height: math.unit(283 / 124 * 6, "feet")
  19149. },
  19150. {
  19151. name: "Massive",
  19152. height: math.unit(283 / 92 * 6, "feet"),
  19153. default: true
  19154. },
  19155. {
  19156. name: "👀💦",
  19157. height: math.unit(283 / 73 * 6, "feet"),
  19158. },
  19159. ]
  19160. ))
  19161. characterMakers.push(() => makeCharacter(
  19162. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19163. {
  19164. front: {
  19165. height: math.unit(1.7, "m"),
  19166. weight: math.unit(70, "kg"),
  19167. name: "Front",
  19168. image: {
  19169. source: "./media/characters/kernel/front.svg",
  19170. extra: 222 / 210,
  19171. bottom: 0.007
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Nano",
  19178. height: math.unit(17, "micrometers")
  19179. },
  19180. {
  19181. name: "Micro",
  19182. height: math.unit(1.7, "mm")
  19183. },
  19184. {
  19185. name: "Small",
  19186. height: math.unit(1.7, "cm")
  19187. },
  19188. {
  19189. name: "Normal",
  19190. height: math.unit(1.7, "m"),
  19191. default: true
  19192. },
  19193. ]
  19194. ))
  19195. characterMakers.push(() => makeCharacter(
  19196. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19197. {
  19198. front: {
  19199. height: math.unit(1.75, "meters"),
  19200. weight: math.unit(65, "kg"),
  19201. name: "Front",
  19202. image: {
  19203. source: "./media/characters/jayne-folest/front.svg",
  19204. extra: 2115 / 2007,
  19205. bottom: 0.02
  19206. }
  19207. },
  19208. back: {
  19209. height: math.unit(1.75, "meters"),
  19210. weight: math.unit(65, "kg"),
  19211. name: "Back",
  19212. image: {
  19213. source: "./media/characters/jayne-folest/back.svg",
  19214. extra: 2115 / 2007,
  19215. bottom: 0.005
  19216. }
  19217. },
  19218. frontClothed: {
  19219. height: math.unit(1.75, "meters"),
  19220. weight: math.unit(65, "kg"),
  19221. name: "Front (Clothed)",
  19222. image: {
  19223. source: "./media/characters/jayne-folest/front-clothed.svg",
  19224. extra: 2115 / 2007,
  19225. bottom: 0.035
  19226. }
  19227. },
  19228. hand: {
  19229. height: math.unit(1 / 1.260, "feet"),
  19230. name: "Hand",
  19231. image: {
  19232. source: "./media/characters/jayne-folest/hand.svg"
  19233. }
  19234. },
  19235. foot: {
  19236. height: math.unit(1 / 0.918, "feet"),
  19237. name: "Foot",
  19238. image: {
  19239. source: "./media/characters/jayne-folest/foot.svg"
  19240. }
  19241. },
  19242. },
  19243. [
  19244. {
  19245. name: "Micro",
  19246. height: math.unit(4, "cm")
  19247. },
  19248. {
  19249. name: "Normal",
  19250. height: math.unit(1.75, "meters")
  19251. },
  19252. {
  19253. name: "Macro",
  19254. height: math.unit(47.5, "meters"),
  19255. default: true
  19256. },
  19257. ]
  19258. ))
  19259. characterMakers.push(() => makeCharacter(
  19260. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19261. {
  19262. front: {
  19263. height: math.unit(180, "cm"),
  19264. weight: math.unit(70, "kg"),
  19265. name: "Front",
  19266. image: {
  19267. source: "./media/characters/algier/front.svg",
  19268. extra: 596 / 572,
  19269. bottom: 0.04
  19270. }
  19271. },
  19272. back: {
  19273. height: math.unit(180, "cm"),
  19274. weight: math.unit(70, "kg"),
  19275. name: "Back",
  19276. image: {
  19277. source: "./media/characters/algier/back.svg",
  19278. extra: 596 / 572,
  19279. bottom: 0.025
  19280. }
  19281. },
  19282. frontdressed: {
  19283. height: math.unit(180, "cm"),
  19284. weight: math.unit(150, "kg"),
  19285. name: "Front-dressed",
  19286. image: {
  19287. source: "./media/characters/algier/front-dressed.svg",
  19288. extra: 596 / 572,
  19289. bottom: 0.038
  19290. }
  19291. },
  19292. },
  19293. [
  19294. {
  19295. name: "Micro",
  19296. height: math.unit(5, "cm")
  19297. },
  19298. {
  19299. name: "Normal",
  19300. height: math.unit(180, "cm"),
  19301. default: true
  19302. },
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(64, "m")
  19306. },
  19307. ]
  19308. ))
  19309. characterMakers.push(() => makeCharacter(
  19310. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19311. {
  19312. upright: {
  19313. height: math.unit(7, "feet"),
  19314. weight: math.unit(300, "lb"),
  19315. name: "Upright",
  19316. image: {
  19317. source: "./media/characters/pretzel/upright.svg",
  19318. extra: 534 / 522,
  19319. bottom: 0.065
  19320. }
  19321. },
  19322. sprawling: {
  19323. height: math.unit(3.75, "feet"),
  19324. weight: math.unit(300, "lb"),
  19325. name: "Sprawling",
  19326. image: {
  19327. source: "./media/characters/pretzel/sprawling.svg",
  19328. extra: 314 / 281,
  19329. bottom: 0.1
  19330. }
  19331. },
  19332. tongue: {
  19333. height: math.unit(2, "feet"),
  19334. name: "Tongue",
  19335. image: {
  19336. source: "./media/characters/pretzel/tongue.svg"
  19337. }
  19338. },
  19339. },
  19340. [
  19341. {
  19342. name: "Normal",
  19343. height: math.unit(7, "feet"),
  19344. default: true
  19345. },
  19346. {
  19347. name: "Oversized",
  19348. height: math.unit(15, "feet")
  19349. },
  19350. {
  19351. name: "Huge",
  19352. height: math.unit(30, "feet")
  19353. },
  19354. {
  19355. name: "Macro",
  19356. height: math.unit(250, "feet")
  19357. },
  19358. ]
  19359. ))
  19360. characterMakers.push(() => makeCharacter(
  19361. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19362. {
  19363. sideFront: {
  19364. height: math.unit(5 + 2 / 12, "feet"),
  19365. weight: math.unit(120, "lb"),
  19366. name: "Front Side",
  19367. image: {
  19368. source: "./media/characters/roxi/side-front.svg",
  19369. extra: 2924 / 2717,
  19370. bottom: 0.08
  19371. }
  19372. },
  19373. sideBack: {
  19374. height: math.unit(5 + 2 / 12, "feet"),
  19375. weight: math.unit(120, "lb"),
  19376. name: "Back Side",
  19377. image: {
  19378. source: "./media/characters/roxi/side-back.svg",
  19379. extra: 2904 / 2693,
  19380. bottom: 0.06
  19381. }
  19382. },
  19383. front: {
  19384. height: math.unit(5 + 2 / 12, "feet"),
  19385. weight: math.unit(120, "lb"),
  19386. name: "Front",
  19387. image: {
  19388. source: "./media/characters/roxi/front.svg",
  19389. extra: 2028 / 1907,
  19390. bottom: 0.01
  19391. }
  19392. },
  19393. frontAlt: {
  19394. height: math.unit(5 + 2 / 12, "feet"),
  19395. weight: math.unit(120, "lb"),
  19396. name: "Front (Alt)",
  19397. image: {
  19398. source: "./media/characters/roxi/front-alt.svg",
  19399. extra: 1828 / 1798,
  19400. bottom: 0.01
  19401. }
  19402. },
  19403. sitting: {
  19404. height: math.unit(2.8, "feet"),
  19405. weight: math.unit(120, "lb"),
  19406. name: "Sitting",
  19407. image: {
  19408. source: "./media/characters/roxi/sitting.svg",
  19409. extra: 2660 / 2462,
  19410. bottom: 0.1
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(5 + 2 / 12, "feet"),
  19418. default: true
  19419. },
  19420. ]
  19421. ))
  19422. characterMakers.push(() => makeCharacter(
  19423. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19424. {
  19425. side: {
  19426. height: math.unit(55, "feet"),
  19427. weight: math.unit(153, "tons"),
  19428. name: "Side",
  19429. image: {
  19430. source: "./media/characters/shadow/side.svg",
  19431. extra: 701 / 628,
  19432. bottom: 0.02
  19433. }
  19434. },
  19435. flying: {
  19436. height: math.unit(145, "feet"),
  19437. weight: math.unit(153, "tons"),
  19438. name: "Flying",
  19439. image: {
  19440. source: "./media/characters/shadow/flying.svg"
  19441. }
  19442. },
  19443. },
  19444. [
  19445. {
  19446. name: "Normal",
  19447. height: math.unit(55, "feet"),
  19448. default: true
  19449. },
  19450. ]
  19451. ))
  19452. characterMakers.push(() => makeCharacter(
  19453. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19454. {
  19455. front: {
  19456. height: math.unit(6, "feet"),
  19457. weight: math.unit(200, "lb"),
  19458. name: "Front",
  19459. image: {
  19460. source: "./media/characters/marcie/front.svg",
  19461. extra: 960 / 876,
  19462. bottom: 58 / 1017.87
  19463. }
  19464. },
  19465. },
  19466. [
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(1, "mile"),
  19470. default: true
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19476. {
  19477. front: {
  19478. height: math.unit(7, "feet"),
  19479. weight: math.unit(200, "lb"),
  19480. name: "Front",
  19481. image: {
  19482. source: "./media/characters/kachina/front.svg",
  19483. extra: 1290.68 / 1119,
  19484. bottom: 36.5 / 1327.18
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(7, "feet"),
  19492. default: true
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19498. {
  19499. looking: {
  19500. height: math.unit(2, "meters"),
  19501. weight: math.unit(300, "kg"),
  19502. name: "Looking",
  19503. image: {
  19504. source: "./media/characters/kash/looking.svg",
  19505. extra: 474 / 344,
  19506. bottom: 0.03
  19507. }
  19508. },
  19509. side: {
  19510. height: math.unit(2, "meters"),
  19511. weight: math.unit(300, "kg"),
  19512. name: "Side",
  19513. image: {
  19514. source: "./media/characters/kash/side.svg",
  19515. extra: 302 / 251,
  19516. bottom: 0.03
  19517. }
  19518. },
  19519. front: {
  19520. height: math.unit(2, "meters"),
  19521. weight: math.unit(300, "kg"),
  19522. name: "Front",
  19523. image: {
  19524. source: "./media/characters/kash/front.svg",
  19525. extra: 495 / 360,
  19526. bottom: 0.015
  19527. }
  19528. },
  19529. },
  19530. [
  19531. {
  19532. name: "Normal",
  19533. height: math.unit(2, "meters"),
  19534. default: true
  19535. },
  19536. {
  19537. name: "Big",
  19538. height: math.unit(3, "meters")
  19539. },
  19540. {
  19541. name: "Large",
  19542. height: math.unit(5, "meters")
  19543. },
  19544. ]
  19545. ))
  19546. characterMakers.push(() => makeCharacter(
  19547. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19548. {
  19549. feeding: {
  19550. height: math.unit(6.7, "feet"),
  19551. weight: math.unit(350, "lb"),
  19552. name: "Feeding",
  19553. image: {
  19554. source: "./media/characters/lalim/feeding.svg",
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(6.7, "feet"),
  19562. default: true
  19563. },
  19564. ]
  19565. ))
  19566. characterMakers.push(() => makeCharacter(
  19567. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19568. {
  19569. front: {
  19570. height: math.unit(9.5, "feet"),
  19571. weight: math.unit(600, "lb"),
  19572. name: "Front",
  19573. image: {
  19574. source: "./media/characters/de'vout/front.svg",
  19575. extra: 1443 / 1328,
  19576. bottom: 0.025
  19577. }
  19578. },
  19579. back: {
  19580. height: math.unit(9.5, "feet"),
  19581. weight: math.unit(600, "lb"),
  19582. name: "Back",
  19583. image: {
  19584. source: "./media/characters/de'vout/back.svg",
  19585. extra: 1443 / 1328
  19586. }
  19587. },
  19588. frontDressed: {
  19589. height: math.unit(9.5, "feet"),
  19590. weight: math.unit(600, "lb"),
  19591. name: "Front (Dressed",
  19592. image: {
  19593. source: "./media/characters/de'vout/front-dressed.svg",
  19594. extra: 1443 / 1328,
  19595. bottom: 0.025
  19596. }
  19597. },
  19598. backDressed: {
  19599. height: math.unit(9.5, "feet"),
  19600. weight: math.unit(600, "lb"),
  19601. name: "Back (Dressed",
  19602. image: {
  19603. source: "./media/characters/de'vout/back-dressed.svg",
  19604. extra: 1443 / 1328
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(9.5, "feet"),
  19612. default: true
  19613. },
  19614. ]
  19615. ))
  19616. characterMakers.push(() => makeCharacter(
  19617. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19618. {
  19619. front: {
  19620. height: math.unit(8, "feet"),
  19621. weight: math.unit(225, "lb"),
  19622. name: "Front",
  19623. image: {
  19624. source: "./media/characters/talana/front.svg",
  19625. extra: 1410 / 1300,
  19626. bottom: 0.015
  19627. }
  19628. },
  19629. frontDressed: {
  19630. height: math.unit(8, "feet"),
  19631. weight: math.unit(225, "lb"),
  19632. name: "Front (Dressed",
  19633. image: {
  19634. source: "./media/characters/talana/front-dressed.svg",
  19635. extra: 1410 / 1300,
  19636. bottom: 0.015
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(8, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19650. {
  19651. side: {
  19652. height: math.unit(7.2, "feet"),
  19653. weight: math.unit(150, "lb"),
  19654. name: "Side",
  19655. image: {
  19656. source: "./media/characters/xeauvok/side.svg",
  19657. extra: 1975 / 1523,
  19658. bottom: 0.07
  19659. }
  19660. },
  19661. },
  19662. [
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(7.2, "feet"),
  19666. default: true
  19667. },
  19668. ]
  19669. ))
  19670. characterMakers.push(() => makeCharacter(
  19671. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19672. {
  19673. side: {
  19674. height: math.unit(4, "meters"),
  19675. weight: math.unit(2200, "kg"),
  19676. name: "Side",
  19677. image: {
  19678. source: "./media/characters/zara/side.svg",
  19679. extra: 765/744,
  19680. bottom: 156/921
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(4, "meters"),
  19688. default: true
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19694. {
  19695. side: {
  19696. height: math.unit(6, "feet"),
  19697. weight: math.unit(150, "lb"),
  19698. name: "Side",
  19699. image: {
  19700. source: "./media/characters/richard-dragon/side.svg",
  19701. extra: 845 / 340,
  19702. bottom: 0.017
  19703. }
  19704. },
  19705. maw: {
  19706. height: math.unit(2.97, "feet"),
  19707. name: "Maw",
  19708. image: {
  19709. source: "./media/characters/richard-dragon/maw.svg"
  19710. }
  19711. },
  19712. },
  19713. [
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(4, "feet"),
  19721. weight: math.unit(100, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/richard-smeargle/front.svg",
  19725. extra: 2952 / 2820,
  19726. bottom: 0.028
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(4, "feet"),
  19734. default: true
  19735. },
  19736. {
  19737. name: "Dynamax",
  19738. height: math.unit(20, "meters")
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(6, "feet"),
  19747. weight: math.unit(110, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/klay/front.svg",
  19751. extra: 962 / 883,
  19752. bottom: 0.04
  19753. }
  19754. },
  19755. back: {
  19756. height: math.unit(6, "feet"),
  19757. weight: math.unit(110, "lb"),
  19758. name: "Back",
  19759. image: {
  19760. source: "./media/characters/klay/back.svg",
  19761. extra: 962 / 883
  19762. }
  19763. },
  19764. beans: {
  19765. height: math.unit(1.15, "feet"),
  19766. name: "Beans",
  19767. image: {
  19768. source: "./media/characters/klay/beans.svg"
  19769. }
  19770. },
  19771. },
  19772. [
  19773. {
  19774. name: "Micro",
  19775. height: math.unit(6, "inches")
  19776. },
  19777. {
  19778. name: "Mini",
  19779. height: math.unit(3, "feet")
  19780. },
  19781. {
  19782. name: "Normal",
  19783. height: math.unit(6, "feet"),
  19784. default: true
  19785. },
  19786. {
  19787. name: "Big",
  19788. height: math.unit(25, "feet")
  19789. },
  19790. {
  19791. name: "Macro",
  19792. height: math.unit(100, "feet")
  19793. },
  19794. {
  19795. name: "Megamacro",
  19796. height: math.unit(400, "feet")
  19797. },
  19798. ]
  19799. ))
  19800. characterMakers.push(() => makeCharacter(
  19801. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19802. {
  19803. front: {
  19804. height: math.unit(6, "feet"),
  19805. weight: math.unit(160, "lb"),
  19806. name: "Front",
  19807. image: {
  19808. source: "./media/characters/marcus/front.svg",
  19809. extra: 734 / 676,
  19810. bottom: 0.03
  19811. }
  19812. },
  19813. },
  19814. [
  19815. {
  19816. name: "Little",
  19817. height: math.unit(6, "feet")
  19818. },
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(110, "feet"),
  19822. default: true
  19823. },
  19824. {
  19825. name: "Macro",
  19826. height: math.unit(250, "feet")
  19827. },
  19828. {
  19829. name: "Megamacro",
  19830. height: math.unit(1000, "feet")
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19836. {
  19837. front: {
  19838. height: math.unit(7, "feet"),
  19839. weight: math.unit(275, "lb"),
  19840. name: "Front",
  19841. image: {
  19842. source: "./media/characters/claude-delroute/front.svg",
  19843. extra: 902/827,
  19844. bottom: 26/928
  19845. }
  19846. },
  19847. side: {
  19848. height: math.unit(7, "feet"),
  19849. weight: math.unit(275, "lb"),
  19850. name: "Side",
  19851. image: {
  19852. source: "./media/characters/claude-delroute/side.svg",
  19853. extra: 908/853,
  19854. bottom: 16/924
  19855. }
  19856. },
  19857. back: {
  19858. height: math.unit(7, "feet"),
  19859. weight: math.unit(275, "lb"),
  19860. name: "Back",
  19861. image: {
  19862. source: "./media/characters/claude-delroute/back.svg",
  19863. extra: 911/829,
  19864. bottom: 18/929
  19865. }
  19866. },
  19867. maw: {
  19868. height: math.unit(0.6407, "meters"),
  19869. name: "Maw",
  19870. image: {
  19871. source: "./media/characters/claude-delroute/maw.svg"
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(7, "feet"),
  19879. default: true
  19880. },
  19881. {
  19882. name: "Lorge",
  19883. height: math.unit(20, "feet")
  19884. },
  19885. ]
  19886. ))
  19887. characterMakers.push(() => makeCharacter(
  19888. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19889. {
  19890. front: {
  19891. height: math.unit(8 + 4 / 12, "feet"),
  19892. weight: math.unit(600, "lb"),
  19893. name: "Front",
  19894. image: {
  19895. source: "./media/characters/dragonien/front.svg",
  19896. extra: 100 / 94,
  19897. bottom: 3.3 / 103.3445
  19898. }
  19899. },
  19900. back: {
  19901. height: math.unit(8 + 4 / 12, "feet"),
  19902. weight: math.unit(600, "lb"),
  19903. name: "Back",
  19904. image: {
  19905. source: "./media/characters/dragonien/back.svg",
  19906. extra: 776 / 746,
  19907. bottom: 6.4 / 782.0616
  19908. }
  19909. },
  19910. foot: {
  19911. height: math.unit(1.54, "feet"),
  19912. name: "Foot",
  19913. image: {
  19914. source: "./media/characters/dragonien/foot.svg",
  19915. }
  19916. },
  19917. },
  19918. [
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(8 + 4 / 12, "feet"),
  19922. default: true
  19923. },
  19924. {
  19925. name: "Macro",
  19926. height: math.unit(200, "feet")
  19927. },
  19928. {
  19929. name: "Megamacro",
  19930. height: math.unit(1, "mile")
  19931. },
  19932. {
  19933. name: "Gigamacro",
  19934. height: math.unit(1000, "miles")
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19940. {
  19941. front: {
  19942. height: math.unit(5 + 2 / 12, "feet"),
  19943. weight: math.unit(110, "lb"),
  19944. name: "Front",
  19945. image: {
  19946. source: "./media/characters/desta/front.svg",
  19947. extra: 767 / 726,
  19948. bottom: 11.7 / 779
  19949. }
  19950. },
  19951. back: {
  19952. height: math.unit(5 + 2 / 12, "feet"),
  19953. weight: math.unit(110, "lb"),
  19954. name: "Back",
  19955. image: {
  19956. source: "./media/characters/desta/back.svg",
  19957. extra: 777 / 728,
  19958. bottom: 6 / 784
  19959. }
  19960. },
  19961. frontAlt: {
  19962. height: math.unit(5 + 2 / 12, "feet"),
  19963. weight: math.unit(110, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/desta/front-alt.svg",
  19967. extra: 1482 / 1417
  19968. }
  19969. },
  19970. side: {
  19971. height: math.unit(5 + 2 / 12, "feet"),
  19972. weight: math.unit(110, "lb"),
  19973. name: "Side",
  19974. image: {
  19975. source: "./media/characters/desta/side.svg",
  19976. extra: 2579 / 2491,
  19977. bottom: 0.053
  19978. }
  19979. },
  19980. },
  19981. [
  19982. {
  19983. name: "Micro",
  19984. height: math.unit(6, "inches")
  19985. },
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(5 + 2 / 12, "feet"),
  19989. default: true
  19990. },
  19991. {
  19992. name: "Macro",
  19993. height: math.unit(62, "feet")
  19994. },
  19995. {
  19996. name: "Megamacro",
  19997. height: math.unit(1800, "feet")
  19998. },
  19999. ]
  20000. ))
  20001. characterMakers.push(() => makeCharacter(
  20002. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20003. {
  20004. front: {
  20005. height: math.unit(10, "feet"),
  20006. weight: math.unit(700, "lb"),
  20007. name: "Front",
  20008. image: {
  20009. source: "./media/characters/storm-alystar/front.svg",
  20010. extra: 2112 / 1898,
  20011. bottom: 0.034
  20012. }
  20013. },
  20014. },
  20015. [
  20016. {
  20017. name: "Micro",
  20018. height: math.unit(3.5, "inches")
  20019. },
  20020. {
  20021. name: "Normal",
  20022. height: math.unit(10, "feet"),
  20023. default: true
  20024. },
  20025. {
  20026. name: "Macro",
  20027. height: math.unit(400, "feet")
  20028. },
  20029. {
  20030. name: "Deific",
  20031. height: math.unit(60, "miles")
  20032. },
  20033. ]
  20034. ))
  20035. characterMakers.push(() => makeCharacter(
  20036. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20037. {
  20038. front: {
  20039. height: math.unit(2.35, "meters"),
  20040. weight: math.unit(119, "kg"),
  20041. name: "Front",
  20042. image: {
  20043. source: "./media/characters/ilia/front.svg",
  20044. extra: 1285 / 1255,
  20045. bottom: 0.06
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(2.35, "meters")
  20053. },
  20054. {
  20055. name: "Macro",
  20056. height: math.unit(140, "meters"),
  20057. default: true
  20058. },
  20059. {
  20060. name: "Megamacro",
  20061. height: math.unit(100, "miles")
  20062. },
  20063. ]
  20064. ))
  20065. characterMakers.push(() => makeCharacter(
  20066. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20067. {
  20068. front: {
  20069. height: math.unit(6 + 5 / 12, "feet"),
  20070. weight: math.unit(190, "lb"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/kingdead/front.svg",
  20074. extra: 1228 / 1177
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Micro",
  20081. height: math.unit(7, "inches")
  20082. },
  20083. {
  20084. name: "Normal",
  20085. height: math.unit(6 + 5 / 12, "feet")
  20086. },
  20087. {
  20088. name: "Macro",
  20089. height: math.unit(150, "feet"),
  20090. default: true
  20091. },
  20092. {
  20093. name: "Megamacro",
  20094. height: math.unit(200, "miles")
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20100. {
  20101. front: {
  20102. height: math.unit(8, "feet"),
  20103. weight: math.unit(600, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/kyrehx/front.svg",
  20107. extra: 1195 / 1095,
  20108. bottom: 0.034
  20109. }
  20110. },
  20111. },
  20112. [
  20113. {
  20114. name: "Micro",
  20115. height: math.unit(2, "inches")
  20116. },
  20117. {
  20118. name: "Normal",
  20119. height: math.unit(8, "feet"),
  20120. default: true
  20121. },
  20122. {
  20123. name: "Macro",
  20124. height: math.unit(255, "feet")
  20125. },
  20126. ]
  20127. ))
  20128. characterMakers.push(() => makeCharacter(
  20129. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20130. {
  20131. front: {
  20132. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20133. weight: math.unit(184, "lb"),
  20134. name: "Front",
  20135. image: {
  20136. source: "./media/characters/xang/front.svg",
  20137. extra: 845 / 755
  20138. }
  20139. },
  20140. },
  20141. [
  20142. {
  20143. name: "Normal",
  20144. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20145. default: true
  20146. },
  20147. {
  20148. name: "Macro",
  20149. height: math.unit(0.935 * 146, "feet")
  20150. },
  20151. {
  20152. name: "Megamacro",
  20153. height: math.unit(0.935 * 3, "miles")
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20159. {
  20160. frontDressed: {
  20161. height: math.unit(5 + 7 / 12, "feet"),
  20162. weight: math.unit(140, "lb"),
  20163. name: "Front (Dressed)",
  20164. image: {
  20165. source: "./media/characters/doc-weardno/front-dressed.svg",
  20166. extra: 263 / 234
  20167. }
  20168. },
  20169. backDressed: {
  20170. height: math.unit(5 + 7 / 12, "feet"),
  20171. weight: math.unit(140, "lb"),
  20172. name: "Back (Dressed)",
  20173. image: {
  20174. source: "./media/characters/doc-weardno/back-dressed.svg",
  20175. extra: 266 / 238
  20176. }
  20177. },
  20178. front: {
  20179. height: math.unit(5 + 7 / 12, "feet"),
  20180. weight: math.unit(140, "lb"),
  20181. name: "Front",
  20182. image: {
  20183. source: "./media/characters/doc-weardno/front.svg",
  20184. extra: 254 / 233
  20185. }
  20186. },
  20187. },
  20188. [
  20189. {
  20190. name: "Micro",
  20191. height: math.unit(3, "inches")
  20192. },
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(5 + 7 / 12, "feet"),
  20196. default: true
  20197. },
  20198. {
  20199. name: "Macro",
  20200. height: math.unit(25, "feet")
  20201. },
  20202. {
  20203. name: "Megamacro",
  20204. height: math.unit(2, "miles")
  20205. },
  20206. ]
  20207. ))
  20208. characterMakers.push(() => makeCharacter(
  20209. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20210. {
  20211. front: {
  20212. height: math.unit(6 + 2 / 12, "feet"),
  20213. weight: math.unit(153, "lb"),
  20214. name: "Front",
  20215. image: {
  20216. source: "./media/characters/seth-whilst/front.svg",
  20217. bottom: 0.07
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Micro",
  20224. height: math.unit(5, "inches")
  20225. },
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(6 + 2 / 12, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(3, "inches"),
  20238. weight: math.unit(8, "grams"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/pocket-jabari/front.svg",
  20242. extra: 1024 / 974,
  20243. bottom: 0.039
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Minimicro",
  20250. height: math.unit(8, "mm")
  20251. },
  20252. {
  20253. name: "Micro",
  20254. height: math.unit(3, "inches"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Normal",
  20259. height: math.unit(3, "feet")
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20265. {
  20266. frontDressed: {
  20267. height: math.unit(15, "feet"),
  20268. weight: math.unit(3280, "lb"),
  20269. name: "Front (Dressed)",
  20270. image: {
  20271. source: "./media/characters/sapphy/front-dressed.svg",
  20272. extra: 1951/1654,
  20273. bottom: 194/2145
  20274. },
  20275. form: "anthro",
  20276. default: true
  20277. },
  20278. backDressed: {
  20279. height: math.unit(15, "feet"),
  20280. weight: math.unit(3280, "lb"),
  20281. name: "Back (Dressed)",
  20282. image: {
  20283. source: "./media/characters/sapphy/back-dressed.svg",
  20284. extra: 2058/1918,
  20285. bottom: 125/2183
  20286. },
  20287. form: "anthro"
  20288. },
  20289. frontNude: {
  20290. height: math.unit(15, "feet"),
  20291. weight: math.unit(3280, "lb"),
  20292. name: "Front (Nude)",
  20293. image: {
  20294. source: "./media/characters/sapphy/front-nude.svg",
  20295. extra: 1951/1654,
  20296. bottom: 194/2145
  20297. },
  20298. form: "anthro"
  20299. },
  20300. backNude: {
  20301. height: math.unit(15, "feet"),
  20302. weight: math.unit(3280, "lb"),
  20303. name: "Back (Nude)",
  20304. image: {
  20305. source: "./media/characters/sapphy/back-nude.svg",
  20306. extra: 2058/1918,
  20307. bottom: 125/2183
  20308. },
  20309. form: "anthro"
  20310. },
  20311. full: {
  20312. height: math.unit(15, "feet"),
  20313. weight: math.unit(3280, "lb"),
  20314. name: "Full",
  20315. image: {
  20316. source: "./media/characters/sapphy/full.svg",
  20317. extra: 1396/1317,
  20318. bottom: 44/1440
  20319. },
  20320. form: "anthro"
  20321. },
  20322. dick: {
  20323. height: math.unit(3.8, "feet"),
  20324. name: "Dick",
  20325. image: {
  20326. source: "./media/characters/sapphy/dick.svg"
  20327. },
  20328. form: "anthro"
  20329. },
  20330. feral: {
  20331. height: math.unit(35, "feet"),
  20332. weight: math.unit(160, "tons"),
  20333. name: "Feral",
  20334. image: {
  20335. source: "./media/characters/sapphy/feral.svg",
  20336. extra: 1050/573,
  20337. bottom: 60/1110
  20338. },
  20339. form: "feral",
  20340. default: true
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(15, "feet"),
  20347. form: "anthro"
  20348. },
  20349. {
  20350. name: "Casual Macro",
  20351. height: math.unit(120, "feet"),
  20352. form: "anthro"
  20353. },
  20354. {
  20355. name: "Macro",
  20356. height: math.unit(2150, "feet"),
  20357. default: true,
  20358. form: "anthro"
  20359. },
  20360. {
  20361. name: "Megamacro",
  20362. height: math.unit(8, "miles"),
  20363. form: "anthro"
  20364. },
  20365. {
  20366. name: "Galaxy Mom",
  20367. height: math.unit(6, "megalightyears"),
  20368. form: "anthro"
  20369. },
  20370. {
  20371. name: "Normal",
  20372. height: math.unit(35, "feet"),
  20373. form: "feral",
  20374. default: true
  20375. },
  20376. {
  20377. name: "Macro",
  20378. height: math.unit(300, "feet"),
  20379. form: "feral"
  20380. },
  20381. {
  20382. name: "Galaxy Mom",
  20383. height: math.unit(10, "megalightyears"),
  20384. form: "feral"
  20385. },
  20386. ],
  20387. {
  20388. "anthro": {
  20389. name: "Anthro",
  20390. default: true
  20391. },
  20392. "feral": {
  20393. name: "Feral"
  20394. }
  20395. }
  20396. ))
  20397. characterMakers.push(() => makeCharacter(
  20398. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20399. {
  20400. hyenaFront: {
  20401. height: math.unit(6, "feet"),
  20402. weight: math.unit(190, "lb"),
  20403. name: "Front",
  20404. image: {
  20405. source: "./media/characters/kiro/hyena-front.svg",
  20406. extra: 927/839,
  20407. bottom: 91/1018
  20408. },
  20409. form: "hyena",
  20410. default: true
  20411. },
  20412. front: {
  20413. height: math.unit(6, "feet"),
  20414. weight: math.unit(170, "lb"),
  20415. name: "Front",
  20416. image: {
  20417. source: "./media/characters/kiro/front.svg",
  20418. extra: 1064 / 1012,
  20419. bottom: 0.052
  20420. },
  20421. form: "folf",
  20422. default: true
  20423. },
  20424. },
  20425. [
  20426. {
  20427. name: "Micro",
  20428. height: math.unit(6, "inches"),
  20429. form: "folf"
  20430. },
  20431. {
  20432. name: "Normal",
  20433. height: math.unit(6, "feet"),
  20434. form: "folf",
  20435. default: true
  20436. },
  20437. {
  20438. name: "Macro",
  20439. height: math.unit(72, "feet"),
  20440. form: "folf"
  20441. },
  20442. {
  20443. name: "Micro",
  20444. height: math.unit(6, "inches"),
  20445. form: "hyena"
  20446. },
  20447. {
  20448. name: "Normal",
  20449. height: math.unit(6, "feet"),
  20450. form: "hyena",
  20451. default: true
  20452. },
  20453. {
  20454. name: "Macro",
  20455. height: math.unit(72, "feet"),
  20456. form: "hyena"
  20457. },
  20458. ],
  20459. {
  20460. "hyena": {
  20461. name: "Hyena",
  20462. default: true
  20463. },
  20464. "folf": {
  20465. name: "Folf",
  20466. },
  20467. }
  20468. ))
  20469. characterMakers.push(() => makeCharacter(
  20470. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20471. {
  20472. front: {
  20473. height: math.unit(5 + 9 / 12, "feet"),
  20474. weight: math.unit(175, "lb"),
  20475. name: "Front",
  20476. image: {
  20477. source: "./media/characters/irishfox/front.svg",
  20478. extra: 1912 / 1680,
  20479. bottom: 0.02
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Nano",
  20486. height: math.unit(1, "mm")
  20487. },
  20488. {
  20489. name: "Micro",
  20490. height: math.unit(2, "inches")
  20491. },
  20492. {
  20493. name: "Normal",
  20494. height: math.unit(5 + 9 / 12, "feet"),
  20495. default: true
  20496. },
  20497. {
  20498. name: "Macro",
  20499. height: math.unit(45, "feet")
  20500. },
  20501. ]
  20502. ))
  20503. characterMakers.push(() => makeCharacter(
  20504. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20505. {
  20506. front: {
  20507. height: math.unit(6 + 1 / 12, "feet"),
  20508. weight: math.unit(75, "lb"),
  20509. name: "Front",
  20510. image: {
  20511. source: "./media/characters/aronai-sieyes/front.svg",
  20512. extra: 1532/1450,
  20513. bottom: 42/1574
  20514. }
  20515. },
  20516. side: {
  20517. height: math.unit(6 + 1 / 12, "feet"),
  20518. weight: math.unit(75, "lb"),
  20519. name: "Side",
  20520. image: {
  20521. source: "./media/characters/aronai-sieyes/side.svg",
  20522. extra: 1422/1365,
  20523. bottom: 148/1570
  20524. }
  20525. },
  20526. back: {
  20527. height: math.unit(6 + 1 / 12, "feet"),
  20528. weight: math.unit(75, "lb"),
  20529. name: "Back",
  20530. image: {
  20531. source: "./media/characters/aronai-sieyes/back.svg",
  20532. extra: 1526/1464,
  20533. bottom: 51/1577
  20534. }
  20535. },
  20536. dressed: {
  20537. height: math.unit(6 + 1 / 12, "feet"),
  20538. weight: math.unit(75, "lb"),
  20539. name: "Dressed",
  20540. image: {
  20541. source: "./media/characters/aronai-sieyes/dressed.svg",
  20542. extra: 1559/1483,
  20543. bottom: 39/1598
  20544. }
  20545. },
  20546. slit: {
  20547. height: math.unit(1.3, "feet"),
  20548. name: "Slit",
  20549. image: {
  20550. source: "./media/characters/aronai-sieyes/slit.svg"
  20551. }
  20552. },
  20553. slitSpread: {
  20554. height: math.unit(0.9, "feet"),
  20555. name: "Slit (Spread)",
  20556. image: {
  20557. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20558. }
  20559. },
  20560. rump: {
  20561. height: math.unit(1.3, "feet"),
  20562. name: "Rump",
  20563. image: {
  20564. source: "./media/characters/aronai-sieyes/rump.svg"
  20565. }
  20566. },
  20567. maw: {
  20568. height: math.unit(1.25, "feet"),
  20569. name: "Maw",
  20570. image: {
  20571. source: "./media/characters/aronai-sieyes/maw.svg"
  20572. }
  20573. },
  20574. feral: {
  20575. height: math.unit(18, "feet"),
  20576. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20577. name: "Feral",
  20578. image: {
  20579. source: "./media/characters/aronai-sieyes/feral.svg",
  20580. extra: 1530 / 1240,
  20581. bottom: 0.035
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Micro",
  20588. height: math.unit(2, "inches")
  20589. },
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(6 + 1 / 12, "feet"),
  20593. default: true
  20594. }
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20599. {
  20600. front: {
  20601. height: math.unit(12, "feet"),
  20602. weight: math.unit(410, "kg"),
  20603. name: "Front",
  20604. image: {
  20605. source: "./media/characters/xuna/front.svg",
  20606. extra: 2184 / 1980
  20607. }
  20608. },
  20609. side: {
  20610. height: math.unit(12, "feet"),
  20611. weight: math.unit(410, "kg"),
  20612. name: "Side",
  20613. image: {
  20614. source: "./media/characters/xuna/side.svg",
  20615. extra: 2184 / 1980
  20616. }
  20617. },
  20618. back: {
  20619. height: math.unit(12, "feet"),
  20620. weight: math.unit(410, "kg"),
  20621. name: "Back",
  20622. image: {
  20623. source: "./media/characters/xuna/back.svg",
  20624. extra: 2184 / 1980
  20625. }
  20626. },
  20627. },
  20628. [
  20629. {
  20630. name: "Nano glow",
  20631. height: math.unit(10, "nm")
  20632. },
  20633. {
  20634. name: "Micro floof",
  20635. height: math.unit(0.3, "m")
  20636. },
  20637. {
  20638. name: "Huggable softy boi",
  20639. height: math.unit(3.6576, "m"),
  20640. default: true
  20641. },
  20642. {
  20643. name: "Admirable floof",
  20644. height: math.unit(80, "meters")
  20645. },
  20646. {
  20647. name: "Gentle macro",
  20648. height: math.unit(300, "meters")
  20649. },
  20650. {
  20651. name: "Very careful floof",
  20652. height: math.unit(3200, "meters")
  20653. },
  20654. {
  20655. name: "The mega floof",
  20656. height: math.unit(36000, "meters")
  20657. },
  20658. {
  20659. name: "Giga-fur-Wicker",
  20660. height: math.unit(4800000, "meters")
  20661. },
  20662. {
  20663. name: "Licky world",
  20664. height: math.unit(20000000, "meters")
  20665. },
  20666. {
  20667. name: "Floofy cyan sun",
  20668. height: math.unit(1500000000, "meters")
  20669. },
  20670. {
  20671. name: "Milky Wicker",
  20672. height: math.unit(1000000000000000000000, "meters")
  20673. },
  20674. {
  20675. name: "The observing Wicker",
  20676. height: math.unit(999999999999999999999999999, "meters")
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(5 + 9 / 12, "feet"),
  20685. weight: math.unit(150, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/arokha-sieyes/front.svg",
  20689. extra: 1425 / 1284,
  20690. bottom: 0.05
  20691. }
  20692. },
  20693. },
  20694. [
  20695. {
  20696. name: "Normal",
  20697. height: math.unit(5 + 9 / 12, "feet")
  20698. },
  20699. {
  20700. name: "Macro",
  20701. height: math.unit(30, "meters"),
  20702. default: true
  20703. },
  20704. ]
  20705. ))
  20706. characterMakers.push(() => makeCharacter(
  20707. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20708. {
  20709. front: {
  20710. height: math.unit(6, "feet"),
  20711. weight: math.unit(180, "lb"),
  20712. name: "Front",
  20713. image: {
  20714. source: "./media/characters/arokh-sieyes/front.svg",
  20715. extra: 1830 / 1769,
  20716. bottom: 0.01
  20717. }
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "Normal",
  20723. height: math.unit(6, "feet")
  20724. },
  20725. {
  20726. name: "Macro",
  20727. height: math.unit(30, "meters"),
  20728. default: true
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20734. {
  20735. side: {
  20736. height: math.unit(13 + 1 / 12, "feet"),
  20737. weight: math.unit(8.5, "tonnes"),
  20738. preyCapacity: math.unit(36, "people"),
  20739. name: "Side",
  20740. image: {
  20741. source: "./media/characters/goldeneye/side.svg",
  20742. extra: 1139/741,
  20743. bottom: 98/1237
  20744. }
  20745. },
  20746. front: {
  20747. height: math.unit(5.1, "feet"),
  20748. weight: math.unit(8.5, "tonnes"),
  20749. preyCapacity: math.unit(36, "people"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/goldeneye/front.svg",
  20753. extra: 635/365,
  20754. bottom: 598/1233
  20755. }
  20756. },
  20757. maw: {
  20758. height: math.unit(6.6, "feet"),
  20759. name: "Maw",
  20760. image: {
  20761. source: "./media/characters/goldeneye/maw.svg"
  20762. }
  20763. },
  20764. headFront: {
  20765. height: math.unit(8, "feet"),
  20766. name: "Head (Front)",
  20767. image: {
  20768. source: "./media/characters/goldeneye/head-front.svg"
  20769. }
  20770. },
  20771. headSide: {
  20772. height: math.unit(6, "feet"),
  20773. name: "Head (Side)",
  20774. image: {
  20775. source: "./media/characters/goldeneye/head-side.svg"
  20776. }
  20777. },
  20778. headBack: {
  20779. height: math.unit(8, "feet"),
  20780. name: "Head (Back)",
  20781. image: {
  20782. source: "./media/characters/goldeneye/head-back.svg"
  20783. }
  20784. },
  20785. paw: {
  20786. height: math.unit(3.4, "feet"),
  20787. name: "Paw",
  20788. image: {
  20789. source: "./media/characters/goldeneye/paw.svg"
  20790. }
  20791. },
  20792. toering: {
  20793. height: math.unit(0.45, "feet"),
  20794. name: "Toering",
  20795. image: {
  20796. source: "./media/characters/goldeneye/toering.svg"
  20797. }
  20798. },
  20799. eyes: {
  20800. height: math.unit(0.5, "feet"),
  20801. name: "Eyes",
  20802. image: {
  20803. source: "./media/characters/goldeneye/eyes.svg"
  20804. }
  20805. },
  20806. },
  20807. [
  20808. {
  20809. name: "Normal",
  20810. height: math.unit(13 + 1 / 12, "feet"),
  20811. default: true
  20812. },
  20813. ]
  20814. ))
  20815. characterMakers.push(() => makeCharacter(
  20816. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20817. {
  20818. front: {
  20819. height: math.unit(6 + 1 / 12, "feet"),
  20820. weight: math.unit(210, "lb"),
  20821. name: "Front",
  20822. image: {
  20823. source: "./media/characters/leonardo-lycheborne/front.svg",
  20824. extra: 776/723,
  20825. bottom: 34/810
  20826. }
  20827. },
  20828. side: {
  20829. height: math.unit(6 + 1 / 12, "feet"),
  20830. weight: math.unit(210, "lb"),
  20831. name: "Side",
  20832. image: {
  20833. source: "./media/characters/leonardo-lycheborne/side.svg",
  20834. extra: 780/728,
  20835. bottom: 12/792
  20836. }
  20837. },
  20838. back: {
  20839. height: math.unit(6 + 1 / 12, "feet"),
  20840. weight: math.unit(210, "lb"),
  20841. name: "Back",
  20842. image: {
  20843. source: "./media/characters/leonardo-lycheborne/back.svg",
  20844. extra: 775/721,
  20845. bottom: 17/792
  20846. }
  20847. },
  20848. hand: {
  20849. height: math.unit(1.08, "feet"),
  20850. name: "Hand",
  20851. image: {
  20852. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20853. }
  20854. },
  20855. foot: {
  20856. height: math.unit(1.32, "feet"),
  20857. name: "Foot",
  20858. image: {
  20859. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20860. }
  20861. },
  20862. maw: {
  20863. height: math.unit(1, "feet"),
  20864. name: "Maw",
  20865. image: {
  20866. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20867. }
  20868. },
  20869. were: {
  20870. height: math.unit(20, "feet"),
  20871. weight: math.unit(7800, "lb"),
  20872. name: "Were",
  20873. image: {
  20874. source: "./media/characters/leonardo-lycheborne/were.svg",
  20875. extra: 1224/1165,
  20876. bottom: 72/1296
  20877. }
  20878. },
  20879. feral: {
  20880. height: math.unit(7.5, "feet"),
  20881. weight: math.unit(600, "lb"),
  20882. name: "Feral",
  20883. image: {
  20884. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20885. extra: 797/702,
  20886. bottom: 139/936
  20887. }
  20888. },
  20889. taur: {
  20890. height: math.unit(11, "feet"),
  20891. weight: math.unit(3300, "lb"),
  20892. name: "Taur",
  20893. image: {
  20894. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20895. extra: 1271/1197,
  20896. bottom: 47/1318
  20897. }
  20898. },
  20899. barghest: {
  20900. height: math.unit(11, "feet"),
  20901. weight: math.unit(1300, "lb"),
  20902. name: "Barghest",
  20903. image: {
  20904. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20905. extra: 1291/1204,
  20906. bottom: 37/1328
  20907. }
  20908. },
  20909. dick: {
  20910. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20911. name: "Dick",
  20912. image: {
  20913. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20914. }
  20915. },
  20916. dickWere: {
  20917. height: math.unit((20) / 3.8, "feet"),
  20918. name: "Dick (Were)",
  20919. image: {
  20920. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20921. }
  20922. },
  20923. },
  20924. [
  20925. {
  20926. name: "Normal",
  20927. height: math.unit(6 + 1 / 12, "feet"),
  20928. default: true
  20929. },
  20930. ]
  20931. ))
  20932. characterMakers.push(() => makeCharacter(
  20933. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20934. {
  20935. front: {
  20936. height: math.unit(10, "feet"),
  20937. weight: math.unit(350, "lb"),
  20938. name: "Front",
  20939. image: {
  20940. source: "./media/characters/jet/front.svg",
  20941. extra: 2050 / 1980,
  20942. bottom: 0.013
  20943. }
  20944. },
  20945. back: {
  20946. height: math.unit(10, "feet"),
  20947. weight: math.unit(350, "lb"),
  20948. name: "Back",
  20949. image: {
  20950. source: "./media/characters/jet/back.svg",
  20951. extra: 2050 / 1980,
  20952. bottom: 0.013
  20953. }
  20954. },
  20955. },
  20956. [
  20957. {
  20958. name: "Micro",
  20959. height: math.unit(6, "inches")
  20960. },
  20961. {
  20962. name: "Normal",
  20963. height: math.unit(10, "feet"),
  20964. default: true
  20965. },
  20966. {
  20967. name: "Macro",
  20968. height: math.unit(100, "feet")
  20969. },
  20970. ]
  20971. ))
  20972. characterMakers.push(() => makeCharacter(
  20973. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20974. {
  20975. front: {
  20976. height: math.unit(15, "feet"),
  20977. weight: math.unit(2800, "lb"),
  20978. name: "Front",
  20979. image: {
  20980. source: "./media/characters/tanarath/front.svg",
  20981. extra: 2392 / 2220,
  20982. bottom: 0.03
  20983. }
  20984. },
  20985. back: {
  20986. height: math.unit(15, "feet"),
  20987. weight: math.unit(2800, "lb"),
  20988. name: "Back",
  20989. image: {
  20990. source: "./media/characters/tanarath/back.svg",
  20991. extra: 2392 / 2220,
  20992. bottom: 0.03
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(15, "feet"),
  21000. default: true
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(7 + 1 / 12, "feet"),
  21009. weight: math.unit(175, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/patty-cattybatty/front.svg",
  21013. extra: 908 / 874,
  21014. bottom: 0.025
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Micro",
  21021. height: math.unit(1, "inch")
  21022. },
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(7 + 1 / 12, "feet")
  21026. },
  21027. {
  21028. name: "Mini Macro",
  21029. height: math.unit(155, "feet")
  21030. },
  21031. {
  21032. name: "Macro",
  21033. height: math.unit(1077, "feet")
  21034. },
  21035. {
  21036. name: "Mega Macro",
  21037. height: math.unit(47650, "feet"),
  21038. default: true
  21039. },
  21040. {
  21041. name: "Giga Macro",
  21042. height: math.unit(440, "miles")
  21043. },
  21044. {
  21045. name: "Tera Macro",
  21046. height: math.unit(8700, "miles")
  21047. },
  21048. {
  21049. name: "Planetary Macro",
  21050. height: math.unit(32700, "miles")
  21051. },
  21052. {
  21053. name: "Solar Macro",
  21054. height: math.unit(550000, "miles")
  21055. },
  21056. {
  21057. name: "Celestial Macro",
  21058. height: math.unit(2.5, "AU")
  21059. },
  21060. ]
  21061. ))
  21062. characterMakers.push(() => makeCharacter(
  21063. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21064. {
  21065. front: {
  21066. height: math.unit(4 + 5 / 12, "feet"),
  21067. weight: math.unit(90, "lb"),
  21068. name: "Front",
  21069. image: {
  21070. source: "./media/characters/cappu/front.svg",
  21071. extra: 1247 / 1152,
  21072. bottom: 0.012
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(4 + 5 / 12, "feet"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21086. {
  21087. frontDressed: {
  21088. height: math.unit(70, "cm"),
  21089. weight: math.unit(6, "kg"),
  21090. name: "Front (Dressed)",
  21091. image: {
  21092. source: "./media/characters/sebi/front-dressed.svg",
  21093. extra: 713.5 / 686.5,
  21094. bottom: 0.003
  21095. }
  21096. },
  21097. front: {
  21098. height: math.unit(70, "cm"),
  21099. weight: math.unit(5, "kg"),
  21100. name: "Front",
  21101. image: {
  21102. source: "./media/characters/sebi/front.svg",
  21103. extra: 713.5 / 686.5,
  21104. bottom: 0.003
  21105. }
  21106. }
  21107. },
  21108. [
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(70, "cm"),
  21112. default: true
  21113. },
  21114. {
  21115. name: "Macro",
  21116. height: math.unit(8, "meters")
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(6, "feet"),
  21125. weight: math.unit(150, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/typhek/front.svg",
  21129. extra: 1948 / 1929,
  21130. bottom: 0.025
  21131. }
  21132. },
  21133. side: {
  21134. height: math.unit(6, "feet"),
  21135. weight: math.unit(150, "lb"),
  21136. name: "Side",
  21137. image: {
  21138. source: "./media/characters/typhek/side.svg",
  21139. extra: 2034 / 2010,
  21140. bottom: 0.003
  21141. }
  21142. },
  21143. back: {
  21144. height: math.unit(6, "feet"),
  21145. weight: math.unit(150, "lb"),
  21146. name: "Back",
  21147. image: {
  21148. source: "./media/characters/typhek/back.svg",
  21149. extra: 2005 / 1978,
  21150. bottom: 0.004
  21151. }
  21152. },
  21153. palm: {
  21154. height: math.unit(1.2, "feet"),
  21155. name: "Palm",
  21156. image: {
  21157. source: "./media/characters/typhek/palm.svg"
  21158. }
  21159. },
  21160. fist: {
  21161. height: math.unit(1.1, "feet"),
  21162. name: "Fist",
  21163. image: {
  21164. source: "./media/characters/typhek/fist.svg"
  21165. }
  21166. },
  21167. foot: {
  21168. height: math.unit(1.57, "feet"),
  21169. name: "Foot",
  21170. image: {
  21171. source: "./media/characters/typhek/foot.svg"
  21172. }
  21173. },
  21174. sole: {
  21175. height: math.unit(2.05, "feet"),
  21176. name: "Sole",
  21177. image: {
  21178. source: "./media/characters/typhek/sole.svg"
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Macro",
  21185. height: math.unit(40, "stories"),
  21186. default: true
  21187. },
  21188. {
  21189. name: "Megamacro",
  21190. height: math.unit(1, "mile")
  21191. },
  21192. {
  21193. name: "Gigamacro",
  21194. height: math.unit(4000, "solarradii")
  21195. },
  21196. {
  21197. name: "Universal",
  21198. height: math.unit(1.1, "universes")
  21199. }
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21204. {
  21205. side: {
  21206. height: math.unit(5 + 7 / 12, "feet"),
  21207. weight: math.unit(150, "lb"),
  21208. name: "Side",
  21209. image: {
  21210. source: "./media/characters/kassy/side.svg",
  21211. extra: 1280 / 1225,
  21212. bottom: 0.002
  21213. }
  21214. },
  21215. front: {
  21216. height: math.unit(5 + 7 / 12, "feet"),
  21217. weight: math.unit(150, "lb"),
  21218. name: "Front",
  21219. image: {
  21220. source: "./media/characters/kassy/front.svg",
  21221. extra: 1280 / 1225,
  21222. bottom: 0.025
  21223. }
  21224. },
  21225. back: {
  21226. height: math.unit(5 + 7 / 12, "feet"),
  21227. weight: math.unit(150, "lb"),
  21228. name: "Back",
  21229. image: {
  21230. source: "./media/characters/kassy/back.svg",
  21231. extra: 1280 / 1225,
  21232. bottom: 0.002
  21233. }
  21234. },
  21235. foot: {
  21236. height: math.unit(1.266, "feet"),
  21237. name: "Foot",
  21238. image: {
  21239. source: "./media/characters/kassy/foot.svg"
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(5 + 7 / 12, "feet")
  21247. },
  21248. {
  21249. name: "Macro",
  21250. height: math.unit(137, "feet"),
  21251. default: true
  21252. },
  21253. {
  21254. name: "Megamacro",
  21255. height: math.unit(1, "mile")
  21256. },
  21257. ]
  21258. ))
  21259. characterMakers.push(() => makeCharacter(
  21260. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21261. {
  21262. front: {
  21263. height: math.unit(6 + 1 / 12, "feet"),
  21264. weight: math.unit(200, "lb"),
  21265. name: "Front",
  21266. image: {
  21267. source: "./media/characters/neil/front.svg",
  21268. extra: 1326 / 1250,
  21269. bottom: 0.023
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(6 + 1 / 12, "feet"),
  21277. default: true
  21278. },
  21279. {
  21280. name: "Macro",
  21281. height: math.unit(200, "feet")
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(5 + 9 / 12, "feet"),
  21290. weight: math.unit(190, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/atticus/front.svg",
  21294. extra: 2934 / 2785,
  21295. bottom: 0.025
  21296. }
  21297. },
  21298. },
  21299. [
  21300. {
  21301. name: "Normal",
  21302. height: math.unit(5 + 9 / 12, "feet"),
  21303. default: true
  21304. },
  21305. {
  21306. name: "Macro",
  21307. height: math.unit(180, "feet")
  21308. },
  21309. ]
  21310. ))
  21311. characterMakers.push(() => makeCharacter(
  21312. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21313. {
  21314. side: {
  21315. height: math.unit(9, "feet"),
  21316. weight: math.unit(650, "lb"),
  21317. name: "Side",
  21318. image: {
  21319. source: "./media/characters/milo/side.svg",
  21320. extra: 2644 / 2310,
  21321. bottom: 0.032
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(9, "feet"),
  21329. default: true
  21330. },
  21331. {
  21332. name: "Macro",
  21333. height: math.unit(300, "feet")
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21339. {
  21340. side: {
  21341. height: math.unit(8, "meters"),
  21342. weight: math.unit(90000, "kg"),
  21343. name: "Side",
  21344. image: {
  21345. source: "./media/characters/ijzer/side.svg",
  21346. extra: 2756 / 1600,
  21347. bottom: 0.01
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Small",
  21354. height: math.unit(3, "meters")
  21355. },
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(8, "meters"),
  21359. default: true
  21360. },
  21361. {
  21362. name: "Normal+",
  21363. height: math.unit(10, "meters")
  21364. },
  21365. {
  21366. name: "Bigger",
  21367. height: math.unit(24, "meters")
  21368. },
  21369. {
  21370. name: "Huge",
  21371. height: math.unit(80, "meters")
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21377. {
  21378. front: {
  21379. height: math.unit(6 + 2 / 12, "feet"),
  21380. weight: math.unit(153, "lb"),
  21381. name: "Front",
  21382. image: {
  21383. source: "./media/characters/luca-cervicum/front.svg",
  21384. extra: 370 / 327,
  21385. bottom: 0.015
  21386. }
  21387. },
  21388. back: {
  21389. height: math.unit(6 + 2 / 12, "feet"),
  21390. weight: math.unit(153, "lb"),
  21391. name: "Back",
  21392. image: {
  21393. source: "./media/characters/luca-cervicum/back.svg",
  21394. extra: 367 / 333,
  21395. bottom: 0.005
  21396. }
  21397. },
  21398. frontGear: {
  21399. height: math.unit(6 + 2 / 12, "feet"),
  21400. weight: math.unit(173, "lb"),
  21401. name: "Front (Gear)",
  21402. image: {
  21403. source: "./media/characters/luca-cervicum/front-gear.svg",
  21404. extra: 377 / 333,
  21405. bottom: 0.006
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(6 + 2 / 12, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(6 + 1 / 12, "feet"),
  21422. weight: math.unit(304, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/oliver/front.svg",
  21426. extra: 157 / 143,
  21427. bottom: 0.08
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(6 + 1 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(5 + 7 / 12, "feet"),
  21444. weight: math.unit(140, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/shane/front.svg",
  21448. extra: 304 / 289,
  21449. bottom: 0.005
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(5 + 7 / 12, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(5 + 9 / 12, "feet"),
  21466. weight: math.unit(178, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/shin/front.svg",
  21470. extra: 159 / 151,
  21471. bottom: 0.015
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Normal",
  21478. height: math.unit(5 + 9 / 12, "feet"),
  21479. default: true
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(5 + 10 / 12, "feet"),
  21488. weight: math.unit(168, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/xerxes/front.svg",
  21492. extra: 282 / 260,
  21493. bottom: 0.045
  21494. }
  21495. },
  21496. },
  21497. [
  21498. {
  21499. name: "Normal",
  21500. height: math.unit(5 + 10 / 12, "feet"),
  21501. default: true
  21502. },
  21503. ]
  21504. ))
  21505. characterMakers.push(() => makeCharacter(
  21506. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21507. {
  21508. front: {
  21509. height: math.unit(6 + 7 / 12, "feet"),
  21510. weight: math.unit(208, "lb"),
  21511. name: "Front",
  21512. image: {
  21513. source: "./media/characters/chaska/front.svg",
  21514. extra: 332 / 319,
  21515. bottom: 0.015
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(6 + 7 / 12, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(5 + 8 / 12, "feet"),
  21532. weight: math.unit(208, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/enuk/front.svg",
  21536. extra: 437 / 406,
  21537. bottom: 0.02
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(5 + 8 / 12, "feet"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21551. {
  21552. front: {
  21553. height: math.unit(5 + 10 / 12, "feet"),
  21554. weight: math.unit(252, "lb"),
  21555. name: "Front",
  21556. image: {
  21557. source: "./media/characters/bruun/front.svg",
  21558. extra: 197 / 187,
  21559. bottom: 0.012
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(5 + 10 / 12, "feet"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(6 + 10 / 12, "feet"),
  21576. weight: math.unit(255, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/alexeev/front.svg",
  21580. extra: 213 / 200,
  21581. bottom: 0.05
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(6 + 10 / 12, "feet"),
  21589. default: true
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21595. {
  21596. front: {
  21597. height: math.unit(2 + 8 / 12, "feet"),
  21598. weight: math.unit(22, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/evelyn/front.svg",
  21602. extra: 208 / 180
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(2 + 8 / 12, "feet"),
  21610. default: true
  21611. },
  21612. ]
  21613. ))
  21614. characterMakers.push(() => makeCharacter(
  21615. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21616. {
  21617. front: {
  21618. height: math.unit(5 + 9 / 12, "feet"),
  21619. weight: math.unit(139, "lb"),
  21620. name: "Front",
  21621. image: {
  21622. source: "./media/characters/inca/front.svg",
  21623. extra: 294 / 291,
  21624. bottom: 0.03
  21625. }
  21626. },
  21627. },
  21628. [
  21629. {
  21630. name: "Normal",
  21631. height: math.unit(5 + 9 / 12, "feet"),
  21632. default: true
  21633. },
  21634. ]
  21635. ))
  21636. characterMakers.push(() => makeCharacter(
  21637. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21638. {
  21639. front: {
  21640. height: math.unit(6 + 3 / 12, "feet"),
  21641. weight: math.unit(185, "lb"),
  21642. name: "Front",
  21643. image: {
  21644. source: "./media/characters/mera/front.svg",
  21645. extra: 291 / 277,
  21646. bottom: 0.03
  21647. }
  21648. },
  21649. },
  21650. [
  21651. {
  21652. name: "Normal",
  21653. height: math.unit(6 + 3 / 12, "feet"),
  21654. default: true
  21655. },
  21656. ]
  21657. ))
  21658. characterMakers.push(() => makeCharacter(
  21659. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21660. {
  21661. front: {
  21662. height: math.unit(6 + 7 / 12, "feet"),
  21663. weight: math.unit(160, "lb"),
  21664. name: "Front",
  21665. image: {
  21666. source: "./media/characters/ceres/front.svg",
  21667. extra: 1023 / 950,
  21668. bottom: 0.027
  21669. }
  21670. },
  21671. back: {
  21672. height: math.unit(6 + 7 / 12, "feet"),
  21673. weight: math.unit(160, "lb"),
  21674. name: "Back",
  21675. image: {
  21676. source: "./media/characters/ceres/back.svg",
  21677. extra: 1023 / 950
  21678. }
  21679. },
  21680. },
  21681. [
  21682. {
  21683. name: "Normal",
  21684. height: math.unit(6 + 7 / 12, "feet"),
  21685. default: true
  21686. },
  21687. ]
  21688. ))
  21689. characterMakers.push(() => makeCharacter(
  21690. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21691. {
  21692. front: {
  21693. height: math.unit(5 + 10 / 12, "feet"),
  21694. weight: math.unit(150, "lb"),
  21695. name: "Front",
  21696. image: {
  21697. source: "./media/characters/kris/front.svg",
  21698. extra: 885 / 803,
  21699. bottom: 0.03
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(5 + 10 / 12, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21713. {
  21714. front: {
  21715. height: math.unit(7, "feet"),
  21716. weight: math.unit(120, "kg"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/taluthus/front.svg",
  21720. extra: 903 / 833,
  21721. bottom: 0.015
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(7, "feet"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Macro",
  21733. height: math.unit(300, "feet")
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21739. {
  21740. front: {
  21741. height: math.unit(5 + 9 / 12, "feet"),
  21742. weight: math.unit(145, "lb"),
  21743. name: "Front",
  21744. image: {
  21745. source: "./media/characters/dawn/front.svg",
  21746. extra: 2094 / 2016,
  21747. bottom: 0.025
  21748. }
  21749. },
  21750. back: {
  21751. height: math.unit(5 + 9 / 12, "feet"),
  21752. weight: math.unit(160, "lb"),
  21753. name: "Back",
  21754. image: {
  21755. source: "./media/characters/dawn/back.svg",
  21756. extra: 2112 / 2080,
  21757. bottom: 0.005
  21758. }
  21759. },
  21760. },
  21761. [
  21762. {
  21763. name: "Normal",
  21764. height: math.unit(6 + 7 / 12, "feet"),
  21765. default: true
  21766. },
  21767. ]
  21768. ))
  21769. characterMakers.push(() => makeCharacter(
  21770. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21771. {
  21772. anthro: {
  21773. height: math.unit(8 + 3 / 12, "feet"),
  21774. weight: math.unit(450, "lb"),
  21775. name: "Anthro",
  21776. image: {
  21777. source: "./media/characters/arador/anthro.svg",
  21778. extra: 1835 / 1718,
  21779. bottom: 0.025
  21780. }
  21781. },
  21782. feral: {
  21783. height: math.unit(4, "feet"),
  21784. weight: math.unit(200, "lb"),
  21785. name: "Feral",
  21786. image: {
  21787. source: "./media/characters/arador/feral.svg",
  21788. extra: 1683 / 1514,
  21789. bottom: 0.07
  21790. }
  21791. },
  21792. },
  21793. [
  21794. {
  21795. name: "Normal",
  21796. height: math.unit(8 + 3 / 12, "feet")
  21797. },
  21798. {
  21799. name: "Macro",
  21800. height: math.unit(82.5, "feet"),
  21801. default: true
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(5 + 10 / 12, "feet"),
  21810. weight: math.unit(125, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/dharsi/front.svg",
  21814. extra: 716 / 630,
  21815. bottom: 0.035
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Nano",
  21822. height: math.unit(100, "nm")
  21823. },
  21824. {
  21825. name: "Micro",
  21826. height: math.unit(2, "inches")
  21827. },
  21828. {
  21829. name: "Normal",
  21830. height: math.unit(5 + 10 / 12, "feet"),
  21831. default: true
  21832. },
  21833. {
  21834. name: "Macro",
  21835. height: math.unit(1000, "feet")
  21836. },
  21837. {
  21838. name: "Megamacro",
  21839. height: math.unit(10, "miles")
  21840. },
  21841. {
  21842. name: "Gigamacro",
  21843. height: math.unit(3000, "miles")
  21844. },
  21845. {
  21846. name: "Teramacro",
  21847. height: math.unit(500000, "miles")
  21848. },
  21849. {
  21850. name: "Teramacro+",
  21851. height: math.unit(30, "galaxies")
  21852. },
  21853. ]
  21854. ))
  21855. characterMakers.push(() => makeCharacter(
  21856. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21857. {
  21858. front: {
  21859. height: math.unit(6, "feet"),
  21860. weight: math.unit(150, "lb"),
  21861. name: "Front",
  21862. image: {
  21863. source: "./media/characters/deathy/front.svg",
  21864. extra: 1552 / 1463,
  21865. bottom: 0.025
  21866. }
  21867. },
  21868. side: {
  21869. height: math.unit(6, "feet"),
  21870. weight: math.unit(150, "lb"),
  21871. name: "Side",
  21872. image: {
  21873. source: "./media/characters/deathy/side.svg",
  21874. extra: 1604 / 1455,
  21875. bottom: 0.025
  21876. }
  21877. },
  21878. back: {
  21879. height: math.unit(6, "feet"),
  21880. weight: math.unit(150, "lb"),
  21881. name: "Back",
  21882. image: {
  21883. source: "./media/characters/deathy/back.svg",
  21884. extra: 1580 / 1463,
  21885. bottom: 0.005
  21886. }
  21887. },
  21888. },
  21889. [
  21890. {
  21891. name: "Micro",
  21892. height: math.unit(5, "millimeters")
  21893. },
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(6 + 5 / 12, "feet"),
  21897. default: true
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21903. {
  21904. front: {
  21905. height: math.unit(16, "feet"),
  21906. weight: math.unit(4000, "lb"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/juniper/front.svg",
  21910. bottom: 0.04
  21911. }
  21912. },
  21913. },
  21914. [
  21915. {
  21916. name: "Normal",
  21917. height: math.unit(16, "feet"),
  21918. default: true
  21919. },
  21920. ]
  21921. ))
  21922. characterMakers.push(() => makeCharacter(
  21923. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21924. {
  21925. front: {
  21926. height: math.unit(6, "feet"),
  21927. weight: math.unit(150, "lb"),
  21928. name: "Front",
  21929. image: {
  21930. source: "./media/characters/hipster/front.svg",
  21931. extra: 1312 / 1209,
  21932. bottom: 0.025
  21933. }
  21934. },
  21935. back: {
  21936. height: math.unit(6, "feet"),
  21937. weight: math.unit(150, "lb"),
  21938. name: "Back",
  21939. image: {
  21940. source: "./media/characters/hipster/back.svg",
  21941. extra: 1281 / 1196,
  21942. bottom: 0.01
  21943. }
  21944. },
  21945. },
  21946. [
  21947. {
  21948. name: "Micro",
  21949. height: math.unit(1, "mm")
  21950. },
  21951. {
  21952. name: "Normal",
  21953. height: math.unit(4, "inches"),
  21954. default: true
  21955. },
  21956. {
  21957. name: "Macro",
  21958. height: math.unit(500, "feet")
  21959. },
  21960. {
  21961. name: "Megamacro",
  21962. height: math.unit(1000, "miles")
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(6, "feet"),
  21971. weight: math.unit(150, "lb"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/tendirmuldr/front.svg",
  21975. extra: 1878 / 1772,
  21976. bottom: 0.015
  21977. }
  21978. },
  21979. },
  21980. [
  21981. {
  21982. name: "Megamacro",
  21983. height: math.unit(1500, "miles"),
  21984. default: true
  21985. },
  21986. ]
  21987. ))
  21988. characterMakers.push(() => makeCharacter(
  21989. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21990. {
  21991. front: {
  21992. height: math.unit(14, "feet"),
  21993. weight: math.unit(12000, "lb"),
  21994. name: "Front",
  21995. image: {
  21996. source: "./media/characters/mort/front.svg",
  21997. extra: 365 / 318,
  21998. bottom: 0.01
  21999. }
  22000. },
  22001. side: {
  22002. height: math.unit(14, "feet"),
  22003. weight: math.unit(12000, "lb"),
  22004. name: "Side",
  22005. image: {
  22006. source: "./media/characters/mort/side.svg",
  22007. extra: 365 / 318,
  22008. bottom: 0.052
  22009. },
  22010. default: true
  22011. },
  22012. back: {
  22013. height: math.unit(14, "feet"),
  22014. weight: math.unit(12000, "lb"),
  22015. name: "Back",
  22016. image: {
  22017. source: "./media/characters/mort/back.svg",
  22018. extra: 371 / 332,
  22019. bottom: 0.18
  22020. }
  22021. },
  22022. },
  22023. [
  22024. {
  22025. name: "Normal",
  22026. height: math.unit(14, "feet"),
  22027. default: true
  22028. },
  22029. ]
  22030. ))
  22031. characterMakers.push(() => makeCharacter(
  22032. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22033. {
  22034. front: {
  22035. height: math.unit(8, "feet"),
  22036. weight: math.unit(1, "ton"),
  22037. name: "Front",
  22038. image: {
  22039. source: "./media/characters/lycoa/front.svg",
  22040. extra: 1836/1728,
  22041. bottom: 81/1917
  22042. }
  22043. },
  22044. back: {
  22045. height: math.unit(8, "feet"),
  22046. weight: math.unit(1, "ton"),
  22047. name: "Back",
  22048. image: {
  22049. source: "./media/characters/lycoa/back.svg",
  22050. extra: 1785/1720,
  22051. bottom: 91/1876
  22052. }
  22053. },
  22054. head: {
  22055. height: math.unit(1.6243, "feet"),
  22056. name: "Head",
  22057. image: {
  22058. source: "./media/characters/lycoa/head.svg",
  22059. extra: 1011/782,
  22060. bottom: 0/1011
  22061. }
  22062. },
  22063. tailmaw: {
  22064. height: math.unit(1.9, "feet"),
  22065. name: "Tailmaw",
  22066. image: {
  22067. source: "./media/characters/lycoa/tailmaw.svg"
  22068. }
  22069. },
  22070. tentacles: {
  22071. height: math.unit(2.1, "feet"),
  22072. name: "Tentacles",
  22073. image: {
  22074. source: "./media/characters/lycoa/tentacles.svg"
  22075. }
  22076. },
  22077. dick: {
  22078. height: math.unit(1.73, "feet"),
  22079. name: "Dick",
  22080. image: {
  22081. source: "./media/characters/lycoa/dick.svg"
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Normal",
  22088. height: math.unit(8, "feet"),
  22089. default: true
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(30, "feet")
  22094. },
  22095. ]
  22096. ))
  22097. characterMakers.push(() => makeCharacter(
  22098. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22099. {
  22100. front: {
  22101. height: math.unit(4 + 2 / 12, "feet"),
  22102. weight: math.unit(70, "lb"),
  22103. name: "Front",
  22104. image: {
  22105. source: "./media/characters/naldara/front.svg",
  22106. extra: 1664/1387,
  22107. bottom: 81/1745
  22108. },
  22109. form: "anthro",
  22110. default: true
  22111. },
  22112. naga: {
  22113. height: math.unit(20, "feet"),
  22114. weight: math.unit(15000, "kg"),
  22115. name: "Front",
  22116. image: {
  22117. source: "./media/characters/naldara/naga.svg",
  22118. extra: 1590/1396,
  22119. bottom: 285/1875
  22120. },
  22121. form: "naga",
  22122. default: true
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(4 + 2 / 12, "feet"),
  22129. form: "anthro",
  22130. default: true
  22131. },
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(20, "feet"),
  22135. form: "naga",
  22136. default: true
  22137. },
  22138. ],
  22139. {
  22140. "anthro": {
  22141. name: "Anthro",
  22142. default: true
  22143. },
  22144. "naga": {
  22145. name: "Naga"
  22146. }
  22147. }
  22148. ))
  22149. characterMakers.push(() => makeCharacter(
  22150. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22151. {
  22152. front: {
  22153. height: math.unit(13 + 7 / 12, "feet"),
  22154. weight: math.unit(1500, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/briar/front.svg",
  22158. extra: 1223/1157,
  22159. bottom: 123/1346
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(13 + 7 / 12, "feet"),
  22167. default: true
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22173. {
  22174. side: {
  22175. height: math.unit(16, "feet"),
  22176. weight: math.unit(500, "lb"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/vanguard/side.svg",
  22180. extra: 1022/914,
  22181. bottom: 30/1052
  22182. }
  22183. },
  22184. sideAlt: {
  22185. height: math.unit(10, "feet"),
  22186. weight: math.unit(500, "lb"),
  22187. name: "Side (Alt)",
  22188. image: {
  22189. source: "./media/characters/vanguard/side-alt.svg",
  22190. extra: 502 / 425,
  22191. bottom: 0.087
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Normal",
  22198. height: math.unit(17.71, "feet"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(7.5, "feet"),
  22208. weight: math.unit(2, "lb"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/artemis/work-safe-front.svg",
  22212. extra: 1192 / 1075,
  22213. bottom: 0.07
  22214. },
  22215. form: "work-safe",
  22216. default: true
  22217. },
  22218. frontNsfw: {
  22219. height: math.unit(7.5, "feet"),
  22220. weight: math.unit(2, "lb"),
  22221. name: "Front",
  22222. image: {
  22223. source: "./media/characters/artemis/calibrating-front.svg",
  22224. extra: 1192 / 1075,
  22225. bottom: 0.07
  22226. },
  22227. form: "calibrating",
  22228. default: true
  22229. },
  22230. frontNsfwer: {
  22231. height: math.unit(7.5, "feet"),
  22232. weight: math.unit(2, "lb"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/artemis/oversize-load-front.svg",
  22236. extra: 1192 / 1075,
  22237. bottom: 0.07
  22238. },
  22239. form: "oversize-load",
  22240. default: true
  22241. },
  22242. side: {
  22243. height: math.unit(7.5, "feet"),
  22244. weight: math.unit(2, "lb"),
  22245. name: "Side",
  22246. image: {
  22247. source: "./media/characters/artemis/work-safe-side.svg",
  22248. extra: 1192 / 1075,
  22249. bottom: 0.07
  22250. },
  22251. form: "work-safe"
  22252. },
  22253. sideNsfw: {
  22254. height: math.unit(7.5, "feet"),
  22255. weight: math.unit(2, "lb"),
  22256. name: "Side",
  22257. image: {
  22258. source: "./media/characters/artemis/calibrating-side.svg",
  22259. extra: 1192 / 1075,
  22260. bottom: 0.07
  22261. },
  22262. form: "calibrating"
  22263. },
  22264. sideNsfwer: {
  22265. height: math.unit(7.5, "feet"),
  22266. weight: math.unit(2, "lb"),
  22267. name: "Side",
  22268. image: {
  22269. source: "./media/characters/artemis/oversize-load-side.svg",
  22270. extra: 1192 / 1075,
  22271. bottom: 0.07
  22272. },
  22273. form: "oversize-load"
  22274. },
  22275. maw: {
  22276. height: math.unit(1.1, "feet"),
  22277. name: "Maw",
  22278. image: {
  22279. source: "./media/characters/artemis/maw.svg"
  22280. },
  22281. form: "work-safe"
  22282. },
  22283. stomach: {
  22284. height: math.unit(0.95, "feet"),
  22285. name: "Stomach",
  22286. image: {
  22287. source: "./media/characters/artemis/stomach.svg"
  22288. },
  22289. form: "work-safe"
  22290. },
  22291. dickCanine: {
  22292. height: math.unit(1, "feet"),
  22293. name: "Dick (Canine)",
  22294. image: {
  22295. source: "./media/characters/artemis/dick-canine.svg"
  22296. },
  22297. form: "calibrating"
  22298. },
  22299. dickEquine: {
  22300. height: math.unit(0.85, "feet"),
  22301. name: "Dick (Equine)",
  22302. image: {
  22303. source: "./media/characters/artemis/dick-equine.svg"
  22304. },
  22305. form: "calibrating"
  22306. },
  22307. dickExotic: {
  22308. height: math.unit(0.85, "feet"),
  22309. name: "Dick (Exotic)",
  22310. image: {
  22311. source: "./media/characters/artemis/dick-exotic.svg"
  22312. },
  22313. form: "calibrating"
  22314. },
  22315. dickCanineBigger: {
  22316. height: math.unit(1 * 1.33, "feet"),
  22317. name: "Dick (Canine)",
  22318. image: {
  22319. source: "./media/characters/artemis/dick-canine.svg"
  22320. },
  22321. form: "oversize-load"
  22322. },
  22323. dickEquineBigger: {
  22324. height: math.unit(0.85 * 1.33, "feet"),
  22325. name: "Dick (Equine)",
  22326. image: {
  22327. source: "./media/characters/artemis/dick-equine.svg"
  22328. },
  22329. form: "oversize-load"
  22330. },
  22331. dickExoticBigger: {
  22332. height: math.unit(0.85 * 1.33, "feet"),
  22333. name: "Dick (Exotic)",
  22334. image: {
  22335. source: "./media/characters/artemis/dick-exotic.svg"
  22336. },
  22337. form: "oversize-load"
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Normal",
  22343. height: math.unit(7.5, "feet"),
  22344. form: "work-safe",
  22345. default: true
  22346. },
  22347. {
  22348. name: "Normal",
  22349. height: math.unit(7.5, "feet"),
  22350. form: "calibrating",
  22351. default: true
  22352. },
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(7.5, "feet"),
  22356. form: "oversize-load",
  22357. default: true
  22358. },
  22359. {
  22360. name: "Enlarged",
  22361. height: math.unit(12, "feet"),
  22362. form: "work-safe",
  22363. },
  22364. {
  22365. name: "Enlarged",
  22366. height: math.unit(12, "feet"),
  22367. form: "calibrating",
  22368. },
  22369. {
  22370. name: "Enlarged",
  22371. height: math.unit(12, "feet"),
  22372. form: "oversize-load",
  22373. },
  22374. ],
  22375. {
  22376. "work-safe": {
  22377. name: "Work-Safe",
  22378. default: true
  22379. },
  22380. "calibrating": {
  22381. name: "Calibrating"
  22382. },
  22383. "oversize-load": {
  22384. name: "Oversize Load"
  22385. }
  22386. }
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(5 + 3 / 12, "feet"),
  22393. weight: math.unit(160, "lb"),
  22394. name: "Front",
  22395. image: {
  22396. source: "./media/characters/kira/front.svg",
  22397. extra: 906 / 786,
  22398. bottom: 0.01
  22399. }
  22400. },
  22401. back: {
  22402. height: math.unit(5 + 3 / 12, "feet"),
  22403. weight: math.unit(160, "lb"),
  22404. name: "Back",
  22405. image: {
  22406. source: "./media/characters/kira/back.svg",
  22407. extra: 882 / 757,
  22408. bottom: 0.005
  22409. }
  22410. },
  22411. frontDressed: {
  22412. height: math.unit(5 + 3 / 12, "feet"),
  22413. weight: math.unit(160, "lb"),
  22414. name: "Front (Dressed)",
  22415. image: {
  22416. source: "./media/characters/kira/front-dressed.svg",
  22417. extra: 906 / 786,
  22418. bottom: 0.01
  22419. }
  22420. },
  22421. beans: {
  22422. height: math.unit(0.92, "feet"),
  22423. name: "Beans",
  22424. image: {
  22425. source: "./media/characters/kira/beans.svg"
  22426. }
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(5 + 3 / 12, "feet"),
  22433. default: true
  22434. },
  22435. ]
  22436. ))
  22437. characterMakers.push(() => makeCharacter(
  22438. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22439. {
  22440. front: {
  22441. height: math.unit(5 + 4 / 12, "feet"),
  22442. weight: math.unit(145, "lb"),
  22443. name: "Front",
  22444. image: {
  22445. source: "./media/characters/scramble/front.svg",
  22446. extra: 763 / 727,
  22447. bottom: 0.05
  22448. }
  22449. },
  22450. back: {
  22451. height: math.unit(5 + 4 / 12, "feet"),
  22452. weight: math.unit(145, "lb"),
  22453. name: "Back",
  22454. image: {
  22455. source: "./media/characters/scramble/back.svg",
  22456. extra: 826 / 737,
  22457. bottom: 0.002
  22458. }
  22459. },
  22460. },
  22461. [
  22462. {
  22463. name: "Normal",
  22464. height: math.unit(5 + 4 / 12, "feet"),
  22465. default: true
  22466. },
  22467. ]
  22468. ))
  22469. characterMakers.push(() => makeCharacter(
  22470. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22471. {
  22472. side: {
  22473. height: math.unit(6 + 2 / 12, "feet"),
  22474. weight: math.unit(190, "lb"),
  22475. name: "Side",
  22476. image: {
  22477. source: "./media/characters/biscuit/side.svg",
  22478. extra: 858 / 791,
  22479. bottom: 0.044
  22480. }
  22481. },
  22482. },
  22483. [
  22484. {
  22485. name: "Normal",
  22486. height: math.unit(6 + 2 / 12, "feet"),
  22487. default: true
  22488. },
  22489. ]
  22490. ))
  22491. characterMakers.push(() => makeCharacter(
  22492. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22493. {
  22494. front: {
  22495. height: math.unit(5 + 2 / 12, "feet"),
  22496. weight: math.unit(120, "lb"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/poffin/front.svg",
  22500. extra: 786 / 680,
  22501. bottom: 0.005
  22502. }
  22503. },
  22504. },
  22505. [
  22506. {
  22507. name: "Normal",
  22508. height: math.unit(5 + 2 / 12, "feet"),
  22509. default: true
  22510. },
  22511. ]
  22512. ))
  22513. characterMakers.push(() => makeCharacter(
  22514. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22515. {
  22516. front: {
  22517. height: math.unit(6 + 3 / 12, "feet"),
  22518. weight: math.unit(519, "lb"),
  22519. name: "Front",
  22520. image: {
  22521. source: "./media/characters/dhari/front.svg",
  22522. extra: 1048 / 946,
  22523. bottom: 0.015
  22524. }
  22525. },
  22526. back: {
  22527. height: math.unit(6 + 3 / 12, "feet"),
  22528. weight: math.unit(519, "lb"),
  22529. name: "Back",
  22530. image: {
  22531. source: "./media/characters/dhari/back.svg",
  22532. extra: 1048 / 931,
  22533. bottom: 0.005
  22534. }
  22535. },
  22536. frontDressed: {
  22537. height: math.unit(6 + 3 / 12, "feet"),
  22538. weight: math.unit(519, "lb"),
  22539. name: "Front (Dressed)",
  22540. image: {
  22541. source: "./media/characters/dhari/front-dressed.svg",
  22542. extra: 1713 / 1546,
  22543. bottom: 0.02
  22544. }
  22545. },
  22546. backDressed: {
  22547. height: math.unit(6 + 3 / 12, "feet"),
  22548. weight: math.unit(519, "lb"),
  22549. name: "Back (Dressed)",
  22550. image: {
  22551. source: "./media/characters/dhari/back-dressed.svg",
  22552. extra: 1699 / 1537,
  22553. bottom: 0.01
  22554. }
  22555. },
  22556. maw: {
  22557. height: math.unit(0.95, "feet"),
  22558. name: "Maw",
  22559. image: {
  22560. source: "./media/characters/dhari/maw.svg"
  22561. }
  22562. },
  22563. wereFront: {
  22564. height: math.unit(12 + 8 / 12, "feet"),
  22565. weight: math.unit(4000, "lb"),
  22566. name: "Front (Were)",
  22567. image: {
  22568. source: "./media/characters/dhari/were-front.svg",
  22569. extra: 1065 / 969,
  22570. bottom: 0.015
  22571. }
  22572. },
  22573. wereBack: {
  22574. height: math.unit(12 + 8 / 12, "feet"),
  22575. weight: math.unit(4000, "lb"),
  22576. name: "Back (Were)",
  22577. image: {
  22578. source: "./media/characters/dhari/were-back.svg",
  22579. extra: 1065 / 969,
  22580. bottom: 0.012
  22581. }
  22582. },
  22583. wereMaw: {
  22584. height: math.unit(0.625, "meters"),
  22585. name: "Maw (Were)",
  22586. image: {
  22587. source: "./media/characters/dhari/were-maw.svg"
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(6 + 3 / 12, "feet"),
  22595. default: true
  22596. },
  22597. ]
  22598. ))
  22599. characterMakers.push(() => makeCharacter(
  22600. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22601. {
  22602. anthro: {
  22603. height: math.unit(5 + 7 / 12, "feet"),
  22604. weight: math.unit(175, "lb"),
  22605. name: "Anthro",
  22606. image: {
  22607. source: "./media/characters/rena-dyne/anthro.svg",
  22608. extra: 1849 / 1785,
  22609. bottom: 0.005
  22610. }
  22611. },
  22612. taur: {
  22613. height: math.unit(15 + 6 / 12, "feet"),
  22614. weight: math.unit(8000, "lb"),
  22615. name: "Taur",
  22616. image: {
  22617. source: "./media/characters/rena-dyne/taur.svg",
  22618. extra: 2315 / 2234,
  22619. bottom: 0.033
  22620. }
  22621. },
  22622. },
  22623. [
  22624. {
  22625. name: "Normal",
  22626. height: math.unit(5 + 7 / 12, "feet"),
  22627. default: true
  22628. },
  22629. ]
  22630. ))
  22631. characterMakers.push(() => makeCharacter(
  22632. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22633. {
  22634. front: {
  22635. height: math.unit(8, "feet"),
  22636. weight: math.unit(600, "lb"),
  22637. name: "Front",
  22638. image: {
  22639. source: "./media/characters/weremeep/front.svg",
  22640. extra: 970/849,
  22641. bottom: 7/977
  22642. }
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(8, "feet"),
  22649. default: true
  22650. },
  22651. {
  22652. name: "Lorg",
  22653. height: math.unit(12, "feet")
  22654. },
  22655. {
  22656. name: "Oh Lawd She Comin'",
  22657. height: math.unit(20, "feet")
  22658. },
  22659. ]
  22660. ))
  22661. characterMakers.push(() => makeCharacter(
  22662. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22663. {
  22664. front: {
  22665. height: math.unit(4, "feet"),
  22666. weight: math.unit(90, "lb"),
  22667. name: "Front",
  22668. image: {
  22669. source: "./media/characters/reza/front.svg",
  22670. extra: 1183 / 1111,
  22671. bottom: 0.017
  22672. }
  22673. },
  22674. back: {
  22675. height: math.unit(4, "feet"),
  22676. weight: math.unit(90, "lb"),
  22677. name: "Back",
  22678. image: {
  22679. source: "./media/characters/reza/back.svg",
  22680. extra: 1183 / 1111,
  22681. bottom: 0.01
  22682. }
  22683. },
  22684. drake: {
  22685. height: math.unit(30, "feet"),
  22686. weight: math.unit(246960, "lb"),
  22687. name: "Drake",
  22688. image: {
  22689. source: "./media/characters/reza/drake.svg",
  22690. extra: 2350 / 2024,
  22691. bottom: 60.7 / 2403
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Normal",
  22698. height: math.unit(4, "feet"),
  22699. default: true
  22700. },
  22701. ]
  22702. ))
  22703. characterMakers.push(() => makeCharacter(
  22704. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  22705. {
  22706. side: {
  22707. height: math.unit(15, "feet"),
  22708. weight: math.unit(14, "tons"),
  22709. name: "Side",
  22710. image: {
  22711. source: "./media/characters/athea/side.svg",
  22712. extra: 960 / 540,
  22713. bottom: 0.003
  22714. }
  22715. },
  22716. sitting: {
  22717. height: math.unit(6 * 2.85, "feet"),
  22718. weight: math.unit(14, "tons"),
  22719. name: "Sitting",
  22720. image: {
  22721. source: "./media/characters/athea/sitting.svg",
  22722. extra: 621 / 581,
  22723. bottom: 0.075
  22724. }
  22725. },
  22726. maw: {
  22727. height: math.unit(7.59498031496063, "feet"),
  22728. name: "Maw",
  22729. image: {
  22730. source: "./media/characters/athea/maw.svg"
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Lap Cat",
  22737. height: math.unit(2.5, "feet")
  22738. },
  22739. {
  22740. name: "Minimacro",
  22741. height: math.unit(15, "feet"),
  22742. default: true
  22743. },
  22744. {
  22745. name: "Macro",
  22746. height: math.unit(120, "feet")
  22747. },
  22748. {
  22749. name: "Macro+",
  22750. height: math.unit(640, "feet")
  22751. },
  22752. {
  22753. name: "Colossus",
  22754. height: math.unit(2.2, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(8 + 8 / 12, "feet"),
  22763. weight: math.unit(130, "kg"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/seroko/front.svg",
  22767. extra: 1385 / 1280,
  22768. bottom: 0.025
  22769. }
  22770. },
  22771. back: {
  22772. height: math.unit(8 + 8 / 12, "feet"),
  22773. weight: math.unit(130, "kg"),
  22774. name: "Back",
  22775. image: {
  22776. source: "./media/characters/seroko/back.svg",
  22777. extra: 1369 / 1238,
  22778. bottom: 0.018
  22779. }
  22780. },
  22781. frontDressed: {
  22782. height: math.unit(8 + 8 / 12, "feet"),
  22783. weight: math.unit(130, "kg"),
  22784. name: "Front (Dressed)",
  22785. image: {
  22786. source: "./media/characters/seroko/front-dressed.svg",
  22787. extra: 1366 / 1275,
  22788. bottom: 0.03
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(8 + 8 / 12, "feet"),
  22796. default: true
  22797. },
  22798. ]
  22799. ))
  22800. characterMakers.push(() => makeCharacter(
  22801. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22802. {
  22803. front: {
  22804. height: math.unit(5.5, "feet"),
  22805. weight: math.unit(160, "lb"),
  22806. name: "Front",
  22807. image: {
  22808. source: "./media/characters/quatzi/front.svg",
  22809. extra: 2346 / 2242,
  22810. bottom: 0.015
  22811. }
  22812. },
  22813. },
  22814. [
  22815. {
  22816. name: "Normal",
  22817. height: math.unit(5.5, "feet"),
  22818. default: true
  22819. },
  22820. {
  22821. name: "Big",
  22822. height: math.unit(7.7, "feet")
  22823. },
  22824. ]
  22825. ))
  22826. characterMakers.push(() => makeCharacter(
  22827. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22828. {
  22829. front: {
  22830. height: math.unit(5 + 11 / 12, "feet"),
  22831. weight: math.unit(180, "lb"),
  22832. name: "Front",
  22833. image: {
  22834. source: "./media/characters/sen/front.svg",
  22835. extra: 1321 / 1254,
  22836. bottom: 0.015
  22837. }
  22838. },
  22839. side: {
  22840. height: math.unit(5 + 11 / 12, "feet"),
  22841. weight: math.unit(180, "lb"),
  22842. name: "Side",
  22843. image: {
  22844. source: "./media/characters/sen/side.svg",
  22845. extra: 1321 / 1254,
  22846. bottom: 0.007
  22847. }
  22848. },
  22849. back: {
  22850. height: math.unit(5 + 11 / 12, "feet"),
  22851. weight: math.unit(180, "lb"),
  22852. name: "Back",
  22853. image: {
  22854. source: "./media/characters/sen/back.svg",
  22855. extra: 1321 / 1254
  22856. }
  22857. },
  22858. },
  22859. [
  22860. {
  22861. name: "Normal",
  22862. height: math.unit(5 + 11 / 12, "feet"),
  22863. default: true
  22864. },
  22865. ]
  22866. ))
  22867. characterMakers.push(() => makeCharacter(
  22868. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22869. {
  22870. front: {
  22871. height: math.unit(166.6, "cm"),
  22872. weight: math.unit(66.6, "kg"),
  22873. name: "Front",
  22874. image: {
  22875. source: "./media/characters/fruity/front.svg",
  22876. extra: 1510 / 1386,
  22877. bottom: 0.04
  22878. }
  22879. },
  22880. back: {
  22881. height: math.unit(166.6, "cm"),
  22882. weight: math.unit(66.6, "lb"),
  22883. name: "Back",
  22884. image: {
  22885. source: "./media/characters/fruity/back.svg",
  22886. extra: 1563 / 1435,
  22887. bottom: 0.005
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(166.6, "cm"),
  22895. default: true
  22896. },
  22897. {
  22898. name: "Demonic",
  22899. height: math.unit(166.6, "feet")
  22900. },
  22901. ]
  22902. ))
  22903. characterMakers.push(() => makeCharacter(
  22904. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22905. {
  22906. side: {
  22907. height: math.unit(10, "feet"),
  22908. weight: math.unit(500, "lb"),
  22909. name: "Side",
  22910. image: {
  22911. source: "./media/characters/zost/side.svg",
  22912. extra: 2870/2533,
  22913. bottom: 252/3122
  22914. }
  22915. },
  22916. mawFront: {
  22917. height: math.unit(1.08, "meters"),
  22918. name: "Maw (Front)",
  22919. image: {
  22920. source: "./media/characters/zost/maw-front.svg"
  22921. }
  22922. },
  22923. mawSide: {
  22924. height: math.unit(2.66, "feet"),
  22925. name: "Maw (Side)",
  22926. image: {
  22927. source: "./media/characters/zost/maw-side.svg"
  22928. }
  22929. },
  22930. wingspan: {
  22931. height: math.unit(7.4, "feet"),
  22932. name: "Wingspan",
  22933. image: {
  22934. source: "./media/characters/zost/wingspan.svg"
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Normal",
  22941. height: math.unit(10, "feet"),
  22942. default: true
  22943. },
  22944. ]
  22945. ))
  22946. characterMakers.push(() => makeCharacter(
  22947. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22948. {
  22949. front: {
  22950. height: math.unit(5 + 4 / 12, "feet"),
  22951. weight: math.unit(120, "lb"),
  22952. name: "Front",
  22953. image: {
  22954. source: "./media/characters/luci/front.svg",
  22955. extra: 1985 / 1884,
  22956. bottom: 0.04
  22957. }
  22958. },
  22959. back: {
  22960. height: math.unit(5 + 4 / 12, "feet"),
  22961. weight: math.unit(120, "lb"),
  22962. name: "Back",
  22963. image: {
  22964. source: "./media/characters/luci/back.svg",
  22965. extra: 1892 / 1791,
  22966. bottom: 0.002
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Normal",
  22973. height: math.unit(5 + 4 / 12, "feet"),
  22974. default: true
  22975. },
  22976. ]
  22977. ))
  22978. characterMakers.push(() => makeCharacter(
  22979. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22980. {
  22981. front: {
  22982. height: math.unit(1500, "feet"),
  22983. weight: math.unit(3.8e6, "tons"),
  22984. name: "Front",
  22985. image: {
  22986. source: "./media/characters/2th/front.svg",
  22987. extra: 3489 / 3350,
  22988. bottom: 0.1
  22989. }
  22990. },
  22991. foot: {
  22992. height: math.unit(461, "feet"),
  22993. name: "Foot",
  22994. image: {
  22995. source: "./media/characters/2th/foot.svg"
  22996. }
  22997. },
  22998. },
  22999. [
  23000. {
  23001. name: "\"Micro\"",
  23002. height: math.unit(15 + 7 / 12, "feet")
  23003. },
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(1500, "feet"),
  23007. default: true
  23008. },
  23009. {
  23010. name: "Macro",
  23011. height: math.unit(5000, "feet")
  23012. },
  23013. {
  23014. name: "Megamacro",
  23015. height: math.unit(15, "miles")
  23016. },
  23017. {
  23018. name: "Gigamacro",
  23019. height: math.unit(4000, "miles")
  23020. },
  23021. {
  23022. name: "Galactic",
  23023. height: math.unit(50, "AU")
  23024. },
  23025. ]
  23026. ))
  23027. characterMakers.push(() => makeCharacter(
  23028. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23029. {
  23030. front: {
  23031. height: math.unit(5 + 6 / 12, "feet"),
  23032. weight: math.unit(220, "lb"),
  23033. name: "Front",
  23034. image: {
  23035. source: "./media/characters/amethyst/front.svg",
  23036. extra: 2078 / 2040,
  23037. bottom: 0.045
  23038. }
  23039. },
  23040. back: {
  23041. height: math.unit(5 + 6 / 12, "feet"),
  23042. weight: math.unit(220, "lb"),
  23043. name: "Back",
  23044. image: {
  23045. source: "./media/characters/amethyst/back.svg",
  23046. extra: 2021 / 1989,
  23047. bottom: 0.02
  23048. }
  23049. },
  23050. },
  23051. [
  23052. {
  23053. name: "Normal",
  23054. height: math.unit(5 + 6 / 12, "feet"),
  23055. default: true
  23056. },
  23057. ]
  23058. ))
  23059. characterMakers.push(() => makeCharacter(
  23060. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23061. {
  23062. front: {
  23063. height: math.unit(4 + 11 / 12, "feet"),
  23064. weight: math.unit(120, "lb"),
  23065. name: "Front",
  23066. image: {
  23067. source: "./media/characters/yumi-akiyama/front.svg",
  23068. extra: 1327 / 1235,
  23069. bottom: 0.02
  23070. }
  23071. },
  23072. back: {
  23073. height: math.unit(4 + 11 / 12, "feet"),
  23074. weight: math.unit(120, "lb"),
  23075. name: "Back",
  23076. image: {
  23077. source: "./media/characters/yumi-akiyama/back.svg",
  23078. extra: 1287 / 1245,
  23079. bottom: 0.002
  23080. }
  23081. },
  23082. },
  23083. [
  23084. {
  23085. name: "Galactic",
  23086. height: math.unit(50, "galaxies"),
  23087. default: true
  23088. },
  23089. {
  23090. name: "Universal",
  23091. height: math.unit(100, "universes")
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23097. {
  23098. front: {
  23099. height: math.unit(8, "feet"),
  23100. weight: math.unit(500, "lb"),
  23101. name: "Front",
  23102. image: {
  23103. source: "./media/characters/rifter-yrmori/front.svg",
  23104. extra: 1180 / 1125,
  23105. bottom: 0.02
  23106. }
  23107. },
  23108. back: {
  23109. height: math.unit(8, "feet"),
  23110. weight: math.unit(500, "lb"),
  23111. name: "Back",
  23112. image: {
  23113. source: "./media/characters/rifter-yrmori/back.svg",
  23114. extra: 1190 / 1145,
  23115. bottom: 0.001
  23116. }
  23117. },
  23118. wings: {
  23119. height: math.unit(7.75, "feet"),
  23120. weight: math.unit(500, "lb"),
  23121. name: "Wings",
  23122. image: {
  23123. source: "./media/characters/rifter-yrmori/wings.svg",
  23124. extra: 1357 / 1285
  23125. }
  23126. },
  23127. maw: {
  23128. height: math.unit(0.8, "feet"),
  23129. name: "Maw",
  23130. image: {
  23131. source: "./media/characters/rifter-yrmori/maw.svg"
  23132. }
  23133. },
  23134. mawfront: {
  23135. height: math.unit(1.45, "feet"),
  23136. name: "Maw (Front)",
  23137. image: {
  23138. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(8, "feet"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Macro",
  23150. height: math.unit(42, "meters")
  23151. },
  23152. ]
  23153. ))
  23154. characterMakers.push(() => makeCharacter(
  23155. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23156. {
  23157. were: {
  23158. height: math.unit(25 + 6 / 12, "feet"),
  23159. weight: math.unit(10000, "lb"),
  23160. name: "Were",
  23161. image: {
  23162. source: "./media/characters/tahajin/were.svg",
  23163. extra: 801 / 770,
  23164. bottom: 0.042
  23165. }
  23166. },
  23167. aquatic: {
  23168. height: math.unit(6 + 4 / 12, "feet"),
  23169. weight: math.unit(160, "lb"),
  23170. name: "Aquatic",
  23171. image: {
  23172. source: "./media/characters/tahajin/aquatic.svg",
  23173. extra: 572 / 542,
  23174. bottom: 0.04
  23175. }
  23176. },
  23177. chow: {
  23178. height: math.unit(8 + 11 / 12, "feet"),
  23179. weight: math.unit(450, "lb"),
  23180. name: "Chow",
  23181. image: {
  23182. source: "./media/characters/tahajin/chow.svg",
  23183. extra: 660 / 640,
  23184. bottom: 0.015
  23185. }
  23186. },
  23187. demiNaga: {
  23188. height: math.unit(6 + 8 / 12, "feet"),
  23189. weight: math.unit(300, "lb"),
  23190. name: "Demi Naga",
  23191. image: {
  23192. source: "./media/characters/tahajin/demi-naga.svg",
  23193. extra: 643 / 615,
  23194. bottom: 0.1
  23195. }
  23196. },
  23197. data: {
  23198. height: math.unit(5, "inches"),
  23199. weight: math.unit(0.1, "lb"),
  23200. name: "Data",
  23201. image: {
  23202. source: "./media/characters/tahajin/data.svg"
  23203. }
  23204. },
  23205. fluu: {
  23206. height: math.unit(5 + 7 / 12, "feet"),
  23207. weight: math.unit(140, "lb"),
  23208. name: "Fluu",
  23209. image: {
  23210. source: "./media/characters/tahajin/fluu.svg",
  23211. extra: 628 / 592,
  23212. bottom: 0.02
  23213. }
  23214. },
  23215. starWarrior: {
  23216. height: math.unit(4 + 5 / 12, "feet"),
  23217. weight: math.unit(50, "lb"),
  23218. name: "Star Warrior",
  23219. image: {
  23220. source: "./media/characters/tahajin/star-warrior.svg"
  23221. }
  23222. },
  23223. },
  23224. [
  23225. {
  23226. name: "Normal",
  23227. height: math.unit(25 + 6 / 12, "feet"),
  23228. default: true
  23229. },
  23230. ]
  23231. ))
  23232. characterMakers.push(() => makeCharacter(
  23233. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23234. {
  23235. front: {
  23236. height: math.unit(8, "feet"),
  23237. weight: math.unit(350, "lb"),
  23238. name: "Front",
  23239. image: {
  23240. source: "./media/characters/gabira/front.svg",
  23241. extra: 1261/1154,
  23242. bottom: 51/1312
  23243. }
  23244. },
  23245. back: {
  23246. height: math.unit(8, "feet"),
  23247. weight: math.unit(350, "lb"),
  23248. name: "Back",
  23249. image: {
  23250. source: "./media/characters/gabira/back.svg",
  23251. extra: 1265/1163,
  23252. bottom: 46/1311
  23253. }
  23254. },
  23255. head: {
  23256. height: math.unit(2.85, "feet"),
  23257. name: "Head",
  23258. image: {
  23259. source: "./media/characters/gabira/head.svg"
  23260. }
  23261. },
  23262. },
  23263. [
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(8, "feet"),
  23267. default: true
  23268. },
  23269. ]
  23270. ))
  23271. characterMakers.push(() => makeCharacter(
  23272. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23273. {
  23274. front: {
  23275. height: math.unit(5 + 3 / 12, "feet"),
  23276. weight: math.unit(137, "lb"),
  23277. name: "Front",
  23278. image: {
  23279. source: "./media/characters/sasha-katraine/front.svg",
  23280. extra: 1745/1694,
  23281. bottom: 37/1782
  23282. }
  23283. },
  23284. back: {
  23285. height: math.unit(5 + 3 / 12, "feet"),
  23286. weight: math.unit(137, "lb"),
  23287. name: "Back",
  23288. image: {
  23289. source: "./media/characters/sasha-katraine/back.svg",
  23290. extra: 1776/1699,
  23291. bottom: 26/1802
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Micro",
  23298. height: math.unit(5, "inches")
  23299. },
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(5 + 3 / 12, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23309. {
  23310. side: {
  23311. height: math.unit(4, "inches"),
  23312. weight: math.unit(200, "grams"),
  23313. name: "Side",
  23314. image: {
  23315. source: "./media/characters/der/side.svg",
  23316. extra: 719 / 400,
  23317. bottom: 30.6 / 749.9187
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Micro",
  23324. height: math.unit(4, "inches"),
  23325. default: true
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23331. {
  23332. side: {
  23333. height: math.unit(30, "meters"),
  23334. weight: math.unit(700, "tonnes"),
  23335. name: "Side",
  23336. image: {
  23337. source: "./media/characters/fixerdragon/side.svg",
  23338. extra: (1293.0514 - 116.03) / 1106.86,
  23339. bottom: 116.03 / 1293.0514
  23340. }
  23341. },
  23342. },
  23343. [
  23344. {
  23345. name: "Planck",
  23346. height: math.unit(1.6e-35, "meters")
  23347. },
  23348. {
  23349. name: "Micro",
  23350. height: math.unit(0.4, "meters")
  23351. },
  23352. {
  23353. name: "Normal",
  23354. height: math.unit(30, "meters"),
  23355. default: true
  23356. },
  23357. {
  23358. name: "Megamacro",
  23359. height: math.unit(1.2, "megameters")
  23360. },
  23361. {
  23362. name: "Teramacro",
  23363. height: math.unit(130, "terameters")
  23364. },
  23365. {
  23366. name: "Yottamacro",
  23367. height: math.unit(6200, "yottameters")
  23368. },
  23369. ]
  23370. ));
  23371. characterMakers.push(() => makeCharacter(
  23372. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23373. {
  23374. front: {
  23375. height: math.unit(8, "feet"),
  23376. weight: math.unit(250, "lb"),
  23377. name: "Front",
  23378. image: {
  23379. source: "./media/characters/kite/front.svg",
  23380. extra: 2796 / 2659,
  23381. bottom: 0.002
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "Normal",
  23388. height: math.unit(8, "feet"),
  23389. default: true
  23390. },
  23391. {
  23392. name: "Macro",
  23393. height: math.unit(360, "feet")
  23394. },
  23395. {
  23396. name: "Megamacro",
  23397. height: math.unit(1500, "feet")
  23398. },
  23399. ]
  23400. ))
  23401. characterMakers.push(() => makeCharacter(
  23402. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23403. {
  23404. front: {
  23405. height: math.unit(5 + 11/12, "feet"),
  23406. weight: math.unit(170, "lb"),
  23407. name: "Front",
  23408. image: {
  23409. source: "./media/characters/poojawa-vynar/front.svg",
  23410. extra: 1735/1585,
  23411. bottom: 96/1831
  23412. }
  23413. },
  23414. back: {
  23415. height: math.unit(5 + 11/12, "feet"),
  23416. weight: math.unit(170, "lb"),
  23417. name: "Back",
  23418. image: {
  23419. source: "./media/characters/poojawa-vynar/back.svg",
  23420. extra: 1749/1607,
  23421. bottom: 28/1777
  23422. }
  23423. },
  23424. male: {
  23425. height: math.unit(5 + 11/12, "feet"),
  23426. weight: math.unit(170, "lb"),
  23427. name: "Male",
  23428. image: {
  23429. source: "./media/characters/poojawa-vynar/male.svg",
  23430. extra: 1855/1713,
  23431. bottom: 63/1918
  23432. }
  23433. },
  23434. taur: {
  23435. height: math.unit(5 + 11/12, "feet"),
  23436. weight: math.unit(170, "lb"),
  23437. name: "Taur",
  23438. image: {
  23439. source: "./media/characters/poojawa-vynar/taur.svg",
  23440. extra: 1151/1059,
  23441. bottom: 356/1507
  23442. }
  23443. },
  23444. frontDressed: {
  23445. height: math.unit(5 + 11/12, "feet"),
  23446. weight: math.unit(170, "lb"),
  23447. name: "Front (Dressed)",
  23448. image: {
  23449. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23450. extra: 1735/1585,
  23451. bottom: 96/1831
  23452. }
  23453. },
  23454. backDressed: {
  23455. height: math.unit(5 + 11/12, "feet"),
  23456. weight: math.unit(170, "lb"),
  23457. name: "Back (Dressed)",
  23458. image: {
  23459. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23460. extra: 1749/1607,
  23461. bottom: 28/1777
  23462. }
  23463. },
  23464. maleDressed: {
  23465. height: math.unit(5 + 11/12, "feet"),
  23466. weight: math.unit(170, "lb"),
  23467. name: "Male (Dressed)",
  23468. image: {
  23469. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23470. extra: 1855/1713,
  23471. bottom: 63/1918
  23472. }
  23473. },
  23474. taurDressed: {
  23475. height: math.unit(5 + 11/12, "feet"),
  23476. weight: math.unit(170, "lb"),
  23477. name: "Taur (Dressed)",
  23478. image: {
  23479. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23480. extra: 1151/1059,
  23481. bottom: 356/1507
  23482. }
  23483. },
  23484. maw: {
  23485. height: math.unit(1.46, "feet"),
  23486. name: "Maw",
  23487. image: {
  23488. source: "./media/characters/poojawa-vynar/maw.svg"
  23489. }
  23490. },
  23491. head: {
  23492. height: math.unit(2.34, "feet"),
  23493. name: "Head",
  23494. image: {
  23495. source: "./media/characters/poojawa-vynar/head.svg"
  23496. }
  23497. },
  23498. paw: {
  23499. height: math.unit(1.61, "feet"),
  23500. name: "Paw",
  23501. image: {
  23502. source: "./media/characters/poojawa-vynar/paw.svg"
  23503. }
  23504. },
  23505. pawToering: {
  23506. height: math.unit(1.72, "feet"),
  23507. name: "Paw (Toering)",
  23508. image: {
  23509. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23510. }
  23511. },
  23512. toering: {
  23513. height: math.unit(2.9, "inches"),
  23514. name: "Toering",
  23515. image: {
  23516. source: "./media/characters/poojawa-vynar/toering.svg"
  23517. }
  23518. },
  23519. shaft: {
  23520. height: math.unit(0.625, "feet"),
  23521. name: "Shaft",
  23522. image: {
  23523. source: "./media/characters/poojawa-vynar/shaft.svg"
  23524. }
  23525. },
  23526. spade: {
  23527. height: math.unit(0.42, "feet"),
  23528. name: "Spade",
  23529. image: {
  23530. source: "./media/characters/poojawa-vynar/spade.svg"
  23531. }
  23532. },
  23533. },
  23534. [
  23535. {
  23536. name: "Shortstack",
  23537. height: math.unit(4, "feet")
  23538. },
  23539. {
  23540. name: "Normal",
  23541. height: math.unit(5 + 11 / 12, "feet"),
  23542. default: true
  23543. },
  23544. {
  23545. name: "Tauric",
  23546. height: math.unit(4, "meters")
  23547. },
  23548. ]
  23549. ))
  23550. characterMakers.push(() => makeCharacter(
  23551. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23552. {
  23553. front: {
  23554. height: math.unit(293, "meters"),
  23555. weight: math.unit(70400, "tons"),
  23556. name: "Front",
  23557. image: {
  23558. source: "./media/characters/violette/front.svg",
  23559. extra: 1227 / 1180,
  23560. bottom: 0.005
  23561. }
  23562. },
  23563. back: {
  23564. height: math.unit(293, "meters"),
  23565. weight: math.unit(70400, "tons"),
  23566. name: "Back",
  23567. image: {
  23568. source: "./media/characters/violette/back.svg",
  23569. extra: 1227 / 1180,
  23570. bottom: 0.005
  23571. }
  23572. },
  23573. },
  23574. [
  23575. {
  23576. name: "Macro",
  23577. height: math.unit(293, "meters"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(1050, "feet"),
  23587. weight: math.unit(200000, "tons"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/alessandra/front.svg",
  23591. extra: 960 / 912,
  23592. bottom: 0.06
  23593. }
  23594. },
  23595. },
  23596. [
  23597. {
  23598. name: "Macro",
  23599. height: math.unit(1050, "feet")
  23600. },
  23601. {
  23602. name: "Macro+",
  23603. height: math.unit(900, "meters"),
  23604. default: true
  23605. },
  23606. ]
  23607. ))
  23608. characterMakers.push(() => makeCharacter(
  23609. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23610. {
  23611. front: {
  23612. height: math.unit(5, "feet"),
  23613. weight: math.unit(187, "lb"),
  23614. name: "Front",
  23615. image: {
  23616. source: "./media/characters/person/front.svg",
  23617. extra: 3087 / 2945,
  23618. bottom: 91 / 3181
  23619. }
  23620. },
  23621. },
  23622. [
  23623. {
  23624. name: "Micro",
  23625. height: math.unit(3, "inches")
  23626. },
  23627. {
  23628. name: "Normal",
  23629. height: math.unit(5, "feet"),
  23630. default: true
  23631. },
  23632. {
  23633. name: "Macro",
  23634. height: math.unit(90, "feet")
  23635. },
  23636. {
  23637. name: "Max Size",
  23638. height: math.unit(280, "feet")
  23639. },
  23640. ]
  23641. ))
  23642. characterMakers.push(() => makeCharacter(
  23643. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23644. {
  23645. front: {
  23646. height: math.unit(4.5, "meters"),
  23647. weight: math.unit(3200, "lb"),
  23648. name: "Front",
  23649. image: {
  23650. source: "./media/characters/ty/front.svg",
  23651. extra: 1038 / 960,
  23652. bottom: 31.156 / 1068
  23653. }
  23654. },
  23655. back: {
  23656. height: math.unit(4.5, "meters"),
  23657. weight: math.unit(3200, "lb"),
  23658. name: "Back",
  23659. image: {
  23660. source: "./media/characters/ty/back.svg",
  23661. extra: 1044 / 966,
  23662. bottom: 7.48 / 1049
  23663. }
  23664. },
  23665. },
  23666. [
  23667. {
  23668. name: "Normal",
  23669. height: math.unit(4.5, "meters"),
  23670. default: true
  23671. },
  23672. ]
  23673. ))
  23674. characterMakers.push(() => makeCharacter(
  23675. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23676. {
  23677. front: {
  23678. height: math.unit(5 + 4 / 12, "feet"),
  23679. weight: math.unit(115, "lb"),
  23680. name: "Front",
  23681. image: {
  23682. source: "./media/characters/rocky/front.svg",
  23683. extra: 1012 / 975,
  23684. bottom: 54 / 1066
  23685. }
  23686. },
  23687. },
  23688. [
  23689. {
  23690. name: "Normal",
  23691. height: math.unit(5 + 4 / 12, "feet"),
  23692. default: true
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  23698. {
  23699. upright: {
  23700. height: math.unit(6, "meters"),
  23701. weight: math.unit(4000, "kg"),
  23702. name: "Upright",
  23703. image: {
  23704. source: "./media/characters/ruin/upright.svg",
  23705. extra: 668 / 661,
  23706. bottom: 42 / 799.8396
  23707. }
  23708. },
  23709. },
  23710. [
  23711. {
  23712. name: "Normal",
  23713. height: math.unit(6, "meters"),
  23714. default: true
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23720. {
  23721. front: {
  23722. height: math.unit(5, "feet"),
  23723. weight: math.unit(106, "lb"),
  23724. name: "Front",
  23725. image: {
  23726. source: "./media/characters/robin/front.svg",
  23727. extra: 862 / 799,
  23728. bottom: 42.4 / 914.8856
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(5, "feet"),
  23736. default: true
  23737. },
  23738. ]
  23739. ))
  23740. characterMakers.push(() => makeCharacter(
  23741. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23742. {
  23743. side: {
  23744. height: math.unit(3, "feet"),
  23745. weight: math.unit(225, "lb"),
  23746. name: "Side",
  23747. image: {
  23748. source: "./media/characters/saian/side.svg",
  23749. extra: 566 / 356,
  23750. bottom: 79.7 / 643
  23751. }
  23752. },
  23753. maw: {
  23754. height: math.unit(2.85, "feet"),
  23755. name: "Maw",
  23756. image: {
  23757. source: "./media/characters/saian/maw.svg"
  23758. }
  23759. },
  23760. },
  23761. [
  23762. {
  23763. name: "Normal",
  23764. height: math.unit(3, "feet"),
  23765. default: true
  23766. },
  23767. ]
  23768. ))
  23769. characterMakers.push(() => makeCharacter(
  23770. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23771. {
  23772. side: {
  23773. height: math.unit(8, "feet"),
  23774. weight: math.unit(300, "lb"),
  23775. name: "Side",
  23776. image: {
  23777. source: "./media/characters/equus-silvermane/side.svg",
  23778. extra: 2176 / 2050,
  23779. bottom: 65.7 / 2245
  23780. }
  23781. },
  23782. front: {
  23783. height: math.unit(8, "feet"),
  23784. weight: math.unit(300, "lb"),
  23785. name: "Front",
  23786. image: {
  23787. source: "./media/characters/equus-silvermane/front.svg",
  23788. extra: 4633 / 4400,
  23789. bottom: 71.3 / 4706.915
  23790. }
  23791. },
  23792. sideStepping: {
  23793. height: math.unit(8, "feet"),
  23794. weight: math.unit(300, "lb"),
  23795. name: "Side (Stepping)",
  23796. image: {
  23797. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23798. extra: 1968 / 1860,
  23799. bottom: 16.4 / 1989
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(8, "feet")
  23807. },
  23808. {
  23809. name: "Minimacro",
  23810. height: math.unit(75, "feet"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(150, "feet")
  23816. },
  23817. {
  23818. name: "Macro+",
  23819. height: math.unit(1000, "feet")
  23820. },
  23821. {
  23822. name: "Megamacro",
  23823. height: math.unit(1, "mile")
  23824. },
  23825. ]
  23826. ))
  23827. characterMakers.push(() => makeCharacter(
  23828. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23829. {
  23830. side: {
  23831. height: math.unit(20, "feet"),
  23832. weight: math.unit(30000, "kg"),
  23833. name: "Side",
  23834. image: {
  23835. source: "./media/characters/windar/side.svg",
  23836. extra: 1491 / 1248,
  23837. bottom: 82.56 / 1568
  23838. }
  23839. },
  23840. },
  23841. [
  23842. {
  23843. name: "Normal",
  23844. height: math.unit(20, "feet"),
  23845. default: true
  23846. },
  23847. ]
  23848. ))
  23849. characterMakers.push(() => makeCharacter(
  23850. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23851. {
  23852. side: {
  23853. height: math.unit(15.66, "feet"),
  23854. weight: math.unit(150, "lb"),
  23855. name: "Side",
  23856. image: {
  23857. source: "./media/characters/melody/side.svg",
  23858. extra: 1097 / 944,
  23859. bottom: 11.8 / 1109
  23860. }
  23861. },
  23862. sideOutfit: {
  23863. height: math.unit(15.66, "feet"),
  23864. weight: math.unit(150, "lb"),
  23865. name: "Side (Outfit)",
  23866. image: {
  23867. source: "./media/characters/melody/side-outfit.svg",
  23868. extra: 1097 / 944,
  23869. bottom: 11.8 / 1109
  23870. }
  23871. },
  23872. },
  23873. [
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(15.66, "feet"),
  23877. default: true
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23883. {
  23884. armoredFront: {
  23885. height: math.unit(8, "feet"),
  23886. weight: math.unit(325, "lb"),
  23887. name: "Front",
  23888. image: {
  23889. source: "./media/characters/windera/armored-front.svg",
  23890. extra: 1830/1598,
  23891. bottom: 151/1981
  23892. },
  23893. form: "armored",
  23894. default: true
  23895. },
  23896. macroFront: {
  23897. height: math.unit(70, "feet"),
  23898. weight: math.unit(315453, "lb"),
  23899. name: "Front",
  23900. image: {
  23901. source: "./media/characters/windera/macro-front.svg",
  23902. extra: 963/883,
  23903. bottom: 23/986
  23904. },
  23905. form: "macro",
  23906. default: true
  23907. },
  23908. },
  23909. [
  23910. {
  23911. name: "Normal",
  23912. height: math.unit(8, "feet"),
  23913. default: true,
  23914. form: "armored"
  23915. },
  23916. {
  23917. name: "Normal",
  23918. height: math.unit(70, "feet"),
  23919. default: true,
  23920. form: "macro"
  23921. },
  23922. ],
  23923. {
  23924. "armored": {
  23925. name: "Armored",
  23926. default: true
  23927. },
  23928. "macro": {
  23929. name: "Macro",
  23930. },
  23931. }
  23932. ))
  23933. characterMakers.push(() => makeCharacter(
  23934. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23935. {
  23936. front: {
  23937. height: math.unit(28.75, "feet"),
  23938. weight: math.unit(2000, "kg"),
  23939. name: "Front",
  23940. image: {
  23941. source: "./media/characters/sonear/front.svg",
  23942. extra: 1041.1 / 964.9,
  23943. bottom: 53.7 / 1096.6
  23944. }
  23945. },
  23946. },
  23947. [
  23948. {
  23949. name: "Normal",
  23950. height: math.unit(28.75, "feet"),
  23951. default: true
  23952. },
  23953. ]
  23954. ))
  23955. characterMakers.push(() => makeCharacter(
  23956. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23957. {
  23958. side: {
  23959. height: math.unit(25.5, "feet"),
  23960. weight: math.unit(23000, "kg"),
  23961. name: "Side",
  23962. image: {
  23963. source: "./media/characters/kanara/side.svg"
  23964. }
  23965. },
  23966. },
  23967. [
  23968. {
  23969. name: "Normal",
  23970. height: math.unit(25.5, "feet"),
  23971. default: true
  23972. },
  23973. ]
  23974. ))
  23975. characterMakers.push(() => makeCharacter(
  23976. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23977. {
  23978. side: {
  23979. height: math.unit(10, "feet"),
  23980. weight: math.unit(1000, "kg"),
  23981. name: "Side",
  23982. image: {
  23983. source: "./media/characters/ereus/side.svg",
  23984. extra: 1157 / 959,
  23985. bottom: 153 / 1312.5
  23986. }
  23987. },
  23988. },
  23989. [
  23990. {
  23991. name: "Normal",
  23992. height: math.unit(10, "feet"),
  23993. default: true
  23994. },
  23995. ]
  23996. ))
  23997. characterMakers.push(() => makeCharacter(
  23998. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23999. {
  24000. side: {
  24001. height: math.unit(4.5, "feet"),
  24002. weight: math.unit(500, "lb"),
  24003. name: "Side",
  24004. image: {
  24005. source: "./media/characters/e-ter/side.svg",
  24006. extra: 1550 / 1248,
  24007. bottom: 146 / 1694
  24008. }
  24009. },
  24010. },
  24011. [
  24012. {
  24013. name: "Normal",
  24014. height: math.unit(4.5, "feet"),
  24015. default: true
  24016. },
  24017. ]
  24018. ))
  24019. characterMakers.push(() => makeCharacter(
  24020. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24021. {
  24022. side: {
  24023. height: math.unit(9.7, "feet"),
  24024. weight: math.unit(4000, "kg"),
  24025. name: "Side",
  24026. image: {
  24027. source: "./media/characters/yamie/side.svg"
  24028. }
  24029. },
  24030. },
  24031. [
  24032. {
  24033. name: "Normal",
  24034. height: math.unit(9.7, "feet"),
  24035. default: true
  24036. },
  24037. ]
  24038. ))
  24039. characterMakers.push(() => makeCharacter(
  24040. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24041. {
  24042. front: {
  24043. height: math.unit(50, "feet"),
  24044. weight: math.unit(50000, "kg"),
  24045. name: "Front",
  24046. image: {
  24047. source: "./media/characters/anders/front.svg",
  24048. extra: 570 / 539,
  24049. bottom: 14.7 / 586.7
  24050. }
  24051. },
  24052. },
  24053. [
  24054. {
  24055. name: "Large",
  24056. height: math.unit(50, "feet")
  24057. },
  24058. {
  24059. name: "Macro",
  24060. height: math.unit(2000, "feet"),
  24061. default: true
  24062. },
  24063. {
  24064. name: "Megamacro",
  24065. height: math.unit(12, "miles")
  24066. },
  24067. ]
  24068. ))
  24069. characterMakers.push(() => makeCharacter(
  24070. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24071. {
  24072. front: {
  24073. height: math.unit(7 + 2 / 12, "feet"),
  24074. weight: math.unit(300, "lb"),
  24075. name: "Front",
  24076. image: {
  24077. source: "./media/characters/reban/front.svg",
  24078. extra: 1287/1212,
  24079. bottom: 148/1435
  24080. }
  24081. },
  24082. head: {
  24083. height: math.unit(1.95, "feet"),
  24084. name: "Head",
  24085. image: {
  24086. source: "./media/characters/reban/head.svg"
  24087. }
  24088. },
  24089. maw: {
  24090. height: math.unit(0.95, "feet"),
  24091. name: "Maw",
  24092. image: {
  24093. source: "./media/characters/reban/maw.svg"
  24094. }
  24095. },
  24096. foot: {
  24097. height: math.unit(1.65, "feet"),
  24098. name: "Foot",
  24099. image: {
  24100. source: "./media/characters/reban/foot.svg"
  24101. }
  24102. },
  24103. dick: {
  24104. height: math.unit(7 / 5, "feet"),
  24105. name: "Dick",
  24106. image: {
  24107. source: "./media/characters/reban/dick.svg"
  24108. }
  24109. },
  24110. },
  24111. [
  24112. {
  24113. name: "Natural Height",
  24114. height: math.unit(7 + 2 / 12, "feet")
  24115. },
  24116. {
  24117. name: "Macro",
  24118. height: math.unit(500, "feet"),
  24119. default: true
  24120. },
  24121. {
  24122. name: "Canon Height",
  24123. height: math.unit(50, "AU")
  24124. },
  24125. ]
  24126. ))
  24127. characterMakers.push(() => makeCharacter(
  24128. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24129. {
  24130. front: {
  24131. height: math.unit(6, "feet"),
  24132. weight: math.unit(150, "lb"),
  24133. name: "Front",
  24134. image: {
  24135. source: "./media/characters/terrance-keayes/front.svg",
  24136. extra: 1.005,
  24137. bottom: 151 / 1615
  24138. }
  24139. },
  24140. side: {
  24141. height: math.unit(6, "feet"),
  24142. weight: math.unit(150, "lb"),
  24143. name: "Side",
  24144. image: {
  24145. source: "./media/characters/terrance-keayes/side.svg",
  24146. extra: 1.005,
  24147. bottom: 129.4 / 1544
  24148. }
  24149. },
  24150. back: {
  24151. height: math.unit(6, "feet"),
  24152. weight: math.unit(150, "lb"),
  24153. name: "Back",
  24154. image: {
  24155. source: "./media/characters/terrance-keayes/back.svg",
  24156. extra: 1.005,
  24157. bottom: 58.4 / 1557.3
  24158. }
  24159. },
  24160. dick: {
  24161. height: math.unit(6 * 0.208, "feet"),
  24162. name: "Dick",
  24163. image: {
  24164. source: "./media/characters/terrance-keayes/dick.svg"
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Canon Height",
  24171. height: math.unit(35, "miles"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(6, "feet"),
  24181. weight: math.unit(150, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/ofelia/front.svg",
  24185. extra: 1130/1117,
  24186. bottom: 91/1221
  24187. }
  24188. },
  24189. back: {
  24190. height: math.unit(6, "feet"),
  24191. weight: math.unit(150, "lb"),
  24192. name: "Back",
  24193. image: {
  24194. source: "./media/characters/ofelia/back.svg",
  24195. extra: 1172/1159,
  24196. bottom: 28/1200
  24197. }
  24198. },
  24199. maw: {
  24200. height: math.unit(1, "feet"),
  24201. name: "Maw",
  24202. image: {
  24203. source: "./media/characters/ofelia/maw.svg"
  24204. }
  24205. },
  24206. foot: {
  24207. height: math.unit(1.949, "feet"),
  24208. name: "Foot",
  24209. image: {
  24210. source: "./media/characters/ofelia/foot.svg"
  24211. }
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Canon Height",
  24217. height: math.unit(2000, "miles"),
  24218. default: true
  24219. },
  24220. ]
  24221. ))
  24222. characterMakers.push(() => makeCharacter(
  24223. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24224. {
  24225. front: {
  24226. height: math.unit(6, "feet"),
  24227. weight: math.unit(150, "lb"),
  24228. name: "Front",
  24229. image: {
  24230. source: "./media/characters/samuel/front.svg",
  24231. extra: 265 / 258,
  24232. bottom: 2 / 266.1566
  24233. }
  24234. },
  24235. },
  24236. [
  24237. {
  24238. name: "Macro",
  24239. height: math.unit(100, "feet"),
  24240. default: true
  24241. },
  24242. {
  24243. name: "Full Size",
  24244. height: math.unit(1000, "miles")
  24245. },
  24246. ]
  24247. ))
  24248. characterMakers.push(() => makeCharacter(
  24249. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24250. {
  24251. front: {
  24252. height: math.unit(6, "feet"),
  24253. weight: math.unit(300, "lb"),
  24254. name: "Front",
  24255. image: {
  24256. source: "./media/characters/beishir-kiel/front.svg",
  24257. extra: 569 / 547,
  24258. bottom: 41.9 / 609
  24259. }
  24260. },
  24261. maw: {
  24262. height: math.unit(6 * 0.202, "feet"),
  24263. name: "Maw",
  24264. image: {
  24265. source: "./media/characters/beishir-kiel/maw.svg"
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Macro",
  24272. height: math.unit(300, "feet"),
  24273. default: true
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24279. {
  24280. front: {
  24281. height: math.unit(5 + 7/12, "feet"),
  24282. weight: math.unit(120, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/logan-grey/front.svg",
  24286. extra: 1836/1738,
  24287. bottom: 108/1944
  24288. }
  24289. },
  24290. back: {
  24291. height: math.unit(5 + 7/12, "feet"),
  24292. weight: math.unit(120, "lb"),
  24293. name: "Back",
  24294. image: {
  24295. source: "./media/characters/logan-grey/back.svg",
  24296. extra: 1880/1794,
  24297. bottom: 24/1904
  24298. }
  24299. },
  24300. frontSfw: {
  24301. height: math.unit(5 + 7/12, "feet"),
  24302. weight: math.unit(120, "lb"),
  24303. name: "Front (SFW)",
  24304. image: {
  24305. source: "./media/characters/logan-grey/front-sfw.svg",
  24306. extra: 1836/1738,
  24307. bottom: 108/1944
  24308. }
  24309. },
  24310. backSfw: {
  24311. height: math.unit(5 + 7/12, "feet"),
  24312. weight: math.unit(120, "lb"),
  24313. name: "Back (SFW)",
  24314. image: {
  24315. source: "./media/characters/logan-grey/back-sfw.svg",
  24316. extra: 1880/1794,
  24317. bottom: 24/1904
  24318. }
  24319. },
  24320. hands: {
  24321. height: math.unit(0.84, "feet"),
  24322. name: "Hands",
  24323. image: {
  24324. source: "./media/characters/logan-grey/hands.svg"
  24325. }
  24326. },
  24327. paws: {
  24328. height: math.unit(0.72, "feet"),
  24329. name: "Paws",
  24330. image: {
  24331. source: "./media/characters/logan-grey/paws.svg"
  24332. }
  24333. },
  24334. cock: {
  24335. height: math.unit(1.45, "feet"),
  24336. name: "Cock",
  24337. image: {
  24338. source: "./media/characters/logan-grey/cock.svg"
  24339. }
  24340. },
  24341. cockAlt: {
  24342. height: math.unit(1.437, "feet"),
  24343. name: "Cock (alt)",
  24344. image: {
  24345. source: "./media/characters/logan-grey/cock-alt.svg"
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(5 + 8 / 12, "feet")
  24353. },
  24354. {
  24355. name: "The 500 Foot Femboy",
  24356. height: math.unit(500, "feet"),
  24357. default: true
  24358. },
  24359. {
  24360. name: "Megmacro",
  24361. height: math.unit(20, "miles")
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(8 + 2 / 12, "feet"),
  24370. weight: math.unit(275, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/draganta/front.svg",
  24374. extra: 1177 / 1135,
  24375. bottom: 33.46 / 1212.1
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(8 + 6 / 12, "feet"),
  24383. default: true
  24384. },
  24385. {
  24386. name: "Macro",
  24387. height: math.unit(150, "feet")
  24388. },
  24389. {
  24390. name: "Megamacro",
  24391. height: math.unit(1000, "miles")
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(1.72, "m"),
  24400. weight: math.unit(80, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/voski/front.svg",
  24404. extra: 2076.22 / 2022.4,
  24405. bottom: 102.7 / 2177.3866
  24406. }
  24407. },
  24408. frontFlaccid: {
  24409. height: math.unit(1.72, "m"),
  24410. weight: math.unit(80, "lb"),
  24411. name: "Front (Flaccid)",
  24412. image: {
  24413. source: "./media/characters/voski/front-flaccid.svg",
  24414. extra: 2076.22 / 2022.4,
  24415. bottom: 102.7 / 2177.3866
  24416. }
  24417. },
  24418. frontErect: {
  24419. height: math.unit(1.72, "m"),
  24420. weight: math.unit(80, "lb"),
  24421. name: "Front (Erect)",
  24422. image: {
  24423. source: "./media/characters/voski/front-erect.svg",
  24424. extra: 2076.22 / 2022.4,
  24425. bottom: 102.7 / 2177.3866
  24426. }
  24427. },
  24428. back: {
  24429. height: math.unit(1.72, "m"),
  24430. weight: math.unit(80, "lb"),
  24431. name: "Back",
  24432. image: {
  24433. source: "./media/characters/voski/back.svg",
  24434. extra: 2104 / 2051,
  24435. bottom: 10.45 / 2113.63
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Normal",
  24442. height: math.unit(1.72, "m")
  24443. },
  24444. {
  24445. name: "Macro",
  24446. height: math.unit(55, "m"),
  24447. default: true
  24448. },
  24449. {
  24450. name: "Macro+",
  24451. height: math.unit(300, "m")
  24452. },
  24453. {
  24454. name: "Macro++",
  24455. height: math.unit(700, "m")
  24456. },
  24457. {
  24458. name: "Macro+++",
  24459. height: math.unit(4500, "m")
  24460. },
  24461. {
  24462. name: "Macro++++",
  24463. height: math.unit(45, "km")
  24464. },
  24465. {
  24466. name: "Macro+++++",
  24467. height: math.unit(1220, "km")
  24468. },
  24469. ]
  24470. ))
  24471. characterMakers.push(() => makeCharacter(
  24472. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24473. {
  24474. front: {
  24475. height: math.unit(2.3, "m"),
  24476. weight: math.unit(304, "kg"),
  24477. name: "Front",
  24478. image: {
  24479. source: "./media/characters/icowom-lee/front.svg",
  24480. extra: 985 / 955,
  24481. bottom: 25.4 / 1012
  24482. }
  24483. },
  24484. fronttentacles: {
  24485. height: math.unit(2.3, "m"),
  24486. weight: math.unit(304, "kg"),
  24487. name: "Front-tentacles",
  24488. image: {
  24489. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24490. extra: 985 / 955,
  24491. bottom: 25.4 / 1012
  24492. }
  24493. },
  24494. back: {
  24495. height: math.unit(2.3, "m"),
  24496. weight: math.unit(304, "kg"),
  24497. name: "Back",
  24498. image: {
  24499. source: "./media/characters/icowom-lee/back.svg",
  24500. extra: 975 / 954,
  24501. bottom: 9.5 / 985
  24502. }
  24503. },
  24504. backtentacles: {
  24505. height: math.unit(2.3, "m"),
  24506. weight: math.unit(304, "kg"),
  24507. name: "Back-tentacles",
  24508. image: {
  24509. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24510. extra: 975 / 954,
  24511. bottom: 9.5 / 985
  24512. }
  24513. },
  24514. frontDressed: {
  24515. height: math.unit(2.3, "m"),
  24516. weight: math.unit(304, "kg"),
  24517. name: "Front (Dressed)",
  24518. image: {
  24519. source: "./media/characters/icowom-lee/front-dressed.svg",
  24520. extra: 3076 / 2933,
  24521. bottom: 51.4 / 3125.1889
  24522. }
  24523. },
  24524. rump: {
  24525. height: math.unit(0.776, "meters"),
  24526. name: "Rump",
  24527. image: {
  24528. source: "./media/characters/icowom-lee/rump.svg"
  24529. }
  24530. },
  24531. genitals: {
  24532. height: math.unit(0.78, "meters"),
  24533. name: "Genitals",
  24534. image: {
  24535. source: "./media/characters/icowom-lee/genitals.svg"
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Normal",
  24542. height: math.unit(2.3, "meters"),
  24543. default: true
  24544. },
  24545. {
  24546. name: "Macro",
  24547. height: math.unit(94, "meters"),
  24548. default: true
  24549. },
  24550. ]
  24551. ))
  24552. characterMakers.push(() => makeCharacter(
  24553. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24554. {
  24555. front: {
  24556. height: math.unit(22, "meters"),
  24557. weight: math.unit(21000, "kg"),
  24558. name: "Front",
  24559. image: {
  24560. source: "./media/characters/shock-diamond/front.svg",
  24561. extra: 2204 / 2053,
  24562. bottom: 65 / 2239.47
  24563. }
  24564. },
  24565. frontNude: {
  24566. height: math.unit(22, "meters"),
  24567. weight: math.unit(21000, "kg"),
  24568. name: "Front (Nude)",
  24569. image: {
  24570. source: "./media/characters/shock-diamond/front-nude.svg",
  24571. extra: 2514 / 2285,
  24572. bottom: 13 / 2527.56
  24573. }
  24574. },
  24575. },
  24576. [
  24577. {
  24578. name: "Normal",
  24579. height: math.unit(3, "meters")
  24580. },
  24581. {
  24582. name: "Macro",
  24583. height: math.unit(22, "meters"),
  24584. default: true
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24590. {
  24591. frontNsfw: {
  24592. height: math.unit(5 + 4/12, "feet"),
  24593. weight: math.unit(195, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/rory/front.svg",
  24597. extra: 1220/1100,
  24598. bottom: 103/1323
  24599. }
  24600. },
  24601. back: {
  24602. height: math.unit(5 + 4/12, "feet"),
  24603. weight: math.unit(195, "lb"),
  24604. name: "Back",
  24605. image: {
  24606. source: "./media/characters/rory/back.svg",
  24607. extra: 1166/1086,
  24608. bottom: 35/1201
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Micro",
  24615. height: math.unit(3, "inches")
  24616. },
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(5 + 4/12, "feet"),
  24620. default: true
  24621. },
  24622. {
  24623. name: "Macro",
  24624. height: math.unit(90, "feet")
  24625. },
  24626. {
  24627. name: "Supercharged",
  24628. height: math.unit(270, "feet")
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(5 + 9 / 12, "feet"),
  24637. weight: math.unit(190, "lb"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/sprisk/front.svg",
  24641. extra: 1225 / 1180,
  24642. bottom: 42.7 / 1266.4
  24643. }
  24644. },
  24645. frontNsfw: {
  24646. height: math.unit(5 + 9 / 12, "feet"),
  24647. weight: math.unit(190, "lb"),
  24648. name: "Front (NSFW)",
  24649. image: {
  24650. source: "./media/characters/sprisk/front-nsfw.svg",
  24651. extra: 1225 / 1180,
  24652. bottom: 42.7 / 1266.4
  24653. }
  24654. },
  24655. back: {
  24656. height: math.unit(5 + 9 / 12, "feet"),
  24657. weight: math.unit(190, "lb"),
  24658. name: "Back",
  24659. image: {
  24660. source: "./media/characters/sprisk/back.svg",
  24661. extra: 1247 / 1200,
  24662. bottom: 5.6 / 1253.04
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Tiny",
  24669. height: math.unit(2, "inches")
  24670. },
  24671. {
  24672. name: "Normal",
  24673. height: math.unit(5 + 9 / 12, "feet"),
  24674. default: true
  24675. },
  24676. {
  24677. name: "Mini Macro",
  24678. height: math.unit(18, "feet")
  24679. },
  24680. {
  24681. name: "Macro",
  24682. height: math.unit(100, "feet")
  24683. },
  24684. {
  24685. name: "MACRO",
  24686. height: math.unit(50, "miles")
  24687. },
  24688. {
  24689. name: "M A C R O",
  24690. height: math.unit(300, "miles")
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24696. {
  24697. side: {
  24698. height: math.unit(15.6, "meters"),
  24699. weight: math.unit(700000, "kg"),
  24700. name: "Side",
  24701. image: {
  24702. source: "./media/characters/bunsen/side.svg",
  24703. extra: 1644 / 358
  24704. }
  24705. },
  24706. foot: {
  24707. height: math.unit(1.611 * 1644 / 358, "meter"),
  24708. name: "Foot",
  24709. image: {
  24710. source: "./media/characters/bunsen/foot.svg"
  24711. }
  24712. },
  24713. },
  24714. [
  24715. {
  24716. name: "Small",
  24717. height: math.unit(10, "feet")
  24718. },
  24719. {
  24720. name: "Normal",
  24721. height: math.unit(15.6, "meters"),
  24722. default: true
  24723. },
  24724. ]
  24725. ))
  24726. characterMakers.push(() => makeCharacter(
  24727. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24728. {
  24729. front: {
  24730. height: math.unit(4 + 11 / 12, "feet"),
  24731. weight: math.unit(140, "lb"),
  24732. name: "Front",
  24733. image: {
  24734. source: "./media/characters/sesh/front.svg",
  24735. extra: 3420 / 3231,
  24736. bottom: 72 / 3949.5
  24737. }
  24738. },
  24739. },
  24740. [
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(4 + 11 / 12, "feet")
  24744. },
  24745. {
  24746. name: "Grown",
  24747. height: math.unit(15, "feet"),
  24748. default: true
  24749. },
  24750. {
  24751. name: "Macro",
  24752. height: math.unit(1500, "feet")
  24753. },
  24754. {
  24755. name: "Megamacro",
  24756. height: math.unit(30, "miles")
  24757. },
  24758. {
  24759. name: "Continental",
  24760. height: math.unit(3000, "miles")
  24761. },
  24762. {
  24763. name: "Gravity Mass",
  24764. height: math.unit(300000, "miles")
  24765. },
  24766. {
  24767. name: "Planet Buster",
  24768. height: math.unit(30000000, "miles")
  24769. },
  24770. {
  24771. name: "Big",
  24772. height: math.unit(3000000000, "miles")
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(9, "feet"),
  24781. weight: math.unit(350, "lb"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/pepper/front.svg",
  24785. extra: 1448 / 1312,
  24786. bottom: 9.4 / 1457.88
  24787. }
  24788. },
  24789. back: {
  24790. height: math.unit(9, "feet"),
  24791. weight: math.unit(350, "lb"),
  24792. name: "Back",
  24793. image: {
  24794. source: "./media/characters/pepper/back.svg",
  24795. extra: 1423 / 1300,
  24796. bottom: 4.6 / 1429
  24797. }
  24798. },
  24799. maw: {
  24800. height: math.unit(0.932, "feet"),
  24801. name: "Maw",
  24802. image: {
  24803. source: "./media/characters/pepper/maw.svg"
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(9, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(6, "feet"),
  24820. weight: math.unit(150, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/maelstrom/front.svg",
  24824. extra: 2100 / 1883,
  24825. bottom: 94 / 2196.7
  24826. }
  24827. },
  24828. },
  24829. [
  24830. {
  24831. name: "Less Kaiju",
  24832. height: math.unit(200, "feet")
  24833. },
  24834. {
  24835. name: "Kaiju",
  24836. height: math.unit(400, "feet"),
  24837. default: true
  24838. },
  24839. {
  24840. name: "Kaiju-er",
  24841. height: math.unit(600, "feet")
  24842. },
  24843. ]
  24844. ))
  24845. characterMakers.push(() => makeCharacter(
  24846. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24847. {
  24848. front: {
  24849. height: math.unit(6 + 5 / 12, "feet"),
  24850. weight: math.unit(180, "lb"),
  24851. name: "Front",
  24852. image: {
  24853. source: "./media/characters/lexir/front.svg",
  24854. extra: 180 / 172,
  24855. bottom: 12 / 192
  24856. }
  24857. },
  24858. back: {
  24859. height: math.unit(6 + 5 / 12, "feet"),
  24860. weight: math.unit(180, "lb"),
  24861. name: "Back",
  24862. image: {
  24863. source: "./media/characters/lexir/back.svg",
  24864. extra: 1273/1201,
  24865. bottom: 39/1312
  24866. }
  24867. },
  24868. },
  24869. [
  24870. {
  24871. name: "Very Smal",
  24872. height: math.unit(1, "nm")
  24873. },
  24874. {
  24875. name: "Normal",
  24876. height: math.unit(6 + 5 / 12, "feet"),
  24877. default: true
  24878. },
  24879. {
  24880. name: "Macro",
  24881. height: math.unit(1, "mile")
  24882. },
  24883. {
  24884. name: "Megamacro",
  24885. height: math.unit(50, "miles")
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24891. {
  24892. front: {
  24893. height: math.unit(1.5, "meters"),
  24894. weight: math.unit(100, "lb"),
  24895. name: "Front",
  24896. image: {
  24897. source: "./media/characters/maksio/front.svg",
  24898. extra: 1549 / 1531,
  24899. bottom: 123.7 / 1674.5429
  24900. }
  24901. },
  24902. back: {
  24903. height: math.unit(1.5, "meters"),
  24904. weight: math.unit(100, "lb"),
  24905. name: "Back",
  24906. image: {
  24907. source: "./media/characters/maksio/back.svg",
  24908. extra: 1541 / 1509,
  24909. bottom: 97 / 1639
  24910. }
  24911. },
  24912. hand: {
  24913. height: math.unit(0.621, "feet"),
  24914. name: "Hand",
  24915. image: {
  24916. source: "./media/characters/maksio/hand.svg"
  24917. }
  24918. },
  24919. foot: {
  24920. height: math.unit(1.611, "feet"),
  24921. name: "Foot",
  24922. image: {
  24923. source: "./media/characters/maksio/foot.svg"
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Shrunken",
  24930. height: math.unit(10, "cm")
  24931. },
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(150, "cm"),
  24935. default: true
  24936. },
  24937. ]
  24938. ))
  24939. characterMakers.push(() => makeCharacter(
  24940. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24941. {
  24942. front: {
  24943. height: math.unit(100, "feet"),
  24944. name: "Front",
  24945. image: {
  24946. source: "./media/characters/erza-bear/front.svg",
  24947. extra: 2449 / 2390,
  24948. bottom: 46 / 2494
  24949. }
  24950. },
  24951. back: {
  24952. height: math.unit(100, "feet"),
  24953. name: "Back",
  24954. image: {
  24955. source: "./media/characters/erza-bear/back.svg",
  24956. extra: 2489 / 2430,
  24957. bottom: 85.4 / 2480
  24958. }
  24959. },
  24960. tail: {
  24961. height: math.unit(42, "feet"),
  24962. name: "Tail",
  24963. image: {
  24964. source: "./media/characters/erza-bear/tail.svg"
  24965. }
  24966. },
  24967. tongue: {
  24968. height: math.unit(8, "feet"),
  24969. name: "Tongue",
  24970. image: {
  24971. source: "./media/characters/erza-bear/tongue.svg"
  24972. }
  24973. },
  24974. dick: {
  24975. height: math.unit(10.5, "feet"),
  24976. name: "Dick",
  24977. image: {
  24978. source: "./media/characters/erza-bear/dick.svg"
  24979. }
  24980. },
  24981. dickVertical: {
  24982. height: math.unit(16.9, "feet"),
  24983. name: "Dick (Vertical)",
  24984. image: {
  24985. source: "./media/characters/erza-bear/dick-vertical.svg"
  24986. }
  24987. },
  24988. },
  24989. [
  24990. {
  24991. name: "Macro",
  24992. height: math.unit(100, "feet"),
  24993. default: true
  24994. },
  24995. ]
  24996. ))
  24997. characterMakers.push(() => makeCharacter(
  24998. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24999. {
  25000. front: {
  25001. height: math.unit(172, "cm"),
  25002. weight: math.unit(73, "kg"),
  25003. name: "Front",
  25004. image: {
  25005. source: "./media/characters/violet-flor/front.svg",
  25006. extra: 1530 / 1442,
  25007. bottom: 61.9 / 1588.8
  25008. }
  25009. },
  25010. back: {
  25011. height: math.unit(180, "cm"),
  25012. weight: math.unit(73, "kg"),
  25013. name: "Back",
  25014. image: {
  25015. source: "./media/characters/violet-flor/back.svg",
  25016. extra: 1692 / 1630,
  25017. bottom: 20 / 1712
  25018. }
  25019. },
  25020. },
  25021. [
  25022. {
  25023. name: "Normal",
  25024. height: math.unit(172, "cm"),
  25025. default: true
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(6, "feet"),
  25034. weight: math.unit(220, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/lynn-rhea/front.svg",
  25038. extra: 310 / 273
  25039. }
  25040. },
  25041. back: {
  25042. height: math.unit(6, "feet"),
  25043. weight: math.unit(220, "lb"),
  25044. name: "Back",
  25045. image: {
  25046. source: "./media/characters/lynn-rhea/back.svg",
  25047. extra: 310 / 273
  25048. }
  25049. },
  25050. dicks: {
  25051. height: math.unit(0.9, "feet"),
  25052. name: "Dicks",
  25053. image: {
  25054. source: "./media/characters/lynn-rhea/dicks.svg"
  25055. }
  25056. },
  25057. slit: {
  25058. height: math.unit(0.4, "feet"),
  25059. name: "Slit",
  25060. image: {
  25061. source: "./media/characters/lynn-rhea/slit.svg"
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Micro",
  25068. height: math.unit(1, "inch")
  25069. },
  25070. {
  25071. name: "Macro",
  25072. height: math.unit(60, "feet"),
  25073. default: true
  25074. },
  25075. {
  25076. name: "Megamacro",
  25077. height: math.unit(2, "miles")
  25078. },
  25079. {
  25080. name: "Gigamacro",
  25081. height: math.unit(3, "earths")
  25082. },
  25083. {
  25084. name: "Galactic",
  25085. height: math.unit(0.8, "galaxies")
  25086. },
  25087. ]
  25088. ))
  25089. characterMakers.push(() => makeCharacter(
  25090. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25091. {
  25092. front: {
  25093. height: math.unit(1600, "feet"),
  25094. weight: math.unit(85758785169, "kg"),
  25095. name: "Front",
  25096. image: {
  25097. source: "./media/characters/valathos/front.svg",
  25098. extra: 1451 / 1339
  25099. }
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Macro",
  25105. height: math.unit(1600, "feet"),
  25106. default: true
  25107. },
  25108. ]
  25109. ))
  25110. characterMakers.push(() => makeCharacter(
  25111. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25112. {
  25113. front: {
  25114. height: math.unit(7 + 5 / 12, "feet"),
  25115. weight: math.unit(300, "lb"),
  25116. name: "Front",
  25117. image: {
  25118. source: "./media/characters/azula/front.svg",
  25119. extra: 3208 / 2880,
  25120. bottom: 80.2 / 3277
  25121. }
  25122. },
  25123. back: {
  25124. height: math.unit(7 + 5 / 12, "feet"),
  25125. weight: math.unit(300, "lb"),
  25126. name: "Back",
  25127. image: {
  25128. source: "./media/characters/azula/back.svg",
  25129. extra: 3169 / 2822,
  25130. bottom: 150.6 / 3321
  25131. }
  25132. },
  25133. },
  25134. [
  25135. {
  25136. name: "Normal",
  25137. height: math.unit(7 + 5 / 12, "feet"),
  25138. default: true
  25139. },
  25140. {
  25141. name: "Big",
  25142. height: math.unit(20, "feet")
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(5 + 1 / 12, "feet"),
  25151. weight: math.unit(110, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/rupert/front.svg",
  25155. extra: 1549 / 1495,
  25156. bottom: 54.2 / 1604.4
  25157. }
  25158. },
  25159. },
  25160. [
  25161. {
  25162. name: "Normal",
  25163. height: math.unit(5 + 1 / 12, "feet"),
  25164. default: true
  25165. },
  25166. ]
  25167. ))
  25168. characterMakers.push(() => makeCharacter(
  25169. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25170. {
  25171. front: {
  25172. height: math.unit(8 + 4 / 12, "feet"),
  25173. weight: math.unit(350, "lb"),
  25174. name: "Front",
  25175. image: {
  25176. source: "./media/characters/sheera-castellar/front.svg",
  25177. extra: 1957 / 1894,
  25178. bottom: 26.97 / 1975.017
  25179. }
  25180. },
  25181. side: {
  25182. height: math.unit(8 + 4 / 12, "feet"),
  25183. weight: math.unit(350, "lb"),
  25184. name: "Side",
  25185. image: {
  25186. source: "./media/characters/sheera-castellar/side.svg",
  25187. extra: 1957 / 1894
  25188. }
  25189. },
  25190. back: {
  25191. height: math.unit(8 + 4 / 12, "feet"),
  25192. weight: math.unit(350, "lb"),
  25193. name: "Back",
  25194. image: {
  25195. source: "./media/characters/sheera-castellar/back.svg",
  25196. extra: 1957 / 1894
  25197. }
  25198. },
  25199. angled: {
  25200. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25201. weight: math.unit(350, "lb"),
  25202. name: "Angled",
  25203. image: {
  25204. source: "./media/characters/sheera-castellar/angled.svg",
  25205. extra: 1807 / 1707,
  25206. bottom: 68 / 1875
  25207. }
  25208. },
  25209. genitals: {
  25210. height: math.unit(2.2, "feet"),
  25211. name: "Genitals",
  25212. image: {
  25213. source: "./media/characters/sheera-castellar/genitals.svg"
  25214. }
  25215. },
  25216. taur: {
  25217. height: math.unit(10 + 6/12, "feet"),
  25218. name: "Taur",
  25219. image: {
  25220. source: "./media/characters/sheera-castellar/taur.svg",
  25221. extra: 2017/1909,
  25222. bottom: 185/2202
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(8 + 4 / 12, "feet")
  25230. },
  25231. {
  25232. name: "Macro",
  25233. height: math.unit(150, "feet"),
  25234. default: true
  25235. },
  25236. {
  25237. name: "Macro+",
  25238. height: math.unit(800, "feet")
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(6, "feet"),
  25247. weight: math.unit(150, "lb"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/jaipur/front.svg",
  25251. extra: 3860 / 3731,
  25252. bottom: 287 / 4140
  25253. }
  25254. },
  25255. back: {
  25256. height: math.unit(6, "feet"),
  25257. weight: math.unit(150, "lb"),
  25258. name: "Back",
  25259. image: {
  25260. source: "./media/characters/jaipur/back.svg",
  25261. extra: 1637/1561,
  25262. bottom: 154/1791
  25263. }
  25264. },
  25265. },
  25266. [
  25267. {
  25268. name: "Normal",
  25269. height: math.unit(1.85, "meters"),
  25270. default: true
  25271. },
  25272. {
  25273. name: "Macro",
  25274. height: math.unit(150, "meters")
  25275. },
  25276. {
  25277. name: "Macro+",
  25278. height: math.unit(0.5, "miles")
  25279. },
  25280. {
  25281. name: "Macro++",
  25282. height: math.unit(2.5, "miles")
  25283. },
  25284. {
  25285. name: "Macro+++",
  25286. height: math.unit(12, "miles")
  25287. },
  25288. {
  25289. name: "Macro++++",
  25290. height: math.unit(120, "miles")
  25291. },
  25292. {
  25293. name: "Macro+++++",
  25294. height: math.unit(1200, "miles")
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(6, "feet"),
  25303. weight: math.unit(150, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/sheila-wolf/front.svg",
  25307. extra: 1931 / 1808,
  25308. bottom: 29.5 / 1960
  25309. }
  25310. },
  25311. dick: {
  25312. height: math.unit(1.464, "feet"),
  25313. name: "Dick",
  25314. image: {
  25315. source: "./media/characters/sheila-wolf/dick.svg"
  25316. }
  25317. },
  25318. muzzle: {
  25319. height: math.unit(0.513, "feet"),
  25320. name: "Muzzle",
  25321. image: {
  25322. source: "./media/characters/sheila-wolf/muzzle.svg"
  25323. }
  25324. },
  25325. },
  25326. [
  25327. {
  25328. name: "Macro",
  25329. height: math.unit(70, "feet"),
  25330. default: true
  25331. },
  25332. ]
  25333. ))
  25334. characterMakers.push(() => makeCharacter(
  25335. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25336. {
  25337. front: {
  25338. height: math.unit(32, "meters"),
  25339. weight: math.unit(300000, "kg"),
  25340. name: "Front",
  25341. image: {
  25342. source: "./media/characters/almor/front.svg",
  25343. extra: 1408 / 1322,
  25344. bottom: 94.6 / 1506.5
  25345. }
  25346. },
  25347. },
  25348. [
  25349. {
  25350. name: "Macro",
  25351. height: math.unit(32, "meters"),
  25352. default: true
  25353. },
  25354. ]
  25355. ))
  25356. characterMakers.push(() => makeCharacter(
  25357. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25358. {
  25359. front: {
  25360. height: math.unit(7, "feet"),
  25361. weight: math.unit(200, "lb"),
  25362. name: "Front",
  25363. image: {
  25364. source: "./media/characters/silver/front.svg",
  25365. extra: 472.1 / 450.5,
  25366. bottom: 26.5 / 499.424
  25367. }
  25368. },
  25369. },
  25370. [
  25371. {
  25372. name: "Normal",
  25373. height: math.unit(7, "feet"),
  25374. default: true
  25375. },
  25376. {
  25377. name: "Macro",
  25378. height: math.unit(800, "feet")
  25379. },
  25380. {
  25381. name: "Megamacro",
  25382. height: math.unit(250, "miles")
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(6, "feet"),
  25391. weight: math.unit(150, "lb"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/pliskin/front.svg",
  25395. extra: 1469 / 1359,
  25396. bottom: 70 / 1540
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Micro",
  25403. height: math.unit(3, "inches")
  25404. },
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(5 + 11 / 12, "feet"),
  25408. default: true
  25409. },
  25410. {
  25411. name: "Macro",
  25412. height: math.unit(120, "feet")
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(6, "feet"),
  25421. weight: math.unit(150, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/sammy/front.svg",
  25425. extra: 1193 / 1089,
  25426. bottom: 30.5 / 1226
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Macro",
  25433. height: math.unit(1700, "feet"),
  25434. default: true
  25435. },
  25436. {
  25437. name: "Examacro",
  25438. height: math.unit(2.5e9, "lightyears")
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(21, "meters"),
  25447. weight: math.unit(12, "tonnes"),
  25448. name: "Front",
  25449. image: {
  25450. source: "./media/characters/kuru/front.svg",
  25451. extra: 4301 / 3785,
  25452. bottom: 371.3 / 4691
  25453. }
  25454. },
  25455. },
  25456. [
  25457. {
  25458. name: "Macro",
  25459. height: math.unit(21, "meters"),
  25460. default: true
  25461. },
  25462. ]
  25463. ))
  25464. characterMakers.push(() => makeCharacter(
  25465. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25466. {
  25467. front: {
  25468. height: math.unit(23, "meters"),
  25469. weight: math.unit(12.2, "tonnes"),
  25470. name: "Front",
  25471. image: {
  25472. source: "./media/characters/rakka/front.svg",
  25473. extra: 4670 / 4169,
  25474. bottom: 301 / 4968.7
  25475. }
  25476. },
  25477. },
  25478. [
  25479. {
  25480. name: "Macro",
  25481. height: math.unit(23, "meters"),
  25482. default: true
  25483. },
  25484. ]
  25485. ))
  25486. characterMakers.push(() => makeCharacter(
  25487. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25488. {
  25489. front: {
  25490. height: math.unit(6, "feet"),
  25491. weight: math.unit(150, "lb"),
  25492. name: "Front",
  25493. image: {
  25494. source: "./media/characters/rhys-feline/front.svg",
  25495. extra: 2488 / 2308,
  25496. bottom: 35.67 / 2519.19
  25497. }
  25498. },
  25499. },
  25500. [
  25501. {
  25502. name: "Really Small",
  25503. height: math.unit(1, "nm")
  25504. },
  25505. {
  25506. name: "Micro",
  25507. height: math.unit(4, "inches")
  25508. },
  25509. {
  25510. name: "Normal",
  25511. height: math.unit(4 + 10 / 12, "feet"),
  25512. default: true
  25513. },
  25514. {
  25515. name: "Macro",
  25516. height: math.unit(100, "feet")
  25517. },
  25518. {
  25519. name: "Megamacto",
  25520. height: math.unit(50, "miles")
  25521. },
  25522. ]
  25523. ))
  25524. characterMakers.push(() => makeCharacter(
  25525. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25526. {
  25527. side: {
  25528. height: math.unit(30, "feet"),
  25529. weight: math.unit(35000, "kg"),
  25530. name: "Side",
  25531. image: {
  25532. source: "./media/characters/alydar/side.svg",
  25533. extra: 234 / 222,
  25534. bottom: 6.5 / 241
  25535. }
  25536. },
  25537. front: {
  25538. height: math.unit(30, "feet"),
  25539. weight: math.unit(35000, "kg"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/alydar/front.svg",
  25543. extra: 223.37 / 210.2,
  25544. bottom: 22.3 / 246.76
  25545. }
  25546. },
  25547. top: {
  25548. height: math.unit(64.54, "feet"),
  25549. weight: math.unit(35000, "kg"),
  25550. name: "Top",
  25551. image: {
  25552. source: "./media/characters/alydar/top.svg"
  25553. }
  25554. },
  25555. anthro: {
  25556. height: math.unit(30, "feet"),
  25557. weight: math.unit(9000, "kg"),
  25558. name: "Anthro",
  25559. image: {
  25560. source: "./media/characters/alydar/anthro.svg",
  25561. extra: 432 / 421,
  25562. bottom: 7.18 / 440
  25563. }
  25564. },
  25565. maw: {
  25566. height: math.unit(11.693, "feet"),
  25567. name: "Maw",
  25568. image: {
  25569. source: "./media/characters/alydar/maw.svg"
  25570. }
  25571. },
  25572. head: {
  25573. height: math.unit(11.693, "feet"),
  25574. name: "Head",
  25575. image: {
  25576. source: "./media/characters/alydar/head.svg"
  25577. }
  25578. },
  25579. headAlt: {
  25580. height: math.unit(12.861, "feet"),
  25581. name: "Head (Alt)",
  25582. image: {
  25583. source: "./media/characters/alydar/head-alt.svg"
  25584. }
  25585. },
  25586. wing: {
  25587. height: math.unit(20.712, "feet"),
  25588. name: "Wing",
  25589. image: {
  25590. source: "./media/characters/alydar/wing.svg"
  25591. }
  25592. },
  25593. wingFeather: {
  25594. height: math.unit(9.662, "feet"),
  25595. name: "Wing Feather",
  25596. image: {
  25597. source: "./media/characters/alydar/wing-feather.svg"
  25598. }
  25599. },
  25600. countourFeather: {
  25601. height: math.unit(4.154, "feet"),
  25602. name: "Contour Feather",
  25603. image: {
  25604. source: "./media/characters/alydar/contour-feather.svg"
  25605. }
  25606. },
  25607. },
  25608. [
  25609. {
  25610. name: "Diplomatic",
  25611. height: math.unit(13, "feet"),
  25612. default: true
  25613. },
  25614. {
  25615. name: "Small",
  25616. height: math.unit(30, "feet")
  25617. },
  25618. {
  25619. name: "Normal",
  25620. height: math.unit(95, "feet"),
  25621. default: true
  25622. },
  25623. {
  25624. name: "Large",
  25625. height: math.unit(285, "feet")
  25626. },
  25627. {
  25628. name: "Incomprehensible",
  25629. height: math.unit(450, "megameters")
  25630. },
  25631. ]
  25632. ))
  25633. characterMakers.push(() => makeCharacter(
  25634. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  25635. {
  25636. side: {
  25637. height: math.unit(11, "feet"),
  25638. weight: math.unit(1750, "kg"),
  25639. name: "Side",
  25640. image: {
  25641. source: "./media/characters/selicia/side.svg",
  25642. extra: 440 / 396,
  25643. bottom: 24.8 / 465.979
  25644. }
  25645. },
  25646. maw: {
  25647. height: math.unit(4.665, "feet"),
  25648. name: "Maw",
  25649. image: {
  25650. source: "./media/characters/selicia/maw.svg"
  25651. }
  25652. },
  25653. },
  25654. [
  25655. {
  25656. name: "Normal",
  25657. height: math.unit(11, "feet"),
  25658. default: true
  25659. },
  25660. ]
  25661. ))
  25662. characterMakers.push(() => makeCharacter(
  25663. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25664. {
  25665. side: {
  25666. height: math.unit(2 + 6 / 12, "feet"),
  25667. weight: math.unit(30, "lb"),
  25668. name: "Side",
  25669. image: {
  25670. source: "./media/characters/layla/side.svg",
  25671. extra: 244 / 188,
  25672. bottom: 18.2 / 262.1
  25673. }
  25674. },
  25675. back: {
  25676. height: math.unit(2 + 6 / 12, "feet"),
  25677. weight: math.unit(30, "lb"),
  25678. name: "Back",
  25679. image: {
  25680. source: "./media/characters/layla/back.svg",
  25681. extra: 308 / 241.5,
  25682. bottom: 8.9 / 316.8
  25683. }
  25684. },
  25685. cumming: {
  25686. height: math.unit(2 + 6 / 12, "feet"),
  25687. weight: math.unit(30, "lb"),
  25688. name: "Cumming",
  25689. image: {
  25690. source: "./media/characters/layla/cumming.svg",
  25691. extra: 342 / 279,
  25692. bottom: 595 / 938
  25693. }
  25694. },
  25695. dickFlaccid: {
  25696. height: math.unit(2.595, "feet"),
  25697. name: "Flaccid Genitals",
  25698. image: {
  25699. source: "./media/characters/layla/dick-flaccid.svg"
  25700. }
  25701. },
  25702. dickErect: {
  25703. height: math.unit(2.359, "feet"),
  25704. name: "Erect Genitals",
  25705. image: {
  25706. source: "./media/characters/layla/dick-erect.svg"
  25707. }
  25708. },
  25709. dragon: {
  25710. height: math.unit(40, "feet"),
  25711. name: "Dragon",
  25712. image: {
  25713. source: "./media/characters/layla/dragon.svg",
  25714. extra: 610/535,
  25715. bottom: 367/977
  25716. }
  25717. },
  25718. taur: {
  25719. height: math.unit(30, "feet"),
  25720. name: "Taur",
  25721. image: {
  25722. source: "./media/characters/layla/taur.svg",
  25723. extra: 1268/1199,
  25724. bottom: 112/1380
  25725. }
  25726. },
  25727. },
  25728. [
  25729. {
  25730. name: "Micro",
  25731. height: math.unit(1, "inch")
  25732. },
  25733. {
  25734. name: "Small",
  25735. height: math.unit(1, "foot")
  25736. },
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(2 + 6 / 12, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Macro",
  25744. height: math.unit(200, "feet")
  25745. },
  25746. {
  25747. name: "Megamacro",
  25748. height: math.unit(1000, "miles")
  25749. },
  25750. {
  25751. name: "Planetary",
  25752. height: math.unit(8000, "miles")
  25753. },
  25754. {
  25755. name: "True Layla",
  25756. height: math.unit(200000 * 7, "multiverses")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25762. {
  25763. back: {
  25764. height: math.unit(10.5, "feet"),
  25765. weight: math.unit(800, "lb"),
  25766. name: "Back",
  25767. image: {
  25768. source: "./media/characters/knox/back.svg",
  25769. extra: 1486 / 1089,
  25770. bottom: 107 / 1601.4
  25771. }
  25772. },
  25773. side: {
  25774. height: math.unit(10.5, "feet"),
  25775. weight: math.unit(800, "lb"),
  25776. name: "Side",
  25777. image: {
  25778. source: "./media/characters/knox/side.svg",
  25779. extra: 244 / 218,
  25780. bottom: 14 / 260
  25781. }
  25782. },
  25783. },
  25784. [
  25785. {
  25786. name: "Compact",
  25787. height: math.unit(10.5, "feet"),
  25788. default: true
  25789. },
  25790. {
  25791. name: "Dynamax",
  25792. height: math.unit(210, "feet")
  25793. },
  25794. {
  25795. name: "Full Macro",
  25796. height: math.unit(850, "feet")
  25797. },
  25798. ]
  25799. ))
  25800. characterMakers.push(() => makeCharacter(
  25801. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25802. {
  25803. front: {
  25804. height: math.unit(28, "feet"),
  25805. weight: math.unit(10500, "lb"),
  25806. name: "Front",
  25807. image: {
  25808. source: "./media/characters/kayda/front.svg",
  25809. extra: 1536 / 1428,
  25810. bottom: 68.7 / 1603
  25811. }
  25812. },
  25813. back: {
  25814. height: math.unit(28, "feet"),
  25815. weight: math.unit(10500, "lb"),
  25816. name: "Back",
  25817. image: {
  25818. source: "./media/characters/kayda/back.svg",
  25819. extra: 1557 / 1464,
  25820. bottom: 39.5 / 1597.49
  25821. }
  25822. },
  25823. dick: {
  25824. height: math.unit(3.858, "feet"),
  25825. name: "Dick",
  25826. image: {
  25827. source: "./media/characters/kayda/dick.svg"
  25828. }
  25829. },
  25830. },
  25831. [
  25832. {
  25833. name: "Macro",
  25834. height: math.unit(28, "feet"),
  25835. default: true
  25836. },
  25837. ]
  25838. ))
  25839. characterMakers.push(() => makeCharacter(
  25840. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25841. {
  25842. front: {
  25843. height: math.unit(10 + 11 / 12, "feet"),
  25844. weight: math.unit(1400, "lb"),
  25845. name: "Front",
  25846. image: {
  25847. source: "./media/characters/brian/front.svg",
  25848. extra: 737 / 692,
  25849. bottom: 55.4 / 785
  25850. }
  25851. },
  25852. },
  25853. [
  25854. {
  25855. name: "Normal",
  25856. height: math.unit(10 + 11 / 12, "feet"),
  25857. default: true
  25858. },
  25859. ]
  25860. ))
  25861. characterMakers.push(() => makeCharacter(
  25862. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25863. {
  25864. front: {
  25865. height: math.unit(5 + 8 / 12, "feet"),
  25866. weight: math.unit(140, "lb"),
  25867. name: "Front",
  25868. image: {
  25869. source: "./media/characters/khemri/front.svg",
  25870. extra: 4780 / 4059,
  25871. bottom: 80.1 / 4859.25
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Micro",
  25878. height: math.unit(6, "inches")
  25879. },
  25880. {
  25881. name: "Normal",
  25882. height: math.unit(5 + 8 / 12, "feet"),
  25883. default: true
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25889. {
  25890. front: {
  25891. height: math.unit(13, "feet"),
  25892. weight: math.unit(1700, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/felix-braveheart/front.svg",
  25896. extra: 1222 / 1157,
  25897. bottom: 53.2 / 1280
  25898. }
  25899. },
  25900. back: {
  25901. height: math.unit(13, "feet"),
  25902. weight: math.unit(1700, "lb"),
  25903. name: "Back",
  25904. image: {
  25905. source: "./media/characters/felix-braveheart/back.svg",
  25906. extra: 1277 / 1203,
  25907. bottom: 50.2 / 1327
  25908. }
  25909. },
  25910. feral: {
  25911. height: math.unit(6, "feet"),
  25912. weight: math.unit(400, "lb"),
  25913. name: "Feral",
  25914. image: {
  25915. source: "./media/characters/felix-braveheart/feral.svg",
  25916. extra: 682 / 625,
  25917. bottom: 6.9 / 688
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Normal",
  25924. height: math.unit(13, "feet"),
  25925. default: true
  25926. },
  25927. ]
  25928. ))
  25929. characterMakers.push(() => makeCharacter(
  25930. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25931. {
  25932. side: {
  25933. height: math.unit(5 + 11 / 12, "feet"),
  25934. weight: math.unit(1400, "lb"),
  25935. name: "Side",
  25936. image: {
  25937. source: "./media/characters/shadow-blade/side.svg",
  25938. extra: 1726 / 1267,
  25939. bottom: 58.4 / 1785
  25940. }
  25941. },
  25942. },
  25943. [
  25944. {
  25945. name: "Normal",
  25946. height: math.unit(5 + 11 / 12, "feet"),
  25947. default: true
  25948. },
  25949. ]
  25950. ))
  25951. characterMakers.push(() => makeCharacter(
  25952. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25953. {
  25954. front: {
  25955. height: math.unit(1 + 6 / 12, "feet"),
  25956. weight: math.unit(25, "lb"),
  25957. name: "Front",
  25958. image: {
  25959. source: "./media/characters/karla-halldor/front.svg",
  25960. extra: 1459 / 1383,
  25961. bottom: 12 / 1472
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(1 + 6 / 12, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(6 + 2 / 12, "feet"),
  25978. weight: math.unit(160, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/ariam/front.svg",
  25982. extra: 1073/976,
  25983. bottom: 52/1125
  25984. }
  25985. },
  25986. back: {
  25987. height: math.unit(6 + 2/12, "feet"),
  25988. weight: math.unit(160, "lb"),
  25989. name: "Back",
  25990. image: {
  25991. source: "./media/characters/ariam/back.svg",
  25992. extra: 1103/1023,
  25993. bottom: 9/1112
  25994. }
  25995. },
  25996. dressed: {
  25997. height: math.unit(6 + 2/12, "feet"),
  25998. weight: math.unit(160, "lb"),
  25999. name: "Dressed",
  26000. image: {
  26001. source: "./media/characters/ariam/dressed.svg",
  26002. extra: 1099/1009,
  26003. bottom: 25/1124
  26004. }
  26005. },
  26006. squatting: {
  26007. height: math.unit(4.1, "feet"),
  26008. weight: math.unit(160, "lb"),
  26009. name: "Squatting",
  26010. image: {
  26011. source: "./media/characters/ariam/squatting.svg",
  26012. extra: 2617 / 2112,
  26013. bottom: 61.2 / 2681,
  26014. }
  26015. },
  26016. },
  26017. [
  26018. {
  26019. name: "Normal",
  26020. height: math.unit(6 + 2 / 12, "feet"),
  26021. default: true
  26022. },
  26023. {
  26024. name: "Normal+",
  26025. height: math.unit(4, "meters")
  26026. },
  26027. {
  26028. name: "Macro",
  26029. height: math.unit(50, "meters")
  26030. },
  26031. {
  26032. name: "Macro+",
  26033. height: math.unit(100, "meters")
  26034. },
  26035. {
  26036. name: "Megamacro",
  26037. height: math.unit(20, "km")
  26038. },
  26039. {
  26040. name: "Caretaker",
  26041. height: math.unit(444, "megameters")
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(1.67, "meters"),
  26050. weight: math.unit(140, "lb"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26054. extra: 438 / 410,
  26055. bottom: 0.75 / 439
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Shrunken",
  26062. height: math.unit(7.6, "cm")
  26063. },
  26064. {
  26065. name: "Human Scale",
  26066. height: math.unit(1.67, "meters")
  26067. },
  26068. {
  26069. name: "Wolxi Scale",
  26070. height: math.unit(36.7, "meters"),
  26071. default: true
  26072. },
  26073. ]
  26074. ))
  26075. characterMakers.push(() => makeCharacter(
  26076. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26077. {
  26078. front: {
  26079. height: math.unit(1.73, "meters"),
  26080. weight: math.unit(240, "lb"),
  26081. name: "Front",
  26082. image: {
  26083. source: "./media/characters/izue-two-mothers/front.svg",
  26084. extra: 469 / 437,
  26085. bottom: 1.24 / 470.6
  26086. }
  26087. },
  26088. },
  26089. [
  26090. {
  26091. name: "Shrunken",
  26092. height: math.unit(7.86, "cm")
  26093. },
  26094. {
  26095. name: "Human Scale",
  26096. height: math.unit(1.73, "meters")
  26097. },
  26098. {
  26099. name: "Wolxi Scale",
  26100. height: math.unit(38, "meters"),
  26101. default: true
  26102. },
  26103. ]
  26104. ))
  26105. characterMakers.push(() => makeCharacter(
  26106. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26107. {
  26108. front: {
  26109. height: math.unit(1.55, "meters"),
  26110. weight: math.unit(120, "lb"),
  26111. name: "Front",
  26112. image: {
  26113. source: "./media/characters/teeku-love-shack/front.svg",
  26114. extra: 387 / 362,
  26115. bottom: 1.51 / 388
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Shrunken",
  26122. height: math.unit(7, "cm")
  26123. },
  26124. {
  26125. name: "Human Scale",
  26126. height: math.unit(1.55, "meters")
  26127. },
  26128. {
  26129. name: "Wolxi Scale",
  26130. height: math.unit(34.1, "meters"),
  26131. default: true
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(1.83, "meters"),
  26140. weight: math.unit(135, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/dejma-the-red/front.svg",
  26144. extra: 480 / 458,
  26145. bottom: 1.8 / 482
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Shrunken",
  26152. height: math.unit(8.3, "cm")
  26153. },
  26154. {
  26155. name: "Human Scale",
  26156. height: math.unit(1.83, "meters")
  26157. },
  26158. {
  26159. name: "Wolxi Scale",
  26160. height: math.unit(40, "meters"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(1.78, "meters"),
  26170. weight: math.unit(65, "kg"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/aki/front.svg",
  26174. extra: 452 / 415
  26175. }
  26176. },
  26177. frontNsfw: {
  26178. height: math.unit(1.78, "meters"),
  26179. weight: math.unit(65, "kg"),
  26180. name: "Front (NSFW)",
  26181. image: {
  26182. source: "./media/characters/aki/front-nsfw.svg",
  26183. extra: 452 / 415
  26184. }
  26185. },
  26186. back: {
  26187. height: math.unit(1.78, "meters"),
  26188. weight: math.unit(65, "kg"),
  26189. name: "Back",
  26190. image: {
  26191. source: "./media/characters/aki/back.svg",
  26192. extra: 452 / 415
  26193. }
  26194. },
  26195. rump: {
  26196. height: math.unit(2.05, "feet"),
  26197. name: "Rump",
  26198. image: {
  26199. source: "./media/characters/aki/rump.svg"
  26200. }
  26201. },
  26202. dick: {
  26203. height: math.unit(0.95, "feet"),
  26204. name: "Dick",
  26205. image: {
  26206. source: "./media/characters/aki/dick.svg"
  26207. }
  26208. },
  26209. },
  26210. [
  26211. {
  26212. name: "Micro",
  26213. height: math.unit(15, "cm")
  26214. },
  26215. {
  26216. name: "Normal",
  26217. height: math.unit(178, "cm"),
  26218. default: true
  26219. },
  26220. {
  26221. name: "Macro",
  26222. height: math.unit(214, "m")
  26223. },
  26224. {
  26225. name: "Macro+",
  26226. height: math.unit(534, "m")
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(5 + 5 / 12, "feet"),
  26235. weight: math.unit(120, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/ari/front.svg",
  26239. extra: 1550/1471,
  26240. bottom: 39/1589
  26241. }
  26242. },
  26243. },
  26244. [
  26245. {
  26246. name: "Normal",
  26247. height: math.unit(5 + 5 / 12, "feet")
  26248. },
  26249. {
  26250. name: "Macro",
  26251. height: math.unit(100, "feet"),
  26252. default: true
  26253. },
  26254. {
  26255. name: "Megamacro",
  26256. height: math.unit(100, "miles")
  26257. },
  26258. {
  26259. name: "Gigamacro",
  26260. height: math.unit(80000, "miles")
  26261. },
  26262. ]
  26263. ))
  26264. characterMakers.push(() => makeCharacter(
  26265. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26266. {
  26267. side: {
  26268. height: math.unit(9, "feet"),
  26269. weight: math.unit(400, "kg"),
  26270. name: "Side",
  26271. image: {
  26272. source: "./media/characters/bolt/side.svg",
  26273. extra: 1126 / 896,
  26274. bottom: 60 / 1187.3,
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Micro",
  26281. height: math.unit(5, "inches")
  26282. },
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(9, "feet"),
  26286. default: true
  26287. },
  26288. {
  26289. name: "Macro",
  26290. height: math.unit(700, "feet")
  26291. },
  26292. {
  26293. name: "Max Size",
  26294. height: math.unit(1.52e22, "yottameters")
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(4.3, "meters"),
  26303. weight: math.unit(3, "tons"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/draekon-sylviar/front.svg",
  26307. extra: 2072/1512,
  26308. bottom: 74/2146
  26309. }
  26310. },
  26311. back: {
  26312. height: math.unit(4.3, "meters"),
  26313. weight: math.unit(3, "tons"),
  26314. name: "Back",
  26315. image: {
  26316. source: "./media/characters/draekon-sylviar/back.svg",
  26317. extra: 1639/1483,
  26318. bottom: 41/1680
  26319. }
  26320. },
  26321. feral: {
  26322. height: math.unit(1.15, "meters"),
  26323. weight: math.unit(3, "tons"),
  26324. name: "Feral",
  26325. image: {
  26326. source: "./media/characters/draekon-sylviar/feral.svg",
  26327. extra: 1033/395,
  26328. bottom: 130/1163
  26329. }
  26330. },
  26331. maw: {
  26332. height: math.unit(1.3, "meters"),
  26333. name: "Maw",
  26334. image: {
  26335. source: "./media/characters/draekon-sylviar/maw.svg"
  26336. }
  26337. },
  26338. mawSeparated: {
  26339. height: math.unit(1.53, "meters"),
  26340. name: "Separated Maw",
  26341. image: {
  26342. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26343. }
  26344. },
  26345. tail: {
  26346. height: math.unit(1.15, "meters"),
  26347. name: "Tail",
  26348. image: {
  26349. source: "./media/characters/draekon-sylviar/tail.svg"
  26350. }
  26351. },
  26352. tailDick: {
  26353. height: math.unit(1.15, "meters"),
  26354. name: "Tail (Dick)",
  26355. image: {
  26356. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26357. }
  26358. },
  26359. tailDickSeparated: {
  26360. height: math.unit(1.19, "meters"),
  26361. name: "Tail (Separated Dick)",
  26362. image: {
  26363. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26364. }
  26365. },
  26366. slit: {
  26367. height: math.unit(1, "meters"),
  26368. name: "Slit",
  26369. image: {
  26370. source: "./media/characters/draekon-sylviar/slit.svg"
  26371. }
  26372. },
  26373. dick: {
  26374. height: math.unit(1.15, "meters"),
  26375. name: "Dick",
  26376. image: {
  26377. source: "./media/characters/draekon-sylviar/dick.svg"
  26378. }
  26379. },
  26380. dickSeparated: {
  26381. height: math.unit(1.1, "meters"),
  26382. name: "Separated Dick",
  26383. image: {
  26384. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26385. }
  26386. },
  26387. sheath: {
  26388. height: math.unit(1.15, "meters"),
  26389. name: "Sheath",
  26390. image: {
  26391. source: "./media/characters/draekon-sylviar/sheath.svg"
  26392. }
  26393. },
  26394. },
  26395. [
  26396. {
  26397. name: "Small",
  26398. height: math.unit(4.53 / 2, "meters"),
  26399. default: true
  26400. },
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(4.53, "meters"),
  26404. default: true
  26405. },
  26406. {
  26407. name: "Large",
  26408. height: math.unit(4.53 * 2, "meters"),
  26409. },
  26410. ]
  26411. ))
  26412. characterMakers.push(() => makeCharacter(
  26413. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26414. {
  26415. front: {
  26416. height: math.unit(6 + 2 / 12, "feet"),
  26417. weight: math.unit(180, "lb"),
  26418. name: "Front",
  26419. image: {
  26420. source: "./media/characters/brawler/front.svg",
  26421. extra: 3301 / 3027,
  26422. bottom: 138 / 3439
  26423. }
  26424. },
  26425. },
  26426. [
  26427. {
  26428. name: "Normal",
  26429. height: math.unit(6 + 2 / 12, "feet"),
  26430. default: true
  26431. },
  26432. ]
  26433. ))
  26434. characterMakers.push(() => makeCharacter(
  26435. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26436. {
  26437. front: {
  26438. height: math.unit(11, "feet"),
  26439. weight: math.unit(1000, "lb"),
  26440. name: "Front",
  26441. image: {
  26442. source: "./media/characters/alex/front.svg",
  26443. bottom: 44.5 / 620
  26444. }
  26445. },
  26446. },
  26447. [
  26448. {
  26449. name: "Micro",
  26450. height: math.unit(5, "inches")
  26451. },
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(11, "feet"),
  26455. default: true
  26456. },
  26457. {
  26458. name: "Macro",
  26459. height: math.unit(9.5e9, "feet")
  26460. },
  26461. {
  26462. name: "Max Size",
  26463. height: math.unit(1.4e283, "yottameters")
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26469. {
  26470. female: {
  26471. height: math.unit(29.9, "m"),
  26472. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26473. name: "Female",
  26474. image: {
  26475. source: "./media/characters/zenari/female.svg",
  26476. extra: 3281.6 / 3217,
  26477. bottom: 72.2 / 3353
  26478. }
  26479. },
  26480. male: {
  26481. height: math.unit(27.7, "m"),
  26482. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26483. name: "Male",
  26484. image: {
  26485. source: "./media/characters/zenari/male.svg",
  26486. extra: 3008 / 2991,
  26487. bottom: 54.6 / 3069
  26488. }
  26489. },
  26490. },
  26491. [
  26492. {
  26493. name: "Macro",
  26494. height: math.unit(29.7, "meters"),
  26495. default: true
  26496. },
  26497. ]
  26498. ))
  26499. characterMakers.push(() => makeCharacter(
  26500. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26501. {
  26502. female: {
  26503. height: math.unit(23.8, "m"),
  26504. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26505. name: "Female",
  26506. image: {
  26507. source: "./media/characters/mactarian/female.svg",
  26508. extra: 2662 / 2569,
  26509. bottom: 73 / 2736
  26510. }
  26511. },
  26512. male: {
  26513. height: math.unit(23.8, "m"),
  26514. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26515. name: "Male",
  26516. image: {
  26517. source: "./media/characters/mactarian/male.svg",
  26518. extra: 2673 / 2600,
  26519. bottom: 76 / 2750
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(23.8, "meters"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26533. {
  26534. female: {
  26535. height: math.unit(19.3, "m"),
  26536. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26537. name: "Female",
  26538. image: {
  26539. source: "./media/characters/umok/female.svg",
  26540. extra: 2186 / 2078,
  26541. bottom: 87 / 2277
  26542. }
  26543. },
  26544. male: {
  26545. height: math.unit(19.5, "m"),
  26546. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26547. name: "Male",
  26548. image: {
  26549. source: "./media/characters/umok/male.svg",
  26550. extra: 2233 / 2140,
  26551. bottom: 24.4 / 2258
  26552. }
  26553. },
  26554. },
  26555. [
  26556. {
  26557. name: "Macro",
  26558. height: math.unit(19.3, "meters"),
  26559. default: true
  26560. },
  26561. ]
  26562. ))
  26563. characterMakers.push(() => makeCharacter(
  26564. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26565. {
  26566. female: {
  26567. height: math.unit(26.15, "m"),
  26568. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26569. name: "Female",
  26570. image: {
  26571. source: "./media/characters/joraxian/female.svg",
  26572. extra: 2912 / 2824,
  26573. bottom: 36 / 2956
  26574. }
  26575. },
  26576. male: {
  26577. height: math.unit(25.4, "m"),
  26578. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26579. name: "Male",
  26580. image: {
  26581. source: "./media/characters/joraxian/male.svg",
  26582. extra: 2877 / 2721,
  26583. bottom: 82 / 2967
  26584. }
  26585. },
  26586. },
  26587. [
  26588. {
  26589. name: "Macro",
  26590. height: math.unit(26.15, "meters"),
  26591. default: true
  26592. },
  26593. ]
  26594. ))
  26595. characterMakers.push(() => makeCharacter(
  26596. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26597. {
  26598. female: {
  26599. height: math.unit(21.6, "m"),
  26600. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26601. name: "Female",
  26602. image: {
  26603. source: "./media/characters/sthara/female.svg",
  26604. extra: 2516 / 2347,
  26605. bottom: 21.5 / 2537
  26606. }
  26607. },
  26608. male: {
  26609. height: math.unit(24, "m"),
  26610. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  26611. name: "Male",
  26612. image: {
  26613. source: "./media/characters/sthara/male.svg",
  26614. extra: 2732 / 2607,
  26615. bottom: 23 / 2732
  26616. }
  26617. },
  26618. },
  26619. [
  26620. {
  26621. name: "Macro",
  26622. height: math.unit(21.6, "meters"),
  26623. default: true
  26624. },
  26625. ]
  26626. ))
  26627. characterMakers.push(() => makeCharacter(
  26628. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  26629. {
  26630. front: {
  26631. height: math.unit(6 + 4 / 12, "feet"),
  26632. weight: math.unit(175, "lb"),
  26633. name: "Front",
  26634. image: {
  26635. source: "./media/characters/luka-bryzant/front.svg",
  26636. extra: 311 / 289,
  26637. bottom: 4 / 315
  26638. }
  26639. },
  26640. back: {
  26641. height: math.unit(6 + 4 / 12, "feet"),
  26642. weight: math.unit(175, "lb"),
  26643. name: "Back",
  26644. image: {
  26645. source: "./media/characters/luka-bryzant/back.svg",
  26646. extra: 311 / 289,
  26647. bottom: 3.8 / 313.7
  26648. }
  26649. },
  26650. },
  26651. [
  26652. {
  26653. name: "Micro",
  26654. height: math.unit(10, "inches")
  26655. },
  26656. {
  26657. name: "Normal",
  26658. height: math.unit(6 + 4 / 12, "feet"),
  26659. default: true
  26660. },
  26661. {
  26662. name: "Large",
  26663. height: math.unit(12, "feet")
  26664. },
  26665. ]
  26666. ))
  26667. characterMakers.push(() => makeCharacter(
  26668. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26669. {
  26670. front: {
  26671. height: math.unit(5 + 7 / 12, "feet"),
  26672. weight: math.unit(185, "lb"),
  26673. name: "Front",
  26674. image: {
  26675. source: "./media/characters/aman-aquila/front.svg",
  26676. extra: 1013 / 976,
  26677. bottom: 45.6 / 1057
  26678. }
  26679. },
  26680. side: {
  26681. height: math.unit(5 + 7 / 12, "feet"),
  26682. weight: math.unit(185, "lb"),
  26683. name: "Side",
  26684. image: {
  26685. source: "./media/characters/aman-aquila/side.svg",
  26686. extra: 1054 / 1011,
  26687. bottom: 15 / 1070
  26688. }
  26689. },
  26690. back: {
  26691. height: math.unit(5 + 7 / 12, "feet"),
  26692. weight: math.unit(185, "lb"),
  26693. name: "Back",
  26694. image: {
  26695. source: "./media/characters/aman-aquila/back.svg",
  26696. extra: 1026 / 970,
  26697. bottom: 12 / 1039
  26698. }
  26699. },
  26700. head: {
  26701. height: math.unit(1.211, "feet"),
  26702. name: "Head",
  26703. image: {
  26704. source: "./media/characters/aman-aquila/head.svg",
  26705. }
  26706. },
  26707. },
  26708. [
  26709. {
  26710. name: "Minimicro",
  26711. height: math.unit(0.057, "inches")
  26712. },
  26713. {
  26714. name: "Micro",
  26715. height: math.unit(7, "inches")
  26716. },
  26717. {
  26718. name: "Mini",
  26719. height: math.unit(3 + 7 / 12, "feet")
  26720. },
  26721. {
  26722. name: "Normal",
  26723. height: math.unit(5 + 7 / 12, "feet"),
  26724. default: true
  26725. },
  26726. {
  26727. name: "Macro",
  26728. height: math.unit(157 + 7 / 12, "feet")
  26729. },
  26730. {
  26731. name: "Megamacro",
  26732. height: math.unit(1557 + 7 / 12, "feet")
  26733. },
  26734. {
  26735. name: "Gigamacro",
  26736. height: math.unit(15557 + 7 / 12, "feet")
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26742. {
  26743. front: {
  26744. height: math.unit(3 + 2 / 12, "inches"),
  26745. weight: math.unit(0.3, "ounces"),
  26746. name: "Front",
  26747. image: {
  26748. source: "./media/characters/hiphae/front.svg",
  26749. extra: 1931 / 1683,
  26750. bottom: 24 / 1955
  26751. }
  26752. },
  26753. },
  26754. [
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(3 + 1 / 2, "inches"),
  26758. default: true
  26759. },
  26760. ]
  26761. ))
  26762. characterMakers.push(() => makeCharacter(
  26763. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26764. {
  26765. front: {
  26766. height: math.unit(5 + 10 / 12, "feet"),
  26767. weight: math.unit(165, "lb"),
  26768. name: "Front",
  26769. image: {
  26770. source: "./media/characters/nicky/front.svg",
  26771. extra: 3144 / 2886,
  26772. bottom: 45.6 / 3192
  26773. }
  26774. },
  26775. back: {
  26776. height: math.unit(5 + 10 / 12, "feet"),
  26777. weight: math.unit(165, "lb"),
  26778. name: "Back",
  26779. image: {
  26780. source: "./media/characters/nicky/back.svg",
  26781. extra: 3055 / 2804,
  26782. bottom: 28.4 / 3087
  26783. }
  26784. },
  26785. frontclothed: {
  26786. height: math.unit(5 + 10 / 12, "feet"),
  26787. weight: math.unit(165, "lb"),
  26788. name: "Front-clothed",
  26789. image: {
  26790. source: "./media/characters/nicky/front-clothed.svg",
  26791. extra: 3184.9 / 2926.9,
  26792. bottom: 86.5 / 3239.9
  26793. }
  26794. },
  26795. foot: {
  26796. height: math.unit(1.16, "feet"),
  26797. name: "Foot",
  26798. image: {
  26799. source: "./media/characters/nicky/foot.svg"
  26800. }
  26801. },
  26802. feet: {
  26803. height: math.unit(1.34, "feet"),
  26804. name: "Feet",
  26805. image: {
  26806. source: "./media/characters/nicky/feet.svg"
  26807. }
  26808. },
  26809. maw: {
  26810. height: math.unit(0.9, "feet"),
  26811. name: "Maw",
  26812. image: {
  26813. source: "./media/characters/nicky/maw.svg"
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(5 + 10 / 12, "feet"),
  26821. default: true
  26822. },
  26823. {
  26824. name: "Macro",
  26825. height: math.unit(60, "feet")
  26826. },
  26827. {
  26828. name: "Megamacro",
  26829. height: math.unit(1, "mile")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26835. {
  26836. side: {
  26837. height: math.unit(10, "feet"),
  26838. weight: math.unit(600, "lb"),
  26839. name: "Side",
  26840. image: {
  26841. source: "./media/characters/blair/side.svg",
  26842. bottom: 16.6 / 475,
  26843. extra: 458 / 431
  26844. }
  26845. },
  26846. },
  26847. [
  26848. {
  26849. name: "Micro",
  26850. height: math.unit(8, "inches")
  26851. },
  26852. {
  26853. name: "Normal",
  26854. height: math.unit(10, "feet"),
  26855. default: true
  26856. },
  26857. {
  26858. name: "Macro",
  26859. height: math.unit(180, "feet")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26865. {
  26866. front: {
  26867. height: math.unit(5 + 4 / 12, "feet"),
  26868. weight: math.unit(125, "lb"),
  26869. name: "Front",
  26870. image: {
  26871. source: "./media/characters/fisher/front.svg",
  26872. extra: 444 / 390,
  26873. bottom: 2 / 444.8
  26874. }
  26875. },
  26876. },
  26877. [
  26878. {
  26879. name: "Micro",
  26880. height: math.unit(4, "inches")
  26881. },
  26882. {
  26883. name: "Normal",
  26884. height: math.unit(5 + 4 / 12, "feet"),
  26885. default: true
  26886. },
  26887. {
  26888. name: "Macro",
  26889. height: math.unit(100, "feet")
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(6.71, "feet"),
  26898. weight: math.unit(200, "lb"),
  26899. preyCapacity: math.unit(1000000, "people"),
  26900. name: "Front",
  26901. image: {
  26902. source: "./media/characters/gliss/front.svg",
  26903. extra: 2347 / 2231,
  26904. bottom: 113 / 2462
  26905. }
  26906. },
  26907. hammerspaceSize: {
  26908. height: math.unit(6.71 * 717, "feet"),
  26909. weight: math.unit(200, "lb"),
  26910. preyCapacity: math.unit(1000000, "people"),
  26911. name: "Hammerspace Size",
  26912. image: {
  26913. source: "./media/characters/gliss/front.svg",
  26914. extra: 2347 / 2231,
  26915. bottom: 113 / 2462
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(6.71, "feet"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26929. {
  26930. side: {
  26931. height: math.unit(1.44, "m"),
  26932. weight: math.unit(80, "kg"),
  26933. name: "Side",
  26934. image: {
  26935. source: "./media/characters/dune-anderson/side.svg",
  26936. bottom: 49 / 1426
  26937. }
  26938. },
  26939. },
  26940. [
  26941. {
  26942. name: "Wolf-sized",
  26943. height: math.unit(1.44, "meters")
  26944. },
  26945. {
  26946. name: "Normal",
  26947. height: math.unit(5.05, "meters"),
  26948. default: true
  26949. },
  26950. {
  26951. name: "Big",
  26952. height: math.unit(14.4, "meters")
  26953. },
  26954. {
  26955. name: "Huge",
  26956. height: math.unit(144, "meters")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(7, "feet"),
  26965. weight: math.unit(425, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/hind/front.svg",
  26969. extra: 2091 / 1860,
  26970. bottom: 129 / 2220
  26971. }
  26972. },
  26973. back: {
  26974. height: math.unit(7, "feet"),
  26975. weight: math.unit(425, "lb"),
  26976. name: "Back",
  26977. image: {
  26978. source: "./media/characters/hind/back.svg",
  26979. extra: 2091 / 1860,
  26980. bottom: 24.6 / 2309
  26981. }
  26982. },
  26983. tail: {
  26984. height: math.unit(2.8, "feet"),
  26985. name: "Tail",
  26986. image: {
  26987. source: "./media/characters/hind/tail.svg"
  26988. }
  26989. },
  26990. head: {
  26991. height: math.unit(2.55, "feet"),
  26992. name: "Head",
  26993. image: {
  26994. source: "./media/characters/hind/head.svg"
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "XS",
  27001. height: math.unit(0.7, "feet")
  27002. },
  27003. {
  27004. name: "Normal",
  27005. height: math.unit(7, "feet"),
  27006. default: true
  27007. },
  27008. {
  27009. name: "XL",
  27010. height: math.unit(70, "feet")
  27011. },
  27012. ]
  27013. ))
  27014. characterMakers.push(() => makeCharacter(
  27015. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27016. {
  27017. front: {
  27018. height: math.unit(2.1, "meters"),
  27019. weight: math.unit(150, "lb"),
  27020. name: "Front",
  27021. image: {
  27022. source: "./media/characters/tharquench-sizestealer/front.svg",
  27023. extra: 1605/1470,
  27024. bottom: 36/1641
  27025. }
  27026. },
  27027. frontAlt: {
  27028. height: math.unit(2.1, "meters"),
  27029. weight: math.unit(150, "lb"),
  27030. name: "Front (Alt)",
  27031. image: {
  27032. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27033. extra: 2318 / 2063,
  27034. bottom: 93.4 / 2410
  27035. }
  27036. },
  27037. },
  27038. [
  27039. {
  27040. name: "Nano",
  27041. height: math.unit(1, "mm")
  27042. },
  27043. {
  27044. name: "Micro",
  27045. height: math.unit(1, "cm")
  27046. },
  27047. {
  27048. name: "Normal",
  27049. height: math.unit(2.1, "meters"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27056. {
  27057. front: {
  27058. height: math.unit(7 + 5 / 12, "feet"),
  27059. weight: math.unit(357, "lb"),
  27060. name: "Front",
  27061. image: {
  27062. source: "./media/characters/solex-draconov/front.svg",
  27063. extra: 1993 / 1865,
  27064. bottom: 117 / 2111
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Natural Height",
  27071. height: math.unit(7 + 5 / 12, "feet"),
  27072. default: true
  27073. },
  27074. {
  27075. name: "Macro",
  27076. height: math.unit(350, "feet")
  27077. },
  27078. {
  27079. name: "Macro+",
  27080. height: math.unit(1000, "feet")
  27081. },
  27082. {
  27083. name: "Megamacro",
  27084. height: math.unit(20, "km")
  27085. },
  27086. {
  27087. name: "Megamacro+",
  27088. height: math.unit(1000, "km")
  27089. },
  27090. {
  27091. name: "Gigamacro",
  27092. height: math.unit(2.5, "Gm")
  27093. },
  27094. {
  27095. name: "Teramacro",
  27096. height: math.unit(15, "Tm")
  27097. },
  27098. {
  27099. name: "Galactic",
  27100. height: math.unit(30, "Zm")
  27101. },
  27102. {
  27103. name: "Universal",
  27104. height: math.unit(21000, "Ym")
  27105. },
  27106. {
  27107. name: "Omniversal",
  27108. height: math.unit(9.861e50, "Ym")
  27109. },
  27110. {
  27111. name: "Existential",
  27112. height: math.unit(1e300, "meters")
  27113. },
  27114. ]
  27115. ))
  27116. characterMakers.push(() => makeCharacter(
  27117. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27118. {
  27119. side: {
  27120. height: math.unit(25, "feet"),
  27121. weight: math.unit(90000, "lb"),
  27122. name: "Side",
  27123. image: {
  27124. source: "./media/characters/mandarax/side.svg",
  27125. extra: 614 / 332,
  27126. bottom: 55 / 630
  27127. }
  27128. },
  27129. lounging: {
  27130. height: math.unit(15.4, "feet"),
  27131. weight: math.unit(90000, "lb"),
  27132. name: "Lounging",
  27133. image: {
  27134. source: "./media/characters/mandarax/lounging.svg",
  27135. extra: 817/609,
  27136. bottom: 685/1502
  27137. }
  27138. },
  27139. head: {
  27140. height: math.unit(11.4, "feet"),
  27141. name: "Head",
  27142. image: {
  27143. source: "./media/characters/mandarax/head.svg"
  27144. }
  27145. },
  27146. belly: {
  27147. height: math.unit(33, "feet"),
  27148. name: "Belly",
  27149. preyCapacity: math.unit(500, "people"),
  27150. image: {
  27151. source: "./media/characters/mandarax/belly.svg"
  27152. }
  27153. },
  27154. dick: {
  27155. height: math.unit(8.46, "feet"),
  27156. name: "Dick",
  27157. image: {
  27158. source: "./media/characters/mandarax/dick.svg"
  27159. }
  27160. },
  27161. top: {
  27162. height: math.unit(28, "meters"),
  27163. name: "Top",
  27164. image: {
  27165. source: "./media/characters/mandarax/top.svg"
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(25, "feet"),
  27173. default: true
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27179. {
  27180. front: {
  27181. height: math.unit(5, "feet"),
  27182. weight: math.unit(90, "lb"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/pixil/front.svg",
  27186. extra: 2000 / 1618,
  27187. bottom: 12.3 / 2011
  27188. }
  27189. },
  27190. },
  27191. [
  27192. {
  27193. name: "Normal",
  27194. height: math.unit(5, "feet"),
  27195. default: true
  27196. },
  27197. {
  27198. name: "Megamacro",
  27199. height: math.unit(10, "miles"),
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(7 + 2 / 12, "feet"),
  27208. weight: math.unit(200, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/angel/front.svg",
  27212. extra: 1830 / 1737,
  27213. bottom: 22.6 / 1854,
  27214. }
  27215. },
  27216. },
  27217. [
  27218. {
  27219. name: "Normal",
  27220. height: math.unit(7 + 2 / 12, "feet"),
  27221. default: true
  27222. },
  27223. {
  27224. name: "Macro",
  27225. height: math.unit(1000, "feet")
  27226. },
  27227. {
  27228. name: "Megamacro",
  27229. height: math.unit(2, "miles")
  27230. },
  27231. {
  27232. name: "Gigamacro",
  27233. height: math.unit(20, "earths")
  27234. },
  27235. ]
  27236. ))
  27237. characterMakers.push(() => makeCharacter(
  27238. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27239. {
  27240. front: {
  27241. height: math.unit(5, "feet"),
  27242. weight: math.unit(180, "lb"),
  27243. name: "Front",
  27244. image: {
  27245. source: "./media/characters/mekana/front.svg",
  27246. extra: 1671 / 1605,
  27247. bottom: 3.5 / 1691
  27248. }
  27249. },
  27250. side: {
  27251. height: math.unit(5, "feet"),
  27252. weight: math.unit(180, "lb"),
  27253. name: "Side",
  27254. image: {
  27255. source: "./media/characters/mekana/side.svg",
  27256. extra: 1671 / 1605,
  27257. bottom: 3.5 / 1691
  27258. }
  27259. },
  27260. back: {
  27261. height: math.unit(5, "feet"),
  27262. weight: math.unit(180, "lb"),
  27263. name: "Back",
  27264. image: {
  27265. source: "./media/characters/mekana/back.svg",
  27266. extra: 1671 / 1605,
  27267. bottom: 3.5 / 1691
  27268. }
  27269. },
  27270. },
  27271. [
  27272. {
  27273. name: "Normal",
  27274. height: math.unit(5, "feet"),
  27275. default: true
  27276. },
  27277. ]
  27278. ))
  27279. characterMakers.push(() => makeCharacter(
  27280. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27281. {
  27282. front: {
  27283. height: math.unit(4 + 6 / 12, "feet"),
  27284. weight: math.unit(80, "lb"),
  27285. name: "Front",
  27286. image: {
  27287. source: "./media/characters/pixie/front.svg",
  27288. extra: 1924 / 1825,
  27289. bottom: 22.4 / 1946
  27290. }
  27291. },
  27292. },
  27293. [
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(4 + 6 / 12, "feet"),
  27297. default: true
  27298. },
  27299. {
  27300. name: "Macro",
  27301. height: math.unit(40, "feet")
  27302. },
  27303. ]
  27304. ))
  27305. characterMakers.push(() => makeCharacter(
  27306. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27307. {
  27308. front: {
  27309. height: math.unit(2.1, "meters"),
  27310. weight: math.unit(200, "lb"),
  27311. name: "Front",
  27312. image: {
  27313. source: "./media/characters/the-lascivious/front.svg",
  27314. extra: 1 / 0.893,
  27315. bottom: 3.5 / 573.7
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Human Scale",
  27322. height: math.unit(2.1, "meters")
  27323. },
  27324. {
  27325. name: "Wolxi Scale",
  27326. height: math.unit(46.2, "m"),
  27327. default: true
  27328. },
  27329. {
  27330. name: "Boinker of Buildings",
  27331. height: math.unit(10, "km")
  27332. },
  27333. {
  27334. name: "Shagger of Skyscrapers",
  27335. height: math.unit(40, "km")
  27336. },
  27337. {
  27338. name: "Banger of Boroughs",
  27339. height: math.unit(4000, "km")
  27340. },
  27341. {
  27342. name: "Screwer of States",
  27343. height: math.unit(100000, "km")
  27344. },
  27345. {
  27346. name: "Pounder of Planets",
  27347. height: math.unit(2000000, "km")
  27348. },
  27349. ]
  27350. ))
  27351. characterMakers.push(() => makeCharacter(
  27352. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27353. {
  27354. front: {
  27355. height: math.unit(6, "feet"),
  27356. weight: math.unit(150, "lb"),
  27357. name: "Front",
  27358. image: {
  27359. source: "./media/characters/aj/front.svg",
  27360. extra: 2039 / 1562,
  27361. bottom: 40 / 2079
  27362. }
  27363. },
  27364. },
  27365. [
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(11 + 6 / 12, "feet"),
  27369. default: true
  27370. },
  27371. {
  27372. name: "Megamacro",
  27373. height: math.unit(60, "megameters")
  27374. },
  27375. ]
  27376. ))
  27377. characterMakers.push(() => makeCharacter(
  27378. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27379. {
  27380. side: {
  27381. height: math.unit(31 + 8 / 12, "feet"),
  27382. weight: math.unit(75000, "kg"),
  27383. name: "Side",
  27384. image: {
  27385. source: "./media/characters/koros/side.svg",
  27386. extra: 1442 / 1297,
  27387. bottom: 122.7 / 1562
  27388. }
  27389. },
  27390. dicksKingsCrown: {
  27391. height: math.unit(6, "feet"),
  27392. name: "Dicks (King's Crown)",
  27393. image: {
  27394. source: "./media/characters/koros/dicks-kings-crown.svg"
  27395. }
  27396. },
  27397. dicksTailSet: {
  27398. height: math.unit(3, "feet"),
  27399. name: "Dicks (Tail Set)",
  27400. image: {
  27401. source: "./media/characters/koros/dicks-tail-set.svg"
  27402. }
  27403. },
  27404. dickCumming: {
  27405. height: math.unit(7.98, "feet"),
  27406. name: "Dick (Cumming)",
  27407. image: {
  27408. source: "./media/characters/koros/dick-cumming.svg"
  27409. }
  27410. },
  27411. dicksBack: {
  27412. height: math.unit(5.9, "feet"),
  27413. name: "Dicks (Back)",
  27414. image: {
  27415. source: "./media/characters/koros/dicks-back.svg"
  27416. }
  27417. },
  27418. dicksFront: {
  27419. height: math.unit(3.72, "feet"),
  27420. name: "Dicks (Front)",
  27421. image: {
  27422. source: "./media/characters/koros/dicks-front.svg"
  27423. }
  27424. },
  27425. dicksPeeking: {
  27426. height: math.unit(3.0, "feet"),
  27427. name: "Dicks (Peeking)",
  27428. image: {
  27429. source: "./media/characters/koros/dicks-peeking.svg"
  27430. }
  27431. },
  27432. eye: {
  27433. height: math.unit(1.7, "feet"),
  27434. name: "Eye",
  27435. image: {
  27436. source: "./media/characters/koros/eye.svg"
  27437. }
  27438. },
  27439. headFront: {
  27440. height: math.unit(11.69, "feet"),
  27441. name: "Head (Front)",
  27442. image: {
  27443. source: "./media/characters/koros/head-front.svg"
  27444. }
  27445. },
  27446. headSide: {
  27447. height: math.unit(14, "feet"),
  27448. name: "Head (Side)",
  27449. image: {
  27450. source: "./media/characters/koros/head-side.svg"
  27451. }
  27452. },
  27453. leg: {
  27454. height: math.unit(17, "feet"),
  27455. name: "Leg",
  27456. image: {
  27457. source: "./media/characters/koros/leg.svg"
  27458. }
  27459. },
  27460. mawSide: {
  27461. height: math.unit(12.8, "feet"),
  27462. name: "Maw (Side)",
  27463. image: {
  27464. source: "./media/characters/koros/maw-side.svg"
  27465. }
  27466. },
  27467. mawSpitting: {
  27468. height: math.unit(17, "feet"),
  27469. name: "Maw (Spitting)",
  27470. image: {
  27471. source: "./media/characters/koros/maw-spitting.svg"
  27472. }
  27473. },
  27474. slit: {
  27475. height: math.unit(2.8, "feet"),
  27476. name: "Slit",
  27477. image: {
  27478. source: "./media/characters/koros/slit.svg"
  27479. }
  27480. },
  27481. stomach: {
  27482. height: math.unit(6.8, "feet"),
  27483. preyCapacity: math.unit(20, "people"),
  27484. name: "Stomach",
  27485. image: {
  27486. source: "./media/characters/koros/stomach.svg"
  27487. }
  27488. },
  27489. wingspanBottom: {
  27490. height: math.unit(114, "feet"),
  27491. name: "Wingspan (Bottom)",
  27492. image: {
  27493. source: "./media/characters/koros/wingspan-bottom.svg"
  27494. }
  27495. },
  27496. wingspanTop: {
  27497. height: math.unit(104, "feet"),
  27498. name: "Wingspan (Top)",
  27499. image: {
  27500. source: "./media/characters/koros/wingspan-top.svg"
  27501. }
  27502. },
  27503. },
  27504. [
  27505. {
  27506. name: "Normal",
  27507. height: math.unit(31 + 8 / 12, "feet"),
  27508. default: true
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(18 + 5 / 12, "feet"),
  27517. weight: math.unit(3750, "kg"),
  27518. name: "Front",
  27519. image: {
  27520. source: "./media/characters/vexx/front.svg",
  27521. extra: 426 / 396,
  27522. bottom: 31.5 / 458
  27523. }
  27524. },
  27525. maw: {
  27526. height: math.unit(6, "feet"),
  27527. name: "Maw",
  27528. image: {
  27529. source: "./media/characters/vexx/maw.svg"
  27530. }
  27531. },
  27532. },
  27533. [
  27534. {
  27535. name: "Normal",
  27536. height: math.unit(18 + 5 / 12, "feet"),
  27537. default: true
  27538. },
  27539. ]
  27540. ))
  27541. characterMakers.push(() => makeCharacter(
  27542. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27543. {
  27544. front: {
  27545. height: math.unit(17 + 6 / 12, "feet"),
  27546. weight: math.unit(150, "lb"),
  27547. name: "Front",
  27548. image: {
  27549. source: "./media/characters/baadra/front.svg",
  27550. extra: 1694/1553,
  27551. bottom: 179/1873
  27552. }
  27553. },
  27554. frontAlt: {
  27555. height: math.unit(17 + 6 / 12, "feet"),
  27556. weight: math.unit(150, "lb"),
  27557. name: "Front (Alt)",
  27558. image: {
  27559. source: "./media/characters/baadra/front-alt.svg",
  27560. extra: 3137 / 2890,
  27561. bottom: 168.4 / 3305
  27562. }
  27563. },
  27564. back: {
  27565. height: math.unit(17 + 6 / 12, "feet"),
  27566. weight: math.unit(150, "lb"),
  27567. name: "Back",
  27568. image: {
  27569. source: "./media/characters/baadra/back.svg",
  27570. extra: 3142 / 2890,
  27571. bottom: 220 / 3371
  27572. }
  27573. },
  27574. head: {
  27575. height: math.unit(5.45, "feet"),
  27576. name: "Head",
  27577. image: {
  27578. source: "./media/characters/baadra/head.svg"
  27579. }
  27580. },
  27581. headAngry: {
  27582. height: math.unit(4.95, "feet"),
  27583. name: "Head (Angry)",
  27584. image: {
  27585. source: "./media/characters/baadra/head-angry.svg"
  27586. }
  27587. },
  27588. headOpen: {
  27589. height: math.unit(6, "feet"),
  27590. name: "Head (Open)",
  27591. image: {
  27592. source: "./media/characters/baadra/head-open.svg"
  27593. }
  27594. },
  27595. },
  27596. [
  27597. {
  27598. name: "Normal",
  27599. height: math.unit(17 + 6 / 12, "feet"),
  27600. default: true
  27601. },
  27602. ]
  27603. ))
  27604. characterMakers.push(() => makeCharacter(
  27605. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  27606. {
  27607. front: {
  27608. height: math.unit(7 + 3 / 12, "feet"),
  27609. weight: math.unit(180, "lb"),
  27610. name: "Front",
  27611. image: {
  27612. source: "./media/characters/juri/front.svg",
  27613. extra: 1401 / 1237,
  27614. bottom: 18.5 / 1418
  27615. }
  27616. },
  27617. side: {
  27618. height: math.unit(7 + 3 / 12, "feet"),
  27619. weight: math.unit(180, "lb"),
  27620. name: "Side",
  27621. image: {
  27622. source: "./media/characters/juri/side.svg",
  27623. extra: 1424 / 1242,
  27624. bottom: 18.5 / 1447
  27625. }
  27626. },
  27627. sitting: {
  27628. height: math.unit(6, "feet"),
  27629. weight: math.unit(180, "lb"),
  27630. name: "Sitting",
  27631. image: {
  27632. source: "./media/characters/juri/sitting.svg",
  27633. extra: 1270 / 1143,
  27634. bottom: 100 / 1343
  27635. }
  27636. },
  27637. back: {
  27638. height: math.unit(7 + 3 / 12, "feet"),
  27639. weight: math.unit(180, "lb"),
  27640. name: "Back",
  27641. image: {
  27642. source: "./media/characters/juri/back.svg",
  27643. extra: 1377 / 1240,
  27644. bottom: 23.7 / 1405
  27645. }
  27646. },
  27647. maw: {
  27648. height: math.unit(2.8, "feet"),
  27649. name: "Maw",
  27650. image: {
  27651. source: "./media/characters/juri/maw.svg"
  27652. }
  27653. },
  27654. stomach: {
  27655. height: math.unit(0.89, "feet"),
  27656. preyCapacity: math.unit(4, "liters"),
  27657. name: "Stomach",
  27658. image: {
  27659. source: "./media/characters/juri/stomach.svg"
  27660. }
  27661. },
  27662. },
  27663. [
  27664. {
  27665. name: "Normal",
  27666. height: math.unit(7 + 3 / 12, "feet"),
  27667. default: true
  27668. },
  27669. ]
  27670. ))
  27671. characterMakers.push(() => makeCharacter(
  27672. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27673. {
  27674. fox: {
  27675. height: math.unit(5 + 6 / 12, "feet"),
  27676. weight: math.unit(140, "lb"),
  27677. name: "Fox",
  27678. image: {
  27679. source: "./media/characters/maxene-sita/fox.svg",
  27680. extra: 146 / 138,
  27681. bottom: 2.1 / 148.19
  27682. }
  27683. },
  27684. foxLaying: {
  27685. height: math.unit(1.70, "feet"),
  27686. weight: math.unit(140, "lb"),
  27687. name: "Fox (Laying)",
  27688. image: {
  27689. source: "./media/characters/maxene-sita/fox-laying.svg",
  27690. extra: 910 / 572,
  27691. bottom: 71 / 981
  27692. }
  27693. },
  27694. kitsune: {
  27695. height: math.unit(10, "feet"),
  27696. weight: math.unit(800, "lb"),
  27697. name: "Kitsune",
  27698. image: {
  27699. source: "./media/characters/maxene-sita/kitsune.svg",
  27700. extra: 185 / 176,
  27701. bottom: 4.7 / 189.9
  27702. }
  27703. },
  27704. hellhound: {
  27705. height: math.unit(10, "feet"),
  27706. weight: math.unit(700, "lb"),
  27707. name: "Hellhound",
  27708. image: {
  27709. source: "./media/characters/maxene-sita/hellhound.svg",
  27710. extra: 1600 / 1545,
  27711. bottom: 81 / 1681
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(5 + 6 / 12, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27725. {
  27726. front: {
  27727. height: math.unit(3 + 4 / 12, "feet"),
  27728. weight: math.unit(70, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/maia/front.svg",
  27732. extra: 227 / 219.5,
  27733. bottom: 40 / 267
  27734. }
  27735. },
  27736. back: {
  27737. height: math.unit(3 + 4 / 12, "feet"),
  27738. weight: math.unit(70, "lb"),
  27739. name: "Back",
  27740. image: {
  27741. source: "./media/characters/maia/back.svg",
  27742. extra: 237 / 225
  27743. }
  27744. },
  27745. },
  27746. [
  27747. {
  27748. name: "Normal",
  27749. height: math.unit(3 + 4 / 12, "feet"),
  27750. default: true
  27751. },
  27752. ]
  27753. ))
  27754. characterMakers.push(() => makeCharacter(
  27755. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27756. {
  27757. front: {
  27758. height: math.unit(5 + 10 / 12, "feet"),
  27759. weight: math.unit(197, "lb"),
  27760. name: "Front",
  27761. image: {
  27762. source: "./media/characters/jabaro/front.svg",
  27763. extra: 225 / 216,
  27764. bottom: 5.06 / 230
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(5 + 10 / 12, "feet"),
  27769. weight: math.unit(197, "lb"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/jabaro/back.svg",
  27773. extra: 225 / 219,
  27774. bottom: 1.9 / 227
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(5 + 10 / 12, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(5 + 8 / 12, "feet"),
  27791. weight: math.unit(139, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/risa/front.svg",
  27795. extra: 270 / 260,
  27796. bottom: 11.2 / 282
  27797. }
  27798. },
  27799. back: {
  27800. height: math.unit(5 + 8 / 12, "feet"),
  27801. weight: math.unit(139, "lb"),
  27802. name: "Back",
  27803. image: {
  27804. source: "./media/characters/risa/back.svg",
  27805. extra: 264 / 255,
  27806. bottom: 4 / 268
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Normal",
  27813. height: math.unit(5 + 8 / 12, "feet"),
  27814. default: true
  27815. },
  27816. ]
  27817. ))
  27818. characterMakers.push(() => makeCharacter(
  27819. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27820. {
  27821. front: {
  27822. height: math.unit(2 + 11 / 12, "feet"),
  27823. weight: math.unit(30, "lb"),
  27824. name: "Front",
  27825. image: {
  27826. source: "./media/characters/weatley/front.svg",
  27827. bottom: 10.7 / 414,
  27828. extra: 403.5 / 362
  27829. }
  27830. },
  27831. back: {
  27832. height: math.unit(2 + 11 / 12, "feet"),
  27833. weight: math.unit(30, "lb"),
  27834. name: "Back",
  27835. image: {
  27836. source: "./media/characters/weatley/back.svg",
  27837. bottom: 10.7 / 414,
  27838. extra: 403.5 / 362
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Normal",
  27845. height: math.unit(2 + 11 / 12, "feet"),
  27846. default: true
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27852. {
  27853. front: {
  27854. height: math.unit(5 + 2 / 12, "feet"),
  27855. weight: math.unit(50, "kg"),
  27856. name: "Front",
  27857. image: {
  27858. source: "./media/characters/mercury-crescent/front.svg",
  27859. extra: 1088 / 1033,
  27860. bottom: 18.9 / 1109
  27861. }
  27862. },
  27863. },
  27864. [
  27865. {
  27866. name: "Normal",
  27867. height: math.unit(5 + 2 / 12, "feet"),
  27868. default: true
  27869. },
  27870. ]
  27871. ))
  27872. characterMakers.push(() => makeCharacter(
  27873. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27874. {
  27875. front: {
  27876. height: math.unit(2, "feet"),
  27877. weight: math.unit(15, "kg"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/diamond-jones/front.svg",
  27881. extra: 727/723,
  27882. bottom: 46/773
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Normal",
  27889. height: math.unit(2, "feet"),
  27890. default: true
  27891. },
  27892. ]
  27893. ))
  27894. characterMakers.push(() => makeCharacter(
  27895. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27896. {
  27897. front: {
  27898. height: math.unit(3, "feet"),
  27899. weight: math.unit(30, "kg"),
  27900. name: "Front",
  27901. image: {
  27902. source: "./media/characters/sweet-bit/front.svg",
  27903. extra: 675 / 567,
  27904. bottom: 27.7 / 703
  27905. }
  27906. },
  27907. },
  27908. [
  27909. {
  27910. name: "Normal",
  27911. height: math.unit(3, "feet"),
  27912. default: true
  27913. },
  27914. ]
  27915. ))
  27916. characterMakers.push(() => makeCharacter(
  27917. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27918. {
  27919. side: {
  27920. height: math.unit(9.178, "feet"),
  27921. weight: math.unit(500, "lb"),
  27922. name: "Side",
  27923. image: {
  27924. source: "./media/characters/umbrazen/side.svg",
  27925. extra: 1730 / 1473,
  27926. bottom: 34.6 / 1765
  27927. }
  27928. },
  27929. },
  27930. [
  27931. {
  27932. name: "Normal",
  27933. height: math.unit(9.178, "feet"),
  27934. default: true
  27935. },
  27936. ]
  27937. ))
  27938. characterMakers.push(() => makeCharacter(
  27939. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27940. {
  27941. front: {
  27942. height: math.unit(10, "feet"),
  27943. weight: math.unit(750, "lb"),
  27944. name: "Front",
  27945. image: {
  27946. source: "./media/characters/arlist/front.svg",
  27947. extra: 961 / 778,
  27948. bottom: 6.2 / 986
  27949. }
  27950. },
  27951. },
  27952. [
  27953. {
  27954. name: "Normal",
  27955. height: math.unit(10, "feet"),
  27956. default: true
  27957. },
  27958. ]
  27959. ))
  27960. characterMakers.push(() => makeCharacter(
  27961. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27962. {
  27963. front: {
  27964. height: math.unit(5 + 1 / 12, "feet"),
  27965. weight: math.unit(110, "lb"),
  27966. name: "Front",
  27967. image: {
  27968. source: "./media/characters/aradel/front.svg",
  27969. extra: 324 / 303,
  27970. bottom: 3.6 / 329.4
  27971. }
  27972. },
  27973. },
  27974. [
  27975. {
  27976. name: "Normal",
  27977. height: math.unit(5 + 1 / 12, "feet"),
  27978. default: true
  27979. },
  27980. ]
  27981. ))
  27982. characterMakers.push(() => makeCharacter(
  27983. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27984. {
  27985. dressed: {
  27986. height: math.unit(3 + 8 / 12, "feet"),
  27987. weight: math.unit(50, "lb"),
  27988. name: "Dressed",
  27989. image: {
  27990. source: "./media/characters/serryn/dressed.svg",
  27991. extra: 1792 / 1656,
  27992. bottom: 43.5 / 1840
  27993. }
  27994. },
  27995. nude: {
  27996. height: math.unit(3 + 8 / 12, "feet"),
  27997. weight: math.unit(50, "lb"),
  27998. name: "Nude",
  27999. image: {
  28000. source: "./media/characters/serryn/nude.svg",
  28001. extra: 1792 / 1656,
  28002. bottom: 43.5 / 1840
  28003. }
  28004. },
  28005. },
  28006. [
  28007. {
  28008. name: "Normal",
  28009. height: math.unit(3 + 8 / 12, "feet"),
  28010. default: true
  28011. },
  28012. ]
  28013. ))
  28014. characterMakers.push(() => makeCharacter(
  28015. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28016. {
  28017. front: {
  28018. height: math.unit(7 + 10 / 12, "feet"),
  28019. weight: math.unit(255, "lb"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/xavier-thyme/front.svg",
  28023. extra: 3733 / 3642,
  28024. bottom: 131 / 3869
  28025. }
  28026. },
  28027. frontRaven: {
  28028. height: math.unit(7 + 10 / 12, "feet"),
  28029. weight: math.unit(255, "lb"),
  28030. name: "Front (Raven)",
  28031. image: {
  28032. source: "./media/characters/xavier-thyme/front-raven.svg",
  28033. extra: 4385 / 3642,
  28034. bottom: 131 / 4517
  28035. }
  28036. },
  28037. },
  28038. [
  28039. {
  28040. name: "Normal",
  28041. height: math.unit(7 + 10 / 12, "feet"),
  28042. default: true
  28043. },
  28044. ]
  28045. ))
  28046. characterMakers.push(() => makeCharacter(
  28047. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28048. {
  28049. front: {
  28050. height: math.unit(1.6, "m"),
  28051. weight: math.unit(50, "kg"),
  28052. name: "Front",
  28053. image: {
  28054. source: "./media/characters/kiki/front.svg",
  28055. extra: 4682 / 3610,
  28056. bottom: 115 / 4777
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(1.6, "meters"),
  28064. default: true
  28065. },
  28066. ]
  28067. ))
  28068. characterMakers.push(() => makeCharacter(
  28069. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28070. {
  28071. front: {
  28072. height: math.unit(50, "m"),
  28073. weight: math.unit(500, "tonnes"),
  28074. name: "Front",
  28075. image: {
  28076. source: "./media/characters/ryoko/front.svg",
  28077. extra: 4632 / 3926,
  28078. bottom: 193 / 4823
  28079. }
  28080. },
  28081. },
  28082. [
  28083. {
  28084. name: "Normal",
  28085. height: math.unit(50, "meters"),
  28086. default: true
  28087. },
  28088. ]
  28089. ))
  28090. characterMakers.push(() => makeCharacter(
  28091. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28092. {
  28093. front: {
  28094. height: math.unit(30, "m"),
  28095. weight: math.unit(22, "tonnes"),
  28096. name: "Front",
  28097. image: {
  28098. source: "./media/characters/elio/front.svg",
  28099. extra: 4582 / 3720,
  28100. bottom: 236 / 4828
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Normal",
  28107. height: math.unit(30, "meters"),
  28108. default: true
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(6 + 3 / 12, "feet"),
  28117. weight: math.unit(120, "lb"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/azura/front.svg",
  28121. extra: 1149 / 1135,
  28122. bottom: 45 / 1194
  28123. }
  28124. },
  28125. frontClothed: {
  28126. height: math.unit(6 + 3 / 12, "feet"),
  28127. weight: math.unit(120, "lb"),
  28128. name: "Front (Clothed)",
  28129. image: {
  28130. source: "./media/characters/azura/front-clothed.svg",
  28131. extra: 1149 / 1135,
  28132. bottom: 45 / 1194
  28133. }
  28134. },
  28135. },
  28136. [
  28137. {
  28138. name: "Normal",
  28139. height: math.unit(6 + 3 / 12, "feet"),
  28140. default: true
  28141. },
  28142. {
  28143. name: "Macro",
  28144. height: math.unit(20 + 6 / 12, "feet")
  28145. },
  28146. {
  28147. name: "Megamacro",
  28148. height: math.unit(12, "miles")
  28149. },
  28150. {
  28151. name: "Gigamacro",
  28152. height: math.unit(10000, "miles")
  28153. },
  28154. {
  28155. name: "Teramacro",
  28156. height: math.unit(900000, "miles")
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(12, "feet"),
  28165. weight: math.unit(1, "ton"),
  28166. capacity: math.unit(660000, "gallons"),
  28167. name: "Front",
  28168. image: {
  28169. source: "./media/characters/zeus/front.svg",
  28170. extra: 5005 / 4717,
  28171. bottom: 363 / 5388
  28172. }
  28173. },
  28174. },
  28175. [
  28176. {
  28177. name: "Normal",
  28178. height: math.unit(12, "feet")
  28179. },
  28180. {
  28181. name: "Preferred Size",
  28182. height: math.unit(0.5, "miles"),
  28183. default: true
  28184. },
  28185. {
  28186. name: "Giga Horse",
  28187. height: math.unit(300, "miles")
  28188. },
  28189. {
  28190. name: "Riding Planets",
  28191. height: math.unit(30, "megameters")
  28192. },
  28193. {
  28194. name: "Cosmic Giant",
  28195. height: math.unit(3, "zettameters")
  28196. },
  28197. {
  28198. name: "Breeding God",
  28199. height: math.unit(9.92e22, "yottameters")
  28200. },
  28201. ]
  28202. ))
  28203. characterMakers.push(() => makeCharacter(
  28204. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28205. {
  28206. side: {
  28207. height: math.unit(9, "feet"),
  28208. weight: math.unit(1500, "kg"),
  28209. name: "Side",
  28210. image: {
  28211. source: "./media/characters/fang/side.svg",
  28212. extra: 924 / 866,
  28213. bottom: 47.5 / 972.3
  28214. }
  28215. },
  28216. },
  28217. [
  28218. {
  28219. name: "Normal",
  28220. height: math.unit(9, "feet"),
  28221. default: true
  28222. },
  28223. {
  28224. name: "Macro",
  28225. height: math.unit(75 + 6 / 12, "feet")
  28226. },
  28227. {
  28228. name: "Teramacro",
  28229. height: math.unit(50000, "miles")
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(10, "feet"),
  28238. weight: math.unit(2, "tons"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/rekhit/front.svg",
  28242. extra: 2796 / 2590,
  28243. bottom: 225 / 3022
  28244. }
  28245. },
  28246. },
  28247. [
  28248. {
  28249. name: "Normal",
  28250. height: math.unit(10, "feet"),
  28251. default: true
  28252. },
  28253. {
  28254. name: "Macro",
  28255. height: math.unit(500, "feet")
  28256. },
  28257. ]
  28258. ))
  28259. characterMakers.push(() => makeCharacter(
  28260. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28261. {
  28262. front: {
  28263. height: math.unit(7 + 6.451 / 12, "feet"),
  28264. weight: math.unit(310, "lb"),
  28265. name: "Front",
  28266. image: {
  28267. source: "./media/characters/dahlia-verrick/front.svg",
  28268. extra: 1488 / 1365,
  28269. bottom: 6.2 / 1495
  28270. }
  28271. },
  28272. back: {
  28273. height: math.unit(7 + 6.451 / 12, "feet"),
  28274. weight: math.unit(310, "lb"),
  28275. name: "Back",
  28276. image: {
  28277. source: "./media/characters/dahlia-verrick/back.svg",
  28278. extra: 1472 / 1351,
  28279. bottom: 5.28 / 1477
  28280. }
  28281. },
  28282. frontBusiness: {
  28283. height: math.unit(7 + 6.451 / 12, "feet"),
  28284. weight: math.unit(200, "lb"),
  28285. name: "Front (Business)",
  28286. image: {
  28287. source: "./media/characters/dahlia-verrick/front-business.svg",
  28288. extra: 1478 / 1381,
  28289. bottom: 5.5 / 1484
  28290. }
  28291. },
  28292. frontCasual: {
  28293. height: math.unit(7 + 6.451 / 12, "feet"),
  28294. weight: math.unit(200, "lb"),
  28295. name: "Front (Casual)",
  28296. image: {
  28297. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28298. extra: 1478 / 1381,
  28299. bottom: 5.5 / 1484
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Travel-Sized",
  28306. height: math.unit(7.45, "inches")
  28307. },
  28308. {
  28309. name: "Normal",
  28310. height: math.unit(7 + 6.451 / 12, "feet"),
  28311. default: true
  28312. },
  28313. {
  28314. name: "Hitting the Town",
  28315. height: math.unit(37 + 8 / 12, "feet")
  28316. },
  28317. {
  28318. name: "Stomp in the Suburbs",
  28319. height: math.unit(964 + 9.728 / 12, "feet")
  28320. },
  28321. {
  28322. name: "Sit on the City",
  28323. height: math.unit(61747 + 10.592 / 12, "feet")
  28324. },
  28325. {
  28326. name: "Glomp the Globe",
  28327. height: math.unit(252919327 + 4.832 / 12, "feet")
  28328. },
  28329. ]
  28330. ))
  28331. characterMakers.push(() => makeCharacter(
  28332. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28333. {
  28334. front: {
  28335. height: math.unit(6 + 4 / 12, "feet"),
  28336. weight: math.unit(320, "lb"),
  28337. name: "Front",
  28338. image: {
  28339. source: "./media/characters/balina-mahigan/front.svg",
  28340. extra: 447 / 428,
  28341. bottom: 18 / 466
  28342. }
  28343. },
  28344. back: {
  28345. height: math.unit(6 + 4 / 12, "feet"),
  28346. weight: math.unit(320, "lb"),
  28347. name: "Back",
  28348. image: {
  28349. source: "./media/characters/balina-mahigan/back.svg",
  28350. extra: 445 / 428,
  28351. bottom: 4.07 / 448
  28352. }
  28353. },
  28354. arm: {
  28355. height: math.unit(1.88, "feet"),
  28356. name: "Arm",
  28357. image: {
  28358. source: "./media/characters/balina-mahigan/arm.svg"
  28359. }
  28360. },
  28361. backPort: {
  28362. height: math.unit(0.685, "feet"),
  28363. name: "Back Port",
  28364. image: {
  28365. source: "./media/characters/balina-mahigan/back-port.svg"
  28366. }
  28367. },
  28368. hoofpaw: {
  28369. height: math.unit(1.41, "feet"),
  28370. name: "Hoofpaw",
  28371. image: {
  28372. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28373. }
  28374. },
  28375. leftHandBack: {
  28376. height: math.unit(0.938, "feet"),
  28377. name: "Left Hand (Back)",
  28378. image: {
  28379. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28380. }
  28381. },
  28382. leftHandFront: {
  28383. height: math.unit(0.938, "feet"),
  28384. name: "Left Hand (Front)",
  28385. image: {
  28386. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28387. }
  28388. },
  28389. rightHandBack: {
  28390. height: math.unit(0.95, "feet"),
  28391. name: "Right Hand (Back)",
  28392. image: {
  28393. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28394. }
  28395. },
  28396. rightHandFront: {
  28397. height: math.unit(0.95, "feet"),
  28398. name: "Right Hand (Front)",
  28399. image: {
  28400. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(6 + 4 / 12, "feet"),
  28408. default: true
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28414. {
  28415. front: {
  28416. height: math.unit(6, "feet"),
  28417. weight: math.unit(320, "lb"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/balina-mejeri/front.svg",
  28421. extra: 517 / 488,
  28422. bottom: 44.2 / 561
  28423. }
  28424. },
  28425. },
  28426. [
  28427. {
  28428. name: "Normal",
  28429. height: math.unit(6 + 4 / 12, "feet")
  28430. },
  28431. {
  28432. name: "Business",
  28433. height: math.unit(155, "feet"),
  28434. default: true
  28435. },
  28436. ]
  28437. ))
  28438. characterMakers.push(() => makeCharacter(
  28439. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28440. {
  28441. kneeling: {
  28442. height: math.unit(6 + 4 / 12, "feet"),
  28443. weight: math.unit(300 * 20, "lb"),
  28444. name: "Kneeling",
  28445. image: {
  28446. source: "./media/characters/balbarian/kneeling.svg",
  28447. extra: 922 / 862,
  28448. bottom: 42.4 / 965
  28449. }
  28450. },
  28451. },
  28452. [
  28453. {
  28454. name: "Normal",
  28455. height: math.unit(6 + 4 / 12, "feet")
  28456. },
  28457. {
  28458. name: "Treasured",
  28459. height: math.unit(18 + 9 / 12, "feet"),
  28460. default: true
  28461. },
  28462. {
  28463. name: "Macro",
  28464. height: math.unit(900, "feet")
  28465. },
  28466. ]
  28467. ))
  28468. characterMakers.push(() => makeCharacter(
  28469. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28470. {
  28471. front: {
  28472. height: math.unit(6 + 4 / 12, "feet"),
  28473. weight: math.unit(325, "lb"),
  28474. name: "Front",
  28475. image: {
  28476. source: "./media/characters/balina-amarini/front.svg",
  28477. extra: 415 / 403,
  28478. bottom: 19 / 433.4
  28479. }
  28480. },
  28481. back: {
  28482. height: math.unit(6 + 4 / 12, "feet"),
  28483. weight: math.unit(325, "lb"),
  28484. name: "Back",
  28485. image: {
  28486. source: "./media/characters/balina-amarini/back.svg",
  28487. extra: 415 / 403,
  28488. bottom: 13.5 / 432
  28489. }
  28490. },
  28491. overdrive: {
  28492. height: math.unit(6 + 4 / 12, "feet"),
  28493. weight: math.unit(400, "lb"),
  28494. name: "Overdrive",
  28495. image: {
  28496. source: "./media/characters/balina-amarini/overdrive.svg",
  28497. extra: 269 / 259,
  28498. bottom: 12 / 282
  28499. }
  28500. },
  28501. },
  28502. [
  28503. {
  28504. name: "Boom",
  28505. height: math.unit(9 + 10 / 12, "feet"),
  28506. default: true
  28507. },
  28508. {
  28509. name: "Macro",
  28510. height: math.unit(280, "feet")
  28511. },
  28512. ]
  28513. ))
  28514. characterMakers.push(() => makeCharacter(
  28515. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28516. {
  28517. goddess: {
  28518. height: math.unit(600, "feet"),
  28519. weight: math.unit(2000000, "tons"),
  28520. name: "Goddess",
  28521. image: {
  28522. source: "./media/characters/lady-kubwa/goddess.svg",
  28523. extra: 1240.5 / 1223,
  28524. bottom: 22 / 1263
  28525. }
  28526. },
  28527. goddesser: {
  28528. height: math.unit(900, "feet"),
  28529. weight: math.unit(20000000, "lb"),
  28530. name: "Goddess-er",
  28531. image: {
  28532. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28533. extra: 899 / 888,
  28534. bottom: 12.6 / 912
  28535. }
  28536. },
  28537. },
  28538. [
  28539. {
  28540. name: "Macro",
  28541. height: math.unit(600, "feet"),
  28542. default: true
  28543. },
  28544. {
  28545. name: "Megamacro",
  28546. height: math.unit(250, "miles")
  28547. },
  28548. ]
  28549. ))
  28550. characterMakers.push(() => makeCharacter(
  28551. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28552. {
  28553. front: {
  28554. height: math.unit(7 + 7 / 12, "feet"),
  28555. weight: math.unit(250, "lb"),
  28556. name: "Front",
  28557. image: {
  28558. source: "./media/characters/tala-grovehorn/front.svg",
  28559. extra: 2636 / 2525,
  28560. bottom: 147 / 2781
  28561. }
  28562. },
  28563. back: {
  28564. height: math.unit(7 + 7 / 12, "feet"),
  28565. weight: math.unit(250, "lb"),
  28566. name: "Back",
  28567. image: {
  28568. source: "./media/characters/tala-grovehorn/back.svg",
  28569. extra: 2635 / 2539,
  28570. bottom: 100 / 2732.8
  28571. }
  28572. },
  28573. mouth: {
  28574. height: math.unit(1.15, "feet"),
  28575. name: "Mouth",
  28576. image: {
  28577. source: "./media/characters/tala-grovehorn/mouth.svg"
  28578. }
  28579. },
  28580. dick: {
  28581. height: math.unit(2.36, "feet"),
  28582. name: "Dick",
  28583. image: {
  28584. source: "./media/characters/tala-grovehorn/dick.svg"
  28585. }
  28586. },
  28587. slit: {
  28588. height: math.unit(0.61, "feet"),
  28589. name: "Slit",
  28590. image: {
  28591. source: "./media/characters/tala-grovehorn/slit.svg"
  28592. }
  28593. },
  28594. },
  28595. [
  28596. ]
  28597. ))
  28598. characterMakers.push(() => makeCharacter(
  28599. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28600. {
  28601. front: {
  28602. height: math.unit(7 + 7 / 12, "feet"),
  28603. weight: math.unit(225, "lb"),
  28604. name: "Front",
  28605. image: {
  28606. source: "./media/characters/epona/front.svg",
  28607. extra: 2445 / 2290,
  28608. bottom: 251 / 2696
  28609. }
  28610. },
  28611. back: {
  28612. height: math.unit(7 + 7 / 12, "feet"),
  28613. weight: math.unit(225, "lb"),
  28614. name: "Back",
  28615. image: {
  28616. source: "./media/characters/epona/back.svg",
  28617. extra: 2546 / 2408,
  28618. bottom: 44 / 2589
  28619. }
  28620. },
  28621. genitals: {
  28622. height: math.unit(1.5, "feet"),
  28623. name: "Genitals",
  28624. image: {
  28625. source: "./media/characters/epona/genitals.svg"
  28626. }
  28627. },
  28628. },
  28629. [
  28630. {
  28631. name: "Normal",
  28632. height: math.unit(7 + 7 / 12, "feet"),
  28633. default: true
  28634. },
  28635. ]
  28636. ))
  28637. characterMakers.push(() => makeCharacter(
  28638. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  28639. {
  28640. front: {
  28641. height: math.unit(7, "feet"),
  28642. weight: math.unit(518, "lb"),
  28643. name: "Front",
  28644. image: {
  28645. source: "./media/characters/avia-bloodbourn/front.svg",
  28646. extra: 1466 / 1350,
  28647. bottom: 65 / 1527
  28648. }
  28649. },
  28650. },
  28651. [
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(9.35, "feet"),
  28659. weight: math.unit(600, "lb"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/amera/front.svg",
  28663. extra: 891 / 818,
  28664. bottom: 30 / 922.7
  28665. }
  28666. },
  28667. back: {
  28668. height: math.unit(9.35, "feet"),
  28669. weight: math.unit(600, "lb"),
  28670. name: "Back",
  28671. image: {
  28672. source: "./media/characters/amera/back.svg",
  28673. extra: 876 / 824,
  28674. bottom: 6.8 / 884
  28675. }
  28676. },
  28677. dick: {
  28678. height: math.unit(2.14, "feet"),
  28679. name: "Dick",
  28680. image: {
  28681. source: "./media/characters/amera/dick.svg"
  28682. }
  28683. },
  28684. },
  28685. [
  28686. {
  28687. name: "Normal",
  28688. height: math.unit(9.35, "feet"),
  28689. default: true
  28690. },
  28691. ]
  28692. ))
  28693. characterMakers.push(() => makeCharacter(
  28694. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28695. {
  28696. kneeling: {
  28697. height: math.unit(3 + 4 / 12, "feet"),
  28698. weight: math.unit(90, "lb"),
  28699. name: "Kneeling",
  28700. image: {
  28701. source: "./media/characters/rosewen/kneeling.svg",
  28702. extra: 1835 / 1571,
  28703. bottom: 27.7 / 1862
  28704. }
  28705. },
  28706. },
  28707. [
  28708. {
  28709. name: "Normal",
  28710. height: math.unit(3 + 4 / 12, "feet"),
  28711. default: true
  28712. },
  28713. ]
  28714. ))
  28715. characterMakers.push(() => makeCharacter(
  28716. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28717. {
  28718. front: {
  28719. height: math.unit(5 + 10 / 12, "feet"),
  28720. weight: math.unit(200, "lb"),
  28721. name: "Front",
  28722. image: {
  28723. source: "./media/characters/sabah/front.svg",
  28724. extra: 849 / 763,
  28725. bottom: 33.9 / 881
  28726. }
  28727. },
  28728. },
  28729. [
  28730. {
  28731. name: "Normal",
  28732. height: math.unit(5 + 10 / 12, "feet"),
  28733. default: true
  28734. },
  28735. ]
  28736. ))
  28737. characterMakers.push(() => makeCharacter(
  28738. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28739. {
  28740. front: {
  28741. height: math.unit(3 + 5 / 12, "feet"),
  28742. weight: math.unit(40, "kg"),
  28743. name: "Front",
  28744. image: {
  28745. source: "./media/characters/purple-flame/front.svg",
  28746. extra: 1577 / 1412,
  28747. bottom: 97 / 1694
  28748. }
  28749. },
  28750. frontDressed: {
  28751. height: math.unit(3 + 5 / 12, "feet"),
  28752. weight: math.unit(40, "kg"),
  28753. name: "Front (Dressed)",
  28754. image: {
  28755. source: "./media/characters/purple-flame/front-dressed.svg",
  28756. extra: 1577 / 1412,
  28757. bottom: 97 / 1694
  28758. }
  28759. },
  28760. headphones: {
  28761. height: math.unit(0.85, "feet"),
  28762. name: "Headphones",
  28763. image: {
  28764. source: "./media/characters/purple-flame/headphones.svg"
  28765. }
  28766. },
  28767. },
  28768. [
  28769. {
  28770. name: "Really Small",
  28771. height: math.unit(5, "cm")
  28772. },
  28773. {
  28774. name: "Micro",
  28775. height: math.unit(1 + 5 / 12, "feet")
  28776. },
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(3 + 5 / 12, "feet"),
  28780. default: true
  28781. },
  28782. {
  28783. name: "Minimacro",
  28784. height: math.unit(125, "feet")
  28785. },
  28786. {
  28787. name: "Macro",
  28788. height: math.unit(0.5, "miles")
  28789. },
  28790. {
  28791. name: "Megamacro",
  28792. height: math.unit(50, "miles")
  28793. },
  28794. {
  28795. name: "Gigantic",
  28796. height: math.unit(750, "miles")
  28797. },
  28798. {
  28799. name: "Planetary",
  28800. height: math.unit(15000, "miles")
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(14, "feet"),
  28809. weight: math.unit(959, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/arsenal/front.svg",
  28813. extra: 2357 / 2157,
  28814. bottom: 93 / 2458
  28815. }
  28816. },
  28817. },
  28818. [
  28819. {
  28820. name: "Normal",
  28821. height: math.unit(14, "feet"),
  28822. default: true
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(6, "feet"),
  28831. weight: math.unit(150, "lb"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/adira/front.svg",
  28835. extra: 1078 / 1029,
  28836. bottom: 87 / 1166
  28837. }
  28838. },
  28839. },
  28840. [
  28841. {
  28842. name: "Micro",
  28843. height: math.unit(4, "inches"),
  28844. default: true
  28845. },
  28846. {
  28847. name: "Macro",
  28848. height: math.unit(50, "feet")
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(16, "feet"),
  28857. weight: math.unit(1000, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/grim/front.svg",
  28861. extra: 622 / 614,
  28862. bottom: 18.1 / 642
  28863. }
  28864. },
  28865. back: {
  28866. height: math.unit(16, "feet"),
  28867. weight: math.unit(1000, "lb"),
  28868. name: "Back",
  28869. image: {
  28870. source: "./media/characters/grim/back.svg",
  28871. extra: 610.6 / 602,
  28872. bottom: 40.8 / 652
  28873. }
  28874. },
  28875. hunched: {
  28876. height: math.unit(9.75, "feet"),
  28877. weight: math.unit(1000, "lb"),
  28878. name: "Hunched",
  28879. image: {
  28880. source: "./media/characters/grim/hunched.svg",
  28881. extra: 304 / 297,
  28882. bottom: 35.4 / 394
  28883. }
  28884. },
  28885. },
  28886. [
  28887. {
  28888. name: "Normal",
  28889. height: math.unit(16, "feet"),
  28890. default: true
  28891. },
  28892. ]
  28893. ))
  28894. characterMakers.push(() => makeCharacter(
  28895. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28896. {
  28897. front: {
  28898. height: math.unit(2.3, "meters"),
  28899. weight: math.unit(300, "lb"),
  28900. name: "Front",
  28901. image: {
  28902. source: "./media/characters/sinja/front-sfw.svg",
  28903. extra: 1393 / 1294,
  28904. bottom: 70 / 1463
  28905. }
  28906. },
  28907. frontNsfw: {
  28908. height: math.unit(2.3, "meters"),
  28909. weight: math.unit(300, "lb"),
  28910. name: "Front (NSFW)",
  28911. image: {
  28912. source: "./media/characters/sinja/front-nsfw.svg",
  28913. extra: 1393 / 1294,
  28914. bottom: 70 / 1463
  28915. }
  28916. },
  28917. back: {
  28918. height: math.unit(2.3, "meters"),
  28919. weight: math.unit(300, "lb"),
  28920. name: "Back",
  28921. image: {
  28922. source: "./media/characters/sinja/back.svg",
  28923. extra: 1393 / 1294,
  28924. bottom: 70 / 1463
  28925. }
  28926. },
  28927. head: {
  28928. height: math.unit(1.771, "feet"),
  28929. name: "Head",
  28930. image: {
  28931. source: "./media/characters/sinja/head.svg"
  28932. }
  28933. },
  28934. slit: {
  28935. height: math.unit(0.8, "feet"),
  28936. name: "Slit",
  28937. image: {
  28938. source: "./media/characters/sinja/slit.svg"
  28939. }
  28940. },
  28941. },
  28942. [
  28943. {
  28944. name: "Normal",
  28945. height: math.unit(2.3, "meters")
  28946. },
  28947. {
  28948. name: "Macro",
  28949. height: math.unit(91, "meters"),
  28950. default: true
  28951. },
  28952. {
  28953. name: "Megamacro",
  28954. height: math.unit(91440, "meters")
  28955. },
  28956. {
  28957. name: "Gigamacro",
  28958. height: math.unit(60960000, "meters")
  28959. },
  28960. {
  28961. name: "Teramacro",
  28962. height: math.unit(9144000000, "meters")
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(1.7, "meters"),
  28971. weight: math.unit(130, "lb"),
  28972. name: "Front",
  28973. image: {
  28974. source: "./media/characters/kyu/front.svg",
  28975. extra: 415 / 395,
  28976. bottom: 5 / 420
  28977. }
  28978. },
  28979. head: {
  28980. height: math.unit(1.75, "feet"),
  28981. name: "Head",
  28982. image: {
  28983. source: "./media/characters/kyu/head.svg"
  28984. }
  28985. },
  28986. foot: {
  28987. height: math.unit(0.81, "feet"),
  28988. name: "Foot",
  28989. image: {
  28990. source: "./media/characters/kyu/foot.svg"
  28991. }
  28992. },
  28993. },
  28994. [
  28995. {
  28996. name: "Normal",
  28997. height: math.unit(1.7, "meters")
  28998. },
  28999. {
  29000. name: "Macro",
  29001. height: math.unit(131, "feet"),
  29002. default: true
  29003. },
  29004. {
  29005. name: "Megamacro",
  29006. height: math.unit(91440, "meters")
  29007. },
  29008. {
  29009. name: "Gigamacro",
  29010. height: math.unit(60960000, "meters")
  29011. },
  29012. {
  29013. name: "Teramacro",
  29014. height: math.unit(9144000000, "meters")
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(7 + 1 / 12, "feet"),
  29023. weight: math.unit(250, "lb"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/joey/front.svg",
  29027. extra: 1791 / 1537,
  29028. bottom: 28 / 1816
  29029. }
  29030. },
  29031. },
  29032. [
  29033. {
  29034. name: "Micro",
  29035. height: math.unit(3, "inches")
  29036. },
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(7 + 1 / 12, "feet"),
  29040. default: true
  29041. },
  29042. ]
  29043. ))
  29044. characterMakers.push(() => makeCharacter(
  29045. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29046. {
  29047. front: {
  29048. height: math.unit(165, "cm"),
  29049. weight: math.unit(140, "lb"),
  29050. name: "Front",
  29051. image: {
  29052. source: "./media/characters/sam-evans/front.svg",
  29053. extra: 3417 / 3230,
  29054. bottom: 41.3 / 3417
  29055. }
  29056. },
  29057. frontSixTails: {
  29058. height: math.unit(165, "cm"),
  29059. weight: math.unit(140, "lb"),
  29060. name: "Front-six-tails",
  29061. image: {
  29062. source: "./media/characters/sam-evans/front-six-tails.svg",
  29063. extra: 3417 / 3230,
  29064. bottom: 41.3 / 3417
  29065. }
  29066. },
  29067. back: {
  29068. height: math.unit(165, "cm"),
  29069. weight: math.unit(140, "lb"),
  29070. name: "Back",
  29071. image: {
  29072. source: "./media/characters/sam-evans/back.svg",
  29073. extra: 3227 / 3032,
  29074. bottom: 6.8 / 3234
  29075. }
  29076. },
  29077. face: {
  29078. height: math.unit(0.68, "feet"),
  29079. name: "Face",
  29080. image: {
  29081. source: "./media/characters/sam-evans/face.svg"
  29082. }
  29083. },
  29084. },
  29085. [
  29086. {
  29087. name: "Normal",
  29088. height: math.unit(165, "cm"),
  29089. default: true
  29090. },
  29091. {
  29092. name: "Macro",
  29093. height: math.unit(100, "meters")
  29094. },
  29095. {
  29096. name: "Macro+",
  29097. height: math.unit(800, "meters")
  29098. },
  29099. {
  29100. name: "Macro++",
  29101. height: math.unit(3, "km")
  29102. },
  29103. {
  29104. name: "Macro+++",
  29105. height: math.unit(30, "km")
  29106. },
  29107. ]
  29108. ))
  29109. characterMakers.push(() => makeCharacter(
  29110. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29111. {
  29112. front: {
  29113. height: math.unit(10, "feet"),
  29114. weight: math.unit(750, "lb"),
  29115. name: "Front",
  29116. image: {
  29117. source: "./media/characters/juliet-a/front.svg",
  29118. extra: 1766 / 1720,
  29119. bottom: 43 / 1809
  29120. }
  29121. },
  29122. back: {
  29123. height: math.unit(10, "feet"),
  29124. weight: math.unit(750, "lb"),
  29125. name: "Back",
  29126. image: {
  29127. source: "./media/characters/juliet-a/back.svg",
  29128. extra: 1781 / 1734,
  29129. bottom: 35 / 1810,
  29130. }
  29131. },
  29132. },
  29133. [
  29134. {
  29135. name: "Normal",
  29136. height: math.unit(10, "feet"),
  29137. default: true
  29138. },
  29139. {
  29140. name: "Dragon Form",
  29141. height: math.unit(250, "feet")
  29142. },
  29143. {
  29144. name: "Macro",
  29145. height: math.unit(1000, "feet")
  29146. },
  29147. {
  29148. name: "Megamacro",
  29149. height: math.unit(10000, "feet")
  29150. }
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29155. {
  29156. regular: {
  29157. height: math.unit(7 + 3 / 12, "feet"),
  29158. weight: math.unit(260, "lb"),
  29159. name: "Regular",
  29160. image: {
  29161. source: "./media/characters/wild/regular.svg",
  29162. extra: 97.45 / 92,
  29163. bottom: 6.8 / 104.3
  29164. }
  29165. },
  29166. biggums: {
  29167. height: math.unit(8 + 6 / 12, "feet"),
  29168. weight: math.unit(425, "lb"),
  29169. name: "Biggums",
  29170. image: {
  29171. source: "./media/characters/wild/biggums.svg",
  29172. extra: 97.45 / 92,
  29173. bottom: 7.5 / 132.34
  29174. }
  29175. },
  29176. mawRegular: {
  29177. height: math.unit(1.24, "feet"),
  29178. name: "Maw (Regular)",
  29179. image: {
  29180. source: "./media/characters/wild/maw.svg"
  29181. }
  29182. },
  29183. mawBiggums: {
  29184. height: math.unit(1.47, "feet"),
  29185. name: "Maw (Biggums)",
  29186. image: {
  29187. source: "./media/characters/wild/maw.svg"
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "Normal",
  29194. height: math.unit(7 + 3 / 12, "feet"),
  29195. default: true
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29201. {
  29202. front: {
  29203. height: math.unit(2.5, "meters"),
  29204. weight: math.unit(200, "kg"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/vidar/front.svg",
  29208. extra: 2994 / 2795,
  29209. bottom: 56 / 3061
  29210. }
  29211. },
  29212. back: {
  29213. height: math.unit(2.5, "meters"),
  29214. weight: math.unit(200, "kg"),
  29215. name: "Back",
  29216. image: {
  29217. source: "./media/characters/vidar/back.svg",
  29218. extra: 3131 / 2928,
  29219. bottom: 13.5 / 3141.5
  29220. }
  29221. },
  29222. feral: {
  29223. height: math.unit(2.5, "meters"),
  29224. weight: math.unit(2000, "kg"),
  29225. name: "Feral",
  29226. image: {
  29227. source: "./media/characters/vidar/feral.svg",
  29228. extra: 2790 / 1765,
  29229. bottom: 6 / 2796
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(2.5, "meters"),
  29237. default: true
  29238. },
  29239. {
  29240. name: "Macro",
  29241. height: math.unit(100, "meters")
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29247. {
  29248. front: {
  29249. height: math.unit(5 + 9 / 12, "feet"),
  29250. weight: math.unit(120, "lb"),
  29251. name: "Front",
  29252. image: {
  29253. source: "./media/characters/ash/front.svg",
  29254. extra: 2189 / 1961,
  29255. bottom: 5.2 / 2194
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(5 + 9 / 12, "feet"),
  29263. default: true
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29269. {
  29270. front: {
  29271. height: math.unit(9, "feet"),
  29272. weight: math.unit(10000, "lb"),
  29273. name: "Front",
  29274. image: {
  29275. source: "./media/characters/gygabite/front.svg",
  29276. bottom: 31.7 / 537.8,
  29277. extra: 505 / 370
  29278. }
  29279. },
  29280. },
  29281. [
  29282. {
  29283. name: "Normal",
  29284. height: math.unit(9, "feet"),
  29285. default: true
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29291. {
  29292. front: {
  29293. height: math.unit(12, "feet"),
  29294. weight: math.unit(4000, "lb"),
  29295. name: "Front",
  29296. image: {
  29297. source: "./media/characters/p0tat0/front.svg",
  29298. extra: 1065 / 921,
  29299. bottom: 55.7 / 1121.25
  29300. }
  29301. },
  29302. },
  29303. [
  29304. {
  29305. name: "Normal",
  29306. height: math.unit(12, "feet"),
  29307. default: true
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29313. {
  29314. side: {
  29315. height: math.unit(6.5, "feet"),
  29316. weight: math.unit(800, "lb"),
  29317. name: "Side",
  29318. image: {
  29319. source: "./media/characters/dusk/side.svg",
  29320. extra: 615 / 373,
  29321. bottom: 53 / 664
  29322. }
  29323. },
  29324. sitting: {
  29325. height: math.unit(7, "feet"),
  29326. weight: math.unit(800, "lb"),
  29327. name: "Sitting",
  29328. image: {
  29329. source: "./media/characters/dusk/sitting.svg",
  29330. extra: 753 / 425,
  29331. bottom: 33 / 774
  29332. }
  29333. },
  29334. head: {
  29335. height: math.unit(6.1, "feet"),
  29336. name: "Head",
  29337. image: {
  29338. source: "./media/characters/dusk/head.svg"
  29339. }
  29340. },
  29341. },
  29342. [
  29343. {
  29344. name: "Normal",
  29345. height: math.unit(7, "feet"),
  29346. default: true
  29347. },
  29348. ]
  29349. ))
  29350. characterMakers.push(() => makeCharacter(
  29351. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29352. {
  29353. front: {
  29354. height: math.unit(15, "feet"),
  29355. weight: math.unit(7000, "lb"),
  29356. name: "Front",
  29357. image: {
  29358. source: "./media/characters/jay-direwolf/front.svg",
  29359. extra: 1810 / 1732,
  29360. bottom: 66 / 1892
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Normal",
  29367. height: math.unit(15, "feet"),
  29368. default: true
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(4 + 9 / 12, "feet"),
  29377. weight: math.unit(130, "lb"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/anchovie/front.svg",
  29381. extra: 382 / 350,
  29382. bottom: 25 / 409
  29383. }
  29384. },
  29385. back: {
  29386. height: math.unit(4 + 9 / 12, "feet"),
  29387. weight: math.unit(130, "lb"),
  29388. name: "Back",
  29389. image: {
  29390. source: "./media/characters/anchovie/back.svg",
  29391. extra: 385 / 352,
  29392. bottom: 16.6 / 402
  29393. }
  29394. },
  29395. frontDressed: {
  29396. height: math.unit(4 + 9 / 12, "feet"),
  29397. weight: math.unit(130, "lb"),
  29398. name: "Front (Dressed)",
  29399. image: {
  29400. source: "./media/characters/anchovie/front-dressed.svg",
  29401. extra: 382 / 350,
  29402. bottom: 25 / 409
  29403. }
  29404. },
  29405. backDressed: {
  29406. height: math.unit(4 + 9 / 12, "feet"),
  29407. weight: math.unit(130, "lb"),
  29408. name: "Back (Dressed)",
  29409. image: {
  29410. source: "./media/characters/anchovie/back-dressed.svg",
  29411. extra: 385 / 352,
  29412. bottom: 16.6 / 402
  29413. }
  29414. },
  29415. },
  29416. [
  29417. {
  29418. name: "Micro",
  29419. height: math.unit(6.4, "inches")
  29420. },
  29421. {
  29422. name: "Normal",
  29423. height: math.unit(4 + 9 / 12, "feet"),
  29424. default: true
  29425. },
  29426. ]
  29427. ))
  29428. characterMakers.push(() => makeCharacter(
  29429. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29430. {
  29431. front: {
  29432. height: math.unit(2, "meters"),
  29433. weight: math.unit(180, "lb"),
  29434. name: "Front",
  29435. image: {
  29436. source: "./media/characters/acidrenamon/front.svg",
  29437. extra: 987 / 890,
  29438. bottom: 22.8 / 1009
  29439. }
  29440. },
  29441. back: {
  29442. height: math.unit(2, "meters"),
  29443. weight: math.unit(180, "lb"),
  29444. name: "Back",
  29445. image: {
  29446. source: "./media/characters/acidrenamon/back.svg",
  29447. extra: 983 / 891,
  29448. bottom: 8.4 / 992
  29449. }
  29450. },
  29451. head: {
  29452. height: math.unit(1.92, "feet"),
  29453. name: "Head",
  29454. image: {
  29455. source: "./media/characters/acidrenamon/head.svg"
  29456. }
  29457. },
  29458. rump: {
  29459. height: math.unit(1.72, "feet"),
  29460. name: "Rump",
  29461. image: {
  29462. source: "./media/characters/acidrenamon/rump.svg"
  29463. }
  29464. },
  29465. tail: {
  29466. height: math.unit(4.2, "feet"),
  29467. name: "Tail",
  29468. image: {
  29469. source: "./media/characters/acidrenamon/tail.svg"
  29470. }
  29471. },
  29472. },
  29473. [
  29474. {
  29475. name: "Normal",
  29476. height: math.unit(2, "meters"),
  29477. default: true
  29478. },
  29479. {
  29480. name: "Minimacro",
  29481. height: math.unit(7, "meters")
  29482. },
  29483. {
  29484. name: "Macro",
  29485. height: math.unit(200, "meters")
  29486. },
  29487. {
  29488. name: "Gigamacro",
  29489. height: math.unit(0.2, "earths")
  29490. },
  29491. ]
  29492. ))
  29493. characterMakers.push(() => makeCharacter(
  29494. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29495. {
  29496. front: {
  29497. height: math.unit(152, "feet"),
  29498. name: "Front",
  29499. image: {
  29500. source: "./media/characters/kenzie-lee/front.svg",
  29501. extra: 1869/1774,
  29502. bottom: 128/1997
  29503. }
  29504. },
  29505. side: {
  29506. height: math.unit(86, "feet"),
  29507. name: "Side",
  29508. image: {
  29509. source: "./media/characters/kenzie-lee/side.svg",
  29510. extra: 930/815,
  29511. bottom: 177/1107
  29512. }
  29513. },
  29514. paw: {
  29515. height: math.unit(15, "feet"),
  29516. name: "Paw",
  29517. image: {
  29518. source: "./media/characters/kenzie-lee/paw.svg"
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Kenzie Flea",
  29525. height: math.unit(2, "mm"),
  29526. default: true
  29527. },
  29528. {
  29529. name: "Micro",
  29530. height: math.unit(2, "inches")
  29531. },
  29532. {
  29533. name: "Normal",
  29534. height: math.unit(152, "feet")
  29535. },
  29536. {
  29537. name: "Megamacro",
  29538. height: math.unit(7, "miles")
  29539. },
  29540. {
  29541. name: "Gigamacro",
  29542. height: math.unit(8000, "miles")
  29543. },
  29544. ]
  29545. ))
  29546. characterMakers.push(() => makeCharacter(
  29547. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29548. {
  29549. front: {
  29550. height: math.unit(6, "feet"),
  29551. name: "Front",
  29552. image: {
  29553. source: "./media/characters/withers/front.svg",
  29554. extra: 1935/1760,
  29555. bottom: 72/2007
  29556. }
  29557. },
  29558. back: {
  29559. height: math.unit(6, "feet"),
  29560. name: "Back",
  29561. image: {
  29562. source: "./media/characters/withers/back.svg",
  29563. extra: 1944/1792,
  29564. bottom: 12/1956
  29565. }
  29566. },
  29567. dressed: {
  29568. height: math.unit(6, "feet"),
  29569. name: "Dressed",
  29570. image: {
  29571. source: "./media/characters/withers/dressed.svg",
  29572. extra: 1937/1765,
  29573. bottom: 73/2010
  29574. }
  29575. },
  29576. phase1: {
  29577. height: math.unit(1.1, "feet"),
  29578. name: "Phase 1",
  29579. image: {
  29580. source: "./media/characters/withers/phase-1.svg",
  29581. extra: 1885/1232,
  29582. bottom: 0/1885
  29583. }
  29584. },
  29585. phase2: {
  29586. height: math.unit(1.05, "feet"),
  29587. name: "Phase 2",
  29588. image: {
  29589. source: "./media/characters/withers/phase-2.svg",
  29590. extra: 1792/1090,
  29591. bottom: 0/1792
  29592. }
  29593. },
  29594. partyWipe: {
  29595. height: math.unit(1.1, "feet"),
  29596. name: "Party Wipe",
  29597. image: {
  29598. source: "./media/characters/withers/party-wipe.svg",
  29599. extra: 1864/1207,
  29600. bottom: 0/1864
  29601. }
  29602. },
  29603. },
  29604. [
  29605. {
  29606. name: "Macro",
  29607. height: math.unit(167, "feet"),
  29608. default: true
  29609. },
  29610. {
  29611. name: "Megamacro",
  29612. height: math.unit(15, "miles")
  29613. }
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(6 + 7 / 12, "feet"),
  29621. weight: math.unit(250, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/nemoskii/front.svg",
  29625. extra: 2270 / 1734,
  29626. bottom: 86 / 2354
  29627. }
  29628. },
  29629. back: {
  29630. height: math.unit(6 + 7 / 12, "feet"),
  29631. weight: math.unit(250, "lb"),
  29632. name: "Back",
  29633. image: {
  29634. source: "./media/characters/nemoskii/back.svg",
  29635. extra: 1845 / 1788,
  29636. bottom: 10.5 / 1852
  29637. }
  29638. },
  29639. head: {
  29640. height: math.unit(1.31, "feet"),
  29641. name: "Head",
  29642. image: {
  29643. source: "./media/characters/nemoskii/head.svg"
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Micro",
  29650. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29651. },
  29652. {
  29653. name: "Normal",
  29654. height: math.unit(6 + 7 / 12, "feet"),
  29655. default: true
  29656. },
  29657. {
  29658. name: "Macro",
  29659. height: math.unit((6 + 7 / 12) * 150, "feet")
  29660. },
  29661. {
  29662. name: "Macro+",
  29663. height: math.unit((6 + 7 / 12) * 500, "feet")
  29664. },
  29665. {
  29666. name: "Megamacro",
  29667. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29668. },
  29669. ]
  29670. ))
  29671. characterMakers.push(() => makeCharacter(
  29672. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29673. {
  29674. front: {
  29675. height: math.unit(1, "mile"),
  29676. weight: math.unit(265261.9, "lb"),
  29677. name: "Front",
  29678. image: {
  29679. source: "./media/characters/shui/front.svg",
  29680. extra: 1633 / 1564,
  29681. bottom: 91.5 / 1726
  29682. }
  29683. },
  29684. },
  29685. [
  29686. {
  29687. name: "Macro",
  29688. height: math.unit(1, "mile"),
  29689. default: true
  29690. },
  29691. ]
  29692. ))
  29693. characterMakers.push(() => makeCharacter(
  29694. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29695. {
  29696. front: {
  29697. height: math.unit(12 + 6 / 12, "feet"),
  29698. weight: math.unit(1342, "lb"),
  29699. name: "Front",
  29700. image: {
  29701. source: "./media/characters/arokh-takakura/front.svg",
  29702. extra: 1089 / 1043,
  29703. bottom: 77.4 / 1176.7
  29704. }
  29705. },
  29706. back: {
  29707. height: math.unit(12 + 6 / 12, "feet"),
  29708. weight: math.unit(1342, "lb"),
  29709. name: "Back",
  29710. image: {
  29711. source: "./media/characters/arokh-takakura/back.svg",
  29712. extra: 1046 / 1019,
  29713. bottom: 102 / 1150
  29714. }
  29715. },
  29716. },
  29717. [
  29718. {
  29719. name: "Big",
  29720. height: math.unit(12 + 6 / 12, "feet"),
  29721. default: true
  29722. },
  29723. ]
  29724. ))
  29725. characterMakers.push(() => makeCharacter(
  29726. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29727. {
  29728. front: {
  29729. height: math.unit(5 + 6 / 12, "feet"),
  29730. weight: math.unit(150, "lb"),
  29731. name: "Front",
  29732. image: {
  29733. source: "./media/characters/theo/front.svg",
  29734. extra: 1184 / 1131,
  29735. bottom: 7.4 / 1191
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Micro",
  29742. height: math.unit(5, "inches")
  29743. },
  29744. {
  29745. name: "Normal",
  29746. height: math.unit(5 + 6 / 12, "feet"),
  29747. default: true
  29748. },
  29749. ]
  29750. ))
  29751. characterMakers.push(() => makeCharacter(
  29752. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29753. {
  29754. front: {
  29755. height: math.unit(5 + 9 / 12, "feet"),
  29756. weight: math.unit(130, "lb"),
  29757. name: "Front",
  29758. image: {
  29759. source: "./media/characters/cecelia-swift/front.svg",
  29760. extra: 502 / 484,
  29761. bottom: 23 / 523
  29762. }
  29763. },
  29764. back: {
  29765. height: math.unit(5 + 9 / 12, "feet"),
  29766. weight: math.unit(130, "lb"),
  29767. name: "Back",
  29768. image: {
  29769. source: "./media/characters/cecelia-swift/back.svg",
  29770. extra: 499 / 485,
  29771. bottom: 12 / 511
  29772. }
  29773. },
  29774. head: {
  29775. height: math.unit(0.90, "feet"),
  29776. name: "Head",
  29777. image: {
  29778. source: "./media/characters/cecelia-swift/head.svg"
  29779. }
  29780. },
  29781. rump: {
  29782. height: math.unit(1.75, "feet"),
  29783. name: "Rump",
  29784. image: {
  29785. source: "./media/characters/cecelia-swift/rump.svg"
  29786. }
  29787. },
  29788. },
  29789. [
  29790. {
  29791. name: "Normal",
  29792. height: math.unit(5 + 9 / 12, "feet"),
  29793. default: true
  29794. },
  29795. {
  29796. name: "Big",
  29797. height: math.unit(50, "feet")
  29798. },
  29799. {
  29800. name: "Macro",
  29801. height: math.unit(100, "feet")
  29802. },
  29803. {
  29804. name: "Macro+",
  29805. height: math.unit(500, "feet")
  29806. },
  29807. {
  29808. name: "Macro++",
  29809. height: math.unit(1000, "feet")
  29810. },
  29811. ]
  29812. ))
  29813. characterMakers.push(() => makeCharacter(
  29814. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29815. {
  29816. front: {
  29817. height: math.unit(6, "feet"),
  29818. weight: math.unit(150, "lb"),
  29819. name: "Front",
  29820. image: {
  29821. source: "./media/characters/kaunan/front.svg",
  29822. extra: 2890 / 2523,
  29823. bottom: 49 / 2939
  29824. }
  29825. },
  29826. },
  29827. [
  29828. {
  29829. name: "Macro",
  29830. height: math.unit(150, "feet"),
  29831. default: true
  29832. },
  29833. ]
  29834. ))
  29835. characterMakers.push(() => makeCharacter(
  29836. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29837. {
  29838. dressed: {
  29839. height: math.unit(175, "cm"),
  29840. weight: math.unit(60, "kg"),
  29841. name: "Dressed",
  29842. image: {
  29843. source: "./media/characters/fei/dressed.svg",
  29844. extra: 1402/1278,
  29845. bottom: 27/1429
  29846. }
  29847. },
  29848. nude: {
  29849. height: math.unit(175, "cm"),
  29850. weight: math.unit(60, "kg"),
  29851. name: "Nude",
  29852. image: {
  29853. source: "./media/characters/fei/nude.svg",
  29854. extra: 1402/1278,
  29855. bottom: 27/1429
  29856. }
  29857. },
  29858. heels: {
  29859. height: math.unit(0.466, "feet"),
  29860. name: "Heels",
  29861. image: {
  29862. source: "./media/characters/fei/heels.svg",
  29863. extra: 156/152,
  29864. bottom: 28/184
  29865. }
  29866. },
  29867. },
  29868. [
  29869. {
  29870. name: "Mortal",
  29871. height: math.unit(175, "cm")
  29872. },
  29873. {
  29874. name: "Normal",
  29875. height: math.unit(3500, "m")
  29876. },
  29877. {
  29878. name: "Stroll",
  29879. height: math.unit(18.4, "km"),
  29880. default: true
  29881. },
  29882. {
  29883. name: "Showoff",
  29884. height: math.unit(175, "km")
  29885. },
  29886. ]
  29887. ))
  29888. characterMakers.push(() => makeCharacter(
  29889. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29890. {
  29891. front: {
  29892. height: math.unit(7, "feet"),
  29893. weight: math.unit(1000, "kg"),
  29894. name: "Front",
  29895. image: {
  29896. source: "./media/characters/edrax/front.svg",
  29897. extra: 2838 / 2550,
  29898. bottom: 130 / 2968
  29899. }
  29900. },
  29901. },
  29902. [
  29903. {
  29904. name: "Small",
  29905. height: math.unit(7, "feet")
  29906. },
  29907. {
  29908. name: "Normal",
  29909. height: math.unit(1500, "meters")
  29910. },
  29911. {
  29912. name: "Mega",
  29913. height: math.unit(12000000, "km"),
  29914. default: true
  29915. },
  29916. {
  29917. name: "Megamacro",
  29918. height: math.unit(10600000, "lightyears")
  29919. },
  29920. {
  29921. name: "Hypermacro",
  29922. height: math.unit(256, "yottameters")
  29923. },
  29924. ]
  29925. ))
  29926. characterMakers.push(() => makeCharacter(
  29927. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29928. {
  29929. front: {
  29930. height: math.unit(10, "feet"),
  29931. weight: math.unit(750, "lb"),
  29932. name: "Front",
  29933. image: {
  29934. source: "./media/characters/clove/front.svg",
  29935. extra: 1918/1751,
  29936. bottom: 52/1970
  29937. }
  29938. },
  29939. back: {
  29940. height: math.unit(10, "feet"),
  29941. weight: math.unit(750, "lb"),
  29942. name: "Back",
  29943. image: {
  29944. source: "./media/characters/clove/back.svg",
  29945. extra: 1912/1747,
  29946. bottom: 50/1962
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(10, "feet"),
  29954. default: true
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(4, "feet"),
  29963. weight: math.unit(50, "lb"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/alex-rabbit/front.svg",
  29967. extra: 507 / 458,
  29968. bottom: 18.5 / 527
  29969. }
  29970. },
  29971. back: {
  29972. height: math.unit(4, "feet"),
  29973. weight: math.unit(50, "lb"),
  29974. name: "Back",
  29975. image: {
  29976. source: "./media/characters/alex-rabbit/back.svg",
  29977. extra: 502 / 460,
  29978. bottom: 18.9 / 521
  29979. }
  29980. },
  29981. },
  29982. [
  29983. {
  29984. name: "Normal",
  29985. height: math.unit(4, "feet"),
  29986. default: true
  29987. },
  29988. ]
  29989. ))
  29990. characterMakers.push(() => makeCharacter(
  29991. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29992. {
  29993. front: {
  29994. height: math.unit(1 + 3 / 12, "feet"),
  29995. weight: math.unit(80, "lb"),
  29996. name: "Front",
  29997. image: {
  29998. source: "./media/characters/zander-rose/front.svg",
  29999. extra: 916 / 797,
  30000. bottom: 17 / 933
  30001. }
  30002. },
  30003. back: {
  30004. height: math.unit(1 + 3 / 12, "feet"),
  30005. weight: math.unit(80, "lb"),
  30006. name: "Back",
  30007. image: {
  30008. source: "./media/characters/zander-rose/back.svg",
  30009. extra: 903 / 779,
  30010. bottom: 31 / 934
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(1 + 3 / 12, "feet"),
  30018. default: true
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30024. {
  30025. anthro: {
  30026. height: math.unit(6, "feet"),
  30027. weight: math.unit(150, "lb"),
  30028. name: "Anthro",
  30029. image: {
  30030. source: "./media/characters/razz/anthro.svg",
  30031. extra: 1437 / 1343,
  30032. bottom: 48 / 1485
  30033. }
  30034. },
  30035. feral: {
  30036. height: math.unit(6, "feet"),
  30037. weight: math.unit(150, "lb"),
  30038. name: "Feral",
  30039. image: {
  30040. source: "./media/characters/razz/feral.svg",
  30041. extra: 2569 / 1385,
  30042. bottom: 95 / 2664
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Normal",
  30049. height: math.unit(6, "feet"),
  30050. default: true
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30056. {
  30057. front: {
  30058. height: math.unit(9 + 4 / 12, "feet"),
  30059. weight: math.unit(500, "lb"),
  30060. name: "Front",
  30061. image: {
  30062. source: "./media/characters/morrigan/front.svg",
  30063. extra: 2707 / 2579,
  30064. bottom: 156 / 2863
  30065. }
  30066. },
  30067. },
  30068. [
  30069. {
  30070. name: "Normal",
  30071. height: math.unit(9 + 4 / 12, "feet"),
  30072. default: true
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30078. {
  30079. front: {
  30080. height: math.unit(5, "stories"),
  30081. weight: math.unit(4000, "lb"),
  30082. name: "Front",
  30083. image: {
  30084. source: "./media/characters/jenene/front.svg",
  30085. extra: 1780 / 1710,
  30086. bottom: 57 / 1837
  30087. }
  30088. },
  30089. },
  30090. [
  30091. {
  30092. name: "Normal",
  30093. height: math.unit(5, "stories"),
  30094. default: true
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30100. {
  30101. taurSfw: {
  30102. height: math.unit(10, "meters"),
  30103. weight: math.unit(17500, "kg"),
  30104. name: "Taur",
  30105. image: {
  30106. source: "./media/characters/faey/taur-sfw.svg",
  30107. extra: 1200 / 968,
  30108. bottom: 41 / 1241
  30109. }
  30110. },
  30111. chestmaw: {
  30112. height: math.unit(2.01, "meters"),
  30113. name: "Chestmaw",
  30114. image: {
  30115. source: "./media/characters/faey/chestmaw.svg"
  30116. }
  30117. },
  30118. foot: {
  30119. height: math.unit(2.43, "meters"),
  30120. name: "Foot",
  30121. image: {
  30122. source: "./media/characters/faey/foot.svg"
  30123. }
  30124. },
  30125. jaws: {
  30126. height: math.unit(1.66, "meters"),
  30127. name: "Jaws",
  30128. image: {
  30129. source: "./media/characters/faey/jaws.svg"
  30130. }
  30131. },
  30132. tongues: {
  30133. height: math.unit(2.01, "meters"),
  30134. name: "Tongues",
  30135. image: {
  30136. source: "./media/characters/faey/tongues.svg"
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Small",
  30143. height: math.unit(10, "meters"),
  30144. default: true
  30145. },
  30146. {
  30147. name: "Big",
  30148. height: math.unit(500000, "km")
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(7, "feet"),
  30157. weight: math.unit(275, "lb"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/roku/front.svg",
  30161. extra: 903 / 878,
  30162. bottom: 37 / 940
  30163. }
  30164. },
  30165. },
  30166. [
  30167. {
  30168. name: "Normal",
  30169. height: math.unit(7, "feet"),
  30170. default: true
  30171. },
  30172. {
  30173. name: "Macro",
  30174. height: math.unit(500, "feet")
  30175. },
  30176. {
  30177. name: "Megamacro",
  30178. height: math.unit(200, "miles")
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(6 + 2 / 12, "feet"),
  30187. weight: math.unit(150, "lb"),
  30188. name: "Front",
  30189. image: {
  30190. source: "./media/characters/lira/front.svg",
  30191. extra: 1727 / 1605,
  30192. bottom: 26 / 1753
  30193. }
  30194. },
  30195. back: {
  30196. height: math.unit(6 + 2 / 12, "feet"),
  30197. weight: math.unit(150, "lb"),
  30198. name: "Back",
  30199. image: {
  30200. source: "./media/characters/lira/back.svg",
  30201. extra: 1713/1621,
  30202. bottom: 20/1733
  30203. }
  30204. },
  30205. hand: {
  30206. height: math.unit(0.75, "feet"),
  30207. name: "Hand",
  30208. image: {
  30209. source: "./media/characters/lira/hand.svg"
  30210. }
  30211. },
  30212. maw: {
  30213. height: math.unit(0.65, "feet"),
  30214. name: "Maw",
  30215. image: {
  30216. source: "./media/characters/lira/maw.svg"
  30217. }
  30218. },
  30219. pawDigi: {
  30220. height: math.unit(1.6, "feet"),
  30221. name: "Paw Digi",
  30222. image: {
  30223. source: "./media/characters/lira/paw-digi.svg"
  30224. }
  30225. },
  30226. pawPlanti: {
  30227. height: math.unit(1.4, "feet"),
  30228. name: "Paw Planti",
  30229. image: {
  30230. source: "./media/characters/lira/paw-planti.svg"
  30231. }
  30232. },
  30233. },
  30234. [
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(6 + 2 / 12, "feet"),
  30238. default: true
  30239. },
  30240. {
  30241. name: "Macro",
  30242. height: math.unit(100, "feet")
  30243. },
  30244. {
  30245. name: "Macro²",
  30246. height: math.unit(1600, "feet")
  30247. },
  30248. {
  30249. name: "Planetary",
  30250. height: math.unit(20, "earths")
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(6, "feet"),
  30259. weight: math.unit(150, "lb"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/hadjet/front.svg",
  30263. extra: 1480 / 1346,
  30264. bottom: 26 / 1506
  30265. }
  30266. },
  30267. frontNsfw: {
  30268. height: math.unit(6, "feet"),
  30269. weight: math.unit(150, "lb"),
  30270. name: "Front (NSFW)",
  30271. image: {
  30272. source: "./media/characters/hadjet/front-nsfw.svg",
  30273. extra: 1440 / 1358,
  30274. bottom: 52 / 1492
  30275. }
  30276. },
  30277. },
  30278. [
  30279. {
  30280. name: "Macro",
  30281. height: math.unit(10, "stories"),
  30282. default: true
  30283. },
  30284. {
  30285. name: "Megamacro",
  30286. height: math.unit(1.5, "miles")
  30287. },
  30288. {
  30289. name: "Megamacro+",
  30290. height: math.unit(5, "miles")
  30291. },
  30292. ]
  30293. ))
  30294. characterMakers.push(() => makeCharacter(
  30295. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30296. {
  30297. side: {
  30298. height: math.unit(106, "feet"),
  30299. weight: math.unit(500, "tonnes"),
  30300. name: "Side",
  30301. image: {
  30302. source: "./media/characters/kodran/side.svg",
  30303. extra: 553 / 480,
  30304. bottom: 33 / 586
  30305. }
  30306. },
  30307. front: {
  30308. height: math.unit(132, "feet"),
  30309. weight: math.unit(500, "tonnes"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/kodran/front.svg",
  30313. extra: 667 / 643,
  30314. bottom: 42 / 709
  30315. }
  30316. },
  30317. flying: {
  30318. height: math.unit(350, "feet"),
  30319. weight: math.unit(500, "tonnes"),
  30320. name: "Flying",
  30321. image: {
  30322. source: "./media/characters/kodran/flying.svg"
  30323. }
  30324. },
  30325. foot: {
  30326. height: math.unit(33, "feet"),
  30327. name: "Foot",
  30328. image: {
  30329. source: "./media/characters/kodran/foot.svg"
  30330. }
  30331. },
  30332. footFront: {
  30333. height: math.unit(19, "feet"),
  30334. name: "Foot (Front)",
  30335. image: {
  30336. source: "./media/characters/kodran/foot-front.svg",
  30337. extra: 261 / 261,
  30338. bottom: 91 / 352
  30339. }
  30340. },
  30341. headFront: {
  30342. height: math.unit(53, "feet"),
  30343. name: "Head (Front)",
  30344. image: {
  30345. source: "./media/characters/kodran/head-front.svg"
  30346. }
  30347. },
  30348. headSide: {
  30349. height: math.unit(65, "feet"),
  30350. name: "Head (Side)",
  30351. image: {
  30352. source: "./media/characters/kodran/head-side.svg"
  30353. }
  30354. },
  30355. throat: {
  30356. height: math.unit(79, "feet"),
  30357. name: "Throat",
  30358. image: {
  30359. source: "./media/characters/kodran/throat.svg"
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Large",
  30366. height: math.unit(106, "feet"),
  30367. default: true
  30368. },
  30369. ]
  30370. ))
  30371. characterMakers.push(() => makeCharacter(
  30372. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30373. {
  30374. side: {
  30375. height: math.unit(11, "feet"),
  30376. weight: math.unit(150, "lb"),
  30377. name: "Side",
  30378. image: {
  30379. source: "./media/characters/pyxaron/side.svg",
  30380. extra: 305 / 195,
  30381. bottom: 17 / 322
  30382. }
  30383. },
  30384. },
  30385. [
  30386. {
  30387. name: "Normal",
  30388. height: math.unit(11, "feet"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(6, "feet"),
  30398. weight: math.unit(150, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/meep/front.svg",
  30402. extra: 88 / 80,
  30403. bottom: 6 / 94
  30404. }
  30405. },
  30406. },
  30407. [
  30408. {
  30409. name: "Fun Sized",
  30410. height: math.unit(2, "inches"),
  30411. default: true
  30412. },
  30413. {
  30414. name: "Friend Sized",
  30415. height: math.unit(8, "inches")
  30416. },
  30417. ]
  30418. ))
  30419. characterMakers.push(() => makeCharacter(
  30420. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30421. {
  30422. front: {
  30423. height: math.unit(15, "feet"),
  30424. weight: math.unit(2500, "lb"),
  30425. name: "Front",
  30426. image: {
  30427. source: "./media/characters/holly-rabbit/front.svg",
  30428. extra: 1433 / 1233,
  30429. bottom: 125 / 1558
  30430. }
  30431. },
  30432. dick: {
  30433. height: math.unit(4.6, "feet"),
  30434. name: "Dick",
  30435. image: {
  30436. source: "./media/characters/holly-rabbit/dick.svg"
  30437. }
  30438. },
  30439. },
  30440. [
  30441. {
  30442. name: "Normal",
  30443. height: math.unit(15, "feet"),
  30444. default: true
  30445. },
  30446. {
  30447. name: "Macro",
  30448. height: math.unit(250, "feet")
  30449. },
  30450. {
  30451. name: "Macro+",
  30452. height: math.unit(2500, "feet")
  30453. },
  30454. ]
  30455. ))
  30456. characterMakers.push(() => makeCharacter(
  30457. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30458. {
  30459. front: {
  30460. height: math.unit(3.02, "meters"),
  30461. weight: math.unit(500, "kg"),
  30462. name: "Front",
  30463. image: {
  30464. source: "./media/characters/drena/front.svg",
  30465. extra: 282 / 243,
  30466. bottom: 8 / 290
  30467. }
  30468. },
  30469. side: {
  30470. height: math.unit(3.02, "meters"),
  30471. weight: math.unit(500, "kg"),
  30472. name: "Side",
  30473. image: {
  30474. source: "./media/characters/drena/side.svg",
  30475. extra: 280 / 245,
  30476. bottom: 10 / 290
  30477. }
  30478. },
  30479. back: {
  30480. height: math.unit(3.02, "meters"),
  30481. weight: math.unit(500, "kg"),
  30482. name: "Back",
  30483. image: {
  30484. source: "./media/characters/drena/back.svg",
  30485. extra: 278 / 243,
  30486. bottom: 2 / 280
  30487. }
  30488. },
  30489. foot: {
  30490. height: math.unit(0.75, "meters"),
  30491. name: "Foot",
  30492. image: {
  30493. source: "./media/characters/drena/foot.svg"
  30494. }
  30495. },
  30496. maw: {
  30497. height: math.unit(0.82, "meters"),
  30498. name: "Maw",
  30499. image: {
  30500. source: "./media/characters/drena/maw.svg"
  30501. }
  30502. },
  30503. eating: {
  30504. height: math.unit(0.75, "meters"),
  30505. name: "Eating",
  30506. image: {
  30507. source: "./media/characters/drena/eating.svg"
  30508. }
  30509. },
  30510. rump: {
  30511. height: math.unit(0.93, "meters"),
  30512. name: "Rump",
  30513. image: {
  30514. source: "./media/characters/drena/rump.svg"
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Normal",
  30521. height: math.unit(3.02, "meters"),
  30522. default: true
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(6 + 4 / 12, "feet"),
  30531. weight: math.unit(250, "lb"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/remmyzilla/front.svg",
  30535. extra: 4033 / 3588,
  30536. bottom: 123 / 4156
  30537. }
  30538. },
  30539. back: {
  30540. height: math.unit(6 + 4 / 12, "feet"),
  30541. weight: math.unit(250, "lb"),
  30542. name: "Back",
  30543. image: {
  30544. source: "./media/characters/remmyzilla/back.svg",
  30545. extra: 2687 / 2555,
  30546. bottom: 48 / 2735
  30547. }
  30548. },
  30549. paw: {
  30550. height: math.unit(1.73, "feet"),
  30551. name: "Paw",
  30552. image: {
  30553. source: "./media/characters/remmyzilla/paw.svg"
  30554. },
  30555. extraAttributes: {
  30556. "toeSize": {
  30557. name: "Toe Size",
  30558. power: 2,
  30559. type: "area",
  30560. base: math.unit(0.0035, "m^2")
  30561. },
  30562. "padSize": {
  30563. name: "Pad Size",
  30564. power: 2,
  30565. type: "area",
  30566. base: math.unit(0.015, "m^2")
  30567. },
  30568. "pawsize": {
  30569. name: "Paw Size",
  30570. power: 2,
  30571. type: "area",
  30572. base: math.unit(0.072, "m^2")
  30573. },
  30574. }
  30575. },
  30576. maw: {
  30577. height: math.unit(1.73, "feet"),
  30578. name: "Maw",
  30579. image: {
  30580. source: "./media/characters/remmyzilla/maw.svg"
  30581. }
  30582. },
  30583. },
  30584. [
  30585. {
  30586. name: "Normal",
  30587. height: math.unit(6 + 4 / 12, "feet")
  30588. },
  30589. {
  30590. name: "Minimacro",
  30591. height: math.unit(12 + 8 / 12, "feet")
  30592. },
  30593. {
  30594. name: "Normal",
  30595. height: math.unit(640, "feet"),
  30596. default: true
  30597. },
  30598. {
  30599. name: "Megamacro",
  30600. height: math.unit(6400, "feet")
  30601. },
  30602. {
  30603. name: "Gigamacro",
  30604. height: math.unit(64000, "miles")
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(2.5, "meters"),
  30613. weight: math.unit(300, "lb"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/lawrence/front.svg",
  30617. extra: 357 / 335,
  30618. bottom: 30 / 387
  30619. }
  30620. },
  30621. back: {
  30622. height: math.unit(2.5, "meters"),
  30623. weight: math.unit(300, "lb"),
  30624. name: "Back",
  30625. image: {
  30626. source: "./media/characters/lawrence/back.svg",
  30627. extra: 357 / 338,
  30628. bottom: 16 / 373
  30629. }
  30630. },
  30631. head: {
  30632. height: math.unit(0.9, "meter"),
  30633. name: "Head",
  30634. image: {
  30635. source: "./media/characters/lawrence/head.svg"
  30636. }
  30637. },
  30638. maw: {
  30639. height: math.unit(0.7, "meter"),
  30640. name: "Maw",
  30641. image: {
  30642. source: "./media/characters/lawrence/maw.svg"
  30643. }
  30644. },
  30645. footBottom: {
  30646. height: math.unit(0.5, "meter"),
  30647. name: "Foot (Bottom)",
  30648. image: {
  30649. source: "./media/characters/lawrence/foot-bottom.svg"
  30650. }
  30651. },
  30652. footTop: {
  30653. height: math.unit(0.5, "meter"),
  30654. name: "Foot (Top)",
  30655. image: {
  30656. source: "./media/characters/lawrence/foot-top.svg"
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(2.5, "meters"),
  30664. default: true
  30665. },
  30666. {
  30667. name: "Macro",
  30668. height: math.unit(95, "meters")
  30669. },
  30670. {
  30671. name: "Megamacro",
  30672. height: math.unit(150, "km")
  30673. },
  30674. ]
  30675. ))
  30676. characterMakers.push(() => makeCharacter(
  30677. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30678. {
  30679. front: {
  30680. height: math.unit(4.2, "meters"),
  30681. name: "Front",
  30682. image: {
  30683. source: "./media/characters/sydney/front.svg",
  30684. extra: 1323 / 1277,
  30685. bottom: 111 / 1434
  30686. }
  30687. },
  30688. },
  30689. [
  30690. {
  30691. name: "Normal",
  30692. height: math.unit(4.2, "meters"),
  30693. default: true
  30694. },
  30695. ]
  30696. ))
  30697. characterMakers.push(() => makeCharacter(
  30698. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30699. {
  30700. back: {
  30701. height: math.unit(201, "feet"),
  30702. name: "Back",
  30703. image: {
  30704. source: "./media/characters/jessica/back.svg",
  30705. extra: 273 / 259,
  30706. bottom: 7 / 280
  30707. }
  30708. },
  30709. },
  30710. [
  30711. {
  30712. name: "Normal",
  30713. height: math.unit(201, "feet"),
  30714. default: true
  30715. },
  30716. {
  30717. name: "Megamacro",
  30718. height: math.unit(8, "miles")
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30724. {
  30725. side: {
  30726. height: math.unit(5.6, "m"),
  30727. weight: math.unit(8000, "kg"),
  30728. name: "Side",
  30729. image: {
  30730. source: "./media/characters/victoria/side.svg",
  30731. extra: 1542/1229,
  30732. bottom: 124/1666
  30733. }
  30734. },
  30735. maw: {
  30736. height: math.unit(7.14, "feet"),
  30737. name: "Maw",
  30738. image: {
  30739. source: "./media/characters/victoria/maw.svg"
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(5.6, "m"),
  30747. default: true
  30748. },
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30753. {
  30754. front: {
  30755. height: math.unit(5 + 6 / 12, "feet"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/cat/front.svg",
  30759. extra: 1449/1295,
  30760. bottom: 34/1483
  30761. },
  30762. form: "cat",
  30763. default: true
  30764. },
  30765. back: {
  30766. height: math.unit(5 + 6 / 12, "feet"),
  30767. name: "Back",
  30768. image: {
  30769. source: "./media/characters/cat/back.svg",
  30770. extra: 1466/1301,
  30771. bottom: 19/1485
  30772. },
  30773. form: "cat"
  30774. },
  30775. taur: {
  30776. height: math.unit(7, "feet"),
  30777. name: "Taur",
  30778. image: {
  30779. source: "./media/characters/cat/taur.svg",
  30780. extra: 1389/1233,
  30781. bottom: 83/1472
  30782. },
  30783. form: "taur",
  30784. default: true
  30785. },
  30786. lucarioFront: {
  30787. height: math.unit(4, "feet"),
  30788. name: "Lucario (Front)",
  30789. image: {
  30790. source: "./media/characters/cat/lucario-front.svg",
  30791. extra: 1149/1019,
  30792. bottom: 84/1233
  30793. },
  30794. form: "lucario",
  30795. default: true
  30796. },
  30797. lucarioBack: {
  30798. height: math.unit(4, "feet"),
  30799. name: "Lucario (Back)",
  30800. image: {
  30801. source: "./media/characters/cat/lucario-back.svg",
  30802. extra: 1190/1059,
  30803. bottom: 33/1223
  30804. },
  30805. form: "lucario"
  30806. },
  30807. megaLucario: {
  30808. height: math.unit(4, "feet"),
  30809. name: "Mega Lucario",
  30810. image: {
  30811. source: "./media/characters/cat/mega-lucario.svg",
  30812. extra: 1515 / 1319,
  30813. bottom: 63 / 1578
  30814. },
  30815. form: "lucario"
  30816. },
  30817. nickit: {
  30818. height: math.unit(2, "feet"),
  30819. name: "Nickit",
  30820. image: {
  30821. source: "./media/characters/cat/nickit.svg",
  30822. extra: 1980 / 1585,
  30823. bottom: 102 / 2082
  30824. },
  30825. form: "nickit",
  30826. default: true
  30827. },
  30828. lopunnyFront: {
  30829. height: math.unit(5, "feet"),
  30830. name: "Lopunny (Front)",
  30831. image: {
  30832. source: "./media/characters/cat/lopunny-front.svg",
  30833. extra: 1782 / 1469,
  30834. bottom: 38 / 1820
  30835. },
  30836. form: "lopunny",
  30837. default: true
  30838. },
  30839. lopunnyBack: {
  30840. height: math.unit(5, "feet"),
  30841. name: "Lopunny (Back)",
  30842. image: {
  30843. source: "./media/characters/cat/lopunny-back.svg",
  30844. extra: 1660 / 1490,
  30845. bottom: 25 / 1685
  30846. },
  30847. form: "lopunny"
  30848. },
  30849. },
  30850. [
  30851. {
  30852. name: "Really small",
  30853. height: math.unit(1, "nm")
  30854. },
  30855. {
  30856. name: "Micro",
  30857. height: math.unit(5, "inches")
  30858. },
  30859. {
  30860. name: "Normal",
  30861. height: math.unit(5 + 6 / 12, "feet"),
  30862. default: true
  30863. },
  30864. {
  30865. name: "Macro",
  30866. height: math.unit(50, "feet")
  30867. },
  30868. {
  30869. name: "Macro+",
  30870. height: math.unit(150, "feet")
  30871. },
  30872. {
  30873. name: "Megamacro",
  30874. height: math.unit(100, "miles")
  30875. },
  30876. ]
  30877. ))
  30878. characterMakers.push(() => makeCharacter(
  30879. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30880. {
  30881. front: {
  30882. height: math.unit(63.4, "meters"),
  30883. weight: math.unit(3.28349e+6, "kilograms"),
  30884. name: "Front",
  30885. image: {
  30886. source: "./media/characters/kirina-violet/front.svg",
  30887. extra: 2812 / 2725,
  30888. bottom: 0 / 2812
  30889. }
  30890. },
  30891. back: {
  30892. height: math.unit(63.4, "meters"),
  30893. weight: math.unit(3.28349e+6, "kilograms"),
  30894. name: "Back",
  30895. image: {
  30896. source: "./media/characters/kirina-violet/back.svg",
  30897. extra: 2812 / 2725,
  30898. bottom: 0 / 2812
  30899. }
  30900. },
  30901. mouth: {
  30902. height: math.unit(4.35, "meters"),
  30903. name: "Mouth",
  30904. image: {
  30905. source: "./media/characters/kirina-violet/mouth.svg"
  30906. }
  30907. },
  30908. paw: {
  30909. height: math.unit(5.6, "meters"),
  30910. name: "Paw",
  30911. image: {
  30912. source: "./media/characters/kirina-violet/paw.svg"
  30913. }
  30914. },
  30915. tail: {
  30916. height: math.unit(18, "meters"),
  30917. name: "Tail",
  30918. image: {
  30919. source: "./media/characters/kirina-violet/tail.svg"
  30920. }
  30921. },
  30922. },
  30923. [
  30924. {
  30925. name: "Macro",
  30926. height: math.unit(63.4, "meters"),
  30927. default: true
  30928. },
  30929. ]
  30930. ))
  30931. characterMakers.push(() => makeCharacter(
  30932. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30933. {
  30934. front: {
  30935. height: math.unit(75, "feet"),
  30936. name: "Front",
  30937. image: {
  30938. source: "./media/characters/cat-gigachu/front.svg",
  30939. extra: 1239/1027,
  30940. bottom: 32/1271
  30941. }
  30942. },
  30943. back: {
  30944. height: math.unit(75, "feet"),
  30945. name: "Back",
  30946. image: {
  30947. source: "./media/characters/cat-gigachu/back.svg",
  30948. extra: 1229/1030,
  30949. bottom: 9/1238
  30950. }
  30951. },
  30952. },
  30953. [
  30954. {
  30955. name: "Dynamax",
  30956. height: math.unit(75, "feet"),
  30957. default: true
  30958. },
  30959. ]
  30960. ))
  30961. characterMakers.push(() => makeCharacter(
  30962. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30963. {
  30964. front: {
  30965. height: math.unit(6, "feet"),
  30966. weight: math.unit(150, "lb"),
  30967. name: "Front",
  30968. image: {
  30969. source: "./media/characters/sfaiyan/front.svg",
  30970. extra: 999 / 978,
  30971. bottom: 5 / 1004
  30972. }
  30973. },
  30974. },
  30975. [
  30976. {
  30977. name: "Normal",
  30978. height: math.unit(1.82, "meters")
  30979. },
  30980. {
  30981. name: "Giant",
  30982. height: math.unit(2.27, "km"),
  30983. default: true
  30984. },
  30985. ]
  30986. ))
  30987. characterMakers.push(() => makeCharacter(
  30988. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30989. {
  30990. front: {
  30991. height: math.unit(179, "cm"),
  30992. weight: math.unit(100, "kg"),
  30993. name: "Front",
  30994. image: {
  30995. source: "./media/characters/raunehkeli/front.svg",
  30996. extra: 1934 / 1926,
  30997. bottom: 0 / 1934
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Normal",
  31004. height: math.unit(179, "cm")
  31005. },
  31006. {
  31007. name: "Maximum",
  31008. height: math.unit(575, "meters"),
  31009. default: true
  31010. },
  31011. ]
  31012. ))
  31013. characterMakers.push(() => makeCharacter(
  31014. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31015. {
  31016. front: {
  31017. height: math.unit(6, "feet"),
  31018. weight: math.unit(150, "lb"),
  31019. name: "Front",
  31020. image: {
  31021. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31022. extra: 2625 / 2518,
  31023. bottom: 60 / 2685
  31024. }
  31025. },
  31026. },
  31027. [
  31028. {
  31029. name: "Normal",
  31030. height: math.unit(6 + 2 / 12, "feet")
  31031. },
  31032. {
  31033. name: "Macro",
  31034. height: math.unit(1180, "feet"),
  31035. default: true
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(5 + 6 / 12, "feet"),
  31044. weight: math.unit(108, "lb"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/lilith-zott/front.svg",
  31048. extra: 2510 / 2238,
  31049. bottom: 100 / 2610
  31050. }
  31051. },
  31052. frontDressed: {
  31053. height: math.unit(5 + 6 / 12, "feet"),
  31054. weight: math.unit(108, "lb"),
  31055. name: "Front (Dressed)",
  31056. image: {
  31057. source: "./media/characters/lilith-zott/front-dressed.svg",
  31058. extra: 2510 / 2238,
  31059. bottom: 100 / 2610
  31060. }
  31061. },
  31062. },
  31063. [
  31064. {
  31065. name: "Normal",
  31066. height: math.unit(5 + 6 / 12, "feet")
  31067. },
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(1030, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31077. {
  31078. front: {
  31079. height: math.unit(6, "feet"),
  31080. weight: math.unit(150, "lb"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31084. extra: 2567 / 2435,
  31085. bottom: 39 / 2606
  31086. }
  31087. },
  31088. frontSuper: {
  31089. height: math.unit(6, "feet"),
  31090. name: "Front (Super)",
  31091. image: {
  31092. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31093. extra: 2567 / 2435,
  31094. bottom: 39 / 2606
  31095. }
  31096. },
  31097. },
  31098. [
  31099. {
  31100. name: "Normal",
  31101. height: math.unit(5 + 10 / 12, "feet")
  31102. },
  31103. {
  31104. name: "Macro",
  31105. height: math.unit(1100, "feet"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31112. {
  31113. front: {
  31114. height: math.unit(100, "miles"),
  31115. name: "Front",
  31116. image: {
  31117. source: "./media/characters/sona/front.svg",
  31118. extra: 2433 / 2201,
  31119. bottom: 53 / 2486
  31120. }
  31121. },
  31122. foot: {
  31123. height: math.unit(16.1, "miles"),
  31124. name: "Foot",
  31125. image: {
  31126. source: "./media/characters/sona/foot.svg"
  31127. }
  31128. },
  31129. },
  31130. [
  31131. {
  31132. name: "Macro",
  31133. height: math.unit(100, "miles"),
  31134. default: true
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(6, "feet"),
  31143. weight: math.unit(150, "lb"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/bailey/front.svg",
  31147. extra: 1778 / 1724,
  31148. bottom: 30 / 1808
  31149. }
  31150. },
  31151. },
  31152. [
  31153. {
  31154. name: "Micro",
  31155. height: math.unit(4, "inches")
  31156. },
  31157. {
  31158. name: "Normal",
  31159. height: math.unit(5 + 5 / 12, "feet"),
  31160. default: true
  31161. },
  31162. {
  31163. name: "Macro",
  31164. height: math.unit(250, "feet")
  31165. },
  31166. {
  31167. name: "Megamacro",
  31168. height: math.unit(100, "miles")
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(5 + 2 / 12, "feet"),
  31177. weight: math.unit(120, "lb"),
  31178. name: "Front",
  31179. image: {
  31180. source: "./media/characters/snaps/front.svg",
  31181. extra: 2370 / 2177,
  31182. bottom: 48 / 2418
  31183. }
  31184. },
  31185. back: {
  31186. height: math.unit(5 + 2 / 12, "feet"),
  31187. weight: math.unit(120, "lb"),
  31188. name: "Back",
  31189. image: {
  31190. source: "./media/characters/snaps/back.svg",
  31191. extra: 2408 / 2258,
  31192. bottom: 15 / 2423
  31193. }
  31194. },
  31195. },
  31196. [
  31197. {
  31198. name: "Micro",
  31199. height: math.unit(9, "inches")
  31200. },
  31201. {
  31202. name: "Normal",
  31203. height: math.unit(5 + 2 / 12, "feet"),
  31204. default: true
  31205. },
  31206. {
  31207. name: "Mini Macro",
  31208. height: math.unit(10, "feet")
  31209. },
  31210. ]
  31211. ))
  31212. characterMakers.push(() => makeCharacter(
  31213. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31214. {
  31215. front: {
  31216. height: math.unit(1.8, "meters"),
  31217. weight: math.unit(85, "kg"),
  31218. name: "Front",
  31219. image: {
  31220. source: "./media/characters/azteck/front.svg",
  31221. extra: 2815 / 2625,
  31222. bottom: 89 / 2904
  31223. }
  31224. },
  31225. back: {
  31226. height: math.unit(1.8, "meters"),
  31227. weight: math.unit(85, "kg"),
  31228. name: "Back",
  31229. image: {
  31230. source: "./media/characters/azteck/back.svg",
  31231. extra: 2856 / 2648,
  31232. bottom: 85 / 2941
  31233. }
  31234. },
  31235. frontDressed: {
  31236. height: math.unit(1.8, "meters"),
  31237. weight: math.unit(85, "kg"),
  31238. name: "Front (Dressed)",
  31239. image: {
  31240. source: "./media/characters/azteck/front-dressed.svg",
  31241. extra: 2147 / 2003,
  31242. bottom: 68 / 2215
  31243. }
  31244. },
  31245. head: {
  31246. height: math.unit(0.47, "meters"),
  31247. weight: math.unit(85, "kg"),
  31248. name: "Head",
  31249. image: {
  31250. source: "./media/characters/azteck/head.svg"
  31251. }
  31252. },
  31253. },
  31254. [
  31255. {
  31256. name: "Bite sized",
  31257. height: math.unit(16, "cm")
  31258. },
  31259. {
  31260. name: "Normal",
  31261. height: math.unit(1.8, "meters"),
  31262. default: true
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(6, "feet"),
  31271. weight: math.unit(150, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/pidge/front.svg",
  31275. extra: 1936/1820,
  31276. bottom: 0/1936
  31277. }
  31278. },
  31279. back: {
  31280. height: math.unit(6, "feet"),
  31281. weight: math.unit(150, "lb"),
  31282. name: "Back",
  31283. image: {
  31284. source: "./media/characters/pidge/back.svg",
  31285. extra: 1938/1843,
  31286. bottom: 0/1938
  31287. }
  31288. },
  31289. casual: {
  31290. height: math.unit(6, "feet"),
  31291. weight: math.unit(150, "lb"),
  31292. name: "Casual",
  31293. image: {
  31294. source: "./media/characters/pidge/casual.svg",
  31295. extra: 1936/1820,
  31296. bottom: 0/1936
  31297. }
  31298. },
  31299. tech: {
  31300. height: math.unit(6, "feet"),
  31301. weight: math.unit(150, "lb"),
  31302. name: "Tech",
  31303. image: {
  31304. source: "./media/characters/pidge/tech.svg",
  31305. extra: 1802/1682,
  31306. bottom: 0/1802
  31307. }
  31308. },
  31309. head: {
  31310. height: math.unit(1.61, "feet"),
  31311. name: "Head",
  31312. image: {
  31313. source: "./media/characters/pidge/head.svg"
  31314. }
  31315. },
  31316. collar: {
  31317. height: math.unit(0.82, "feet"),
  31318. name: "Collar",
  31319. image: {
  31320. source: "./media/characters/pidge/collar.svg"
  31321. }
  31322. },
  31323. },
  31324. [
  31325. {
  31326. name: "Macro",
  31327. height: math.unit(2, "mile"),
  31328. default: true
  31329. },
  31330. {
  31331. name: "PUPPY",
  31332. height: math.unit(20, "miles")
  31333. },
  31334. ]
  31335. ))
  31336. characterMakers.push(() => makeCharacter(
  31337. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31338. {
  31339. front: {
  31340. height: math.unit(6, "feet"),
  31341. weight: math.unit(150, "lb"),
  31342. name: "Front",
  31343. image: {
  31344. source: "./media/characters/en/front.svg",
  31345. extra: 1697 / 1563,
  31346. bottom: 103 / 1800
  31347. }
  31348. },
  31349. back: {
  31350. height: math.unit(6, "feet"),
  31351. weight: math.unit(150, "lb"),
  31352. name: "Back",
  31353. image: {
  31354. source: "./media/characters/en/back.svg",
  31355. extra: 1700 / 1570,
  31356. bottom: 51 / 1751
  31357. }
  31358. },
  31359. frontDressed: {
  31360. height: math.unit(6, "feet"),
  31361. weight: math.unit(150, "lb"),
  31362. name: "Front (Dressed)",
  31363. image: {
  31364. source: "./media/characters/en/front-dressed.svg",
  31365. extra: 1697 / 1563,
  31366. bottom: 103 / 1800
  31367. }
  31368. },
  31369. backDressed: {
  31370. height: math.unit(6, "feet"),
  31371. weight: math.unit(150, "lb"),
  31372. name: "Back (Dressed)",
  31373. image: {
  31374. source: "./media/characters/en/back-dressed.svg",
  31375. extra: 1700 / 1570,
  31376. bottom: 51 / 1751
  31377. }
  31378. },
  31379. },
  31380. [
  31381. {
  31382. name: "Macro",
  31383. height: math.unit(210, "feet"),
  31384. default: true
  31385. },
  31386. ]
  31387. ))
  31388. characterMakers.push(() => makeCharacter(
  31389. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31390. {
  31391. front: {
  31392. height: math.unit(6, "feet"),
  31393. weight: math.unit(150, "lb"),
  31394. name: "Front",
  31395. image: {
  31396. source: "./media/characters/haze-orris/front.svg",
  31397. extra: 3975 / 3525,
  31398. bottom: 137 / 4112
  31399. }
  31400. },
  31401. },
  31402. [
  31403. {
  31404. name: "Micro",
  31405. height: math.unit(150, "mm"),
  31406. default: true
  31407. },
  31408. ]
  31409. ))
  31410. characterMakers.push(() => makeCharacter(
  31411. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31412. {
  31413. front: {
  31414. height: math.unit(6, "feet"),
  31415. weight: math.unit(150, "lb"),
  31416. name: "Front",
  31417. image: {
  31418. source: "./media/characters/casselene-yaro/front.svg",
  31419. extra: 4721 / 4541,
  31420. bottom: 82 / 4803
  31421. }
  31422. },
  31423. back: {
  31424. height: math.unit(6, "feet"),
  31425. weight: math.unit(150, "lb"),
  31426. name: "Back",
  31427. image: {
  31428. source: "./media/characters/casselene-yaro/back.svg",
  31429. extra: 4569 / 4377,
  31430. bottom: 69 / 4638
  31431. }
  31432. },
  31433. dressed: {
  31434. height: math.unit(6, "feet"),
  31435. weight: math.unit(150, "lb"),
  31436. name: "Dressed",
  31437. image: {
  31438. source: "./media/characters/casselene-yaro/dressed.svg",
  31439. extra: 4721 / 4541,
  31440. bottom: 82 / 4803
  31441. }
  31442. },
  31443. maw: {
  31444. height: math.unit(1, "feet"),
  31445. name: "Maw",
  31446. image: {
  31447. source: "./media/characters/casselene-yaro/maw.svg"
  31448. }
  31449. },
  31450. },
  31451. [
  31452. {
  31453. name: "Macro",
  31454. height: math.unit(190, "feet"),
  31455. default: true
  31456. },
  31457. ]
  31458. ))
  31459. characterMakers.push(() => makeCharacter(
  31460. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31461. {
  31462. front: {
  31463. height: math.unit(10, "feet"),
  31464. weight: math.unit(15015, "lb"),
  31465. name: "Front",
  31466. image: {
  31467. source: "./media/characters/platine/front.svg",
  31468. extra: 1741/1650,
  31469. bottom: 84/1825
  31470. }
  31471. },
  31472. side: {
  31473. height: math.unit(10, "feet"),
  31474. weight: math.unit(15015, "lb"),
  31475. name: "Side",
  31476. image: {
  31477. source: "./media/characters/platine/side.svg",
  31478. extra: 1790/1705,
  31479. bottom: 29/1819
  31480. }
  31481. },
  31482. },
  31483. [
  31484. {
  31485. name: "Normal",
  31486. height: math.unit(10, "feet"),
  31487. default: true
  31488. },
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(100, "feet")
  31492. },
  31493. {
  31494. name: "Megamacro",
  31495. height: math.unit(1000, "feet")
  31496. },
  31497. ]
  31498. ))
  31499. characterMakers.push(() => makeCharacter(
  31500. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31501. {
  31502. front: {
  31503. height: math.unit(15 + 5 / 12, "feet"),
  31504. weight: math.unit(4600, "lb"),
  31505. name: "Front",
  31506. image: {
  31507. source: "./media/characters/neapolitan-ananassa/front.svg",
  31508. extra: 2903 / 2736,
  31509. bottom: 0 / 2903
  31510. }
  31511. },
  31512. side: {
  31513. height: math.unit(15 + 5 / 12, "feet"),
  31514. weight: math.unit(4600, "lb"),
  31515. name: "Side",
  31516. image: {
  31517. source: "./media/characters/neapolitan-ananassa/side.svg",
  31518. extra: 2925 / 2719,
  31519. bottom: 0 / 2925
  31520. }
  31521. },
  31522. back: {
  31523. height: math.unit(15 + 5 / 12, "feet"),
  31524. weight: math.unit(4600, "lb"),
  31525. name: "Back",
  31526. image: {
  31527. source: "./media/characters/neapolitan-ananassa/back.svg",
  31528. extra: 2903 / 2736,
  31529. bottom: 0 / 2903
  31530. }
  31531. },
  31532. },
  31533. [
  31534. {
  31535. name: "Normal",
  31536. height: math.unit(15 + 5 / 12, "feet"),
  31537. default: true
  31538. },
  31539. {
  31540. name: "Post-Millenium",
  31541. height: math.unit(35 + 5 / 12, "feet")
  31542. },
  31543. {
  31544. name: "Post-Era",
  31545. height: math.unit(450 + 5 / 12, "feet")
  31546. },
  31547. ]
  31548. ))
  31549. characterMakers.push(() => makeCharacter(
  31550. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31551. {
  31552. front: {
  31553. height: math.unit(300, "meters"),
  31554. weight: math.unit(125000, "tonnes"),
  31555. name: "Front",
  31556. image: {
  31557. source: "./media/characters/pazuzu/front.svg",
  31558. extra: 877 / 794,
  31559. bottom: 47 / 924
  31560. }
  31561. },
  31562. },
  31563. [
  31564. {
  31565. name: "Macro",
  31566. height: math.unit(300, "meters"),
  31567. default: true
  31568. },
  31569. ]
  31570. ))
  31571. characterMakers.push(() => makeCharacter(
  31572. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31573. {
  31574. side: {
  31575. height: math.unit(10 + 7 / 12, "feet"),
  31576. weight: math.unit(2.5, "tons"),
  31577. name: "Side",
  31578. image: {
  31579. source: "./media/characters/aasha/side.svg",
  31580. extra: 1345 / 1245,
  31581. bottom: 111 / 1456
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(10 + 7 / 12, "feet"),
  31586. weight: math.unit(2.5, "tons"),
  31587. name: "Back",
  31588. image: {
  31589. source: "./media/characters/aasha/back.svg",
  31590. extra: 1133 / 1057,
  31591. bottom: 257 / 1390
  31592. }
  31593. },
  31594. },
  31595. [
  31596. {
  31597. name: "Normal",
  31598. height: math.unit(10 + 7 / 12, "feet"),
  31599. default: true
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  31605. {
  31606. front: {
  31607. height: math.unit(6 + 3 / 12, "feet"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/nevan/front.svg",
  31611. extra: 704 / 704,
  31612. bottom: 28 / 732
  31613. }
  31614. },
  31615. back: {
  31616. height: math.unit(6 + 3 / 12, "feet"),
  31617. name: "Back",
  31618. image: {
  31619. source: "./media/characters/nevan/back.svg",
  31620. extra: 714 / 714,
  31621. bottom: 21 / 735
  31622. }
  31623. },
  31624. frontFlaccid: {
  31625. height: math.unit(6 + 3 / 12, "feet"),
  31626. name: "Front (Flaccid)",
  31627. image: {
  31628. source: "./media/characters/nevan/front-flaccid.svg",
  31629. extra: 704 / 704,
  31630. bottom: 28 / 732
  31631. }
  31632. },
  31633. frontErect: {
  31634. height: math.unit(6 + 3 / 12, "feet"),
  31635. name: "Front (Erect)",
  31636. image: {
  31637. source: "./media/characters/nevan/front-erect.svg",
  31638. extra: 704 / 704,
  31639. bottom: 28 / 732
  31640. }
  31641. },
  31642. backFlaccid: {
  31643. height: math.unit(6 + 3 / 12, "feet"),
  31644. name: "Back (Flaccid)",
  31645. image: {
  31646. source: "./media/characters/nevan/back-flaccid.svg",
  31647. extra: 714 / 714,
  31648. bottom: 21 / 735
  31649. }
  31650. },
  31651. },
  31652. [
  31653. {
  31654. name: "Normal",
  31655. height: math.unit(6 + 3 / 12, "feet"),
  31656. default: true
  31657. },
  31658. ]
  31659. ))
  31660. characterMakers.push(() => makeCharacter(
  31661. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31662. {
  31663. front: {
  31664. height: math.unit(4, "feet"),
  31665. name: "Front",
  31666. image: {
  31667. source: "./media/characters/arhan/front.svg",
  31668. extra: 3368 / 3133,
  31669. bottom: 0 / 3368
  31670. }
  31671. },
  31672. side: {
  31673. height: math.unit(4, "feet"),
  31674. name: "Side",
  31675. image: {
  31676. source: "./media/characters/arhan/side.svg",
  31677. extra: 3347 / 3105,
  31678. bottom: 0 / 3347
  31679. }
  31680. },
  31681. tongue: {
  31682. height: math.unit(1.42, "feet"),
  31683. name: "Tongue",
  31684. image: {
  31685. source: "./media/characters/arhan/tongue.svg"
  31686. }
  31687. },
  31688. head: {
  31689. height: math.unit(0.85, "feet"),
  31690. name: "Head",
  31691. image: {
  31692. source: "./media/characters/arhan/head.svg"
  31693. }
  31694. },
  31695. },
  31696. [
  31697. {
  31698. name: "Normal",
  31699. height: math.unit(4, "feet"),
  31700. default: true
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31706. {
  31707. front: {
  31708. height: math.unit(5 + 7.5 / 12, "feet"),
  31709. weight: math.unit(120, "lb"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/digi-duncan/front.svg",
  31713. extra: 330 / 326,
  31714. bottom: 16 / 346
  31715. }
  31716. },
  31717. side: {
  31718. height: math.unit(5 + 7.5 / 12, "feet"),
  31719. weight: math.unit(120, "lb"),
  31720. name: "Side",
  31721. image: {
  31722. source: "./media/characters/digi-duncan/side.svg",
  31723. extra: 341 / 337,
  31724. bottom: 1 / 342
  31725. }
  31726. },
  31727. back: {
  31728. height: math.unit(5 + 7.5 / 12, "feet"),
  31729. weight: math.unit(120, "lb"),
  31730. name: "Back",
  31731. image: {
  31732. source: "./media/characters/digi-duncan/back.svg",
  31733. extra: 330 / 326,
  31734. bottom: 12 / 342
  31735. }
  31736. },
  31737. },
  31738. [
  31739. {
  31740. name: "Speck",
  31741. height: math.unit(0.25, "mm")
  31742. },
  31743. {
  31744. name: "Micro",
  31745. height: math.unit(5, "mm")
  31746. },
  31747. {
  31748. name: "Tiny",
  31749. height: math.unit(0.5, "inches"),
  31750. default: true
  31751. },
  31752. {
  31753. name: "Human",
  31754. height: math.unit(5 + 7.5 / 12, "feet")
  31755. },
  31756. {
  31757. name: "Minigiant",
  31758. height: math.unit(8 + 5.25, "feet")
  31759. },
  31760. {
  31761. name: "Giant",
  31762. height: math.unit(2000, "feet")
  31763. },
  31764. {
  31765. name: "Mega",
  31766. height: math.unit(371.1, "miles")
  31767. },
  31768. ]
  31769. ))
  31770. characterMakers.push(() => makeCharacter(
  31771. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31772. {
  31773. front: {
  31774. height: math.unit(2, "meters"),
  31775. weight: math.unit(350, "kg"),
  31776. name: "Front",
  31777. image: {
  31778. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31779. extra: 898 / 838,
  31780. bottom: 9 / 907
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Micro",
  31787. height: math.unit(8, "meters")
  31788. },
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(50, "meters"),
  31792. default: true
  31793. },
  31794. {
  31795. name: "Macro",
  31796. height: math.unit(500, "meters")
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(6 + 6 / 12, "feet"),
  31805. name: "Front",
  31806. image: {
  31807. source: "./media/characters/khardesh/front.svg",
  31808. extra: 1788/1596,
  31809. bottom: 66/1854
  31810. }
  31811. },
  31812. back: {
  31813. height: math.unit(6 + 6 / 12, "feet"),
  31814. name: "Back",
  31815. image: {
  31816. source: "./media/characters/khardesh/back.svg",
  31817. extra: 1781/1584,
  31818. bottom: 68/1849
  31819. }
  31820. },
  31821. },
  31822. [
  31823. {
  31824. name: "Normal",
  31825. height: math.unit(6 + 6 / 12, "feet"),
  31826. default: true
  31827. },
  31828. {
  31829. name: "Normal+",
  31830. height: math.unit(4, "meters")
  31831. },
  31832. {
  31833. name: "Macro",
  31834. height: math.unit(50, "meters")
  31835. },
  31836. {
  31837. name: "Macro+",
  31838. height: math.unit(100, "meters")
  31839. },
  31840. {
  31841. name: "Megamacro",
  31842. height: math.unit(20, "km")
  31843. },
  31844. ]
  31845. ))
  31846. characterMakers.push(() => makeCharacter(
  31847. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31848. {
  31849. front: {
  31850. height: math.unit(6, "feet"),
  31851. weight: math.unit(150, "lb"),
  31852. name: "Front",
  31853. image: {
  31854. source: "./media/characters/kosho/front.svg",
  31855. extra: 1847 / 1847,
  31856. bottom: 86 / 1933
  31857. }
  31858. },
  31859. },
  31860. [
  31861. {
  31862. name: "Second-stage micro",
  31863. height: math.unit(0.5, "inches")
  31864. },
  31865. {
  31866. name: "First-stage micro",
  31867. height: math.unit(6, "inches")
  31868. },
  31869. {
  31870. name: "Normal",
  31871. height: math.unit(6, "feet"),
  31872. default: true
  31873. },
  31874. {
  31875. name: "First-stage macro",
  31876. height: math.unit(72, "feet")
  31877. },
  31878. {
  31879. name: "Second-stage macro",
  31880. height: math.unit(864, "feet")
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31886. {
  31887. normal: {
  31888. height: math.unit(4 + 6 / 12, "feet"),
  31889. name: "Normal",
  31890. image: {
  31891. source: "./media/characters/hydra/normal.svg",
  31892. extra: 2833 / 2634,
  31893. bottom: 68 / 2901
  31894. }
  31895. },
  31896. smol: {
  31897. height: math.unit(0.705, "inches"),
  31898. name: "Smol",
  31899. image: {
  31900. source: "./media/characters/hydra/smol.svg",
  31901. extra: 2715 / 2540,
  31902. bottom: 0 / 2715
  31903. }
  31904. },
  31905. },
  31906. [
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(4 + 6 / 12, "feet"),
  31910. default: true
  31911. }
  31912. ]
  31913. ))
  31914. characterMakers.push(() => makeCharacter(
  31915. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31916. {
  31917. front: {
  31918. height: math.unit(0.6, "cm"),
  31919. name: "Front",
  31920. image: {
  31921. source: "./media/characters/daz/front.svg",
  31922. extra: 1682 / 1164,
  31923. bottom: 42 / 1724
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(0.6, "cm"),
  31931. default: true
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31937. {
  31938. front: {
  31939. height: math.unit(6, "feet"),
  31940. weight: math.unit(235, "lb"),
  31941. name: "Front",
  31942. image: {
  31943. source: "./media/characters/theo-pangolin/front.svg",
  31944. extra: 1996 / 1969,
  31945. bottom: 115 / 2111
  31946. }
  31947. },
  31948. back: {
  31949. height: math.unit(6, "feet"),
  31950. weight: math.unit(235, "lb"),
  31951. name: "Back",
  31952. image: {
  31953. source: "./media/characters/theo-pangolin/back.svg",
  31954. extra: 1979 / 1979,
  31955. bottom: 40 / 2019
  31956. }
  31957. },
  31958. feral: {
  31959. height: math.unit(2, "feet"),
  31960. weight: math.unit(30, "lb"),
  31961. name: "Feral",
  31962. image: {
  31963. source: "./media/characters/theo-pangolin/feral.svg",
  31964. extra: 803 / 791,
  31965. bottom: 181 / 984
  31966. }
  31967. },
  31968. footFive: {
  31969. height: math.unit(1.43, "feet"),
  31970. name: "Foot (Five Toes)",
  31971. image: {
  31972. source: "./media/characters/theo-pangolin/foot-five.svg"
  31973. }
  31974. },
  31975. footFour: {
  31976. height: math.unit(1.43, "feet"),
  31977. name: "Foot (Four Toes)",
  31978. image: {
  31979. source: "./media/characters/theo-pangolin/foot-four.svg"
  31980. }
  31981. },
  31982. handFour: {
  31983. height: math.unit(0.81, "feet"),
  31984. name: "Hand (Four Fingers)",
  31985. image: {
  31986. source: "./media/characters/theo-pangolin/hand-four.svg"
  31987. }
  31988. },
  31989. handThree: {
  31990. height: math.unit(0.81, "feet"),
  31991. name: "Hand (Three Fingers)",
  31992. image: {
  31993. source: "./media/characters/theo-pangolin/hand-three.svg"
  31994. }
  31995. },
  31996. headFront: {
  31997. height: math.unit(1.37, "feet"),
  31998. name: "Head (Front)",
  31999. image: {
  32000. source: "./media/characters/theo-pangolin/head-front.svg"
  32001. }
  32002. },
  32003. headSide: {
  32004. height: math.unit(1.43, "feet"),
  32005. name: "Head (Side)",
  32006. image: {
  32007. source: "./media/characters/theo-pangolin/head-side.svg"
  32008. }
  32009. },
  32010. tongue: {
  32011. height: math.unit(2.29, "feet"),
  32012. name: "Tongue",
  32013. image: {
  32014. source: "./media/characters/theo-pangolin/tongue.svg"
  32015. }
  32016. },
  32017. },
  32018. [
  32019. {
  32020. name: "Normal",
  32021. height: math.unit(6, "feet")
  32022. },
  32023. {
  32024. name: "Macro",
  32025. height: math.unit(400, "feet"),
  32026. default: true
  32027. },
  32028. ]
  32029. ))
  32030. characterMakers.push(() => makeCharacter(
  32031. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32032. {
  32033. front: {
  32034. height: math.unit(6, "inches"),
  32035. weight: math.unit(0.036, "kg"),
  32036. name: "Front",
  32037. image: {
  32038. source: "./media/characters/renée/front.svg",
  32039. extra: 900 / 886,
  32040. bottom: 8 / 908
  32041. }
  32042. },
  32043. },
  32044. [
  32045. {
  32046. name: "Nano",
  32047. height: math.unit(1, "nm")
  32048. },
  32049. {
  32050. name: "Micro",
  32051. height: math.unit(1, "mm")
  32052. },
  32053. {
  32054. name: "Normal",
  32055. height: math.unit(6, "inches")
  32056. },
  32057. {
  32058. name: "Macro",
  32059. height: math.unit(2000, "feet"),
  32060. default: true
  32061. },
  32062. {
  32063. name: "Megamacro",
  32064. height: math.unit(2, "km")
  32065. },
  32066. {
  32067. name: "Gigamacro",
  32068. height: math.unit(2000, "km")
  32069. },
  32070. {
  32071. name: "Teramacro",
  32072. height: math.unit(250000, "km")
  32073. },
  32074. ]
  32075. ))
  32076. characterMakers.push(() => makeCharacter(
  32077. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32078. {
  32079. front: {
  32080. height: math.unit(4, "meters"),
  32081. weight: math.unit(150, "kg"),
  32082. name: "Front",
  32083. image: {
  32084. source: "./media/characters/caledvwlch/front.svg",
  32085. extra: 1757/1537,
  32086. bottom: 31/1788
  32087. }
  32088. },
  32089. side: {
  32090. height: math.unit(4, "meters"),
  32091. weight: math.unit(150, "kg"),
  32092. name: "Side",
  32093. image: {
  32094. source: "./media/characters/caledvwlch/side.svg",
  32095. extra: 1605 / 1536,
  32096. bottom: 31 / 1636
  32097. }
  32098. },
  32099. back: {
  32100. height: math.unit(4, "meters"),
  32101. weight: math.unit(150, "kg"),
  32102. name: "Back",
  32103. image: {
  32104. source: "./media/characters/caledvwlch/back.svg",
  32105. extra: 1635 / 1565,
  32106. bottom: 27 / 1662
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "\"Incognito\"",
  32113. height: math.unit(4, "meters")
  32114. },
  32115. {
  32116. name: "Small rampage",
  32117. height: math.unit(600, "meters")
  32118. },
  32119. {
  32120. name: "Mega",
  32121. height: math.unit(30, "km")
  32122. },
  32123. {
  32124. name: "Home-size",
  32125. height: math.unit(50, "km"),
  32126. default: true
  32127. },
  32128. {
  32129. name: "Giga",
  32130. height: math.unit(300, "km")
  32131. },
  32132. {
  32133. name: "Lounging",
  32134. height: math.unit(11000, "km")
  32135. },
  32136. {
  32137. name: "Planet snacking",
  32138. height: math.unit(2000000, "km")
  32139. },
  32140. ]
  32141. ))
  32142. characterMakers.push(() => makeCharacter(
  32143. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32144. {
  32145. front: {
  32146. height: math.unit(6, "feet"),
  32147. weight: math.unit(215, "lb"),
  32148. name: "Front",
  32149. image: {
  32150. source: "./media/characters/sapphire-svell/front.svg",
  32151. extra: 495 / 455,
  32152. bottom: 20 / 515
  32153. }
  32154. },
  32155. back: {
  32156. height: math.unit(6, "feet"),
  32157. weight: math.unit(216, "lb"),
  32158. name: "Back",
  32159. image: {
  32160. source: "./media/characters/sapphire-svell/back.svg",
  32161. extra: 497 / 477,
  32162. bottom: 7 / 504
  32163. }
  32164. },
  32165. maw: {
  32166. height: math.unit(1.57, "feet"),
  32167. name: "Maw",
  32168. image: {
  32169. source: "./media/characters/sapphire-svell/maw.svg"
  32170. }
  32171. },
  32172. foot: {
  32173. height: math.unit(1.07, "feet"),
  32174. name: "Foot",
  32175. image: {
  32176. source: "./media/characters/sapphire-svell/foot.svg"
  32177. }
  32178. },
  32179. toering: {
  32180. height: math.unit(1.7, "inch"),
  32181. name: "Toering",
  32182. image: {
  32183. source: "./media/characters/sapphire-svell/toering.svg"
  32184. }
  32185. },
  32186. },
  32187. [
  32188. {
  32189. name: "Normal",
  32190. height: math.unit(300, "feet"),
  32191. default: true
  32192. },
  32193. {
  32194. name: "Augmented",
  32195. height: math.unit(1250, "feet")
  32196. },
  32197. {
  32198. name: "Unleashed",
  32199. height: math.unit(3000, "feet")
  32200. },
  32201. ]
  32202. ))
  32203. characterMakers.push(() => makeCharacter(
  32204. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32205. {
  32206. side: {
  32207. height: math.unit(2 + 3 / 12, "feet"),
  32208. weight: math.unit(110, "lb"),
  32209. name: "Side",
  32210. image: {
  32211. source: "./media/characters/glitch-flux/side.svg",
  32212. extra: 997 / 805,
  32213. bottom: 20 / 1017
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(2 + 3 / 12, "feet"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(4, "meters"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/mid/front.svg",
  32233. extra: 507 / 476,
  32234. bottom: 17 / 524
  32235. }
  32236. },
  32237. back: {
  32238. height: math.unit(4, "meters"),
  32239. name: "Back",
  32240. image: {
  32241. source: "./media/characters/mid/back.svg",
  32242. extra: 519 / 487,
  32243. bottom: 7 / 526
  32244. }
  32245. },
  32246. stuck: {
  32247. height: math.unit(2.2, "meters"),
  32248. name: "Stuck",
  32249. image: {
  32250. source: "./media/characters/mid/stuck.svg",
  32251. extra: 1951 / 1869,
  32252. bottom: 88 / 2039
  32253. }
  32254. }
  32255. },
  32256. [
  32257. {
  32258. name: "Normal",
  32259. height: math.unit(4, "meters"),
  32260. default: true
  32261. },
  32262. {
  32263. name: "Big",
  32264. height: math.unit(10, "meters")
  32265. },
  32266. {
  32267. name: "Macro",
  32268. height: math.unit(800, "meters")
  32269. },
  32270. {
  32271. name: "Megamacro",
  32272. height: math.unit(100, "km")
  32273. },
  32274. {
  32275. name: "Overgrown",
  32276. height: math.unit(1, "parsec")
  32277. },
  32278. ]
  32279. ))
  32280. characterMakers.push(() => makeCharacter(
  32281. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32282. {
  32283. front: {
  32284. height: math.unit(2.5, "meters"),
  32285. weight: math.unit(225, "kg"),
  32286. name: "Front",
  32287. image: {
  32288. source: "./media/characters/iris/front.svg",
  32289. extra: 3348 / 3251,
  32290. bottom: 205 / 3553
  32291. }
  32292. },
  32293. maw: {
  32294. height: math.unit(0.56, "meter"),
  32295. name: "Maw",
  32296. image: {
  32297. source: "./media/characters/iris/maw.svg"
  32298. }
  32299. },
  32300. },
  32301. [
  32302. {
  32303. name: "Mewter cat",
  32304. height: math.unit(1.2, "meters")
  32305. },
  32306. {
  32307. name: "Normal",
  32308. height: math.unit(2.5, "meters"),
  32309. default: true
  32310. },
  32311. {
  32312. name: "Minimacro",
  32313. height: math.unit(18, "feet")
  32314. },
  32315. {
  32316. name: "Macro",
  32317. height: math.unit(140, "feet")
  32318. },
  32319. {
  32320. name: "Macro+",
  32321. height: math.unit(180, "meters")
  32322. },
  32323. {
  32324. name: "Megamacro",
  32325. height: math.unit(2746, "meters")
  32326. },
  32327. ]
  32328. ))
  32329. characterMakers.push(() => makeCharacter(
  32330. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32331. {
  32332. front: {
  32333. height: math.unit(6, "feet"),
  32334. weight: math.unit(135, "lb"),
  32335. name: "Front",
  32336. image: {
  32337. source: "./media/characters/axel/front.svg",
  32338. extra: 908 / 908,
  32339. bottom: 58 / 966
  32340. }
  32341. },
  32342. side: {
  32343. height: math.unit(6, "feet"),
  32344. weight: math.unit(135, "lb"),
  32345. name: "Side",
  32346. image: {
  32347. source: "./media/characters/axel/side.svg",
  32348. extra: 958 / 958,
  32349. bottom: 11 / 969
  32350. }
  32351. },
  32352. back: {
  32353. height: math.unit(6, "feet"),
  32354. weight: math.unit(135, "lb"),
  32355. name: "Back",
  32356. image: {
  32357. source: "./media/characters/axel/back.svg",
  32358. extra: 887 / 887,
  32359. bottom: 34 / 921
  32360. }
  32361. },
  32362. head: {
  32363. height: math.unit(1.07, "feet"),
  32364. name: "Head",
  32365. image: {
  32366. source: "./media/characters/axel/head.svg"
  32367. }
  32368. },
  32369. beak: {
  32370. height: math.unit(1.4, "feet"),
  32371. name: "Beak",
  32372. image: {
  32373. source: "./media/characters/axel/beak.svg"
  32374. }
  32375. },
  32376. beakSide: {
  32377. height: math.unit(1.4, "feet"),
  32378. name: "Beak Side",
  32379. image: {
  32380. source: "./media/characters/axel/beak-side.svg"
  32381. }
  32382. },
  32383. sheath: {
  32384. height: math.unit(0.5, "feet"),
  32385. name: "Sheath",
  32386. image: {
  32387. source: "./media/characters/axel/sheath.svg"
  32388. }
  32389. },
  32390. dick: {
  32391. height: math.unit(0.98, "feet"),
  32392. name: "Dick",
  32393. image: {
  32394. source: "./media/characters/axel/dick.svg"
  32395. }
  32396. },
  32397. },
  32398. [
  32399. {
  32400. name: "Macro",
  32401. height: math.unit(68, "meters"),
  32402. default: true
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(3.5, "meters"),
  32411. weight: math.unit(1200, "kg"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/joanna/front.svg",
  32415. extra: 1596 / 1488,
  32416. bottom: 29 / 1625
  32417. }
  32418. },
  32419. back: {
  32420. height: math.unit(3.5, "meters"),
  32421. weight: math.unit(1200, "kg"),
  32422. name: "Back",
  32423. image: {
  32424. source: "./media/characters/joanna/back.svg",
  32425. extra: 1594 / 1495,
  32426. bottom: 26 / 1620
  32427. }
  32428. },
  32429. frontShorts: {
  32430. height: math.unit(3.5, "meters"),
  32431. weight: math.unit(1200, "kg"),
  32432. name: "Front (Shorts)",
  32433. image: {
  32434. source: "./media/characters/joanna/front-shorts.svg",
  32435. extra: 1596 / 1488,
  32436. bottom: 29 / 1625
  32437. }
  32438. },
  32439. frontBiker: {
  32440. height: math.unit(3.5, "meters"),
  32441. weight: math.unit(1200, "kg"),
  32442. name: "Front (Biker)",
  32443. image: {
  32444. source: "./media/characters/joanna/front-biker.svg",
  32445. extra: 1596 / 1488,
  32446. bottom: 29 / 1625
  32447. }
  32448. },
  32449. backBiker: {
  32450. height: math.unit(3.5, "meters"),
  32451. weight: math.unit(1200, "kg"),
  32452. name: "Back (Biker)",
  32453. image: {
  32454. source: "./media/characters/joanna/back-biker.svg",
  32455. extra: 1594 / 1495,
  32456. bottom: 88 / 1682
  32457. }
  32458. },
  32459. bikeLeft: {
  32460. height: math.unit(2.4, "meters"),
  32461. weight: math.unit(1600, "kg"),
  32462. name: "Bike (Left)",
  32463. image: {
  32464. source: "./media/characters/joanna/bike-left.svg",
  32465. extra: 720 / 720,
  32466. bottom: 8 / 728
  32467. }
  32468. },
  32469. bikeRight: {
  32470. height: math.unit(2.4, "meters"),
  32471. weight: math.unit(1600, "kg"),
  32472. name: "Bike (Right)",
  32473. image: {
  32474. source: "./media/characters/joanna/bike-right.svg",
  32475. extra: 720 / 720,
  32476. bottom: 8 / 728
  32477. }
  32478. },
  32479. },
  32480. [
  32481. {
  32482. name: "Incognito",
  32483. height: math.unit(3.5, "meters")
  32484. },
  32485. {
  32486. name: "Casual Big",
  32487. height: math.unit(200, "meters")
  32488. },
  32489. {
  32490. name: "Macro",
  32491. height: math.unit(600, "meters")
  32492. },
  32493. {
  32494. name: "Original",
  32495. height: math.unit(20, "km"),
  32496. default: true
  32497. },
  32498. {
  32499. name: "Giga",
  32500. height: math.unit(400, "km")
  32501. },
  32502. {
  32503. name: "Lounging",
  32504. height: math.unit(1500, "km")
  32505. },
  32506. {
  32507. name: "Planetary",
  32508. height: math.unit(200000, "km")
  32509. },
  32510. ]
  32511. ))
  32512. characterMakers.push(() => makeCharacter(
  32513. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32514. {
  32515. front: {
  32516. height: math.unit(6, "feet"),
  32517. weight: math.unit(150, "lb"),
  32518. name: "Front",
  32519. image: {
  32520. source: "./media/characters/hugo-sigil/front.svg",
  32521. extra: 522 / 500,
  32522. bottom: 2 / 524
  32523. }
  32524. },
  32525. back: {
  32526. height: math.unit(6, "feet"),
  32527. weight: math.unit(150, "lb"),
  32528. name: "Back",
  32529. image: {
  32530. source: "./media/characters/hugo-sigil/back.svg",
  32531. extra: 519 / 495,
  32532. bottom: 5 / 524
  32533. }
  32534. },
  32535. maw: {
  32536. height: math.unit(1.4, "feet"),
  32537. weight: math.unit(150, "lb"),
  32538. name: "Maw",
  32539. image: {
  32540. source: "./media/characters/hugo-sigil/maw.svg"
  32541. }
  32542. },
  32543. feet: {
  32544. height: math.unit(1.56, "feet"),
  32545. weight: math.unit(150, "lb"),
  32546. name: "Feet",
  32547. image: {
  32548. source: "./media/characters/hugo-sigil/feet.svg",
  32549. extra: 177 / 177,
  32550. bottom: 12 / 189
  32551. }
  32552. },
  32553. },
  32554. [
  32555. {
  32556. name: "Normal",
  32557. height: math.unit(6, "feet")
  32558. },
  32559. {
  32560. name: "Macro",
  32561. height: math.unit(200, "feet"),
  32562. default: true
  32563. },
  32564. ]
  32565. ))
  32566. characterMakers.push(() => makeCharacter(
  32567. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32568. {
  32569. front: {
  32570. height: math.unit(6, "feet"),
  32571. weight: math.unit(150, "lb"),
  32572. name: "Front",
  32573. image: {
  32574. source: "./media/characters/peri/front.svg",
  32575. extra: 2354 / 2233,
  32576. bottom: 49 / 2403
  32577. }
  32578. },
  32579. },
  32580. [
  32581. {
  32582. name: "Really Small",
  32583. height: math.unit(1, "nm")
  32584. },
  32585. {
  32586. name: "Micro",
  32587. height: math.unit(4, "inches")
  32588. },
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(7, "inches"),
  32592. default: true
  32593. },
  32594. {
  32595. name: "Macro",
  32596. height: math.unit(400, "feet")
  32597. },
  32598. {
  32599. name: "Megamacro",
  32600. height: math.unit(100, "miles")
  32601. },
  32602. ]
  32603. ))
  32604. characterMakers.push(() => makeCharacter(
  32605. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  32606. {
  32607. frontSlim: {
  32608. height: math.unit(7, "feet"),
  32609. name: "Front (Slim)",
  32610. image: {
  32611. source: "./media/characters/issilora/front-slim.svg",
  32612. extra: 529 / 449,
  32613. bottom: 53 / 582
  32614. }
  32615. },
  32616. sideSlim: {
  32617. height: math.unit(7, "feet"),
  32618. name: "Side (Slim)",
  32619. image: {
  32620. source: "./media/characters/issilora/side-slim.svg",
  32621. extra: 570 / 480,
  32622. bottom: 30 / 600
  32623. }
  32624. },
  32625. backSlim: {
  32626. height: math.unit(7, "feet"),
  32627. name: "Back (Slim)",
  32628. image: {
  32629. source: "./media/characters/issilora/back-slim.svg",
  32630. extra: 537 / 455,
  32631. bottom: 46 / 583
  32632. }
  32633. },
  32634. frontBuff: {
  32635. height: math.unit(7, "feet"),
  32636. name: "Front (Buff)",
  32637. image: {
  32638. source: "./media/characters/issilora/front-buff.svg",
  32639. extra: 2310 / 2035,
  32640. bottom: 335 / 2645
  32641. }
  32642. },
  32643. head: {
  32644. height: math.unit(1.94, "feet"),
  32645. name: "Head",
  32646. image: {
  32647. source: "./media/characters/issilora/head.svg"
  32648. }
  32649. },
  32650. },
  32651. [
  32652. {
  32653. name: "Minimum",
  32654. height: math.unit(7, "feet")
  32655. },
  32656. {
  32657. name: "Comfortable",
  32658. height: math.unit(17, "feet")
  32659. },
  32660. {
  32661. name: "Fun Size",
  32662. height: math.unit(47, "feet")
  32663. },
  32664. {
  32665. name: "Natural Macro",
  32666. height: math.unit(137, "feet"),
  32667. default: true
  32668. },
  32669. {
  32670. name: "Maximum Kaiju",
  32671. height: math.unit(397, "feet")
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32677. {
  32678. front: {
  32679. height: math.unit(50 + 9/12, "feet"),
  32680. weight: math.unit(32.8, "tons"),
  32681. name: "Front",
  32682. image: {
  32683. source: "./media/characters/irb'iiritaahn/front.svg",
  32684. extra: 1878/1826,
  32685. bottom: 326/2204
  32686. }
  32687. },
  32688. back: {
  32689. height: math.unit(50 + 9/12, "feet"),
  32690. weight: math.unit(32.8, "tons"),
  32691. name: "Back",
  32692. image: {
  32693. source: "./media/characters/irb'iiritaahn/back.svg",
  32694. extra: 2052/2018,
  32695. bottom: 152/2204
  32696. }
  32697. },
  32698. head: {
  32699. height: math.unit(12.86, "feet"),
  32700. name: "Head",
  32701. image: {
  32702. source: "./media/characters/irb'iiritaahn/head.svg"
  32703. }
  32704. },
  32705. maw: {
  32706. height: math.unit(9.66, "feet"),
  32707. name: "Maw",
  32708. image: {
  32709. source: "./media/characters/irb'iiritaahn/maw.svg"
  32710. }
  32711. },
  32712. frontDick: {
  32713. height: math.unit(8.78461, "feet"),
  32714. name: "Front Dick",
  32715. image: {
  32716. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32717. }
  32718. },
  32719. rearDick: {
  32720. height: math.unit(8.78461, "feet"),
  32721. name: "Rear Dick",
  32722. image: {
  32723. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32724. }
  32725. },
  32726. rearDickUnfolded: {
  32727. height: math.unit(8.78, "feet"),
  32728. name: "Rear Dick (Unfolded)",
  32729. image: {
  32730. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32731. }
  32732. },
  32733. wings: {
  32734. height: math.unit(43, "feet"),
  32735. name: "Wings",
  32736. image: {
  32737. source: "./media/characters/irb'iiritaahn/wings.svg"
  32738. }
  32739. },
  32740. },
  32741. [
  32742. {
  32743. name: "Macro",
  32744. height: math.unit(50 + 9/12, "feet"),
  32745. default: true
  32746. },
  32747. ]
  32748. ))
  32749. characterMakers.push(() => makeCharacter(
  32750. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32751. {
  32752. front: {
  32753. height: math.unit(205, "cm"),
  32754. weight: math.unit(102, "kg"),
  32755. name: "Front",
  32756. image: {
  32757. source: "./media/characters/irbisgreif/front.svg",
  32758. extra: 785/706,
  32759. bottom: 13/798
  32760. }
  32761. },
  32762. back: {
  32763. height: math.unit(205, "cm"),
  32764. weight: math.unit(102, "kg"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/irbisgreif/back.svg",
  32768. extra: 713/701,
  32769. bottom: 26/739
  32770. }
  32771. },
  32772. frontDressed: {
  32773. height: math.unit(216, "cm"),
  32774. weight: math.unit(102, "kg"),
  32775. name: "Front-dressed",
  32776. image: {
  32777. source: "./media/characters/irbisgreif/front-dressed.svg",
  32778. extra: 902/776,
  32779. bottom: 14/916
  32780. }
  32781. },
  32782. sideDressed: {
  32783. height: math.unit(195, "cm"),
  32784. weight: math.unit(102, "kg"),
  32785. name: "Side-dressed",
  32786. image: {
  32787. source: "./media/characters/irbisgreif/side-dressed.svg",
  32788. extra: 788/688,
  32789. bottom: 21/809
  32790. }
  32791. },
  32792. backDressed: {
  32793. height: math.unit(216, "cm"),
  32794. weight: math.unit(102, "kg"),
  32795. name: "Back-dressed",
  32796. image: {
  32797. source: "./media/characters/irbisgreif/back-dressed.svg",
  32798. extra: 901/783,
  32799. bottom: 10/911
  32800. }
  32801. },
  32802. dick: {
  32803. height: math.unit(0.49, "feet"),
  32804. name: "Dick",
  32805. image: {
  32806. source: "./media/characters/irbisgreif/dick.svg"
  32807. }
  32808. },
  32809. wingTop: {
  32810. height: math.unit(1.93 , "feet"),
  32811. name: "Wing-top",
  32812. image: {
  32813. source: "./media/characters/irbisgreif/wing-top.svg"
  32814. }
  32815. },
  32816. wingBottom: {
  32817. height: math.unit(1.93 , "feet"),
  32818. name: "Wing-bottom",
  32819. image: {
  32820. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32821. }
  32822. },
  32823. },
  32824. [
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(216, "cm"),
  32828. default: true
  32829. },
  32830. ]
  32831. ))
  32832. characterMakers.push(() => makeCharacter(
  32833. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32834. {
  32835. front: {
  32836. height: math.unit(6, "feet"),
  32837. weight: math.unit(150, "lb"),
  32838. name: "Front",
  32839. image: {
  32840. source: "./media/characters/pride/front.svg",
  32841. extra: 1299/1230,
  32842. bottom: 18/1317
  32843. }
  32844. },
  32845. },
  32846. [
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(7, "feet")
  32850. },
  32851. {
  32852. name: "Mini-macro",
  32853. height: math.unit(11, "feet")
  32854. },
  32855. {
  32856. name: "Macro",
  32857. height: math.unit(15, "meters"),
  32858. default: true
  32859. },
  32860. {
  32861. name: "Macro+",
  32862. height: math.unit(40, "meters")
  32863. },
  32864. ]
  32865. ))
  32866. characterMakers.push(() => makeCharacter(
  32867. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32868. {
  32869. front: {
  32870. height: math.unit(4 + 2 / 12, "feet"),
  32871. weight: math.unit(95, "lb"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/vaelophis-nyx/front.svg",
  32875. extra: 2532/2330,
  32876. bottom: 0/2532
  32877. }
  32878. },
  32879. back: {
  32880. height: math.unit(4 + 2 / 12, "feet"),
  32881. weight: math.unit(95, "lb"),
  32882. name: "Back",
  32883. image: {
  32884. source: "./media/characters/vaelophis-nyx/back.svg",
  32885. extra: 2484/2361,
  32886. bottom: 0/2484
  32887. }
  32888. },
  32889. feralSide: {
  32890. height: math.unit(2 + 1/12, "feet"),
  32891. weight: math.unit(20, "lb"),
  32892. name: "Feral (Side)",
  32893. image: {
  32894. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32895. extra: 1721/1581,
  32896. bottom: 70/1791
  32897. }
  32898. },
  32899. feralLazing: {
  32900. height: math.unit(1.08, "feet"),
  32901. weight: math.unit(20, "lb"),
  32902. name: "Feral (Lazing)",
  32903. image: {
  32904. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32905. extra: 822/822,
  32906. bottom: 248/1070
  32907. }
  32908. },
  32909. ear: {
  32910. height: math.unit(0.416, "feet"),
  32911. name: "Ear",
  32912. image: {
  32913. source: "./media/characters/vaelophis-nyx/ear.svg"
  32914. }
  32915. },
  32916. eye: {
  32917. height: math.unit(0.0748, "feet"),
  32918. name: "Eye",
  32919. image: {
  32920. source: "./media/characters/vaelophis-nyx/eye.svg"
  32921. }
  32922. },
  32923. mouth: {
  32924. height: math.unit(0.378, "feet"),
  32925. name: "Mouth",
  32926. image: {
  32927. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32928. }
  32929. },
  32930. spade: {
  32931. height: math.unit(0.55, "feet"),
  32932. name: "Spade",
  32933. image: {
  32934. source: "./media/characters/vaelophis-nyx/spade.svg"
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Normal",
  32941. height: math.unit(4 + 2/12, "feet"),
  32942. default: true
  32943. },
  32944. ]
  32945. ))
  32946. characterMakers.push(() => makeCharacter(
  32947. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32948. {
  32949. front: {
  32950. height: math.unit(7, "feet"),
  32951. weight: math.unit(231, "lb"),
  32952. name: "Front",
  32953. image: {
  32954. source: "./media/characters/flux/front.svg",
  32955. extra: 919/871,
  32956. bottom: 0/919
  32957. }
  32958. },
  32959. back: {
  32960. height: math.unit(7, "feet"),
  32961. weight: math.unit(231, "lb"),
  32962. name: "Back",
  32963. image: {
  32964. source: "./media/characters/flux/back.svg",
  32965. extra: 1040/992,
  32966. bottom: 0/1040
  32967. }
  32968. },
  32969. frontDressed: {
  32970. height: math.unit(7, "feet"),
  32971. weight: math.unit(231, "lb"),
  32972. name: "Front (Dressed)",
  32973. image: {
  32974. source: "./media/characters/flux/front-dressed.svg",
  32975. extra: 919/871,
  32976. bottom: 0/919
  32977. }
  32978. },
  32979. feralSide: {
  32980. height: math.unit(5, "feet"),
  32981. weight: math.unit(150, "lb"),
  32982. name: "Feral (Side)",
  32983. image: {
  32984. source: "./media/characters/flux/feral-side.svg",
  32985. extra: 598/528,
  32986. bottom: 28/626
  32987. }
  32988. },
  32989. head: {
  32990. height: math.unit(1.585, "feet"),
  32991. name: "Head",
  32992. image: {
  32993. source: "./media/characters/flux/head.svg"
  32994. }
  32995. },
  32996. headSide: {
  32997. height: math.unit(1.74, "feet"),
  32998. name: "Head (Side)",
  32999. image: {
  33000. source: "./media/characters/flux/head-side.svg"
  33001. }
  33002. },
  33003. headSideFire: {
  33004. height: math.unit(1.76, "feet"),
  33005. name: "Head (Side, Fire)",
  33006. image: {
  33007. source: "./media/characters/flux/head-side-fire.svg"
  33008. }
  33009. },
  33010. },
  33011. [
  33012. {
  33013. name: "Normal",
  33014. height: math.unit(7, "feet"),
  33015. default: true
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33021. {
  33022. front: {
  33023. height: math.unit(9, "feet"),
  33024. weight: math.unit(1012, "lb"),
  33025. name: "Front",
  33026. image: {
  33027. source: "./media/characters/ulfra-lupae/front.svg",
  33028. extra: 1083/1011,
  33029. bottom: 67/1150
  33030. }
  33031. },
  33032. },
  33033. [
  33034. {
  33035. name: "Micro",
  33036. height: math.unit(6, "inches")
  33037. },
  33038. {
  33039. name: "Socializing",
  33040. height: math.unit(6 + 5/12, "feet")
  33041. },
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(9, "feet"),
  33045. default: true
  33046. },
  33047. {
  33048. name: "Macro",
  33049. height: math.unit(150, "feet")
  33050. },
  33051. ]
  33052. ))
  33053. characterMakers.push(() => makeCharacter(
  33054. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33055. {
  33056. front: {
  33057. height: math.unit(5 + 2/12, "feet"),
  33058. weight: math.unit(120, "lb"),
  33059. name: "Front",
  33060. image: {
  33061. source: "./media/characters/timber/front.svg",
  33062. extra: 2814/2705,
  33063. bottom: 181/2995
  33064. }
  33065. },
  33066. },
  33067. [
  33068. {
  33069. name: "Normal",
  33070. height: math.unit(5 + 2/12, "feet"),
  33071. default: true
  33072. },
  33073. ]
  33074. ))
  33075. characterMakers.push(() => makeCharacter(
  33076. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33077. {
  33078. front: {
  33079. height: math.unit(9, "feet"),
  33080. name: "Front",
  33081. image: {
  33082. source: "./media/characters/nicki/front.svg",
  33083. extra: 1240/990,
  33084. bottom: 45/1285
  33085. },
  33086. form: "anthro",
  33087. default: true
  33088. },
  33089. side: {
  33090. height: math.unit(9, "feet"),
  33091. name: "Side",
  33092. image: {
  33093. source: "./media/characters/nicki/side.svg",
  33094. extra: 1047/973,
  33095. bottom: 61/1108
  33096. },
  33097. form: "anthro"
  33098. },
  33099. back: {
  33100. height: math.unit(9, "feet"),
  33101. name: "Back",
  33102. image: {
  33103. source: "./media/characters/nicki/back.svg",
  33104. extra: 1006/965,
  33105. bottom: 39/1045
  33106. },
  33107. form: "anthro"
  33108. },
  33109. taur: {
  33110. height: math.unit(15, "feet"),
  33111. name: "Taur",
  33112. image: {
  33113. source: "./media/characters/nicki/taur.svg",
  33114. extra: 1592/1347,
  33115. bottom: 0/1592
  33116. },
  33117. form: "taur",
  33118. default: true
  33119. },
  33120. },
  33121. [
  33122. {
  33123. name: "Normal",
  33124. height: math.unit(9, "feet"),
  33125. form: "anthro",
  33126. default: true
  33127. },
  33128. {
  33129. name: "Normal",
  33130. height: math.unit(15, "feet"),
  33131. form: "taur",
  33132. default: true
  33133. }
  33134. ],
  33135. {
  33136. "anthro": {
  33137. name: "Anthro",
  33138. default: true
  33139. },
  33140. "taur": {
  33141. name: "Taur"
  33142. }
  33143. }
  33144. ))
  33145. characterMakers.push(() => makeCharacter(
  33146. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33147. {
  33148. front: {
  33149. height: math.unit(7 + 10/12, "feet"),
  33150. weight: math.unit(3.5, "tons"),
  33151. name: "Front",
  33152. image: {
  33153. source: "./media/characters/lee/front.svg",
  33154. extra: 1773/1615,
  33155. bottom: 86/1859
  33156. }
  33157. },
  33158. hand: {
  33159. height: math.unit(1.78, "feet"),
  33160. name: "Hand",
  33161. image: {
  33162. source: "./media/characters/lee/hand.svg"
  33163. }
  33164. },
  33165. maw: {
  33166. height: math.unit(1.18, "feet"),
  33167. name: "Maw",
  33168. image: {
  33169. source: "./media/characters/lee/maw.svg"
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(7 + 10/12, "feet"),
  33177. default: true
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33183. {
  33184. front: {
  33185. height: math.unit(9, "feet"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/guti/front.svg",
  33189. extra: 4551/4355,
  33190. bottom: 123/4674
  33191. }
  33192. },
  33193. tongue: {
  33194. height: math.unit(1, "feet"),
  33195. name: "Tongue",
  33196. image: {
  33197. source: "./media/characters/guti/tongue.svg"
  33198. }
  33199. },
  33200. paw: {
  33201. height: math.unit(1.18, "feet"),
  33202. name: "Paw",
  33203. image: {
  33204. source: "./media/characters/guti/paw.svg"
  33205. }
  33206. },
  33207. },
  33208. [
  33209. {
  33210. name: "Normal",
  33211. height: math.unit(9, "feet"),
  33212. default: true
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33218. {
  33219. side: {
  33220. height: math.unit(5, "meters"),
  33221. name: "Side",
  33222. image: {
  33223. source: "./media/characters/vesper/side.svg",
  33224. extra: 1605/1518,
  33225. bottom: 0/1605
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Small",
  33232. height: math.unit(5, "meters")
  33233. },
  33234. {
  33235. name: "Sage",
  33236. height: math.unit(100, "meters"),
  33237. default: true
  33238. },
  33239. {
  33240. name: "Fun Size",
  33241. height: math.unit(600, "meters")
  33242. },
  33243. {
  33244. name: "Goddess",
  33245. height: math.unit(20000, "km")
  33246. },
  33247. {
  33248. name: "Maximum",
  33249. height: math.unit(5, "galaxies")
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(6 + 3/12, "feet"),
  33258. weight: math.unit(190, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/gawain/front.svg",
  33262. extra: 2222/2139,
  33263. bottom: 90/2312
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(6 + 3/12, "feet"),
  33268. weight: math.unit(190, "lb"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/gawain/back.svg",
  33272. extra: 2199/2111,
  33273. bottom: 73/2272
  33274. }
  33275. },
  33276. },
  33277. [
  33278. {
  33279. name: "Normal",
  33280. height: math.unit(6 + 3/12, "feet"),
  33281. default: true
  33282. },
  33283. ]
  33284. ))
  33285. characterMakers.push(() => makeCharacter(
  33286. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33287. {
  33288. side: {
  33289. height: math.unit(3.5, "meters"),
  33290. weight: math.unit(16000, "lb"),
  33291. name: "Side",
  33292. image: {
  33293. source: "./media/characters/dascalti/side.svg",
  33294. extra: 392/273,
  33295. bottom: 47/439
  33296. }
  33297. },
  33298. breath: {
  33299. height: math.unit(7.4, "feet"),
  33300. name: "Breath",
  33301. image: {
  33302. source: "./media/characters/dascalti/breath.svg"
  33303. }
  33304. },
  33305. fed: {
  33306. height: math.unit(3.6, "meters"),
  33307. weight: math.unit(16000, "lb"),
  33308. name: "Fed",
  33309. image: {
  33310. source: "./media/characters/dascalti/fed.svg",
  33311. extra: 1419/820,
  33312. bottom: 95/1514
  33313. }
  33314. },
  33315. },
  33316. [
  33317. {
  33318. name: "Normal",
  33319. height: math.unit(3.5, "meters"),
  33320. default: true
  33321. },
  33322. ]
  33323. ))
  33324. characterMakers.push(() => makeCharacter(
  33325. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33326. {
  33327. front: {
  33328. height: math.unit(3 + 5/12, "feet"),
  33329. name: "Front",
  33330. image: {
  33331. source: "./media/characters/mauve/front.svg",
  33332. extra: 1126/1033,
  33333. bottom: 65/1191
  33334. }
  33335. },
  33336. side: {
  33337. height: math.unit(3 + 5/12, "feet"),
  33338. name: "Side",
  33339. image: {
  33340. source: "./media/characters/mauve/side.svg",
  33341. extra: 1089/1001,
  33342. bottom: 29/1118
  33343. }
  33344. },
  33345. back: {
  33346. height: math.unit(3 + 5/12, "feet"),
  33347. name: "Back",
  33348. image: {
  33349. source: "./media/characters/mauve/back.svg",
  33350. extra: 1173/1053,
  33351. bottom: 109/1282
  33352. }
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(3 + 5/12, "feet"),
  33359. default: true
  33360. },
  33361. ]
  33362. ))
  33363. characterMakers.push(() => makeCharacter(
  33364. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33365. {
  33366. front: {
  33367. height: math.unit(6 + 3/12, "feet"),
  33368. weight: math.unit(430, "lb"),
  33369. name: "Front",
  33370. image: {
  33371. source: "./media/characters/carlos/front.svg",
  33372. extra: 1964/1913,
  33373. bottom: 70/2034
  33374. }
  33375. },
  33376. },
  33377. [
  33378. {
  33379. name: "Normal",
  33380. height: math.unit(6 + 3/12, "feet"),
  33381. default: true
  33382. },
  33383. ]
  33384. ))
  33385. characterMakers.push(() => makeCharacter(
  33386. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33387. {
  33388. back: {
  33389. height: math.unit(5 + 10/12, "feet"),
  33390. weight: math.unit(200, "lb"),
  33391. name: "Back",
  33392. image: {
  33393. source: "./media/characters/jax/back.svg",
  33394. extra: 764/739,
  33395. bottom: 25/789
  33396. }
  33397. },
  33398. },
  33399. [
  33400. {
  33401. name: "Normal",
  33402. height: math.unit(5 + 10/12, "feet"),
  33403. default: true
  33404. },
  33405. ]
  33406. ))
  33407. characterMakers.push(() => makeCharacter(
  33408. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33409. {
  33410. front: {
  33411. height: math.unit(8, "feet"),
  33412. weight: math.unit(250, "lb"),
  33413. name: "Front",
  33414. image: {
  33415. source: "./media/characters/eikthynir/front.svg",
  33416. extra: 1332/1166,
  33417. bottom: 82/1414
  33418. }
  33419. },
  33420. back: {
  33421. height: math.unit(8, "feet"),
  33422. weight: math.unit(250, "lb"),
  33423. name: "Back",
  33424. image: {
  33425. source: "./media/characters/eikthynir/back.svg",
  33426. extra: 1342/1190,
  33427. bottom: 19/1361
  33428. }
  33429. },
  33430. dick: {
  33431. height: math.unit(2.35, "feet"),
  33432. name: "Dick",
  33433. image: {
  33434. source: "./media/characters/eikthynir/dick.svg"
  33435. }
  33436. },
  33437. },
  33438. [
  33439. {
  33440. name: "Normal",
  33441. height: math.unit(8, "feet"),
  33442. default: true
  33443. },
  33444. ]
  33445. ))
  33446. characterMakers.push(() => makeCharacter(
  33447. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33448. {
  33449. front: {
  33450. height: math.unit(99, "meters"),
  33451. weight: math.unit(13000, "tons"),
  33452. name: "Front",
  33453. image: {
  33454. source: "./media/characters/zlmos/front.svg",
  33455. extra: 2202/1992,
  33456. bottom: 315/2517
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Macro",
  33463. height: math.unit(99, "meters"),
  33464. default: true
  33465. },
  33466. ]
  33467. ))
  33468. characterMakers.push(() => makeCharacter(
  33469. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33470. {
  33471. front: {
  33472. height: math.unit(6 + 5/12, "feet"),
  33473. name: "Front",
  33474. image: {
  33475. source: "./media/characters/purri/front.svg",
  33476. extra: 1698/1610,
  33477. bottom: 32/1730
  33478. }
  33479. },
  33480. frontAlt: {
  33481. height: math.unit(6 + 5/12, "feet"),
  33482. name: "Front (Alt)",
  33483. image: {
  33484. source: "./media/characters/purri/front-alt.svg",
  33485. extra: 450/420,
  33486. bottom: 26/476
  33487. }
  33488. },
  33489. boots: {
  33490. height: math.unit(5.5, "feet"),
  33491. name: "Boots",
  33492. image: {
  33493. source: "./media/characters/purri/boots.svg",
  33494. extra: 905/853,
  33495. bottom: 18/923
  33496. }
  33497. },
  33498. lying: {
  33499. height: math.unit(2, "feet"),
  33500. name: "Lying",
  33501. image: {
  33502. source: "./media/characters/purri/lying.svg",
  33503. extra: 940/843,
  33504. bottom: 146/1086
  33505. }
  33506. },
  33507. devious: {
  33508. height: math.unit(1.77, "feet"),
  33509. name: "Devious",
  33510. image: {
  33511. source: "./media/characters/purri/devious.svg",
  33512. extra: 1440/1155,
  33513. bottom: 147/1587
  33514. }
  33515. },
  33516. bean: {
  33517. height: math.unit(1.94, "feet"),
  33518. name: "Bean",
  33519. image: {
  33520. source: "./media/characters/purri/bean.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Micro",
  33527. height: math.unit(1, "mm")
  33528. },
  33529. {
  33530. name: "Normal",
  33531. height: math.unit(6 + 5/12, "feet"),
  33532. default: true
  33533. },
  33534. {
  33535. name: "Macro :3c",
  33536. height: math.unit(2, "miles")
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33542. {
  33543. front: {
  33544. height: math.unit(6 + 2/12, "feet"),
  33545. weight: math.unit(250, "lb"),
  33546. name: "Front",
  33547. image: {
  33548. source: "./media/characters/moonlight/front.svg",
  33549. extra: 1044/908,
  33550. bottom: 56/1100
  33551. }
  33552. },
  33553. feral: {
  33554. height: math.unit(3 + 1/12, "feet"),
  33555. weight: math.unit(50, "kg"),
  33556. name: "Feral",
  33557. image: {
  33558. source: "./media/characters/moonlight/feral.svg",
  33559. extra: 3705/2791,
  33560. bottom: 145/3850
  33561. }
  33562. },
  33563. paw: {
  33564. height: math.unit(1, "feet"),
  33565. name: "Paw",
  33566. image: {
  33567. source: "./media/characters/moonlight/paw.svg"
  33568. }
  33569. },
  33570. paws: {
  33571. height: math.unit(0.98, "feet"),
  33572. name: "Paws",
  33573. image: {
  33574. source: "./media/characters/moonlight/paws.svg",
  33575. extra: 939/939,
  33576. bottom: 50/989
  33577. }
  33578. },
  33579. mouth: {
  33580. height: math.unit(0.48, "feet"),
  33581. name: "Mouth",
  33582. image: {
  33583. source: "./media/characters/moonlight/mouth.svg"
  33584. }
  33585. },
  33586. dick: {
  33587. height: math.unit(1.46, "feet"),
  33588. name: "Dick",
  33589. image: {
  33590. source: "./media/characters/moonlight/dick.svg"
  33591. }
  33592. },
  33593. },
  33594. [
  33595. {
  33596. name: "Normal",
  33597. height: math.unit(6 + 2/12, "feet"),
  33598. default: true
  33599. },
  33600. {
  33601. name: "Macro",
  33602. height: math.unit(300, "feet")
  33603. },
  33604. {
  33605. name: "Macro+",
  33606. height: math.unit(1, "mile")
  33607. },
  33608. {
  33609. name: "Mt. Moon",
  33610. height: math.unit(5, "miles")
  33611. },
  33612. {
  33613. name: "Megamacro",
  33614. height: math.unit(15, "miles")
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  33620. {
  33621. back: {
  33622. height: math.unit(6, "feet"),
  33623. weight: math.unit(150, "lb"),
  33624. name: "Back",
  33625. image: {
  33626. source: "./media/characters/sylen/back.svg",
  33627. extra: 1335/1273,
  33628. bottom: 107/1442
  33629. }
  33630. },
  33631. },
  33632. [
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(5 + 5/12, "feet")
  33636. },
  33637. {
  33638. name: "Megamacro",
  33639. height: math.unit(3, "miles"),
  33640. default: true
  33641. },
  33642. ]
  33643. ))
  33644. characterMakers.push(() => makeCharacter(
  33645. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  33646. {
  33647. front: {
  33648. height: math.unit(6, "feet"),
  33649. weight: math.unit(190, "lb"),
  33650. name: "Front",
  33651. image: {
  33652. source: "./media/characters/huttser/front.svg",
  33653. extra: 1152/1058,
  33654. bottom: 23/1175
  33655. }
  33656. },
  33657. side: {
  33658. height: math.unit(6, "feet"),
  33659. weight: math.unit(190, "lb"),
  33660. name: "Side",
  33661. image: {
  33662. source: "./media/characters/huttser/side.svg",
  33663. extra: 1174/1065,
  33664. bottom: 18/1192
  33665. }
  33666. },
  33667. back: {
  33668. height: math.unit(6, "feet"),
  33669. weight: math.unit(190, "lb"),
  33670. name: "Back",
  33671. image: {
  33672. source: "./media/characters/huttser/back.svg",
  33673. extra: 1158/1056,
  33674. bottom: 12/1170
  33675. }
  33676. },
  33677. },
  33678. [
  33679. ]
  33680. ))
  33681. characterMakers.push(() => makeCharacter(
  33682. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33683. {
  33684. side: {
  33685. height: math.unit(12 + 9/12, "feet"),
  33686. weight: math.unit(15000, "lb"),
  33687. name: "Side",
  33688. image: {
  33689. source: "./media/characters/faan/side.svg",
  33690. extra: 2747/2697,
  33691. bottom: 0/2747
  33692. }
  33693. },
  33694. front: {
  33695. height: math.unit(12 + 9/12, "feet"),
  33696. weight: math.unit(15000, "lb"),
  33697. name: "Front",
  33698. image: {
  33699. source: "./media/characters/faan/front.svg",
  33700. extra: 607/571,
  33701. bottom: 24/631
  33702. }
  33703. },
  33704. head: {
  33705. height: math.unit(2.85, "feet"),
  33706. name: "Head",
  33707. image: {
  33708. source: "./media/characters/faan/head.svg"
  33709. }
  33710. },
  33711. headAlt: {
  33712. height: math.unit(3.13, "feet"),
  33713. name: "Head-alt",
  33714. image: {
  33715. source: "./media/characters/faan/head-alt.svg"
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Normal",
  33722. height: math.unit(12 + 9/12, "feet"),
  33723. default: true
  33724. },
  33725. ]
  33726. ))
  33727. characterMakers.push(() => makeCharacter(
  33728. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33729. {
  33730. front: {
  33731. height: math.unit(6, "feet"),
  33732. weight: math.unit(300, "lb"),
  33733. name: "Front",
  33734. image: {
  33735. source: "./media/characters/tanio/front.svg",
  33736. extra: 711/673,
  33737. bottom: 25/736
  33738. }
  33739. },
  33740. },
  33741. [
  33742. {
  33743. name: "Normal",
  33744. height: math.unit(6, "feet"),
  33745. default: true
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(3, "inches"),
  33754. name: "Front",
  33755. image: {
  33756. source: "./media/characters/noboru/front.svg",
  33757. extra: 1039/932,
  33758. bottom: 18/1057
  33759. }
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Micro",
  33765. height: math.unit(3, "inches"),
  33766. default: true
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33772. {
  33773. front: {
  33774. height: math.unit(1.85, "meters"),
  33775. weight: math.unit(80, "kg"),
  33776. name: "Front",
  33777. image: {
  33778. source: "./media/characters/daniel-barrett/front.svg",
  33779. extra: 355/337,
  33780. bottom: 9/364
  33781. }
  33782. },
  33783. },
  33784. [
  33785. {
  33786. name: "Pico",
  33787. height: math.unit(0.0433, "mm")
  33788. },
  33789. {
  33790. name: "Nano",
  33791. height: math.unit(1.5, "mm")
  33792. },
  33793. {
  33794. name: "Micro",
  33795. height: math.unit(5.3, "cm"),
  33796. default: true
  33797. },
  33798. {
  33799. name: "Normal",
  33800. height: math.unit(1.85, "meters")
  33801. },
  33802. {
  33803. name: "Macro",
  33804. height: math.unit(64.7, "meters")
  33805. },
  33806. {
  33807. name: "Megamacro",
  33808. height: math.unit(2.26, "km")
  33809. },
  33810. {
  33811. name: "Gigamacro",
  33812. height: math.unit(79, "km")
  33813. },
  33814. {
  33815. name: "Teramacro",
  33816. height: math.unit(2765, "km")
  33817. },
  33818. {
  33819. name: "Petamacro",
  33820. height: math.unit(96678, "km")
  33821. },
  33822. ]
  33823. ))
  33824. characterMakers.push(() => makeCharacter(
  33825. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33826. {
  33827. front: {
  33828. height: math.unit(30, "meters"),
  33829. weight: math.unit(400, "tons"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/zeel/front.svg",
  33833. extra: 2599/2599,
  33834. bottom: 226/2825
  33835. }
  33836. },
  33837. },
  33838. [
  33839. {
  33840. name: "Macro",
  33841. height: math.unit(30, "meters"),
  33842. default: true
  33843. },
  33844. ]
  33845. ))
  33846. characterMakers.push(() => makeCharacter(
  33847. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33848. {
  33849. front: {
  33850. height: math.unit(6 + 7/12, "feet"),
  33851. weight: math.unit(210, "lb"),
  33852. name: "Front",
  33853. image: {
  33854. source: "./media/characters/tarn/front.svg",
  33855. extra: 3517/3220,
  33856. bottom: 91/3608
  33857. }
  33858. },
  33859. back: {
  33860. height: math.unit(6 + 7/12, "feet"),
  33861. weight: math.unit(210, "lb"),
  33862. name: "Back",
  33863. image: {
  33864. source: "./media/characters/tarn/back.svg",
  33865. extra: 3566/3241,
  33866. bottom: 34/3600
  33867. }
  33868. },
  33869. dick: {
  33870. height: math.unit(1.65, "feet"),
  33871. name: "Dick",
  33872. image: {
  33873. source: "./media/characters/tarn/dick.svg"
  33874. }
  33875. },
  33876. paw: {
  33877. height: math.unit(1.80, "feet"),
  33878. name: "Paw",
  33879. image: {
  33880. source: "./media/characters/tarn/paw.svg"
  33881. }
  33882. },
  33883. tongue: {
  33884. height: math.unit(0.97, "feet"),
  33885. name: "Tongue",
  33886. image: {
  33887. source: "./media/characters/tarn/tongue.svg"
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Micro",
  33894. height: math.unit(4, "inches")
  33895. },
  33896. {
  33897. name: "Normal",
  33898. height: math.unit(6 + 7/12, "feet"),
  33899. default: true
  33900. },
  33901. {
  33902. name: "Macro",
  33903. height: math.unit(300, "feet")
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33909. {
  33910. front: {
  33911. height: math.unit(5 + 7/12, "feet"),
  33912. weight: math.unit(80, "kg"),
  33913. name: "Front",
  33914. image: {
  33915. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33916. extra: 3023/2865,
  33917. bottom: 33/3056
  33918. }
  33919. },
  33920. back: {
  33921. height: math.unit(5 + 7/12, "feet"),
  33922. weight: math.unit(80, "kg"),
  33923. name: "Back",
  33924. image: {
  33925. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33926. extra: 3020/2886,
  33927. bottom: 30/3050
  33928. }
  33929. },
  33930. dick: {
  33931. height: math.unit(0.98, "feet"),
  33932. name: "Dick",
  33933. image: {
  33934. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33935. }
  33936. },
  33937. anatomy: {
  33938. height: math.unit(2.86, "feet"),
  33939. name: "Anatomy",
  33940. image: {
  33941. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33942. }
  33943. },
  33944. },
  33945. [
  33946. {
  33947. name: "Really Small",
  33948. height: math.unit(2, "inches")
  33949. },
  33950. {
  33951. name: "Micro",
  33952. height: math.unit(5.583, "inches")
  33953. },
  33954. {
  33955. name: "Normal",
  33956. height: math.unit(5 + 7/12, "feet"),
  33957. default: true
  33958. },
  33959. {
  33960. name: "Macro",
  33961. height: math.unit(67, "feet")
  33962. },
  33963. {
  33964. name: "Megamacro",
  33965. height: math.unit(134, "feet")
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(9, "feet"),
  33974. weight: math.unit(120, "lb"),
  33975. name: "Front",
  33976. image: {
  33977. source: "./media/characters/sally/front.svg",
  33978. extra: 1506/1349,
  33979. bottom: 66/1572
  33980. }
  33981. },
  33982. },
  33983. [
  33984. {
  33985. name: "Normal",
  33986. height: math.unit(9, "feet"),
  33987. default: true
  33988. },
  33989. ]
  33990. ))
  33991. characterMakers.push(() => makeCharacter(
  33992. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33993. {
  33994. front: {
  33995. height: math.unit(8, "feet"),
  33996. weight: math.unit(900, "lb"),
  33997. name: "Front",
  33998. image: {
  33999. source: "./media/characters/owen/front.svg",
  34000. extra: 1761/1657,
  34001. bottom: 74/1835
  34002. }
  34003. },
  34004. side: {
  34005. height: math.unit(8, "feet"),
  34006. weight: math.unit(900, "lb"),
  34007. name: "Side",
  34008. image: {
  34009. source: "./media/characters/owen/side.svg",
  34010. extra: 1797/1734,
  34011. bottom: 30/1827
  34012. }
  34013. },
  34014. back: {
  34015. height: math.unit(8, "feet"),
  34016. weight: math.unit(900, "lb"),
  34017. name: "Back",
  34018. image: {
  34019. source: "./media/characters/owen/back.svg",
  34020. extra: 1796/1706,
  34021. bottom: 59/1855
  34022. }
  34023. },
  34024. maw: {
  34025. height: math.unit(1.76, "feet"),
  34026. name: "Maw",
  34027. image: {
  34028. source: "./media/characters/owen/maw.svg"
  34029. }
  34030. },
  34031. },
  34032. [
  34033. {
  34034. name: "Normal",
  34035. height: math.unit(8, "feet"),
  34036. default: true
  34037. },
  34038. ]
  34039. ))
  34040. characterMakers.push(() => makeCharacter(
  34041. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34042. {
  34043. front: {
  34044. height: math.unit(4, "feet"),
  34045. weight: math.unit(400, "lb"),
  34046. name: "Front",
  34047. image: {
  34048. source: "./media/characters/ryth/front.svg",
  34049. extra: 1920/1748,
  34050. bottom: 42/1962
  34051. }
  34052. },
  34053. back: {
  34054. height: math.unit(4, "feet"),
  34055. weight: math.unit(400, "lb"),
  34056. name: "Back",
  34057. image: {
  34058. source: "./media/characters/ryth/back.svg",
  34059. extra: 1897/1690,
  34060. bottom: 89/1986
  34061. }
  34062. },
  34063. mouth: {
  34064. height: math.unit(1.39, "feet"),
  34065. name: "Mouth",
  34066. image: {
  34067. source: "./media/characters/ryth/mouth.svg"
  34068. }
  34069. },
  34070. tailmaw: {
  34071. height: math.unit(1.23, "feet"),
  34072. name: "Tailmaw",
  34073. image: {
  34074. source: "./media/characters/ryth/tailmaw.svg"
  34075. }
  34076. },
  34077. goia: {
  34078. height: math.unit(4, "meters"),
  34079. weight: math.unit(10800, "lb"),
  34080. name: "Goia",
  34081. image: {
  34082. source: "./media/characters/ryth/goia.svg",
  34083. extra: 745/640,
  34084. bottom: 107/852
  34085. }
  34086. },
  34087. goiaFront: {
  34088. height: math.unit(4, "meters"),
  34089. weight: math.unit(10800, "lb"),
  34090. name: "Goia (Front)",
  34091. image: {
  34092. source: "./media/characters/ryth/goia-front.svg",
  34093. extra: 750/586,
  34094. bottom: 114/864
  34095. }
  34096. },
  34097. goiaMaw: {
  34098. height: math.unit(5.55, "feet"),
  34099. name: "Goia Maw",
  34100. image: {
  34101. source: "./media/characters/ryth/goia-maw.svg"
  34102. }
  34103. },
  34104. goiaForepaw: {
  34105. height: math.unit(3.5, "feet"),
  34106. name: "Goia Forepaw",
  34107. image: {
  34108. source: "./media/characters/ryth/goia-forepaw.svg"
  34109. }
  34110. },
  34111. goiaHindpaw: {
  34112. height: math.unit(5.55, "feet"),
  34113. name: "Goia Hindpaw",
  34114. image: {
  34115. source: "./media/characters/ryth/goia-hindpaw.svg"
  34116. }
  34117. },
  34118. },
  34119. [
  34120. {
  34121. name: "Normal",
  34122. height: math.unit(4, "feet"),
  34123. default: true
  34124. },
  34125. ]
  34126. ))
  34127. characterMakers.push(() => makeCharacter(
  34128. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34129. {
  34130. front: {
  34131. height: math.unit(7, "feet"),
  34132. weight: math.unit(180, "lb"),
  34133. name: "Front",
  34134. image: {
  34135. source: "./media/characters/necrolance/front.svg",
  34136. extra: 1062/947,
  34137. bottom: 41/1103
  34138. }
  34139. },
  34140. back: {
  34141. height: math.unit(7, "feet"),
  34142. weight: math.unit(180, "lb"),
  34143. name: "Back",
  34144. image: {
  34145. source: "./media/characters/necrolance/back.svg",
  34146. extra: 1045/984,
  34147. bottom: 14/1059
  34148. }
  34149. },
  34150. wing: {
  34151. height: math.unit(2.67, "feet"),
  34152. name: "Wing",
  34153. image: {
  34154. source: "./media/characters/necrolance/wing.svg"
  34155. }
  34156. },
  34157. },
  34158. [
  34159. {
  34160. name: "Normal",
  34161. height: math.unit(7, "feet"),
  34162. default: true
  34163. },
  34164. ]
  34165. ))
  34166. characterMakers.push(() => makeCharacter(
  34167. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34168. {
  34169. front: {
  34170. height: math.unit(76, "meters"),
  34171. weight: math.unit(30000, "tons"),
  34172. name: "Front",
  34173. image: {
  34174. source: "./media/characters/tyler/front.svg",
  34175. extra: 1640/1640,
  34176. bottom: 114/1754
  34177. }
  34178. },
  34179. },
  34180. [
  34181. {
  34182. name: "Macro",
  34183. height: math.unit(76, "meters"),
  34184. default: true
  34185. },
  34186. ]
  34187. ))
  34188. characterMakers.push(() => makeCharacter(
  34189. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34190. {
  34191. front: {
  34192. height: math.unit(4 + 11/12, "feet"),
  34193. weight: math.unit(132, "lb"),
  34194. name: "Front",
  34195. image: {
  34196. source: "./media/characters/icey/front.svg",
  34197. extra: 2750/2550,
  34198. bottom: 33/2783
  34199. }
  34200. },
  34201. back: {
  34202. height: math.unit(4 + 11/12, "feet"),
  34203. weight: math.unit(132, "lb"),
  34204. name: "Back",
  34205. image: {
  34206. source: "./media/characters/icey/back.svg",
  34207. extra: 2624/2481,
  34208. bottom: 35/2659
  34209. }
  34210. },
  34211. },
  34212. [
  34213. {
  34214. name: "Normal",
  34215. height: math.unit(4 + 11/12, "feet"),
  34216. default: true
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(100, "feet"),
  34225. weight: math.unit(0, "lb"),
  34226. name: "Front",
  34227. image: {
  34228. source: "./media/characters/smile/front.svg",
  34229. extra: 2983/2912,
  34230. bottom: 162/3145
  34231. }
  34232. },
  34233. back: {
  34234. height: math.unit(100, "feet"),
  34235. weight: math.unit(0, "lb"),
  34236. name: "Back",
  34237. image: {
  34238. source: "./media/characters/smile/back.svg",
  34239. extra: 3143/3031,
  34240. bottom: 91/3234
  34241. }
  34242. },
  34243. head: {
  34244. height: math.unit(26.3, "feet"),
  34245. weight: math.unit(0, "lb"),
  34246. name: "Head",
  34247. image: {
  34248. source: "./media/characters/smile/head.svg"
  34249. }
  34250. },
  34251. collar: {
  34252. height: math.unit(5.3, "feet"),
  34253. weight: math.unit(0, "lb"),
  34254. name: "Collar",
  34255. image: {
  34256. source: "./media/characters/smile/collar.svg"
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Macro",
  34263. height: math.unit(100, "feet"),
  34264. default: true
  34265. },
  34266. ]
  34267. ))
  34268. characterMakers.push(() => makeCharacter(
  34269. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34270. {
  34271. dragon: {
  34272. height: math.unit(26, "feet"),
  34273. weight: math.unit(36, "tons"),
  34274. name: "Dragon",
  34275. image: {
  34276. source: "./media/characters/arimphae/dragon.svg",
  34277. extra: 1574/983,
  34278. bottom: 357/1931
  34279. }
  34280. },
  34281. drake: {
  34282. height: math.unit(9, "feet"),
  34283. weight: math.unit(1.5, "tons"),
  34284. name: "Drake",
  34285. image: {
  34286. source: "./media/characters/arimphae/drake.svg",
  34287. extra: 1120/925,
  34288. bottom: 435/1555
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Small",
  34295. height: math.unit(26*5/9, "feet")
  34296. },
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(26, "feet"),
  34300. default: true
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34306. {
  34307. front: {
  34308. height: math.unit(8 + 9/12, "feet"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/xander/front.svg",
  34312. extra: 1237/974,
  34313. bottom: 94/1331
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Normal",
  34320. height: math.unit(8 + 9/12, "feet"),
  34321. default: true
  34322. },
  34323. {
  34324. name: "Gaze Grabber",
  34325. height: math.unit(13 + 8/12, "feet")
  34326. },
  34327. {
  34328. name: "Jaw Dropper",
  34329. height: math.unit(27, "feet")
  34330. },
  34331. {
  34332. name: "Show Stopper",
  34333. height: math.unit(136, "feet")
  34334. },
  34335. {
  34336. name: "Superstar",
  34337. height: math.unit(1.9e6, "miles")
  34338. },
  34339. ]
  34340. ))
  34341. characterMakers.push(() => makeCharacter(
  34342. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34343. {
  34344. side: {
  34345. height: math.unit(2100, "feet"),
  34346. name: "Side",
  34347. image: {
  34348. source: "./media/characters/osiris/side.svg",
  34349. extra: 1105/939,
  34350. bottom: 167/1272
  34351. }
  34352. },
  34353. },
  34354. [
  34355. {
  34356. name: "Macro",
  34357. height: math.unit(2100, "feet"),
  34358. default: true
  34359. },
  34360. ]
  34361. ))
  34362. characterMakers.push(() => makeCharacter(
  34363. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34364. {
  34365. front: {
  34366. height: math.unit(6 + 8/12, "feet"),
  34367. weight: math.unit(225, "lb"),
  34368. name: "Front",
  34369. image: {
  34370. source: "./media/characters/rhys-londe/front.svg",
  34371. extra: 2258/2141,
  34372. bottom: 188/2446
  34373. }
  34374. },
  34375. back: {
  34376. height: math.unit(6 + 8/12, "feet"),
  34377. weight: math.unit(225, "lb"),
  34378. name: "Back",
  34379. image: {
  34380. source: "./media/characters/rhys-londe/back.svg",
  34381. extra: 2237/2137,
  34382. bottom: 63/2300
  34383. }
  34384. },
  34385. frontNsfw: {
  34386. height: math.unit(6 + 8/12, "feet"),
  34387. weight: math.unit(225, "lb"),
  34388. name: "Front (NSFW)",
  34389. image: {
  34390. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34391. extra: 2258/2141,
  34392. bottom: 188/2446
  34393. }
  34394. },
  34395. backNsfw: {
  34396. height: math.unit(6 + 8/12, "feet"),
  34397. weight: math.unit(225, "lb"),
  34398. name: "Back (NSFW)",
  34399. image: {
  34400. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34401. extra: 2237/2137,
  34402. bottom: 63/2300
  34403. }
  34404. },
  34405. dick: {
  34406. height: math.unit(30, "inches"),
  34407. name: "Dick",
  34408. image: {
  34409. source: "./media/characters/rhys-londe/dick.svg"
  34410. }
  34411. },
  34412. maw: {
  34413. height: math.unit(1.6, "feet"),
  34414. name: "Maw",
  34415. image: {
  34416. source: "./media/characters/rhys-londe/maw.svg"
  34417. }
  34418. },
  34419. },
  34420. [
  34421. {
  34422. name: "Normal",
  34423. height: math.unit(6 + 8/12, "feet"),
  34424. default: true
  34425. },
  34426. ]
  34427. ))
  34428. characterMakers.push(() => makeCharacter(
  34429. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34430. {
  34431. front: {
  34432. height: math.unit(3 + 10/12, "feet"),
  34433. weight: math.unit(90, "lb"),
  34434. name: "Front",
  34435. image: {
  34436. source: "./media/characters/taivas-ensim/front.svg",
  34437. extra: 1327/1216,
  34438. bottom: 96/1423
  34439. }
  34440. },
  34441. back: {
  34442. height: math.unit(3 + 10/12, "feet"),
  34443. weight: math.unit(90, "lb"),
  34444. name: "Back",
  34445. image: {
  34446. source: "./media/characters/taivas-ensim/back.svg",
  34447. extra: 1355/1247,
  34448. bottom: 11/1366
  34449. }
  34450. },
  34451. frontNsfw: {
  34452. height: math.unit(3 + 10/12, "feet"),
  34453. weight: math.unit(90, "lb"),
  34454. name: "Front (NSFW)",
  34455. image: {
  34456. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34457. extra: 1327/1216,
  34458. bottom: 96/1423
  34459. }
  34460. },
  34461. backNsfw: {
  34462. height: math.unit(3 + 10/12, "feet"),
  34463. weight: math.unit(90, "lb"),
  34464. name: "Back (NSFW)",
  34465. image: {
  34466. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34467. extra: 1355/1247,
  34468. bottom: 11/1366
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Normal",
  34475. height: math.unit(3 + 10/12, "feet"),
  34476. default: true
  34477. },
  34478. ]
  34479. ))
  34480. characterMakers.push(() => makeCharacter(
  34481. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34482. {
  34483. front: {
  34484. height: math.unit(9 + 6/12, "feet"),
  34485. weight: math.unit(940, "lb"),
  34486. name: "Front",
  34487. image: {
  34488. source: "./media/characters/byliss/front.svg",
  34489. extra: 1327/1290,
  34490. bottom: 82/1409
  34491. }
  34492. },
  34493. back: {
  34494. height: math.unit(9 + 6/12, "feet"),
  34495. weight: math.unit(940, "lb"),
  34496. name: "Back",
  34497. image: {
  34498. source: "./media/characters/byliss/back.svg",
  34499. extra: 1376/1349,
  34500. bottom: 9/1385
  34501. }
  34502. },
  34503. frontNsfw: {
  34504. height: math.unit(9 + 6/12, "feet"),
  34505. weight: math.unit(940, "lb"),
  34506. name: "Front (NSFW)",
  34507. image: {
  34508. source: "./media/characters/byliss/front-nsfw.svg",
  34509. extra: 1327/1290,
  34510. bottom: 82/1409
  34511. }
  34512. },
  34513. backNsfw: {
  34514. height: math.unit(9 + 6/12, "feet"),
  34515. weight: math.unit(940, "lb"),
  34516. name: "Back (NSFW)",
  34517. image: {
  34518. source: "./media/characters/byliss/back-nsfw.svg",
  34519. extra: 1376/1349,
  34520. bottom: 9/1385
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Normal",
  34527. height: math.unit(9 + 6/12, "feet"),
  34528. default: true
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34534. {
  34535. front: {
  34536. height: math.unit(5 + 2/12, "feet"),
  34537. weight: math.unit(200, "lb"),
  34538. name: "Front",
  34539. image: {
  34540. source: "./media/characters/noraly/front.svg",
  34541. extra: 4985/4773,
  34542. bottom: 150/5135
  34543. }
  34544. },
  34545. full: {
  34546. height: math.unit(5 + 2/12, "feet"),
  34547. weight: math.unit(164, "lb"),
  34548. name: "Full",
  34549. image: {
  34550. source: "./media/characters/noraly/full.svg",
  34551. extra: 1114/1059,
  34552. bottom: 35/1149
  34553. }
  34554. },
  34555. fuller: {
  34556. height: math.unit(5 + 2/12, "feet"),
  34557. weight: math.unit(230, "lb"),
  34558. name: "Fuller",
  34559. image: {
  34560. source: "./media/characters/noraly/fuller.svg",
  34561. extra: 1114/1059,
  34562. bottom: 35/1149
  34563. }
  34564. },
  34565. fullest: {
  34566. height: math.unit(5 + 2/12, "feet"),
  34567. weight: math.unit(300, "lb"),
  34568. name: "Fullest",
  34569. image: {
  34570. source: "./media/characters/noraly/fullest.svg",
  34571. extra: 1114/1059,
  34572. bottom: 35/1149
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "Normal",
  34579. height: math.unit(5 + 2/12, "feet"),
  34580. default: true
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34586. {
  34587. front: {
  34588. height: math.unit(5 + 2/12, "feet"),
  34589. weight: math.unit(210, "lb"),
  34590. name: "Front",
  34591. image: {
  34592. source: "./media/characters/pera/front.svg",
  34593. extra: 1560/1531,
  34594. bottom: 165/1725
  34595. }
  34596. },
  34597. back: {
  34598. height: math.unit(5 + 2/12, "feet"),
  34599. weight: math.unit(210, "lb"),
  34600. name: "Back",
  34601. image: {
  34602. source: "./media/characters/pera/back.svg",
  34603. extra: 1523/1493,
  34604. bottom: 152/1675
  34605. }
  34606. },
  34607. dick: {
  34608. height: math.unit(2.4, "feet"),
  34609. name: "Dick",
  34610. image: {
  34611. source: "./media/characters/pera/dick.svg"
  34612. }
  34613. },
  34614. },
  34615. [
  34616. {
  34617. name: "Normal",
  34618. height: math.unit(5 + 2/12, "feet"),
  34619. default: true
  34620. },
  34621. ]
  34622. ))
  34623. characterMakers.push(() => makeCharacter(
  34624. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  34625. {
  34626. front: {
  34627. height: math.unit(12, "feet"),
  34628. weight: math.unit(3200, "lb"),
  34629. name: "Front",
  34630. image: {
  34631. source: "./media/characters/julian/front.svg",
  34632. extra: 2962/2701,
  34633. bottom: 184/3146
  34634. }
  34635. },
  34636. maw: {
  34637. height: math.unit(5.35, "feet"),
  34638. name: "Maw",
  34639. image: {
  34640. source: "./media/characters/julian/maw.svg"
  34641. }
  34642. },
  34643. paw: {
  34644. height: math.unit(3.07, "feet"),
  34645. name: "Paw",
  34646. image: {
  34647. source: "./media/characters/julian/paw.svg"
  34648. }
  34649. },
  34650. },
  34651. [
  34652. {
  34653. name: "Default",
  34654. height: math.unit(12, "feet"),
  34655. default: true
  34656. },
  34657. {
  34658. name: "Big",
  34659. height: math.unit(50, "feet")
  34660. },
  34661. {
  34662. name: "Really Big",
  34663. height: math.unit(1, "mile")
  34664. },
  34665. {
  34666. name: "Extremely Big",
  34667. height: math.unit(100, "miles")
  34668. },
  34669. {
  34670. name: "Planet Hugger",
  34671. height: math.unit(200, "megameters")
  34672. },
  34673. {
  34674. name: "Unreasonably Big",
  34675. height: math.unit(1e300, "meters")
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34681. {
  34682. solgooleo: {
  34683. height: math.unit(4, "meters"),
  34684. weight: math.unit(6000*1.5, "kg"),
  34685. volume: math.unit(6000, "liters"),
  34686. name: "Solgooleo",
  34687. image: {
  34688. source: "./media/characters/pi/solgooleo.svg",
  34689. extra: 388/331,
  34690. bottom: 29/417
  34691. }
  34692. },
  34693. },
  34694. [
  34695. {
  34696. name: "Normal",
  34697. height: math.unit(4, "meters"),
  34698. default: true
  34699. },
  34700. ]
  34701. ))
  34702. characterMakers.push(() => makeCharacter(
  34703. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34704. {
  34705. front: {
  34706. height: math.unit(8, "feet"),
  34707. weight: math.unit(4, "tons"),
  34708. name: "Front",
  34709. image: {
  34710. source: "./media/characters/shaun/front.svg",
  34711. extra: 503/495,
  34712. bottom: 20/523
  34713. }
  34714. },
  34715. back: {
  34716. height: math.unit(8, "feet"),
  34717. weight: math.unit(4, "tons"),
  34718. name: "Back",
  34719. image: {
  34720. source: "./media/characters/shaun/back.svg",
  34721. extra: 487/480,
  34722. bottom: 20/507
  34723. }
  34724. },
  34725. },
  34726. [
  34727. {
  34728. name: "Lorg",
  34729. height: math.unit(8, "feet"),
  34730. default: true
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34736. {
  34737. frontAnthro: {
  34738. height: math.unit(7, "feet"),
  34739. name: "Front",
  34740. image: {
  34741. source: "./media/characters/sini/front-anthro.svg",
  34742. extra: 726/678,
  34743. bottom: 35/761
  34744. },
  34745. form: "anthro",
  34746. default: true
  34747. },
  34748. backAnthro: {
  34749. height: math.unit(7, "feet"),
  34750. name: "Back",
  34751. image: {
  34752. source: "./media/characters/sini/back-anthro.svg",
  34753. extra: 743/701,
  34754. bottom: 12/755
  34755. },
  34756. form: "anthro",
  34757. },
  34758. frontAnthroNsfw: {
  34759. height: math.unit(7, "feet"),
  34760. name: "Front (NSFW)",
  34761. image: {
  34762. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34763. extra: 726/678,
  34764. bottom: 35/761
  34765. },
  34766. form: "anthro"
  34767. },
  34768. backAnthroNsfw: {
  34769. height: math.unit(7, "feet"),
  34770. name: "Back (NSFW)",
  34771. image: {
  34772. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34773. extra: 743/701,
  34774. bottom: 12/755
  34775. },
  34776. form: "anthro",
  34777. },
  34778. mawAnthro: {
  34779. height: math.unit(2.14, "feet"),
  34780. name: "Maw",
  34781. image: {
  34782. source: "./media/characters/sini/maw-anthro.svg"
  34783. },
  34784. form: "anthro"
  34785. },
  34786. dick: {
  34787. height: math.unit(1.45, "feet"),
  34788. name: "Dick",
  34789. image: {
  34790. source: "./media/characters/sini/dick-anthro.svg"
  34791. },
  34792. form: "anthro"
  34793. },
  34794. feral: {
  34795. height: math.unit(16, "feet"),
  34796. name: "Feral",
  34797. image: {
  34798. source: "./media/characters/sini/feral.svg",
  34799. extra: 814/605,
  34800. bottom: 11/825
  34801. },
  34802. form: "feral",
  34803. default: true
  34804. },
  34805. feralNsfw: {
  34806. height: math.unit(16, "feet"),
  34807. name: "Feral (NSFW)",
  34808. image: {
  34809. source: "./media/characters/sini/feral-nsfw.svg",
  34810. extra: 814/605,
  34811. bottom: 11/825
  34812. },
  34813. form: "feral"
  34814. },
  34815. mawFeral: {
  34816. height: math.unit(5.66, "feet"),
  34817. name: "Maw",
  34818. image: {
  34819. source: "./media/characters/sini/maw-feral.svg"
  34820. },
  34821. form: "feral",
  34822. },
  34823. pawFeral: {
  34824. height: math.unit(5.17, "feet"),
  34825. name: "Paw",
  34826. image: {
  34827. source: "./media/characters/sini/paw-feral.svg"
  34828. },
  34829. form: "feral",
  34830. },
  34831. rumpFeral: {
  34832. height: math.unit(13.11, "feet"),
  34833. name: "Rump",
  34834. image: {
  34835. source: "./media/characters/sini/rump-feral.svg"
  34836. },
  34837. form: "feral",
  34838. },
  34839. dickFeral: {
  34840. height: math.unit(1, "feet"),
  34841. name: "Dick",
  34842. image: {
  34843. source: "./media/characters/sini/dick-feral.svg"
  34844. },
  34845. form: "feral",
  34846. },
  34847. eyeFeral: {
  34848. height: math.unit(1.23, "feet"),
  34849. name: "Eye",
  34850. image: {
  34851. source: "./media/characters/sini/eye-feral.svg"
  34852. },
  34853. form: "feral",
  34854. },
  34855. },
  34856. [
  34857. {
  34858. name: "Normal",
  34859. height: math.unit(7, "feet"),
  34860. default: true,
  34861. form: "anthro"
  34862. },
  34863. {
  34864. name: "Normal",
  34865. height: math.unit(16, "feet"),
  34866. default: true,
  34867. form: "feral"
  34868. },
  34869. ],
  34870. {
  34871. "anthro": {
  34872. name: "Anthro",
  34873. default: true
  34874. },
  34875. "feral": {
  34876. name: "Feral",
  34877. }
  34878. }
  34879. ))
  34880. characterMakers.push(() => makeCharacter(
  34881. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34882. {
  34883. side: {
  34884. height: math.unit(47.2, "meters"),
  34885. weight: math.unit(10000, "tons"),
  34886. name: "Side",
  34887. image: {
  34888. source: "./media/characters/raylldo/side.svg",
  34889. extra: 2363/642,
  34890. bottom: 221/2584
  34891. }
  34892. },
  34893. top: {
  34894. height: math.unit(240, "meters"),
  34895. weight: math.unit(10000, "tons"),
  34896. name: "Top",
  34897. image: {
  34898. source: "./media/characters/raylldo/top.svg"
  34899. }
  34900. },
  34901. bottom: {
  34902. height: math.unit(240, "meters"),
  34903. weight: math.unit(10000, "tons"),
  34904. name: "Bottom",
  34905. image: {
  34906. source: "./media/characters/raylldo/bottom.svg"
  34907. }
  34908. },
  34909. head: {
  34910. height: math.unit(38.6, "meters"),
  34911. name: "Head",
  34912. image: {
  34913. source: "./media/characters/raylldo/head.svg",
  34914. extra: 1335/1112,
  34915. bottom: 0/1335
  34916. }
  34917. },
  34918. maw: {
  34919. height: math.unit(16.37, "meters"),
  34920. name: "Maw",
  34921. image: {
  34922. source: "./media/characters/raylldo/maw.svg",
  34923. extra: 883/660,
  34924. bottom: 0/883
  34925. },
  34926. extraAttributes: {
  34927. preyCapacity: {
  34928. name: "Capacity",
  34929. power: 3,
  34930. type: "volume",
  34931. base: math.unit(1000, "people")
  34932. },
  34933. tongueSize: {
  34934. name: "Tongue Size",
  34935. power: 2,
  34936. type: "area",
  34937. base: math.unit(21, "m^2")
  34938. }
  34939. }
  34940. },
  34941. forepaw: {
  34942. height: math.unit(18, "meters"),
  34943. name: "Forepaw",
  34944. image: {
  34945. source: "./media/characters/raylldo/forepaw.svg"
  34946. }
  34947. },
  34948. hindpaw: {
  34949. height: math.unit(23, "meters"),
  34950. name: "Hindpaw",
  34951. image: {
  34952. source: "./media/characters/raylldo/hindpaw.svg"
  34953. }
  34954. },
  34955. genitals: {
  34956. height: math.unit(42, "meters"),
  34957. name: "Genitals",
  34958. image: {
  34959. source: "./media/characters/raylldo/genitals.svg"
  34960. }
  34961. },
  34962. },
  34963. [
  34964. {
  34965. name: "Normal",
  34966. height: math.unit(47.2, "meters"),
  34967. default: true
  34968. },
  34969. ]
  34970. ))
  34971. characterMakers.push(() => makeCharacter(
  34972. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34973. {
  34974. anthroFront: {
  34975. height: math.unit(9, "feet"),
  34976. weight: math.unit(600, "lb"),
  34977. name: "Anthro (Front)",
  34978. image: {
  34979. source: "./media/characters/glint/anthro-front.svg",
  34980. extra: 1097/1018,
  34981. bottom: 28/1125
  34982. }
  34983. },
  34984. anthroBack: {
  34985. height: math.unit(9, "feet"),
  34986. weight: math.unit(600, "lb"),
  34987. name: "Anthro (Back)",
  34988. image: {
  34989. source: "./media/characters/glint/anthro-back.svg",
  34990. extra: 1154/997,
  34991. bottom: 36/1190
  34992. }
  34993. },
  34994. feral: {
  34995. height: math.unit(11, "feet"),
  34996. weight: math.unit(50000, "lb"),
  34997. name: "Feral",
  34998. image: {
  34999. source: "./media/characters/glint/feral.svg",
  35000. extra: 3035/1585,
  35001. bottom: 1169/4204
  35002. }
  35003. },
  35004. dickAnthro: {
  35005. height: math.unit(0.7, "meters"),
  35006. name: "Dick (Anthro)",
  35007. image: {
  35008. source: "./media/characters/glint/dick-anthro.svg"
  35009. }
  35010. },
  35011. dickFeral: {
  35012. height: math.unit(2.65, "meters"),
  35013. name: "Dick (Feral)",
  35014. image: {
  35015. source: "./media/characters/glint/dick-feral.svg"
  35016. }
  35017. },
  35018. slitHidden: {
  35019. height: math.unit(5.85, "meters"),
  35020. name: "Slit (Hidden)",
  35021. image: {
  35022. source: "./media/characters/glint/slit-hidden.svg"
  35023. }
  35024. },
  35025. slitErect: {
  35026. height: math.unit(5.85, "meters"),
  35027. name: "Slit (Erect)",
  35028. image: {
  35029. source: "./media/characters/glint/slit-erect.svg"
  35030. }
  35031. },
  35032. mawAnthro: {
  35033. height: math.unit(0.63, "meters"),
  35034. name: "Maw (Anthro)",
  35035. image: {
  35036. source: "./media/characters/glint/maw.svg"
  35037. }
  35038. },
  35039. mawFeral: {
  35040. height: math.unit(2.89, "meters"),
  35041. name: "Maw (Feral)",
  35042. image: {
  35043. source: "./media/characters/glint/maw.svg"
  35044. }
  35045. },
  35046. },
  35047. [
  35048. {
  35049. name: "Normal",
  35050. height: math.unit(9, "feet"),
  35051. default: true
  35052. },
  35053. ]
  35054. ))
  35055. characterMakers.push(() => makeCharacter(
  35056. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35057. {
  35058. side: {
  35059. height: math.unit(15, "feet"),
  35060. weight: math.unit(5000, "kg"),
  35061. name: "Side",
  35062. image: {
  35063. source: "./media/characters/kairne/side.svg",
  35064. extra: 979/811,
  35065. bottom: 13/992
  35066. }
  35067. },
  35068. front: {
  35069. height: math.unit(15, "feet"),
  35070. weight: math.unit(5000, "kg"),
  35071. name: "Front",
  35072. image: {
  35073. source: "./media/characters/kairne/front.svg",
  35074. extra: 908/814,
  35075. bottom: 26/934
  35076. }
  35077. },
  35078. sideNsfw: {
  35079. height: math.unit(15, "feet"),
  35080. weight: math.unit(5000, "kg"),
  35081. name: "Side (NSFW)",
  35082. image: {
  35083. source: "./media/characters/kairne/side-nsfw.svg",
  35084. extra: 979/811,
  35085. bottom: 13/992
  35086. }
  35087. },
  35088. frontNsfw: {
  35089. height: math.unit(15, "feet"),
  35090. weight: math.unit(5000, "kg"),
  35091. name: "Front (NSFW)",
  35092. image: {
  35093. source: "./media/characters/kairne/front-nsfw.svg",
  35094. extra: 908/814,
  35095. bottom: 26/934
  35096. }
  35097. },
  35098. dickCaged: {
  35099. height: math.unit(0.65, "meters"),
  35100. name: "Dick-caged",
  35101. image: {
  35102. source: "./media/characters/kairne/dick-caged.svg"
  35103. }
  35104. },
  35105. dick: {
  35106. height: math.unit(0.79, "meters"),
  35107. name: "Dick",
  35108. image: {
  35109. source: "./media/characters/kairne/dick.svg"
  35110. }
  35111. },
  35112. genitals: {
  35113. height: math.unit(1.29, "meters"),
  35114. name: "Genitals",
  35115. image: {
  35116. source: "./media/characters/kairne/genitals.svg"
  35117. }
  35118. },
  35119. maw: {
  35120. height: math.unit(1.73, "meters"),
  35121. name: "Maw",
  35122. image: {
  35123. source: "./media/characters/kairne/maw.svg"
  35124. }
  35125. },
  35126. },
  35127. [
  35128. {
  35129. name: "Normal",
  35130. height: math.unit(15, "feet"),
  35131. default: true
  35132. },
  35133. ]
  35134. ))
  35135. characterMakers.push(() => makeCharacter(
  35136. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35137. {
  35138. front: {
  35139. height: math.unit(5 + 8/12, "feet"),
  35140. weight: math.unit(139, "lb"),
  35141. name: "Front",
  35142. image: {
  35143. source: "./media/characters/biscuit-jackal/front.svg",
  35144. extra: 2106/1961,
  35145. bottom: 58/2164
  35146. }
  35147. },
  35148. back: {
  35149. height: math.unit(5 + 8/12, "feet"),
  35150. weight: math.unit(139, "lb"),
  35151. name: "Back",
  35152. image: {
  35153. source: "./media/characters/biscuit-jackal/back.svg",
  35154. extra: 2132/1976,
  35155. bottom: 57/2189
  35156. }
  35157. },
  35158. werejackal: {
  35159. height: math.unit(6 + 3/12, "feet"),
  35160. weight: math.unit(188, "lb"),
  35161. name: "Werejackal",
  35162. image: {
  35163. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35164. extra: 2373/2178,
  35165. bottom: 53/2426
  35166. }
  35167. },
  35168. },
  35169. [
  35170. {
  35171. name: "Normal",
  35172. height: math.unit(5 + 8/12, "feet"),
  35173. default: true
  35174. },
  35175. ]
  35176. ))
  35177. characterMakers.push(() => makeCharacter(
  35178. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35179. {
  35180. front: {
  35181. height: math.unit(140, "cm"),
  35182. weight: math.unit(45, "kg"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/tayra-white/front.svg",
  35186. extra: 2229/2192,
  35187. bottom: 75/2304
  35188. }
  35189. },
  35190. },
  35191. [
  35192. {
  35193. name: "Normal",
  35194. height: math.unit(140, "cm"),
  35195. default: true
  35196. },
  35197. ]
  35198. ))
  35199. characterMakers.push(() => makeCharacter(
  35200. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35201. {
  35202. front: {
  35203. height: math.unit(4 + 5/12, "feet"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/scoop/front.svg",
  35207. extra: 1257/1136,
  35208. bottom: 69/1326
  35209. }
  35210. },
  35211. back: {
  35212. height: math.unit(4 + 5/12, "feet"),
  35213. name: "Back",
  35214. image: {
  35215. source: "./media/characters/scoop/back.svg",
  35216. extra: 1321/1152,
  35217. bottom: 32/1353
  35218. }
  35219. },
  35220. maw: {
  35221. height: math.unit(0.68, "feet"),
  35222. name: "Maw",
  35223. image: {
  35224. source: "./media/characters/scoop/maw.svg"
  35225. }
  35226. },
  35227. },
  35228. [
  35229. {
  35230. name: "Really Small",
  35231. height: math.unit(1, "mm")
  35232. },
  35233. {
  35234. name: "Micro",
  35235. height: math.unit(1, "inch")
  35236. },
  35237. {
  35238. name: "Normal",
  35239. height: math.unit(4 + 5/12, "feet"),
  35240. default: true
  35241. },
  35242. {
  35243. name: "Macro",
  35244. height: math.unit(200, "feet")
  35245. },
  35246. {
  35247. name: "Megamacro",
  35248. height: math.unit(3240, "feet")
  35249. },
  35250. {
  35251. name: "Teramacro",
  35252. height: math.unit(2500, "miles")
  35253. },
  35254. ]
  35255. ))
  35256. characterMakers.push(() => makeCharacter(
  35257. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35258. {
  35259. front: {
  35260. height: math.unit(15 + 7/12, "feet"),
  35261. weight: math.unit(1150, "tons"),
  35262. name: "Front",
  35263. image: {
  35264. source: "./media/characters/saphinara/front.svg",
  35265. extra: 1837/1643,
  35266. bottom: 84/1921
  35267. },
  35268. form: "normal",
  35269. default: true
  35270. },
  35271. side: {
  35272. height: math.unit(15 + 7/12, "feet"),
  35273. weight: math.unit(1150, "tons"),
  35274. name: "Side",
  35275. image: {
  35276. source: "./media/characters/saphinara/side.svg",
  35277. extra: 605/547,
  35278. bottom: 6/611
  35279. },
  35280. form: "normal"
  35281. },
  35282. back: {
  35283. height: math.unit(15 + 7/12, "feet"),
  35284. weight: math.unit(1150, "tons"),
  35285. name: "Back",
  35286. image: {
  35287. source: "./media/characters/saphinara/back.svg",
  35288. extra: 591/531,
  35289. bottom: 13/604
  35290. },
  35291. form: "normal"
  35292. },
  35293. frontTail: {
  35294. height: math.unit(15 + 7/12, "feet"),
  35295. weight: math.unit(1150, "tons"),
  35296. name: "Front (Full Tail)",
  35297. image: {
  35298. source: "./media/characters/saphinara/front-tail.svg",
  35299. extra: 2256/1630,
  35300. bottom: 261/2517
  35301. },
  35302. form: "normal"
  35303. },
  35304. insides: {
  35305. height: math.unit(11.92, "feet"),
  35306. name: "Insides",
  35307. image: {
  35308. source: "./media/characters/saphinara/insides.svg"
  35309. },
  35310. form: "normal"
  35311. },
  35312. head: {
  35313. height: math.unit(4.17, "feet"),
  35314. name: "Head",
  35315. image: {
  35316. source: "./media/characters/saphinara/head.svg"
  35317. },
  35318. form: "normal"
  35319. },
  35320. tongue: {
  35321. height: math.unit(4.60, "feet"),
  35322. name: "Tongue",
  35323. image: {
  35324. source: "./media/characters/saphinara/tongue.svg"
  35325. },
  35326. form: "normal"
  35327. },
  35328. headEnraged: {
  35329. height: math.unit(5.55, "feet"),
  35330. name: "Head (Enraged)",
  35331. image: {
  35332. source: "./media/characters/saphinara/head-enraged.svg"
  35333. },
  35334. form: "normal"
  35335. },
  35336. wings: {
  35337. height: math.unit(11.95, "feet"),
  35338. name: "Wings",
  35339. image: {
  35340. source: "./media/characters/saphinara/wings.svg"
  35341. },
  35342. form: "normal"
  35343. },
  35344. feathers: {
  35345. height: math.unit(8.92, "feet"),
  35346. name: "Feathers",
  35347. image: {
  35348. source: "./media/characters/saphinara/feathers.svg"
  35349. },
  35350. form: "normal"
  35351. },
  35352. shackles: {
  35353. height: math.unit(2, "feet"),
  35354. name: "Shackles",
  35355. image: {
  35356. source: "./media/characters/saphinara/shackles.svg"
  35357. },
  35358. form: "normal"
  35359. },
  35360. eyes: {
  35361. height: math.unit(1.331, "feet"),
  35362. name: "Eyes",
  35363. image: {
  35364. source: "./media/characters/saphinara/eyes.svg"
  35365. },
  35366. form: "normal"
  35367. },
  35368. eyesEnraged: {
  35369. height: math.unit(1.331, "feet"),
  35370. name: "Eyes (Enraged)",
  35371. image: {
  35372. source: "./media/characters/saphinara/eyes-enraged.svg"
  35373. },
  35374. form: "normal"
  35375. },
  35376. trueFormSide: {
  35377. height: math.unit(200, "feet"),
  35378. weight: math.unit(1e7, "tons"),
  35379. name: "Side",
  35380. image: {
  35381. source: "./media/characters/saphinara/true-form-side.svg",
  35382. extra: 1399/770,
  35383. bottom: 97/1496
  35384. },
  35385. form: "true-form",
  35386. default: true
  35387. },
  35388. trueFormMaw: {
  35389. height: math.unit(71.5, "feet"),
  35390. name: "Maw",
  35391. image: {
  35392. source: "./media/characters/saphinara/true-form-maw.svg",
  35393. extra: 2302/1453,
  35394. bottom: 0/2302
  35395. },
  35396. form: "true-form"
  35397. },
  35398. meowberusSide: {
  35399. height: math.unit(75, "feet"),
  35400. weight: math.unit(180000, "kg"),
  35401. preyCapacity: math.unit(50000, "people"),
  35402. name: "Side",
  35403. image: {
  35404. source: "./media/characters/saphinara/meowberus-side.svg",
  35405. extra: 1400/711,
  35406. bottom: 126/1526
  35407. },
  35408. form: "meowberus",
  35409. extraAttributes: {
  35410. "pawArea": {
  35411. name: "Paw Size",
  35412. power: 2,
  35413. type: "area",
  35414. base: math.unit(35, "m^2")
  35415. }
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(15 + 7/12, "feet"),
  35423. default: true,
  35424. form: "normal"
  35425. },
  35426. {
  35427. name: "Angry",
  35428. height: math.unit(30 + 6/12, "feet"),
  35429. form: "normal"
  35430. },
  35431. {
  35432. name: "Enraged",
  35433. height: math.unit(102 + 1/12, "feet"),
  35434. form: "normal"
  35435. },
  35436. {
  35437. name: "True",
  35438. height: math.unit(200, "feet"),
  35439. default: true,
  35440. form: "true-form"
  35441. },
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(75, "feet"),
  35445. default: true,
  35446. form: "meowberus"
  35447. },
  35448. ],
  35449. {
  35450. "normal": {
  35451. name: "Normal",
  35452. default: true
  35453. },
  35454. "true-form": {
  35455. name: "True Form"
  35456. },
  35457. "meowberus": {
  35458. name: "Meowberus",
  35459. },
  35460. }
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(6 + 8/12, "feet"),
  35467. weight: math.unit(300, "lb"),
  35468. name: "Front",
  35469. image: {
  35470. source: "./media/characters/jrain/front.svg",
  35471. extra: 3039/2865,
  35472. bottom: 399/3438
  35473. }
  35474. },
  35475. back: {
  35476. height: math.unit(6 + 8/12, "feet"),
  35477. weight: math.unit(300, "lb"),
  35478. name: "Back",
  35479. image: {
  35480. source: "./media/characters/jrain/back.svg",
  35481. extra: 3089/2938,
  35482. bottom: 172/3261
  35483. }
  35484. },
  35485. head: {
  35486. height: math.unit(2.14, "feet"),
  35487. name: "Head",
  35488. image: {
  35489. source: "./media/characters/jrain/head.svg"
  35490. }
  35491. },
  35492. maw: {
  35493. height: math.unit(1.77, "feet"),
  35494. name: "Maw",
  35495. image: {
  35496. source: "./media/characters/jrain/maw.svg"
  35497. }
  35498. },
  35499. leftHand: {
  35500. height: math.unit(1.1, "feet"),
  35501. name: "Left Hand",
  35502. image: {
  35503. source: "./media/characters/jrain/left-hand.svg"
  35504. }
  35505. },
  35506. rightHand: {
  35507. height: math.unit(1.1, "feet"),
  35508. name: "Right Hand",
  35509. image: {
  35510. source: "./media/characters/jrain/right-hand.svg"
  35511. }
  35512. },
  35513. eye: {
  35514. height: math.unit(0.35, "feet"),
  35515. name: "Eye",
  35516. image: {
  35517. source: "./media/characters/jrain/eye.svg"
  35518. }
  35519. },
  35520. },
  35521. [
  35522. {
  35523. name: "Normal",
  35524. height: math.unit(6 + 8/12, "feet"),
  35525. default: true
  35526. },
  35527. {
  35528. name: "Casually Large",
  35529. height: math.unit(25, "feet")
  35530. },
  35531. {
  35532. name: "Giant",
  35533. height: math.unit(100, "feet")
  35534. },
  35535. {
  35536. name: "Kaiju",
  35537. height: math.unit(300, "feet")
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35543. {
  35544. dragon: {
  35545. height: math.unit(5, "meters"),
  35546. name: "Dragon",
  35547. image: {
  35548. source: "./media/characters/sabrina/dragon.svg",
  35549. extra: 3670 / 2365,
  35550. bottom: 333 / 4003
  35551. }
  35552. },
  35553. gryphon: {
  35554. height: math.unit(3, "meters"),
  35555. name: "Gryphon",
  35556. image: {
  35557. source: "./media/characters/sabrina/gryphon.svg",
  35558. extra: 1576 / 945,
  35559. bottom: 71 / 1647
  35560. }
  35561. },
  35562. snake: {
  35563. height: math.unit(12, "meters"),
  35564. name: "Snake",
  35565. image: {
  35566. source: "./media/characters/sabrina/snake.svg",
  35567. extra: 1758 / 1320,
  35568. bottom: 186 / 1944
  35569. }
  35570. },
  35571. collar: {
  35572. height: math.unit(1.86, "meters"),
  35573. name: "Collar",
  35574. image: {
  35575. source: "./media/characters/sabrina/collar.svg"
  35576. }
  35577. },
  35578. eye: {
  35579. height: math.unit(0.53, "meters"),
  35580. name: "Eye",
  35581. image: {
  35582. source: "./media/characters/sabrina/eye.svg"
  35583. }
  35584. },
  35585. foot: {
  35586. height: math.unit(1.86, "meters"),
  35587. name: "Foot",
  35588. image: {
  35589. source: "./media/characters/sabrina/foot.svg"
  35590. }
  35591. },
  35592. hand: {
  35593. height: math.unit(1.32, "meters"),
  35594. name: "Hand",
  35595. image: {
  35596. source: "./media/characters/sabrina/hand.svg"
  35597. }
  35598. },
  35599. head: {
  35600. height: math.unit(2.44, "meters"),
  35601. name: "Head",
  35602. image: {
  35603. source: "./media/characters/sabrina/head.svg"
  35604. }
  35605. },
  35606. headAngry: {
  35607. height: math.unit(2.44, "meters"),
  35608. name: "Head (Angry))",
  35609. image: {
  35610. source: "./media/characters/sabrina/head-angry.svg"
  35611. }
  35612. },
  35613. maw: {
  35614. height: math.unit(1.65, "meters"),
  35615. name: "Maw",
  35616. image: {
  35617. source: "./media/characters/sabrina/maw.svg"
  35618. }
  35619. },
  35620. spikes: {
  35621. height: math.unit(1.69, "meters"),
  35622. name: "Spikes",
  35623. image: {
  35624. source: "./media/characters/sabrina/spikes.svg"
  35625. }
  35626. },
  35627. stomach: {
  35628. height: math.unit(1.15, "meters"),
  35629. name: "Stomach",
  35630. image: {
  35631. source: "./media/characters/sabrina/stomach.svg"
  35632. }
  35633. },
  35634. tongue: {
  35635. height: math.unit(1.27, "meters"),
  35636. name: "Tongue",
  35637. image: {
  35638. source: "./media/characters/sabrina/tongue.svg"
  35639. }
  35640. },
  35641. wingDorsal: {
  35642. height: math.unit(4.85, "meters"),
  35643. name: "Wing (Dorsal)",
  35644. image: {
  35645. source: "./media/characters/sabrina/wing-dorsal.svg"
  35646. }
  35647. },
  35648. wingVentral: {
  35649. height: math.unit(4.85, "meters"),
  35650. name: "Wing (Ventral)",
  35651. image: {
  35652. source: "./media/characters/sabrina/wing-ventral.svg"
  35653. }
  35654. },
  35655. },
  35656. [
  35657. {
  35658. name: "Normal",
  35659. height: math.unit(5, "meters"),
  35660. default: true
  35661. },
  35662. ]
  35663. ))
  35664. characterMakers.push(() => makeCharacter(
  35665. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35666. {
  35667. frontMaid: {
  35668. height: math.unit(5 + 5/12, "feet"),
  35669. weight: math.unit(130, "lb"),
  35670. name: "Front (Maid)",
  35671. image: {
  35672. source: "./media/characters/midnight-tales/front-maid.svg",
  35673. extra: 489/454,
  35674. bottom: 61/550
  35675. }
  35676. },
  35677. frontFormal: {
  35678. height: math.unit(5 + 5/12, "feet"),
  35679. weight: math.unit(130, "lb"),
  35680. name: "Front (Formal)",
  35681. image: {
  35682. source: "./media/characters/midnight-tales/front-formal.svg",
  35683. extra: 489/454,
  35684. bottom: 61/550
  35685. }
  35686. },
  35687. back: {
  35688. height: math.unit(5 + 5/12, "feet"),
  35689. weight: math.unit(130, "lb"),
  35690. name: "Back",
  35691. image: {
  35692. source: "./media/characters/midnight-tales/back.svg",
  35693. extra: 498/456,
  35694. bottom: 33/531
  35695. }
  35696. },
  35697. frontBeast: {
  35698. height: math.unit(40, "feet"),
  35699. weight: math.unit(64000, "lb"),
  35700. name: "Front (Beast)",
  35701. image: {
  35702. source: "./media/characters/midnight-tales/front-beast.svg",
  35703. extra: 927/860,
  35704. bottom: 53/980
  35705. }
  35706. },
  35707. backBeast: {
  35708. height: math.unit(40, "feet"),
  35709. weight: math.unit(64000, "lb"),
  35710. name: "Back (Beast)",
  35711. image: {
  35712. source: "./media/characters/midnight-tales/back-beast.svg",
  35713. extra: 929/855,
  35714. bottom: 16/945
  35715. }
  35716. },
  35717. footBeast: {
  35718. height: math.unit(6.7, "feet"),
  35719. name: "Foot (Beast)",
  35720. image: {
  35721. source: "./media/characters/midnight-tales/foot-beast.svg"
  35722. }
  35723. },
  35724. headBeast: {
  35725. height: math.unit(8, "feet"),
  35726. name: "Head (Beast)",
  35727. image: {
  35728. source: "./media/characters/midnight-tales/head-beast.svg"
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Normal",
  35735. height: math.unit(5 + 5 / 12, "feet"),
  35736. default: true
  35737. },
  35738. {
  35739. name: "Macro",
  35740. height: math.unit(25, "feet")
  35741. },
  35742. ]
  35743. ))
  35744. characterMakers.push(() => makeCharacter(
  35745. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35746. {
  35747. front: {
  35748. height: math.unit(5 + 10/12, "feet"),
  35749. name: "Front",
  35750. image: {
  35751. source: "./media/characters/argon/front.svg",
  35752. extra: 2009/1935,
  35753. bottom: 118/2127
  35754. }
  35755. },
  35756. back: {
  35757. height: math.unit(5 + 10/12, "feet"),
  35758. name: "Back",
  35759. image: {
  35760. source: "./media/characters/argon/back.svg",
  35761. extra: 2047/1992,
  35762. bottom: 20/2067
  35763. }
  35764. },
  35765. frontDressed: {
  35766. height: math.unit(5 + 10/12, "feet"),
  35767. name: "Front (Dressed)",
  35768. image: {
  35769. source: "./media/characters/argon/front-dressed.svg",
  35770. extra: 2009/1935,
  35771. bottom: 118/2127
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(5 + 10/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(8 + 6/12, "feet"),
  35788. weight: math.unit(1150, "lb"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/kichi/front.svg",
  35792. extra: 1267/1164,
  35793. bottom: 61/1328
  35794. }
  35795. },
  35796. back: {
  35797. height: math.unit(8 + 6/12, "feet"),
  35798. weight: math.unit(1150, "lb"),
  35799. name: "Back",
  35800. image: {
  35801. source: "./media/characters/kichi/back.svg",
  35802. extra: 1273/1166,
  35803. bottom: 33/1306
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(8 + 6/12, "feet"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35817. {
  35818. front: {
  35819. height: math.unit(6, "feet"),
  35820. weight: math.unit(210, "lb"),
  35821. name: "Front",
  35822. image: {
  35823. source: "./media/characters/manetel-greyscale/front.svg",
  35824. extra: 350/312,
  35825. bottom: 8/358
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Micro",
  35832. height: math.unit(2, "inches")
  35833. },
  35834. {
  35835. name: "Normal",
  35836. height: math.unit(6, "feet"),
  35837. default: true
  35838. },
  35839. {
  35840. name: "Minimacro",
  35841. height: math.unit(17, "feet")
  35842. },
  35843. {
  35844. name: "Macro",
  35845. height: math.unit(117, "feet")
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35851. {
  35852. side: {
  35853. height: math.unit(5 + 1/12, "feet"),
  35854. weight: math.unit(418, "lb"),
  35855. name: "Side",
  35856. image: {
  35857. source: "./media/characters/softpurr/side.svg",
  35858. extra: 1993/1945,
  35859. bottom: 134/2127
  35860. }
  35861. },
  35862. front: {
  35863. height: math.unit(5 + 1/12, "feet"),
  35864. weight: math.unit(418, "lb"),
  35865. name: "Front",
  35866. image: {
  35867. source: "./media/characters/softpurr/front.svg",
  35868. extra: 1950/1856,
  35869. bottom: 174/2124
  35870. }
  35871. },
  35872. paw: {
  35873. height: math.unit(1, "feet"),
  35874. name: "Paw",
  35875. image: {
  35876. source: "./media/characters/softpurr/paw.svg"
  35877. }
  35878. },
  35879. },
  35880. [
  35881. {
  35882. name: "Normal",
  35883. height: math.unit(5 + 1/12, "feet"),
  35884. default: true
  35885. },
  35886. ]
  35887. ))
  35888. characterMakers.push(() => makeCharacter(
  35889. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35890. {
  35891. front: {
  35892. height: math.unit(260, "meters"),
  35893. name: "Front",
  35894. image: {
  35895. source: "./media/characters/anahita/front.svg",
  35896. extra: 665/635,
  35897. bottom: 89/754
  35898. }
  35899. },
  35900. },
  35901. [
  35902. {
  35903. name: "Macro",
  35904. height: math.unit(260, "meters"),
  35905. default: true
  35906. },
  35907. ]
  35908. ))
  35909. characterMakers.push(() => makeCharacter(
  35910. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35911. {
  35912. front: {
  35913. height: math.unit(4 + 10/12, "feet"),
  35914. weight: math.unit(160, "lb"),
  35915. name: "Front",
  35916. image: {
  35917. source: "./media/characters/chip-mouse/front.svg",
  35918. extra: 3528/3408,
  35919. bottom: 0/3528
  35920. }
  35921. },
  35922. frontNsfw: {
  35923. height: math.unit(4 + 10/12, "feet"),
  35924. weight: math.unit(160, "lb"),
  35925. name: "Front (NSFW)",
  35926. image: {
  35927. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35928. extra: 3528/3408,
  35929. bottom: 0/3528
  35930. }
  35931. },
  35932. },
  35933. [
  35934. {
  35935. name: "Normal",
  35936. height: math.unit(4 + 10/12, "feet"),
  35937. default: true
  35938. },
  35939. ]
  35940. ))
  35941. characterMakers.push(() => makeCharacter(
  35942. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35943. {
  35944. side: {
  35945. height: math.unit(10, "feet"),
  35946. weight: math.unit(14000, "lb"),
  35947. name: "Side",
  35948. image: {
  35949. source: "./media/characters/kremm/side.svg",
  35950. extra: 1390/1053,
  35951. bottom: 90/1480
  35952. }
  35953. },
  35954. gut: {
  35955. height: math.unit(5.8, "feet"),
  35956. name: "Gut",
  35957. image: {
  35958. source: "./media/characters/kremm/gut.svg"
  35959. }
  35960. },
  35961. ass: {
  35962. height: math.unit(6.1, "feet"),
  35963. name: "Ass",
  35964. image: {
  35965. source: "./media/characters/kremm/ass.svg"
  35966. }
  35967. },
  35968. jaws: {
  35969. height: math.unit(2.2, "feet"),
  35970. name: "Jaws",
  35971. image: {
  35972. source: "./media/characters/kremm/jaws.svg"
  35973. }
  35974. },
  35975. dick: {
  35976. height: math.unit(4.26, "feet"),
  35977. name: "Dick",
  35978. image: {
  35979. source: "./media/characters/kremm/dick.svg"
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(10, "feet"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(30, "stories"),
  35996. name: "Front",
  35997. image: {
  35998. source: "./media/characters/kai/front.svg",
  35999. extra: 1892/1718,
  36000. bottom: 162/2054
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Macro",
  36007. height: math.unit(30, "stories"),
  36008. default: true
  36009. },
  36010. ]
  36011. ))
  36012. characterMakers.push(() => makeCharacter(
  36013. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36014. {
  36015. front: {
  36016. height: math.unit(6 + 4/12, "feet"),
  36017. weight: math.unit(145, "lb"),
  36018. name: "Front",
  36019. image: {
  36020. source: "./media/characters/sykes/front.svg",
  36021. extra: 1321 / 1187,
  36022. bottom: 66 / 1387
  36023. }
  36024. },
  36025. back: {
  36026. height: math.unit(6 + 4/12, "feet"),
  36027. weight: math.unit(145, "lb"),
  36028. name: "Back",
  36029. image: {
  36030. source: "./media/characters/sykes/back.svg",
  36031. extra: 1326/1181,
  36032. bottom: 31/1357
  36033. }
  36034. },
  36035. traditionalOutfit: {
  36036. height: math.unit(6 + 4/12, "feet"),
  36037. weight: math.unit(145, "lb"),
  36038. name: "Traditional Outfit",
  36039. image: {
  36040. source: "./media/characters/sykes/traditional-outfit.svg",
  36041. extra: 1321 / 1187,
  36042. bottom: 66 / 1387
  36043. }
  36044. },
  36045. adventureOutfit: {
  36046. height: math.unit(6 + 4/12, "feet"),
  36047. weight: math.unit(145, "lb"),
  36048. name: "Adventure Outfit",
  36049. image: {
  36050. source: "./media/characters/sykes/adventure-outfit.svg",
  36051. extra: 1321 / 1187,
  36052. bottom: 66 / 1387
  36053. }
  36054. },
  36055. handLeft: {
  36056. height: math.unit(0.9, "feet"),
  36057. name: "Hand (Left)",
  36058. image: {
  36059. source: "./media/characters/sykes/hand-left.svg"
  36060. }
  36061. },
  36062. handRight: {
  36063. height: math.unit(0.839, "feet"),
  36064. name: "Hand (Right)",
  36065. image: {
  36066. source: "./media/characters/sykes/hand-right.svg"
  36067. }
  36068. },
  36069. leftFoot: {
  36070. height: math.unit(1.2, "feet"),
  36071. name: "Foot (Left)",
  36072. image: {
  36073. source: "./media/characters/sykes/foot-left.svg"
  36074. }
  36075. },
  36076. rightFoot: {
  36077. height: math.unit(1.2, "feet"),
  36078. name: "Foot (Right)",
  36079. image: {
  36080. source: "./media/characters/sykes/foot-right.svg"
  36081. }
  36082. },
  36083. maw: {
  36084. height: math.unit(1.93, "feet"),
  36085. name: "Maw",
  36086. image: {
  36087. source: "./media/characters/sykes/maw.svg"
  36088. }
  36089. },
  36090. teeth: {
  36091. height: math.unit(0.51, "feet"),
  36092. name: "Teeth",
  36093. image: {
  36094. source: "./media/characters/sykes/teeth.svg"
  36095. }
  36096. },
  36097. tongue: {
  36098. height: math.unit(2.13, "feet"),
  36099. name: "Tongue",
  36100. image: {
  36101. source: "./media/characters/sykes/tongue.svg"
  36102. }
  36103. },
  36104. uvula: {
  36105. height: math.unit(0.16, "feet"),
  36106. name: "Uvula",
  36107. image: {
  36108. source: "./media/characters/sykes/uvula.svg"
  36109. }
  36110. },
  36111. collar: {
  36112. height: math.unit(0.287, "feet"),
  36113. name: "Collar",
  36114. image: {
  36115. source: "./media/characters/sykes/collar.svg"
  36116. }
  36117. },
  36118. tail: {
  36119. height: math.unit(3.8, "feet"),
  36120. name: "Tail",
  36121. image: {
  36122. source: "./media/characters/sykes/tail.svg"
  36123. }
  36124. },
  36125. },
  36126. [
  36127. {
  36128. name: "Shrunken",
  36129. height: math.unit(5, "inches")
  36130. },
  36131. {
  36132. name: "Normal",
  36133. height: math.unit(6 + 4 / 12, "feet"),
  36134. default: true
  36135. },
  36136. {
  36137. name: "Big",
  36138. height: math.unit(15, "feet")
  36139. },
  36140. ]
  36141. ))
  36142. characterMakers.push(() => makeCharacter(
  36143. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36144. {
  36145. front: {
  36146. height: math.unit(5 + 8/12, "feet"),
  36147. weight: math.unit(190, "lb"),
  36148. name: "Front",
  36149. image: {
  36150. source: "./media/characters/oven-otter/front.svg",
  36151. extra: 1809/1740,
  36152. bottom: 181/1990
  36153. }
  36154. },
  36155. back: {
  36156. height: math.unit(5 + 8/12, "feet"),
  36157. weight: math.unit(190, "lb"),
  36158. name: "Back",
  36159. image: {
  36160. source: "./media/characters/oven-otter/back.svg",
  36161. extra: 1709/1635,
  36162. bottom: 118/1827
  36163. }
  36164. },
  36165. hand: {
  36166. height: math.unit(1.07, "feet"),
  36167. name: "Hand",
  36168. image: {
  36169. source: "./media/characters/oven-otter/hand.svg"
  36170. }
  36171. },
  36172. beans: {
  36173. height: math.unit(1.74, "feet"),
  36174. name: "Beans",
  36175. image: {
  36176. source: "./media/characters/oven-otter/beans.svg"
  36177. }
  36178. },
  36179. },
  36180. [
  36181. {
  36182. name: "Micro",
  36183. height: math.unit(0.5, "inches")
  36184. },
  36185. {
  36186. name: "Normal",
  36187. height: math.unit(5 + 8/12, "feet"),
  36188. default: true
  36189. },
  36190. {
  36191. name: "Macro",
  36192. height: math.unit(250, "feet")
  36193. },
  36194. {
  36195. name: "Really High",
  36196. height: math.unit(420, "feet")
  36197. },
  36198. ]
  36199. ))
  36200. characterMakers.push(() => makeCharacter(
  36201. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36202. {
  36203. front: {
  36204. height: math.unit(5, "meters"),
  36205. weight: math.unit(292000000000000, "kg"),
  36206. name: "Front",
  36207. image: {
  36208. source: "./media/characters/devourer/front.svg",
  36209. extra: 1800/1733,
  36210. bottom: 211/2011
  36211. }
  36212. },
  36213. maw: {
  36214. height: math.unit(1.1, "meter"),
  36215. name: "Maw",
  36216. image: {
  36217. source: "./media/characters/devourer/maw.svg"
  36218. }
  36219. },
  36220. },
  36221. [
  36222. {
  36223. name: "Small",
  36224. height: math.unit(3, "meters")
  36225. },
  36226. {
  36227. name: "Large",
  36228. height: math.unit(5, "meters"),
  36229. default: true
  36230. },
  36231. ]
  36232. ))
  36233. characterMakers.push(() => makeCharacter(
  36234. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36235. {
  36236. front: {
  36237. height: math.unit(6, "feet"),
  36238. weight: math.unit(400, "lb"),
  36239. name: "Front",
  36240. image: {
  36241. source: "./media/characters/ellarby/front.svg",
  36242. extra: 1909/1763,
  36243. bottom: 80/1989
  36244. }
  36245. },
  36246. back: {
  36247. height: math.unit(6, "feet"),
  36248. weight: math.unit(400, "lb"),
  36249. name: "Back",
  36250. image: {
  36251. source: "./media/characters/ellarby/back.svg",
  36252. extra: 1914/1784,
  36253. bottom: 172/2086
  36254. }
  36255. },
  36256. },
  36257. [
  36258. {
  36259. name: "Mischief",
  36260. height: math.unit(18, "inches")
  36261. },
  36262. {
  36263. name: "Trouble",
  36264. height: math.unit(12, "feet")
  36265. },
  36266. {
  36267. name: "Havoc",
  36268. height: math.unit(200, "feet"),
  36269. default: true
  36270. },
  36271. {
  36272. name: "Pandemonium",
  36273. height: math.unit(1, "mile")
  36274. },
  36275. {
  36276. name: "Catastrophe",
  36277. height: math.unit(100, "miles")
  36278. },
  36279. ]
  36280. ))
  36281. characterMakers.push(() => makeCharacter(
  36282. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36283. {
  36284. front: {
  36285. height: math.unit(4.7, "meters"),
  36286. weight: math.unit(6500, "kg"),
  36287. name: "Front",
  36288. image: {
  36289. source: "./media/characters/vex/front.svg",
  36290. extra: 1288/1140,
  36291. bottom: 100/1388
  36292. }
  36293. },
  36294. },
  36295. [
  36296. {
  36297. name: "Normal",
  36298. height: math.unit(4.7, "meters"),
  36299. default: true
  36300. },
  36301. ]
  36302. ))
  36303. characterMakers.push(() => makeCharacter(
  36304. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36305. {
  36306. normal: {
  36307. height: math.unit(6, "feet"),
  36308. weight: math.unit(350, "lb"),
  36309. name: "Normal",
  36310. image: {
  36311. source: "./media/characters/teshy/normal.svg",
  36312. extra: 1795/1735,
  36313. bottom: 16/1811
  36314. }
  36315. },
  36316. monsterFront: {
  36317. height: math.unit(12, "feet"),
  36318. weight: math.unit(4700, "lb"),
  36319. name: "Monster (Front)",
  36320. image: {
  36321. source: "./media/characters/teshy/monster-front.svg",
  36322. extra: 2042/2034,
  36323. bottom: 128/2170
  36324. }
  36325. },
  36326. monsterSide: {
  36327. height: math.unit(12, "feet"),
  36328. weight: math.unit(4700, "lb"),
  36329. name: "Monster (Side)",
  36330. image: {
  36331. source: "./media/characters/teshy/monster-side.svg",
  36332. extra: 2067/2056,
  36333. bottom: 70/2137
  36334. }
  36335. },
  36336. monsterBack: {
  36337. height: math.unit(12, "feet"),
  36338. weight: math.unit(4700, "lb"),
  36339. name: "Monster (Back)",
  36340. image: {
  36341. source: "./media/characters/teshy/monster-back.svg",
  36342. extra: 1921/1914,
  36343. bottom: 171/2092
  36344. }
  36345. },
  36346. },
  36347. [
  36348. {
  36349. name: "Normal",
  36350. height: math.unit(6, "feet"),
  36351. default: true
  36352. },
  36353. ]
  36354. ))
  36355. characterMakers.push(() => makeCharacter(
  36356. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36357. {
  36358. front: {
  36359. height: math.unit(6, "feet"),
  36360. name: "Front",
  36361. image: {
  36362. source: "./media/characters/ramey/front.svg",
  36363. extra: 790/787,
  36364. bottom: 27/817
  36365. }
  36366. },
  36367. },
  36368. [
  36369. {
  36370. name: "Normal",
  36371. height: math.unit(6, "feet"),
  36372. default: true
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36378. {
  36379. front: {
  36380. height: math.unit(5 + 5/12, "feet"),
  36381. weight: math.unit(120, "lb"),
  36382. name: "Front",
  36383. image: {
  36384. source: "./media/characters/phirae/front.svg",
  36385. extra: 2491/2436,
  36386. bottom: 38/2529
  36387. }
  36388. },
  36389. },
  36390. [
  36391. {
  36392. name: "Normal",
  36393. height: math.unit(5 + 5/12, "feet"),
  36394. default: true
  36395. },
  36396. ]
  36397. ))
  36398. characterMakers.push(() => makeCharacter(
  36399. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36400. {
  36401. front: {
  36402. height: math.unit(5 + 3/12, "feet"),
  36403. name: "Front",
  36404. image: {
  36405. source: "./media/characters/stagglas/front.svg",
  36406. extra: 962/882,
  36407. bottom: 53/1015
  36408. }
  36409. },
  36410. feral: {
  36411. height: math.unit(335, "cm"),
  36412. name: "Feral",
  36413. image: {
  36414. source: "./media/characters/stagglas/feral.svg",
  36415. extra: 1732/1090,
  36416. bottom: 48/1780
  36417. }
  36418. },
  36419. },
  36420. [
  36421. {
  36422. name: "Normal",
  36423. height: math.unit(5 + 3/12, "feet"),
  36424. default: true
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36430. {
  36431. front: {
  36432. height: math.unit(5 + 4/12, "feet"),
  36433. weight: math.unit(145, "lb"),
  36434. name: "Front",
  36435. image: {
  36436. source: "./media/characters/starra/front.svg",
  36437. extra: 1790/1691,
  36438. bottom: 91/1881
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(5 + 4/12, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(2.2, "meters"),
  36455. name: "Front",
  36456. image: {
  36457. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36458. extra: 1248/972,
  36459. bottom: 38/1286
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Normal",
  36466. height: math.unit(2.2, "meters"),
  36467. default: true
  36468. },
  36469. ]
  36470. ))
  36471. characterMakers.push(() => makeCharacter(
  36472. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36473. {
  36474. side: {
  36475. height: math.unit(8 + 2/12, "feet"),
  36476. weight: math.unit(1240, "lb"),
  36477. name: "Side",
  36478. image: {
  36479. source: "./media/characters/mika-valentine/side.svg",
  36480. extra: 2670/2501,
  36481. bottom: 250/2920
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(8 + 2/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(7 + 2/12, "feet"),
  36498. name: "Front",
  36499. image: {
  36500. source: "./media/characters/xoltol/front.svg",
  36501. extra: 2212/2124,
  36502. bottom: 84/2296
  36503. }
  36504. },
  36505. side: {
  36506. height: math.unit(7 + 2/12, "feet"),
  36507. name: "Side",
  36508. image: {
  36509. source: "./media/characters/xoltol/side.svg",
  36510. extra: 2273/2197,
  36511. bottom: 26/2299
  36512. }
  36513. },
  36514. hand: {
  36515. height: math.unit(2.5, "feet"),
  36516. name: "Hand",
  36517. image: {
  36518. source: "./media/characters/xoltol/hand.svg"
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Small-ish",
  36525. height: math.unit(5 + 11/12, "feet")
  36526. },
  36527. {
  36528. name: "Normal",
  36529. height: math.unit(7 + 2/12, "feet")
  36530. },
  36531. {
  36532. name: "\"Macro\"",
  36533. height: math.unit(14 + 9/12, "feet"),
  36534. default: true
  36535. },
  36536. {
  36537. name: "Alternate Height",
  36538. height: math.unit(20, "feet")
  36539. },
  36540. {
  36541. name: "Actually Macro",
  36542. height: math.unit(100, "feet")
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(5 + 2/12, "feet"),
  36551. name: "Front",
  36552. image: {
  36553. source: "./media/characters/kotetsu-redwood/front.svg",
  36554. extra: 1053/942,
  36555. bottom: 60/1113
  36556. }
  36557. },
  36558. },
  36559. [
  36560. {
  36561. name: "Normal",
  36562. height: math.unit(5 + 2/12, "feet"),
  36563. default: true
  36564. },
  36565. ]
  36566. ))
  36567. characterMakers.push(() => makeCharacter(
  36568. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36569. {
  36570. front: {
  36571. height: math.unit(2.4, "meters"),
  36572. weight: math.unit(125, "kg"),
  36573. name: "Front",
  36574. image: {
  36575. source: "./media/characters/lilith/front.svg",
  36576. extra: 1590/1513,
  36577. bottom: 203/1793
  36578. }
  36579. },
  36580. },
  36581. [
  36582. {
  36583. name: "Humanoid",
  36584. height: math.unit(2.4, "meters")
  36585. },
  36586. {
  36587. name: "Normal",
  36588. height: math.unit(6, "meters"),
  36589. default: true
  36590. },
  36591. {
  36592. name: "Largest",
  36593. height: math.unit(55, "meters")
  36594. },
  36595. ]
  36596. ))
  36597. characterMakers.push(() => makeCharacter(
  36598. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  36599. {
  36600. front: {
  36601. height: math.unit(8 + 4/12, "feet"),
  36602. weight: math.unit(535, "lb"),
  36603. name: "Front",
  36604. image: {
  36605. source: "./media/characters/beh'kah-bolger/front.svg",
  36606. extra: 1660/1603,
  36607. bottom: 37/1697
  36608. }
  36609. },
  36610. },
  36611. [
  36612. {
  36613. name: "Normal",
  36614. height: math.unit(8 + 4/12, "feet"),
  36615. default: true
  36616. },
  36617. {
  36618. name: "Kaiju",
  36619. height: math.unit(250, "feet")
  36620. },
  36621. {
  36622. name: "Still Growing",
  36623. height: math.unit(10, "miles")
  36624. },
  36625. {
  36626. name: "Continental",
  36627. height: math.unit(5000, "miles")
  36628. },
  36629. {
  36630. name: "Final Form",
  36631. height: math.unit(2500000, "miles")
  36632. },
  36633. ]
  36634. ))
  36635. characterMakers.push(() => makeCharacter(
  36636. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  36637. {
  36638. front: {
  36639. height: math.unit(7 + 2/12, "feet"),
  36640. weight: math.unit(230, "kg"),
  36641. name: "Front",
  36642. image: {
  36643. source: "./media/characters/tatyana-milewska/front.svg",
  36644. extra: 1199/1150,
  36645. bottom: 86/1285
  36646. }
  36647. },
  36648. },
  36649. [
  36650. {
  36651. name: "Normal",
  36652. height: math.unit(7 + 2/12, "feet"),
  36653. default: true
  36654. },
  36655. {
  36656. name: "Big",
  36657. height: math.unit(12, "feet")
  36658. },
  36659. {
  36660. name: "Minimacro",
  36661. height: math.unit(20, "feet")
  36662. },
  36663. {
  36664. name: "Macro",
  36665. height: math.unit(120, "feet")
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(7 + 8/12, "feet"),
  36674. weight: math.unit(152, "kg"),
  36675. name: "Front",
  36676. image: {
  36677. source: "./media/characters/helen-arri/front.svg",
  36678. extra: 440/423,
  36679. bottom: 14/454
  36680. }
  36681. },
  36682. back: {
  36683. height: math.unit(7 + 8/12, "feet"),
  36684. weight: math.unit(152, "kg"),
  36685. name: "Back",
  36686. image: {
  36687. source: "./media/characters/helen-arri/back.svg",
  36688. extra: 443/426,
  36689. bottom: 8/451
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(7 + 8/12, "feet"),
  36697. default: true
  36698. },
  36699. {
  36700. name: "Big",
  36701. height: math.unit(14, "feet")
  36702. },
  36703. {
  36704. name: "Minimacro",
  36705. height: math.unit(24, "feet")
  36706. },
  36707. {
  36708. name: "Macro",
  36709. height: math.unit(140, "feet")
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(6, "meters"),
  36718. name: "Front",
  36719. image: {
  36720. source: "./media/characters/ehanu-rehu/front.svg",
  36721. extra: 1800/1800,
  36722. bottom: 59/1859
  36723. }
  36724. },
  36725. },
  36726. [
  36727. {
  36728. name: "Normal",
  36729. height: math.unit(6, "meters"),
  36730. default: true
  36731. },
  36732. ]
  36733. ))
  36734. characterMakers.push(() => makeCharacter(
  36735. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36736. {
  36737. front: {
  36738. height: math.unit(7 + 3/12, "feet"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/renholder/front.svg",
  36742. extra: 3096/2960,
  36743. bottom: 250/3346
  36744. }
  36745. },
  36746. },
  36747. [
  36748. {
  36749. name: "Normal Bat",
  36750. height: math.unit(7 + 3/12, "feet"),
  36751. default: true
  36752. },
  36753. {
  36754. name: "Slightly Tall Bat",
  36755. height: math.unit(100, "feet")
  36756. },
  36757. {
  36758. name: "Big Bat",
  36759. height: math.unit(1000, "feet")
  36760. },
  36761. {
  36762. name: "City-Sized Bat",
  36763. height: math.unit(200000, "feet")
  36764. },
  36765. {
  36766. name: "Bigger Bat",
  36767. height: math.unit(10000, "miles")
  36768. },
  36769. {
  36770. name: "Solar Sized Bat",
  36771. height: math.unit(100, "AU")
  36772. },
  36773. {
  36774. name: "Galactic Bat",
  36775. height: math.unit(200000, "lightyears")
  36776. },
  36777. {
  36778. name: "Universally Known Bat",
  36779. height: math.unit(1, "universe")
  36780. },
  36781. ]
  36782. ))
  36783. characterMakers.push(() => makeCharacter(
  36784. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36785. {
  36786. front: {
  36787. height: math.unit(6 + 11/12, "feet"),
  36788. weight: math.unit(250, "lb"),
  36789. name: "Front",
  36790. image: {
  36791. source: "./media/characters/cookiecat/front.svg",
  36792. extra: 893/827,
  36793. bottom: 14/907
  36794. }
  36795. },
  36796. },
  36797. [
  36798. {
  36799. name: "Micro",
  36800. height: math.unit(3, "inches")
  36801. },
  36802. {
  36803. name: "Normal",
  36804. height: math.unit(6 + 11/12, "feet"),
  36805. default: true
  36806. },
  36807. {
  36808. name: "Macro",
  36809. height: math.unit(100, "feet")
  36810. },
  36811. {
  36812. name: "Macro+",
  36813. height: math.unit(404, "feet")
  36814. },
  36815. {
  36816. name: "Megamacro",
  36817. height: math.unit(165, "miles")
  36818. },
  36819. {
  36820. name: "Planetary",
  36821. height: math.unit(4600, "miles")
  36822. },
  36823. ]
  36824. ))
  36825. characterMakers.push(() => makeCharacter(
  36826. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36827. {
  36828. front: {
  36829. height: math.unit(10 + 3/12, "feet"),
  36830. weight: math.unit(1500, "lb"),
  36831. name: "Front",
  36832. image: {
  36833. source: "./media/characters/tux-kusanagi/front.svg",
  36834. extra: 944/840,
  36835. bottom: 39/983
  36836. }
  36837. },
  36838. back: {
  36839. height: math.unit(10 + 3/12, "feet"),
  36840. weight: math.unit(1500, "lb"),
  36841. name: "Back",
  36842. image: {
  36843. source: "./media/characters/tux-kusanagi/back.svg",
  36844. extra: 941/842,
  36845. bottom: 28/969
  36846. }
  36847. },
  36848. rump: {
  36849. height: math.unit(5.25, "feet"),
  36850. name: "Rump",
  36851. image: {
  36852. source: "./media/characters/tux-kusanagi/rump.svg"
  36853. }
  36854. },
  36855. beak: {
  36856. height: math.unit(1.54, "feet"),
  36857. name: "Beak",
  36858. image: {
  36859. source: "./media/characters/tux-kusanagi/beak.svg"
  36860. }
  36861. },
  36862. },
  36863. [
  36864. {
  36865. name: "Normal",
  36866. height: math.unit(10 + 3/12, "feet"),
  36867. default: true
  36868. },
  36869. ]
  36870. ))
  36871. characterMakers.push(() => makeCharacter(
  36872. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36873. {
  36874. front: {
  36875. height: math.unit(58, "feet"),
  36876. weight: math.unit(200, "tons"),
  36877. name: "Front",
  36878. image: {
  36879. source: "./media/characters/uzarmazari/front.svg",
  36880. extra: 1575/1455,
  36881. bottom: 152/1727
  36882. }
  36883. },
  36884. back: {
  36885. height: math.unit(58, "feet"),
  36886. weight: math.unit(200, "tons"),
  36887. name: "Back",
  36888. image: {
  36889. source: "./media/characters/uzarmazari/back.svg",
  36890. extra: 1585/1510,
  36891. bottom: 157/1742
  36892. }
  36893. },
  36894. head: {
  36895. height: math.unit(26, "feet"),
  36896. name: "Head",
  36897. image: {
  36898. source: "./media/characters/uzarmazari/head.svg"
  36899. }
  36900. },
  36901. },
  36902. [
  36903. {
  36904. name: "Normal",
  36905. height: math.unit(58, "feet"),
  36906. default: true
  36907. },
  36908. ]
  36909. ))
  36910. characterMakers.push(() => makeCharacter(
  36911. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36912. {
  36913. side: {
  36914. height: math.unit(15, "feet"),
  36915. name: "Side",
  36916. image: {
  36917. source: "./media/characters/akitu/side.svg",
  36918. extra: 1421/1321,
  36919. bottom: 157/1578
  36920. }
  36921. },
  36922. front: {
  36923. height: math.unit(15, "feet"),
  36924. name: "Front",
  36925. image: {
  36926. source: "./media/characters/akitu/front.svg",
  36927. extra: 1435/1326,
  36928. bottom: 232/1667
  36929. }
  36930. },
  36931. },
  36932. [
  36933. {
  36934. name: "Normal",
  36935. height: math.unit(15, "feet"),
  36936. default: true
  36937. },
  36938. ]
  36939. ))
  36940. characterMakers.push(() => makeCharacter(
  36941. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36942. {
  36943. front: {
  36944. height: math.unit(10 + 8/12, "feet"),
  36945. name: "Front",
  36946. image: {
  36947. source: "./media/characters/azalie-croixland/front.svg",
  36948. extra: 1972/1856,
  36949. bottom: 31/2003
  36950. }
  36951. },
  36952. },
  36953. [
  36954. {
  36955. name: "Original Height",
  36956. height: math.unit(5 + 4/12, "feet")
  36957. },
  36958. {
  36959. name: "Normal Height",
  36960. height: math.unit(10 + 8/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36967. {
  36968. side: {
  36969. height: math.unit(7 + 1/12, "feet"),
  36970. weight: math.unit(245, "lb"),
  36971. name: "Side",
  36972. image: {
  36973. source: "./media/characters/kavus-kazian/side.svg",
  36974. extra: 349/342,
  36975. bottom: 15/364
  36976. }
  36977. },
  36978. },
  36979. [
  36980. {
  36981. name: "Normal",
  36982. height: math.unit(7 + 1/12, "feet"),
  36983. default: true
  36984. },
  36985. ]
  36986. ))
  36987. characterMakers.push(() => makeCharacter(
  36988. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36989. {
  36990. normalFront: {
  36991. height: math.unit(5 + 11/12, "feet"),
  36992. name: "Front",
  36993. image: {
  36994. source: "./media/characters/moonlight-rose/normal-front.svg",
  36995. extra: 1980/1825,
  36996. bottom: 18/1998
  36997. },
  36998. form: "normal",
  36999. default: true
  37000. },
  37001. normalBack: {
  37002. height: math.unit(5 + 11/12, "feet"),
  37003. name: "Back",
  37004. image: {
  37005. source: "./media/characters/moonlight-rose/normal-back.svg",
  37006. extra: 2010/1839,
  37007. bottom: 10/2020
  37008. },
  37009. form: "normal"
  37010. },
  37011. demonFront: {
  37012. height: math.unit(1.5, "earths"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/moonlight-rose/demon.svg",
  37016. extra: 1400/1294,
  37017. bottom: 45/1445
  37018. },
  37019. form: "demon",
  37020. default: true
  37021. },
  37022. terraFront: {
  37023. height: math.unit(1.5, "earths"),
  37024. name: "Front",
  37025. image: {
  37026. source: "./media/characters/moonlight-rose/terra.svg"
  37027. },
  37028. form: "terra",
  37029. default: true
  37030. },
  37031. jupiterFront: {
  37032. height: math.unit(69911*2, "km"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37036. extra: 1367/1286,
  37037. bottom: 55/1422
  37038. },
  37039. form: "jupiter",
  37040. default: true
  37041. },
  37042. neptuneFront: {
  37043. height: math.unit(24622*2, "feet"),
  37044. name: "Front",
  37045. image: {
  37046. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37047. extra: 1851/1712,
  37048. bottom: 0/1851
  37049. },
  37050. form: "neptune",
  37051. default: true
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "\"Natural\" Height",
  37057. height: math.unit(5 + 11/12, "feet"),
  37058. form: "normal"
  37059. },
  37060. {
  37061. name: "Smallest comfortable size",
  37062. height: math.unit(40, "meters"),
  37063. form: "normal"
  37064. },
  37065. {
  37066. name: "Common size",
  37067. height: math.unit(50, "km"),
  37068. form: "normal",
  37069. default: true
  37070. },
  37071. {
  37072. name: "Normal",
  37073. height: math.unit(1.5, "earths"),
  37074. form: "demon",
  37075. default: true
  37076. },
  37077. {
  37078. name: "Universal",
  37079. height: math.unit(15, "universes"),
  37080. form: "demon"
  37081. },
  37082. {
  37083. name: "Earth",
  37084. height: math.unit(1.5, "earths"),
  37085. form: "terra",
  37086. default: true
  37087. },
  37088. {
  37089. name: "Super Earth",
  37090. height: math.unit(67.5, "earths"),
  37091. form: "terra"
  37092. },
  37093. {
  37094. name: "Doesn't fit in a solar system...",
  37095. height: math.unit(1, "galaxy"),
  37096. form: "terra"
  37097. },
  37098. {
  37099. name: "Saturn",
  37100. height: math.unit(58232*2, "km"),
  37101. form: "jupiter"
  37102. },
  37103. {
  37104. name: "Jupiter",
  37105. height: math.unit(69911*2, "km"),
  37106. form: "jupiter",
  37107. default: true
  37108. },
  37109. {
  37110. name: "HD 100546 b",
  37111. height: math.unit(482938, "km"),
  37112. form: "jupiter"
  37113. },
  37114. {
  37115. name: "Enceladus",
  37116. height: math.unit(513*2, "km"),
  37117. form: "neptune"
  37118. },
  37119. {
  37120. name: "Europe",
  37121. height: math.unit(1560*2, "km"),
  37122. form: "neptune"
  37123. },
  37124. {
  37125. name: "Neptune",
  37126. height: math.unit(24622*2, "km"),
  37127. form: "neptune",
  37128. default: true
  37129. },
  37130. {
  37131. name: "CoRoT-9b",
  37132. height: math.unit(75067*2, "km"),
  37133. form: "neptune"
  37134. },
  37135. ],
  37136. {
  37137. "normal": {
  37138. name: "Normal",
  37139. default: true
  37140. },
  37141. "demon": {
  37142. name: "Demon"
  37143. },
  37144. "terra": {
  37145. name: "Terra"
  37146. },
  37147. "jupiter": {
  37148. name: "Jupiter"
  37149. },
  37150. "neptune": {
  37151. name: "Neptune"
  37152. }
  37153. }
  37154. ))
  37155. characterMakers.push(() => makeCharacter(
  37156. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37157. {
  37158. front: {
  37159. height: math.unit(16, "feet"),
  37160. weight: math.unit(610, "kg"),
  37161. name: "Front",
  37162. image: {
  37163. source: "./media/characters/huckle/front.svg",
  37164. extra: 1731/1625,
  37165. bottom: 33/1764
  37166. }
  37167. },
  37168. back: {
  37169. height: math.unit(16, "feet"),
  37170. weight: math.unit(610, "kg"),
  37171. name: "Back",
  37172. image: {
  37173. source: "./media/characters/huckle/back.svg",
  37174. extra: 1738/1651,
  37175. bottom: 37/1775
  37176. }
  37177. },
  37178. laughing: {
  37179. height: math.unit(3.75, "feet"),
  37180. name: "Laughing",
  37181. image: {
  37182. source: "./media/characters/huckle/laughing.svg"
  37183. }
  37184. },
  37185. angry: {
  37186. height: math.unit(4.15, "feet"),
  37187. name: "Angry",
  37188. image: {
  37189. source: "./media/characters/huckle/angry.svg"
  37190. }
  37191. },
  37192. },
  37193. [
  37194. {
  37195. name: "Normal",
  37196. height: math.unit(16, "feet"),
  37197. default: true
  37198. },
  37199. {
  37200. name: "Mini Macro",
  37201. height: math.unit(463, "feet")
  37202. },
  37203. {
  37204. name: "Macro",
  37205. height: math.unit(1680, "meters")
  37206. },
  37207. {
  37208. name: "Mega Macro",
  37209. height: math.unit(175, "km")
  37210. },
  37211. {
  37212. name: "Terra Macro",
  37213. height: math.unit(32, "gigameters")
  37214. },
  37215. {
  37216. name: "Multiverse+",
  37217. height: math.unit(2.56e23, "yottameters")
  37218. },
  37219. ]
  37220. ))
  37221. characterMakers.push(() => makeCharacter(
  37222. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37223. {
  37224. front: {
  37225. height: math.unit(6 + 9/12, "feet"),
  37226. weight: math.unit(280, "lb"),
  37227. name: "Front",
  37228. image: {
  37229. source: "./media/characters/candy/front.svg",
  37230. extra: 234/217,
  37231. bottom: 11/245
  37232. }
  37233. },
  37234. },
  37235. [
  37236. {
  37237. name: "Really Small",
  37238. height: math.unit(0.1, "nm")
  37239. },
  37240. {
  37241. name: "Micro",
  37242. height: math.unit(2, "inches")
  37243. },
  37244. {
  37245. name: "Normal",
  37246. height: math.unit(6 + 9/12, "feet"),
  37247. default: true
  37248. },
  37249. {
  37250. name: "Small Macro",
  37251. height: math.unit(69, "feet")
  37252. },
  37253. {
  37254. name: "Macro",
  37255. height: math.unit(160, "feet")
  37256. },
  37257. {
  37258. name: "Megamacro",
  37259. height: math.unit(22000, "miles")
  37260. },
  37261. {
  37262. name: "Gigamacro",
  37263. height: math.unit(50000, "miles")
  37264. },
  37265. ]
  37266. ))
  37267. characterMakers.push(() => makeCharacter(
  37268. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37269. {
  37270. front: {
  37271. height: math.unit(4, "feet"),
  37272. weight: math.unit(90, "lb"),
  37273. name: "Front",
  37274. image: {
  37275. source: "./media/characters/joey-mcdonald/front.svg",
  37276. extra: 1059/852,
  37277. bottom: 33/1092
  37278. }
  37279. },
  37280. back: {
  37281. height: math.unit(4, "feet"),
  37282. weight: math.unit(90, "lb"),
  37283. name: "Back",
  37284. image: {
  37285. source: "./media/characters/joey-mcdonald/back.svg",
  37286. extra: 1077/879,
  37287. bottom: 5/1082
  37288. }
  37289. },
  37290. frontKobold: {
  37291. height: math.unit(4, "feet"),
  37292. weight: math.unit(100, "lb"),
  37293. name: "Front-kobold",
  37294. image: {
  37295. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37296. extra: 1480/1367,
  37297. bottom: 0/1480
  37298. }
  37299. },
  37300. backKobold: {
  37301. height: math.unit(4, "feet"),
  37302. weight: math.unit(100, "lb"),
  37303. name: "Back-kobold",
  37304. image: {
  37305. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37306. extra: 1449/1361,
  37307. bottom: 0/1449
  37308. }
  37309. },
  37310. },
  37311. [
  37312. {
  37313. name: "Normal",
  37314. height: math.unit(4, "feet"),
  37315. default: true
  37316. },
  37317. ]
  37318. ))
  37319. characterMakers.push(() => makeCharacter(
  37320. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37321. {
  37322. front: {
  37323. height: math.unit(12 + 6/12, "feet"),
  37324. name: "Front",
  37325. image: {
  37326. source: "./media/characters/kass-lockheed/front.svg",
  37327. extra: 354/343,
  37328. bottom: 9/363
  37329. }
  37330. },
  37331. back: {
  37332. height: math.unit(12 + 6/12, "feet"),
  37333. name: "Back",
  37334. image: {
  37335. source: "./media/characters/kass-lockheed/back.svg",
  37336. extra: 364/352,
  37337. bottom: 3/367
  37338. }
  37339. },
  37340. dick: {
  37341. height: math.unit(3.12, "feet"),
  37342. name: "Dick",
  37343. image: {
  37344. source: "./media/characters/kass-lockheed/dick.svg"
  37345. }
  37346. },
  37347. head: {
  37348. height: math.unit(2.6, "feet"),
  37349. name: "Head",
  37350. image: {
  37351. source: "./media/characters/kass-lockheed/head.svg"
  37352. }
  37353. },
  37354. bleh: {
  37355. height: math.unit(2.85, "feet"),
  37356. name: "Bleh",
  37357. image: {
  37358. source: "./media/characters/kass-lockheed/bleh.svg"
  37359. }
  37360. },
  37361. smug: {
  37362. height: math.unit(2.85, "feet"),
  37363. name: "Smug",
  37364. image: {
  37365. source: "./media/characters/kass-lockheed/smug.svg"
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(12 + 6/12, "feet"),
  37373. default: true
  37374. },
  37375. ]
  37376. ))
  37377. characterMakers.push(() => makeCharacter(
  37378. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37379. {
  37380. front: {
  37381. height: math.unit(6 + 2/12, "feet"),
  37382. name: "Front",
  37383. image: {
  37384. source: "./media/characters/taylor/front.svg",
  37385. extra: 639/495,
  37386. bottom: 12/651
  37387. }
  37388. },
  37389. },
  37390. [
  37391. {
  37392. name: "Normal",
  37393. height: math.unit(6 + 2/12, "feet"),
  37394. default: true
  37395. },
  37396. {
  37397. name: "Big",
  37398. height: math.unit(15, "feet")
  37399. },
  37400. {
  37401. name: "Lorg",
  37402. height: math.unit(80, "feet")
  37403. },
  37404. {
  37405. name: "Too Lorg",
  37406. height: math.unit(120, "feet")
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37412. {
  37413. front: {
  37414. height: math.unit(15, "feet"),
  37415. name: "Front",
  37416. image: {
  37417. source: "./media/characters/kaizer/front.svg",
  37418. extra: 1612/1436,
  37419. bottom: 43/1655
  37420. }
  37421. },
  37422. },
  37423. [
  37424. {
  37425. name: "Normal",
  37426. height: math.unit(15, "feet"),
  37427. default: true
  37428. },
  37429. ]
  37430. ))
  37431. characterMakers.push(() => makeCharacter(
  37432. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37433. {
  37434. front: {
  37435. height: math.unit(2, "feet"),
  37436. weight: math.unit(30, "lb"),
  37437. name: "Front",
  37438. image: {
  37439. source: "./media/characters/sandy/front.svg",
  37440. extra: 1439/1307,
  37441. bottom: 194/1633
  37442. }
  37443. },
  37444. },
  37445. [
  37446. {
  37447. name: "Normal",
  37448. height: math.unit(2, "feet"),
  37449. default: true
  37450. },
  37451. ]
  37452. ))
  37453. characterMakers.push(() => makeCharacter(
  37454. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37455. {
  37456. front: {
  37457. height: math.unit(3, "feet"),
  37458. name: "Front",
  37459. image: {
  37460. source: "./media/characters/mellvi/front.svg",
  37461. extra: 1831/1630,
  37462. bottom: 58/1889
  37463. }
  37464. },
  37465. },
  37466. [
  37467. {
  37468. name: "Normal",
  37469. height: math.unit(3, "feet"),
  37470. default: true
  37471. },
  37472. ]
  37473. ))
  37474. characterMakers.push(() => makeCharacter(
  37475. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37476. {
  37477. front: {
  37478. height: math.unit(5 + 11/12, "feet"),
  37479. weight: math.unit(200, "lb"),
  37480. name: "Front",
  37481. image: {
  37482. source: "./media/characters/shirou/front.svg",
  37483. extra: 2491/2383,
  37484. bottom: 189/2680
  37485. }
  37486. },
  37487. back: {
  37488. height: math.unit(5 + 11/12, "feet"),
  37489. weight: math.unit(200, "lb"),
  37490. name: "Back",
  37491. image: {
  37492. source: "./media/characters/shirou/back.svg",
  37493. extra: 2554/2450,
  37494. bottom: 76/2630
  37495. }
  37496. },
  37497. },
  37498. [
  37499. {
  37500. name: "Normal",
  37501. height: math.unit(5 + 11/12, "feet"),
  37502. default: true
  37503. },
  37504. ]
  37505. ))
  37506. characterMakers.push(() => makeCharacter(
  37507. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37508. {
  37509. front: {
  37510. height: math.unit(6 + 3/12, "feet"),
  37511. weight: math.unit(177, "lb"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/noryu/front.svg",
  37515. extra: 973/885,
  37516. bottom: 10/983
  37517. }
  37518. },
  37519. },
  37520. [
  37521. {
  37522. name: "Normal",
  37523. height: math.unit(6 + 3/12, "feet"),
  37524. default: true
  37525. },
  37526. ]
  37527. ))
  37528. characterMakers.push(() => makeCharacter(
  37529. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37530. {
  37531. front: {
  37532. height: math.unit(5 + 6/12, "feet"),
  37533. weight: math.unit(170, "lb"),
  37534. name: "Front",
  37535. image: {
  37536. source: "./media/characters/mevolas-rubenido/front.svg",
  37537. extra: 2109/1901,
  37538. bottom: 96/2205
  37539. }
  37540. },
  37541. },
  37542. [
  37543. {
  37544. name: "Normal",
  37545. height: math.unit(5 + 6/12, "feet"),
  37546. default: true
  37547. },
  37548. ]
  37549. ))
  37550. characterMakers.push(() => makeCharacter(
  37551. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37552. {
  37553. front: {
  37554. height: math.unit(100, "feet"),
  37555. name: "Front",
  37556. image: {
  37557. source: "./media/characters/dee/front.svg",
  37558. extra: 2153/2036,
  37559. bottom: 59/2212
  37560. }
  37561. },
  37562. back: {
  37563. height: math.unit(100, "feet"),
  37564. name: "Back",
  37565. image: {
  37566. source: "./media/characters/dee/back.svg",
  37567. extra: 2183/2058,
  37568. bottom: 75/2258
  37569. }
  37570. },
  37571. foot: {
  37572. height: math.unit(19.43, "feet"),
  37573. name: "Foot",
  37574. image: {
  37575. source: "./media/characters/dee/foot.svg"
  37576. }
  37577. },
  37578. hoof: {
  37579. height: math.unit(20.6, "feet"),
  37580. name: "Hoof",
  37581. image: {
  37582. source: "./media/characters/dee/hoof.svg"
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Macro",
  37589. height: math.unit(100, "feet"),
  37590. default: true
  37591. },
  37592. ]
  37593. ))
  37594. characterMakers.push(() => makeCharacter(
  37595. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  37596. {
  37597. front: {
  37598. height: math.unit(5 + 6/12, "feet"),
  37599. name: "Front",
  37600. image: {
  37601. source: "./media/characters/teh/front.svg",
  37602. extra: 1002/847,
  37603. bottom: 62/1064
  37604. }
  37605. },
  37606. },
  37607. [
  37608. {
  37609. name: "Normal",
  37610. height: math.unit(5 + 6/12, "feet"),
  37611. default: true
  37612. },
  37613. ]
  37614. ))
  37615. characterMakers.push(() => makeCharacter(
  37616. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  37617. {
  37618. side: {
  37619. height: math.unit(6 + 1/12, "feet"),
  37620. weight: math.unit(204, "lb"),
  37621. name: "Side",
  37622. image: {
  37623. source: "./media/characters/quicksilver-ayukoti/side.svg",
  37624. extra: 974/775,
  37625. bottom: 169/1143
  37626. }
  37627. },
  37628. sitting: {
  37629. height: math.unit(6 + 2/12, "feet"),
  37630. weight: math.unit(204, "lb"),
  37631. name: "Sitting",
  37632. image: {
  37633. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  37634. extra: 1175/964,
  37635. bottom: 378/1553
  37636. }
  37637. },
  37638. },
  37639. [
  37640. {
  37641. name: "Normal",
  37642. height: math.unit(6 + 1/12, "feet"),
  37643. default: true
  37644. },
  37645. ]
  37646. ))
  37647. characterMakers.push(() => makeCharacter(
  37648. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  37649. {
  37650. front: {
  37651. height: math.unit(6, "inches"),
  37652. name: "Front",
  37653. image: {
  37654. source: "./media/characters/tululi/front.svg",
  37655. extra: 1997/1876,
  37656. bottom: 20/2017
  37657. }
  37658. },
  37659. },
  37660. [
  37661. {
  37662. name: "Normal",
  37663. height: math.unit(6, "inches"),
  37664. default: true
  37665. },
  37666. ]
  37667. ))
  37668. characterMakers.push(() => makeCharacter(
  37669. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37670. {
  37671. front: {
  37672. height: math.unit(4 + 1/12, "feet"),
  37673. name: "Front",
  37674. image: {
  37675. source: "./media/characters/star/front.svg",
  37676. extra: 1493/1189,
  37677. bottom: 48/1541
  37678. }
  37679. },
  37680. },
  37681. [
  37682. {
  37683. name: "Normal",
  37684. height: math.unit(4 + 1/12, "feet"),
  37685. default: true
  37686. },
  37687. ]
  37688. ))
  37689. characterMakers.push(() => makeCharacter(
  37690. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37691. {
  37692. front: {
  37693. height: math.unit(6 + 3/12, "feet"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/comet/front.svg",
  37697. extra: 1681/1462,
  37698. bottom: 26/1707
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(6 + 3/12, "feet"),
  37706. default: true
  37707. },
  37708. ]
  37709. ))
  37710. characterMakers.push(() => makeCharacter(
  37711. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37712. {
  37713. front: {
  37714. height: math.unit(950, "feet"),
  37715. name: "Front",
  37716. image: {
  37717. source: "./media/characters/vortex/front.svg",
  37718. extra: 1497/1434,
  37719. bottom: 56/1553
  37720. }
  37721. },
  37722. maw: {
  37723. height: math.unit(285, "feet"),
  37724. name: "Maw",
  37725. image: {
  37726. source: "./media/characters/vortex/maw.svg"
  37727. }
  37728. },
  37729. },
  37730. [
  37731. {
  37732. name: "Macro",
  37733. height: math.unit(950, "feet"),
  37734. default: true
  37735. },
  37736. ]
  37737. ))
  37738. characterMakers.push(() => makeCharacter(
  37739. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37740. {
  37741. front: {
  37742. height: math.unit(600, "feet"),
  37743. weight: math.unit(0.02, "grams"),
  37744. name: "Front",
  37745. image: {
  37746. source: "./media/characters/doodle/front.svg",
  37747. extra: 1578/1413,
  37748. bottom: 37/1615
  37749. }
  37750. },
  37751. },
  37752. [
  37753. {
  37754. name: "Macro",
  37755. height: math.unit(600, "feet"),
  37756. default: true
  37757. },
  37758. ]
  37759. ))
  37760. characterMakers.push(() => makeCharacter(
  37761. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37762. {
  37763. front: {
  37764. height: math.unit(6 + 6/12, "feet"),
  37765. name: "Front",
  37766. image: {
  37767. source: "./media/characters/jai/front.svg",
  37768. extra: 1645/1534,
  37769. bottom: 115/1760
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(6 + 6/12, "feet"),
  37777. default: true
  37778. },
  37779. ]
  37780. ))
  37781. characterMakers.push(() => makeCharacter(
  37782. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37783. {
  37784. front: {
  37785. height: math.unit(6 + 8/12, "feet"),
  37786. name: "Front",
  37787. image: {
  37788. source: "./media/characters/pixel/front.svg",
  37789. extra: 1900/1735,
  37790. bottom: 63/1963
  37791. }
  37792. },
  37793. },
  37794. [
  37795. {
  37796. name: "Normal",
  37797. height: math.unit(6 + 8/12, "feet"),
  37798. default: true
  37799. },
  37800. ]
  37801. ))
  37802. characterMakers.push(() => makeCharacter(
  37803. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37804. {
  37805. back: {
  37806. height: math.unit(4 + 1/12, "feet"),
  37807. weight: math.unit(75, "lb"),
  37808. name: "Back",
  37809. image: {
  37810. source: "./media/characters/rhett/back.svg",
  37811. extra: 930/878,
  37812. bottom: 25/955
  37813. }
  37814. },
  37815. front: {
  37816. height: math.unit(4 + 1/12, "feet"),
  37817. weight: math.unit(75, "lb"),
  37818. name: "Front",
  37819. image: {
  37820. source: "./media/characters/rhett/front.svg",
  37821. extra: 1682/1586,
  37822. bottom: 92/1774
  37823. }
  37824. },
  37825. },
  37826. [
  37827. {
  37828. name: "Micro",
  37829. height: math.unit(8, "inches")
  37830. },
  37831. {
  37832. name: "Tiny",
  37833. height: math.unit(2, "feet")
  37834. },
  37835. {
  37836. name: "Normal",
  37837. height: math.unit(4 + 1/12, "feet"),
  37838. default: true
  37839. },
  37840. ]
  37841. ))
  37842. characterMakers.push(() => makeCharacter(
  37843. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37844. {
  37845. front: {
  37846. height: math.unit(3 + 3/12, "feet"),
  37847. name: "Front",
  37848. image: {
  37849. source: "./media/characters/penny/front.svg",
  37850. extra: 1406/1311,
  37851. bottom: 26/1432
  37852. }
  37853. },
  37854. },
  37855. [
  37856. {
  37857. name: "Normal",
  37858. height: math.unit(3 + 3/12, "feet"),
  37859. default: true
  37860. },
  37861. ]
  37862. ))
  37863. characterMakers.push(() => makeCharacter(
  37864. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37865. {
  37866. front: {
  37867. height: math.unit(4 + 11/12, "feet"),
  37868. name: "Front",
  37869. image: {
  37870. source: "./media/characters/monty/front.svg",
  37871. extra: 1479/1209,
  37872. bottom: 0/1479
  37873. }
  37874. },
  37875. },
  37876. [
  37877. {
  37878. name: "Normal",
  37879. height: math.unit(4 + 11/12, "feet"),
  37880. default: true
  37881. },
  37882. ]
  37883. ))
  37884. characterMakers.push(() => makeCharacter(
  37885. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37886. {
  37887. front: {
  37888. height: math.unit(8 + 4/12, "feet"),
  37889. name: "Front",
  37890. image: {
  37891. source: "./media/characters/sterling/front.svg",
  37892. extra: 1420/1236,
  37893. bottom: 27/1447
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(8 + 4/12, "feet"),
  37901. default: true
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(15, "feet"),
  37910. name: "Front",
  37911. image: {
  37912. source: "./media/characters/marble/front.svg",
  37913. extra: 973/937,
  37914. bottom: 32/1005
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Normal",
  37921. height: math.unit(15, "feet"),
  37922. default: true
  37923. },
  37924. ]
  37925. ))
  37926. characterMakers.push(() => makeCharacter(
  37927. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37928. {
  37929. front: {
  37930. height: math.unit(3, "inches"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/powder/front.svg",
  37934. extra: 1504/1334,
  37935. bottom: 518/2022
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Normal",
  37942. height: math.unit(3, "inches"),
  37943. default: true
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(4 + 5/12, "feet"),
  37952. name: "Front",
  37953. image: {
  37954. source: "./media/characters/joey-raccoon/front.svg",
  37955. extra: 1273/1197,
  37956. bottom: 0/1273
  37957. }
  37958. },
  37959. },
  37960. [
  37961. {
  37962. name: "Normal",
  37963. height: math.unit(4 + 5/12, "feet"),
  37964. default: true
  37965. },
  37966. ]
  37967. ))
  37968. characterMakers.push(() => makeCharacter(
  37969. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37970. {
  37971. front: {
  37972. height: math.unit(8 + 4/12, "feet"),
  37973. name: "Front",
  37974. image: {
  37975. source: "./media/characters/vick/front.svg",
  37976. extra: 2187/2118,
  37977. bottom: 47/2234
  37978. }
  37979. },
  37980. },
  37981. [
  37982. {
  37983. name: "Normal",
  37984. height: math.unit(8 + 4/12, "feet"),
  37985. default: true
  37986. },
  37987. ]
  37988. ))
  37989. characterMakers.push(() => makeCharacter(
  37990. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37991. {
  37992. front: {
  37993. height: math.unit(5 + 5/12, "feet"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/mitsy/front.svg",
  37997. extra: 1842/1695,
  37998. bottom: 0/1842
  37999. }
  38000. },
  38001. },
  38002. [
  38003. {
  38004. name: "Normal",
  38005. height: math.unit(5 + 5/12, "feet"),
  38006. default: true
  38007. },
  38008. ]
  38009. ))
  38010. characterMakers.push(() => makeCharacter(
  38011. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38012. {
  38013. front: {
  38014. height: math.unit(6 + 3/12, "feet"),
  38015. name: "Front",
  38016. image: {
  38017. source: "./media/characters/silvy/front.svg",
  38018. extra: 1995/1836,
  38019. bottom: 225/2220
  38020. }
  38021. },
  38022. },
  38023. [
  38024. {
  38025. name: "Normal",
  38026. height: math.unit(6 + 3/12, "feet"),
  38027. default: true
  38028. },
  38029. ]
  38030. ))
  38031. characterMakers.push(() => makeCharacter(
  38032. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38033. {
  38034. front: {
  38035. height: math.unit(3 + 8/12, "feet"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/rodney/front.svg",
  38039. extra: 1956/1747,
  38040. bottom: 31/1987
  38041. }
  38042. },
  38043. frontDressed: {
  38044. height: math.unit(2.9, "feet"),
  38045. name: "Front (Dressed)",
  38046. image: {
  38047. source: "./media/characters/rodney/front-dressed.svg",
  38048. extra: 1382/1241,
  38049. bottom: 385/1767
  38050. }
  38051. },
  38052. },
  38053. [
  38054. {
  38055. name: "Normal",
  38056. height: math.unit(3 + 8/12, "feet"),
  38057. default: true
  38058. },
  38059. ]
  38060. ))
  38061. characterMakers.push(() => makeCharacter(
  38062. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38063. {
  38064. front: {
  38065. height: math.unit(5 + 9/12, "feet"),
  38066. weight: math.unit(194, "lbs"),
  38067. name: "Front",
  38068. image: {
  38069. source: "./media/characters/zakail-sudekai/front.svg",
  38070. extra: 2696/2533,
  38071. bottom: 248/2944
  38072. }
  38073. },
  38074. maw: {
  38075. height: math.unit(1.35, "feet"),
  38076. name: "Maw",
  38077. image: {
  38078. source: "./media/characters/zakail-sudekai/maw.svg"
  38079. }
  38080. },
  38081. },
  38082. [
  38083. {
  38084. name: "Normal",
  38085. height: math.unit(5 + 9/12, "feet"),
  38086. default: true
  38087. },
  38088. ]
  38089. ))
  38090. characterMakers.push(() => makeCharacter(
  38091. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38092. {
  38093. front: {
  38094. height: math.unit(8 + 4/12, "feet"),
  38095. weight: math.unit(1200, "lb"),
  38096. name: "Front",
  38097. image: {
  38098. source: "./media/characters/eleanor/front.svg",
  38099. extra: 1226/1192,
  38100. bottom: 52/1278
  38101. }
  38102. },
  38103. back: {
  38104. height: math.unit(8 + 4/12, "feet"),
  38105. weight: math.unit(1200, "lb"),
  38106. name: "Back",
  38107. image: {
  38108. source: "./media/characters/eleanor/back.svg",
  38109. extra: 1242/1184,
  38110. bottom: 60/1302
  38111. }
  38112. },
  38113. head: {
  38114. height: math.unit(2.62, "feet"),
  38115. name: "Head",
  38116. image: {
  38117. source: "./media/characters/eleanor/head.svg"
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(8 + 4/12, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(8 + 4/12, "feet"),
  38134. weight: math.unit(750, "lb"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/tanya/front.svg",
  38138. extra: 1749/1615,
  38139. bottom: 33/1782
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(8 + 4/12, "feet"),
  38147. default: true
  38148. },
  38149. ]
  38150. ))
  38151. characterMakers.push(() => makeCharacter(
  38152. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38153. {
  38154. front: {
  38155. height: math.unit(5, "feet"),
  38156. weight: math.unit(225, "lb"),
  38157. name: "Front",
  38158. image: {
  38159. source: "./media/characters/cindy/front.svg",
  38160. extra: 1320/1250,
  38161. bottom: 42/1362
  38162. }
  38163. },
  38164. frontDressed: {
  38165. height: math.unit(5, "feet"),
  38166. weight: math.unit(225, "lb"),
  38167. name: "Front (Dressed)",
  38168. image: {
  38169. source: "./media/characters/cindy/front-dressed.svg",
  38170. extra: 1320/1250,
  38171. bottom: 42/1362
  38172. }
  38173. },
  38174. back: {
  38175. height: math.unit(5, "feet"),
  38176. weight: math.unit(225, "lb"),
  38177. name: "Back",
  38178. image: {
  38179. source: "./media/characters/cindy/back.svg",
  38180. extra: 1384/1346,
  38181. bottom: 14/1398
  38182. }
  38183. },
  38184. },
  38185. [
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(5, "feet"),
  38189. default: true
  38190. },
  38191. ]
  38192. ))
  38193. characterMakers.push(() => makeCharacter(
  38194. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38195. {
  38196. front: {
  38197. height: math.unit(6 + 9/12, "feet"),
  38198. weight: math.unit(440, "lb"),
  38199. name: "Front",
  38200. image: {
  38201. source: "./media/characters/wilbur-owen/front.svg",
  38202. extra: 1575/1448,
  38203. bottom: 72/1647
  38204. }
  38205. },
  38206. back: {
  38207. height: math.unit(6 + 9/12, "feet"),
  38208. weight: math.unit(440, "lb"),
  38209. name: "Back",
  38210. image: {
  38211. source: "./media/characters/wilbur-owen/back.svg",
  38212. extra: 1578/1445,
  38213. bottom: 36/1614
  38214. }
  38215. },
  38216. },
  38217. [
  38218. {
  38219. name: "Normal",
  38220. height: math.unit(6 + 9/12, "feet"),
  38221. default: true
  38222. },
  38223. ]
  38224. ))
  38225. characterMakers.push(() => makeCharacter(
  38226. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38227. {
  38228. front: {
  38229. height: math.unit(6 + 5/12, "feet"),
  38230. weight: math.unit(650, "lb"),
  38231. name: "Front",
  38232. image: {
  38233. source: "./media/characters/keegan/front.svg",
  38234. extra: 2387/2198,
  38235. bottom: 33/2420
  38236. }
  38237. },
  38238. side: {
  38239. height: math.unit(6 + 5/12, "feet"),
  38240. weight: math.unit(650, "lb"),
  38241. name: "Side",
  38242. image: {
  38243. source: "./media/characters/keegan/side.svg",
  38244. extra: 2390/2202,
  38245. bottom: 47/2437
  38246. }
  38247. },
  38248. back: {
  38249. height: math.unit(6 + 5/12, "feet"),
  38250. weight: math.unit(650, "lb"),
  38251. name: "Back",
  38252. image: {
  38253. source: "./media/characters/keegan/back.svg",
  38254. extra: 2418/2268,
  38255. bottom: 15/2433
  38256. }
  38257. },
  38258. frontSfw: {
  38259. height: math.unit(6 + 5/12, "feet"),
  38260. weight: math.unit(650, "lb"),
  38261. name: "Front (SFW)",
  38262. image: {
  38263. source: "./media/characters/keegan/front-sfw.svg",
  38264. extra: 2387/2198,
  38265. bottom: 33/2420
  38266. }
  38267. },
  38268. beans: {
  38269. height: math.unit(1.85, "feet"),
  38270. name: "Beans",
  38271. image: {
  38272. source: "./media/characters/keegan/beans.svg"
  38273. }
  38274. },
  38275. },
  38276. [
  38277. {
  38278. name: "Normal",
  38279. height: math.unit(6 + 5/12, "feet"),
  38280. default: true
  38281. },
  38282. ]
  38283. ))
  38284. characterMakers.push(() => makeCharacter(
  38285. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38286. {
  38287. front: {
  38288. height: math.unit(9, "feet"),
  38289. name: "Front",
  38290. image: {
  38291. source: "./media/characters/colton/front.svg",
  38292. extra: 1589/1326,
  38293. bottom: 139/1728
  38294. }
  38295. },
  38296. },
  38297. [
  38298. {
  38299. name: "Normal",
  38300. height: math.unit(9, "feet"),
  38301. default: true
  38302. },
  38303. ]
  38304. ))
  38305. characterMakers.push(() => makeCharacter(
  38306. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38307. {
  38308. front: {
  38309. height: math.unit(2 + 9/12, "feet"),
  38310. name: "Front",
  38311. image: {
  38312. source: "./media/characters/bora/front.svg",
  38313. extra: 1265/1250,
  38314. bottom: 24/1289
  38315. }
  38316. },
  38317. },
  38318. [
  38319. {
  38320. name: "Normal",
  38321. height: math.unit(2 + 9/12, "feet"),
  38322. default: true
  38323. },
  38324. ]
  38325. ))
  38326. characterMakers.push(() => makeCharacter(
  38327. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38328. {
  38329. front: {
  38330. height: math.unit(8, "feet"),
  38331. name: "Front",
  38332. image: {
  38333. source: "./media/characters/myu-myu/front.svg",
  38334. extra: 1949/1857,
  38335. bottom: 90/2039
  38336. }
  38337. },
  38338. },
  38339. [
  38340. {
  38341. name: "Normal",
  38342. height: math.unit(8, "feet"),
  38343. default: true
  38344. },
  38345. {
  38346. name: "Big",
  38347. height: math.unit(15, "feet")
  38348. },
  38349. {
  38350. name: "BIG",
  38351. height: math.unit(25, "feet")
  38352. },
  38353. ]
  38354. ))
  38355. characterMakers.push(() => makeCharacter(
  38356. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38357. {
  38358. side: {
  38359. height: math.unit(7 + 5/12, "feet"),
  38360. weight: math.unit(2800, "lb"),
  38361. name: "Side",
  38362. image: {
  38363. source: "./media/characters/haloren/side.svg",
  38364. extra: 1793/409,
  38365. bottom: 59/1852
  38366. }
  38367. },
  38368. frontPaw: {
  38369. height: math.unit(2.36, "feet"),
  38370. name: "Front paw",
  38371. image: {
  38372. source: "./media/characters/haloren/front-paw.svg"
  38373. }
  38374. },
  38375. hindPaw: {
  38376. height: math.unit(3.18, "feet"),
  38377. name: "Hind paw",
  38378. image: {
  38379. source: "./media/characters/haloren/hind-paw.svg"
  38380. }
  38381. },
  38382. maw: {
  38383. height: math.unit(5.05, "feet"),
  38384. name: "Maw",
  38385. image: {
  38386. source: "./media/characters/haloren/maw.svg"
  38387. }
  38388. },
  38389. dick: {
  38390. height: math.unit(2.90, "feet"),
  38391. name: "Dick",
  38392. image: {
  38393. source: "./media/characters/haloren/dick.svg"
  38394. }
  38395. },
  38396. },
  38397. [
  38398. {
  38399. name: "Normal",
  38400. height: math.unit(7 + 5/12, "feet"),
  38401. default: true
  38402. },
  38403. {
  38404. name: "Enhanced",
  38405. height: math.unit(14 + 3/12, "feet")
  38406. },
  38407. ]
  38408. ))
  38409. characterMakers.push(() => makeCharacter(
  38410. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38411. {
  38412. front: {
  38413. height: math.unit(171, "cm"),
  38414. name: "Front",
  38415. image: {
  38416. source: "./media/characters/kimmy/front.svg",
  38417. extra: 1491/1435,
  38418. bottom: 53/1544
  38419. }
  38420. },
  38421. },
  38422. [
  38423. {
  38424. name: "Small",
  38425. height: math.unit(9, "cm")
  38426. },
  38427. {
  38428. name: "Normal",
  38429. height: math.unit(171, "cm"),
  38430. default: true
  38431. },
  38432. ]
  38433. ))
  38434. characterMakers.push(() => makeCharacter(
  38435. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38436. {
  38437. front: {
  38438. height: math.unit(8, "feet"),
  38439. weight: math.unit(300, "lb"),
  38440. name: "Front",
  38441. image: {
  38442. source: "./media/characters/galeboomer/front.svg",
  38443. extra: 4651/4415,
  38444. bottom: 162/4813
  38445. }
  38446. },
  38447. back: {
  38448. height: math.unit(8, "feet"),
  38449. weight: math.unit(300, "lb"),
  38450. name: "Back",
  38451. image: {
  38452. source: "./media/characters/galeboomer/back.svg",
  38453. extra: 4544/4314,
  38454. bottom: 16/4560
  38455. }
  38456. },
  38457. frontAlt: {
  38458. height: math.unit(8, "feet"),
  38459. weight: math.unit(300, "lb"),
  38460. name: "Front (Alt)",
  38461. image: {
  38462. source: "./media/characters/galeboomer/front-alt.svg",
  38463. extra: 4458/4228,
  38464. bottom: 68/4526
  38465. }
  38466. },
  38467. maw: {
  38468. height: math.unit(1.2, "feet"),
  38469. name: "Maw",
  38470. image: {
  38471. source: "./media/characters/galeboomer/maw.svg"
  38472. }
  38473. },
  38474. },
  38475. [
  38476. {
  38477. name: "Normal",
  38478. height: math.unit(8, "feet"),
  38479. default: true
  38480. },
  38481. ]
  38482. ))
  38483. characterMakers.push(() => makeCharacter(
  38484. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38485. {
  38486. front: {
  38487. height: math.unit(5 + 9/12, "feet"),
  38488. weight: math.unit(120, "lb"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/chyr/front.svg",
  38492. extra: 1323/1254,
  38493. bottom: 63/1386
  38494. }
  38495. },
  38496. back: {
  38497. height: math.unit(5 + 9/12, "feet"),
  38498. weight: math.unit(120, "lb"),
  38499. name: "Back",
  38500. image: {
  38501. source: "./media/characters/chyr/back.svg",
  38502. extra: 1323/1252,
  38503. bottom: 48/1371
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Normal",
  38510. height: math.unit(5 + 9/12, "feet"),
  38511. default: true
  38512. },
  38513. ]
  38514. ))
  38515. characterMakers.push(() => makeCharacter(
  38516. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38517. {
  38518. front: {
  38519. height: math.unit(7, "feet"),
  38520. weight: math.unit(310, "lb"),
  38521. name: "Front",
  38522. image: {
  38523. source: "./media/characters/solarus/front.svg",
  38524. extra: 2415/2021,
  38525. bottom: 103/2518
  38526. }
  38527. },
  38528. back: {
  38529. height: math.unit(7, "feet"),
  38530. weight: math.unit(310, "lb"),
  38531. name: "Back",
  38532. image: {
  38533. source: "./media/characters/solarus/back.svg",
  38534. extra: 2463/2089,
  38535. bottom: 79/2542
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(7, "feet"),
  38543. default: true
  38544. },
  38545. ]
  38546. ))
  38547. characterMakers.push(() => makeCharacter(
  38548. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38549. {
  38550. front: {
  38551. height: math.unit(16, "feet"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38555. extra: 1844/1780,
  38556. bottom: 58/1902
  38557. }
  38558. },
  38559. winterCoat: {
  38560. height: math.unit(16, "feet"),
  38561. name: "Winter Coat",
  38562. image: {
  38563. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38564. extra: 1807/1775,
  38565. bottom: 69/1876
  38566. }
  38567. },
  38568. },
  38569. [
  38570. {
  38571. name: "Normal",
  38572. height: math.unit(16, "feet"),
  38573. default: true
  38574. },
  38575. {
  38576. name: "Chicago Size",
  38577. height: math.unit(560, "feet")
  38578. },
  38579. ]
  38580. ))
  38581. characterMakers.push(() => makeCharacter(
  38582. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38583. {
  38584. front: {
  38585. height: math.unit(11 + 6/12, "feet"),
  38586. weight: math.unit(1366, "lb"),
  38587. name: "Front",
  38588. image: {
  38589. source: "./media/characters/lexor/front.svg",
  38590. extra: 1560/1481,
  38591. bottom: 211/1771
  38592. }
  38593. },
  38594. back: {
  38595. height: math.unit(11 + 6/12, "feet"),
  38596. weight: math.unit(1366, "lb"),
  38597. name: "Back",
  38598. image: {
  38599. source: "./media/characters/lexor/back.svg",
  38600. extra: 1614/1533,
  38601. bottom: 76/1690
  38602. }
  38603. },
  38604. maw: {
  38605. height: math.unit(3, "feet"),
  38606. name: "Maw",
  38607. image: {
  38608. source: "./media/characters/lexor/maw.svg"
  38609. }
  38610. },
  38611. dick: {
  38612. height: math.unit(2.59, "feet"),
  38613. name: "Dick",
  38614. image: {
  38615. source: "./media/characters/lexor/dick.svg"
  38616. }
  38617. },
  38618. },
  38619. [
  38620. {
  38621. name: "Normal",
  38622. height: math.unit(11 + 6/12, "feet"),
  38623. default: true
  38624. },
  38625. ]
  38626. ))
  38627. characterMakers.push(() => makeCharacter(
  38628. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  38629. {
  38630. front: {
  38631. height: math.unit(5 + 8/12, "feet"),
  38632. name: "Front",
  38633. image: {
  38634. source: "./media/characters/magnum/front.svg",
  38635. extra: 942/855,
  38636. bottom: 26/968
  38637. }
  38638. },
  38639. },
  38640. [
  38641. {
  38642. name: "Normal",
  38643. height: math.unit(5 + 8/12, "feet"),
  38644. default: true
  38645. },
  38646. ]
  38647. ))
  38648. characterMakers.push(() => makeCharacter(
  38649. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  38650. {
  38651. front: {
  38652. height: math.unit(18 + 4/12, "feet"),
  38653. weight: math.unit(1500, "kg"),
  38654. name: "Front",
  38655. image: {
  38656. source: "./media/characters/solas-sharpsman/front.svg",
  38657. extra: 1698/1589,
  38658. bottom: 0/1698
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(18 + 4/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(5 + 5/12, "feet"),
  38675. weight: math.unit(180, "lb"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/october/front.svg",
  38679. extra: 1800/1650,
  38680. bottom: 0/1800
  38681. }
  38682. },
  38683. frontNsfw: {
  38684. height: math.unit(5 + 5/12, "feet"),
  38685. weight: math.unit(180, "lb"),
  38686. name: "Front (NSFW)",
  38687. image: {
  38688. source: "./media/characters/october/front-nsfw.svg",
  38689. extra: 1392/1307,
  38690. bottom: 42/1434
  38691. }
  38692. },
  38693. },
  38694. [
  38695. {
  38696. name: "Normal",
  38697. height: math.unit(5 + 5/12, "feet"),
  38698. default: true
  38699. },
  38700. ]
  38701. ))
  38702. characterMakers.push(() => makeCharacter(
  38703. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38704. {
  38705. front: {
  38706. height: math.unit(8 + 6/12, "feet"),
  38707. name: "Front",
  38708. image: {
  38709. source: "./media/characters/essynkardi/front.svg",
  38710. extra: 1914/1846,
  38711. bottom: 22/1936
  38712. }
  38713. },
  38714. },
  38715. [
  38716. {
  38717. name: "Normal",
  38718. height: math.unit(8 + 6/12, "feet"),
  38719. default: true
  38720. },
  38721. ]
  38722. ))
  38723. characterMakers.push(() => makeCharacter(
  38724. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38725. {
  38726. front: {
  38727. height: math.unit(6 + 6/12, "feet"),
  38728. weight: math.unit(7, "lb"),
  38729. name: "Front",
  38730. image: {
  38731. source: "./media/characters/icky/front.svg",
  38732. extra: 813/782,
  38733. bottom: 66/879
  38734. }
  38735. },
  38736. back: {
  38737. height: math.unit(6 + 6/12, "feet"),
  38738. weight: math.unit(7, "lb"),
  38739. name: "Back",
  38740. image: {
  38741. source: "./media/characters/icky/back.svg",
  38742. extra: 754/735,
  38743. bottom: 56/810
  38744. }
  38745. },
  38746. },
  38747. [
  38748. {
  38749. name: "Normal",
  38750. height: math.unit(6 + 6/12, "feet"),
  38751. default: true
  38752. },
  38753. ]
  38754. ))
  38755. characterMakers.push(() => makeCharacter(
  38756. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38757. {
  38758. front: {
  38759. height: math.unit(15, "feet"),
  38760. name: "Front",
  38761. image: {
  38762. source: "./media/characters/rojas/front.svg",
  38763. extra: 1462/1408,
  38764. bottom: 95/1557
  38765. }
  38766. },
  38767. back: {
  38768. height: math.unit(15, "feet"),
  38769. name: "Back",
  38770. image: {
  38771. source: "./media/characters/rojas/back.svg",
  38772. extra: 1023/954,
  38773. bottom: 28/1051
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Normal",
  38780. height: math.unit(15, "feet"),
  38781. default: true
  38782. },
  38783. ]
  38784. ))
  38785. characterMakers.push(() => makeCharacter(
  38786. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38787. {
  38788. frontHuman: {
  38789. height: math.unit(5 + 7/12, "feet"),
  38790. name: "Front (Human)",
  38791. image: {
  38792. source: "./media/characters/alek-dryagan/front-human.svg",
  38793. extra: 1687/1667,
  38794. bottom: 69/1756
  38795. }
  38796. },
  38797. backHuman: {
  38798. height: math.unit(5 + 7/12, "feet"),
  38799. name: "Back (Human)",
  38800. image: {
  38801. source: "./media/characters/alek-dryagan/back-human.svg",
  38802. extra: 1670/1649,
  38803. bottom: 65/1735
  38804. }
  38805. },
  38806. frontDemi: {
  38807. height: math.unit(65, "feet"),
  38808. name: "Front (Demi)",
  38809. image: {
  38810. source: "./media/characters/alek-dryagan/front-demi.svg",
  38811. extra: 1669/1642,
  38812. bottom: 49/1718
  38813. }
  38814. },
  38815. backDemi: {
  38816. height: math.unit(65, "feet"),
  38817. name: "Back (Demi)",
  38818. image: {
  38819. source: "./media/characters/alek-dryagan/back-demi.svg",
  38820. extra: 1658/1637,
  38821. bottom: 40/1698
  38822. }
  38823. },
  38824. mawHuman: {
  38825. height: math.unit(0.3, "feet"),
  38826. name: "Maw (Human)",
  38827. image: {
  38828. source: "./media/characters/alek-dryagan/maw-human.svg"
  38829. }
  38830. },
  38831. mawDemi: {
  38832. height: math.unit(3.8, "feet"),
  38833. name: "Maw (Demi)",
  38834. image: {
  38835. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38836. }
  38837. },
  38838. },
  38839. [
  38840. {
  38841. name: "Normal",
  38842. height: math.unit(5 + 7/12, "feet"),
  38843. default: true
  38844. },
  38845. ]
  38846. ))
  38847. characterMakers.push(() => makeCharacter(
  38848. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38849. {
  38850. frontHuman: {
  38851. height: math.unit(5 + 2/12, "feet"),
  38852. name: "Front (Human)",
  38853. image: {
  38854. source: "./media/characters/gen/front-human.svg",
  38855. extra: 1627/1538,
  38856. bottom: 71/1698
  38857. }
  38858. },
  38859. backHuman: {
  38860. height: math.unit(5 + 2/12, "feet"),
  38861. name: "Back (Human)",
  38862. image: {
  38863. source: "./media/characters/gen/back-human.svg",
  38864. extra: 1638/1548,
  38865. bottom: 69/1707
  38866. }
  38867. },
  38868. frontDemi: {
  38869. height: math.unit(5 + 2/12, "feet"),
  38870. name: "Front (Demi)",
  38871. image: {
  38872. source: "./media/characters/gen/front-demi.svg",
  38873. extra: 1627/1538,
  38874. bottom: 71/1698
  38875. }
  38876. },
  38877. backDemi: {
  38878. height: math.unit(5 + 2/12, "feet"),
  38879. name: "Back (Demi)",
  38880. image: {
  38881. source: "./media/characters/gen/back-demi.svg",
  38882. extra: 1638/1548,
  38883. bottom: 69/1707
  38884. }
  38885. },
  38886. },
  38887. [
  38888. {
  38889. name: "Normal",
  38890. height: math.unit(5 + 2/12, "feet"),
  38891. default: true
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38897. {
  38898. frontImp: {
  38899. height: math.unit(1 + 11/12, "feet"),
  38900. name: "Front (Imp)",
  38901. image: {
  38902. source: "./media/characters/max-kobold/front-imp.svg",
  38903. extra: 1238/1134,
  38904. bottom: 81/1319
  38905. }
  38906. },
  38907. backImp: {
  38908. height: math.unit(1 + 11/12, "feet"),
  38909. name: "Back (Imp)",
  38910. image: {
  38911. source: "./media/characters/max-kobold/back-imp.svg",
  38912. extra: 1334/1175,
  38913. bottom: 34/1368
  38914. }
  38915. },
  38916. frontDemi: {
  38917. height: math.unit(5 + 9/12, "feet"),
  38918. name: "Front (Demi)",
  38919. image: {
  38920. source: "./media/characters/max-kobold/front-demi.svg",
  38921. extra: 1715/1685,
  38922. bottom: 54/1769
  38923. }
  38924. },
  38925. backDemi: {
  38926. height: math.unit(5 + 9/12, "feet"),
  38927. name: "Back (Demi)",
  38928. image: {
  38929. source: "./media/characters/max-kobold/back-demi.svg",
  38930. extra: 1752/1729,
  38931. bottom: 41/1793
  38932. }
  38933. },
  38934. handImp: {
  38935. height: math.unit(0.45, "feet"),
  38936. name: "Hand (Imp)",
  38937. image: {
  38938. source: "./media/characters/max-kobold/hand.svg"
  38939. }
  38940. },
  38941. pawImp: {
  38942. height: math.unit(0.46, "feet"),
  38943. name: "Paw (Imp)",
  38944. image: {
  38945. source: "./media/characters/max-kobold/paw.svg"
  38946. }
  38947. },
  38948. handDemi: {
  38949. height: math.unit(0.80, "feet"),
  38950. name: "Hand (Demi)",
  38951. image: {
  38952. source: "./media/characters/max-kobold/hand.svg"
  38953. }
  38954. },
  38955. pawDemi: {
  38956. height: math.unit(1.1, "feet"),
  38957. name: "Paw (Demi)",
  38958. image: {
  38959. source: "./media/characters/max-kobold/paw.svg"
  38960. }
  38961. },
  38962. headImp: {
  38963. height: math.unit(1.33, "feet"),
  38964. name: "Head (Imp)",
  38965. image: {
  38966. source: "./media/characters/max-kobold/head-imp.svg"
  38967. }
  38968. },
  38969. mawImp: {
  38970. height: math.unit(0.75, "feet"),
  38971. name: "Maw (Imp)",
  38972. image: {
  38973. source: "./media/characters/max-kobold/maw-imp.svg"
  38974. }
  38975. },
  38976. mawDemi: {
  38977. height: math.unit(0.42, "feet"),
  38978. name: "Maw (Demi)",
  38979. image: {
  38980. source: "./media/characters/max-kobold/maw-demi.svg"
  38981. }
  38982. },
  38983. },
  38984. [
  38985. {
  38986. name: "Normal",
  38987. height: math.unit(1 + 11/12, "feet"),
  38988. default: true
  38989. },
  38990. ]
  38991. ))
  38992. characterMakers.push(() => makeCharacter(
  38993. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38994. {
  38995. front: {
  38996. height: math.unit(7 + 5/12, "feet"),
  38997. name: "Front",
  38998. image: {
  38999. source: "./media/characters/carbon/front.svg",
  39000. extra: 1754/1689,
  39001. bottom: 65/1819
  39002. }
  39003. },
  39004. back: {
  39005. height: math.unit(7 + 5/12, "feet"),
  39006. name: "Back",
  39007. image: {
  39008. source: "./media/characters/carbon/back.svg",
  39009. extra: 1762/1695,
  39010. bottom: 24/1786
  39011. }
  39012. },
  39013. frontGigantamax: {
  39014. height: math.unit(150, "feet"),
  39015. name: "Front (Gigantamax)",
  39016. image: {
  39017. source: "./media/characters/carbon/front-gigantamax.svg",
  39018. extra: 1826/1669,
  39019. bottom: 59/1885
  39020. }
  39021. },
  39022. backGigantamax: {
  39023. height: math.unit(150, "feet"),
  39024. name: "Back (Gigantamax)",
  39025. image: {
  39026. source: "./media/characters/carbon/back-gigantamax.svg",
  39027. extra: 1796/1653,
  39028. bottom: 53/1849
  39029. }
  39030. },
  39031. maw: {
  39032. height: math.unit(0.48, "feet"),
  39033. name: "Maw",
  39034. image: {
  39035. source: "./media/characters/carbon/maw.svg"
  39036. }
  39037. },
  39038. mawGigantamax: {
  39039. height: math.unit(7.5, "feet"),
  39040. name: "Maw (Gigantamax)",
  39041. image: {
  39042. source: "./media/characters/carbon/maw-gigantamax.svg"
  39043. }
  39044. },
  39045. },
  39046. [
  39047. {
  39048. name: "Normal",
  39049. height: math.unit(7 + 5/12, "feet"),
  39050. default: true
  39051. },
  39052. ]
  39053. ))
  39054. characterMakers.push(() => makeCharacter(
  39055. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39056. {
  39057. front: {
  39058. height: math.unit(6, "feet"),
  39059. name: "Front",
  39060. image: {
  39061. source: "./media/characters/maverick/front.svg",
  39062. extra: 1672/1661,
  39063. bottom: 85/1757
  39064. }
  39065. },
  39066. back: {
  39067. height: math.unit(6, "feet"),
  39068. name: "Back",
  39069. image: {
  39070. source: "./media/characters/maverick/back.svg",
  39071. extra: 1642/1631,
  39072. bottom: 38/1680
  39073. }
  39074. },
  39075. },
  39076. [
  39077. {
  39078. name: "Normal",
  39079. height: math.unit(6, "feet"),
  39080. default: true
  39081. },
  39082. ]
  39083. ))
  39084. characterMakers.push(() => makeCharacter(
  39085. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39086. {
  39087. front: {
  39088. height: math.unit(15, "feet"),
  39089. weight: math.unit(615, "lb"),
  39090. name: "Front",
  39091. image: {
  39092. source: "./media/characters/grockle/front.svg",
  39093. extra: 1535/1427,
  39094. bottom: 56/1591
  39095. }
  39096. },
  39097. },
  39098. [
  39099. {
  39100. name: "Normal",
  39101. height: math.unit(15, "feet"),
  39102. default: true
  39103. },
  39104. {
  39105. name: "Large",
  39106. height: math.unit(150, "feet")
  39107. },
  39108. {
  39109. name: "Macro",
  39110. height: math.unit(1876, "feet")
  39111. },
  39112. {
  39113. name: "Mega Macro",
  39114. height: math.unit(121940, "feet")
  39115. },
  39116. {
  39117. name: "Giga Macro",
  39118. height: math.unit(750, "km")
  39119. },
  39120. {
  39121. name: "Tera Macro",
  39122. height: math.unit(750000, "km")
  39123. },
  39124. {
  39125. name: "Galactic",
  39126. height: math.unit(1.4e5, "km")
  39127. },
  39128. {
  39129. name: "Godlike",
  39130. height: math.unit(9.8e280, "galaxies")
  39131. },
  39132. ]
  39133. ))
  39134. characterMakers.push(() => makeCharacter(
  39135. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39136. {
  39137. front: {
  39138. height: math.unit(11, "meters"),
  39139. weight: math.unit(20, "tonnes"),
  39140. name: "Front",
  39141. image: {
  39142. source: "./media/characters/alistair/front.svg",
  39143. extra: 1265/1009,
  39144. bottom: 93/1358
  39145. }
  39146. },
  39147. },
  39148. [
  39149. {
  39150. name: "Normal",
  39151. height: math.unit(11, "meters"),
  39152. default: true
  39153. },
  39154. ]
  39155. ))
  39156. characterMakers.push(() => makeCharacter(
  39157. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39158. {
  39159. front: {
  39160. height: math.unit(5 + 8/12, "feet"),
  39161. name: "Front",
  39162. image: {
  39163. source: "./media/characters/haruka/front.svg",
  39164. extra: 2012/1952,
  39165. bottom: 0/2012
  39166. }
  39167. },
  39168. },
  39169. [
  39170. {
  39171. name: "Normal",
  39172. height: math.unit(5 + 8/12, "feet"),
  39173. default: true
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39179. {
  39180. back: {
  39181. height: math.unit(9, "feet"),
  39182. name: "Back",
  39183. image: {
  39184. source: "./media/characters/vivian-sylveon/back.svg",
  39185. extra: 1853/1714,
  39186. bottom: 0/1853
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(9, "feet"),
  39194. default: true
  39195. },
  39196. {
  39197. name: "Macro",
  39198. height: math.unit(500, "feet")
  39199. },
  39200. {
  39201. name: "Megamacro",
  39202. height: math.unit(600, "miles")
  39203. },
  39204. {
  39205. name: "Gigamacro",
  39206. height: math.unit(30000, "miles")
  39207. },
  39208. ]
  39209. ))
  39210. characterMakers.push(() => makeCharacter(
  39211. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39212. {
  39213. anthro: {
  39214. height: math.unit(5 + 10/12, "feet"),
  39215. weight: math.unit(100, "lb"),
  39216. name: "Anthro",
  39217. image: {
  39218. source: "./media/characters/daiki/anthro.svg",
  39219. extra: 1115/1027,
  39220. bottom: 69/1184
  39221. }
  39222. },
  39223. feral: {
  39224. height: math.unit(200, "feet"),
  39225. name: "Feral",
  39226. image: {
  39227. source: "./media/characters/daiki/feral.svg",
  39228. extra: 1256/313,
  39229. bottom: 39/1295
  39230. }
  39231. },
  39232. feralHead: {
  39233. height: math.unit(171, "feet"),
  39234. name: "Feral Head",
  39235. image: {
  39236. source: "./media/characters/daiki/feral-head.svg"
  39237. }
  39238. },
  39239. manaDragon: {
  39240. height: math.unit(170, "meters"),
  39241. name: "Mana-dragon",
  39242. image: {
  39243. source: "./media/characters/daiki/mana-dragon.svg",
  39244. extra: 763/420,
  39245. bottom: 97/860
  39246. }
  39247. },
  39248. },
  39249. [
  39250. {
  39251. name: "Normal",
  39252. height: math.unit(5 + 10/12, "feet"),
  39253. default: true
  39254. },
  39255. ]
  39256. ))
  39257. characterMakers.push(() => makeCharacter(
  39258. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39259. {
  39260. fullyEquippedFront: {
  39261. height: math.unit(3 + 1/12, "feet"),
  39262. weight: math.unit(24, "lb"),
  39263. name: "Fully Equipped (Front)",
  39264. image: {
  39265. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39266. extra: 687/605,
  39267. bottom: 18/705
  39268. }
  39269. },
  39270. fullyEquippedBack: {
  39271. height: math.unit(3 + 1/12, "feet"),
  39272. weight: math.unit(24, "lb"),
  39273. name: "Fully Equipped (Back)",
  39274. image: {
  39275. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39276. extra: 689/590,
  39277. bottom: 18/707
  39278. }
  39279. },
  39280. dailyWear: {
  39281. height: math.unit(3 + 1/12, "feet"),
  39282. weight: math.unit(24, "lb"),
  39283. name: "Daily Wear",
  39284. image: {
  39285. source: "./media/characters/tea-spot/daily-wear.svg",
  39286. extra: 701/620,
  39287. bottom: 21/722
  39288. }
  39289. },
  39290. maidWork: {
  39291. height: math.unit(3 + 1/12, "feet"),
  39292. weight: math.unit(24, "lb"),
  39293. name: "Maid Work",
  39294. image: {
  39295. source: "./media/characters/tea-spot/maid-work.svg",
  39296. extra: 693/609,
  39297. bottom: 15/708
  39298. }
  39299. },
  39300. },
  39301. [
  39302. {
  39303. name: "Normal",
  39304. height: math.unit(3 + 1/12, "feet"),
  39305. default: true
  39306. },
  39307. ]
  39308. ))
  39309. characterMakers.push(() => makeCharacter(
  39310. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39311. {
  39312. front: {
  39313. height: math.unit(175, "cm"),
  39314. weight: math.unit(75, "kg"),
  39315. name: "Front",
  39316. image: {
  39317. source: "./media/characters/chee/front.svg",
  39318. extra: 1796/1740,
  39319. bottom: 40/1836
  39320. }
  39321. },
  39322. },
  39323. [
  39324. {
  39325. name: "Micro-Micro",
  39326. height: math.unit(1, "nm")
  39327. },
  39328. {
  39329. name: "Micro-erst",
  39330. height: math.unit(1, "micrometer")
  39331. },
  39332. {
  39333. name: "Micro-er",
  39334. height: math.unit(1, "cm")
  39335. },
  39336. {
  39337. name: "Normal",
  39338. height: math.unit(175, "cm"),
  39339. default: true
  39340. },
  39341. {
  39342. name: "Macro",
  39343. height: math.unit(100, "m")
  39344. },
  39345. {
  39346. name: "Macro-er",
  39347. height: math.unit(1, "km")
  39348. },
  39349. {
  39350. name: "Macro-erst",
  39351. height: math.unit(10, "km")
  39352. },
  39353. {
  39354. name: "Macro-Macro",
  39355. height: math.unit(100, "km")
  39356. },
  39357. ]
  39358. ))
  39359. characterMakers.push(() => makeCharacter(
  39360. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39361. {
  39362. front: {
  39363. height: math.unit(11 + 9/12, "feet"),
  39364. weight: math.unit(935, "lb"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/kingsley/front.svg",
  39368. extra: 1803/1674,
  39369. bottom: 127/1930
  39370. }
  39371. },
  39372. frontNude: {
  39373. height: math.unit(11 + 9/12, "feet"),
  39374. weight: math.unit(935, "lb"),
  39375. name: "Front (Nude)",
  39376. image: {
  39377. source: "./media/characters/kingsley/front-nude.svg",
  39378. extra: 1803/1674,
  39379. bottom: 127/1930
  39380. }
  39381. },
  39382. },
  39383. [
  39384. {
  39385. name: "Normal",
  39386. height: math.unit(11 + 9/12, "feet"),
  39387. default: true
  39388. },
  39389. ]
  39390. ))
  39391. characterMakers.push(() => makeCharacter(
  39392. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39393. {
  39394. side: {
  39395. height: math.unit(9, "feet"),
  39396. name: "Side",
  39397. image: {
  39398. source: "./media/characters/rymel/side.svg",
  39399. extra: 792/469,
  39400. bottom: 121/913
  39401. }
  39402. },
  39403. maw: {
  39404. height: math.unit(2.4, "meters"),
  39405. name: "Maw",
  39406. image: {
  39407. source: "./media/characters/rymel/maw.svg"
  39408. }
  39409. },
  39410. },
  39411. [
  39412. {
  39413. name: "House Drake",
  39414. height: math.unit(2, "feet")
  39415. },
  39416. {
  39417. name: "Reduced",
  39418. height: math.unit(4.5, "feet")
  39419. },
  39420. {
  39421. name: "Normal",
  39422. height: math.unit(9, "feet"),
  39423. default: true
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39429. {
  39430. front: {
  39431. height: math.unit(1.74, "meters"),
  39432. weight: math.unit(55, "kg"),
  39433. name: "Front",
  39434. image: {
  39435. source: "./media/characters/rubus/front.svg",
  39436. extra: 1894/1742,
  39437. bottom: 44/1938
  39438. }
  39439. },
  39440. },
  39441. [
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(1.74, "meters"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(5 + 2/12, "feet"),
  39454. weight: math.unit(112, "lb"),
  39455. name: "Front",
  39456. image: {
  39457. source: "./media/characters/cassie-kingston/front.svg",
  39458. extra: 1438/1390,
  39459. bottom: 47/1485
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(5 + 2/12, "feet"),
  39467. default: true
  39468. },
  39469. {
  39470. name: "Macro",
  39471. height: math.unit(128, "feet")
  39472. },
  39473. {
  39474. name: "Megamacro",
  39475. height: math.unit(2.56, "miles")
  39476. },
  39477. ]
  39478. ))
  39479. characterMakers.push(() => makeCharacter(
  39480. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39481. {
  39482. front: {
  39483. height: math.unit(7, "feet"),
  39484. name: "Front",
  39485. image: {
  39486. source: "./media/characters/fox/front.svg",
  39487. extra: 1798/1703,
  39488. bottom: 55/1853
  39489. }
  39490. },
  39491. back: {
  39492. height: math.unit(7, "feet"),
  39493. name: "Back",
  39494. image: {
  39495. source: "./media/characters/fox/back.svg",
  39496. extra: 1748/1649,
  39497. bottom: 32/1780
  39498. }
  39499. },
  39500. head: {
  39501. height: math.unit(1.95, "feet"),
  39502. name: "Head",
  39503. image: {
  39504. source: "./media/characters/fox/head.svg"
  39505. }
  39506. },
  39507. dick: {
  39508. height: math.unit(1.33, "feet"),
  39509. name: "Dick",
  39510. image: {
  39511. source: "./media/characters/fox/dick.svg"
  39512. }
  39513. },
  39514. foot: {
  39515. height: math.unit(1, "feet"),
  39516. name: "Foot",
  39517. image: {
  39518. source: "./media/characters/fox/foot.svg"
  39519. }
  39520. },
  39521. paw: {
  39522. height: math.unit(0.92, "feet"),
  39523. name: "Paw",
  39524. image: {
  39525. source: "./media/characters/fox/paw.svg"
  39526. }
  39527. },
  39528. },
  39529. [
  39530. {
  39531. name: "Small",
  39532. height: math.unit(3, "inches")
  39533. },
  39534. {
  39535. name: "\"Realistic\"",
  39536. height: math.unit(7, "feet")
  39537. },
  39538. {
  39539. name: "Normal",
  39540. height: math.unit(150, "feet"),
  39541. default: true
  39542. },
  39543. {
  39544. name: "BIG",
  39545. height: math.unit(1200, "feet")
  39546. },
  39547. {
  39548. name: "👀",
  39549. height: math.unit(5, "miles")
  39550. },
  39551. {
  39552. name: "👀👀👀",
  39553. height: math.unit(64, "miles")
  39554. },
  39555. ]
  39556. ))
  39557. characterMakers.push(() => makeCharacter(
  39558. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39559. {
  39560. front: {
  39561. height: math.unit(625, "feet"),
  39562. name: "Front",
  39563. image: {
  39564. source: "./media/characters/asonja-rossa/front.svg",
  39565. extra: 1833/1686,
  39566. bottom: 24/1857
  39567. }
  39568. },
  39569. back: {
  39570. height: math.unit(625, "feet"),
  39571. name: "Back",
  39572. image: {
  39573. source: "./media/characters/asonja-rossa/back.svg",
  39574. extra: 1852/1753,
  39575. bottom: 26/1878
  39576. }
  39577. },
  39578. },
  39579. [
  39580. {
  39581. name: "Macro",
  39582. height: math.unit(625, "feet"),
  39583. default: true
  39584. },
  39585. ]
  39586. ))
  39587. characterMakers.push(() => makeCharacter(
  39588. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39589. {
  39590. side: {
  39591. height: math.unit(8, "feet"),
  39592. name: "Side",
  39593. image: {
  39594. source: "./media/characters/rezukii/side.svg",
  39595. extra: 979/542,
  39596. bottom: 87/1066
  39597. }
  39598. },
  39599. sitting: {
  39600. height: math.unit(14.6, "feet"),
  39601. name: "Sitting",
  39602. image: {
  39603. source: "./media/characters/rezukii/sitting.svg",
  39604. extra: 1023/813,
  39605. bottom: 45/1068
  39606. }
  39607. },
  39608. },
  39609. [
  39610. {
  39611. name: "Tiny",
  39612. height: math.unit(2, "feet")
  39613. },
  39614. {
  39615. name: "Smol",
  39616. height: math.unit(4, "feet")
  39617. },
  39618. {
  39619. name: "Normal",
  39620. height: math.unit(8, "feet"),
  39621. default: true
  39622. },
  39623. {
  39624. name: "Big",
  39625. height: math.unit(12, "feet")
  39626. },
  39627. {
  39628. name: "Macro",
  39629. height: math.unit(30, "feet")
  39630. },
  39631. ]
  39632. ))
  39633. characterMakers.push(() => makeCharacter(
  39634. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  39635. {
  39636. front: {
  39637. height: math.unit(14, "feet"),
  39638. weight: math.unit(9.5, "tonnes"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/dawnheart/front.svg",
  39642. extra: 2792/2675,
  39643. bottom: 64/2856
  39644. }
  39645. },
  39646. },
  39647. [
  39648. {
  39649. name: "Normal",
  39650. height: math.unit(14, "feet"),
  39651. default: true
  39652. },
  39653. ]
  39654. ))
  39655. characterMakers.push(() => makeCharacter(
  39656. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39657. {
  39658. front: {
  39659. height: math.unit(1.7, "m"),
  39660. name: "Front",
  39661. image: {
  39662. source: "./media/characters/gladi/front.svg",
  39663. extra: 1460/1362,
  39664. bottom: 19/1479
  39665. }
  39666. },
  39667. back: {
  39668. height: math.unit(1.7, "m"),
  39669. name: "Back",
  39670. image: {
  39671. source: "./media/characters/gladi/back.svg",
  39672. extra: 1459/1357,
  39673. bottom: 12/1471
  39674. }
  39675. },
  39676. feral: {
  39677. height: math.unit(2.05, "m"),
  39678. name: "Feral",
  39679. image: {
  39680. source: "./media/characters/gladi/feral.svg",
  39681. extra: 821/557,
  39682. bottom: 91/912
  39683. }
  39684. },
  39685. },
  39686. [
  39687. {
  39688. name: "Shortest",
  39689. height: math.unit(70, "cm")
  39690. },
  39691. {
  39692. name: "Normal",
  39693. height: math.unit(1.7, "m")
  39694. },
  39695. {
  39696. name: "Macro",
  39697. height: math.unit(10, "m"),
  39698. default: true
  39699. },
  39700. {
  39701. name: "Tallest",
  39702. height: math.unit(200, "m")
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(5 + 7/12, "feet"),
  39711. weight: math.unit(2, "tons"),
  39712. name: "Front",
  39713. image: {
  39714. source: "./media/characters/erdno/front.svg",
  39715. extra: 1234/1129,
  39716. bottom: 35/1269
  39717. }
  39718. },
  39719. angled: {
  39720. height: math.unit(5 + 7/12, "feet"),
  39721. weight: math.unit(2, "tons"),
  39722. name: "Angled",
  39723. image: {
  39724. source: "./media/characters/erdno/angled.svg",
  39725. extra: 1185/1139,
  39726. bottom: 36/1221
  39727. }
  39728. },
  39729. side: {
  39730. height: math.unit(5 + 7/12, "feet"),
  39731. weight: math.unit(2, "tons"),
  39732. name: "Side",
  39733. image: {
  39734. source: "./media/characters/erdno/side.svg",
  39735. extra: 1191/1144,
  39736. bottom: 40/1231
  39737. }
  39738. },
  39739. back: {
  39740. height: math.unit(5 + 7/12, "feet"),
  39741. weight: math.unit(2, "tons"),
  39742. name: "Back",
  39743. image: {
  39744. source: "./media/characters/erdno/back.svg",
  39745. extra: 1202/1146,
  39746. bottom: 17/1219
  39747. }
  39748. },
  39749. frontNsfw: {
  39750. height: math.unit(5 + 7/12, "feet"),
  39751. weight: math.unit(2, "tons"),
  39752. name: "Front (NSFW)",
  39753. image: {
  39754. source: "./media/characters/erdno/front-nsfw.svg",
  39755. extra: 1234/1129,
  39756. bottom: 35/1269
  39757. }
  39758. },
  39759. angledNsfw: {
  39760. height: math.unit(5 + 7/12, "feet"),
  39761. weight: math.unit(2, "tons"),
  39762. name: "Angled (NSFW)",
  39763. image: {
  39764. source: "./media/characters/erdno/angled-nsfw.svg",
  39765. extra: 1185/1139,
  39766. bottom: 36/1221
  39767. }
  39768. },
  39769. sideNsfw: {
  39770. height: math.unit(5 + 7/12, "feet"),
  39771. weight: math.unit(2, "tons"),
  39772. name: "Side (NSFW)",
  39773. image: {
  39774. source: "./media/characters/erdno/side-nsfw.svg",
  39775. extra: 1191/1144,
  39776. bottom: 40/1231
  39777. }
  39778. },
  39779. backNsfw: {
  39780. height: math.unit(5 + 7/12, "feet"),
  39781. weight: math.unit(2, "tons"),
  39782. name: "Back (NSFW)",
  39783. image: {
  39784. source: "./media/characters/erdno/back-nsfw.svg",
  39785. extra: 1202/1146,
  39786. bottom: 17/1219
  39787. }
  39788. },
  39789. frontHyper: {
  39790. height: math.unit(5 + 7/12, "feet"),
  39791. weight: math.unit(2, "tons"),
  39792. name: "Front (Hyper)",
  39793. image: {
  39794. source: "./media/characters/erdno/front-hyper.svg",
  39795. extra: 1298/1136,
  39796. bottom: 35/1333
  39797. }
  39798. },
  39799. },
  39800. [
  39801. {
  39802. name: "Normal",
  39803. height: math.unit(5 + 7/12, "feet"),
  39804. default: true
  39805. },
  39806. {
  39807. name: "Big",
  39808. height: math.unit(5.7, "meters")
  39809. },
  39810. {
  39811. name: "Macro",
  39812. height: math.unit(5.7, "kilometers")
  39813. },
  39814. {
  39815. name: "Megamacro",
  39816. height: math.unit(5.7, "earths")
  39817. },
  39818. ]
  39819. ))
  39820. characterMakers.push(() => makeCharacter(
  39821. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39822. {
  39823. front: {
  39824. height: math.unit(5 + 10/12, "feet"),
  39825. weight: math.unit(150, "lb"),
  39826. name: "Front",
  39827. image: {
  39828. source: "./media/characters/jamie/front.svg",
  39829. extra: 1908/1768,
  39830. bottom: 19/1927
  39831. }
  39832. },
  39833. },
  39834. [
  39835. {
  39836. name: "Minimum",
  39837. height: math.unit(2, "cm")
  39838. },
  39839. {
  39840. name: "Micro",
  39841. height: math.unit(3, "inches")
  39842. },
  39843. {
  39844. name: "Normal",
  39845. height: math.unit(5 + 10/12, "feet"),
  39846. default: true
  39847. },
  39848. {
  39849. name: "Macro",
  39850. height: math.unit(150, "feet")
  39851. },
  39852. {
  39853. name: "Megamacro",
  39854. height: math.unit(10000, "m")
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(2, "meters"),
  39863. weight: math.unit(100, "kg"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/shiron/front.svg",
  39867. extra: 2103/1985,
  39868. bottom: 98/2201
  39869. }
  39870. },
  39871. back: {
  39872. height: math.unit(2, "meters"),
  39873. weight: math.unit(100, "kg"),
  39874. name: "Back",
  39875. image: {
  39876. source: "./media/characters/shiron/back.svg",
  39877. extra: 2110/2015,
  39878. bottom: 89/2199
  39879. }
  39880. },
  39881. hand: {
  39882. height: math.unit(0.96, "feet"),
  39883. name: "Hand",
  39884. image: {
  39885. source: "./media/characters/shiron/hand.svg"
  39886. }
  39887. },
  39888. foot: {
  39889. height: math.unit(1.464, "feet"),
  39890. name: "Foot",
  39891. image: {
  39892. source: "./media/characters/shiron/foot.svg"
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Normal",
  39899. height: math.unit(2, "meters")
  39900. },
  39901. {
  39902. name: "Macro",
  39903. height: math.unit(500, "meters"),
  39904. default: true
  39905. },
  39906. {
  39907. name: "Megamacro",
  39908. height: math.unit(20, "km")
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39914. {
  39915. front: {
  39916. height: math.unit(6, "feet"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/sam/front.svg",
  39920. extra: 849/826,
  39921. bottom: 19/868
  39922. }
  39923. },
  39924. },
  39925. [
  39926. {
  39927. name: "Normal",
  39928. height: math.unit(6, "feet"),
  39929. default: true
  39930. },
  39931. ]
  39932. ))
  39933. characterMakers.push(() => makeCharacter(
  39934. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39935. {
  39936. front: {
  39937. height: math.unit(8 + 4/12, "feet"),
  39938. weight: math.unit(122, "kg"),
  39939. name: "Front",
  39940. image: {
  39941. source: "./media/characters/namori-kurogawa/front.svg",
  39942. extra: 1894/1576,
  39943. bottom: 34/1928
  39944. }
  39945. },
  39946. },
  39947. [
  39948. {
  39949. name: "Normal",
  39950. height: math.unit(8 + 4/12, "feet"),
  39951. default: true
  39952. },
  39953. ]
  39954. ))
  39955. characterMakers.push(() => makeCharacter(
  39956. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39957. {
  39958. front: {
  39959. height: math.unit(9, "feet"),
  39960. weight: math.unit(621, "lb"),
  39961. name: "Front",
  39962. image: {
  39963. source: "./media/characters/unmru/front.svg",
  39964. extra: 1853/1747,
  39965. bottom: 73/1926
  39966. }
  39967. },
  39968. side: {
  39969. height: math.unit(9, "feet"),
  39970. weight: math.unit(621, "lb"),
  39971. name: "Side",
  39972. image: {
  39973. source: "./media/characters/unmru/side.svg",
  39974. extra: 1781/1671,
  39975. bottom: 127/1908
  39976. }
  39977. },
  39978. back: {
  39979. height: math.unit(9, "feet"),
  39980. weight: math.unit(621, "lb"),
  39981. name: "Back",
  39982. image: {
  39983. source: "./media/characters/unmru/back.svg",
  39984. extra: 1894/1765,
  39985. bottom: 75/1969
  39986. }
  39987. },
  39988. dick: {
  39989. height: math.unit(3, "feet"),
  39990. weight: math.unit(35, "lb"),
  39991. name: "Dick",
  39992. image: {
  39993. source: "./media/characters/unmru/dick.svg"
  39994. }
  39995. },
  39996. },
  39997. [
  39998. {
  39999. name: "Normal",
  40000. height: math.unit(9, "feet")
  40001. },
  40002. {
  40003. name: "Natural",
  40004. height: math.unit(27, "feet"),
  40005. default: true
  40006. },
  40007. {
  40008. name: "Giant",
  40009. height: math.unit(90, "feet")
  40010. },
  40011. {
  40012. name: "Kaiju",
  40013. height: math.unit(270, "feet")
  40014. },
  40015. {
  40016. name: "Macro",
  40017. height: math.unit(900, "feet")
  40018. },
  40019. {
  40020. name: "Macro+",
  40021. height: math.unit(2700, "feet")
  40022. },
  40023. {
  40024. name: "Megamacro",
  40025. height: math.unit(9000, "feet")
  40026. },
  40027. {
  40028. name: "City-Crushing",
  40029. height: math.unit(27000, "feet")
  40030. },
  40031. {
  40032. name: "Mountain-Mashing",
  40033. height: math.unit(90000, "feet")
  40034. },
  40035. {
  40036. name: "Earth-Eclipsing",
  40037. height: math.unit(2.7e8, "feet")
  40038. },
  40039. {
  40040. name: "Sol-Swallowing",
  40041. height: math.unit(9e10, "feet")
  40042. },
  40043. {
  40044. name: "Majoris-Munching",
  40045. height: math.unit(2.7e13, "feet")
  40046. },
  40047. ]
  40048. ))
  40049. characterMakers.push(() => makeCharacter(
  40050. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40051. {
  40052. front: {
  40053. height: math.unit(1, "inch"),
  40054. name: "Front",
  40055. image: {
  40056. source: "./media/characters/squeaks-mouse/front.svg",
  40057. extra: 352/308,
  40058. bottom: 25/377
  40059. }
  40060. },
  40061. },
  40062. [
  40063. {
  40064. name: "Micro",
  40065. height: math.unit(1, "inch"),
  40066. default: true
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40072. {
  40073. side: {
  40074. height: math.unit(35, "feet"),
  40075. name: "Side",
  40076. image: {
  40077. source: "./media/characters/sayko/side.svg",
  40078. extra: 1697/1021,
  40079. bottom: 82/1779
  40080. }
  40081. },
  40082. head: {
  40083. height: math.unit(16, "feet"),
  40084. name: "Head",
  40085. image: {
  40086. source: "./media/characters/sayko/head.svg"
  40087. }
  40088. },
  40089. forepaw: {
  40090. height: math.unit(7.85, "feet"),
  40091. name: "Forepaw",
  40092. image: {
  40093. source: "./media/characters/sayko/forepaw.svg"
  40094. }
  40095. },
  40096. hindpaw: {
  40097. height: math.unit(8.8, "feet"),
  40098. name: "Hindpaw",
  40099. image: {
  40100. source: "./media/characters/sayko/hindpaw.svg"
  40101. }
  40102. },
  40103. },
  40104. [
  40105. {
  40106. name: "Normal",
  40107. height: math.unit(35, "feet"),
  40108. default: true
  40109. },
  40110. {
  40111. name: "Colossus",
  40112. height: math.unit(100, "meters")
  40113. },
  40114. {
  40115. name: "\"Small\" Deity",
  40116. height: math.unit(1, "km")
  40117. },
  40118. {
  40119. name: "\"Large\" Deity",
  40120. height: math.unit(15, "km")
  40121. },
  40122. ]
  40123. ))
  40124. characterMakers.push(() => makeCharacter(
  40125. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40126. {
  40127. front: {
  40128. height: math.unit(6, "feet"),
  40129. weight: math.unit(250, "lb"),
  40130. name: "Front",
  40131. image: {
  40132. source: "./media/characters/mukiro/front.svg",
  40133. extra: 1368/1310,
  40134. bottom: 34/1402
  40135. }
  40136. },
  40137. },
  40138. [
  40139. {
  40140. name: "Normal",
  40141. height: math.unit(6, "feet"),
  40142. default: true
  40143. },
  40144. ]
  40145. ))
  40146. characterMakers.push(() => makeCharacter(
  40147. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40148. {
  40149. front: {
  40150. height: math.unit(12 + 4/12, "feet"),
  40151. name: "Front",
  40152. image: {
  40153. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40154. extra: 1346/1311,
  40155. bottom: 65/1411
  40156. }
  40157. },
  40158. },
  40159. [
  40160. {
  40161. name: "Base",
  40162. height: math.unit(12 + 4/12, "feet"),
  40163. default: true
  40164. },
  40165. {
  40166. name: "Macro",
  40167. height: math.unit(150, "feet")
  40168. },
  40169. {
  40170. name: "Mega",
  40171. height: math.unit(2, "miles")
  40172. },
  40173. {
  40174. name: "Demi God",
  40175. height: math.unit(4, "AU")
  40176. },
  40177. {
  40178. name: "God Size",
  40179. height: math.unit(1, "universe")
  40180. },
  40181. ]
  40182. ))
  40183. characterMakers.push(() => makeCharacter(
  40184. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40185. {
  40186. front: {
  40187. height: math.unit(3 + 3/12, "feet"),
  40188. weight: math.unit(88, "lb"),
  40189. name: "Front",
  40190. image: {
  40191. source: "./media/characters/trey/front.svg",
  40192. extra: 1815/1509,
  40193. bottom: 60/1875
  40194. }
  40195. },
  40196. },
  40197. [
  40198. {
  40199. name: "Normal",
  40200. height: math.unit(3 + 3/12, "feet"),
  40201. default: true
  40202. },
  40203. ]
  40204. ))
  40205. characterMakers.push(() => makeCharacter(
  40206. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40207. {
  40208. front: {
  40209. height: math.unit(4, "meters"),
  40210. name: "Front",
  40211. image: {
  40212. source: "./media/characters/adelonda/front.svg",
  40213. extra: 1077/982,
  40214. bottom: 39/1116
  40215. }
  40216. },
  40217. back: {
  40218. height: math.unit(4, "meters"),
  40219. name: "Back",
  40220. image: {
  40221. source: "./media/characters/adelonda/back.svg",
  40222. extra: 1105/1003,
  40223. bottom: 25/1130
  40224. }
  40225. },
  40226. feral: {
  40227. height: math.unit(40/1.5, "meters"),
  40228. name: "Feral",
  40229. image: {
  40230. source: "./media/characters/adelonda/feral.svg",
  40231. extra: 597/271,
  40232. bottom: 387/984
  40233. }
  40234. },
  40235. },
  40236. [
  40237. {
  40238. name: "Normal",
  40239. height: math.unit(4, "meters"),
  40240. default: true
  40241. },
  40242. ]
  40243. ))
  40244. characterMakers.push(() => makeCharacter(
  40245. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40246. {
  40247. front: {
  40248. height: math.unit(8 + 4/12, "feet"),
  40249. weight: math.unit(670, "lb"),
  40250. name: "Front",
  40251. image: {
  40252. source: "./media/characters/acadiel/front.svg",
  40253. extra: 1901/1595,
  40254. bottom: 142/2043
  40255. }
  40256. },
  40257. },
  40258. [
  40259. {
  40260. name: "Normal",
  40261. height: math.unit(8 + 4/12, "feet"),
  40262. default: true
  40263. },
  40264. {
  40265. name: "Macro",
  40266. height: math.unit(200, "feet")
  40267. },
  40268. ]
  40269. ))
  40270. characterMakers.push(() => makeCharacter(
  40271. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40272. {
  40273. front: {
  40274. height: math.unit(6 + 2/12, "feet"),
  40275. weight: math.unit(185, "lb"),
  40276. name: "Front",
  40277. image: {
  40278. source: "./media/characters/kayne-ein/front.svg",
  40279. extra: 1780/1560,
  40280. bottom: 81/1861
  40281. }
  40282. },
  40283. },
  40284. [
  40285. {
  40286. name: "Normal",
  40287. height: math.unit(6 + 2/12, "feet"),
  40288. default: true
  40289. },
  40290. {
  40291. name: "Transformation Stage",
  40292. height: math.unit(15, "feet")
  40293. },
  40294. {
  40295. name: "Macro",
  40296. height: math.unit(150, "feet")
  40297. },
  40298. {
  40299. name: "Earth's Shadow",
  40300. height: math.unit(6200, "miles")
  40301. },
  40302. {
  40303. name: "Universal Demon",
  40304. height: math.unit(28e9, "parsecs")
  40305. },
  40306. {
  40307. name: "Multiverse God",
  40308. height: math.unit(3, "multiverses")
  40309. },
  40310. ]
  40311. ))
  40312. characterMakers.push(() => makeCharacter(
  40313. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40314. {
  40315. front: {
  40316. height: math.unit(5 + 5/12, "feet"),
  40317. name: "Front",
  40318. image: {
  40319. source: "./media/characters/fawn/front.svg",
  40320. extra: 1873/1731,
  40321. bottom: 95/1968
  40322. }
  40323. },
  40324. back: {
  40325. height: math.unit(5 + 5/12, "feet"),
  40326. name: "Back",
  40327. image: {
  40328. source: "./media/characters/fawn/back.svg",
  40329. extra: 1813/1700,
  40330. bottom: 14/1827
  40331. }
  40332. },
  40333. hoof: {
  40334. height: math.unit(1.45, "feet"),
  40335. name: "Hoof",
  40336. image: {
  40337. source: "./media/characters/fawn/hoof.svg"
  40338. }
  40339. },
  40340. },
  40341. [
  40342. {
  40343. name: "Normal",
  40344. height: math.unit(5 + 5/12, "feet"),
  40345. default: true
  40346. },
  40347. ]
  40348. ))
  40349. characterMakers.push(() => makeCharacter(
  40350. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40351. {
  40352. front: {
  40353. height: math.unit(2 + 5/12, "feet"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/orion/front.svg",
  40357. extra: 1366/1304,
  40358. bottom: 43/1409
  40359. }
  40360. },
  40361. paw: {
  40362. height: math.unit(0.52, "feet"),
  40363. name: "Paw",
  40364. image: {
  40365. source: "./media/characters/orion/paw.svg"
  40366. }
  40367. },
  40368. },
  40369. [
  40370. {
  40371. name: "Normal",
  40372. height: math.unit(2 + 5/12, "feet"),
  40373. default: true
  40374. },
  40375. ]
  40376. ))
  40377. characterMakers.push(() => makeCharacter(
  40378. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40379. {
  40380. front: {
  40381. height: math.unit(5 + 10/12, "feet"),
  40382. name: "Front",
  40383. image: {
  40384. source: "./media/characters/vera/front.svg",
  40385. extra: 1680/1575,
  40386. bottom: 49/1729
  40387. }
  40388. },
  40389. back: {
  40390. height: math.unit(5 + 10/12, "feet"),
  40391. name: "Back",
  40392. image: {
  40393. source: "./media/characters/vera/back.svg",
  40394. extra: 1700/1588,
  40395. bottom: 18/1718
  40396. }
  40397. },
  40398. arcanine: {
  40399. height: math.unit(6 + 8/12, "feet"),
  40400. name: "Arcanine",
  40401. image: {
  40402. source: "./media/characters/vera/arcanine.svg",
  40403. extra: 1590/1511,
  40404. bottom: 71/1661
  40405. }
  40406. },
  40407. maw: {
  40408. height: math.unit(0.82, "feet"),
  40409. name: "Maw",
  40410. image: {
  40411. source: "./media/characters/vera/maw.svg"
  40412. }
  40413. },
  40414. mawArcanine: {
  40415. height: math.unit(0.97, "feet"),
  40416. name: "Maw (Arcanine)",
  40417. image: {
  40418. source: "./media/characters/vera/maw-arcanine.svg"
  40419. }
  40420. },
  40421. paw: {
  40422. height: math.unit(0.75, "feet"),
  40423. name: "Paw",
  40424. image: {
  40425. source: "./media/characters/vera/paw.svg"
  40426. }
  40427. },
  40428. pawprint: {
  40429. height: math.unit(0.52, "feet"),
  40430. name: "Pawprint",
  40431. image: {
  40432. source: "./media/characters/vera/pawprint.svg"
  40433. }
  40434. },
  40435. },
  40436. [
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(5 + 10/12, "feet"),
  40440. default: true
  40441. },
  40442. {
  40443. name: "Macro",
  40444. height: math.unit(75, "feet")
  40445. },
  40446. ]
  40447. ))
  40448. characterMakers.push(() => makeCharacter(
  40449. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40450. {
  40451. front: {
  40452. height: math.unit(4, "feet"),
  40453. weight: math.unit(40, "lb"),
  40454. name: "Front",
  40455. image: {
  40456. source: "./media/characters/orvan-rabbit/front.svg",
  40457. extra: 1896/1642,
  40458. bottom: 29/1925
  40459. }
  40460. },
  40461. },
  40462. [
  40463. {
  40464. name: "Normal",
  40465. height: math.unit(4, "feet"),
  40466. default: true
  40467. },
  40468. ]
  40469. ))
  40470. characterMakers.push(() => makeCharacter(
  40471. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40472. {
  40473. front: {
  40474. height: math.unit(6, "feet"),
  40475. weight: math.unit(168, "lb"),
  40476. name: "Front",
  40477. image: {
  40478. source: "./media/characters/lisa/front.svg",
  40479. extra: 2065/1867,
  40480. bottom: 46/2111
  40481. }
  40482. },
  40483. back: {
  40484. height: math.unit(6, "feet"),
  40485. weight: math.unit(168, "lb"),
  40486. name: "Back",
  40487. image: {
  40488. source: "./media/characters/lisa/back.svg",
  40489. extra: 1982/1838,
  40490. bottom: 29/2011
  40491. }
  40492. },
  40493. maw: {
  40494. height: math.unit(0.81, "feet"),
  40495. name: "Maw",
  40496. image: {
  40497. source: "./media/characters/lisa/maw.svg"
  40498. }
  40499. },
  40500. paw: {
  40501. height: math.unit(0.9, "feet"),
  40502. name: "Paw",
  40503. image: {
  40504. source: "./media/characters/lisa/paw.svg"
  40505. }
  40506. },
  40507. caribousune: {
  40508. height: math.unit(7 + 2/12, "feet"),
  40509. weight: math.unit(268, "lb"),
  40510. name: "Caribousune",
  40511. image: {
  40512. source: "./media/characters/lisa/caribousune.svg",
  40513. extra: 1843/1633,
  40514. bottom: 29/1872
  40515. }
  40516. },
  40517. frontCaribousune: {
  40518. height: math.unit(7 + 2/12, "feet"),
  40519. weight: math.unit(268, "lb"),
  40520. name: "Front (Caribousune)",
  40521. image: {
  40522. source: "./media/characters/lisa/front-caribousune.svg",
  40523. extra: 1818/1638,
  40524. bottom: 52/1870
  40525. }
  40526. },
  40527. sideCaribousune: {
  40528. height: math.unit(7 + 2/12, "feet"),
  40529. weight: math.unit(268, "lb"),
  40530. name: "Side (Caribousune)",
  40531. image: {
  40532. source: "./media/characters/lisa/side-caribousune.svg",
  40533. extra: 1851/1635,
  40534. bottom: 16/1867
  40535. }
  40536. },
  40537. backCaribousune: {
  40538. height: math.unit(7 + 2/12, "feet"),
  40539. weight: math.unit(268, "lb"),
  40540. name: "Back (Caribousune)",
  40541. image: {
  40542. source: "./media/characters/lisa/back-caribousune.svg",
  40543. extra: 1801/1604,
  40544. bottom: 44/1845
  40545. }
  40546. },
  40547. caribou: {
  40548. height: math.unit(7 + 2/12, "feet"),
  40549. weight: math.unit(268, "lb"),
  40550. name: "Caribou",
  40551. image: {
  40552. source: "./media/characters/lisa/caribou.svg",
  40553. extra: 1843/1633,
  40554. bottom: 29/1872
  40555. }
  40556. },
  40557. frontCaribou: {
  40558. height: math.unit(7 + 2/12, "feet"),
  40559. weight: math.unit(268, "lb"),
  40560. name: "Front (Caribou)",
  40561. image: {
  40562. source: "./media/characters/lisa/front-caribou.svg",
  40563. extra: 1818/1638,
  40564. bottom: 52/1870
  40565. }
  40566. },
  40567. sideCaribou: {
  40568. height: math.unit(7 + 2/12, "feet"),
  40569. weight: math.unit(268, "lb"),
  40570. name: "Side (Caribou)",
  40571. image: {
  40572. source: "./media/characters/lisa/side-caribou.svg",
  40573. extra: 1851/1635,
  40574. bottom: 16/1867
  40575. }
  40576. },
  40577. backCaribou: {
  40578. height: math.unit(7 + 2/12, "feet"),
  40579. weight: math.unit(268, "lb"),
  40580. name: "Back (Caribou)",
  40581. image: {
  40582. source: "./media/characters/lisa/back-caribou.svg",
  40583. extra: 1801/1604,
  40584. bottom: 44/1845
  40585. }
  40586. },
  40587. mawCaribou: {
  40588. height: math.unit(1.45, "feet"),
  40589. name: "Maw (Caribou)",
  40590. image: {
  40591. source: "./media/characters/lisa/maw-caribou.svg"
  40592. }
  40593. },
  40594. mawCaribousune: {
  40595. height: math.unit(1.45, "feet"),
  40596. name: "Maw (Caribousune)",
  40597. image: {
  40598. source: "./media/characters/lisa/maw-caribousune.svg"
  40599. }
  40600. },
  40601. pawCaribousune: {
  40602. height: math.unit(1.61, "feet"),
  40603. name: "Paw (Caribou)",
  40604. image: {
  40605. source: "./media/characters/lisa/paw-caribousune.svg"
  40606. }
  40607. },
  40608. },
  40609. [
  40610. {
  40611. name: "Normal",
  40612. height: math.unit(6, "feet")
  40613. },
  40614. {
  40615. name: "God Size",
  40616. height: math.unit(72, "feet"),
  40617. default: true
  40618. },
  40619. {
  40620. name: "Towering",
  40621. height: math.unit(288, "feet")
  40622. },
  40623. {
  40624. name: "City Size",
  40625. height: math.unit(48384, "feet")
  40626. },
  40627. {
  40628. name: "Continental",
  40629. height: math.unit(4200, "miles")
  40630. },
  40631. {
  40632. name: "Planet Eater",
  40633. height: math.unit(42, "earths")
  40634. },
  40635. {
  40636. name: "Star Swallower",
  40637. height: math.unit(42, "solarradii")
  40638. },
  40639. {
  40640. name: "System Swallower",
  40641. height: math.unit(84000, "AU")
  40642. },
  40643. {
  40644. name: "Galaxy Gobbler",
  40645. height: math.unit(42, "galaxies")
  40646. },
  40647. {
  40648. name: "Universe Devourer",
  40649. height: math.unit(42, "universes")
  40650. },
  40651. {
  40652. name: "Multiverse Muncher",
  40653. height: math.unit(42, "multiverses")
  40654. },
  40655. ]
  40656. ))
  40657. characterMakers.push(() => makeCharacter(
  40658. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40659. {
  40660. front: {
  40661. height: math.unit(36, "feet"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/shadow-rat/front.svg",
  40665. extra: 1845/1758,
  40666. bottom: 83/1928
  40667. }
  40668. },
  40669. },
  40670. [
  40671. {
  40672. name: "Macro",
  40673. height: math.unit(36, "feet"),
  40674. default: true
  40675. },
  40676. ]
  40677. ))
  40678. characterMakers.push(() => makeCharacter(
  40679. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40680. {
  40681. side: {
  40682. height: math.unit(8, "feet"),
  40683. weight: math.unit(2630, "lb"),
  40684. name: "Side",
  40685. image: {
  40686. source: "./media/characters/torallia/side.svg",
  40687. extra: 2164/2021,
  40688. bottom: 371/2535
  40689. }
  40690. },
  40691. },
  40692. [
  40693. {
  40694. name: "Mortal Interaction",
  40695. height: math.unit(8, "feet")
  40696. },
  40697. {
  40698. name: "Natural",
  40699. height: math.unit(24, "feet"),
  40700. default: true
  40701. },
  40702. {
  40703. name: "Giant",
  40704. height: math.unit(80, "feet")
  40705. },
  40706. {
  40707. name: "Kaiju",
  40708. height: math.unit(240, "feet")
  40709. },
  40710. {
  40711. name: "Macro",
  40712. height: math.unit(800, "feet")
  40713. },
  40714. {
  40715. name: "Macro+",
  40716. height: math.unit(2400, "feet")
  40717. },
  40718. {
  40719. name: "Macro++",
  40720. height: math.unit(8000, "feet")
  40721. },
  40722. {
  40723. name: "City-Crushing",
  40724. height: math.unit(24000, "feet")
  40725. },
  40726. {
  40727. name: "Mountain-Mashing",
  40728. height: math.unit(80000, "feet")
  40729. },
  40730. {
  40731. name: "District Demolisher",
  40732. height: math.unit(240000, "feet")
  40733. },
  40734. {
  40735. name: "Tri-County Terror",
  40736. height: math.unit(800000, "feet")
  40737. },
  40738. {
  40739. name: "State Smasher",
  40740. height: math.unit(2.4e6, "feet")
  40741. },
  40742. {
  40743. name: "Nation Nemesis",
  40744. height: math.unit(8e6, "feet")
  40745. },
  40746. {
  40747. name: "Continent Cracker",
  40748. height: math.unit(2.4e7, "feet")
  40749. },
  40750. {
  40751. name: "Planet-Pillaging",
  40752. height: math.unit(8e7, "feet")
  40753. },
  40754. {
  40755. name: "Earth-Eclipsing",
  40756. height: math.unit(2.4e8, "feet")
  40757. },
  40758. {
  40759. name: "Jovian-Jostling",
  40760. height: math.unit(8e8, "feet")
  40761. },
  40762. {
  40763. name: "Gas Giant Gulper",
  40764. height: math.unit(2.4e9, "feet")
  40765. },
  40766. {
  40767. name: "Astral Annihilator",
  40768. height: math.unit(8e9, "feet")
  40769. },
  40770. {
  40771. name: "Celestial Conqueror",
  40772. height: math.unit(2.4e10, "feet")
  40773. },
  40774. {
  40775. name: "Sol-Swallowing",
  40776. height: math.unit(8e10, "feet")
  40777. },
  40778. {
  40779. name: "Hunter of the Heavens",
  40780. height: math.unit(2.4e13, "feet")
  40781. },
  40782. ]
  40783. ))
  40784. characterMakers.push(() => makeCharacter(
  40785. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40786. {
  40787. front: {
  40788. height: math.unit(6 + 8/12, "feet"),
  40789. weight: math.unit(250, "kilograms"),
  40790. volume: math.unit(28, "liters"),
  40791. name: "Front",
  40792. image: {
  40793. source: "./media/characters/rebecca-pawlson/front.svg",
  40794. extra: 1737/1596,
  40795. bottom: 107/1844
  40796. }
  40797. },
  40798. back: {
  40799. height: math.unit(6 + 8/12, "feet"),
  40800. weight: math.unit(250, "kilograms"),
  40801. volume: math.unit(28, "liters"),
  40802. name: "Back",
  40803. image: {
  40804. source: "./media/characters/rebecca-pawlson/back.svg",
  40805. extra: 1702/1523,
  40806. bottom: 86/1788
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Normal",
  40813. height: math.unit(6 + 8/12, "feet")
  40814. },
  40815. {
  40816. name: "Mini Macro",
  40817. height: math.unit(10, "feet"),
  40818. default: true
  40819. },
  40820. {
  40821. name: "Macro",
  40822. height: math.unit(100, "feet")
  40823. },
  40824. {
  40825. name: "Mega Macro",
  40826. height: math.unit(2500, "feet")
  40827. },
  40828. {
  40829. name: "Giga Macro",
  40830. height: math.unit(50, "miles")
  40831. },
  40832. ]
  40833. ))
  40834. characterMakers.push(() => makeCharacter(
  40835. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40836. {
  40837. front: {
  40838. height: math.unit(7 + 6/12, "feet"),
  40839. weight: math.unit(600, "lb"),
  40840. name: "Front",
  40841. image: {
  40842. source: "./media/characters/moxie-nova/front.svg",
  40843. extra: 1734/1652,
  40844. bottom: 41/1775
  40845. }
  40846. },
  40847. },
  40848. [
  40849. {
  40850. name: "Normal",
  40851. height: math.unit(7 + 6/12, "feet"),
  40852. default: true
  40853. },
  40854. ]
  40855. ))
  40856. characterMakers.push(() => makeCharacter(
  40857. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40858. {
  40859. goat: {
  40860. height: math.unit(4, "feet"),
  40861. weight: math.unit(180, "lb"),
  40862. name: "Goat",
  40863. image: {
  40864. source: "./media/characters/tiffany/goat.svg",
  40865. extra: 1845/1595,
  40866. bottom: 106/1951
  40867. }
  40868. },
  40869. front: {
  40870. height: math.unit(5, "feet"),
  40871. weight: math.unit(150, "lb"),
  40872. name: "Foxcoon",
  40873. image: {
  40874. source: "./media/characters/tiffany/foxcoon.svg",
  40875. extra: 1941/1845,
  40876. bottom: 58/1999
  40877. }
  40878. },
  40879. },
  40880. [
  40881. {
  40882. name: "Normal",
  40883. height: math.unit(5, "feet"),
  40884. default: true
  40885. },
  40886. ]
  40887. ))
  40888. characterMakers.push(() => makeCharacter(
  40889. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40890. {
  40891. front: {
  40892. height: math.unit(8, "feet"),
  40893. weight: math.unit(300, "lb"),
  40894. name: "Front",
  40895. image: {
  40896. source: "./media/characters/raxinath/front.svg",
  40897. extra: 1407/1309,
  40898. bottom: 39/1446
  40899. }
  40900. },
  40901. back: {
  40902. height: math.unit(8, "feet"),
  40903. weight: math.unit(300, "lb"),
  40904. name: "Back",
  40905. image: {
  40906. source: "./media/characters/raxinath/back.svg",
  40907. extra: 1405/1315,
  40908. bottom: 9/1414
  40909. }
  40910. },
  40911. },
  40912. [
  40913. {
  40914. name: "Speck",
  40915. height: math.unit(0.5, "nm")
  40916. },
  40917. {
  40918. name: "Micro",
  40919. height: math.unit(3, "inches")
  40920. },
  40921. {
  40922. name: "Kobold",
  40923. height: math.unit(3, "feet")
  40924. },
  40925. {
  40926. name: "Normal",
  40927. height: math.unit(8, "feet"),
  40928. default: true
  40929. },
  40930. {
  40931. name: "Giant",
  40932. height: math.unit(50, "feet")
  40933. },
  40934. {
  40935. name: "Macro",
  40936. height: math.unit(1000, "feet")
  40937. },
  40938. {
  40939. name: "Megamacro",
  40940. height: math.unit(1, "mile")
  40941. },
  40942. ]
  40943. ))
  40944. characterMakers.push(() => makeCharacter(
  40945. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40946. {
  40947. front: {
  40948. height: math.unit(10, "feet"),
  40949. weight: math.unit(1442, "lb"),
  40950. name: "Front",
  40951. image: {
  40952. source: "./media/characters/mal-dragon/front.svg",
  40953. extra: 1515/1444,
  40954. bottom: 113/1628
  40955. }
  40956. },
  40957. back: {
  40958. height: math.unit(10, "feet"),
  40959. weight: math.unit(1442, "lb"),
  40960. name: "Back",
  40961. image: {
  40962. source: "./media/characters/mal-dragon/back.svg",
  40963. extra: 1527/1434,
  40964. bottom: 25/1552
  40965. }
  40966. },
  40967. },
  40968. [
  40969. {
  40970. name: "Mortal Interaction",
  40971. height: math.unit(10, "feet"),
  40972. default: true
  40973. },
  40974. {
  40975. name: "Large",
  40976. height: math.unit(30, "feet")
  40977. },
  40978. {
  40979. name: "Kaiju",
  40980. height: math.unit(300, "feet")
  40981. },
  40982. {
  40983. name: "Megamacro",
  40984. height: math.unit(10000, "feet")
  40985. },
  40986. {
  40987. name: "Continent Cracker",
  40988. height: math.unit(30000000, "feet")
  40989. },
  40990. {
  40991. name: "Sol-Swallowing",
  40992. height: math.unit(1e11, "feet")
  40993. },
  40994. {
  40995. name: "Light Universal",
  40996. height: math.unit(5, "universes")
  40997. },
  40998. {
  40999. name: "Universe Atoms",
  41000. height: math.unit(1.829e9, "universes")
  41001. },
  41002. {
  41003. name: "Light Multiversal",
  41004. height: math.unit(5, "multiverses")
  41005. },
  41006. {
  41007. name: "Multiverse Atoms",
  41008. height: math.unit(1.829e9, "multiverses")
  41009. },
  41010. {
  41011. name: "Fabric of Time",
  41012. height: math.unit(1e262, "multiverses")
  41013. },
  41014. ]
  41015. ))
  41016. characterMakers.push(() => makeCharacter(
  41017. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41018. {
  41019. front: {
  41020. height: math.unit(9, "feet"),
  41021. weight: math.unit(1050, "lb"),
  41022. name: "Front",
  41023. image: {
  41024. source: "./media/characters/tabitha/front.svg",
  41025. extra: 2083/1994,
  41026. bottom: 68/2151
  41027. }
  41028. },
  41029. },
  41030. [
  41031. {
  41032. name: "Baseline",
  41033. height: math.unit(9, "feet"),
  41034. default: true
  41035. },
  41036. {
  41037. name: "Giant",
  41038. height: math.unit(90, "feet")
  41039. },
  41040. {
  41041. name: "Macro",
  41042. height: math.unit(900, "feet")
  41043. },
  41044. {
  41045. name: "Megamacro",
  41046. height: math.unit(9000, "feet")
  41047. },
  41048. {
  41049. name: "City-Crushing",
  41050. height: math.unit(27000, "feet")
  41051. },
  41052. {
  41053. name: "Mountain-Mashing",
  41054. height: math.unit(90000, "feet")
  41055. },
  41056. {
  41057. name: "Nation Nemesis",
  41058. height: math.unit(9e6, "feet")
  41059. },
  41060. {
  41061. name: "Continent Cracker",
  41062. height: math.unit(27e6, "feet")
  41063. },
  41064. {
  41065. name: "Earth-Eclipsing",
  41066. height: math.unit(2.7e8, "feet")
  41067. },
  41068. {
  41069. name: "Gas Giant Gulper",
  41070. height: math.unit(2.7e9, "feet")
  41071. },
  41072. {
  41073. name: "Sol-Swallowing",
  41074. height: math.unit(9e10, "feet")
  41075. },
  41076. {
  41077. name: "Galaxy Gulper",
  41078. height: math.unit(9, "galaxies")
  41079. },
  41080. {
  41081. name: "Cosmos Churner",
  41082. height: math.unit(9, "universes")
  41083. },
  41084. ]
  41085. ))
  41086. characterMakers.push(() => makeCharacter(
  41087. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41088. {
  41089. front: {
  41090. height: math.unit(160, "cm"),
  41091. weight: math.unit(55, "kg"),
  41092. name: "Front",
  41093. image: {
  41094. source: "./media/characters/tow/front.svg",
  41095. extra: 1751/1722,
  41096. bottom: 74/1825
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Norm",
  41103. height: math.unit(160, "cm")
  41104. },
  41105. {
  41106. name: "Casual",
  41107. height: math.unit(3200, "m"),
  41108. default: true
  41109. },
  41110. {
  41111. name: "Show-Off",
  41112. height: math.unit(160, "km")
  41113. },
  41114. ]
  41115. ))
  41116. characterMakers.push(() => makeCharacter(
  41117. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41118. {
  41119. front: {
  41120. height: math.unit(7 + 11/12, "feet"),
  41121. weight: math.unit(342.8, "lb"),
  41122. name: "Front",
  41123. image: {
  41124. source: "./media/characters/vivian-orca-dragon/front.svg",
  41125. extra: 1890/1865,
  41126. bottom: 28/1918
  41127. }
  41128. },
  41129. },
  41130. [
  41131. {
  41132. name: "Micro",
  41133. height: math.unit(5, "inches")
  41134. },
  41135. {
  41136. name: "Normal",
  41137. height: math.unit(7 + 11/12, "feet"),
  41138. default: true
  41139. },
  41140. {
  41141. name: "Macro",
  41142. height: math.unit(395 + 7/12, "feet")
  41143. },
  41144. ]
  41145. ))
  41146. characterMakers.push(() => makeCharacter(
  41147. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41148. {
  41149. side: {
  41150. height: math.unit(10, "feet"),
  41151. weight: math.unit(1442, "lb"),
  41152. name: "Side",
  41153. image: {
  41154. source: "./media/characters/lotherakon/side.svg",
  41155. extra: 1604/1497,
  41156. bottom: 89/1693
  41157. }
  41158. },
  41159. },
  41160. [
  41161. {
  41162. name: "Mortal Interaction",
  41163. height: math.unit(10, "feet")
  41164. },
  41165. {
  41166. name: "Large",
  41167. height: math.unit(30, "feet"),
  41168. default: true
  41169. },
  41170. {
  41171. name: "Giant",
  41172. height: math.unit(100, "feet")
  41173. },
  41174. {
  41175. name: "Kaiju",
  41176. height: math.unit(300, "feet")
  41177. },
  41178. {
  41179. name: "Macro",
  41180. height: math.unit(1000, "feet")
  41181. },
  41182. {
  41183. name: "Macro+",
  41184. height: math.unit(3000, "feet")
  41185. },
  41186. {
  41187. name: "Megamacro",
  41188. height: math.unit(10000, "feet")
  41189. },
  41190. {
  41191. name: "City-Crushing",
  41192. height: math.unit(30000, "feet")
  41193. },
  41194. {
  41195. name: "Continent Cracker",
  41196. height: math.unit(30e6, "feet")
  41197. },
  41198. {
  41199. name: "Earth Eclipsing",
  41200. height: math.unit(3e8, "feet")
  41201. },
  41202. {
  41203. name: "Gas Giant Gulper",
  41204. height: math.unit(3e9, "feet")
  41205. },
  41206. {
  41207. name: "Sol-Swallowing",
  41208. height: math.unit(1e11, "feet")
  41209. },
  41210. {
  41211. name: "System Swallower",
  41212. height: math.unit(3e14, "feet")
  41213. },
  41214. {
  41215. name: "Galaxy Gulper",
  41216. height: math.unit(10, "galaxies")
  41217. },
  41218. {
  41219. name: "Light Universal",
  41220. height: math.unit(5, "universes")
  41221. },
  41222. {
  41223. name: "Universe Palm",
  41224. height: math.unit(20, "universes")
  41225. },
  41226. {
  41227. name: "Light Multiversal",
  41228. height: math.unit(5, "multiverses")
  41229. },
  41230. {
  41231. name: "Multiverse Palm",
  41232. height: math.unit(20, "multiverses")
  41233. },
  41234. {
  41235. name: "Inferno Incarnate",
  41236. height: math.unit(1e7, "multiverses")
  41237. },
  41238. ]
  41239. ))
  41240. characterMakers.push(() => makeCharacter(
  41241. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41242. {
  41243. front: {
  41244. height: math.unit(8, "feet"),
  41245. weight: math.unit(1200, "lb"),
  41246. name: "Front",
  41247. image: {
  41248. source: "./media/characters/malithee/front.svg",
  41249. extra: 1675/1640,
  41250. bottom: 162/1837
  41251. }
  41252. },
  41253. },
  41254. [
  41255. {
  41256. name: "Mortal Interaction",
  41257. height: math.unit(8, "feet"),
  41258. default: true
  41259. },
  41260. {
  41261. name: "Large",
  41262. height: math.unit(24, "feet")
  41263. },
  41264. {
  41265. name: "Kaiju",
  41266. height: math.unit(240, "feet")
  41267. },
  41268. {
  41269. name: "Megamacro",
  41270. height: math.unit(8000, "feet")
  41271. },
  41272. {
  41273. name: "Continent Cracker",
  41274. height: math.unit(24e6, "feet")
  41275. },
  41276. {
  41277. name: "Earth-Eclipsing",
  41278. height: math.unit(2.4e8, "feet")
  41279. },
  41280. {
  41281. name: "Sol-Swallowing",
  41282. height: math.unit(8e10, "feet")
  41283. },
  41284. {
  41285. name: "Galaxy Gulper",
  41286. height: math.unit(8, "galaxies")
  41287. },
  41288. {
  41289. name: "Light Universal",
  41290. height: math.unit(4, "universes")
  41291. },
  41292. {
  41293. name: "Universe Atoms",
  41294. height: math.unit(1.829e9, "universes")
  41295. },
  41296. {
  41297. name: "Light Multiversal",
  41298. height: math.unit(4, "multiverses")
  41299. },
  41300. {
  41301. name: "Multiverse Atoms",
  41302. height: math.unit(1.829e9, "multiverses")
  41303. },
  41304. {
  41305. name: "Nigh-Omnipresence",
  41306. height: math.unit(8e261, "multiverses")
  41307. },
  41308. ]
  41309. ))
  41310. characterMakers.push(() => makeCharacter(
  41311. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41312. {
  41313. front: {
  41314. height: math.unit(10, "feet"),
  41315. weight: math.unit(1500, "lb"),
  41316. name: "Front",
  41317. image: {
  41318. source: "./media/characters/miles-thestia/front.svg",
  41319. extra: 1812/1727,
  41320. bottom: 86/1898
  41321. }
  41322. },
  41323. back: {
  41324. height: math.unit(10, "feet"),
  41325. weight: math.unit(1500, "lb"),
  41326. name: "Back",
  41327. image: {
  41328. source: "./media/characters/miles-thestia/back.svg",
  41329. extra: 1799/1690,
  41330. bottom: 47/1846
  41331. }
  41332. },
  41333. frontNsfw: {
  41334. height: math.unit(10, "feet"),
  41335. weight: math.unit(1500, "lb"),
  41336. name: "Front (NSFW)",
  41337. image: {
  41338. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41339. extra: 1812/1727,
  41340. bottom: 86/1898
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Mini-Macro",
  41347. height: math.unit(10, "feet"),
  41348. default: true
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(25, "feet"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/titan-s-wulf/front.svg",
  41360. extra: 1560/1484,
  41361. bottom: 76/1636
  41362. }
  41363. },
  41364. },
  41365. [
  41366. {
  41367. name: "Smallest",
  41368. height: math.unit(25, "feet"),
  41369. default: true
  41370. },
  41371. {
  41372. name: "Normal",
  41373. height: math.unit(200, "feet")
  41374. },
  41375. {
  41376. name: "Macro",
  41377. height: math.unit(200000, "feet")
  41378. },
  41379. {
  41380. name: "Multiversal Original",
  41381. height: math.unit(10000, "multiverses")
  41382. },
  41383. ]
  41384. ))
  41385. characterMakers.push(() => makeCharacter(
  41386. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41387. {
  41388. front: {
  41389. height: math.unit(8, "feet"),
  41390. weight: math.unit(553, "lb"),
  41391. name: "Front",
  41392. image: {
  41393. source: "./media/characters/tawendeh/front.svg",
  41394. extra: 2365/2268,
  41395. bottom: 83/2448
  41396. }
  41397. },
  41398. frontClothed: {
  41399. height: math.unit(8, "feet"),
  41400. weight: math.unit(553, "lb"),
  41401. name: "Front (Clothed)",
  41402. image: {
  41403. source: "./media/characters/tawendeh/front-clothed.svg",
  41404. extra: 2365/2268,
  41405. bottom: 83/2448
  41406. }
  41407. },
  41408. back: {
  41409. height: math.unit(8, "feet"),
  41410. weight: math.unit(553, "lb"),
  41411. name: "Back",
  41412. image: {
  41413. source: "./media/characters/tawendeh/back.svg",
  41414. extra: 2397/2294,
  41415. bottom: 42/2439
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Mortal Interaction",
  41422. height: math.unit(8, "feet"),
  41423. default: true
  41424. },
  41425. {
  41426. name: "Giant",
  41427. height: math.unit(80, "feet")
  41428. },
  41429. {
  41430. name: "Macro",
  41431. height: math.unit(800, "feet")
  41432. },
  41433. {
  41434. name: "Megamacro",
  41435. height: math.unit(8000, "feet")
  41436. },
  41437. {
  41438. name: "City-Crushing",
  41439. height: math.unit(24000, "feet")
  41440. },
  41441. {
  41442. name: "Mountain-Mashing",
  41443. height: math.unit(80000, "feet")
  41444. },
  41445. {
  41446. name: "Nation Nemesis",
  41447. height: math.unit(8e6, "feet")
  41448. },
  41449. {
  41450. name: "Continent Cracker",
  41451. height: math.unit(24e6, "feet")
  41452. },
  41453. {
  41454. name: "Earth-Eclipsing",
  41455. height: math.unit(2.4e8, "feet")
  41456. },
  41457. {
  41458. name: "Gas Giant Gulper",
  41459. height: math.unit(2.4e9, "feet")
  41460. },
  41461. {
  41462. name: "Sol-Swallowing",
  41463. height: math.unit(8e10, "feet")
  41464. },
  41465. {
  41466. name: "Galaxy Gulper",
  41467. height: math.unit(8, "galaxies")
  41468. },
  41469. {
  41470. name: "Cosmos Churner",
  41471. height: math.unit(8, "universes")
  41472. },
  41473. {
  41474. name: "Omnipotent Otter",
  41475. height: math.unit(80, "universes")
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41481. {
  41482. front: {
  41483. height: math.unit(2.6, "meters"),
  41484. weight: math.unit(900, "kg"),
  41485. name: "Front",
  41486. image: {
  41487. source: "./media/characters/neesha/front.svg",
  41488. extra: 1803/1653,
  41489. bottom: 128/1931
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Normal",
  41496. height: math.unit(2.6, "meters"),
  41497. default: true
  41498. },
  41499. {
  41500. name: "Macro",
  41501. height: math.unit(50, "meters")
  41502. },
  41503. ]
  41504. ))
  41505. characterMakers.push(() => makeCharacter(
  41506. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41507. {
  41508. front: {
  41509. height: math.unit(5, "feet"),
  41510. weight: math.unit(185, "lb"),
  41511. name: "Front",
  41512. image: {
  41513. source: "./media/characters/kyera/front.svg",
  41514. extra: 1875/1790,
  41515. bottom: 96/1971
  41516. }
  41517. },
  41518. },
  41519. [
  41520. {
  41521. name: "Normal",
  41522. height: math.unit(5, "feet"),
  41523. default: true
  41524. },
  41525. ]
  41526. ))
  41527. characterMakers.push(() => makeCharacter(
  41528. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41529. {
  41530. front: {
  41531. height: math.unit(7 + 6/12, "feet"),
  41532. weight: math.unit(540, "lb"),
  41533. name: "Front",
  41534. image: {
  41535. source: "./media/characters/yuko/front.svg",
  41536. extra: 1282/1222,
  41537. bottom: 101/1383
  41538. }
  41539. },
  41540. frontClothed: {
  41541. height: math.unit(7 + 6/12, "feet"),
  41542. weight: math.unit(540, "lb"),
  41543. name: "Front (Clothed)",
  41544. image: {
  41545. source: "./media/characters/yuko/front-clothed.svg",
  41546. extra: 1282/1222,
  41547. bottom: 101/1383
  41548. }
  41549. },
  41550. },
  41551. [
  41552. {
  41553. name: "Normal",
  41554. height: math.unit(7 + 6/12, "feet"),
  41555. default: true
  41556. },
  41557. {
  41558. name: "Macro",
  41559. height: math.unit(26 + 9/12, "feet")
  41560. },
  41561. {
  41562. name: "Megamacro",
  41563. height: math.unit(300, "feet")
  41564. },
  41565. {
  41566. name: "Gigamacro",
  41567. height: math.unit(5000, "feet")
  41568. },
  41569. {
  41570. name: "Planetary",
  41571. height: math.unit(10000, "miles")
  41572. },
  41573. ]
  41574. ))
  41575. characterMakers.push(() => makeCharacter(
  41576. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41577. {
  41578. front: {
  41579. height: math.unit(8 + 2/12, "feet"),
  41580. weight: math.unit(600, "lb"),
  41581. name: "Front",
  41582. image: {
  41583. source: "./media/characters/deam-nitrel/front.svg",
  41584. extra: 1308/1234,
  41585. bottom: 125/1433
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(8 + 2/12, "feet"),
  41593. default: true
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  41599. {
  41600. front: {
  41601. height: math.unit(6.1, "feet"),
  41602. weight: math.unit(180, "lb"),
  41603. name: "Front",
  41604. image: {
  41605. source: "./media/characters/skyress/front.svg",
  41606. extra: 1045/915,
  41607. bottom: 28/1073
  41608. }
  41609. },
  41610. maw: {
  41611. height: math.unit(1, "feet"),
  41612. name: "Maw",
  41613. image: {
  41614. source: "./media/characters/skyress/maw.svg"
  41615. }
  41616. },
  41617. },
  41618. [
  41619. {
  41620. name: "Normal",
  41621. height: math.unit(6.1, "feet"),
  41622. default: true
  41623. },
  41624. {
  41625. name: "Macro",
  41626. height: math.unit(200, "feet")
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(4 + 2/12, "feet"),
  41635. weight: math.unit(40, "kg"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/amethyst-jones/front.svg",
  41639. extra: 1220/1150,
  41640. bottom: 101/1321
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(4 + 2/12, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  41654. {
  41655. front: {
  41656. height: math.unit(1.7, "m"),
  41657. weight: math.unit(135, "lb"),
  41658. name: "Front",
  41659. image: {
  41660. source: "./media/characters/jade/front.svg",
  41661. extra: 1818/1767,
  41662. bottom: 32/1850
  41663. }
  41664. },
  41665. back: {
  41666. height: math.unit(1.7, "m"),
  41667. weight: math.unit(135, "lb"),
  41668. name: "Back",
  41669. image: {
  41670. source: "./media/characters/jade/back.svg",
  41671. extra: 1869/1809,
  41672. bottom: 35/1904
  41673. }
  41674. },
  41675. hand: {
  41676. height: math.unit(0.24, "m"),
  41677. name: "Hand",
  41678. image: {
  41679. source: "./media/characters/jade/hand.svg"
  41680. }
  41681. },
  41682. foot: {
  41683. height: math.unit(0.263, "m"),
  41684. name: "Foot",
  41685. image: {
  41686. source: "./media/characters/jade/foot.svg"
  41687. }
  41688. },
  41689. dick: {
  41690. height: math.unit(0.47, "m"),
  41691. name: "Dick",
  41692. image: {
  41693. source: "./media/characters/jade/dick.svg"
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Micro",
  41700. height: math.unit(22, "cm")
  41701. },
  41702. {
  41703. name: "Normal",
  41704. height: math.unit(1.7, "m"),
  41705. default: true
  41706. },
  41707. {
  41708. name: "Macro",
  41709. height: math.unit(152, "m")
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(100, "miles"),
  41718. weight: math.unit(20000, "tons"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/cookie/front.svg",
  41722. extra: 1125/1070,
  41723. bottom: 30/1155
  41724. }
  41725. },
  41726. },
  41727. [
  41728. {
  41729. name: "Big",
  41730. height: math.unit(50, "feet")
  41731. },
  41732. {
  41733. name: "Macro",
  41734. height: math.unit(100, "miles"),
  41735. default: true
  41736. },
  41737. {
  41738. name: "Megamacro",
  41739. height: math.unit(90000, "miles")
  41740. },
  41741. ]
  41742. ))
  41743. characterMakers.push(() => makeCharacter(
  41744. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41745. {
  41746. front: {
  41747. height: math.unit(6, "feet"),
  41748. weight: math.unit(145, "lb"),
  41749. name: "Front",
  41750. image: {
  41751. source: "./media/characters/farzian/front.svg",
  41752. extra: 1902/1693,
  41753. bottom: 108/2010
  41754. }
  41755. },
  41756. },
  41757. [
  41758. {
  41759. name: "Macro",
  41760. height: math.unit(500, "feet"),
  41761. default: true
  41762. },
  41763. ]
  41764. ))
  41765. characterMakers.push(() => makeCharacter(
  41766. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41767. {
  41768. front: {
  41769. height: math.unit(3 + 6/12, "feet"),
  41770. weight: math.unit(50, "lb"),
  41771. name: "Front",
  41772. image: {
  41773. source: "./media/characters/kimberly-tilson/front.svg",
  41774. extra: 1400/1322,
  41775. bottom: 36/1436
  41776. }
  41777. },
  41778. back: {
  41779. height: math.unit(3 + 6/12, "feet"),
  41780. weight: math.unit(50, "lb"),
  41781. name: "Back",
  41782. image: {
  41783. source: "./media/characters/kimberly-tilson/back.svg",
  41784. extra: 1370/1307,
  41785. bottom: 20/1390
  41786. }
  41787. },
  41788. },
  41789. [
  41790. {
  41791. name: "Normal",
  41792. height: math.unit(3 + 6/12, "feet"),
  41793. default: true
  41794. },
  41795. ]
  41796. ))
  41797. characterMakers.push(() => makeCharacter(
  41798. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41799. {
  41800. front: {
  41801. height: math.unit(1148, "feet"),
  41802. weight: math.unit(34057, "lb"),
  41803. name: "Front",
  41804. image: {
  41805. source: "./media/characters/harthos/front.svg",
  41806. extra: 1391/1339,
  41807. bottom: 13/1404
  41808. }
  41809. },
  41810. },
  41811. [
  41812. {
  41813. name: "Macro",
  41814. height: math.unit(1148, "feet"),
  41815. default: true
  41816. },
  41817. ]
  41818. ))
  41819. characterMakers.push(() => makeCharacter(
  41820. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41821. {
  41822. front: {
  41823. height: math.unit(15, "feet"),
  41824. name: "Front",
  41825. image: {
  41826. source: "./media/characters/hypatia/front.svg",
  41827. extra: 1653/1591,
  41828. bottom: 79/1732
  41829. }
  41830. },
  41831. },
  41832. [
  41833. {
  41834. name: "Normal",
  41835. height: math.unit(15, "feet")
  41836. },
  41837. {
  41838. name: "Small",
  41839. height: math.unit(300, "feet")
  41840. },
  41841. {
  41842. name: "Macro",
  41843. height: math.unit(2500, "feet"),
  41844. default: true
  41845. },
  41846. {
  41847. name: "Mega Macro",
  41848. height: math.unit(1500, "miles")
  41849. },
  41850. {
  41851. name: "Giga Macro",
  41852. height: math.unit(1.5e6, "miles")
  41853. },
  41854. ]
  41855. ))
  41856. characterMakers.push(() => makeCharacter(
  41857. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41858. {
  41859. front: {
  41860. height: math.unit(6, "feet"),
  41861. weight: math.unit(200, "lb"),
  41862. name: "Front",
  41863. image: {
  41864. source: "./media/characters/wulver/front.svg",
  41865. extra: 1724/1632,
  41866. bottom: 130/1854
  41867. }
  41868. },
  41869. frontNsfw: {
  41870. height: math.unit(6, "feet"),
  41871. weight: math.unit(200, "lb"),
  41872. name: "Front (NSFW)",
  41873. image: {
  41874. source: "./media/characters/wulver/front-nsfw.svg",
  41875. extra: 1724/1632,
  41876. bottom: 130/1854
  41877. }
  41878. },
  41879. },
  41880. [
  41881. {
  41882. name: "Human-Sized",
  41883. height: math.unit(6, "feet")
  41884. },
  41885. {
  41886. name: "Normal",
  41887. height: math.unit(4, "meters"),
  41888. default: true
  41889. },
  41890. {
  41891. name: "Large",
  41892. height: math.unit(6, "m")
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(7, "feet"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/maru/front.svg",
  41904. extra: 1595/1570,
  41905. bottom: 0/1595
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Normal",
  41912. height: math.unit(7, "feet"),
  41913. default: true
  41914. },
  41915. {
  41916. name: "Macro",
  41917. height: math.unit(700, "feet")
  41918. },
  41919. {
  41920. name: "Mega Macro",
  41921. height: math.unit(25, "miles")
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41927. {
  41928. front: {
  41929. height: math.unit(6, "feet"),
  41930. weight: math.unit(170, "lb"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/xenon/front.svg",
  41934. extra: 1376/1305,
  41935. bottom: 56/1432
  41936. }
  41937. },
  41938. back: {
  41939. height: math.unit(6, "feet"),
  41940. weight: math.unit(170, "lb"),
  41941. name: "Back",
  41942. image: {
  41943. source: "./media/characters/xenon/back.svg",
  41944. extra: 1328/1259,
  41945. bottom: 95/1423
  41946. }
  41947. },
  41948. maw: {
  41949. height: math.unit(0.52, "feet"),
  41950. name: "Maw",
  41951. image: {
  41952. source: "./media/characters/xenon/maw.svg"
  41953. }
  41954. },
  41955. handLeft: {
  41956. height: math.unit(0.82 * 169 / 153, "feet"),
  41957. name: "Hand (Left)",
  41958. image: {
  41959. source: "./media/characters/xenon/hand-left.svg"
  41960. }
  41961. },
  41962. handRight: {
  41963. height: math.unit(0.82, "feet"),
  41964. name: "Hand (Right)",
  41965. image: {
  41966. source: "./media/characters/xenon/hand-right.svg"
  41967. }
  41968. },
  41969. footLeft: {
  41970. height: math.unit(1.13, "feet"),
  41971. name: "Foot (Left)",
  41972. image: {
  41973. source: "./media/characters/xenon/foot-left.svg"
  41974. }
  41975. },
  41976. footRight: {
  41977. height: math.unit(1.13 * 194 / 196, "feet"),
  41978. name: "Foot (Right)",
  41979. image: {
  41980. source: "./media/characters/xenon/foot-right.svg"
  41981. }
  41982. },
  41983. },
  41984. [
  41985. {
  41986. name: "Micro",
  41987. height: math.unit(0.8, "inches")
  41988. },
  41989. {
  41990. name: "Normal",
  41991. height: math.unit(6, "feet")
  41992. },
  41993. {
  41994. name: "Macro",
  41995. height: math.unit(50, "feet"),
  41996. default: true
  41997. },
  41998. {
  41999. name: "Macro+",
  42000. height: math.unit(250, "feet")
  42001. },
  42002. {
  42003. name: "Megamacro",
  42004. height: math.unit(1500, "feet")
  42005. },
  42006. ]
  42007. ))
  42008. characterMakers.push(() => makeCharacter(
  42009. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42010. {
  42011. front: {
  42012. height: math.unit(7 + 5/12, "feet"),
  42013. name: "Front",
  42014. image: {
  42015. source: "./media/characters/zane/front.svg",
  42016. extra: 1260/1203,
  42017. bottom: 94/1354
  42018. }
  42019. },
  42020. back: {
  42021. height: math.unit(5.05, "feet"),
  42022. name: "Back",
  42023. image: {
  42024. source: "./media/characters/zane/back.svg",
  42025. extra: 893/829,
  42026. bottom: 30/923
  42027. }
  42028. },
  42029. werewolf: {
  42030. height: math.unit(11, "feet"),
  42031. name: "Werewolf",
  42032. image: {
  42033. source: "./media/characters/zane/werewolf.svg",
  42034. extra: 1383/1323,
  42035. bottom: 89/1472
  42036. }
  42037. },
  42038. foot: {
  42039. height: math.unit(1.46, "feet"),
  42040. name: "Foot",
  42041. image: {
  42042. source: "./media/characters/zane/foot.svg"
  42043. }
  42044. },
  42045. footFront: {
  42046. height: math.unit(0.784, "feet"),
  42047. name: "Foot (Front)",
  42048. image: {
  42049. source: "./media/characters/zane/foot-front.svg"
  42050. }
  42051. },
  42052. dick: {
  42053. height: math.unit(1.95, "feet"),
  42054. name: "Dick",
  42055. image: {
  42056. source: "./media/characters/zane/dick.svg"
  42057. }
  42058. },
  42059. dickWerewolf: {
  42060. height: math.unit(3.77, "feet"),
  42061. name: "Dick (Werewolf)",
  42062. image: {
  42063. source: "./media/characters/zane/dick.svg"
  42064. }
  42065. },
  42066. },
  42067. [
  42068. {
  42069. name: "Normal",
  42070. height: math.unit(7 + 5/12, "feet"),
  42071. default: true
  42072. },
  42073. ]
  42074. ))
  42075. characterMakers.push(() => makeCharacter(
  42076. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42077. {
  42078. front: {
  42079. height: math.unit(6 + 2/12, "feet"),
  42080. weight: math.unit(284, "lb"),
  42081. name: "Front",
  42082. image: {
  42083. source: "./media/characters/benni-desparque/front.svg",
  42084. extra: 1353/1126,
  42085. bottom: 69/1422
  42086. }
  42087. },
  42088. },
  42089. [
  42090. {
  42091. name: "Civilian",
  42092. height: math.unit(6 + 2/12, "feet")
  42093. },
  42094. {
  42095. name: "Normal",
  42096. height: math.unit(98, "feet"),
  42097. default: true
  42098. },
  42099. {
  42100. name: "Kaiju Fighter",
  42101. height: math.unit(268, "feet")
  42102. },
  42103. ]
  42104. ))
  42105. characterMakers.push(() => makeCharacter(
  42106. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42107. {
  42108. front: {
  42109. height: math.unit(5, "feet"),
  42110. weight: math.unit(105, "lb"),
  42111. name: "Front",
  42112. image: {
  42113. source: "./media/characters/maxine/front.svg",
  42114. extra: 1386/1250,
  42115. bottom: 71/1457
  42116. }
  42117. },
  42118. },
  42119. [
  42120. {
  42121. name: "Normal",
  42122. height: math.unit(5, "feet"),
  42123. default: true
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42129. {
  42130. front: {
  42131. height: math.unit(11 + 7/12, "feet"),
  42132. weight: math.unit(9576, "lb"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/scaly/front.svg",
  42136. extra: 888/867,
  42137. bottom: 36/924
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(11 + 7/12, "feet"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42151. {
  42152. front: {
  42153. height: math.unit(6 + 3/12, "feet"),
  42154. name: "Front",
  42155. image: {
  42156. source: "./media/characters/saelria/front.svg",
  42157. extra: 1243/1138,
  42158. bottom: 46/1289
  42159. }
  42160. },
  42161. },
  42162. [
  42163. {
  42164. name: "Micro",
  42165. height: math.unit(6, "inches"),
  42166. },
  42167. {
  42168. name: "Normal",
  42169. height: math.unit(6 + 3/12, "feet"),
  42170. default: true
  42171. },
  42172. {
  42173. name: "Macro",
  42174. height: math.unit(25, "feet")
  42175. },
  42176. ]
  42177. ))
  42178. characterMakers.push(() => makeCharacter(
  42179. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42180. {
  42181. front: {
  42182. height: math.unit(80, "meters"),
  42183. weight: math.unit(7000, "tonnes"),
  42184. name: "Front",
  42185. image: {
  42186. source: "./media/characters/tef/front.svg",
  42187. extra: 2036/1991,
  42188. bottom: 54/2090
  42189. }
  42190. },
  42191. back: {
  42192. height: math.unit(80, "meters"),
  42193. weight: math.unit(7000, "tonnes"),
  42194. name: "Back",
  42195. image: {
  42196. source: "./media/characters/tef/back.svg",
  42197. extra: 2036/1991,
  42198. bottom: 54/2090
  42199. }
  42200. },
  42201. },
  42202. [
  42203. {
  42204. name: "Macro",
  42205. height: math.unit(80, "meters"),
  42206. default: true
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(13, "feet"),
  42215. weight: math.unit(6, "tons"),
  42216. name: "Front",
  42217. image: {
  42218. source: "./media/characters/rover/front.svg",
  42219. extra: 1233/1156,
  42220. bottom: 50/1283
  42221. }
  42222. },
  42223. back: {
  42224. height: math.unit(13, "feet"),
  42225. weight: math.unit(6, "tons"),
  42226. name: "Back",
  42227. image: {
  42228. source: "./media/characters/rover/back.svg",
  42229. extra: 1327/1258,
  42230. bottom: 39/1366
  42231. }
  42232. },
  42233. },
  42234. [
  42235. {
  42236. name: "Normal",
  42237. height: math.unit(13, "feet"),
  42238. default: true
  42239. },
  42240. {
  42241. name: "Macro",
  42242. height: math.unit(1300, "feet")
  42243. },
  42244. {
  42245. name: "Megamacro",
  42246. height: math.unit(1300, "miles")
  42247. },
  42248. {
  42249. name: "Gigamacro",
  42250. height: math.unit(1300000, "miles")
  42251. },
  42252. ]
  42253. ))
  42254. characterMakers.push(() => makeCharacter(
  42255. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42256. {
  42257. front: {
  42258. height: math.unit(6, "feet"),
  42259. weight: math.unit(150, "lb"),
  42260. name: "Front",
  42261. image: {
  42262. source: "./media/characters/ariz/front.svg",
  42263. extra: 1401/1346,
  42264. bottom: 5/1406
  42265. }
  42266. },
  42267. },
  42268. [
  42269. {
  42270. name: "Normal",
  42271. height: math.unit(10, "feet"),
  42272. default: true
  42273. },
  42274. ]
  42275. ))
  42276. characterMakers.push(() => makeCharacter(
  42277. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42278. {
  42279. front: {
  42280. height: math.unit(6, "feet"),
  42281. weight: math.unit(140, "lb"),
  42282. name: "Front",
  42283. image: {
  42284. source: "./media/characters/sigrun/front.svg",
  42285. extra: 1418/1359,
  42286. bottom: 27/1445
  42287. }
  42288. },
  42289. },
  42290. [
  42291. {
  42292. name: "Macro",
  42293. height: math.unit(35, "feet"),
  42294. default: true
  42295. },
  42296. ]
  42297. ))
  42298. characterMakers.push(() => makeCharacter(
  42299. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42300. {
  42301. front: {
  42302. height: math.unit(6, "feet"),
  42303. weight: math.unit(150, "lb"),
  42304. name: "Front",
  42305. image: {
  42306. source: "./media/characters/numin/front.svg",
  42307. extra: 1433/1388,
  42308. bottom: 12/1445
  42309. }
  42310. },
  42311. },
  42312. [
  42313. {
  42314. name: "Macro",
  42315. height: math.unit(21.5, "km"),
  42316. default: true
  42317. },
  42318. ]
  42319. ))
  42320. characterMakers.push(() => makeCharacter(
  42321. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42322. {
  42323. front: {
  42324. height: math.unit(6, "feet"),
  42325. weight: math.unit(463, "lb"),
  42326. name: "Front",
  42327. image: {
  42328. source: "./media/characters/melwa/front.svg",
  42329. extra: 1307/1248,
  42330. bottom: 93/1400
  42331. }
  42332. },
  42333. },
  42334. [
  42335. {
  42336. name: "Macro",
  42337. height: math.unit(50, "meters"),
  42338. default: true
  42339. },
  42340. ]
  42341. ))
  42342. characterMakers.push(() => makeCharacter(
  42343. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42344. {
  42345. front: {
  42346. height: math.unit(325, "feet"),
  42347. name: "Front",
  42348. image: {
  42349. source: "./media/characters/zorkaiju/front.svg",
  42350. extra: 1955/1814,
  42351. bottom: 40/1995
  42352. }
  42353. },
  42354. frontExtended: {
  42355. height: math.unit(325, "feet"),
  42356. name: "Front (Extended)",
  42357. image: {
  42358. source: "./media/characters/zorkaiju/front-extended.svg",
  42359. extra: 1955/1814,
  42360. bottom: 40/1995
  42361. }
  42362. },
  42363. side: {
  42364. height: math.unit(325, "feet"),
  42365. name: "Side",
  42366. image: {
  42367. source: "./media/characters/zorkaiju/side.svg",
  42368. extra: 1495/1396,
  42369. bottom: 17/1512
  42370. }
  42371. },
  42372. sideExtended: {
  42373. height: math.unit(325, "feet"),
  42374. name: "Side (Extended)",
  42375. image: {
  42376. source: "./media/characters/zorkaiju/side-extended.svg",
  42377. extra: 1495/1396,
  42378. bottom: 17/1512
  42379. }
  42380. },
  42381. back: {
  42382. height: math.unit(325, "feet"),
  42383. name: "Back",
  42384. image: {
  42385. source: "./media/characters/zorkaiju/back.svg",
  42386. extra: 1959/1821,
  42387. bottom: 31/1990
  42388. }
  42389. },
  42390. backExtended: {
  42391. height: math.unit(325, "feet"),
  42392. name: "Back (Extended)",
  42393. image: {
  42394. source: "./media/characters/zorkaiju/back-extended.svg",
  42395. extra: 1959/1821,
  42396. bottom: 31/1990
  42397. }
  42398. },
  42399. hand: {
  42400. height: math.unit(58.4, "feet"),
  42401. name: "Hand",
  42402. image: {
  42403. source: "./media/characters/zorkaiju/hand.svg"
  42404. }
  42405. },
  42406. handExtended: {
  42407. height: math.unit(61.4, "feet"),
  42408. name: "Hand (Extended)",
  42409. image: {
  42410. source: "./media/characters/zorkaiju/hand-extended.svg"
  42411. }
  42412. },
  42413. foot: {
  42414. height: math.unit(95, "feet"),
  42415. name: "Foot",
  42416. image: {
  42417. source: "./media/characters/zorkaiju/foot.svg"
  42418. }
  42419. },
  42420. leftArm: {
  42421. height: math.unit(59, "feet"),
  42422. name: "Left Arm",
  42423. image: {
  42424. source: "./media/characters/zorkaiju/left-arm.svg"
  42425. }
  42426. },
  42427. rightArm: {
  42428. height: math.unit(59, "feet"),
  42429. name: "Right Arm",
  42430. image: {
  42431. source: "./media/characters/zorkaiju/right-arm.svg"
  42432. }
  42433. },
  42434. leftArmExtended: {
  42435. height: math.unit(59 * 1.033546, "feet"),
  42436. name: "Left Arm (Extended)",
  42437. image: {
  42438. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42439. }
  42440. },
  42441. rightArmExtended: {
  42442. height: math.unit(59 * 1.0496, "feet"),
  42443. name: "Right Arm (Extended)",
  42444. image: {
  42445. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42446. }
  42447. },
  42448. tail: {
  42449. height: math.unit(104, "feet"),
  42450. name: "Tail",
  42451. image: {
  42452. source: "./media/characters/zorkaiju/tail.svg"
  42453. }
  42454. },
  42455. tailExtended: {
  42456. height: math.unit(104, "feet"),
  42457. name: "Tail (Extended)",
  42458. image: {
  42459. source: "./media/characters/zorkaiju/tail-extended.svg"
  42460. }
  42461. },
  42462. tailBottom: {
  42463. height: math.unit(104, "feet"),
  42464. name: "Tail Bottom",
  42465. image: {
  42466. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42467. }
  42468. },
  42469. crystal: {
  42470. height: math.unit(27.54, "feet"),
  42471. name: "Crystal",
  42472. image: {
  42473. source: "./media/characters/zorkaiju/crystal.svg"
  42474. }
  42475. },
  42476. },
  42477. [
  42478. {
  42479. name: "Kaiju",
  42480. height: math.unit(325, "feet"),
  42481. default: true
  42482. },
  42483. ]
  42484. ))
  42485. characterMakers.push(() => makeCharacter(
  42486. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42487. {
  42488. front: {
  42489. height: math.unit(6 + 1/12, "feet"),
  42490. weight: math.unit(115, "lb"),
  42491. name: "Front",
  42492. image: {
  42493. source: "./media/characters/bailey-belfry/front.svg",
  42494. extra: 1240/1121,
  42495. bottom: 101/1341
  42496. }
  42497. },
  42498. },
  42499. [
  42500. {
  42501. name: "Normal",
  42502. height: math.unit(6 + 1/12, "feet"),
  42503. default: true
  42504. },
  42505. ]
  42506. ))
  42507. characterMakers.push(() => makeCharacter(
  42508. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42509. {
  42510. side: {
  42511. height: math.unit(4, "meters"),
  42512. weight: math.unit(250, "kg"),
  42513. name: "Side",
  42514. image: {
  42515. source: "./media/characters/blacky/side.svg",
  42516. extra: 1027/919,
  42517. bottom: 43/1070
  42518. }
  42519. },
  42520. maw: {
  42521. height: math.unit(1, "meters"),
  42522. name: "Maw",
  42523. image: {
  42524. source: "./media/characters/blacky/maw.svg"
  42525. }
  42526. },
  42527. paw: {
  42528. height: math.unit(1, "meters"),
  42529. name: "Paw",
  42530. image: {
  42531. source: "./media/characters/blacky/paw.svg"
  42532. }
  42533. },
  42534. },
  42535. [
  42536. {
  42537. name: "Normal",
  42538. height: math.unit(4, "meters"),
  42539. default: true
  42540. },
  42541. ]
  42542. ))
  42543. characterMakers.push(() => makeCharacter(
  42544. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42545. {
  42546. front: {
  42547. height: math.unit(170, "cm"),
  42548. weight: math.unit(66, "kg"),
  42549. name: "Front",
  42550. image: {
  42551. source: "./media/characters/thux-ei/front.svg",
  42552. extra: 1109/1011,
  42553. bottom: 8/1117
  42554. }
  42555. },
  42556. },
  42557. [
  42558. {
  42559. name: "Normal",
  42560. height: math.unit(170, "cm"),
  42561. default: true
  42562. },
  42563. ]
  42564. ))
  42565. characterMakers.push(() => makeCharacter(
  42566. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42567. {
  42568. front: {
  42569. height: math.unit(5, "feet"),
  42570. weight: math.unit(120, "lb"),
  42571. name: "Front",
  42572. image: {
  42573. source: "./media/characters/roxanne-voltaire/front.svg",
  42574. extra: 1901/1779,
  42575. bottom: 53/1954
  42576. }
  42577. },
  42578. },
  42579. [
  42580. {
  42581. name: "Normal",
  42582. height: math.unit(5, "feet"),
  42583. default: true
  42584. },
  42585. {
  42586. name: "Giant",
  42587. height: math.unit(50, "feet")
  42588. },
  42589. {
  42590. name: "Titan",
  42591. height: math.unit(500, "feet")
  42592. },
  42593. {
  42594. name: "Macro",
  42595. height: math.unit(5000, "feet")
  42596. },
  42597. {
  42598. name: "Megamacro",
  42599. height: math.unit(50000, "feet")
  42600. },
  42601. {
  42602. name: "Gigamacro",
  42603. height: math.unit(500000, "feet")
  42604. },
  42605. {
  42606. name: "Teramacro",
  42607. height: math.unit(5e6, "feet")
  42608. },
  42609. ]
  42610. ))
  42611. characterMakers.push(() => makeCharacter(
  42612. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  42613. {
  42614. front: {
  42615. height: math.unit(6 + 2/12, "feet"),
  42616. name: "Front",
  42617. image: {
  42618. source: "./media/characters/squeaks/front.svg",
  42619. extra: 1823/1768,
  42620. bottom: 138/1961
  42621. }
  42622. },
  42623. },
  42624. [
  42625. {
  42626. name: "Micro",
  42627. height: math.unit(0.5, "inches")
  42628. },
  42629. {
  42630. name: "Normal",
  42631. height: math.unit(6 + 2/12, "feet"),
  42632. default: true
  42633. },
  42634. {
  42635. name: "Macro",
  42636. height: math.unit(600, "feet")
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(1.72, "meters"),
  42645. name: "Front",
  42646. image: {
  42647. source: "./media/characters/archinger/front.svg",
  42648. extra: 1861/1675,
  42649. bottom: 125/1986
  42650. }
  42651. },
  42652. back: {
  42653. height: math.unit(1.72, "meters"),
  42654. name: "Back",
  42655. image: {
  42656. source: "./media/characters/archinger/back.svg",
  42657. extra: 1844/1701,
  42658. bottom: 104/1948
  42659. }
  42660. },
  42661. cock: {
  42662. height: math.unit(0.59, "feet"),
  42663. name: "Cock",
  42664. image: {
  42665. source: "./media/characters/archinger/cock.svg"
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(1.72, "meters"),
  42673. default: true
  42674. },
  42675. {
  42676. name: "Macro",
  42677. height: math.unit(84, "meters")
  42678. },
  42679. {
  42680. name: "Macro+",
  42681. height: math.unit(112, "meters")
  42682. },
  42683. {
  42684. name: "Macro++",
  42685. height: math.unit(960, "meters")
  42686. },
  42687. {
  42688. name: "Macro+++",
  42689. height: math.unit(4, "km")
  42690. },
  42691. {
  42692. name: "Macro++++",
  42693. height: math.unit(48, "km")
  42694. },
  42695. {
  42696. name: "Macro+++++",
  42697. height: math.unit(4500, "km")
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(5 + 5/12, "feet"),
  42706. name: "Front",
  42707. image: {
  42708. source: "./media/characters/alsnapz/front.svg",
  42709. extra: 1157/1065,
  42710. bottom: 42/1199
  42711. }
  42712. },
  42713. },
  42714. [
  42715. {
  42716. name: "Normal",
  42717. height: math.unit(5 + 5/12, "feet"),
  42718. default: true
  42719. },
  42720. ]
  42721. ))
  42722. characterMakers.push(() => makeCharacter(
  42723. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42724. {
  42725. side: {
  42726. height: math.unit(3.2, "earths"),
  42727. name: "Side",
  42728. image: {
  42729. source: "./media/characters/mag/side.svg",
  42730. extra: 1331/1008,
  42731. bottom: 52/1383
  42732. }
  42733. },
  42734. wing: {
  42735. height: math.unit(1.94, "earths"),
  42736. name: "Wing",
  42737. image: {
  42738. source: "./media/characters/mag/wing.svg"
  42739. }
  42740. },
  42741. dick: {
  42742. height: math.unit(1.8, "earths"),
  42743. name: "Dick",
  42744. image: {
  42745. source: "./media/characters/mag/dick.svg"
  42746. }
  42747. },
  42748. ass: {
  42749. height: math.unit(1.33, "earths"),
  42750. name: "Ass",
  42751. image: {
  42752. source: "./media/characters/mag/ass.svg"
  42753. }
  42754. },
  42755. head: {
  42756. height: math.unit(1.1, "earths"),
  42757. name: "Head",
  42758. image: {
  42759. source: "./media/characters/mag/head.svg"
  42760. }
  42761. },
  42762. maw: {
  42763. height: math.unit(1.62, "earths"),
  42764. name: "Maw",
  42765. image: {
  42766. source: "./media/characters/mag/maw.svg"
  42767. }
  42768. },
  42769. },
  42770. [
  42771. {
  42772. name: "Small",
  42773. height: math.unit(162, "feet")
  42774. },
  42775. {
  42776. name: "Normal",
  42777. height: math.unit(3.2, "earths"),
  42778. default: true
  42779. },
  42780. ]
  42781. ))
  42782. characterMakers.push(() => makeCharacter(
  42783. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42784. {
  42785. front: {
  42786. height: math.unit(512, "feet"),
  42787. weight: math.unit(63509, "tonnes"),
  42788. name: "Front",
  42789. image: {
  42790. source: "./media/characters/vorrel-harroc/front.svg",
  42791. extra: 1075/1063,
  42792. bottom: 62/1137
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Normal",
  42799. height: math.unit(10, "feet")
  42800. },
  42801. {
  42802. name: "Macro",
  42803. height: math.unit(512, "feet"),
  42804. default: true
  42805. },
  42806. {
  42807. name: "Megamacro",
  42808. height: math.unit(256, "miles")
  42809. },
  42810. {
  42811. name: "Gigamacro",
  42812. height: math.unit(4096, "miles")
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42818. {
  42819. side: {
  42820. height: math.unit(50, "feet"),
  42821. name: "Side",
  42822. image: {
  42823. source: "./media/characters/froimar/side.svg",
  42824. extra: 855/638,
  42825. bottom: 99/954
  42826. }
  42827. },
  42828. },
  42829. [
  42830. {
  42831. name: "Macro",
  42832. height: math.unit(50, "feet"),
  42833. default: true
  42834. },
  42835. ]
  42836. ))
  42837. characterMakers.push(() => makeCharacter(
  42838. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42839. {
  42840. front: {
  42841. height: math.unit(210, "miles"),
  42842. name: "Front",
  42843. image: {
  42844. source: "./media/characters/timothy/front.svg",
  42845. extra: 1007/943,
  42846. bottom: 62/1069
  42847. }
  42848. },
  42849. frontSkirt: {
  42850. height: math.unit(210, "miles"),
  42851. name: "Front (Skirt)",
  42852. image: {
  42853. source: "./media/characters/timothy/front-skirt.svg",
  42854. extra: 1007/943,
  42855. bottom: 62/1069
  42856. }
  42857. },
  42858. frontCoat: {
  42859. height: math.unit(210, "miles"),
  42860. name: "Front (Coat)",
  42861. image: {
  42862. source: "./media/characters/timothy/front-coat.svg",
  42863. extra: 1007/943,
  42864. bottom: 62/1069
  42865. }
  42866. },
  42867. },
  42868. [
  42869. {
  42870. name: "Macro",
  42871. height: math.unit(210, "miles"),
  42872. default: true
  42873. },
  42874. {
  42875. name: "Megamacro",
  42876. height: math.unit(210000, "miles")
  42877. },
  42878. ]
  42879. ))
  42880. characterMakers.push(() => makeCharacter(
  42881. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42882. {
  42883. front: {
  42884. height: math.unit(188, "feet"),
  42885. name: "Front",
  42886. image: {
  42887. source: "./media/characters/pyotr/front.svg",
  42888. extra: 1912/1826,
  42889. bottom: 18/1930
  42890. }
  42891. },
  42892. },
  42893. [
  42894. {
  42895. name: "Macro",
  42896. height: math.unit(188, "feet"),
  42897. default: true
  42898. },
  42899. {
  42900. name: "Megamacro",
  42901. height: math.unit(8, "miles")
  42902. },
  42903. ]
  42904. ))
  42905. characterMakers.push(() => makeCharacter(
  42906. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42907. {
  42908. side: {
  42909. height: math.unit(10, "feet"),
  42910. weight: math.unit(4500, "lb"),
  42911. name: "Side",
  42912. image: {
  42913. source: "./media/characters/ackart/side.svg",
  42914. extra: 1776/1668,
  42915. bottom: 116/1892
  42916. }
  42917. },
  42918. },
  42919. [
  42920. {
  42921. name: "Normal",
  42922. height: math.unit(10, "feet"),
  42923. default: true
  42924. },
  42925. ]
  42926. ))
  42927. characterMakers.push(() => makeCharacter(
  42928. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42929. {
  42930. side: {
  42931. height: math.unit(21, "feet"),
  42932. name: "Side",
  42933. image: {
  42934. source: "./media/characters/nolow/side.svg",
  42935. extra: 1484/1434,
  42936. bottom: 85/1569
  42937. }
  42938. },
  42939. sideErect: {
  42940. height: math.unit(21, "feet"),
  42941. name: "Side-erect",
  42942. image: {
  42943. source: "./media/characters/nolow/side-erect.svg",
  42944. extra: 1484/1434,
  42945. bottom: 85/1569
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Regular",
  42952. height: math.unit(12, "feet")
  42953. },
  42954. {
  42955. name: "Big Chee",
  42956. height: math.unit(21, "feet"),
  42957. default: true
  42958. },
  42959. ]
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42963. {
  42964. front: {
  42965. height: math.unit(7, "feet"),
  42966. weight: math.unit(250, "lb"),
  42967. name: "Front",
  42968. image: {
  42969. source: "./media/characters/nines/front.svg",
  42970. extra: 1741/1607,
  42971. bottom: 41/1782
  42972. }
  42973. },
  42974. side: {
  42975. height: math.unit(7, "feet"),
  42976. weight: math.unit(250, "lb"),
  42977. name: "Side",
  42978. image: {
  42979. source: "./media/characters/nines/side.svg",
  42980. extra: 1854/1735,
  42981. bottom: 93/1947
  42982. }
  42983. },
  42984. back: {
  42985. height: math.unit(7, "feet"),
  42986. weight: math.unit(250, "lb"),
  42987. name: "Back",
  42988. image: {
  42989. source: "./media/characters/nines/back.svg",
  42990. extra: 1748/1615,
  42991. bottom: 20/1768
  42992. }
  42993. },
  42994. },
  42995. [
  42996. {
  42997. name: "Megamacro",
  42998. height: math.unit(99, "km"),
  42999. default: true
  43000. },
  43001. ]
  43002. ))
  43003. characterMakers.push(() => makeCharacter(
  43004. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43005. {
  43006. front: {
  43007. height: math.unit(5 + 10/12, "feet"),
  43008. weight: math.unit(210, "lb"),
  43009. name: "Front",
  43010. image: {
  43011. source: "./media/characters/zenith/front.svg",
  43012. extra: 1531/1452,
  43013. bottom: 198/1729
  43014. }
  43015. },
  43016. back: {
  43017. height: math.unit(5 + 10/12, "feet"),
  43018. weight: math.unit(210, "lb"),
  43019. name: "Back",
  43020. image: {
  43021. source: "./media/characters/zenith/back.svg",
  43022. extra: 1571/1487,
  43023. bottom: 75/1646
  43024. }
  43025. },
  43026. },
  43027. [
  43028. {
  43029. name: "Normal",
  43030. height: math.unit(5 + 10/12, "feet"),
  43031. default: true
  43032. }
  43033. ]
  43034. ))
  43035. characterMakers.push(() => makeCharacter(
  43036. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43037. {
  43038. front: {
  43039. height: math.unit(4, "feet"),
  43040. weight: math.unit(60, "lb"),
  43041. name: "Front",
  43042. image: {
  43043. source: "./media/characters/jasper/front.svg",
  43044. extra: 1450/1379,
  43045. bottom: 19/1469
  43046. }
  43047. },
  43048. },
  43049. [
  43050. {
  43051. name: "Normal",
  43052. height: math.unit(4, "feet"),
  43053. default: true
  43054. },
  43055. ]
  43056. ))
  43057. characterMakers.push(() => makeCharacter(
  43058. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43059. {
  43060. front: {
  43061. height: math.unit(6 + 5/12, "feet"),
  43062. weight: math.unit(290, "lb"),
  43063. name: "Front",
  43064. image: {
  43065. source: "./media/characters/tiberius-thyben/front.svg",
  43066. extra: 757/739,
  43067. bottom: 39/796
  43068. }
  43069. },
  43070. },
  43071. [
  43072. {
  43073. name: "Micro",
  43074. height: math.unit(1.5, "inches")
  43075. },
  43076. {
  43077. name: "Normal",
  43078. height: math.unit(6 + 5/12, "feet"),
  43079. default: true
  43080. },
  43081. {
  43082. name: "Macro",
  43083. height: math.unit(300, "feet")
  43084. },
  43085. ]
  43086. ))
  43087. characterMakers.push(() => makeCharacter(
  43088. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43089. {
  43090. front: {
  43091. height: math.unit(5 + 6/12, "feet"),
  43092. weight: math.unit(60, "kg"),
  43093. name: "Front",
  43094. image: {
  43095. source: "./media/characters/sabre/front.svg",
  43096. extra: 738/671,
  43097. bottom: 27/765
  43098. }
  43099. },
  43100. },
  43101. [
  43102. {
  43103. name: "Teeny",
  43104. height: math.unit(2, "inches")
  43105. },
  43106. {
  43107. name: "Smol",
  43108. height: math.unit(8, "inches")
  43109. },
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(5 + 6/12, "feet"),
  43113. default: true
  43114. },
  43115. {
  43116. name: "Mini-Macro",
  43117. height: math.unit(15, "feet")
  43118. },
  43119. {
  43120. name: "Macro",
  43121. height: math.unit(50, "feet")
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(6 + 4/12, "feet"),
  43130. weight: math.unit(170, "lb"),
  43131. name: "Front",
  43132. image: {
  43133. source: "./media/characters/charlie/front.svg",
  43134. extra: 1348/1228,
  43135. bottom: 15/1363
  43136. }
  43137. },
  43138. },
  43139. [
  43140. {
  43141. name: "Macro",
  43142. height: math.unit(1700, "meters"),
  43143. default: true
  43144. },
  43145. {
  43146. name: "MegaMacro",
  43147. height: math.unit(20400, "meters")
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43153. {
  43154. front: {
  43155. height: math.unit(6 + 3/12, "feet"),
  43156. weight: math.unit(185, "lb"),
  43157. name: "Front",
  43158. image: {
  43159. source: "./media/characters/susan-grant/front.svg",
  43160. extra: 1351/1327,
  43161. bottom: 26/1377
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Normal",
  43168. height: math.unit(6 + 3/12, "feet"),
  43169. default: true
  43170. },
  43171. {
  43172. name: "Macro",
  43173. height: math.unit(225, "feet")
  43174. },
  43175. {
  43176. name: "Macro+",
  43177. height: math.unit(900, "feet")
  43178. },
  43179. {
  43180. name: "MegaMacro",
  43181. height: math.unit(14400, "feet")
  43182. },
  43183. ]
  43184. ))
  43185. characterMakers.push(() => makeCharacter(
  43186. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43187. {
  43188. front: {
  43189. height: math.unit(5 + 4/12, "feet"),
  43190. weight: math.unit(110, "lb"),
  43191. name: "Front",
  43192. image: {
  43193. source: "./media/characters/axel-isanov/front.svg",
  43194. extra: 1096/1065,
  43195. bottom: 13/1109
  43196. }
  43197. },
  43198. },
  43199. [
  43200. {
  43201. name: "Normal",
  43202. height: math.unit(5 + 4/12, "feet"),
  43203. default: true
  43204. },
  43205. ]
  43206. ))
  43207. characterMakers.push(() => makeCharacter(
  43208. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43209. {
  43210. front: {
  43211. height: math.unit(9, "feet"),
  43212. weight: math.unit(467, "lb"),
  43213. name: "Front",
  43214. image: {
  43215. source: "./media/characters/necahual/front.svg",
  43216. extra: 920/873,
  43217. bottom: 26/946
  43218. }
  43219. },
  43220. back: {
  43221. height: math.unit(9, "feet"),
  43222. weight: math.unit(467, "lb"),
  43223. name: "Back",
  43224. image: {
  43225. source: "./media/characters/necahual/back.svg",
  43226. extra: 930/884,
  43227. bottom: 16/946
  43228. }
  43229. },
  43230. frontUnderwear: {
  43231. height: math.unit(9, "feet"),
  43232. weight: math.unit(467, "lb"),
  43233. name: "Front (Underwear)",
  43234. image: {
  43235. source: "./media/characters/necahual/front-underwear.svg",
  43236. extra: 920/873,
  43237. bottom: 26/946
  43238. }
  43239. },
  43240. frontDressed: {
  43241. height: math.unit(9, "feet"),
  43242. weight: math.unit(467, "lb"),
  43243. name: "Front (Dressed)",
  43244. image: {
  43245. source: "./media/characters/necahual/front-dressed.svg",
  43246. extra: 920/873,
  43247. bottom: 26/946
  43248. }
  43249. },
  43250. },
  43251. [
  43252. {
  43253. name: "Comprsesed",
  43254. height: math.unit(9, "feet")
  43255. },
  43256. {
  43257. name: "Natural",
  43258. height: math.unit(15, "feet"),
  43259. default: true
  43260. },
  43261. {
  43262. name: "Boosted",
  43263. height: math.unit(50, "feet")
  43264. },
  43265. {
  43266. name: "Boosted+",
  43267. height: math.unit(150, "feet")
  43268. },
  43269. {
  43270. name: "Max",
  43271. height: math.unit(500, "feet")
  43272. },
  43273. ]
  43274. ))
  43275. characterMakers.push(() => makeCharacter(
  43276. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43277. {
  43278. front: {
  43279. height: math.unit(22 + 1/12, "feet"),
  43280. weight: math.unit(3200, "lb"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/theo-acacia/front.svg",
  43284. extra: 1796/1741,
  43285. bottom: 83/1879
  43286. }
  43287. },
  43288. frontUnderwear: {
  43289. height: math.unit(22 + 1/12, "feet"),
  43290. weight: math.unit(3200, "lb"),
  43291. name: "Front (Underwear)",
  43292. image: {
  43293. source: "./media/characters/theo-acacia/front-underwear.svg",
  43294. extra: 1796/1741,
  43295. bottom: 83/1879
  43296. }
  43297. },
  43298. frontNude: {
  43299. height: math.unit(22 + 1/12, "feet"),
  43300. weight: math.unit(3200, "lb"),
  43301. name: "Front (Nude)",
  43302. image: {
  43303. source: "./media/characters/theo-acacia/front-nude.svg",
  43304. extra: 1796/1741,
  43305. bottom: 83/1879
  43306. }
  43307. },
  43308. },
  43309. [
  43310. {
  43311. name: "Normal",
  43312. height: math.unit(22 + 1/12, "feet"),
  43313. default: true
  43314. },
  43315. ]
  43316. ))
  43317. characterMakers.push(() => makeCharacter(
  43318. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43319. {
  43320. front: {
  43321. height: math.unit(20, "feet"),
  43322. name: "Front",
  43323. image: {
  43324. source: "./media/characters/astra/front.svg",
  43325. extra: 1850/1714,
  43326. bottom: 106/1956
  43327. }
  43328. },
  43329. frontUndressed: {
  43330. height: math.unit(20, "feet"),
  43331. name: "Front (Undressed)",
  43332. image: {
  43333. source: "./media/characters/astra/front-undressed.svg",
  43334. extra: 1926/1749,
  43335. bottom: 0/1926
  43336. }
  43337. },
  43338. hand: {
  43339. height: math.unit(1.53, "feet"),
  43340. name: "Hand",
  43341. image: {
  43342. source: "./media/characters/astra/hand.svg"
  43343. }
  43344. },
  43345. paw: {
  43346. height: math.unit(1.53, "feet"),
  43347. name: "Paw",
  43348. image: {
  43349. source: "./media/characters/astra/paw.svg"
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Smallest",
  43356. height: math.unit(20, "feet")
  43357. },
  43358. {
  43359. name: "Normal",
  43360. height: math.unit(1e9, "miles"),
  43361. default: true
  43362. },
  43363. {
  43364. name: "Larger",
  43365. height: math.unit(5, "multiverses")
  43366. },
  43367. {
  43368. name: "Largest",
  43369. height: math.unit(1e9, "multiverses")
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(8, "feet"),
  43378. name: "Front",
  43379. image: {
  43380. source: "./media/characters/breanna/front.svg",
  43381. extra: 1912/1632,
  43382. bottom: 33/1945
  43383. }
  43384. },
  43385. },
  43386. [
  43387. {
  43388. name: "Smallest",
  43389. height: math.unit(8, "feet")
  43390. },
  43391. {
  43392. name: "Normal",
  43393. height: math.unit(1, "mile"),
  43394. default: true
  43395. },
  43396. {
  43397. name: "Maximum",
  43398. height: math.unit(1500000000000, "lightyears")
  43399. },
  43400. ]
  43401. ))
  43402. characterMakers.push(() => makeCharacter(
  43403. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43404. {
  43405. front: {
  43406. height: math.unit(5 + 11/12, "feet"),
  43407. weight: math.unit(155, "lb"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/cai/front.svg",
  43411. extra: 1823/1702,
  43412. bottom: 32/1855
  43413. }
  43414. },
  43415. back: {
  43416. height: math.unit(5 + 11/12, "feet"),
  43417. weight: math.unit(155, "lb"),
  43418. name: "Back",
  43419. image: {
  43420. source: "./media/characters/cai/back.svg",
  43421. extra: 1809/1708,
  43422. bottom: 31/1840
  43423. }
  43424. },
  43425. },
  43426. [
  43427. {
  43428. name: "Normal",
  43429. height: math.unit(5 + 11/12, "feet"),
  43430. default: true
  43431. },
  43432. {
  43433. name: "Big",
  43434. height: math.unit(15, "feet")
  43435. },
  43436. {
  43437. name: "Macro",
  43438. height: math.unit(200, "feet")
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(5 + 6/12, "feet"),
  43447. weight: math.unit(160, "lb"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43451. extra: 1227/1174,
  43452. bottom: 37/1264
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Macro",
  43459. height: math.unit(444, "meters"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(18 + 7/12, "feet"),
  43469. name: "Front",
  43470. image: {
  43471. source: "./media/characters/rex/front.svg",
  43472. extra: 1941/1807,
  43473. bottom: 66/2007
  43474. }
  43475. },
  43476. back: {
  43477. height: math.unit(18 + 7/12, "feet"),
  43478. name: "Back",
  43479. image: {
  43480. source: "./media/characters/rex/back.svg",
  43481. extra: 1937/1822,
  43482. bottom: 42/1979
  43483. }
  43484. },
  43485. boot: {
  43486. height: math.unit(3.45, "feet"),
  43487. name: "Boot",
  43488. image: {
  43489. source: "./media/characters/rex/boot.svg"
  43490. }
  43491. },
  43492. paw: {
  43493. height: math.unit(4.17, "feet"),
  43494. name: "Paw",
  43495. image: {
  43496. source: "./media/characters/rex/paw.svg"
  43497. }
  43498. },
  43499. head: {
  43500. height: math.unit(6.728, "feet"),
  43501. name: "Head",
  43502. image: {
  43503. source: "./media/characters/rex/head.svg"
  43504. }
  43505. },
  43506. },
  43507. [
  43508. {
  43509. name: "Nano",
  43510. height: math.unit(18 + 7/12, "feet")
  43511. },
  43512. {
  43513. name: "Micro",
  43514. height: math.unit(1.5, "megameters")
  43515. },
  43516. {
  43517. name: "Normal",
  43518. height: math.unit(440, "megameters"),
  43519. default: true
  43520. },
  43521. {
  43522. name: "Macro",
  43523. height: math.unit(2.5, "gigameters")
  43524. },
  43525. {
  43526. name: "Gigamacro",
  43527. height: math.unit(2, "galaxies")
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43533. {
  43534. side: {
  43535. height: math.unit(32, "feet"),
  43536. weight: math.unit(250000, "lb"),
  43537. name: "Side",
  43538. image: {
  43539. source: "./media/characters/silverwing/side.svg",
  43540. extra: 1100/1019,
  43541. bottom: 204/1304
  43542. }
  43543. },
  43544. },
  43545. [
  43546. {
  43547. name: "Normal",
  43548. height: math.unit(32, "feet"),
  43549. default: true
  43550. },
  43551. ]
  43552. ))
  43553. characterMakers.push(() => makeCharacter(
  43554. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43555. {
  43556. front: {
  43557. height: math.unit(6 + 6/12, "feet"),
  43558. weight: math.unit(350, "lb"),
  43559. name: "Front",
  43560. image: {
  43561. source: "./media/characters/tristan-hawthorne/front.svg",
  43562. extra: 1159/1124,
  43563. bottom: 37/1196
  43564. },
  43565. form: "labrador",
  43566. default: true
  43567. },
  43568. skunkFront: {
  43569. height: math.unit(4 + 6/12, "feet"),
  43570. weight: math.unit(120, "lb"),
  43571. name: "Front",
  43572. image: {
  43573. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43574. extra: 1609/1551,
  43575. bottom: 169/1778
  43576. },
  43577. form: "skunk",
  43578. default: true
  43579. },
  43580. },
  43581. [
  43582. {
  43583. name: "Normal",
  43584. height: math.unit(6 + 6/12, "feet"),
  43585. form: "labrador",
  43586. default: true
  43587. },
  43588. {
  43589. name: "Normal",
  43590. height: math.unit(4 + 6/12, "feet"),
  43591. form: "skunk",
  43592. default: true
  43593. },
  43594. ],
  43595. {
  43596. "labrador": {
  43597. name: "Labrador",
  43598. default: true
  43599. },
  43600. "skunk": {
  43601. name: "Skunk"
  43602. }
  43603. }
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  43607. {
  43608. front: {
  43609. height: math.unit(5 + 11/12, "feet"),
  43610. weight: math.unit(190, "lb"),
  43611. name: "Front",
  43612. image: {
  43613. source: "./media/characters/mizu/front.svg",
  43614. extra: 1988/1788,
  43615. bottom: 14/2002
  43616. }
  43617. },
  43618. },
  43619. [
  43620. {
  43621. name: "Normal",
  43622. height: math.unit(5 + 11/12, "feet"),
  43623. default: true
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  43629. {
  43630. front: {
  43631. height: math.unit(1.7, "feet"),
  43632. weight: math.unit(50, "lb"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/dechroma/front.svg",
  43636. extra: 1095/859,
  43637. bottom: 64/1159
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Normal",
  43644. height: math.unit(1.7, "feet"),
  43645. default: true
  43646. },
  43647. ]
  43648. ))
  43649. characterMakers.push(() => makeCharacter(
  43650. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  43651. {
  43652. side: {
  43653. height: math.unit(30, "feet"),
  43654. name: "Side",
  43655. image: {
  43656. source: "./media/characters/veluren-thanazel/side.svg",
  43657. extra: 1611/633,
  43658. bottom: 118/1729
  43659. }
  43660. },
  43661. front: {
  43662. height: math.unit(30, "feet"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/veluren-thanazel/front.svg",
  43666. extra: 1486/636,
  43667. bottom: 238/1724
  43668. }
  43669. },
  43670. head: {
  43671. height: math.unit(21.4, "feet"),
  43672. name: "Head",
  43673. image: {
  43674. source: "./media/characters/veluren-thanazel/head.svg"
  43675. }
  43676. },
  43677. genitals: {
  43678. height: math.unit(19.4, "feet"),
  43679. name: "Genitals",
  43680. image: {
  43681. source: "./media/characters/veluren-thanazel/genitals.svg"
  43682. }
  43683. },
  43684. },
  43685. [
  43686. {
  43687. name: "Social",
  43688. height: math.unit(6, "feet")
  43689. },
  43690. {
  43691. name: "Play",
  43692. height: math.unit(12, "feet")
  43693. },
  43694. {
  43695. name: "True",
  43696. height: math.unit(30, "feet"),
  43697. default: true
  43698. },
  43699. ]
  43700. ))
  43701. characterMakers.push(() => makeCharacter(
  43702. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43703. {
  43704. front: {
  43705. height: math.unit(7 + 6/12, "feet"),
  43706. weight: math.unit(500, "kg"),
  43707. name: "Front",
  43708. image: {
  43709. source: "./media/characters/arcturas/front.svg",
  43710. extra: 1700/1500,
  43711. bottom: 145/1845
  43712. }
  43713. },
  43714. },
  43715. [
  43716. {
  43717. name: "Normal",
  43718. height: math.unit(7 + 6/12, "feet"),
  43719. default: true
  43720. },
  43721. ]
  43722. ))
  43723. characterMakers.push(() => makeCharacter(
  43724. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43725. {
  43726. side: {
  43727. height: math.unit(6, "feet"),
  43728. weight: math.unit(2, "tons"),
  43729. name: "Side",
  43730. image: {
  43731. source: "./media/characters/vitaen/side.svg",
  43732. extra: 1157/617,
  43733. bottom: 122/1279
  43734. }
  43735. },
  43736. },
  43737. [
  43738. {
  43739. name: "Normal",
  43740. height: math.unit(6, "feet"),
  43741. default: true
  43742. },
  43743. ]
  43744. ))
  43745. characterMakers.push(() => makeCharacter(
  43746. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43747. {
  43748. front: {
  43749. height: math.unit(19, "feet"),
  43750. name: "Front",
  43751. image: {
  43752. source: "./media/characters/fia-dreamweaver/front.svg",
  43753. extra: 1630/1504,
  43754. bottom: 25/1655
  43755. }
  43756. },
  43757. },
  43758. [
  43759. {
  43760. name: "Normal",
  43761. height: math.unit(19, "feet"),
  43762. default: true
  43763. },
  43764. ]
  43765. ))
  43766. characterMakers.push(() => makeCharacter(
  43767. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43768. {
  43769. front: {
  43770. height: math.unit(5 + 4/12, "feet"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/artan/front.svg",
  43774. extra: 1618/1535,
  43775. bottom: 46/1664
  43776. }
  43777. },
  43778. back: {
  43779. height: math.unit(5 + 4/12, "feet"),
  43780. name: "Back",
  43781. image: {
  43782. source: "./media/characters/artan/back.svg",
  43783. extra: 1618/1543,
  43784. bottom: 31/1649
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(5 + 4/12, "feet"),
  43792. default: true
  43793. },
  43794. ]
  43795. ))
  43796. characterMakers.push(() => makeCharacter(
  43797. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43798. {
  43799. side: {
  43800. height: math.unit(182, "cm"),
  43801. weight: math.unit(1000, "lb"),
  43802. name: "Side",
  43803. image: {
  43804. source: "./media/characters/silver-dragon/side.svg",
  43805. extra: 710/287,
  43806. bottom: 88/798
  43807. }
  43808. },
  43809. },
  43810. [
  43811. {
  43812. name: "Normal",
  43813. height: math.unit(182, "cm"),
  43814. default: true
  43815. },
  43816. ]
  43817. ))
  43818. characterMakers.push(() => makeCharacter(
  43819. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43820. {
  43821. side: {
  43822. height: math.unit(6 + 6/12, "feet"),
  43823. weight: math.unit(1.5, "tons"),
  43824. name: "Side",
  43825. image: {
  43826. source: "./media/characters/zephyr/side.svg",
  43827. extra: 1433/586,
  43828. bottom: 109/1542
  43829. }
  43830. },
  43831. },
  43832. [
  43833. {
  43834. name: "Normal",
  43835. height: math.unit(6 + 6/12, "feet"),
  43836. default: true
  43837. },
  43838. ]
  43839. ))
  43840. characterMakers.push(() => makeCharacter(
  43841. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43842. {
  43843. side: {
  43844. height: math.unit(1, "feet"),
  43845. name: "Side",
  43846. image: {
  43847. source: "./media/characters/vixye/side.svg",
  43848. extra: 632/541,
  43849. bottom: 0/632
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(1, "feet"),
  43857. default: true
  43858. },
  43859. {
  43860. name: "True",
  43861. height: math.unit(1e15, "multiverses")
  43862. },
  43863. ]
  43864. ))
  43865. characterMakers.push(() => makeCharacter(
  43866. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43867. {
  43868. front: {
  43869. height: math.unit(8 + 2/12, "feet"),
  43870. weight: math.unit(650, "lb"),
  43871. name: "Front",
  43872. image: {
  43873. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43874. extra: 1174/1137,
  43875. bottom: 82/1256
  43876. }
  43877. },
  43878. back: {
  43879. height: math.unit(8 + 2/12, "feet"),
  43880. weight: math.unit(650, "lb"),
  43881. name: "Back",
  43882. image: {
  43883. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43884. extra: 1204/1157,
  43885. bottom: 46/1250
  43886. }
  43887. },
  43888. },
  43889. [
  43890. {
  43891. name: "Wildform",
  43892. height: math.unit(8 + 2/12, "feet"),
  43893. default: true
  43894. },
  43895. ]
  43896. ))
  43897. characterMakers.push(() => makeCharacter(
  43898. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43899. {
  43900. front: {
  43901. height: math.unit(18, "feet"),
  43902. name: "Front",
  43903. image: {
  43904. source: "./media/characters/cyphin/front.svg",
  43905. extra: 970/886,
  43906. bottom: 42/1012
  43907. }
  43908. },
  43909. back: {
  43910. height: math.unit(18, "feet"),
  43911. name: "Back",
  43912. image: {
  43913. source: "./media/characters/cyphin/back.svg",
  43914. extra: 1009/894,
  43915. bottom: 24/1033
  43916. }
  43917. },
  43918. head: {
  43919. height: math.unit(5.05, "feet"),
  43920. name: "Head",
  43921. image: {
  43922. source: "./media/characters/cyphin/head.svg"
  43923. }
  43924. },
  43925. tailbud: {
  43926. height: math.unit(5, "feet"),
  43927. name: "Tailbud",
  43928. image: {
  43929. source: "./media/characters/cyphin/tailbud.svg"
  43930. }
  43931. },
  43932. },
  43933. [
  43934. ]
  43935. ))
  43936. characterMakers.push(() => makeCharacter(
  43937. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43938. {
  43939. side: {
  43940. height: math.unit(10, "feet"),
  43941. weight: math.unit(6, "tons"),
  43942. name: "Side",
  43943. image: {
  43944. source: "./media/characters/raijin/side.svg",
  43945. extra: 1529/613,
  43946. bottom: 337/1866
  43947. }
  43948. },
  43949. },
  43950. [
  43951. {
  43952. name: "Normal",
  43953. height: math.unit(10, "feet"),
  43954. default: true
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43960. {
  43961. side: {
  43962. height: math.unit(9, "feet"),
  43963. name: "Side",
  43964. image: {
  43965. source: "./media/characters/nilghais/side.svg",
  43966. extra: 1047/744,
  43967. bottom: 91/1138
  43968. }
  43969. },
  43970. head: {
  43971. height: math.unit(3.14, "feet"),
  43972. name: "Head",
  43973. image: {
  43974. source: "./media/characters/nilghais/head.svg"
  43975. }
  43976. },
  43977. mouth: {
  43978. height: math.unit(4.6, "feet"),
  43979. name: "Mouth",
  43980. image: {
  43981. source: "./media/characters/nilghais/mouth.svg"
  43982. }
  43983. },
  43984. wings: {
  43985. height: math.unit(24, "feet"),
  43986. name: "Wings",
  43987. image: {
  43988. source: "./media/characters/nilghais/wings.svg"
  43989. }
  43990. },
  43991. ass: {
  43992. height: math.unit(6.12, "feet"),
  43993. name: "Ass",
  43994. image: {
  43995. source: "./media/characters/nilghais/ass.svg"
  43996. }
  43997. },
  43998. },
  43999. [
  44000. {
  44001. name: "Normal",
  44002. height: math.unit(9, "feet"),
  44003. default: true
  44004. },
  44005. ]
  44006. ))
  44007. characterMakers.push(() => makeCharacter(
  44008. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44009. {
  44010. regular: {
  44011. height: math.unit(16 + 2/12, "feet"),
  44012. weight: math.unit(2300, "lb"),
  44013. name: "Regular",
  44014. image: {
  44015. source: "./media/characters/zolgar/regular.svg",
  44016. extra: 1246/1004,
  44017. bottom: 124/1370
  44018. }
  44019. },
  44020. boxers: {
  44021. height: math.unit(16 + 2/12, "feet"),
  44022. weight: math.unit(2300, "lb"),
  44023. name: "Boxers",
  44024. image: {
  44025. source: "./media/characters/zolgar/boxers.svg",
  44026. extra: 1246/1004,
  44027. bottom: 124/1370
  44028. }
  44029. },
  44030. armored: {
  44031. height: math.unit(16 + 2/12, "feet"),
  44032. weight: math.unit(2300, "lb"),
  44033. name: "Armored",
  44034. image: {
  44035. source: "./media/characters/zolgar/armored.svg",
  44036. extra: 1246/1004,
  44037. bottom: 124/1370
  44038. }
  44039. },
  44040. goth: {
  44041. height: math.unit(16 + 2/12, "feet"),
  44042. weight: math.unit(2300, "lb"),
  44043. name: "Goth",
  44044. image: {
  44045. source: "./media/characters/zolgar/goth.svg",
  44046. extra: 1246/1004,
  44047. bottom: 124/1370
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Shrunken Down",
  44054. height: math.unit(9 + 2/12, "feet")
  44055. },
  44056. {
  44057. name: "Normal",
  44058. height: math.unit(16 + 2/12, "feet"),
  44059. default: true
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(6, "feet"),
  44068. weight: math.unit(168, "lb"),
  44069. name: "Front",
  44070. image: {
  44071. source: "./media/characters/luca/front.svg",
  44072. extra: 841/667,
  44073. bottom: 102/943
  44074. }
  44075. },
  44076. },
  44077. [
  44078. {
  44079. name: "Normal",
  44080. height: math.unit(6, "feet"),
  44081. default: true
  44082. },
  44083. ]
  44084. ))
  44085. characterMakers.push(() => makeCharacter(
  44086. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44087. {
  44088. side: {
  44089. height: math.unit(7 + 3/12, "feet"),
  44090. weight: math.unit(312, "lb"),
  44091. name: "Side",
  44092. image: {
  44093. source: "./media/characters/zezo/side.svg",
  44094. extra: 1192/1067,
  44095. bottom: 63/1255
  44096. }
  44097. },
  44098. },
  44099. [
  44100. {
  44101. name: "Normal",
  44102. height: math.unit(7 + 3/12, "feet"),
  44103. default: true
  44104. },
  44105. ]
  44106. ))
  44107. characterMakers.push(() => makeCharacter(
  44108. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44109. {
  44110. front: {
  44111. height: math.unit(5 + 5/12, "feet"),
  44112. weight: math.unit(170, "lb"),
  44113. name: "Front",
  44114. image: {
  44115. source: "./media/characters/mayso/front.svg",
  44116. extra: 1215/1108,
  44117. bottom: 16/1231
  44118. }
  44119. },
  44120. },
  44121. [
  44122. {
  44123. name: "Normal",
  44124. height: math.unit(5 + 5/12, "feet"),
  44125. default: true
  44126. },
  44127. ]
  44128. ))
  44129. characterMakers.push(() => makeCharacter(
  44130. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44131. {
  44132. front: {
  44133. height: math.unit(4 + 3/12, "feet"),
  44134. weight: math.unit(80, "lb"),
  44135. name: "Front",
  44136. image: {
  44137. source: "./media/characters/hess/front.svg",
  44138. extra: 1200/1123,
  44139. bottom: 16/1216
  44140. }
  44141. },
  44142. },
  44143. [
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(4 + 3/12, "feet"),
  44147. default: true
  44148. },
  44149. ]
  44150. ))
  44151. characterMakers.push(() => makeCharacter(
  44152. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44153. {
  44154. front: {
  44155. height: math.unit(1.9, "meters"),
  44156. name: "Front",
  44157. image: {
  44158. source: "./media/characters/ashgar/front.svg",
  44159. extra: 1177/1146,
  44160. bottom: 99/1276
  44161. }
  44162. },
  44163. back: {
  44164. height: math.unit(1.9, "meters"),
  44165. name: "Back",
  44166. image: {
  44167. source: "./media/characters/ashgar/back.svg",
  44168. extra: 1201/1183,
  44169. bottom: 53/1254
  44170. }
  44171. },
  44172. feral: {
  44173. height: math.unit(1.4, "meters"),
  44174. name: "Feral",
  44175. image: {
  44176. source: "./media/characters/ashgar/feral.svg",
  44177. extra: 370/345,
  44178. bottom: 45/415
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(1.9, "meters"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44192. {
  44193. regular: {
  44194. height: math.unit(6, "feet"),
  44195. weight: math.unit(220, "lb"),
  44196. name: "Regular",
  44197. image: {
  44198. source: "./media/characters/phillip/regular.svg",
  44199. extra: 1373/1277,
  44200. bottom: 75/1448
  44201. }
  44202. },
  44203. dressed: {
  44204. height: math.unit(6, "feet"),
  44205. weight: math.unit(220, "lb"),
  44206. name: "Dressed",
  44207. image: {
  44208. source: "./media/characters/phillip/dressed.svg",
  44209. extra: 1373/1277,
  44210. bottom: 75/1448
  44211. }
  44212. },
  44213. paw: {
  44214. height: math.unit(1.44, "feet"),
  44215. name: "Paw",
  44216. image: {
  44217. source: "./media/characters/phillip/paw.svg"
  44218. }
  44219. },
  44220. },
  44221. [
  44222. {
  44223. name: "Normal",
  44224. height: math.unit(6, "feet"),
  44225. default: true
  44226. },
  44227. ]
  44228. ))
  44229. characterMakers.push(() => makeCharacter(
  44230. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44231. {
  44232. side: {
  44233. height: math.unit(42, "feet"),
  44234. name: "Side",
  44235. image: {
  44236. source: "./media/characters/uvula/side.svg",
  44237. extra: 683/586,
  44238. bottom: 60/743
  44239. }
  44240. },
  44241. front: {
  44242. height: math.unit(42, "feet"),
  44243. name: "Front",
  44244. image: {
  44245. source: "./media/characters/uvula/front.svg",
  44246. extra: 705/613,
  44247. bottom: 54/759
  44248. }
  44249. },
  44250. maw: {
  44251. height: math.unit(23.5, "feet"),
  44252. name: "Maw",
  44253. image: {
  44254. source: "./media/characters/uvula/maw.svg"
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Original Size",
  44261. height: math.unit(14, "inches")
  44262. },
  44263. {
  44264. name: "Human Size",
  44265. height: math.unit(6, "feet")
  44266. },
  44267. {
  44268. name: "Big",
  44269. height: math.unit(42, "feet"),
  44270. default: true
  44271. },
  44272. {
  44273. name: "Bigger",
  44274. height: math.unit(100, "feet")
  44275. },
  44276. ]
  44277. ))
  44278. characterMakers.push(() => makeCharacter(
  44279. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44280. {
  44281. front: {
  44282. height: math.unit(5 + 11/12, "feet"),
  44283. name: "Front",
  44284. image: {
  44285. source: "./media/characters/lannah/front.svg",
  44286. extra: 1208/1113,
  44287. bottom: 97/1305
  44288. }
  44289. },
  44290. },
  44291. [
  44292. {
  44293. name: "Normal",
  44294. height: math.unit(5 + 11/12, "feet"),
  44295. default: true
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44301. {
  44302. front: {
  44303. height: math.unit(6 + 3/12, "feet"),
  44304. weight: math.unit(3.5, "tons"),
  44305. name: "Front",
  44306. image: {
  44307. source: "./media/characters/emberflame/front.svg",
  44308. extra: 1198/672,
  44309. bottom: 82/1280
  44310. }
  44311. },
  44312. side: {
  44313. height: math.unit(6 + 3/12, "feet"),
  44314. weight: math.unit(3.5, "tons"),
  44315. name: "Side",
  44316. image: {
  44317. source: "./media/characters/emberflame/side.svg",
  44318. extra: 938/527,
  44319. bottom: 56/994
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Normal",
  44326. height: math.unit(6 + 3/12, "feet"),
  44327. default: true
  44328. },
  44329. ]
  44330. ))
  44331. characterMakers.push(() => makeCharacter(
  44332. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44333. {
  44334. side: {
  44335. height: math.unit(17.5, "feet"),
  44336. weight: math.unit(35, "tons"),
  44337. name: "Side",
  44338. image: {
  44339. source: "./media/characters/sophie-ambrose/side.svg",
  44340. extra: 1573/1242,
  44341. bottom: 71/1644
  44342. }
  44343. },
  44344. maw: {
  44345. height: math.unit(7.4, "feet"),
  44346. name: "Maw",
  44347. image: {
  44348. source: "./media/characters/sophie-ambrose/maw.svg"
  44349. }
  44350. },
  44351. },
  44352. [
  44353. {
  44354. name: "Normal",
  44355. height: math.unit(17.5, "feet"),
  44356. default: true
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44362. {
  44363. front: {
  44364. height: math.unit(280, "feet"),
  44365. weight: math.unit(550, "tons"),
  44366. name: "Front",
  44367. image: {
  44368. source: "./media/characters/king-mugi/front.svg",
  44369. extra: 1102/947,
  44370. bottom: 104/1206
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "King Mugi",
  44377. height: math.unit(280, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(64, "meters"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/nova-fox/front.svg",
  44390. extra: 1310/1246,
  44391. bottom: 65/1375
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Macro",
  44398. height: math.unit(64, "meters"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44405. {
  44406. front: {
  44407. height: math.unit(6 + 3/12, "feet"),
  44408. weight: math.unit(170, "lb"),
  44409. name: "Front",
  44410. image: {
  44411. source: "./media/characters/sam-bat/front.svg",
  44412. extra: 1601/1411,
  44413. bottom: 125/1726
  44414. }
  44415. },
  44416. back: {
  44417. height: math.unit(6 + 3/12, "feet"),
  44418. weight: math.unit(170, "lb"),
  44419. name: "Back",
  44420. image: {
  44421. source: "./media/characters/sam-bat/back.svg",
  44422. extra: 1577/1405,
  44423. bottom: 58/1635
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Normal",
  44430. height: math.unit(6 + 3/12, "feet"),
  44431. default: true
  44432. },
  44433. ]
  44434. ))
  44435. characterMakers.push(() => makeCharacter(
  44436. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44437. {
  44438. front: {
  44439. height: math.unit(59, "feet"),
  44440. weight: math.unit(40000, "lb"),
  44441. name: "Front",
  44442. image: {
  44443. source: "./media/characters/inari/front.svg",
  44444. extra: 1884/1350,
  44445. bottom: 95/1979
  44446. }
  44447. },
  44448. },
  44449. [
  44450. {
  44451. name: "Gigantamax",
  44452. height: math.unit(59, "feet"),
  44453. default: true
  44454. },
  44455. ]
  44456. ))
  44457. characterMakers.push(() => makeCharacter(
  44458. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44459. {
  44460. front: {
  44461. height: math.unit(5 + 8/12, "feet"),
  44462. name: "Front",
  44463. image: {
  44464. source: "./media/characters/elizabeth/front.svg",
  44465. extra: 1395/1298,
  44466. bottom: 54/1449
  44467. }
  44468. },
  44469. mouth: {
  44470. height: math.unit(1.97, "feet"),
  44471. name: "Mouth",
  44472. image: {
  44473. source: "./media/characters/elizabeth/mouth.svg"
  44474. }
  44475. },
  44476. foot: {
  44477. height: math.unit(1.17, "feet"),
  44478. name: "Foot",
  44479. image: {
  44480. source: "./media/characters/elizabeth/foot.svg"
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(5 + 8/12, "feet"),
  44488. default: true
  44489. },
  44490. {
  44491. name: "Minimacro",
  44492. height: math.unit(18, "feet")
  44493. },
  44494. {
  44495. name: "Macro",
  44496. height: math.unit(180, "feet")
  44497. },
  44498. ]
  44499. ))
  44500. characterMakers.push(() => makeCharacter(
  44501. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44502. {
  44503. front: {
  44504. height: math.unit(5 + 2/12, "feet"),
  44505. name: "Front",
  44506. image: {
  44507. source: "./media/characters/october-gossamer/front.svg",
  44508. extra: 505/454,
  44509. bottom: 7/512
  44510. }
  44511. },
  44512. back: {
  44513. height: math.unit(5 + 2/12, "feet"),
  44514. name: "Back",
  44515. image: {
  44516. source: "./media/characters/october-gossamer/back.svg",
  44517. extra: 501/454,
  44518. bottom: 11/512
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(5 + 2/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44532. {
  44533. front: {
  44534. height: math.unit(5, "feet"),
  44535. name: "Front",
  44536. image: {
  44537. source: "./media/characters/epiglottis/front.svg",
  44538. extra: 923/849,
  44539. bottom: 17/940
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Original Size",
  44546. height: math.unit(10, "inches")
  44547. },
  44548. {
  44549. name: "Human Size",
  44550. height: math.unit(5, "feet"),
  44551. default: true
  44552. },
  44553. {
  44554. name: "Big",
  44555. height: math.unit(25, "feet")
  44556. },
  44557. {
  44558. name: "Bigger",
  44559. height: math.unit(50, "feet")
  44560. },
  44561. {
  44562. name: "oh lawd",
  44563. height: math.unit(75, "feet")
  44564. },
  44565. ]
  44566. ))
  44567. characterMakers.push(() => makeCharacter(
  44568. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44569. {
  44570. front: {
  44571. height: math.unit(2 + 4/12, "feet"),
  44572. weight: math.unit(60, "lb"),
  44573. name: "Front",
  44574. image: {
  44575. source: "./media/characters/lerm/front.svg",
  44576. extra: 796/790,
  44577. bottom: 79/875
  44578. }
  44579. },
  44580. },
  44581. [
  44582. {
  44583. name: "Normal",
  44584. height: math.unit(2 + 4/12, "feet"),
  44585. default: true
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(5.5, "feet"),
  44594. weight: math.unit(130, "lb"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/xena-nebadon/front.svg",
  44598. extra: 1828/1730,
  44599. bottom: 79/1907
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Tiny Puppy",
  44606. height: math.unit(3, "inches")
  44607. },
  44608. {
  44609. name: "Normal",
  44610. height: math.unit(5.5, "feet"),
  44611. default: true
  44612. },
  44613. {
  44614. name: "Lotta Lady",
  44615. height: math.unit(12, "feet")
  44616. },
  44617. {
  44618. name: "Pretty Big",
  44619. height: math.unit(100, "feet")
  44620. },
  44621. {
  44622. name: "Big",
  44623. height: math.unit(500, "feet")
  44624. },
  44625. {
  44626. name: "Skyscraper Toys",
  44627. height: math.unit(2500, "feet")
  44628. },
  44629. {
  44630. name: "Plane Catcher",
  44631. height: math.unit(8, "miles")
  44632. },
  44633. {
  44634. name: "Planet Toys",
  44635. height: math.unit(15, "earths")
  44636. },
  44637. {
  44638. name: "Stardust",
  44639. height: math.unit(0.25, "galaxies")
  44640. },
  44641. {
  44642. name: "Snacks",
  44643. height: math.unit(70, "universes")
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  44649. {
  44650. front: {
  44651. height: math.unit(1.6, "meters"),
  44652. weight: math.unit(60, "kg"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/bounty/front.svg",
  44656. extra: 1426/1308,
  44657. bottom: 15/1441
  44658. }
  44659. },
  44660. back: {
  44661. height: math.unit(1.6, "meters"),
  44662. weight: math.unit(60, "kg"),
  44663. name: "Back",
  44664. image: {
  44665. source: "./media/characters/bounty/back.svg",
  44666. extra: 1417/1307,
  44667. bottom: 8/1425
  44668. }
  44669. },
  44670. },
  44671. [
  44672. {
  44673. name: "Normal",
  44674. height: math.unit(1.6, "meters"),
  44675. default: true
  44676. },
  44677. {
  44678. name: "Macro",
  44679. height: math.unit(300, "meters")
  44680. },
  44681. ]
  44682. ))
  44683. characterMakers.push(() => makeCharacter(
  44684. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44685. {
  44686. front: {
  44687. height: math.unit(2 + 8/12, "feet"),
  44688. weight: math.unit(15, "lb"),
  44689. name: "Front",
  44690. image: {
  44691. source: "./media/characters/mochi/front.svg",
  44692. extra: 1022/852,
  44693. bottom: 435/1457
  44694. }
  44695. },
  44696. back: {
  44697. height: math.unit(2 + 8/12, "feet"),
  44698. weight: math.unit(15, "lb"),
  44699. name: "Back",
  44700. image: {
  44701. source: "./media/characters/mochi/back.svg",
  44702. extra: 1335/1119,
  44703. bottom: 39/1374
  44704. }
  44705. },
  44706. bird: {
  44707. height: math.unit(2 + 8/12, "feet"),
  44708. weight: math.unit(15, "lb"),
  44709. name: "Bird",
  44710. image: {
  44711. source: "./media/characters/mochi/bird.svg",
  44712. extra: 1251/1113,
  44713. bottom: 178/1429
  44714. }
  44715. },
  44716. kaiju: {
  44717. height: math.unit(154, "feet"),
  44718. weight: math.unit(1e7, "lb"),
  44719. name: "Kaiju",
  44720. image: {
  44721. source: "./media/characters/mochi/kaiju.svg",
  44722. extra: 460/324,
  44723. bottom: 40/500
  44724. }
  44725. },
  44726. head: {
  44727. height: math.unit(1.21, "feet"),
  44728. name: "Head",
  44729. image: {
  44730. source: "./media/characters/mochi/head.svg"
  44731. }
  44732. },
  44733. alternateTail: {
  44734. height: math.unit(2 + 8/12, "feet"),
  44735. weight: math.unit(45, "lb"),
  44736. name: "Alternate Tail",
  44737. image: {
  44738. source: "./media/characters/mochi/alternate-tail.svg",
  44739. extra: 139/76,
  44740. bottom: 45/184
  44741. }
  44742. },
  44743. },
  44744. [
  44745. {
  44746. name: "Micro",
  44747. height: math.unit(2, "inches")
  44748. },
  44749. {
  44750. name: "Normal",
  44751. height: math.unit(2 + 8/12, "feet"),
  44752. default: true
  44753. },
  44754. {
  44755. name: "Macro",
  44756. height: math.unit(106, "feet")
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(5.67, "feet"),
  44765. weight: math.unit(135, "lb"),
  44766. name: "Front",
  44767. image: {
  44768. source: "./media/characters/sarel/front.svg",
  44769. extra: 865/788,
  44770. bottom: 97/962
  44771. }
  44772. },
  44773. back: {
  44774. height: math.unit(5.67, "feet"),
  44775. weight: math.unit(135, "lb"),
  44776. name: "Back",
  44777. image: {
  44778. source: "./media/characters/sarel/back.svg",
  44779. extra: 857/777,
  44780. bottom: 32/889
  44781. }
  44782. },
  44783. chozoan: {
  44784. height: math.unit(5.67, "feet"),
  44785. weight: math.unit(135, "lb"),
  44786. name: "Chozoan",
  44787. image: {
  44788. source: "./media/characters/sarel/chozoan.svg",
  44789. extra: 865/788,
  44790. bottom: 97/962
  44791. }
  44792. },
  44793. current: {
  44794. height: math.unit(5.67, "feet"),
  44795. weight: math.unit(135, "lb"),
  44796. name: "Current",
  44797. image: {
  44798. source: "./media/characters/sarel/current.svg",
  44799. extra: 865/788,
  44800. bottom: 97/962
  44801. }
  44802. },
  44803. head: {
  44804. height: math.unit(1.77, "feet"),
  44805. name: "Head",
  44806. image: {
  44807. source: "./media/characters/sarel/head.svg"
  44808. }
  44809. },
  44810. claws: {
  44811. height: math.unit(1.8, "feet"),
  44812. name: "Claws",
  44813. image: {
  44814. source: "./media/characters/sarel/claws.svg"
  44815. }
  44816. },
  44817. clawsAlt: {
  44818. height: math.unit(1.8, "feet"),
  44819. name: "Claws-alt",
  44820. image: {
  44821. source: "./media/characters/sarel/claws-alt.svg"
  44822. }
  44823. },
  44824. },
  44825. [
  44826. {
  44827. name: "Normal",
  44828. height: math.unit(5.67, "feet"),
  44829. default: true
  44830. },
  44831. ]
  44832. ))
  44833. characterMakers.push(() => makeCharacter(
  44834. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44835. {
  44836. front: {
  44837. height: math.unit(5500, "feet"),
  44838. name: "Front",
  44839. image: {
  44840. source: "./media/characters/alyonia/front.svg",
  44841. extra: 1200/1135,
  44842. bottom: 29/1229
  44843. }
  44844. },
  44845. back: {
  44846. height: math.unit(5500, "feet"),
  44847. name: "Back",
  44848. image: {
  44849. source: "./media/characters/alyonia/back.svg",
  44850. extra: 1205/1138,
  44851. bottom: 10/1215
  44852. }
  44853. },
  44854. },
  44855. [
  44856. {
  44857. name: "Small",
  44858. height: math.unit(10, "feet")
  44859. },
  44860. {
  44861. name: "Macro",
  44862. height: math.unit(500, "feet")
  44863. },
  44864. {
  44865. name: "Mega Macro",
  44866. height: math.unit(5500, "feet"),
  44867. default: true
  44868. },
  44869. {
  44870. name: "Mega Macro+",
  44871. height: math.unit(500000, "feet")
  44872. },
  44873. {
  44874. name: "Giga Macro",
  44875. height: math.unit(3000, "miles")
  44876. },
  44877. {
  44878. name: "Tera Macro",
  44879. height: math.unit(2.8e6, "miles")
  44880. },
  44881. {
  44882. name: "Galactic",
  44883. height: math.unit(120000, "lightyears")
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44889. {
  44890. werewolf: {
  44891. height: math.unit(8, "feet"),
  44892. weight: math.unit(425, "lb"),
  44893. name: "Werewolf",
  44894. image: {
  44895. source: "./media/characters/autumn/werewolf.svg",
  44896. extra: 2154/2031,
  44897. bottom: 160/2314
  44898. }
  44899. },
  44900. human: {
  44901. height: math.unit(5 + 8/12, "feet"),
  44902. weight: math.unit(150, "lb"),
  44903. name: "Human",
  44904. image: {
  44905. source: "./media/characters/autumn/human.svg",
  44906. extra: 1200/1149,
  44907. bottom: 30/1230
  44908. }
  44909. },
  44910. },
  44911. [
  44912. {
  44913. name: "Normal",
  44914. height: math.unit(8, "feet"),
  44915. default: true
  44916. },
  44917. ]
  44918. ))
  44919. characterMakers.push(() => makeCharacter(
  44920. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44921. {
  44922. front: {
  44923. height: math.unit(8 + 5/12, "feet"),
  44924. weight: math.unit(825, "lb"),
  44925. name: "Front",
  44926. image: {
  44927. source: "./media/characters/cobalt-charizard/front.svg",
  44928. extra: 1268/1155,
  44929. bottom: 122/1390
  44930. }
  44931. },
  44932. side: {
  44933. height: math.unit(8 + 5/12, "feet"),
  44934. weight: math.unit(825, "lb"),
  44935. name: "Side",
  44936. image: {
  44937. source: "./media/characters/cobalt-charizard/side.svg",
  44938. extra: 1348/1257,
  44939. bottom: 58/1406
  44940. }
  44941. },
  44942. gMax: {
  44943. height: math.unit(134 + 11/12, "feet"),
  44944. name: "G-Max",
  44945. image: {
  44946. source: "./media/characters/cobalt-charizard/g-max.svg",
  44947. extra: 1835/1541,
  44948. bottom: 151/1986
  44949. }
  44950. },
  44951. },
  44952. [
  44953. {
  44954. name: "Normal",
  44955. height: math.unit(8 + 5/12, "feet"),
  44956. default: true
  44957. },
  44958. ]
  44959. ))
  44960. characterMakers.push(() => makeCharacter(
  44961. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44962. {
  44963. front: {
  44964. height: math.unit(6 + 3/12, "feet"),
  44965. weight: math.unit(210, "lb"),
  44966. name: "Front",
  44967. image: {
  44968. source: "./media/characters/stella/front.svg",
  44969. extra: 3549/3335,
  44970. bottom: 51/3600
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Normal",
  44977. height: math.unit(6 + 3/12, "feet"),
  44978. default: true
  44979. },
  44980. ]
  44981. ))
  44982. characterMakers.push(() => makeCharacter(
  44983. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44984. {
  44985. front: {
  44986. height: math.unit(5, "feet"),
  44987. weight: math.unit(90, "lb"),
  44988. name: "Front",
  44989. image: {
  44990. source: "./media/characters/riley-bishop/front.svg",
  44991. extra: 1450/1428,
  44992. bottom: 152/1602
  44993. }
  44994. },
  44995. },
  44996. [
  44997. {
  44998. name: "Normal",
  44999. height: math.unit(5, "feet"),
  45000. default: true
  45001. },
  45002. ]
  45003. ))
  45004. characterMakers.push(() => makeCharacter(
  45005. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45006. {
  45007. side: {
  45008. height: math.unit(8 + 2/12, "feet"),
  45009. weight: math.unit(500, "kg"),
  45010. name: "Side",
  45011. image: {
  45012. source: "./media/characters/theo-arcanine/side.svg",
  45013. extra: 1342/1074,
  45014. bottom: 111/1453
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Normal",
  45021. height: math.unit(8 + 2/12, "feet"),
  45022. default: true
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(4, "feet"),
  45031. name: "Front",
  45032. image: {
  45033. source: "./media/characters/kali/front.svg",
  45034. extra: 1921/1357,
  45035. bottom: 70/1991
  45036. }
  45037. },
  45038. },
  45039. [
  45040. {
  45041. name: "Normal",
  45042. height: math.unit(4, "feet"),
  45043. default: true
  45044. },
  45045. {
  45046. name: "Macro",
  45047. height: math.unit(32, "meters")
  45048. },
  45049. {
  45050. name: "Macro+",
  45051. height: math.unit(150, "meters")
  45052. },
  45053. {
  45054. name: "Megamacro",
  45055. height: math.unit(7500, "meters")
  45056. },
  45057. {
  45058. name: "Megamacro+",
  45059. height: math.unit(80, "kilometers")
  45060. },
  45061. ]
  45062. ))
  45063. characterMakers.push(() => makeCharacter(
  45064. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45065. {
  45066. side: {
  45067. height: math.unit(5 + 11/12, "feet"),
  45068. weight: math.unit(236, "lb"),
  45069. name: "Side",
  45070. image: {
  45071. source: "./media/characters/gapp/side.svg",
  45072. extra: 775/340,
  45073. bottom: 58/833
  45074. }
  45075. },
  45076. mouth: {
  45077. height: math.unit(2.98, "feet"),
  45078. name: "Mouth",
  45079. image: {
  45080. source: "./media/characters/gapp/mouth.svg"
  45081. }
  45082. },
  45083. },
  45084. [
  45085. {
  45086. name: "Normal",
  45087. height: math.unit(5 + 1/12, "feet"),
  45088. default: true
  45089. },
  45090. ]
  45091. ))
  45092. characterMakers.push(() => makeCharacter(
  45093. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45094. {
  45095. front: {
  45096. height: math.unit(6, "feet"),
  45097. name: "Front",
  45098. image: {
  45099. source: "./media/characters/persephone/front.svg",
  45100. extra: 1895/1717,
  45101. bottom: 96/1991
  45102. }
  45103. },
  45104. back: {
  45105. height: math.unit(6, "feet"),
  45106. name: "Back",
  45107. image: {
  45108. source: "./media/characters/persephone/back.svg",
  45109. extra: 1868/1679,
  45110. bottom: 26/1894
  45111. }
  45112. },
  45113. casual: {
  45114. height: math.unit(6, "feet"),
  45115. name: "Casual",
  45116. image: {
  45117. source: "./media/characters/persephone/casual.svg",
  45118. extra: 1713/1541,
  45119. bottom: 76/1789
  45120. }
  45121. },
  45122. },
  45123. [
  45124. {
  45125. name: "Human Size",
  45126. height: math.unit(6, "feet")
  45127. },
  45128. {
  45129. name: "Big Steppy",
  45130. height: math.unit(600, "meters"),
  45131. default: true
  45132. },
  45133. {
  45134. name: "Galaxy Brain",
  45135. height: math.unit(1, "zettameter")
  45136. },
  45137. ]
  45138. ))
  45139. characterMakers.push(() => makeCharacter(
  45140. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45141. {
  45142. front: {
  45143. height: math.unit(1.85, "meters"),
  45144. name: "Front",
  45145. image: {
  45146. source: "./media/characters/riley-foxthing/front.svg",
  45147. extra: 1495/1354,
  45148. bottom: 122/1617
  45149. }
  45150. },
  45151. frontAlt: {
  45152. height: math.unit(1.85, "meters"),
  45153. name: "Front (Alt)",
  45154. image: {
  45155. source: "./media/characters/riley-foxthing/front-alt.svg",
  45156. extra: 1572/1389,
  45157. bottom: 116/1688
  45158. }
  45159. },
  45160. },
  45161. [
  45162. {
  45163. name: "Normal Sized",
  45164. height: math.unit(1.85, "meters"),
  45165. default: true
  45166. },
  45167. {
  45168. name: "Quite Sizable",
  45169. height: math.unit(5, "meters")
  45170. },
  45171. {
  45172. name: "Rather Large",
  45173. height: math.unit(20, "meters")
  45174. },
  45175. {
  45176. name: "Macro",
  45177. height: math.unit(450, "meters")
  45178. },
  45179. {
  45180. name: "Giga",
  45181. height: math.unit(5, "km")
  45182. },
  45183. ]
  45184. ))
  45185. characterMakers.push(() => makeCharacter(
  45186. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45187. {
  45188. front: {
  45189. height: math.unit(6, "feet"),
  45190. weight: math.unit(200, "lb"),
  45191. name: "Front",
  45192. image: {
  45193. source: "./media/characters/blizzard/front.svg",
  45194. extra: 1136/990,
  45195. bottom: 136/1272
  45196. }
  45197. },
  45198. back: {
  45199. height: math.unit(6, "feet"),
  45200. weight: math.unit(200, "lb"),
  45201. name: "Back",
  45202. image: {
  45203. source: "./media/characters/blizzard/back.svg",
  45204. extra: 1175/1034,
  45205. bottom: 97/1272
  45206. }
  45207. },
  45208. sitting: {
  45209. height: math.unit(3.725, "feet"),
  45210. weight: math.unit(200, "lb"),
  45211. name: "Sitting",
  45212. image: {
  45213. source: "./media/characters/blizzard/sitting.svg",
  45214. extra: 581/485,
  45215. bottom: 90/671
  45216. }
  45217. },
  45218. frontWizard: {
  45219. height: math.unit(7.9, "feet"),
  45220. weight: math.unit(200, "lb"),
  45221. name: "Front (Wizard)",
  45222. image: {
  45223. source: "./media/characters/blizzard/front-wizard.svg"
  45224. }
  45225. },
  45226. backWizard: {
  45227. height: math.unit(7.9, "feet"),
  45228. weight: math.unit(200, "lb"),
  45229. name: "Back (Wizard)",
  45230. image: {
  45231. source: "./media/characters/blizzard/back-wizard.svg"
  45232. }
  45233. },
  45234. frontNsfw: {
  45235. height: math.unit(6, "feet"),
  45236. weight: math.unit(200, "lb"),
  45237. name: "Front (NSFW)",
  45238. image: {
  45239. source: "./media/characters/blizzard/front-nsfw.svg",
  45240. extra: 1136/990,
  45241. bottom: 136/1272
  45242. }
  45243. },
  45244. backNsfw: {
  45245. height: math.unit(6, "feet"),
  45246. weight: math.unit(200, "lb"),
  45247. name: "Back (NSFW)",
  45248. image: {
  45249. source: "./media/characters/blizzard/back-nsfw.svg",
  45250. extra: 1175/1034,
  45251. bottom: 97/1272
  45252. }
  45253. },
  45254. sittingNsfw: {
  45255. height: math.unit(3.725, "feet"),
  45256. weight: math.unit(200, "lb"),
  45257. name: "Sitting (NSFW)",
  45258. image: {
  45259. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45260. extra: 581/485,
  45261. bottom: 90/671
  45262. }
  45263. },
  45264. wizardFrontNsfw: {
  45265. height: math.unit(7.9, "feet"),
  45266. weight: math.unit(200, "lb"),
  45267. name: "Wizard (Front, NSFW)",
  45268. image: {
  45269. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45270. }
  45271. },
  45272. },
  45273. [
  45274. {
  45275. name: "Normal",
  45276. height: math.unit(6, "feet"),
  45277. default: true
  45278. },
  45279. ]
  45280. ))
  45281. characterMakers.push(() => makeCharacter(
  45282. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45283. {
  45284. front: {
  45285. height: math.unit(5 + 2/12, "feet"),
  45286. name: "Front",
  45287. image: {
  45288. source: "./media/characters/lumi/front.svg",
  45289. extra: 1328/1268,
  45290. bottom: 103/1431
  45291. }
  45292. },
  45293. back: {
  45294. height: math.unit(5 + 2/12, "feet"),
  45295. name: "Back",
  45296. image: {
  45297. source: "./media/characters/lumi/back.svg",
  45298. extra: 1381/1327,
  45299. bottom: 43/1424
  45300. }
  45301. },
  45302. },
  45303. [
  45304. {
  45305. name: "Normal",
  45306. height: math.unit(5 + 2/12, "feet"),
  45307. default: true
  45308. },
  45309. ]
  45310. ))
  45311. characterMakers.push(() => makeCharacter(
  45312. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45313. {
  45314. front: {
  45315. height: math.unit(5 + 9/12, "feet"),
  45316. name: "Front",
  45317. image: {
  45318. source: "./media/characters/aliya-cotton/front.svg",
  45319. extra: 577/564,
  45320. bottom: 29/606
  45321. }
  45322. },
  45323. },
  45324. [
  45325. {
  45326. name: "Normal",
  45327. height: math.unit(5 + 9/12, "feet"),
  45328. default: true
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(2.7, "meters"),
  45337. weight: math.unit(25000, "lb"),
  45338. name: "Front",
  45339. image: {
  45340. source: "./media/characters/noah-luxray/front.svg",
  45341. extra: 1644/825,
  45342. bottom: 339/1983
  45343. }
  45344. },
  45345. side: {
  45346. height: math.unit(2.97, "meters"),
  45347. weight: math.unit(25000, "lb"),
  45348. name: "Side",
  45349. image: {
  45350. source: "./media/characters/noah-luxray/side.svg",
  45351. extra: 1319/650,
  45352. bottom: 163/1482
  45353. }
  45354. },
  45355. dick: {
  45356. height: math.unit(7.4, "feet"),
  45357. weight: math.unit(2500, "lb"),
  45358. name: "Dick",
  45359. image: {
  45360. source: "./media/characters/noah-luxray/dick.svg"
  45361. }
  45362. },
  45363. dickAlt: {
  45364. height: math.unit(10.83, "feet"),
  45365. weight: math.unit(2500, "lb"),
  45366. name: "Dick-alt",
  45367. image: {
  45368. source: "./media/characters/noah-luxray/dick-alt.svg"
  45369. }
  45370. },
  45371. },
  45372. [
  45373. {
  45374. name: "BIG",
  45375. height: math.unit(2.7, "meters"),
  45376. default: true
  45377. },
  45378. ]
  45379. ))
  45380. characterMakers.push(() => makeCharacter(
  45381. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45382. {
  45383. standing: {
  45384. height: math.unit(183, "cm"),
  45385. weight: math.unit(68, "kg"),
  45386. name: "Standing",
  45387. image: {
  45388. source: "./media/characters/arion/standing.svg",
  45389. extra: 1869/1807,
  45390. bottom: 93/1962
  45391. }
  45392. },
  45393. reclining: {
  45394. height: math.unit(70.5, "cm"),
  45395. weight: math.unit(68, "lb"),
  45396. name: "Reclining",
  45397. image: {
  45398. source: "./media/characters/arion/reclining.svg",
  45399. extra: 937/870,
  45400. bottom: 63/1000
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Colossus Size, Low",
  45407. height: math.unit(33, "meters"),
  45408. default: true
  45409. },
  45410. {
  45411. name: "Colossus Size, Mid",
  45412. height: math.unit(52, "meters")
  45413. },
  45414. {
  45415. name: "Colossus Size, High",
  45416. height: math.unit(60, "meters")
  45417. },
  45418. {
  45419. name: "Titan Size, Low",
  45420. height: math.unit(91, "meters"),
  45421. },
  45422. {
  45423. name: "Titan Size, Mid",
  45424. height: math.unit(122, "meters")
  45425. },
  45426. {
  45427. name: "Titan Size, High",
  45428. height: math.unit(162, "meters")
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45434. {
  45435. front: {
  45436. height: math.unit(53, "meters"),
  45437. name: "Front",
  45438. image: {
  45439. source: "./media/characters/stellar-marbey/front.svg",
  45440. extra: 1913/1805,
  45441. bottom: 92/2005
  45442. }
  45443. },
  45444. back: {
  45445. height: math.unit(53, "meters"),
  45446. name: "Back",
  45447. image: {
  45448. source: "./media/characters/stellar-marbey/back.svg",
  45449. extra: 1960/1851,
  45450. bottom: 28/1988
  45451. }
  45452. },
  45453. mouth: {
  45454. height: math.unit(3.5, "meters"),
  45455. name: "Mouth",
  45456. image: {
  45457. source: "./media/characters/stellar-marbey/mouth.svg"
  45458. }
  45459. },
  45460. },
  45461. [
  45462. {
  45463. name: "Macro",
  45464. height: math.unit(53, "meters"),
  45465. default: true
  45466. },
  45467. ]
  45468. ))
  45469. characterMakers.push(() => makeCharacter(
  45470. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45471. {
  45472. front: {
  45473. height: math.unit(8 + 1/12, "feet"),
  45474. weight: math.unit(233, "lb"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/matsu/front.svg",
  45478. extra: 832/772,
  45479. bottom: 40/872
  45480. }
  45481. },
  45482. back: {
  45483. height: math.unit(8 + 1/12, "feet"),
  45484. weight: math.unit(233, "lb"),
  45485. name: "Back",
  45486. image: {
  45487. source: "./media/characters/matsu/back.svg",
  45488. extra: 839/780,
  45489. bottom: 47/886
  45490. }
  45491. },
  45492. },
  45493. [
  45494. {
  45495. name: "Normal",
  45496. height: math.unit(8 + 1/12, "feet"),
  45497. default: true
  45498. },
  45499. ]
  45500. ))
  45501. characterMakers.push(() => makeCharacter(
  45502. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45503. {
  45504. front: {
  45505. height: math.unit(4, "feet"),
  45506. weight: math.unit(148, "lb"),
  45507. name: "Front",
  45508. image: {
  45509. source: "./media/characters/thiz/front.svg",
  45510. extra: 1913/1748,
  45511. bottom: 62/1975
  45512. }
  45513. },
  45514. },
  45515. [
  45516. {
  45517. name: "Normal",
  45518. height: math.unit(4, "feet"),
  45519. default: true
  45520. },
  45521. ]
  45522. ))
  45523. characterMakers.push(() => makeCharacter(
  45524. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45525. {
  45526. front: {
  45527. height: math.unit(7 + 6/12, "feet"),
  45528. weight: math.unit(267, "lb"),
  45529. name: "Front",
  45530. image: {
  45531. source: "./media/characters/marcel/front.svg",
  45532. extra: 1221/1096,
  45533. bottom: 76/1297
  45534. }
  45535. },
  45536. },
  45537. [
  45538. {
  45539. name: "Normal",
  45540. height: math.unit(7 + 6/12, "feet"),
  45541. default: true
  45542. },
  45543. ]
  45544. ))
  45545. characterMakers.push(() => makeCharacter(
  45546. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  45547. {
  45548. side: {
  45549. height: math.unit(42, "meters"),
  45550. name: "Side",
  45551. image: {
  45552. source: "./media/characters/flake/side.svg",
  45553. extra: 1525/1306,
  45554. bottom: 209/1734
  45555. }
  45556. },
  45557. },
  45558. [
  45559. {
  45560. name: "Normal",
  45561. height: math.unit(42, "meters"),
  45562. default: true
  45563. },
  45564. ]
  45565. ))
  45566. characterMakers.push(() => makeCharacter(
  45567. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  45568. {
  45569. dressed: {
  45570. height: math.unit(6 + 4/12, "feet"),
  45571. weight: math.unit(520, "lb"),
  45572. name: "Dressed",
  45573. image: {
  45574. source: "./media/characters/someonne/dressed.svg",
  45575. extra: 1020/1010,
  45576. bottom: 178/1198
  45577. }
  45578. },
  45579. undressed: {
  45580. height: math.unit(6 + 4/12, "feet"),
  45581. weight: math.unit(520, "lb"),
  45582. name: "Undressed",
  45583. image: {
  45584. source: "./media/characters/someonne/undressed.svg",
  45585. extra: 1019/1014,
  45586. bottom: 169/1188
  45587. }
  45588. },
  45589. },
  45590. [
  45591. {
  45592. name: "Normal",
  45593. height: math.unit(6 + 4/12, "feet"),
  45594. default: true
  45595. },
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  45600. {
  45601. front: {
  45602. height: math.unit(3, "feet"),
  45603. weight: math.unit(30, "lb"),
  45604. name: "Front",
  45605. image: {
  45606. source: "./media/characters/till/front.svg",
  45607. extra: 892/823,
  45608. bottom: 55/947
  45609. }
  45610. },
  45611. },
  45612. [
  45613. {
  45614. name: "Normal",
  45615. height: math.unit(3, "feet"),
  45616. default: true
  45617. },
  45618. ]
  45619. ))
  45620. characterMakers.push(() => makeCharacter(
  45621. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  45622. {
  45623. front: {
  45624. height: math.unit(9 + 8/12, "feet"),
  45625. weight: math.unit(800, "lb"),
  45626. name: "Front",
  45627. image: {
  45628. source: "./media/characters/sydney-heki/front.svg",
  45629. extra: 1360/1300,
  45630. bottom: 22/1382
  45631. }
  45632. },
  45633. back: {
  45634. height: math.unit(9 + 8/12, "feet"),
  45635. weight: math.unit(800, "lb"),
  45636. name: "Back",
  45637. image: {
  45638. source: "./media/characters/sydney-heki/back.svg",
  45639. extra: 1356/1293,
  45640. bottom: 12/1368
  45641. }
  45642. },
  45643. frontDressed: {
  45644. height: math.unit(9 + 8/12, "feet"),
  45645. weight: math.unit(800, "lb"),
  45646. name: "Front-dressed",
  45647. image: {
  45648. source: "./media/characters/sydney-heki/front-dressed.svg",
  45649. extra: 1360/1300,
  45650. bottom: 22/1382
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Normal",
  45657. height: math.unit(9 + 8/12, "feet"),
  45658. default: true
  45659. },
  45660. {
  45661. name: "Macro",
  45662. height: math.unit(500, "feet")
  45663. },
  45664. {
  45665. name: "Megamacro",
  45666. height: math.unit(3.6, "miles")
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45672. {
  45673. front: {
  45674. height: math.unit(200, "cm"),
  45675. weight: math.unit(250, "lb"),
  45676. name: "Front",
  45677. image: {
  45678. source: "./media/characters/fowler-karlsson/front.svg",
  45679. extra: 897/845,
  45680. bottom: 123/1020
  45681. }
  45682. },
  45683. back: {
  45684. height: math.unit(200, "cm"),
  45685. weight: math.unit(250, "lb"),
  45686. name: "Back",
  45687. image: {
  45688. source: "./media/characters/fowler-karlsson/back.svg",
  45689. extra: 999/944,
  45690. bottom: 26/1025
  45691. }
  45692. },
  45693. dick: {
  45694. height: math.unit(1.92, "feet"),
  45695. weight: math.unit(150, "lb"),
  45696. name: "Dick",
  45697. image: {
  45698. source: "./media/characters/fowler-karlsson/dick.svg"
  45699. }
  45700. },
  45701. },
  45702. [
  45703. {
  45704. name: "Normal",
  45705. height: math.unit(200, "cm"),
  45706. default: true
  45707. },
  45708. {
  45709. name: "Smaller Macro",
  45710. height: math.unit(90, "m")
  45711. },
  45712. {
  45713. name: "Macro",
  45714. height: math.unit(150, "m")
  45715. },
  45716. {
  45717. name: "Bigger Macro",
  45718. height: math.unit(300, "m")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45724. {
  45725. side: {
  45726. height: math.unit(8 + 2/12, "feet"),
  45727. weight: math.unit(1, "tonne"),
  45728. name: "Side",
  45729. image: {
  45730. source: "./media/characters/rylide/side.svg",
  45731. extra: 1318/1034,
  45732. bottom: 106/1424
  45733. }
  45734. },
  45735. sitting: {
  45736. height: math.unit(303, "cm"),
  45737. weight: math.unit(1, "tonne"),
  45738. name: "Sitting",
  45739. image: {
  45740. source: "./media/characters/rylide/sitting.svg",
  45741. extra: 1303/1103,
  45742. bottom: 36/1339
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Normal",
  45749. height: math.unit(8 + 2/12, "feet"),
  45750. default: true
  45751. },
  45752. ]
  45753. ))
  45754. characterMakers.push(() => makeCharacter(
  45755. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45756. {
  45757. front: {
  45758. height: math.unit(5 + 10/12, "feet"),
  45759. weight: math.unit(160, "lb"),
  45760. name: "Front",
  45761. image: {
  45762. source: "./media/characters/pudask/front.svg",
  45763. extra: 1616/1590,
  45764. bottom: 161/1777
  45765. }
  45766. },
  45767. },
  45768. [
  45769. {
  45770. name: "Ferret Height",
  45771. height: math.unit(2 + 5/12, "feet")
  45772. },
  45773. {
  45774. name: "Canon Height",
  45775. height: math.unit(5 + 10/12, "feet"),
  45776. default: true
  45777. },
  45778. ]
  45779. ))
  45780. characterMakers.push(() => makeCharacter(
  45781. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45782. {
  45783. front: {
  45784. height: math.unit(3 + 6/12, "feet"),
  45785. weight: math.unit(60, "lb"),
  45786. name: "Front",
  45787. image: {
  45788. source: "./media/characters/ramita/front.svg",
  45789. extra: 1402/1232,
  45790. bottom: 62/1464
  45791. }
  45792. },
  45793. dressed: {
  45794. height: math.unit(3 + 6/12, "feet"),
  45795. weight: math.unit(60, "lb"),
  45796. name: "Dressed",
  45797. image: {
  45798. source: "./media/characters/ramita/dressed.svg",
  45799. extra: 1534/1249,
  45800. bottom: 50/1584
  45801. }
  45802. },
  45803. },
  45804. [
  45805. {
  45806. name: "Normal",
  45807. height: math.unit(3 + 6/12, "feet"),
  45808. default: true
  45809. },
  45810. ]
  45811. ))
  45812. characterMakers.push(() => makeCharacter(
  45813. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45814. {
  45815. front: {
  45816. height: math.unit(8, "feet"),
  45817. name: "Front",
  45818. image: {
  45819. source: "./media/characters/ark/front.svg",
  45820. extra: 772/693,
  45821. bottom: 45/817
  45822. }
  45823. },
  45824. },
  45825. [
  45826. {
  45827. name: "Normal",
  45828. height: math.unit(8, "feet"),
  45829. default: true
  45830. },
  45831. ]
  45832. ))
  45833. characterMakers.push(() => makeCharacter(
  45834. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45835. {
  45836. front: {
  45837. height: math.unit(6, "feet"),
  45838. weight: math.unit(250, "lb"),
  45839. volume: math.unit(5/8, "gallons"),
  45840. name: "Front",
  45841. image: {
  45842. source: "./media/characters/ludwig-horn/front.svg",
  45843. extra: 1782/1635,
  45844. bottom: 96/1878
  45845. }
  45846. },
  45847. back: {
  45848. height: math.unit(6, "feet"),
  45849. weight: math.unit(250, "lb"),
  45850. volume: math.unit(5/8, "gallons"),
  45851. name: "Back",
  45852. image: {
  45853. source: "./media/characters/ludwig-horn/back.svg",
  45854. extra: 1874/1729,
  45855. bottom: 27/1901
  45856. }
  45857. },
  45858. dick: {
  45859. height: math.unit(1.05, "feet"),
  45860. weight: math.unit(15, "lb"),
  45861. volume: math.unit(5/8, "gallons"),
  45862. name: "Dick",
  45863. image: {
  45864. source: "./media/characters/ludwig-horn/dick.svg"
  45865. }
  45866. },
  45867. },
  45868. [
  45869. {
  45870. name: "Small",
  45871. height: math.unit(6, "feet")
  45872. },
  45873. {
  45874. name: "Typical",
  45875. height: math.unit(12, "feet"),
  45876. default: true
  45877. },
  45878. {
  45879. name: "Building",
  45880. height: math.unit(80, "feet")
  45881. },
  45882. {
  45883. name: "Town",
  45884. height: math.unit(800, "feet")
  45885. },
  45886. {
  45887. name: "Kingdom",
  45888. height: math.unit(80000, "feet")
  45889. },
  45890. {
  45891. name: "Planet",
  45892. height: math.unit(8000000, "feet")
  45893. },
  45894. {
  45895. name: "Universe",
  45896. height: math.unit(8000000000, "feet")
  45897. },
  45898. {
  45899. name: "Transcended",
  45900. height: math.unit(8e27, "feet")
  45901. },
  45902. ]
  45903. ))
  45904. characterMakers.push(() => makeCharacter(
  45905. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45906. {
  45907. front: {
  45908. height: math.unit(5, "feet"),
  45909. weight: math.unit(50, "kg"),
  45910. name: "Front",
  45911. image: {
  45912. source: "./media/characters/biot-avery/front.svg",
  45913. extra: 1295/1232,
  45914. bottom: 86/1381
  45915. }
  45916. },
  45917. },
  45918. [
  45919. {
  45920. name: "Normal",
  45921. height: math.unit(5, "feet"),
  45922. default: true
  45923. },
  45924. ]
  45925. ))
  45926. characterMakers.push(() => makeCharacter(
  45927. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45928. {
  45929. front: {
  45930. height: math.unit(6, "feet"),
  45931. name: "Front",
  45932. image: {
  45933. source: "./media/characters/kitsune-kiro/front.svg",
  45934. extra: 1270/1158,
  45935. bottom: 42/1312
  45936. }
  45937. },
  45938. frontAlt: {
  45939. height: math.unit(6, "feet"),
  45940. name: "Front-alt",
  45941. image: {
  45942. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45943. extra: 1130/1081,
  45944. bottom: 36/1166
  45945. }
  45946. },
  45947. },
  45948. [
  45949. {
  45950. name: "Smol",
  45951. height: math.unit(3, "feet")
  45952. },
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(6, "feet"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(6, "feet"),
  45965. weight: math.unit(125, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/jack-thatcher/front.svg",
  45969. extra: 1474/1370,
  45970. bottom: 26/1500
  45971. }
  45972. },
  45973. back: {
  45974. height: math.unit(6, "feet"),
  45975. weight: math.unit(125, "lb"),
  45976. name: "Back",
  45977. image: {
  45978. source: "./media/characters/jack-thatcher/back.svg",
  45979. extra: 1489/1384,
  45980. bottom: 18/1507
  45981. }
  45982. },
  45983. },
  45984. [
  45985. {
  45986. name: "Normal",
  45987. height: math.unit(6, "feet"),
  45988. default: true
  45989. },
  45990. {
  45991. name: "Macro",
  45992. height: math.unit(75, "feet")
  45993. },
  45994. {
  45995. name: "Macro-er",
  45996. height: math.unit(250, "feet")
  45997. },
  45998. ]
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46002. {
  46003. front: {
  46004. height: math.unit(7, "feet"),
  46005. weight: math.unit(110, "kg"),
  46006. name: "Front",
  46007. image: {
  46008. source: "./media/characters/max-hyper/front.svg",
  46009. extra: 1969/1881,
  46010. bottom: 49/2018
  46011. }
  46012. },
  46013. },
  46014. [
  46015. {
  46016. name: "Normal",
  46017. height: math.unit(7, "feet"),
  46018. default: true
  46019. },
  46020. ]
  46021. ))
  46022. characterMakers.push(() => makeCharacter(
  46023. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46024. {
  46025. front: {
  46026. height: math.unit(5 + 5/12, "feet"),
  46027. weight: math.unit(160, "lb"),
  46028. name: "Front",
  46029. image: {
  46030. source: "./media/characters/spook/front.svg",
  46031. extra: 794/791,
  46032. bottom: 54/848
  46033. }
  46034. },
  46035. back: {
  46036. height: math.unit(5 + 5/12, "feet"),
  46037. weight: math.unit(160, "lb"),
  46038. name: "Back",
  46039. image: {
  46040. source: "./media/characters/spook/back.svg",
  46041. extra: 812/798,
  46042. bottom: 32/844
  46043. }
  46044. },
  46045. },
  46046. [
  46047. {
  46048. name: "Normal",
  46049. height: math.unit(5 + 5/12, "feet"),
  46050. default: true
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46056. {
  46057. front: {
  46058. height: math.unit(18, "feet"),
  46059. name: "Front",
  46060. image: {
  46061. source: "./media/characters/xeaduulix/front.svg",
  46062. extra: 1380/1166,
  46063. bottom: 110/1490
  46064. }
  46065. },
  46066. back: {
  46067. height: math.unit(18, "feet"),
  46068. name: "Back",
  46069. image: {
  46070. source: "./media/characters/xeaduulix/back.svg",
  46071. extra: 1592/1170,
  46072. bottom: 128/1720
  46073. }
  46074. },
  46075. frontNsfw: {
  46076. height: math.unit(18, "feet"),
  46077. name: "Front (NSFW)",
  46078. image: {
  46079. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46080. extra: 1380/1166,
  46081. bottom: 110/1490
  46082. }
  46083. },
  46084. backNsfw: {
  46085. height: math.unit(18, "feet"),
  46086. name: "Back (NSFW)",
  46087. image: {
  46088. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46089. extra: 1592/1170,
  46090. bottom: 128/1720
  46091. }
  46092. },
  46093. },
  46094. [
  46095. {
  46096. name: "Normal",
  46097. height: math.unit(18, "feet"),
  46098. default: true
  46099. },
  46100. ]
  46101. ))
  46102. characterMakers.push(() => makeCharacter(
  46103. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46104. {
  46105. spreadWings: {
  46106. height: math.unit(20, "feet"),
  46107. name: "Spread Wings",
  46108. image: {
  46109. source: "./media/characters/fledge/spread-wings.svg",
  46110. extra: 693/635,
  46111. bottom: 26/719
  46112. }
  46113. },
  46114. front: {
  46115. height: math.unit(20, "feet"),
  46116. name: "Front",
  46117. image: {
  46118. source: "./media/characters/fledge/front.svg",
  46119. extra: 684/637,
  46120. bottom: 18/702
  46121. }
  46122. },
  46123. frontAlt: {
  46124. height: math.unit(20, "feet"),
  46125. name: "Front (Alt)",
  46126. image: {
  46127. source: "./media/characters/fledge/front-alt.svg",
  46128. extra: 708/664,
  46129. bottom: 13/721
  46130. }
  46131. },
  46132. back: {
  46133. height: math.unit(20, "feet"),
  46134. name: "Back",
  46135. image: {
  46136. source: "./media/characters/fledge/back.svg",
  46137. extra: 718/634,
  46138. bottom: 22/740
  46139. }
  46140. },
  46141. head: {
  46142. height: math.unit(5.55, "feet"),
  46143. name: "Head",
  46144. image: {
  46145. source: "./media/characters/fledge/head.svg"
  46146. }
  46147. },
  46148. headAlt: {
  46149. height: math.unit(5.1, "feet"),
  46150. name: "Head (Alt)",
  46151. image: {
  46152. source: "./media/characters/fledge/head-alt.svg"
  46153. }
  46154. },
  46155. },
  46156. [
  46157. {
  46158. name: "Small",
  46159. height: math.unit(6 + 2/12, "feet")
  46160. },
  46161. {
  46162. name: "Big",
  46163. height: math.unit(20, "feet"),
  46164. default: true
  46165. },
  46166. {
  46167. name: "Giant",
  46168. height: math.unit(100, "feet")
  46169. },
  46170. {
  46171. name: "Macro",
  46172. height: math.unit(200, "feet")
  46173. },
  46174. ]
  46175. ))
  46176. characterMakers.push(() => makeCharacter(
  46177. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46178. {
  46179. front: {
  46180. height: math.unit(1, "meter"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/atlas-morenai/front.svg",
  46184. extra: 1275/1043,
  46185. bottom: 19/1294
  46186. }
  46187. },
  46188. back: {
  46189. height: math.unit(1, "meter"),
  46190. name: "Back",
  46191. image: {
  46192. source: "./media/characters/atlas-morenai/back.svg",
  46193. extra: 1141/1001,
  46194. bottom: 25/1166
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(1, "meter"),
  46202. default: true
  46203. },
  46204. {
  46205. name: "Magic-Infused",
  46206. height: math.unit(5, "meters")
  46207. },
  46208. ]
  46209. ))
  46210. characterMakers.push(() => makeCharacter(
  46211. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46212. {
  46213. front: {
  46214. height: math.unit(5, "meters"),
  46215. name: "Front",
  46216. image: {
  46217. source: "./media/characters/cintia/front.svg",
  46218. extra: 1312/1228,
  46219. bottom: 38/1350
  46220. }
  46221. },
  46222. back: {
  46223. height: math.unit(5, "meters"),
  46224. name: "Back",
  46225. image: {
  46226. source: "./media/characters/cintia/back.svg",
  46227. extra: 1260/1166,
  46228. bottom: 98/1358
  46229. }
  46230. },
  46231. frontDick: {
  46232. height: math.unit(5, "meters"),
  46233. name: "Front (Dick)",
  46234. image: {
  46235. source: "./media/characters/cintia/front-dick.svg",
  46236. extra: 1312/1228,
  46237. bottom: 38/1350
  46238. }
  46239. },
  46240. backDick: {
  46241. height: math.unit(5, "meters"),
  46242. name: "Back (Dick)",
  46243. image: {
  46244. source: "./media/characters/cintia/back-dick.svg",
  46245. extra: 1260/1166,
  46246. bottom: 98/1358
  46247. }
  46248. },
  46249. bust: {
  46250. height: math.unit(1.97, "meters"),
  46251. name: "Bust",
  46252. image: {
  46253. source: "./media/characters/cintia/bust.svg",
  46254. extra: 617/565,
  46255. bottom: 0/617
  46256. }
  46257. },
  46258. },
  46259. [
  46260. {
  46261. name: "Normal",
  46262. height: math.unit(5, "meters"),
  46263. default: true
  46264. },
  46265. ]
  46266. ))
  46267. characterMakers.push(() => makeCharacter(
  46268. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46269. {
  46270. side: {
  46271. height: math.unit(100, "feet"),
  46272. name: "Side",
  46273. image: {
  46274. source: "./media/characters/denora/side.svg",
  46275. extra: 875/803,
  46276. bottom: 9/884
  46277. }
  46278. },
  46279. },
  46280. [
  46281. {
  46282. name: "Standard",
  46283. height: math.unit(100, "feet"),
  46284. default: true
  46285. },
  46286. {
  46287. name: "Grand",
  46288. height: math.unit(1000, "feet")
  46289. },
  46290. {
  46291. name: "Conquering",
  46292. height: math.unit(10000, "feet")
  46293. },
  46294. ]
  46295. ))
  46296. characterMakers.push(() => makeCharacter(
  46297. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46298. {
  46299. dressed: {
  46300. height: math.unit(8 + 5/12, "feet"),
  46301. weight: math.unit(700, "lb"),
  46302. name: "Dressed",
  46303. image: {
  46304. source: "./media/characters/kiva/dressed.svg",
  46305. extra: 1102/1055,
  46306. bottom: 60/1162
  46307. }
  46308. },
  46309. nude: {
  46310. height: math.unit(8 + 5/12, "feet"),
  46311. weight: math.unit(700, "lb"),
  46312. name: "Nude",
  46313. image: {
  46314. source: "./media/characters/kiva/nude.svg",
  46315. extra: 1102/1055,
  46316. bottom: 60/1162
  46317. }
  46318. },
  46319. },
  46320. [
  46321. {
  46322. name: "Base Height",
  46323. height: math.unit(8 + 5/12, "feet"),
  46324. default: true
  46325. },
  46326. {
  46327. name: "Macro",
  46328. height: math.unit(100, "feet")
  46329. },
  46330. {
  46331. name: "Max",
  46332. height: math.unit(3280, "feet")
  46333. },
  46334. ]
  46335. ))
  46336. characterMakers.push(() => makeCharacter(
  46337. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46338. {
  46339. front: {
  46340. height: math.unit(6 + 8/12, "feet"),
  46341. weight: math.unit(250, "lb"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/ztragon/front.svg",
  46345. extra: 1825/1684,
  46346. bottom: 98/1923
  46347. }
  46348. },
  46349. },
  46350. [
  46351. {
  46352. name: "Normal",
  46353. height: math.unit(6 + 8/12, "feet"),
  46354. default: true
  46355. },
  46356. {
  46357. name: "Macro",
  46358. height: math.unit(80, "feet")
  46359. },
  46360. ]
  46361. ))
  46362. characterMakers.push(() => makeCharacter(
  46363. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46364. {
  46365. front: {
  46366. height: math.unit(10.4, "feet"),
  46367. weight: math.unit(2, "tons"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/yesenia/front.svg",
  46371. extra: 1479/1474,
  46372. bottom: 233/1712
  46373. }
  46374. },
  46375. },
  46376. [
  46377. {
  46378. name: "Normal",
  46379. height: math.unit(10.4, "feet"),
  46380. default: true
  46381. },
  46382. ]
  46383. ))
  46384. characterMakers.push(() => makeCharacter(
  46385. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46386. {
  46387. normal: {
  46388. height: math.unit(6 + 1/12, "feet"),
  46389. weight: math.unit(180, "lb"),
  46390. name: "Normal",
  46391. image: {
  46392. source: "./media/characters/leanne-lycheborne/normal.svg",
  46393. extra: 1748/1660,
  46394. bottom: 98/1846
  46395. }
  46396. },
  46397. were: {
  46398. height: math.unit(12, "feet"),
  46399. weight: math.unit(1600, "lb"),
  46400. name: "Were",
  46401. image: {
  46402. source: "./media/characters/leanne-lycheborne/were.svg",
  46403. extra: 1485/1432,
  46404. bottom: 66/1551
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Normal",
  46411. height: math.unit(6 + 1/12, "feet"),
  46412. default: true
  46413. },
  46414. ]
  46415. ))
  46416. characterMakers.push(() => makeCharacter(
  46417. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46418. {
  46419. side: {
  46420. height: math.unit(13, "feet"),
  46421. name: "Side",
  46422. image: {
  46423. source: "./media/characters/kira-tyler/side.svg",
  46424. extra: 693/393,
  46425. bottom: 58/751
  46426. }
  46427. },
  46428. },
  46429. [
  46430. {
  46431. name: "Normal",
  46432. height: math.unit(13, "feet"),
  46433. default: true
  46434. },
  46435. ]
  46436. ))
  46437. characterMakers.push(() => makeCharacter(
  46438. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46439. {
  46440. front: {
  46441. height: math.unit(10.3, "feet"),
  46442. weight: math.unit(150, "lb"),
  46443. name: "Front",
  46444. image: {
  46445. source: "./media/characters/blaze/front.svg",
  46446. extra: 1378/1286,
  46447. bottom: 172/1550
  46448. }
  46449. },
  46450. },
  46451. [
  46452. {
  46453. name: "Normal",
  46454. height: math.unit(10.3, "feet"),
  46455. default: true
  46456. },
  46457. ]
  46458. ))
  46459. characterMakers.push(() => makeCharacter(
  46460. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46461. {
  46462. side: {
  46463. height: math.unit(2, "meters"),
  46464. weight: math.unit(400, "kg"),
  46465. name: "Side",
  46466. image: {
  46467. source: "./media/characters/anu/side.svg",
  46468. extra: 506/394,
  46469. bottom: 18/524
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Humanoid",
  46476. height: math.unit(2, "meters")
  46477. },
  46478. {
  46479. name: "Normal",
  46480. height: math.unit(5, "meters"),
  46481. default: true
  46482. },
  46483. ]
  46484. ))
  46485. characterMakers.push(() => makeCharacter(
  46486. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46487. {
  46488. front: {
  46489. height: math.unit(5 + 5/12, "feet"),
  46490. weight: math.unit(170, "lb"),
  46491. name: "Front",
  46492. image: {
  46493. source: "./media/characters/synx-the-lynx/front.svg",
  46494. extra: 1893/1745,
  46495. bottom: 17/1910
  46496. }
  46497. },
  46498. side: {
  46499. height: math.unit(5 + 5/12, "feet"),
  46500. weight: math.unit(170, "lb"),
  46501. name: "Side",
  46502. image: {
  46503. source: "./media/characters/synx-the-lynx/side.svg",
  46504. extra: 1884/1740,
  46505. bottom: 39/1923
  46506. }
  46507. },
  46508. back: {
  46509. height: math.unit(5 + 5/12, "feet"),
  46510. weight: math.unit(170, "lb"),
  46511. name: "Back",
  46512. image: {
  46513. source: "./media/characters/synx-the-lynx/back.svg",
  46514. extra: 1903/1755,
  46515. bottom: 14/1917
  46516. }
  46517. },
  46518. },
  46519. [
  46520. {
  46521. name: "Normal",
  46522. height: math.unit(5 + 5/12, "feet"),
  46523. default: true
  46524. },
  46525. ]
  46526. ))
  46527. characterMakers.push(() => makeCharacter(
  46528. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46529. {
  46530. back: {
  46531. height: math.unit(15, "feet"),
  46532. name: "Back",
  46533. image: {
  46534. source: "./media/characters/nadezda-fex/back.svg",
  46535. extra: 1695/1481,
  46536. bottom: 25/1720
  46537. }
  46538. },
  46539. },
  46540. [
  46541. {
  46542. name: "Normal",
  46543. height: math.unit(15, "feet"),
  46544. default: true
  46545. },
  46546. {
  46547. name: "Macro",
  46548. height: math.unit(2.5, "miles")
  46549. },
  46550. {
  46551. name: "Goddess",
  46552. height: math.unit(2, "multiverses")
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(216, "cm"),
  46561. name: "Front",
  46562. image: {
  46563. source: "./media/characters/lev/front.svg",
  46564. extra: 1728/1670,
  46565. bottom: 82/1810
  46566. }
  46567. },
  46568. back: {
  46569. height: math.unit(216, "cm"),
  46570. name: "Back",
  46571. image: {
  46572. source: "./media/characters/lev/back.svg",
  46573. extra: 1738/1675,
  46574. bottom: 24/1762
  46575. }
  46576. },
  46577. dressed: {
  46578. height: math.unit(216, "cm"),
  46579. name: "Dressed",
  46580. image: {
  46581. source: "./media/characters/lev/dressed.svg",
  46582. extra: 1397/1351,
  46583. bottom: 73/1470
  46584. }
  46585. },
  46586. head: {
  46587. height: math.unit(0.51, "meter"),
  46588. name: "Head",
  46589. image: {
  46590. source: "./media/characters/lev/head.svg"
  46591. }
  46592. },
  46593. },
  46594. [
  46595. {
  46596. name: "Normal",
  46597. height: math.unit(216, "cm"),
  46598. default: true
  46599. },
  46600. {
  46601. name: "Relatively Macro",
  46602. height: math.unit(80, "meters")
  46603. },
  46604. {
  46605. name: "Megamacro",
  46606. height: math.unit(21600, "meters")
  46607. },
  46608. {
  46609. name: "Megamacro+",
  46610. height: math.unit(64800, "meters")
  46611. },
  46612. ]
  46613. ))
  46614. characterMakers.push(() => makeCharacter(
  46615. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  46616. {
  46617. front: {
  46618. height: math.unit(2, "meters"),
  46619. weight: math.unit(80, "kg"),
  46620. name: "Front",
  46621. image: {
  46622. source: "./media/characters/moka/front.svg",
  46623. extra: 1337/1255,
  46624. bottom: 58/1395
  46625. }
  46626. },
  46627. },
  46628. [
  46629. {
  46630. name: "Micro",
  46631. height: math.unit(15, "cm")
  46632. },
  46633. {
  46634. name: "Normal",
  46635. height: math.unit(2, "meters"),
  46636. default: true
  46637. },
  46638. {
  46639. name: "Macro",
  46640. height: math.unit(20, "meters"),
  46641. },
  46642. ]
  46643. ))
  46644. characterMakers.push(() => makeCharacter(
  46645. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  46646. {
  46647. front: {
  46648. height: math.unit(9, "feet"),
  46649. weight: math.unit(240, "lb"),
  46650. name: "Front",
  46651. image: {
  46652. source: "./media/characters/kuzco/front.svg",
  46653. extra: 1593/1487,
  46654. bottom: 32/1625
  46655. }
  46656. },
  46657. side: {
  46658. height: math.unit(9, "feet"),
  46659. weight: math.unit(240, "lb"),
  46660. name: "Side",
  46661. image: {
  46662. source: "./media/characters/kuzco/side.svg",
  46663. extra: 1575/1485,
  46664. bottom: 30/1605
  46665. }
  46666. },
  46667. back: {
  46668. height: math.unit(9, "feet"),
  46669. weight: math.unit(240, "lb"),
  46670. name: "Back",
  46671. image: {
  46672. source: "./media/characters/kuzco/back.svg",
  46673. extra: 1603/1514,
  46674. bottom: 14/1617
  46675. }
  46676. },
  46677. },
  46678. [
  46679. {
  46680. name: "Normal",
  46681. height: math.unit(9, "feet"),
  46682. default: true
  46683. },
  46684. ]
  46685. ))
  46686. characterMakers.push(() => makeCharacter(
  46687. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46688. {
  46689. side: {
  46690. height: math.unit(2, "meters"),
  46691. weight: math.unit(300, "kg"),
  46692. name: "Side",
  46693. image: {
  46694. source: "./media/characters/ceruleus/side.svg",
  46695. extra: 1068/974,
  46696. bottom: 126/1194
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(16, "meters"),
  46704. default: true
  46705. },
  46706. ]
  46707. ))
  46708. characterMakers.push(() => makeCharacter(
  46709. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46710. {
  46711. front: {
  46712. height: math.unit(9, "feet"),
  46713. weight: math.unit(500, "kg"),
  46714. name: "Front",
  46715. image: {
  46716. source: "./media/characters/acouya/front.svg",
  46717. extra: 1660/1473,
  46718. bottom: 28/1688
  46719. }
  46720. },
  46721. },
  46722. [
  46723. {
  46724. name: "Normal",
  46725. height: math.unit(9, "feet"),
  46726. default: true
  46727. },
  46728. ]
  46729. ))
  46730. characterMakers.push(() => makeCharacter(
  46731. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46732. {
  46733. front: {
  46734. height: math.unit(5 + 6/12, "feet"),
  46735. weight: math.unit(195, "lb"),
  46736. name: "Front",
  46737. image: {
  46738. source: "./media/characters/vant/front.svg",
  46739. extra: 1396/1320,
  46740. bottom: 20/1416
  46741. }
  46742. },
  46743. back: {
  46744. height: math.unit(5 + 6/12, "feet"),
  46745. weight: math.unit(195, "lb"),
  46746. name: "Back",
  46747. image: {
  46748. source: "./media/characters/vant/back.svg",
  46749. extra: 1396/1320,
  46750. bottom: 20/1416
  46751. }
  46752. },
  46753. maw: {
  46754. height: math.unit(0.75, "feet"),
  46755. name: "Maw",
  46756. image: {
  46757. source: "./media/characters/vant/maw.svg"
  46758. }
  46759. },
  46760. paw: {
  46761. height: math.unit(1.07, "feet"),
  46762. name: "Paw",
  46763. image: {
  46764. source: "./media/characters/vant/paw.svg"
  46765. }
  46766. },
  46767. },
  46768. [
  46769. {
  46770. name: "Micro",
  46771. height: math.unit(0.25, "inches")
  46772. },
  46773. {
  46774. name: "Normal",
  46775. height: math.unit(5 + 6/12, "feet"),
  46776. default: true
  46777. },
  46778. {
  46779. name: "Macro",
  46780. height: math.unit(75, "feet")
  46781. },
  46782. ]
  46783. ))
  46784. characterMakers.push(() => makeCharacter(
  46785. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46786. {
  46787. front: {
  46788. height: math.unit(30, "meters"),
  46789. weight: math.unit(363, "tons"),
  46790. name: "Front",
  46791. image: {
  46792. source: "./media/characters/ahra/front.svg",
  46793. extra: 1914/1814,
  46794. bottom: 46/1960
  46795. }
  46796. },
  46797. },
  46798. [
  46799. {
  46800. name: "Macro",
  46801. height: math.unit(30, "meters"),
  46802. default: true
  46803. },
  46804. ]
  46805. ))
  46806. characterMakers.push(() => makeCharacter(
  46807. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46808. {
  46809. undressed: {
  46810. height: math.unit(2, "m"),
  46811. weight: math.unit(250, "kg"),
  46812. name: "Undressed",
  46813. image: {
  46814. source: "./media/characters/coriander/undressed.svg",
  46815. extra: 1757/1606,
  46816. bottom: 107/1864
  46817. }
  46818. },
  46819. dressed: {
  46820. height: math.unit(2, "m"),
  46821. weight: math.unit(250, "kg"),
  46822. name: "Dressed",
  46823. image: {
  46824. source: "./media/characters/coriander/dressed.svg",
  46825. extra: 1757/1606,
  46826. bottom: 107/1864
  46827. }
  46828. },
  46829. },
  46830. [
  46831. {
  46832. name: "Normal",
  46833. height: math.unit(4, "meters"),
  46834. default: true
  46835. },
  46836. {
  46837. name: "XL",
  46838. height: math.unit(6, "meters")
  46839. },
  46840. {
  46841. name: "XXL",
  46842. height: math.unit(8, "meters")
  46843. },
  46844. ]
  46845. ))
  46846. characterMakers.push(() => makeCharacter(
  46847. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46848. {
  46849. front: {
  46850. height: math.unit(6, "feet"),
  46851. name: "Front",
  46852. image: {
  46853. source: "./media/characters/syrinx/front.svg",
  46854. extra: 1557/1259,
  46855. bottom: 171/1728
  46856. }
  46857. },
  46858. },
  46859. [
  46860. {
  46861. name: "Normal",
  46862. height: math.unit(6 + 3/12, "feet"),
  46863. default: true
  46864. },
  46865. ]
  46866. ))
  46867. characterMakers.push(() => makeCharacter(
  46868. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46869. {
  46870. front: {
  46871. height: math.unit(11 + 6/12, "feet"),
  46872. weight: math.unit(1.5, "tons"),
  46873. name: "Front",
  46874. image: {
  46875. source: "./media/characters/bor/front.svg",
  46876. extra: 1189/1109,
  46877. bottom: 170/1359
  46878. }
  46879. },
  46880. },
  46881. [
  46882. {
  46883. name: "Normal",
  46884. height: math.unit(11 + 6/12, "feet"),
  46885. default: true
  46886. },
  46887. {
  46888. name: "Macro",
  46889. height: math.unit(32 + 9/12, "feet")
  46890. },
  46891. ]
  46892. ))
  46893. characterMakers.push(() => makeCharacter(
  46894. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46895. {
  46896. anthro: {
  46897. height: math.unit(9, "feet"),
  46898. weight: math.unit(2076, "lb"),
  46899. name: "Anthro",
  46900. image: {
  46901. source: "./media/characters/abacus/anthro.svg",
  46902. extra: 1540/1494,
  46903. bottom: 233/1773
  46904. }
  46905. },
  46906. pigeon: {
  46907. height: math.unit(1, "feet"),
  46908. name: "Pigeon",
  46909. image: {
  46910. source: "./media/characters/abacus/pigeon.svg",
  46911. extra: 528/525,
  46912. bottom: 46/574
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(9, "feet"),
  46920. default: true
  46921. },
  46922. ]
  46923. ))
  46924. characterMakers.push(() => makeCharacter(
  46925. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46926. {
  46927. side: {
  46928. height: math.unit(6, "feet"),
  46929. name: "Side",
  46930. image: {
  46931. source: "./media/characters/delkhan/side.svg",
  46932. extra: 1884/1786,
  46933. bottom: 308/2192
  46934. }
  46935. },
  46936. head: {
  46937. height: math.unit(3.38, "feet"),
  46938. name: "Head",
  46939. image: {
  46940. source: "./media/characters/delkhan/head.svg"
  46941. }
  46942. },
  46943. },
  46944. [
  46945. {
  46946. name: "Normal",
  46947. height: math.unit(72, "feet"),
  46948. default: true
  46949. },
  46950. {
  46951. name: "Giant",
  46952. height: math.unit(172, "feet")
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46958. {
  46959. standing: {
  46960. height: math.unit(6, "feet"),
  46961. name: "Standing",
  46962. image: {
  46963. source: "./media/characters/euchidat/standing.svg",
  46964. extra: 1612/1553,
  46965. bottom: 116/1728
  46966. }
  46967. },
  46968. leaning: {
  46969. height: math.unit(6, "feet"),
  46970. name: "Leaning",
  46971. image: {
  46972. source: "./media/characters/euchidat/leaning.svg",
  46973. extra: 1719/1674,
  46974. bottom: 27/1746
  46975. }
  46976. },
  46977. },
  46978. [
  46979. {
  46980. name: "Normal",
  46981. height: math.unit(175, "feet"),
  46982. default: true
  46983. },
  46984. {
  46985. name: "Megamacro",
  46986. height: math.unit(190, "miles")
  46987. },
  46988. {
  46989. name: "Gigamacro",
  46990. height: math.unit(190000, "miles")
  46991. },
  46992. ]
  46993. ))
  46994. characterMakers.push(() => makeCharacter(
  46995. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46996. {
  46997. front: {
  46998. height: math.unit(6, "feet"),
  46999. weight: math.unit(150, "lb"),
  47000. name: "Front",
  47001. image: {
  47002. source: "./media/characters/rebecca-stack/front.svg",
  47003. extra: 1256/1201,
  47004. bottom: 18/1274
  47005. }
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Normal",
  47011. height: math.unit(5 + 8/12, "feet"),
  47012. default: true
  47013. },
  47014. {
  47015. name: "Demolitionist",
  47016. height: math.unit(200, "feet")
  47017. },
  47018. {
  47019. name: "Out of Control",
  47020. height: math.unit(2, "miles")
  47021. },
  47022. {
  47023. name: "Giga",
  47024. height: math.unit(7200, "miles")
  47025. },
  47026. ]
  47027. ))
  47028. characterMakers.push(() => makeCharacter(
  47029. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47030. {
  47031. front: {
  47032. height: math.unit(6, "feet"),
  47033. weight: math.unit(150, "lb"),
  47034. name: "Front",
  47035. image: {
  47036. source: "./media/characters/jenny-cartwright/front.svg",
  47037. extra: 1384/1376,
  47038. bottom: 58/1442
  47039. }
  47040. },
  47041. },
  47042. [
  47043. {
  47044. name: "Normal",
  47045. height: math.unit(6 + 7/12, "feet"),
  47046. default: true
  47047. },
  47048. {
  47049. name: "Librarian",
  47050. height: math.unit(55, "feet")
  47051. },
  47052. {
  47053. name: "Sightseer",
  47054. height: math.unit(50, "miles")
  47055. },
  47056. {
  47057. name: "Giga",
  47058. height: math.unit(30000, "miles")
  47059. },
  47060. ]
  47061. ))
  47062. characterMakers.push(() => makeCharacter(
  47063. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47064. {
  47065. nude: {
  47066. height: math.unit(8, "feet"),
  47067. weight: math.unit(225, "lb"),
  47068. name: "Nude",
  47069. image: {
  47070. source: "./media/characters/marvy/nude.svg",
  47071. extra: 1900/1683,
  47072. bottom: 89/1989
  47073. }
  47074. },
  47075. dressed: {
  47076. height: math.unit(8, "feet"),
  47077. weight: math.unit(225, "lb"),
  47078. name: "Dressed",
  47079. image: {
  47080. source: "./media/characters/marvy/dressed.svg",
  47081. extra: 1900/1683,
  47082. bottom: 89/1989
  47083. }
  47084. },
  47085. head: {
  47086. height: math.unit(2.85, "feet"),
  47087. name: "Head",
  47088. image: {
  47089. source: "./media/characters/marvy/head.svg"
  47090. }
  47091. },
  47092. },
  47093. [
  47094. {
  47095. name: "Normal",
  47096. height: math.unit(8, "feet"),
  47097. default: true
  47098. },
  47099. ]
  47100. ))
  47101. characterMakers.push(() => makeCharacter(
  47102. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47103. {
  47104. front: {
  47105. height: math.unit(8, "feet"),
  47106. weight: math.unit(250, "lb"),
  47107. name: "Front",
  47108. image: {
  47109. source: "./media/characters/leah/front.svg",
  47110. extra: 1257/1149,
  47111. bottom: 109/1366
  47112. }
  47113. },
  47114. },
  47115. [
  47116. {
  47117. name: "Normal",
  47118. height: math.unit(8, "feet"),
  47119. default: true
  47120. },
  47121. {
  47122. name: "Minimacro",
  47123. height: math.unit(40, "feet")
  47124. },
  47125. {
  47126. name: "Macro",
  47127. height: math.unit(124, "feet")
  47128. },
  47129. {
  47130. name: "Megamacro",
  47131. height: math.unit(850, "feet")
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47137. {
  47138. side: {
  47139. height: math.unit(13 + 6/12, "feet"),
  47140. weight: math.unit(3200, "lb"),
  47141. name: "Side",
  47142. image: {
  47143. source: "./media/characters/alvir/side.svg",
  47144. extra: 896/589,
  47145. bottom: 26/922
  47146. }
  47147. },
  47148. },
  47149. [
  47150. {
  47151. name: "Normal",
  47152. height: math.unit(13 + 6/12, "feet"),
  47153. default: true
  47154. },
  47155. ]
  47156. ))
  47157. characterMakers.push(() => makeCharacter(
  47158. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47159. {
  47160. front: {
  47161. height: math.unit(5 + 4/12, "feet"),
  47162. weight: math.unit(236, "lb"),
  47163. name: "Front",
  47164. image: {
  47165. source: "./media/characters/zaina-khalil/front.svg",
  47166. extra: 1533/1485,
  47167. bottom: 94/1627
  47168. }
  47169. },
  47170. side: {
  47171. height: math.unit(5 + 4/12, "feet"),
  47172. weight: math.unit(236, "lb"),
  47173. name: "Side",
  47174. image: {
  47175. source: "./media/characters/zaina-khalil/side.svg",
  47176. extra: 1537/1498,
  47177. bottom: 66/1603
  47178. }
  47179. },
  47180. back: {
  47181. height: math.unit(5 + 4/12, "feet"),
  47182. weight: math.unit(236, "lb"),
  47183. name: "Back",
  47184. image: {
  47185. source: "./media/characters/zaina-khalil/back.svg",
  47186. extra: 1546/1494,
  47187. bottom: 89/1635
  47188. }
  47189. },
  47190. },
  47191. [
  47192. {
  47193. name: "Normal",
  47194. height: math.unit(5 + 4/12, "feet"),
  47195. default: true
  47196. },
  47197. ]
  47198. ))
  47199. characterMakers.push(() => makeCharacter(
  47200. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47201. {
  47202. side: {
  47203. height: math.unit(12, "feet"),
  47204. weight: math.unit(4000, "lb"),
  47205. name: "Side",
  47206. image: {
  47207. source: "./media/characters/terry/side.svg",
  47208. extra: 1518/1439,
  47209. bottom: 149/1667
  47210. }
  47211. },
  47212. },
  47213. [
  47214. {
  47215. name: "Normal",
  47216. height: math.unit(12, "feet"),
  47217. default: true
  47218. },
  47219. ]
  47220. ))
  47221. characterMakers.push(() => makeCharacter(
  47222. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47223. {
  47224. front: {
  47225. height: math.unit(12, "feet"),
  47226. weight: math.unit(1500, "lb"),
  47227. name: "Front",
  47228. image: {
  47229. source: "./media/characters/kahea/front.svg",
  47230. extra: 1722/1617,
  47231. bottom: 179/1901
  47232. }
  47233. },
  47234. },
  47235. [
  47236. {
  47237. name: "Normal",
  47238. height: math.unit(12, "feet"),
  47239. default: true
  47240. },
  47241. ]
  47242. ))
  47243. characterMakers.push(() => makeCharacter(
  47244. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47245. {
  47246. demonFront: {
  47247. height: math.unit(36, "feet"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/alex-xuria/demon-front.svg",
  47251. extra: 1705/1673,
  47252. bottom: 198/1903
  47253. },
  47254. form: "demon",
  47255. default: true
  47256. },
  47257. demonBack: {
  47258. height: math.unit(36, "feet"),
  47259. name: "Back",
  47260. image: {
  47261. source: "./media/characters/alex-xuria/demon-back.svg",
  47262. extra: 1725/1693,
  47263. bottom: 70/1795
  47264. },
  47265. form: "demon"
  47266. },
  47267. demonHead: {
  47268. height: math.unit(2.14, "meters"),
  47269. name: "Head",
  47270. image: {
  47271. source: "./media/characters/alex-xuria/demon-head.svg"
  47272. },
  47273. form: "demon"
  47274. },
  47275. demonHand: {
  47276. height: math.unit(1.61, "meters"),
  47277. name: "Hand",
  47278. image: {
  47279. source: "./media/characters/alex-xuria/demon-hand.svg"
  47280. },
  47281. form: "demon"
  47282. },
  47283. demonPaw: {
  47284. height: math.unit(1.35, "meters"),
  47285. name: "Paw",
  47286. image: {
  47287. source: "./media/characters/alex-xuria/demon-paw.svg"
  47288. },
  47289. form: "demon"
  47290. },
  47291. demonFoot: {
  47292. height: math.unit(2.2, "meters"),
  47293. name: "Foot",
  47294. image: {
  47295. source: "./media/characters/alex-xuria/demon-foot.svg"
  47296. },
  47297. form: "demon"
  47298. },
  47299. demonCock: {
  47300. height: math.unit(1.74, "meters"),
  47301. name: "Cock",
  47302. image: {
  47303. source: "./media/characters/alex-xuria/demon-cock.svg"
  47304. },
  47305. form: "demon"
  47306. },
  47307. demonTailClosed: {
  47308. height: math.unit(1.47, "meters"),
  47309. name: "Tail (Closed)",
  47310. image: {
  47311. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47312. },
  47313. form: "demon"
  47314. },
  47315. demonTailOpen: {
  47316. height: math.unit(2.85, "meters"),
  47317. name: "Tail (Open)",
  47318. image: {
  47319. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47320. },
  47321. form: "demon"
  47322. },
  47323. incubusFront: {
  47324. height: math.unit(12, "feet"),
  47325. name: "Front",
  47326. image: {
  47327. source: "./media/characters/alex-xuria/incubus-front.svg",
  47328. extra: 1754/1677,
  47329. bottom: 125/1879
  47330. },
  47331. form: "incubus",
  47332. default: true
  47333. },
  47334. incubusBack: {
  47335. height: math.unit(12, "feet"),
  47336. name: "Back",
  47337. image: {
  47338. source: "./media/characters/alex-xuria/incubus-back.svg",
  47339. extra: 1702/1647,
  47340. bottom: 30/1732
  47341. },
  47342. form: "incubus"
  47343. },
  47344. incubusHead: {
  47345. height: math.unit(3.45, "feet"),
  47346. name: "Head",
  47347. image: {
  47348. source: "./media/characters/alex-xuria/incubus-head.svg"
  47349. },
  47350. form: "incubus"
  47351. },
  47352. rabbitFront: {
  47353. height: math.unit(6, "feet"),
  47354. name: "Front",
  47355. image: {
  47356. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47357. extra: 1369/1349,
  47358. bottom: 45/1414
  47359. },
  47360. form: "rabbit",
  47361. default: true
  47362. },
  47363. rabbitSide: {
  47364. height: math.unit(6, "feet"),
  47365. name: "Side",
  47366. image: {
  47367. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47368. extra: 1370/1356,
  47369. bottom: 37/1407
  47370. },
  47371. form: "rabbit"
  47372. },
  47373. rabbitBack: {
  47374. height: math.unit(6, "feet"),
  47375. name: "Back",
  47376. image: {
  47377. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47378. extra: 1375/1358,
  47379. bottom: 43/1418
  47380. },
  47381. form: "rabbit"
  47382. },
  47383. },
  47384. [
  47385. {
  47386. name: "Normal",
  47387. height: math.unit(6, "feet"),
  47388. default: true,
  47389. form: "rabbit"
  47390. },
  47391. {
  47392. name: "Incubus",
  47393. height: math.unit(12, "feet"),
  47394. default: true,
  47395. form: "incubus"
  47396. },
  47397. {
  47398. name: "Demon",
  47399. height: math.unit(36, "feet"),
  47400. default: true,
  47401. form: "demon"
  47402. }
  47403. ],
  47404. {
  47405. "demon": {
  47406. name: "Demon",
  47407. default: true
  47408. },
  47409. "incubus": {
  47410. name: "Incubus",
  47411. },
  47412. "rabbit": {
  47413. name: "Rabbit"
  47414. }
  47415. }
  47416. ))
  47417. characterMakers.push(() => makeCharacter(
  47418. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47419. {
  47420. front: {
  47421. height: math.unit(7 + 5/12, "feet"),
  47422. weight: math.unit(510, "lb"),
  47423. name: "Front",
  47424. image: {
  47425. source: "./media/characters/syrup/front.svg",
  47426. extra: 932/916,
  47427. bottom: 26/958
  47428. }
  47429. },
  47430. },
  47431. [
  47432. {
  47433. name: "Normal",
  47434. height: math.unit(7 + 5/12, "feet"),
  47435. default: true
  47436. },
  47437. {
  47438. name: "Big",
  47439. height: math.unit(50, "feet")
  47440. },
  47441. {
  47442. name: "Macro",
  47443. height: math.unit(300, "feet")
  47444. },
  47445. {
  47446. name: "Megamacro",
  47447. height: math.unit(1, "mile")
  47448. },
  47449. ]
  47450. ))
  47451. characterMakers.push(() => makeCharacter(
  47452. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47453. {
  47454. front: {
  47455. height: math.unit(6 + 9/12, "feet"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/zeimne/front.svg",
  47459. extra: 1969/1806,
  47460. bottom: 53/2022
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Normal",
  47467. height: math.unit(6 + 9/12, "feet"),
  47468. default: true
  47469. },
  47470. {
  47471. name: "Giant",
  47472. height: math.unit(550, "feet")
  47473. },
  47474. {
  47475. name: "Mega",
  47476. height: math.unit(3, "miles")
  47477. },
  47478. {
  47479. name: "Giga",
  47480. height: math.unit(250, "miles")
  47481. },
  47482. {
  47483. name: "Tera",
  47484. height: math.unit(1, "AU")
  47485. },
  47486. ]
  47487. ))
  47488. characterMakers.push(() => makeCharacter(
  47489. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47490. {
  47491. front: {
  47492. height: math.unit(5 + 2/12, "feet"),
  47493. name: "Front",
  47494. image: {
  47495. source: "./media/characters/grar/front.svg",
  47496. extra: 1331/1119,
  47497. bottom: 60/1391
  47498. }
  47499. },
  47500. back: {
  47501. height: math.unit(5 + 2/12, "feet"),
  47502. name: "Back",
  47503. image: {
  47504. source: "./media/characters/grar/back.svg",
  47505. extra: 1385/1169,
  47506. bottom: 23/1408
  47507. }
  47508. },
  47509. },
  47510. [
  47511. {
  47512. name: "Normal",
  47513. height: math.unit(5 + 2/12, "feet"),
  47514. default: true
  47515. },
  47516. ]
  47517. ))
  47518. characterMakers.push(() => makeCharacter(
  47519. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47520. {
  47521. front: {
  47522. height: math.unit(13 + 7/12, "feet"),
  47523. weight: math.unit(2200, "lb"),
  47524. name: "Front",
  47525. image: {
  47526. source: "./media/characters/endraya/front.svg",
  47527. extra: 1289/1215,
  47528. bottom: 50/1339
  47529. }
  47530. },
  47531. nude: {
  47532. height: math.unit(13 + 7/12, "feet"),
  47533. weight: math.unit(2200, "lb"),
  47534. name: "Nude",
  47535. image: {
  47536. source: "./media/characters/endraya/nude.svg",
  47537. extra: 1247/1171,
  47538. bottom: 40/1287
  47539. }
  47540. },
  47541. head: {
  47542. height: math.unit(2.6, "feet"),
  47543. name: "Head",
  47544. image: {
  47545. source: "./media/characters/endraya/head.svg"
  47546. }
  47547. },
  47548. slit: {
  47549. height: math.unit(3.4, "feet"),
  47550. name: "Slit",
  47551. image: {
  47552. source: "./media/characters/endraya/slit.svg"
  47553. }
  47554. },
  47555. },
  47556. [
  47557. {
  47558. name: "Normal",
  47559. height: math.unit(13 + 7/12, "feet"),
  47560. default: true
  47561. },
  47562. {
  47563. name: "Macro",
  47564. height: math.unit(200, "feet")
  47565. },
  47566. ]
  47567. ))
  47568. characterMakers.push(() => makeCharacter(
  47569. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  47570. {
  47571. front: {
  47572. height: math.unit(1.81, "meters"),
  47573. weight: math.unit(69, "kg"),
  47574. name: "Front",
  47575. image: {
  47576. source: "./media/characters/rodryana/front.svg",
  47577. extra: 2002/1921,
  47578. bottom: 53/2055
  47579. }
  47580. },
  47581. back: {
  47582. height: math.unit(1.81, "meters"),
  47583. weight: math.unit(69, "kg"),
  47584. name: "Back",
  47585. image: {
  47586. source: "./media/characters/rodryana/back.svg",
  47587. extra: 1993/1926,
  47588. bottom: 48/2041
  47589. }
  47590. },
  47591. maw: {
  47592. height: math.unit(0.19769417475, "meters"),
  47593. name: "Maw",
  47594. image: {
  47595. source: "./media/characters/rodryana/maw.svg"
  47596. }
  47597. },
  47598. slit: {
  47599. height: math.unit(0.31631067961, "meters"),
  47600. name: "Slit",
  47601. image: {
  47602. source: "./media/characters/rodryana/slit.svg"
  47603. }
  47604. },
  47605. },
  47606. [
  47607. {
  47608. name: "Normal",
  47609. height: math.unit(1.81, "meters")
  47610. },
  47611. {
  47612. name: "Mini Macro",
  47613. height: math.unit(181, "meters")
  47614. },
  47615. {
  47616. name: "Macro",
  47617. height: math.unit(452, "meters"),
  47618. default: true
  47619. },
  47620. {
  47621. name: "Mega Macro",
  47622. height: math.unit(1.375, "km")
  47623. },
  47624. {
  47625. name: "Giga Macro",
  47626. height: math.unit(13.575, "km")
  47627. },
  47628. ]
  47629. ))
  47630. characterMakers.push(() => makeCharacter(
  47631. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  47632. {
  47633. front: {
  47634. height: math.unit(6, "feet"),
  47635. weight: math.unit(1000, "lb"),
  47636. name: "Front",
  47637. image: {
  47638. source: "./media/characters/asaya/front.svg",
  47639. extra: 1460/1200,
  47640. bottom: 71/1531
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Normal",
  47647. height: math.unit(8, "km"),
  47648. default: true
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  47654. {
  47655. front: {
  47656. height: math.unit(3.5, "meters"),
  47657. name: "Front",
  47658. image: {
  47659. source: "./media/characters/sarzu-and-israz/front.svg",
  47660. extra: 1570/1558,
  47661. bottom: 150/1720
  47662. },
  47663. },
  47664. back: {
  47665. height: math.unit(3.5, "meters"),
  47666. name: "Back",
  47667. image: {
  47668. source: "./media/characters/sarzu-and-israz/back.svg",
  47669. extra: 1523/1509,
  47670. bottom: 132/1655
  47671. },
  47672. },
  47673. frontFemale: {
  47674. height: math.unit(3.5, "meters"),
  47675. name: "Front (Female)",
  47676. image: {
  47677. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47678. extra: 1570/1558,
  47679. bottom: 150/1720
  47680. },
  47681. },
  47682. frontHerm: {
  47683. height: math.unit(3.5, "meters"),
  47684. name: "Front (Herm)",
  47685. image: {
  47686. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47687. extra: 1570/1558,
  47688. bottom: 150/1720
  47689. },
  47690. },
  47691. },
  47692. [
  47693. {
  47694. name: "Normal",
  47695. height: math.unit(3.5, "meters"),
  47696. default: true,
  47697. },
  47698. {
  47699. name: "Macro",
  47700. height: math.unit(65.5, "meters"),
  47701. },
  47702. ],
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47706. {
  47707. front: {
  47708. height: math.unit(6, "feet"),
  47709. weight: math.unit(250, "lb"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/zenimma/front.svg",
  47713. extra: 1346/1320,
  47714. bottom: 58/1404
  47715. }
  47716. },
  47717. back: {
  47718. height: math.unit(6, "feet"),
  47719. weight: math.unit(250, "lb"),
  47720. name: "Back",
  47721. image: {
  47722. source: "./media/characters/zenimma/back.svg",
  47723. extra: 1324/1308,
  47724. bottom: 44/1368
  47725. }
  47726. },
  47727. dick: {
  47728. height: math.unit(1.44, "feet"),
  47729. name: "Dick",
  47730. image: {
  47731. source: "./media/characters/zenimma/dick.svg"
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Canon Height",
  47738. height: math.unit(66, "miles"),
  47739. default: true
  47740. },
  47741. ]
  47742. ))
  47743. characterMakers.push(() => makeCharacter(
  47744. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47745. {
  47746. nude: {
  47747. height: math.unit(6, "feet"),
  47748. weight: math.unit(150, "lb"),
  47749. name: "Nude",
  47750. image: {
  47751. source: "./media/characters/shavon/nude.svg",
  47752. extra: 1242/1096,
  47753. bottom: 98/1340
  47754. }
  47755. },
  47756. dressed: {
  47757. height: math.unit(6, "feet"),
  47758. weight: math.unit(150, "lb"),
  47759. name: "Dressed",
  47760. image: {
  47761. source: "./media/characters/shavon/dressed.svg",
  47762. extra: 1242/1096,
  47763. bottom: 98/1340
  47764. }
  47765. },
  47766. },
  47767. [
  47768. {
  47769. name: "Macro",
  47770. height: math.unit(255, "feet"),
  47771. default: true
  47772. },
  47773. ]
  47774. ))
  47775. characterMakers.push(() => makeCharacter(
  47776. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47777. {
  47778. front: {
  47779. height: math.unit(6, "feet"),
  47780. name: "Front",
  47781. image: {
  47782. source: "./media/characters/steph/front.svg",
  47783. extra: 1430/1330,
  47784. bottom: 54/1484
  47785. }
  47786. },
  47787. },
  47788. [
  47789. {
  47790. name: "Normal",
  47791. height: math.unit(6, "feet"),
  47792. default: true
  47793. },
  47794. ]
  47795. ))
  47796. characterMakers.push(() => makeCharacter(
  47797. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47798. {
  47799. front: {
  47800. height: math.unit(9, "feet"),
  47801. weight: math.unit(400, "lb"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/kil'aman/front.svg",
  47805. extra: 1210/1159,
  47806. bottom: 109/1319
  47807. }
  47808. },
  47809. head: {
  47810. height: math.unit(2.14, "feet"),
  47811. name: "Head",
  47812. image: {
  47813. source: "./media/characters/kil'aman/head.svg"
  47814. }
  47815. },
  47816. maw: {
  47817. height: math.unit(1.21, "feet"),
  47818. name: "Maw",
  47819. image: {
  47820. source: "./media/characters/kil'aman/maw.svg"
  47821. }
  47822. },
  47823. foot: {
  47824. height: math.unit(1.7, "feet"),
  47825. name: "Foot",
  47826. image: {
  47827. source: "./media/characters/kil'aman/foot.svg"
  47828. }
  47829. },
  47830. dick: {
  47831. height: math.unit(2.1, "feet"),
  47832. name: "Dick",
  47833. image: {
  47834. source: "./media/characters/kil'aman/dick.svg"
  47835. }
  47836. },
  47837. },
  47838. [
  47839. {
  47840. name: "Normal",
  47841. height: math.unit(9, "feet")
  47842. },
  47843. {
  47844. name: "Canon Height",
  47845. height: math.unit(10, "miles"),
  47846. default: true
  47847. },
  47848. {
  47849. name: "Maximum",
  47850. height: math.unit(6e9, "miles")
  47851. },
  47852. ]
  47853. ))
  47854. characterMakers.push(() => makeCharacter(
  47855. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47856. {
  47857. front: {
  47858. height: math.unit(90, "feet"),
  47859. weight: math.unit(675000, "lb"),
  47860. name: "Front",
  47861. image: {
  47862. source: "./media/characters/qadan/front.svg",
  47863. extra: 1012/1004,
  47864. bottom: 78/1090
  47865. }
  47866. },
  47867. back: {
  47868. height: math.unit(90, "feet"),
  47869. weight: math.unit(675000, "lb"),
  47870. name: "Back",
  47871. image: {
  47872. source: "./media/characters/qadan/back.svg",
  47873. extra: 1042/1031,
  47874. bottom: 55/1097
  47875. }
  47876. },
  47877. armored: {
  47878. height: math.unit(90, "feet"),
  47879. weight: math.unit(675000, "lb"),
  47880. name: "Armored",
  47881. image: {
  47882. source: "./media/characters/qadan/armored.svg",
  47883. extra: 1047/1037,
  47884. bottom: 48/1095
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Normal",
  47891. height: math.unit(90, "feet"),
  47892. default: true
  47893. },
  47894. ]
  47895. ))
  47896. characterMakers.push(() => makeCharacter(
  47897. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47898. {
  47899. front: {
  47900. height: math.unit(6, "feet"),
  47901. weight: math.unit(225, "lb"),
  47902. name: "Front",
  47903. image: {
  47904. source: "./media/characters/brooke/front.svg",
  47905. extra: 1050/1010,
  47906. bottom: 66/1116
  47907. }
  47908. },
  47909. back: {
  47910. height: math.unit(6, "feet"),
  47911. weight: math.unit(225, "lb"),
  47912. name: "Back",
  47913. image: {
  47914. source: "./media/characters/brooke/back.svg",
  47915. extra: 1053/1013,
  47916. bottom: 41/1094
  47917. }
  47918. },
  47919. dressed: {
  47920. height: math.unit(6, "feet"),
  47921. weight: math.unit(225, "lb"),
  47922. name: "Dressed",
  47923. image: {
  47924. source: "./media/characters/brooke/dressed.svg",
  47925. extra: 1050/1010,
  47926. bottom: 66/1116
  47927. }
  47928. },
  47929. },
  47930. [
  47931. {
  47932. name: "Canon Height",
  47933. height: math.unit(500, "miles"),
  47934. default: true
  47935. },
  47936. ]
  47937. ))
  47938. characterMakers.push(() => makeCharacter(
  47939. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47940. {
  47941. front: {
  47942. height: math.unit(6 + 2/12, "feet"),
  47943. weight: math.unit(210, "lb"),
  47944. name: "Front",
  47945. image: {
  47946. source: "./media/characters/wubs/front.svg",
  47947. extra: 1345/1325,
  47948. bottom: 70/1415
  47949. }
  47950. },
  47951. back: {
  47952. height: math.unit(6 + 2/12, "feet"),
  47953. weight: math.unit(210, "lb"),
  47954. name: "Back",
  47955. image: {
  47956. source: "./media/characters/wubs/back.svg",
  47957. extra: 1296/1275,
  47958. bottom: 58/1354
  47959. }
  47960. },
  47961. },
  47962. [
  47963. {
  47964. name: "Normal",
  47965. height: math.unit(6 + 2/12, "feet"),
  47966. default: true
  47967. },
  47968. {
  47969. name: "Macro",
  47970. height: math.unit(1000, "feet")
  47971. },
  47972. {
  47973. name: "Megamacro",
  47974. height: math.unit(1, "mile")
  47975. },
  47976. ]
  47977. ))
  47978. characterMakers.push(() => makeCharacter(
  47979. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47980. {
  47981. front: {
  47982. height: math.unit(4, "feet"),
  47983. weight: math.unit(120, "lb"),
  47984. name: "Front",
  47985. image: {
  47986. source: "./media/characters/blue/front.svg",
  47987. extra: 1636/1525,
  47988. bottom: 43/1679
  47989. }
  47990. },
  47991. back: {
  47992. height: math.unit(4, "feet"),
  47993. weight: math.unit(120, "lb"),
  47994. name: "Back",
  47995. image: {
  47996. source: "./media/characters/blue/back.svg",
  47997. extra: 1660/1560,
  47998. bottom: 57/1717
  47999. }
  48000. },
  48001. paws: {
  48002. height: math.unit(0.826, "feet"),
  48003. name: "Paws",
  48004. image: {
  48005. source: "./media/characters/blue/paws.svg"
  48006. }
  48007. },
  48008. },
  48009. [
  48010. {
  48011. name: "Micro",
  48012. height: math.unit(3, "inches")
  48013. },
  48014. {
  48015. name: "Normal",
  48016. height: math.unit(4, "feet"),
  48017. default: true
  48018. },
  48019. {
  48020. name: "Femenine Form",
  48021. height: math.unit(14, "feet")
  48022. },
  48023. {
  48024. name: "Werebat Form",
  48025. height: math.unit(18, "feet")
  48026. },
  48027. ]
  48028. ))
  48029. characterMakers.push(() => makeCharacter(
  48030. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48031. {
  48032. female: {
  48033. height: math.unit(7 + 4/12, "feet"),
  48034. weight: math.unit(243, "lb"),
  48035. name: "Female",
  48036. image: {
  48037. source: "./media/characters/kaya/female.svg",
  48038. extra: 975/898,
  48039. bottom: 34/1009
  48040. }
  48041. },
  48042. herm: {
  48043. height: math.unit(7 + 4/12, "feet"),
  48044. weight: math.unit(243, "lb"),
  48045. name: "Herm",
  48046. image: {
  48047. source: "./media/characters/kaya/herm.svg",
  48048. extra: 975/898,
  48049. bottom: 34/1009
  48050. }
  48051. },
  48052. },
  48053. [
  48054. {
  48055. name: "Normal",
  48056. height: math.unit(7 + 4/12, "feet"),
  48057. default: true
  48058. },
  48059. ]
  48060. ))
  48061. characterMakers.push(() => makeCharacter(
  48062. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48063. {
  48064. female: {
  48065. height: math.unit(9 + 4/12, "feet"),
  48066. weight: math.unit(398, "lb"),
  48067. name: "Female",
  48068. image: {
  48069. source: "./media/characters/kassandra/female.svg",
  48070. extra: 908/839,
  48071. bottom: 61/969
  48072. }
  48073. },
  48074. intersex: {
  48075. height: math.unit(9 + 4/12, "feet"),
  48076. weight: math.unit(398, "lb"),
  48077. name: "Intersex",
  48078. image: {
  48079. source: "./media/characters/kassandra/intersex.svg",
  48080. extra: 908/839,
  48081. bottom: 61/969
  48082. }
  48083. },
  48084. },
  48085. [
  48086. {
  48087. name: "Normal",
  48088. height: math.unit(9 + 4/12, "feet"),
  48089. default: true
  48090. },
  48091. ]
  48092. ))
  48093. characterMakers.push(() => makeCharacter(
  48094. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48095. {
  48096. front: {
  48097. height: math.unit(3, "meters"),
  48098. name: "Front",
  48099. image: {
  48100. source: "./media/characters/amy/front.svg",
  48101. extra: 1380/1343,
  48102. bottom: 70/1450
  48103. }
  48104. },
  48105. back: {
  48106. height: math.unit(3, "meters"),
  48107. name: "Back",
  48108. image: {
  48109. source: "./media/characters/amy/back.svg",
  48110. extra: 1380/1347,
  48111. bottom: 66/1446
  48112. }
  48113. },
  48114. },
  48115. [
  48116. {
  48117. name: "Normal",
  48118. height: math.unit(3, "meters"),
  48119. default: true
  48120. },
  48121. ]
  48122. ))
  48123. characterMakers.push(() => makeCharacter(
  48124. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48125. {
  48126. side: {
  48127. height: math.unit(47, "cm"),
  48128. weight: math.unit(10.8, "kg"),
  48129. name: "Side",
  48130. image: {
  48131. source: "./media/characters/alphaschakal/side.svg",
  48132. extra: 1058/568,
  48133. bottom: 62/1120
  48134. }
  48135. },
  48136. back: {
  48137. height: math.unit(78, "cm"),
  48138. weight: math.unit(10.8, "kg"),
  48139. name: "Back",
  48140. image: {
  48141. source: "./media/characters/alphaschakal/back.svg",
  48142. extra: 1102/942,
  48143. bottom: 185/1287
  48144. }
  48145. },
  48146. head: {
  48147. height: math.unit(28, "cm"),
  48148. name: "Head",
  48149. image: {
  48150. source: "./media/characters/alphaschakal/head.svg",
  48151. extra: 696/508,
  48152. bottom: 0/696
  48153. }
  48154. },
  48155. paw: {
  48156. height: math.unit(16, "cm"),
  48157. name: "Paw",
  48158. image: {
  48159. source: "./media/characters/alphaschakal/paw.svg"
  48160. }
  48161. },
  48162. },
  48163. [
  48164. {
  48165. name: "Normal",
  48166. height: math.unit(47, "cm"),
  48167. default: true
  48168. },
  48169. {
  48170. name: "Macro",
  48171. height: math.unit(340, "cm")
  48172. },
  48173. ]
  48174. ))
  48175. characterMakers.push(() => makeCharacter(
  48176. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48177. {
  48178. front: {
  48179. height: math.unit(36, "earths"),
  48180. name: "Front",
  48181. image: {
  48182. source: "./media/characters/ecobyss/front.svg",
  48183. extra: 1282/1215,
  48184. bottom: 11/1293
  48185. }
  48186. },
  48187. back: {
  48188. height: math.unit(36, "earths"),
  48189. name: "Back",
  48190. image: {
  48191. source: "./media/characters/ecobyss/back.svg",
  48192. extra: 1291/1222,
  48193. bottom: 8/1299
  48194. }
  48195. },
  48196. },
  48197. [
  48198. {
  48199. name: "Normal",
  48200. height: math.unit(36, "earths"),
  48201. default: true
  48202. },
  48203. ]
  48204. ))
  48205. characterMakers.push(() => makeCharacter(
  48206. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48207. {
  48208. front: {
  48209. height: math.unit(12, "feet"),
  48210. name: "Front",
  48211. image: {
  48212. source: "./media/characters/vasuk/front.svg",
  48213. extra: 1326/1207,
  48214. bottom: 64/1390
  48215. }
  48216. },
  48217. },
  48218. [
  48219. {
  48220. name: "Normal",
  48221. height: math.unit(12, "feet"),
  48222. default: true
  48223. },
  48224. ]
  48225. ))
  48226. characterMakers.push(() => makeCharacter(
  48227. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48228. {
  48229. side: {
  48230. height: math.unit(100, "feet"),
  48231. name: "Side",
  48232. image: {
  48233. source: "./media/characters/linneaus/side.svg",
  48234. extra: 987/807,
  48235. bottom: 47/1034
  48236. }
  48237. },
  48238. },
  48239. [
  48240. {
  48241. name: "Macro",
  48242. height: math.unit(100, "feet"),
  48243. default: true
  48244. },
  48245. ]
  48246. ))
  48247. characterMakers.push(() => makeCharacter(
  48248. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48249. {
  48250. front: {
  48251. height: math.unit(8, "feet"),
  48252. weight: math.unit(1200, "lb"),
  48253. name: "Front",
  48254. image: {
  48255. source: "./media/characters/nyterious-daligdig/front.svg",
  48256. extra: 1284/1094,
  48257. bottom: 84/1368
  48258. }
  48259. },
  48260. back: {
  48261. height: math.unit(8, "feet"),
  48262. weight: math.unit(1200, "lb"),
  48263. name: "Back",
  48264. image: {
  48265. source: "./media/characters/nyterious-daligdig/back.svg",
  48266. extra: 1301/1121,
  48267. bottom: 129/1430
  48268. }
  48269. },
  48270. mouth: {
  48271. height: math.unit(1.464, "feet"),
  48272. name: "Mouth",
  48273. image: {
  48274. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48275. }
  48276. },
  48277. },
  48278. [
  48279. {
  48280. name: "Small",
  48281. height: math.unit(8, "feet"),
  48282. default: true
  48283. },
  48284. {
  48285. name: "Normal",
  48286. height: math.unit(15, "feet")
  48287. },
  48288. {
  48289. name: "Macro",
  48290. height: math.unit(90, "feet")
  48291. },
  48292. ]
  48293. ))
  48294. characterMakers.push(() => makeCharacter(
  48295. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48296. {
  48297. front: {
  48298. height: math.unit(7 + 4/12, "feet"),
  48299. weight: math.unit(252, "lb"),
  48300. name: "Front",
  48301. image: {
  48302. source: "./media/characters/bandel/front.svg",
  48303. extra: 1946/1775,
  48304. bottom: 26/1972
  48305. }
  48306. },
  48307. back: {
  48308. height: math.unit(7 + 4/12, "feet"),
  48309. weight: math.unit(252, "lb"),
  48310. name: "Back",
  48311. image: {
  48312. source: "./media/characters/bandel/back.svg",
  48313. extra: 1940/1770,
  48314. bottom: 25/1965
  48315. }
  48316. },
  48317. maw: {
  48318. height: math.unit(2.15, "feet"),
  48319. name: "Maw",
  48320. image: {
  48321. source: "./media/characters/bandel/maw.svg"
  48322. }
  48323. },
  48324. stomach: {
  48325. height: math.unit(1.95, "feet"),
  48326. name: "Stomach",
  48327. image: {
  48328. source: "./media/characters/bandel/stomach.svg"
  48329. }
  48330. },
  48331. },
  48332. [
  48333. {
  48334. name: "Normal",
  48335. height: math.unit(7 + 4/12, "feet"),
  48336. default: true
  48337. },
  48338. ]
  48339. ))
  48340. characterMakers.push(() => makeCharacter(
  48341. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48342. {
  48343. front: {
  48344. height: math.unit(10 + 5/12, "feet"),
  48345. weight: math.unit(773.5, "kg"),
  48346. name: "Front",
  48347. image: {
  48348. source: "./media/characters/zed/front.svg",
  48349. extra: 987/941,
  48350. bottom: 52/1039
  48351. }
  48352. },
  48353. },
  48354. [
  48355. {
  48356. name: "Short",
  48357. height: math.unit(5 + 4/12, "feet")
  48358. },
  48359. {
  48360. name: "Average",
  48361. height: math.unit(10 + 5/12, "feet"),
  48362. default: true
  48363. },
  48364. {
  48365. name: "Mini-Macro",
  48366. height: math.unit(24 + 9/12, "feet")
  48367. },
  48368. {
  48369. name: "Macro",
  48370. height: math.unit(249, "feet")
  48371. },
  48372. {
  48373. name: "Mega-Macro",
  48374. height: math.unit(12490, "feet")
  48375. },
  48376. {
  48377. name: "Giga-Macro",
  48378. height: math.unit(24.9, "miles")
  48379. },
  48380. {
  48381. name: "Tera-Macro",
  48382. height: math.unit(24900, "miles")
  48383. },
  48384. {
  48385. name: "Cosmic Scale",
  48386. height: math.unit(38.9, "lightyears")
  48387. },
  48388. {
  48389. name: "Universal Scale",
  48390. height: math.unit(138e12, "lightyears")
  48391. },
  48392. ]
  48393. ))
  48394. characterMakers.push(() => makeCharacter(
  48395. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48396. {
  48397. front: {
  48398. height: math.unit(1561, "inches"),
  48399. name: "Front",
  48400. image: {
  48401. source: "./media/characters/ivan/front.svg",
  48402. extra: 1126/1071,
  48403. bottom: 26/1152
  48404. }
  48405. },
  48406. back: {
  48407. height: math.unit(1561, "inches"),
  48408. name: "Back",
  48409. image: {
  48410. source: "./media/characters/ivan/back.svg",
  48411. extra: 1134/1079,
  48412. bottom: 30/1164
  48413. }
  48414. },
  48415. },
  48416. [
  48417. {
  48418. name: "Normal",
  48419. height: math.unit(1561, "inches"),
  48420. default: true
  48421. },
  48422. ]
  48423. ))
  48424. characterMakers.push(() => makeCharacter(
  48425. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48426. {
  48427. front: {
  48428. height: math.unit(5 + 7/12, "feet"),
  48429. weight: math.unit(150, "lb"),
  48430. name: "Front",
  48431. image: {
  48432. source: "./media/characters/robin-arctic-hare/front.svg",
  48433. extra: 1148/974,
  48434. bottom: 20/1168
  48435. }
  48436. },
  48437. },
  48438. [
  48439. {
  48440. name: "Normal",
  48441. height: math.unit(5 + 7/12, "feet"),
  48442. default: true
  48443. },
  48444. ]
  48445. ))
  48446. characterMakers.push(() => makeCharacter(
  48447. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48448. {
  48449. side: {
  48450. height: math.unit(5, "feet"),
  48451. name: "Side",
  48452. image: {
  48453. source: "./media/characters/birch/side.svg",
  48454. extra: 985/796,
  48455. bottom: 111/1096
  48456. }
  48457. },
  48458. },
  48459. [
  48460. {
  48461. name: "Normal",
  48462. height: math.unit(5, "feet"),
  48463. default: true
  48464. },
  48465. ]
  48466. ))
  48467. characterMakers.push(() => makeCharacter(
  48468. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48469. {
  48470. front: {
  48471. height: math.unit(4, "feet"),
  48472. name: "Front",
  48473. image: {
  48474. source: "./media/characters/rasp/front.svg",
  48475. extra: 561/478,
  48476. bottom: 74/635
  48477. }
  48478. },
  48479. },
  48480. [
  48481. {
  48482. name: "Normal",
  48483. height: math.unit(4, "feet"),
  48484. default: true
  48485. },
  48486. ]
  48487. ))
  48488. characterMakers.push(() => makeCharacter(
  48489. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48490. {
  48491. front: {
  48492. height: math.unit(4 + 6/12, "feet"),
  48493. name: "Front",
  48494. image: {
  48495. source: "./media/characters/agatha/front.svg",
  48496. extra: 947/933,
  48497. bottom: 42/989
  48498. }
  48499. },
  48500. back: {
  48501. height: math.unit(4 + 6/12, "feet"),
  48502. name: "Back",
  48503. image: {
  48504. source: "./media/characters/agatha/back.svg",
  48505. extra: 935/922,
  48506. bottom: 48/983
  48507. }
  48508. },
  48509. },
  48510. [
  48511. {
  48512. name: "Normal",
  48513. height: math.unit(4 + 6 /12, "feet"),
  48514. default: true
  48515. },
  48516. {
  48517. name: "Max Size",
  48518. height: math.unit(500, "feet")
  48519. },
  48520. ]
  48521. ))
  48522. characterMakers.push(() => makeCharacter(
  48523. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48524. {
  48525. side: {
  48526. height: math.unit(30, "feet"),
  48527. name: "Side",
  48528. image: {
  48529. source: "./media/characters/roggy/side.svg",
  48530. extra: 909/643,
  48531. bottom: 63/972
  48532. }
  48533. },
  48534. lounging: {
  48535. height: math.unit(20, "feet"),
  48536. name: "Lounging",
  48537. image: {
  48538. source: "./media/characters/roggy/lounging.svg",
  48539. extra: 643/479,
  48540. bottom: 145/788
  48541. }
  48542. },
  48543. handpaw: {
  48544. height: math.unit(13.1, "feet"),
  48545. name: "Handpaw",
  48546. image: {
  48547. source: "./media/characters/roggy/handpaw.svg"
  48548. }
  48549. },
  48550. footpaw: {
  48551. height: math.unit(15.8, "feet"),
  48552. name: "Footpaw",
  48553. image: {
  48554. source: "./media/characters/roggy/footpaw.svg"
  48555. }
  48556. },
  48557. },
  48558. [
  48559. {
  48560. name: "Menacing",
  48561. height: math.unit(30, "feet"),
  48562. default: true
  48563. },
  48564. ]
  48565. ))
  48566. characterMakers.push(() => makeCharacter(
  48567. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  48568. {
  48569. front: {
  48570. height: math.unit(5 + 7/12, "feet"),
  48571. weight: math.unit(135, "lb"),
  48572. name: "Front",
  48573. image: {
  48574. source: "./media/characters/naomi/front.svg",
  48575. extra: 1209/1154,
  48576. bottom: 129/1338
  48577. }
  48578. },
  48579. back: {
  48580. height: math.unit(5 + 7/12, "feet"),
  48581. weight: math.unit(135, "lb"),
  48582. name: "Back",
  48583. image: {
  48584. source: "./media/characters/naomi/back.svg",
  48585. extra: 1252/1190,
  48586. bottom: 23/1275
  48587. }
  48588. },
  48589. },
  48590. [
  48591. {
  48592. name: "Normal",
  48593. height: math.unit(5 + 7 /12, "feet"),
  48594. default: true
  48595. },
  48596. ]
  48597. ))
  48598. characterMakers.push(() => makeCharacter(
  48599. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  48600. {
  48601. side: {
  48602. height: math.unit(35, "meters"),
  48603. name: "Side",
  48604. image: {
  48605. source: "./media/characters/kimpi/side.svg",
  48606. extra: 419/382,
  48607. bottom: 63/482
  48608. }
  48609. },
  48610. hand: {
  48611. height: math.unit(8.96, "meters"),
  48612. name: "Hand",
  48613. image: {
  48614. source: "./media/characters/kimpi/hand.svg"
  48615. }
  48616. },
  48617. },
  48618. [
  48619. {
  48620. name: "Normal",
  48621. height: math.unit(35, "meters"),
  48622. default: true
  48623. },
  48624. ]
  48625. ))
  48626. characterMakers.push(() => makeCharacter(
  48627. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  48628. {
  48629. front: {
  48630. height: math.unit(4 + 4/12, "feet"),
  48631. name: "Front",
  48632. image: {
  48633. source: "./media/characters/pepper-purrloin/front.svg",
  48634. extra: 1141/1024,
  48635. bottom: 21/1162
  48636. }
  48637. },
  48638. },
  48639. [
  48640. {
  48641. name: "Normal",
  48642. height: math.unit(4 + 4/12, "feet"),
  48643. default: true
  48644. },
  48645. ]
  48646. ))
  48647. characterMakers.push(() => makeCharacter(
  48648. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  48649. {
  48650. front: {
  48651. height: math.unit(6 + 2/12, "feet"),
  48652. name: "Front",
  48653. image: {
  48654. source: "./media/characters/raphael/front.svg",
  48655. extra: 1101/962,
  48656. bottom: 59/1160
  48657. }
  48658. },
  48659. },
  48660. [
  48661. {
  48662. name: "Normal",
  48663. height: math.unit(6 + 2/12, "feet"),
  48664. default: true
  48665. },
  48666. ]
  48667. ))
  48668. characterMakers.push(() => makeCharacter(
  48669. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48670. {
  48671. front: {
  48672. height: math.unit(6, "feet"),
  48673. weight: math.unit(150, "lb"),
  48674. name: "Front",
  48675. image: {
  48676. source: "./media/characters/victor-williams/front.svg",
  48677. extra: 1894/1825,
  48678. bottom: 67/1961
  48679. }
  48680. },
  48681. },
  48682. [
  48683. {
  48684. name: "Normal",
  48685. height: math.unit(6, "feet"),
  48686. default: true
  48687. },
  48688. ]
  48689. ))
  48690. characterMakers.push(() => makeCharacter(
  48691. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48692. {
  48693. front: {
  48694. height: math.unit(5 + 8/12, "feet"),
  48695. weight: math.unit(150, "lb"),
  48696. name: "Front",
  48697. image: {
  48698. source: "./media/characters/rachel/front.svg",
  48699. extra: 1902/1787,
  48700. bottom: 46/1948
  48701. }
  48702. },
  48703. },
  48704. [
  48705. {
  48706. name: "Base Height",
  48707. height: math.unit(5 + 8/12, "feet"),
  48708. default: true
  48709. },
  48710. {
  48711. name: "Macro",
  48712. height: math.unit(200, "feet")
  48713. },
  48714. {
  48715. name: "Mega Macro",
  48716. height: math.unit(1, "mile")
  48717. },
  48718. {
  48719. name: "Giga Macro",
  48720. height: math.unit(1500, "miles")
  48721. },
  48722. {
  48723. name: "Tera Macro",
  48724. height: math.unit(8000, "miles")
  48725. },
  48726. {
  48727. name: "Tera Macro+",
  48728. height: math.unit(2e5, "miles")
  48729. },
  48730. ]
  48731. ))
  48732. characterMakers.push(() => makeCharacter(
  48733. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48734. {
  48735. front: {
  48736. height: math.unit(6.5, "feet"),
  48737. name: "Front",
  48738. image: {
  48739. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48740. extra: 860/819,
  48741. bottom: 307/1167
  48742. }
  48743. },
  48744. back: {
  48745. height: math.unit(6.5, "feet"),
  48746. name: "Back",
  48747. image: {
  48748. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48749. extra: 880/837,
  48750. bottom: 395/1275
  48751. }
  48752. },
  48753. sleeping: {
  48754. height: math.unit(2.79, "feet"),
  48755. name: "Sleeping",
  48756. image: {
  48757. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48758. extra: 465/383,
  48759. bottom: 263/728
  48760. }
  48761. },
  48762. maw: {
  48763. height: math.unit(2.52, "feet"),
  48764. name: "Maw",
  48765. image: {
  48766. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48767. }
  48768. },
  48769. },
  48770. [
  48771. {
  48772. name: "Normal",
  48773. height: math.unit(6.5, "feet"),
  48774. default: true
  48775. },
  48776. ]
  48777. ))
  48778. characterMakers.push(() => makeCharacter(
  48779. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48780. {
  48781. front: {
  48782. height: math.unit(5, "feet"),
  48783. name: "Front",
  48784. image: {
  48785. source: "./media/characters/nova-nerium/front.svg",
  48786. extra: 1548/1392,
  48787. bottom: 374/1922
  48788. }
  48789. },
  48790. back: {
  48791. height: math.unit(5, "feet"),
  48792. name: "Back",
  48793. image: {
  48794. source: "./media/characters/nova-nerium/back.svg",
  48795. extra: 1658/1468,
  48796. bottom: 257/1915
  48797. }
  48798. },
  48799. },
  48800. [
  48801. {
  48802. name: "Normal",
  48803. height: math.unit(5, "feet"),
  48804. default: true
  48805. },
  48806. ]
  48807. ))
  48808. characterMakers.push(() => makeCharacter(
  48809. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48810. {
  48811. front: {
  48812. height: math.unit(5 + 4/12, "feet"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/ashe-pyriph/front.svg",
  48816. extra: 1935/1747,
  48817. bottom: 60/1995
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Normal",
  48824. height: math.unit(5 + 4/12, "feet"),
  48825. default: true
  48826. },
  48827. ]
  48828. ))
  48829. characterMakers.push(() => makeCharacter(
  48830. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48831. {
  48832. front: {
  48833. height: math.unit(8.7, "feet"),
  48834. name: "Front",
  48835. image: {
  48836. source: "./media/characters/flicker-wisp/front.svg",
  48837. extra: 1835/1613,
  48838. bottom: 449/2284
  48839. }
  48840. },
  48841. side: {
  48842. height: math.unit(8.7, "feet"),
  48843. name: "Side",
  48844. image: {
  48845. source: "./media/characters/flicker-wisp/side.svg",
  48846. extra: 1841/1642,
  48847. bottom: 336/2177
  48848. },
  48849. default: true
  48850. },
  48851. maw: {
  48852. height: math.unit(3.35, "feet"),
  48853. name: "Maw",
  48854. image: {
  48855. source: "./media/characters/flicker-wisp/maw.svg",
  48856. extra: 2338/1506,
  48857. bottom: 0/2338
  48858. }
  48859. },
  48860. ovipositor: {
  48861. height: math.unit(4.95, "feet"),
  48862. name: "Ovipositor",
  48863. image: {
  48864. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48865. }
  48866. },
  48867. egg: {
  48868. height: math.unit(0.385, "feet"),
  48869. weight: math.unit(2, "lb"),
  48870. name: "Egg",
  48871. image: {
  48872. source: "./media/characters/flicker-wisp/egg.svg"
  48873. }
  48874. },
  48875. },
  48876. [
  48877. {
  48878. name: "Normal",
  48879. height: math.unit(8.7, "feet"),
  48880. default: true
  48881. },
  48882. ]
  48883. ))
  48884. characterMakers.push(() => makeCharacter(
  48885. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48886. {
  48887. side: {
  48888. height: math.unit(11, "feet"),
  48889. name: "Side",
  48890. image: {
  48891. source: "./media/characters/faefnul/side.svg",
  48892. extra: 1100/1007,
  48893. bottom: 0/1100
  48894. }
  48895. },
  48896. },
  48897. [
  48898. {
  48899. name: "Normal",
  48900. height: math.unit(11, "feet"),
  48901. default: true
  48902. },
  48903. ]
  48904. ))
  48905. characterMakers.push(() => makeCharacter(
  48906. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48907. {
  48908. front: {
  48909. height: math.unit(6 + 2/12, "feet"),
  48910. name: "Front",
  48911. image: {
  48912. source: "./media/characters/shady/front.svg",
  48913. extra: 502/461,
  48914. bottom: 9/511
  48915. }
  48916. },
  48917. kneeling: {
  48918. height: math.unit(4.6, "feet"),
  48919. name: "Kneeling",
  48920. image: {
  48921. source: "./media/characters/shady/kneeling.svg",
  48922. extra: 1328/1219,
  48923. bottom: 117/1445
  48924. }
  48925. },
  48926. maw: {
  48927. height: math.unit(2, "feet"),
  48928. name: "Maw",
  48929. image: {
  48930. source: "./media/characters/shady/maw.svg"
  48931. }
  48932. },
  48933. },
  48934. [
  48935. {
  48936. name: "Nano",
  48937. height: math.unit(1, "mm")
  48938. },
  48939. {
  48940. name: "Micro",
  48941. height: math.unit(12, "mm")
  48942. },
  48943. {
  48944. name: "Tiny",
  48945. height: math.unit(3, "inches")
  48946. },
  48947. {
  48948. name: "Normal",
  48949. height: math.unit(6 + 2/12, "feet"),
  48950. default: true
  48951. },
  48952. {
  48953. name: "Big",
  48954. height: math.unit(15, "feet")
  48955. },
  48956. {
  48957. name: "Macro",
  48958. height: math.unit(150, "feet")
  48959. },
  48960. {
  48961. name: "Titanic",
  48962. height: math.unit(500, "feet")
  48963. },
  48964. ]
  48965. ))
  48966. characterMakers.push(() => makeCharacter(
  48967. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48968. {
  48969. front: {
  48970. height: math.unit(12, "feet"),
  48971. name: "Front",
  48972. image: {
  48973. source: "./media/characters/fenrir/front.svg",
  48974. extra: 968/875,
  48975. bottom: 22/990
  48976. }
  48977. },
  48978. },
  48979. [
  48980. {
  48981. name: "Big",
  48982. height: math.unit(12, "feet"),
  48983. default: true
  48984. },
  48985. ]
  48986. ))
  48987. characterMakers.push(() => makeCharacter(
  48988. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48989. {
  48990. front: {
  48991. height: math.unit(5 + 4/12, "feet"),
  48992. name: "Front",
  48993. image: {
  48994. source: "./media/characters/makar/front.svg",
  48995. extra: 1181/1112,
  48996. bottom: 78/1259
  48997. }
  48998. },
  48999. },
  49000. [
  49001. {
  49002. name: "Normal",
  49003. height: math.unit(5 + 4/12, "feet"),
  49004. default: true
  49005. },
  49006. ]
  49007. ))
  49008. characterMakers.push(() => makeCharacter(
  49009. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49010. {
  49011. front: {
  49012. height: math.unit(5 + 7/12, "feet"),
  49013. name: "Front",
  49014. image: {
  49015. source: "./media/characters/callow/front.svg",
  49016. extra: 1482/1304,
  49017. bottom: 23/1505
  49018. }
  49019. },
  49020. back: {
  49021. height: math.unit(5 + 7/12, "feet"),
  49022. name: "Back",
  49023. image: {
  49024. source: "./media/characters/callow/back.svg",
  49025. extra: 1484/1296,
  49026. bottom: 25/1509
  49027. }
  49028. },
  49029. },
  49030. [
  49031. {
  49032. name: "Micro",
  49033. height: math.unit(3, "inches"),
  49034. default: true
  49035. },
  49036. {
  49037. name: "Normal",
  49038. height: math.unit(5 + 7/12, "feet")
  49039. },
  49040. ]
  49041. ))
  49042. characterMakers.push(() => makeCharacter(
  49043. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49044. {
  49045. front: {
  49046. height: math.unit(6 + 2/12, "feet"),
  49047. name: "Front",
  49048. image: {
  49049. source: "./media/characters/natel/front.svg",
  49050. extra: 1833/1692,
  49051. bottom: 166/1999
  49052. }
  49053. },
  49054. },
  49055. [
  49056. {
  49057. name: "Normal",
  49058. height: math.unit(6 + 2/12, "feet"),
  49059. default: true
  49060. },
  49061. ]
  49062. ))
  49063. characterMakers.push(() => makeCharacter(
  49064. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49065. {
  49066. front: {
  49067. height: math.unit(1.75, "meters"),
  49068. name: "Front",
  49069. image: {
  49070. source: "./media/characters/misu/front.svg",
  49071. extra: 1690/1558,
  49072. bottom: 234/1924
  49073. }
  49074. },
  49075. back: {
  49076. height: math.unit(1.75, "meters"),
  49077. name: "Back",
  49078. image: {
  49079. source: "./media/characters/misu/back.svg",
  49080. extra: 1762/1618,
  49081. bottom: 146/1908
  49082. }
  49083. },
  49084. frontNude: {
  49085. height: math.unit(1.75, "meters"),
  49086. name: "Front (Nude)",
  49087. image: {
  49088. source: "./media/characters/misu/front-nude.svg",
  49089. extra: 1690/1558,
  49090. bottom: 234/1924
  49091. }
  49092. },
  49093. backNude: {
  49094. height: math.unit(1.75, "meters"),
  49095. name: "Back (Nude)",
  49096. image: {
  49097. source: "./media/characters/misu/back-nude.svg",
  49098. extra: 1762/1618,
  49099. bottom: 146/1908
  49100. }
  49101. },
  49102. frontErect: {
  49103. height: math.unit(1.75, "meters"),
  49104. name: "Front (Erect)",
  49105. image: {
  49106. source: "./media/characters/misu/front-erect.svg",
  49107. extra: 1690/1558,
  49108. bottom: 234/1924
  49109. }
  49110. },
  49111. maw: {
  49112. height: math.unit(0.47, "meters"),
  49113. name: "Maw",
  49114. image: {
  49115. source: "./media/characters/misu/maw.svg"
  49116. }
  49117. },
  49118. head: {
  49119. height: math.unit(0.35, "meters"),
  49120. name: "Head",
  49121. image: {
  49122. source: "./media/characters/misu/head.svg"
  49123. }
  49124. },
  49125. rear: {
  49126. height: math.unit(0.47, "meters"),
  49127. name: "Rear",
  49128. image: {
  49129. source: "./media/characters/misu/rear.svg"
  49130. }
  49131. },
  49132. },
  49133. [
  49134. {
  49135. name: "Normal",
  49136. height: math.unit(1.75, "meters")
  49137. },
  49138. {
  49139. name: "Not good for the people",
  49140. height: math.unit(42, "meters")
  49141. },
  49142. {
  49143. name: "Not good for the neighborhood",
  49144. height: math.unit(135, "meters")
  49145. },
  49146. {
  49147. name: "Bit bigger problem",
  49148. height: math.unit(380, "meters"),
  49149. default: true
  49150. },
  49151. {
  49152. name: "Not good for the city",
  49153. height: math.unit(1.5, "km")
  49154. },
  49155. {
  49156. name: "Not good for the county",
  49157. height: math.unit(5.5, "km")
  49158. },
  49159. {
  49160. name: "Not good for the state",
  49161. height: math.unit(25, "km")
  49162. },
  49163. {
  49164. name: "Not good for the country",
  49165. height: math.unit(125, "km")
  49166. },
  49167. {
  49168. name: "Not good for the continent",
  49169. height: math.unit(2100, "km")
  49170. },
  49171. {
  49172. name: "Not good for the planet",
  49173. height: math.unit(35000, "km")
  49174. },
  49175. {
  49176. name: "Just no",
  49177. height: math.unit(8.5e18, "km")
  49178. },
  49179. ]
  49180. ))
  49181. characterMakers.push(() => makeCharacter(
  49182. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49183. {
  49184. front: {
  49185. height: math.unit(6.5, "feet"),
  49186. name: "Front",
  49187. image: {
  49188. source: "./media/characters/poppy/front.svg",
  49189. extra: 1878/1812,
  49190. bottom: 43/1921
  49191. }
  49192. },
  49193. feet: {
  49194. height: math.unit(1.06, "feet"),
  49195. name: "Feet",
  49196. image: {
  49197. source: "./media/characters/poppy/feet.svg",
  49198. extra: 1083/1083,
  49199. bottom: 87/1170
  49200. }
  49201. },
  49202. },
  49203. [
  49204. {
  49205. name: "Human",
  49206. height: math.unit(6.5, "feet")
  49207. },
  49208. {
  49209. name: "Default",
  49210. height: math.unit(300, "feet"),
  49211. default: true
  49212. },
  49213. {
  49214. name: "Huge",
  49215. height: math.unit(850, "feet")
  49216. },
  49217. {
  49218. name: "Mega",
  49219. height: math.unit(8000, "feet")
  49220. },
  49221. {
  49222. name: "Giga",
  49223. height: math.unit(300, "miles")
  49224. },
  49225. ]
  49226. ))
  49227. characterMakers.push(() => makeCharacter(
  49228. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49229. {
  49230. bipedal: {
  49231. height: math.unit(7, "feet"),
  49232. name: "Bipedal",
  49233. image: {
  49234. source: "./media/characters/zener/bipedal.svg",
  49235. extra: 874/805,
  49236. bottom: 109/983
  49237. }
  49238. },
  49239. quadrupedal: {
  49240. height: math.unit(4.64, "feet"),
  49241. name: "Quadrupedal",
  49242. image: {
  49243. source: "./media/characters/zener/quadrupedal.svg",
  49244. extra: 638/507,
  49245. bottom: 190/828
  49246. }
  49247. },
  49248. cock: {
  49249. height: math.unit(18, "inches"),
  49250. name: "Cock",
  49251. image: {
  49252. source: "./media/characters/zener/cock.svg"
  49253. }
  49254. },
  49255. },
  49256. [
  49257. {
  49258. name: "Normal",
  49259. height: math.unit(7, "feet"),
  49260. default: true
  49261. },
  49262. ]
  49263. ))
  49264. characterMakers.push(() => makeCharacter(
  49265. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49266. {
  49267. nude: {
  49268. height: math.unit(5 + 6/12, "feet"),
  49269. name: "Nude",
  49270. image: {
  49271. source: "./media/characters/charlie-dog/nude.svg",
  49272. extra: 768/734,
  49273. bottom: 26/794
  49274. }
  49275. },
  49276. dressed: {
  49277. height: math.unit(5 + 6/12, "feet"),
  49278. name: "Dressed",
  49279. image: {
  49280. source: "./media/characters/charlie-dog/dressed.svg",
  49281. extra: 768/734,
  49282. bottom: 26/794
  49283. }
  49284. },
  49285. },
  49286. [
  49287. {
  49288. name: "Normal",
  49289. height: math.unit(5 + 6/12, "feet"),
  49290. default: true
  49291. },
  49292. ]
  49293. ))
  49294. characterMakers.push(() => makeCharacter(
  49295. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49296. {
  49297. front: {
  49298. height: math.unit(6 + 4/12, "feet"),
  49299. name: "Front",
  49300. image: {
  49301. source: "./media/characters/ir'istrasz/front.svg",
  49302. extra: 1014/977,
  49303. bottom: 65/1079
  49304. }
  49305. },
  49306. back: {
  49307. height: math.unit(6 + 4/12, "feet"),
  49308. name: "Back",
  49309. image: {
  49310. source: "./media/characters/ir'istrasz/back.svg",
  49311. extra: 1024/992,
  49312. bottom: 34/1058
  49313. }
  49314. },
  49315. },
  49316. [
  49317. {
  49318. name: "Normal",
  49319. height: math.unit(6 + 4/12, "feet"),
  49320. default: true
  49321. },
  49322. ]
  49323. ))
  49324. characterMakers.push(() => makeCharacter(
  49325. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49326. {
  49327. front: {
  49328. height: math.unit(5 + 8/12, "feet"),
  49329. name: "Front",
  49330. image: {
  49331. source: "./media/characters/dee-ditto/front.svg",
  49332. extra: 1874/1785,
  49333. bottom: 68/1942
  49334. }
  49335. },
  49336. back: {
  49337. height: math.unit(5 + 8/12, "feet"),
  49338. name: "Back",
  49339. image: {
  49340. source: "./media/characters/dee-ditto/back.svg",
  49341. extra: 1870/1783,
  49342. bottom: 77/1947
  49343. }
  49344. },
  49345. },
  49346. [
  49347. {
  49348. name: "Normal",
  49349. height: math.unit(5 + 8/12, "feet"),
  49350. default: true
  49351. },
  49352. ]
  49353. ))
  49354. characterMakers.push(() => makeCharacter(
  49355. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49356. {
  49357. front: {
  49358. height: math.unit(7 + 6/12, "feet"),
  49359. name: "Front",
  49360. image: {
  49361. source: "./media/characters/fey/front.svg",
  49362. extra: 995/979,
  49363. bottom: 30/1025
  49364. }
  49365. },
  49366. back: {
  49367. height: math.unit(7 + 6/12, "feet"),
  49368. name: "Back",
  49369. image: {
  49370. source: "./media/characters/fey/back.svg",
  49371. extra: 1079/1008,
  49372. bottom: 5/1084
  49373. }
  49374. },
  49375. dressed: {
  49376. height: math.unit(7 + 6/12, "feet"),
  49377. name: "Dressed",
  49378. image: {
  49379. source: "./media/characters/fey/dressed.svg",
  49380. extra: 995/979,
  49381. bottom: 30/1025
  49382. }
  49383. },
  49384. },
  49385. [
  49386. {
  49387. name: "Normal",
  49388. height: math.unit(7 + 6/12, "feet"),
  49389. default: true
  49390. },
  49391. ]
  49392. ))
  49393. characterMakers.push(() => makeCharacter(
  49394. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49395. {
  49396. standing: {
  49397. height: math.unit(17, "feet"),
  49398. name: "Standing",
  49399. image: {
  49400. source: "./media/characters/aster/standing.svg",
  49401. extra: 1798/1598,
  49402. bottom: 117/1915
  49403. }
  49404. },
  49405. },
  49406. [
  49407. {
  49408. name: "Normal",
  49409. height: math.unit(17, "feet"),
  49410. default: true
  49411. },
  49412. {
  49413. name: "Homewrecker",
  49414. height: math.unit(95, "feet")
  49415. },
  49416. {
  49417. name: "Planet Devourer",
  49418. height: math.unit(1008000, "miles")
  49419. },
  49420. ]
  49421. ))
  49422. characterMakers.push(() => makeCharacter(
  49423. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49424. {
  49425. front: {
  49426. height: math.unit(6 + 5/12, "feet"),
  49427. weight: math.unit(265, "lb"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/devon-childs/front.svg",
  49431. extra: 1795/1721,
  49432. bottom: 41/1836
  49433. }
  49434. },
  49435. side: {
  49436. height: math.unit(6 + 5/12, "feet"),
  49437. weight: math.unit(265, "lb"),
  49438. name: "Side",
  49439. image: {
  49440. source: "./media/characters/devon-childs/side.svg",
  49441. extra: 1812/1738,
  49442. bottom: 30/1842
  49443. }
  49444. },
  49445. back: {
  49446. height: math.unit(6 + 5/12, "feet"),
  49447. weight: math.unit(265, "lb"),
  49448. name: "Back",
  49449. image: {
  49450. source: "./media/characters/devon-childs/back.svg",
  49451. extra: 1808/1735,
  49452. bottom: 23/1831
  49453. }
  49454. },
  49455. hand: {
  49456. height: math.unit(1.464, "feet"),
  49457. name: "Hand",
  49458. image: {
  49459. source: "./media/characters/devon-childs/hand.svg"
  49460. }
  49461. },
  49462. foot: {
  49463. height: math.unit(1.6, "feet"),
  49464. name: "Foot",
  49465. image: {
  49466. source: "./media/characters/devon-childs/foot.svg"
  49467. }
  49468. },
  49469. },
  49470. [
  49471. {
  49472. name: "Micro",
  49473. height: math.unit(7, "cm")
  49474. },
  49475. {
  49476. name: "Normal",
  49477. height: math.unit(6 + 5/12, "feet"),
  49478. default: true
  49479. },
  49480. {
  49481. name: "Macro",
  49482. height: math.unit(154, "feet")
  49483. },
  49484. ]
  49485. ))
  49486. characterMakers.push(() => makeCharacter(
  49487. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49488. {
  49489. front: {
  49490. height: math.unit(6, "feet"),
  49491. weight: math.unit(180, "lb"),
  49492. name: "Front",
  49493. image: {
  49494. source: "./media/characters/lydemox-vir/front.svg",
  49495. extra: 1632/1435,
  49496. bottom: 58/1690
  49497. }
  49498. },
  49499. frontSFW: {
  49500. height: math.unit(6, "feet"),
  49501. weight: math.unit(180, "lb"),
  49502. name: "Front (SFW)",
  49503. image: {
  49504. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49505. extra: 1632/1435,
  49506. bottom: 58/1690
  49507. }
  49508. },
  49509. back: {
  49510. height: math.unit(6, "feet"),
  49511. weight: math.unit(180, "lb"),
  49512. name: "Back",
  49513. image: {
  49514. source: "./media/characters/lydemox-vir/back.svg",
  49515. extra: 1593/1408,
  49516. bottom: 31/1624
  49517. }
  49518. },
  49519. paw: {
  49520. height: math.unit(1.85, "feet"),
  49521. name: "Paw",
  49522. image: {
  49523. source: "./media/characters/lydemox-vir/paw.svg"
  49524. }
  49525. },
  49526. dick: {
  49527. height: math.unit(1.8, "feet"),
  49528. name: "Dick",
  49529. image: {
  49530. source: "./media/characters/lydemox-vir/dick.svg"
  49531. }
  49532. },
  49533. },
  49534. [
  49535. {
  49536. name: "Macro",
  49537. height: math.unit(100, "feet"),
  49538. default: true
  49539. },
  49540. {
  49541. name: "Teramacro",
  49542. height: math.unit(1, "earth")
  49543. },
  49544. {
  49545. name: "Planetary",
  49546. height: math.unit(20, "earths")
  49547. },
  49548. ]
  49549. ))
  49550. characterMakers.push(() => makeCharacter(
  49551. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  49552. {
  49553. front: {
  49554. height: math.unit(15 + 8/12, "feet"),
  49555. weight: math.unit(1237, "kg"),
  49556. name: "Front",
  49557. image: {
  49558. source: "./media/characters/mia/front.svg",
  49559. extra: 1573/1446,
  49560. bottom: 58/1631
  49561. }
  49562. },
  49563. },
  49564. [
  49565. {
  49566. name: "Small",
  49567. height: math.unit(9 + 5/12, "feet")
  49568. },
  49569. {
  49570. name: "Normal",
  49571. height: math.unit(15 + 8/12, "feet"),
  49572. default: true
  49573. },
  49574. ]
  49575. ))
  49576. characterMakers.push(() => makeCharacter(
  49577. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  49578. {
  49579. front: {
  49580. height: math.unit(10 + 6/12, "feet"),
  49581. weight: math.unit(1.3, "tons"),
  49582. name: "Front",
  49583. image: {
  49584. source: "./media/characters/mr-graves/front.svg",
  49585. extra: 1779/1695,
  49586. bottom: 198/1977
  49587. }
  49588. },
  49589. },
  49590. [
  49591. {
  49592. name: "Normal",
  49593. height: math.unit(10 + 6 /12, "feet"),
  49594. default: true
  49595. },
  49596. ]
  49597. ))
  49598. characterMakers.push(() => makeCharacter(
  49599. { name: "Jess", species: ["human"], tags: ["anthro"] },
  49600. {
  49601. dressedFront: {
  49602. height: math.unit(5 + 8/12, "feet"),
  49603. weight: math.unit(125, "lb"),
  49604. name: "Dressed (Front)",
  49605. image: {
  49606. source: "./media/characters/jess/dressed-front.svg",
  49607. extra: 1176/1152,
  49608. bottom: 42/1218
  49609. }
  49610. },
  49611. dressedSide: {
  49612. height: math.unit(5 + 8/12, "feet"),
  49613. weight: math.unit(125, "lb"),
  49614. name: "Dressed (Side)",
  49615. image: {
  49616. source: "./media/characters/jess/dressed-side.svg",
  49617. extra: 1204/1190,
  49618. bottom: 6/1210
  49619. }
  49620. },
  49621. nudeFront: {
  49622. height: math.unit(5 + 8/12, "feet"),
  49623. weight: math.unit(125, "lb"),
  49624. name: "Nude (Front)",
  49625. image: {
  49626. source: "./media/characters/jess/nude-front.svg",
  49627. extra: 1176/1152,
  49628. bottom: 42/1218
  49629. }
  49630. },
  49631. nudeSide: {
  49632. height: math.unit(5 + 8/12, "feet"),
  49633. weight: math.unit(125, "lb"),
  49634. name: "Nude (Side)",
  49635. image: {
  49636. source: "./media/characters/jess/nude-side.svg",
  49637. extra: 1204/1190,
  49638. bottom: 6/1210
  49639. }
  49640. },
  49641. organsFront: {
  49642. height: math.unit(2.83799342105, "feet"),
  49643. name: "Organs (Front)",
  49644. image: {
  49645. source: "./media/characters/jess/organs-front.svg"
  49646. }
  49647. },
  49648. organsSide: {
  49649. height: math.unit(2.64225290474, "feet"),
  49650. name: "Organs (Side)",
  49651. image: {
  49652. source: "./media/characters/jess/organs-side.svg"
  49653. }
  49654. },
  49655. digestiveTractFront: {
  49656. height: math.unit(2.8106580871, "feet"),
  49657. name: "Digestive Tract (Front)",
  49658. image: {
  49659. source: "./media/characters/jess/digestive-tract-front.svg"
  49660. }
  49661. },
  49662. digestiveTractSide: {
  49663. height: math.unit(2.54365045014, "feet"),
  49664. name: "Digestive Tract (Side)",
  49665. image: {
  49666. source: "./media/characters/jess/digestive-tract-side.svg"
  49667. }
  49668. },
  49669. respiratorySystemFront: {
  49670. height: math.unit(1.11196233456, "feet"),
  49671. name: "Respiratory System (Front)",
  49672. image: {
  49673. source: "./media/characters/jess/respiratory-system-front.svg"
  49674. }
  49675. },
  49676. respiratorySystemSide: {
  49677. height: math.unit(0.89327966297, "feet"),
  49678. name: "Respiratory System (Side)",
  49679. image: {
  49680. source: "./media/characters/jess/respiratory-system-side.svg"
  49681. }
  49682. },
  49683. urinaryTractFront: {
  49684. height: math.unit(1.16126356186, "feet"),
  49685. name: "Urinary Tract (Front)",
  49686. image: {
  49687. source: "./media/characters/jess/urinary-tract-front.svg"
  49688. }
  49689. },
  49690. urinaryTractSide: {
  49691. height: math.unit(1.20910039627, "feet"),
  49692. name: "Urinary Tract (Side)",
  49693. image: {
  49694. source: "./media/characters/jess/urinary-tract-side.svg"
  49695. }
  49696. },
  49697. reproductiveOrgansFront: {
  49698. height: math.unit(0.48422591566, "feet"),
  49699. name: "Reproductive Organs (Front)",
  49700. image: {
  49701. source: "./media/characters/jess/reproductive-organs-front.svg"
  49702. }
  49703. },
  49704. reproductiveOrgansSide: {
  49705. height: math.unit(0.61553314481, "feet"),
  49706. name: "Reproductive Organs (Side)",
  49707. image: {
  49708. source: "./media/characters/jess/reproductive-organs-side.svg"
  49709. }
  49710. },
  49711. breastsFront: {
  49712. height: math.unit(0.47690395121, "feet"),
  49713. name: "Breasts (Front)",
  49714. image: {
  49715. source: "./media/characters/jess/breasts-front.svg"
  49716. }
  49717. },
  49718. breastsSide: {
  49719. height: math.unit(0.30556998307, "feet"),
  49720. name: "Breasts (Side)",
  49721. image: {
  49722. source: "./media/characters/jess/breasts-side.svg"
  49723. }
  49724. },
  49725. heartFront: {
  49726. height: math.unit(0.53011022622, "feet"),
  49727. name: "Heart (Front)",
  49728. image: {
  49729. source: "./media/characters/jess/heart-front.svg"
  49730. }
  49731. },
  49732. heartSide: {
  49733. height: math.unit(0.51790695213, "feet"),
  49734. name: "Heart (Side)",
  49735. image: {
  49736. source: "./media/characters/jess/heart-side.svg"
  49737. }
  49738. },
  49739. earsAndNoseFront: {
  49740. height: math.unit(0.29385483995, "feet"),
  49741. name: "Ears and Nose (Front)",
  49742. image: {
  49743. source: "./media/characters/jess/ears-and-nose-front.svg"
  49744. }
  49745. },
  49746. earsAndNoseSide: {
  49747. height: math.unit(0.18109658741, "feet"),
  49748. name: "Ears and Nose (Side)",
  49749. image: {
  49750. source: "./media/characters/jess/ears-and-nose-side.svg"
  49751. }
  49752. },
  49753. },
  49754. [
  49755. {
  49756. name: "Normal",
  49757. height: math.unit(5 + 8/12, "feet"),
  49758. default: true
  49759. },
  49760. ]
  49761. ))
  49762. characterMakers.push(() => makeCharacter(
  49763. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49764. {
  49765. front: {
  49766. height: math.unit(6, "feet"),
  49767. weight: math.unit(6.64467e-7, "grams"),
  49768. name: "Front",
  49769. image: {
  49770. source: "./media/characters/wimpering/front.svg",
  49771. extra: 597/587,
  49772. bottom: 34/631
  49773. }
  49774. },
  49775. },
  49776. [
  49777. {
  49778. name: "Micro",
  49779. height: math.unit(0.4, "mm"),
  49780. default: true
  49781. },
  49782. ]
  49783. ))
  49784. characterMakers.push(() => makeCharacter(
  49785. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49786. {
  49787. front: {
  49788. height: math.unit(5 + 2/12, "feet"),
  49789. weight: math.unit(110, "lb"),
  49790. name: "Front",
  49791. image: {
  49792. source: "./media/characters/keltre/front.svg",
  49793. extra: 1099/1057,
  49794. bottom: 22/1121
  49795. }
  49796. },
  49797. back: {
  49798. height: math.unit(5 + 2/12, "feet"),
  49799. weight: math.unit(110, "lb"),
  49800. name: "Back",
  49801. image: {
  49802. source: "./media/characters/keltre/back.svg",
  49803. extra: 1095/1053,
  49804. bottom: 17/1112
  49805. }
  49806. },
  49807. dressed: {
  49808. height: math.unit(5 + 2/12, "feet"),
  49809. weight: math.unit(110, "lb"),
  49810. name: "Dressed",
  49811. image: {
  49812. source: "./media/characters/keltre/dressed.svg",
  49813. extra: 1099/1057,
  49814. bottom: 22/1121
  49815. }
  49816. },
  49817. winter: {
  49818. height: math.unit(5 + 2/12, "feet"),
  49819. weight: math.unit(110, "lb"),
  49820. name: "Winter",
  49821. image: {
  49822. source: "./media/characters/keltre/winter.svg",
  49823. extra: 1099/1057,
  49824. bottom: 22/1121
  49825. }
  49826. },
  49827. head: {
  49828. height: math.unit(1.61 * 0.86, "feet"),
  49829. name: "Head",
  49830. image: {
  49831. source: "./media/characters/keltre/head.svg",
  49832. extra: 534/421,
  49833. bottom: 0/534
  49834. }
  49835. },
  49836. hand: {
  49837. height: math.unit(1.3 * 0.86, "feet"),
  49838. name: "Hand",
  49839. image: {
  49840. source: "./media/characters/keltre/hand.svg"
  49841. }
  49842. },
  49843. foot: {
  49844. height: math.unit(1.8 * 0.86, "feet"),
  49845. name: "Foot",
  49846. image: {
  49847. source: "./media/characters/keltre/foot.svg"
  49848. }
  49849. },
  49850. },
  49851. [
  49852. {
  49853. name: "Fine",
  49854. height: math.unit(1, "inch")
  49855. },
  49856. {
  49857. name: "Dimnutive",
  49858. height: math.unit(4, "inches")
  49859. },
  49860. {
  49861. name: "Tiny",
  49862. height: math.unit(1, "foot")
  49863. },
  49864. {
  49865. name: "Small",
  49866. height: math.unit(3, "feet")
  49867. },
  49868. {
  49869. name: "Normal",
  49870. height: math.unit(5 + 2/12, "feet"),
  49871. default: true
  49872. },
  49873. ]
  49874. ))
  49875. characterMakers.push(() => makeCharacter(
  49876. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49877. {
  49878. front: {
  49879. height: math.unit(6 + 2/12, "feet"),
  49880. name: "Front",
  49881. image: {
  49882. source: "./media/characters/nox/front.svg",
  49883. extra: 1917/1830,
  49884. bottom: 74/1991
  49885. }
  49886. },
  49887. back: {
  49888. height: math.unit(6 + 2/12, "feet"),
  49889. name: "Back",
  49890. image: {
  49891. source: "./media/characters/nox/back.svg",
  49892. extra: 1896/1815,
  49893. bottom: 21/1917
  49894. }
  49895. },
  49896. head: {
  49897. height: math.unit(1.1, "feet"),
  49898. name: "Head",
  49899. image: {
  49900. source: "./media/characters/nox/head.svg",
  49901. extra: 874/704,
  49902. bottom: 0/874
  49903. }
  49904. },
  49905. tattoo: {
  49906. height: math.unit(0.729, "feet"),
  49907. name: "Tattoo",
  49908. image: {
  49909. source: "./media/characters/nox/tattoo.svg"
  49910. }
  49911. },
  49912. },
  49913. [
  49914. {
  49915. name: "Normal",
  49916. height: math.unit(6 + 2/12, "feet")
  49917. },
  49918. {
  49919. name: "Gigamacro",
  49920. height: math.unit(2, "earths"),
  49921. default: true
  49922. },
  49923. {
  49924. name: "Cosmic",
  49925. height: math.unit(867, "yottameters")
  49926. },
  49927. ]
  49928. ))
  49929. characterMakers.push(() => makeCharacter(
  49930. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49931. {
  49932. front: {
  49933. height: math.unit(6, "feet"),
  49934. weight: math.unit(150, "lb"),
  49935. name: "Front",
  49936. image: {
  49937. source: "./media/characters/caspian/front.svg",
  49938. extra: 1443/1359,
  49939. bottom: 0/1443
  49940. }
  49941. },
  49942. back: {
  49943. height: math.unit(6, "feet"),
  49944. weight: math.unit(150, "lb"),
  49945. name: "Back",
  49946. image: {
  49947. source: "./media/characters/caspian/back.svg",
  49948. extra: 1379/1309,
  49949. bottom: 0/1379
  49950. }
  49951. },
  49952. head: {
  49953. height: math.unit(0.9, "feet"),
  49954. name: "Head",
  49955. image: {
  49956. source: "./media/characters/caspian/head.svg",
  49957. extra: 692/492,
  49958. bottom: 0/692
  49959. }
  49960. },
  49961. headAlt: {
  49962. height: math.unit(0.95, "feet"),
  49963. name: "Head (Alt)",
  49964. image: {
  49965. source: "./media/characters/caspian/head-alt.svg",
  49966. extra: 668/508,
  49967. bottom: 0/668
  49968. }
  49969. },
  49970. hand: {
  49971. height: math.unit(0.8, "feet"),
  49972. name: "Hand",
  49973. image: {
  49974. source: "./media/characters/caspian/hand.svg"
  49975. }
  49976. },
  49977. paw: {
  49978. height: math.unit(0.95, "feet"),
  49979. name: "Paw",
  49980. image: {
  49981. source: "./media/characters/caspian/paw.svg"
  49982. }
  49983. },
  49984. },
  49985. [
  49986. {
  49987. name: "Normal",
  49988. height: math.unit(162, "feet"),
  49989. default: true
  49990. },
  49991. ]
  49992. ))
  49993. characterMakers.push(() => makeCharacter(
  49994. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49995. {
  49996. front: {
  49997. height: math.unit(6, "feet"),
  49998. name: "Front",
  49999. image: {
  50000. source: "./media/characters/myra-aisling/front.svg",
  50001. extra: 1268/1166,
  50002. bottom: 73/1341
  50003. }
  50004. },
  50005. back: {
  50006. height: math.unit(6, "feet"),
  50007. name: "Back",
  50008. image: {
  50009. source: "./media/characters/myra-aisling/back.svg",
  50010. extra: 1249/1149,
  50011. bottom: 79/1328
  50012. }
  50013. },
  50014. dressed: {
  50015. height: math.unit(6, "feet"),
  50016. name: "Dressed",
  50017. image: {
  50018. source: "./media/characters/myra-aisling/dressed.svg",
  50019. extra: 1290/1189,
  50020. bottom: 47/1337
  50021. }
  50022. },
  50023. hand: {
  50024. height: math.unit(1.1, "feet"),
  50025. name: "Hand",
  50026. image: {
  50027. source: "./media/characters/myra-aisling/hand.svg"
  50028. }
  50029. },
  50030. paw: {
  50031. height: math.unit(1.23, "feet"),
  50032. name: "Paw",
  50033. image: {
  50034. source: "./media/characters/myra-aisling/paw.svg"
  50035. }
  50036. },
  50037. },
  50038. [
  50039. {
  50040. name: "Normal",
  50041. height: math.unit(160, "feet"),
  50042. default: true
  50043. },
  50044. ]
  50045. ))
  50046. characterMakers.push(() => makeCharacter(
  50047. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50048. {
  50049. front: {
  50050. height: math.unit(6, "feet"),
  50051. name: "Front",
  50052. image: {
  50053. source: "./media/characters/tenley-sidero/front.svg",
  50054. extra: 1365/1276,
  50055. bottom: 47/1412
  50056. }
  50057. },
  50058. back: {
  50059. height: math.unit(6, "feet"),
  50060. name: "Back",
  50061. image: {
  50062. source: "./media/characters/tenley-sidero/back.svg",
  50063. extra: 1383/1283,
  50064. bottom: 35/1418
  50065. }
  50066. },
  50067. dressed: {
  50068. height: math.unit(6, "feet"),
  50069. name: "Dressed",
  50070. image: {
  50071. source: "./media/characters/tenley-sidero/dressed.svg",
  50072. extra: 1364/1275,
  50073. bottom: 42/1406
  50074. }
  50075. },
  50076. head: {
  50077. height: math.unit(1.47, "feet"),
  50078. name: "Head",
  50079. image: {
  50080. source: "./media/characters/tenley-sidero/head.svg",
  50081. extra: 610/490,
  50082. bottom: 0/610
  50083. }
  50084. },
  50085. },
  50086. [
  50087. {
  50088. name: "Normal",
  50089. height: math.unit(154, "feet"),
  50090. default: true
  50091. },
  50092. ]
  50093. ))
  50094. characterMakers.push(() => makeCharacter(
  50095. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50096. {
  50097. front: {
  50098. height: math.unit(5, "inches"),
  50099. name: "Front",
  50100. image: {
  50101. source: "./media/characters/mallory/front.svg",
  50102. extra: 1919/1678,
  50103. bottom: 29/1948
  50104. }
  50105. },
  50106. hand: {
  50107. height: math.unit(0.73, "inches"),
  50108. name: "Hand",
  50109. image: {
  50110. source: "./media/characters/mallory/hand.svg"
  50111. }
  50112. },
  50113. paw: {
  50114. height: math.unit(0.68, "inches"),
  50115. name: "Paw",
  50116. image: {
  50117. source: "./media/characters/mallory/paw.svg"
  50118. }
  50119. },
  50120. },
  50121. [
  50122. {
  50123. name: "Small",
  50124. height: math.unit(5, "inches"),
  50125. default: true
  50126. },
  50127. ]
  50128. ))
  50129. characterMakers.push(() => makeCharacter(
  50130. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50131. {
  50132. naked: {
  50133. height: math.unit(6, "feet"),
  50134. name: "Naked",
  50135. image: {
  50136. source: "./media/characters/mab/naked.svg",
  50137. extra: 1855/1757,
  50138. bottom: 208/2063
  50139. }
  50140. },
  50141. outside: {
  50142. height: math.unit(6, "feet"),
  50143. name: "Outside",
  50144. image: {
  50145. source: "./media/characters/mab/outside.svg",
  50146. extra: 1855/1757,
  50147. bottom: 208/2063
  50148. }
  50149. },
  50150. party: {
  50151. height: math.unit(6, "feet"),
  50152. name: "Party",
  50153. image: {
  50154. source: "./media/characters/mab/party.svg",
  50155. extra: 1855/1757,
  50156. bottom: 208/2063
  50157. }
  50158. },
  50159. },
  50160. [
  50161. {
  50162. name: "Normal",
  50163. height: math.unit(165, "feet"),
  50164. default: true
  50165. },
  50166. ]
  50167. ))
  50168. characterMakers.push(() => makeCharacter(
  50169. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50170. {
  50171. feral: {
  50172. height: math.unit(12, "feet"),
  50173. weight: math.unit(20000, "lb"),
  50174. name: "Side",
  50175. image: {
  50176. source: "./media/characters/winter/feral.svg",
  50177. extra: 1286/943,
  50178. bottom: 112/1398
  50179. },
  50180. form: "feral",
  50181. default: true
  50182. },
  50183. feralNsfw: {
  50184. height: math.unit(12, "feet"),
  50185. weight: math.unit(20000, "lb"),
  50186. name: "Side (NSFW)",
  50187. image: {
  50188. source: "./media/characters/winter/feral-nsfw.svg",
  50189. extra: 1286/943,
  50190. bottom: 112/1398
  50191. },
  50192. form: "feral"
  50193. },
  50194. dick: {
  50195. height: math.unit(3.79, "feet"),
  50196. name: "Dick",
  50197. image: {
  50198. source: "./media/characters/winter/dick.svg"
  50199. },
  50200. form: "feral"
  50201. },
  50202. anthro: {
  50203. height: math.unit(12, "feet"),
  50204. weight: math.unit(10, "tons"),
  50205. name: "Anthro",
  50206. image: {
  50207. source: "./media/characters/winter/anthro.svg",
  50208. extra: 1701/1553,
  50209. bottom: 64/1765
  50210. },
  50211. form: "anthro",
  50212. default: true
  50213. },
  50214. },
  50215. [
  50216. {
  50217. name: "Big",
  50218. height: math.unit(12, "feet"),
  50219. default: true,
  50220. form: "feral"
  50221. },
  50222. {
  50223. name: "Big",
  50224. height: math.unit(12, "feet"),
  50225. default: true,
  50226. form: "anthro"
  50227. },
  50228. ],
  50229. {
  50230. "feral": {
  50231. name: "Feral",
  50232. default: true
  50233. },
  50234. "anthro": {
  50235. name: "Anthro"
  50236. }
  50237. }
  50238. ))
  50239. characterMakers.push(() => makeCharacter(
  50240. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50241. {
  50242. front: {
  50243. height: math.unit(4.1, "inches"),
  50244. name: "Front",
  50245. image: {
  50246. source: "./media/characters/alto/front.svg",
  50247. extra: 736/627,
  50248. bottom: 90/826
  50249. }
  50250. },
  50251. },
  50252. [
  50253. {
  50254. name: "Normal",
  50255. height: math.unit(4.1, "inches"),
  50256. default: true
  50257. },
  50258. ]
  50259. ))
  50260. characterMakers.push(() => makeCharacter(
  50261. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50262. {
  50263. sitting: {
  50264. height: math.unit(3, "feet"),
  50265. name: "Sitting",
  50266. image: {
  50267. source: "./media/characters/ratstrid-v/sitting.svg",
  50268. extra: 355/310,
  50269. bottom: 136/491
  50270. }
  50271. },
  50272. },
  50273. [
  50274. {
  50275. name: "Normal",
  50276. height: math.unit(3, "feet"),
  50277. default: true
  50278. },
  50279. ]
  50280. ))
  50281. characterMakers.push(() => makeCharacter(
  50282. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50283. {
  50284. back: {
  50285. height: math.unit(6, "feet"),
  50286. weight: math.unit(450, "lb"),
  50287. name: "Back",
  50288. image: {
  50289. source: "./media/characters/siz/back.svg",
  50290. extra: 1449/1274,
  50291. bottom: 13/1462
  50292. }
  50293. },
  50294. },
  50295. [
  50296. {
  50297. name: "Smallest",
  50298. height: math.unit(18 + 3/12, "feet")
  50299. },
  50300. {
  50301. name: "Modest",
  50302. height: math.unit(56 + 8/12, "feet"),
  50303. default: true
  50304. },
  50305. {
  50306. name: "Largest",
  50307. height: math.unit(3590, "feet")
  50308. },
  50309. ]
  50310. ))
  50311. characterMakers.push(() => makeCharacter(
  50312. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50313. {
  50314. front: {
  50315. height: math.unit(5 + 9/12, "feet"),
  50316. weight: math.unit(150, "lb"),
  50317. name: "Front",
  50318. image: {
  50319. source: "./media/characters/ven/front.svg",
  50320. extra: 1372/1320,
  50321. bottom: 73/1445
  50322. }
  50323. },
  50324. side: {
  50325. height: math.unit(5 + 9/12, "feet"),
  50326. weight: math.unit(1150, "lb"),
  50327. name: "Side",
  50328. image: {
  50329. source: "./media/characters/ven/side.svg",
  50330. extra: 1119/1070,
  50331. bottom: 42/1161
  50332. },
  50333. default: true
  50334. },
  50335. },
  50336. [
  50337. {
  50338. name: "Normal",
  50339. height: math.unit(5 + 9/12, "feet"),
  50340. default: true
  50341. },
  50342. ]
  50343. ))
  50344. characterMakers.push(() => makeCharacter(
  50345. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50346. {
  50347. front: {
  50348. height: math.unit(12, "feet"),
  50349. weight: math.unit(1000, "kg"),
  50350. name: "Front",
  50351. image: {
  50352. source: "./media/characters/maple/front.svg",
  50353. extra: 1193/1081,
  50354. bottom: 22/1215
  50355. }
  50356. },
  50357. },
  50358. [
  50359. {
  50360. name: "Compressed",
  50361. height: math.unit(7, "feet")
  50362. },
  50363. {
  50364. name: "Normal",
  50365. height: math.unit(12, "feet"),
  50366. default: true
  50367. },
  50368. ]
  50369. ))
  50370. characterMakers.push(() => makeCharacter(
  50371. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50372. {
  50373. front: {
  50374. height: math.unit(9, "feet"),
  50375. weight: math.unit(1500, "lb"),
  50376. name: "Front",
  50377. image: {
  50378. source: "./media/characters/nora/front.svg",
  50379. extra: 1348/1286,
  50380. bottom: 218/1566
  50381. }
  50382. },
  50383. erect: {
  50384. height: math.unit(9, "feet"),
  50385. weight: math.unit(11500, "lb"),
  50386. name: "Erect",
  50387. image: {
  50388. source: "./media/characters/nora/erect.svg",
  50389. extra: 1488/1433,
  50390. bottom: 133/1621
  50391. }
  50392. },
  50393. },
  50394. [
  50395. {
  50396. name: "Normal",
  50397. height: math.unit(9, "feet"),
  50398. default: true
  50399. },
  50400. ]
  50401. ))
  50402. characterMakers.push(() => makeCharacter(
  50403. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50404. {
  50405. front: {
  50406. height: math.unit(25, "feet"),
  50407. weight: math.unit(27500, "lb"),
  50408. name: "Front",
  50409. image: {
  50410. source: "./media/characters/north-caudin/front.svg",
  50411. extra: 1184/1082,
  50412. bottom: 23/1207
  50413. }
  50414. },
  50415. },
  50416. [
  50417. {
  50418. name: "Compressed",
  50419. height: math.unit(10, "feet")
  50420. },
  50421. {
  50422. name: "Normal",
  50423. height: math.unit(25, "feet"),
  50424. default: true
  50425. },
  50426. ]
  50427. ))
  50428. characterMakers.push(() => makeCharacter(
  50429. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50430. {
  50431. front: {
  50432. height: math.unit(9, "feet"),
  50433. weight: math.unit(1250, "lb"),
  50434. name: "Front",
  50435. image: {
  50436. source: "./media/characters/merrian/front.svg",
  50437. extra: 2393/2304,
  50438. bottom: 40/2433
  50439. }
  50440. },
  50441. },
  50442. [
  50443. {
  50444. name: "Normal",
  50445. height: math.unit(9, "feet"),
  50446. default: true
  50447. },
  50448. ]
  50449. ))
  50450. characterMakers.push(() => makeCharacter(
  50451. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50452. {
  50453. front: {
  50454. height: math.unit(9, "feet"),
  50455. weight: math.unit(1000, "lb"),
  50456. name: "Front",
  50457. image: {
  50458. source: "./media/characters/hazel/front.svg",
  50459. extra: 2351/2298,
  50460. bottom: 38/2389
  50461. }
  50462. },
  50463. },
  50464. [
  50465. {
  50466. name: "Normal",
  50467. height: math.unit(9, "feet"),
  50468. default: true
  50469. },
  50470. ]
  50471. ))
  50472. characterMakers.push(() => makeCharacter(
  50473. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50474. {
  50475. front: {
  50476. height: math.unit(13, "feet"),
  50477. weight: math.unit(3200, "lb"),
  50478. name: "Front",
  50479. image: {
  50480. source: "./media/characters/emma/front.svg",
  50481. extra: 2263/2029,
  50482. bottom: 68/2331
  50483. }
  50484. },
  50485. },
  50486. [
  50487. {
  50488. name: "Normal",
  50489. height: math.unit(13, "feet"),
  50490. default: true
  50491. },
  50492. ]
  50493. ))
  50494. characterMakers.push(() => makeCharacter(
  50495. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50496. {
  50497. front: {
  50498. height: math.unit(11 + 9/12, "feet"),
  50499. weight: math.unit(2500, "lb"),
  50500. name: "Front",
  50501. image: {
  50502. source: "./media/characters/ilumina/front.svg",
  50503. extra: 2248/2209,
  50504. bottom: 164/2412
  50505. }
  50506. },
  50507. },
  50508. [
  50509. {
  50510. name: "Normal",
  50511. height: math.unit(11 + 9/12, "feet"),
  50512. default: true
  50513. },
  50514. ]
  50515. ))
  50516. characterMakers.push(() => makeCharacter(
  50517. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50518. {
  50519. front: {
  50520. height: math.unit(8 + 10/12, "feet"),
  50521. weight: math.unit(1350, "lb"),
  50522. name: "Front",
  50523. image: {
  50524. source: "./media/characters/moonshine/front.svg",
  50525. extra: 2395/2288,
  50526. bottom: 40/2435
  50527. }
  50528. },
  50529. },
  50530. [
  50531. {
  50532. name: "Normal",
  50533. height: math.unit(8 + 10/12, "feet"),
  50534. default: true
  50535. },
  50536. ]
  50537. ))
  50538. characterMakers.push(() => makeCharacter(
  50539. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  50540. {
  50541. front: {
  50542. height: math.unit(14, "feet"),
  50543. weight: math.unit(3400, "lb"),
  50544. name: "Front",
  50545. image: {
  50546. source: "./media/characters/aletia/front.svg",
  50547. extra: 1185/1052,
  50548. bottom: 21/1206
  50549. }
  50550. },
  50551. },
  50552. [
  50553. {
  50554. name: "Compressed",
  50555. height: math.unit(8, "feet")
  50556. },
  50557. {
  50558. name: "Normal",
  50559. height: math.unit(14, "feet"),
  50560. default: true
  50561. },
  50562. ]
  50563. ))
  50564. characterMakers.push(() => makeCharacter(
  50565. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  50566. {
  50567. front: {
  50568. height: math.unit(17, "feet"),
  50569. weight: math.unit(6500, "lb"),
  50570. name: "Front",
  50571. image: {
  50572. source: "./media/characters/deidra/front.svg",
  50573. extra: 1201/1081,
  50574. bottom: 16/1217
  50575. }
  50576. },
  50577. },
  50578. [
  50579. {
  50580. name: "Compressed",
  50581. height: math.unit(9 + 6/12, "feet")
  50582. },
  50583. {
  50584. name: "Normal",
  50585. height: math.unit(17, "feet"),
  50586. default: true
  50587. },
  50588. ]
  50589. ))
  50590. characterMakers.push(() => makeCharacter(
  50591. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  50592. {
  50593. front: {
  50594. height: math.unit(7 + 4/12, "feet"),
  50595. weight: math.unit(280, "lb"),
  50596. name: "Front",
  50597. image: {
  50598. source: "./media/characters/freki-yrmori/front.svg",
  50599. extra: 1286/1182,
  50600. bottom: 29/1315
  50601. }
  50602. },
  50603. maw: {
  50604. height: math.unit(0.9, "feet"),
  50605. name: "Maw",
  50606. image: {
  50607. source: "./media/characters/freki-yrmori/maw.svg"
  50608. }
  50609. },
  50610. },
  50611. [
  50612. {
  50613. name: "Normal",
  50614. height: math.unit(7 + 4/12, "feet"),
  50615. default: true
  50616. },
  50617. {
  50618. name: "Macro",
  50619. height: math.unit(38.5, "meters")
  50620. },
  50621. ]
  50622. ))
  50623. characterMakers.push(() => makeCharacter(
  50624. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  50625. {
  50626. side: {
  50627. height: math.unit(47.2, "meters"),
  50628. weight: math.unit(10000, "tons"),
  50629. name: "Side",
  50630. image: {
  50631. source: "./media/characters/aetherios/side.svg",
  50632. extra: 2363/642,
  50633. bottom: 221/2584
  50634. }
  50635. },
  50636. top: {
  50637. height: math.unit(240, "meters"),
  50638. weight: math.unit(10000, "tons"),
  50639. name: "Top",
  50640. image: {
  50641. source: "./media/characters/aetherios/top.svg"
  50642. }
  50643. },
  50644. bottom: {
  50645. height: math.unit(240, "meters"),
  50646. weight: math.unit(10000, "tons"),
  50647. name: "Bottom",
  50648. image: {
  50649. source: "./media/characters/aetherios/bottom.svg"
  50650. }
  50651. },
  50652. head: {
  50653. height: math.unit(38.6, "meters"),
  50654. name: "Head",
  50655. image: {
  50656. source: "./media/characters/aetherios/head.svg",
  50657. extra: 1335/1112,
  50658. bottom: 0/1335
  50659. }
  50660. },
  50661. front: {
  50662. height: math.unit(29, "meters"),
  50663. name: "Front",
  50664. image: {
  50665. source: "./media/characters/aetherios/front.svg",
  50666. extra: 1266/953,
  50667. bottom: 158/1424
  50668. }
  50669. },
  50670. maw: {
  50671. height: math.unit(16.37, "meters"),
  50672. name: "Maw",
  50673. image: {
  50674. source: "./media/characters/aetherios/maw.svg",
  50675. extra: 748/637,
  50676. bottom: 0/748
  50677. },
  50678. extraAttributes: {
  50679. preyCapacity: {
  50680. name: "Capacity",
  50681. power: 3,
  50682. type: "volume",
  50683. base: math.unit(1000, "people")
  50684. },
  50685. tongueSize: {
  50686. name: "Tongue Size",
  50687. power: 2,
  50688. type: "area",
  50689. base: math.unit(21, "m^2")
  50690. }
  50691. }
  50692. },
  50693. forepaw: {
  50694. height: math.unit(18, "meters"),
  50695. name: "Forepaw",
  50696. image: {
  50697. source: "./media/characters/aetherios/forepaw.svg"
  50698. }
  50699. },
  50700. hindpaw: {
  50701. height: math.unit(23, "meters"),
  50702. name: "Hindpaw",
  50703. image: {
  50704. source: "./media/characters/aetherios/hindpaw.svg"
  50705. }
  50706. },
  50707. genitals: {
  50708. height: math.unit(42, "meters"),
  50709. name: "Genitals",
  50710. image: {
  50711. source: "./media/characters/aetherios/genitals.svg"
  50712. }
  50713. },
  50714. },
  50715. [
  50716. {
  50717. name: "Normal",
  50718. height: math.unit(47.2, "meters"),
  50719. default: true
  50720. },
  50721. {
  50722. name: "Macro",
  50723. height: math.unit(160, "meters")
  50724. },
  50725. {
  50726. name: "Mega",
  50727. height: math.unit(1.87, "km")
  50728. },
  50729. {
  50730. name: "Giga",
  50731. height: math.unit(40000, "km")
  50732. },
  50733. {
  50734. name: "Stellar",
  50735. height: math.unit(158000000, "km")
  50736. },
  50737. {
  50738. name: "Cosmic",
  50739. height: math.unit(9.46e12, "km")
  50740. },
  50741. ]
  50742. ))
  50743. characterMakers.push(() => makeCharacter(
  50744. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50745. {
  50746. front: {
  50747. height: math.unit(5 + 4/12, "feet"),
  50748. weight: math.unit(80, "lb"),
  50749. name: "Front",
  50750. image: {
  50751. source: "./media/characters/mizu-gieeg/front.svg",
  50752. extra: 850/709,
  50753. bottom: 52/902
  50754. }
  50755. },
  50756. back: {
  50757. height: math.unit(5 + 4/12, "feet"),
  50758. weight: math.unit(80, "lb"),
  50759. name: "Back",
  50760. image: {
  50761. source: "./media/characters/mizu-gieeg/back.svg",
  50762. extra: 882/745,
  50763. bottom: 25/907
  50764. }
  50765. },
  50766. },
  50767. [
  50768. {
  50769. name: "Normal",
  50770. height: math.unit(5 + 4/12, "feet"),
  50771. default: true
  50772. },
  50773. ]
  50774. ))
  50775. characterMakers.push(() => makeCharacter(
  50776. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50777. {
  50778. front: {
  50779. height: math.unit(6, "feet"),
  50780. name: "Front",
  50781. image: {
  50782. source: "./media/characters/roselle-st-papier/front.svg",
  50783. extra: 1430/1280,
  50784. bottom: 37/1467
  50785. }
  50786. },
  50787. back: {
  50788. height: math.unit(6, "feet"),
  50789. name: "Back",
  50790. image: {
  50791. source: "./media/characters/roselle-st-papier/back.svg",
  50792. extra: 1491/1296,
  50793. bottom: 23/1514
  50794. }
  50795. },
  50796. ear: {
  50797. height: math.unit(1.26, "feet"),
  50798. name: "Ear",
  50799. image: {
  50800. source: "./media/characters/roselle-st-papier/ear.svg"
  50801. }
  50802. },
  50803. },
  50804. [
  50805. {
  50806. name: "Normal",
  50807. height: math.unit(150, "feet"),
  50808. default: true
  50809. },
  50810. ]
  50811. ))
  50812. characterMakers.push(() => makeCharacter(
  50813. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50814. {
  50815. front: {
  50816. height: math.unit(1, "inches"),
  50817. name: "Front",
  50818. image: {
  50819. source: "./media/characters/valargent/front.svg",
  50820. extra: 1825/1694,
  50821. bottom: 62/1887
  50822. }
  50823. },
  50824. back: {
  50825. height: math.unit(1, "inches"),
  50826. name: "Back",
  50827. image: {
  50828. source: "./media/characters/valargent/back.svg",
  50829. extra: 1775/1682,
  50830. bottom: 88/1863
  50831. }
  50832. },
  50833. },
  50834. [
  50835. {
  50836. name: "Micro",
  50837. height: math.unit(1, "inch"),
  50838. default: true
  50839. },
  50840. ]
  50841. ))
  50842. characterMakers.push(() => makeCharacter(
  50843. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50844. {
  50845. front: {
  50846. height: math.unit(3.4, "meters"),
  50847. name: "Front",
  50848. image: {
  50849. source: "./media/characters/zarina/front.svg",
  50850. extra: 1733/1425,
  50851. bottom: 93/1826
  50852. }
  50853. },
  50854. squatting: {
  50855. height: math.unit(2.14, "meters"),
  50856. name: "Squatting",
  50857. image: {
  50858. source: "./media/characters/zarina/squatting.svg",
  50859. extra: 1073/788,
  50860. bottom: 63/1136
  50861. }
  50862. },
  50863. back: {
  50864. height: math.unit(2.14, "meters"),
  50865. name: "Back",
  50866. image: {
  50867. source: "./media/characters/zarina/back.svg",
  50868. extra: 1128/885,
  50869. bottom: 0/1128
  50870. }
  50871. },
  50872. },
  50873. [
  50874. {
  50875. name: "Normal",
  50876. height: math.unit(3.4, "meters"),
  50877. default: true
  50878. },
  50879. {
  50880. name: "Big",
  50881. height: math.unit(5, "meters")
  50882. },
  50883. {
  50884. name: "Macro",
  50885. height: math.unit(110, "meters")
  50886. },
  50887. ]
  50888. ))
  50889. characterMakers.push(() => makeCharacter(
  50890. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50891. {
  50892. front: {
  50893. height: math.unit(7, "feet"),
  50894. name: "Front",
  50895. image: {
  50896. source: "./media/characters/ventus-astro-fox/front.svg",
  50897. extra: 1792/1623,
  50898. bottom: 28/1820
  50899. }
  50900. },
  50901. back: {
  50902. height: math.unit(7, "feet"),
  50903. name: "Back",
  50904. image: {
  50905. source: "./media/characters/ventus-astro-fox/back.svg",
  50906. extra: 1789/1620,
  50907. bottom: 31/1820
  50908. }
  50909. },
  50910. outfit: {
  50911. height: math.unit(7, "feet"),
  50912. name: "Outfit",
  50913. image: {
  50914. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50915. extra: 1054/925,
  50916. bottom: 15/1069
  50917. }
  50918. },
  50919. head: {
  50920. height: math.unit(1.12, "feet"),
  50921. name: "Head",
  50922. image: {
  50923. source: "./media/characters/ventus-astro-fox/head.svg",
  50924. extra: 866/504,
  50925. bottom: 0/866
  50926. }
  50927. },
  50928. hand: {
  50929. height: math.unit(1, "feet"),
  50930. name: "Hand",
  50931. image: {
  50932. source: "./media/characters/ventus-astro-fox/hand.svg"
  50933. }
  50934. },
  50935. paw: {
  50936. height: math.unit(1.5, "feet"),
  50937. name: "Paw",
  50938. image: {
  50939. source: "./media/characters/ventus-astro-fox/paw.svg"
  50940. }
  50941. },
  50942. },
  50943. [
  50944. {
  50945. name: "Normal",
  50946. height: math.unit(7, "feet"),
  50947. default: true
  50948. },
  50949. {
  50950. name: "Macro",
  50951. height: math.unit(200, "feet")
  50952. },
  50953. {
  50954. name: "Cosmic",
  50955. height: math.unit(3, "universes")
  50956. },
  50957. ]
  50958. ))
  50959. characterMakers.push(() => makeCharacter(
  50960. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50961. {
  50962. front: {
  50963. height: math.unit(3, "meters"),
  50964. weight: math.unit(7000, "lb"),
  50965. name: "Front",
  50966. image: {
  50967. source: "./media/characters/core-t/front.svg",
  50968. extra: 5729/4941,
  50969. bottom: 1129/6858
  50970. }
  50971. },
  50972. },
  50973. [
  50974. {
  50975. name: "Big",
  50976. height: math.unit(3, "meters"),
  50977. default: true
  50978. },
  50979. ]
  50980. ))
  50981. characterMakers.push(() => makeCharacter(
  50982. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50983. {
  50984. normal: {
  50985. height: math.unit(6 + 6/12, "feet"),
  50986. weight: math.unit(275, "lb"),
  50987. name: "Front",
  50988. image: {
  50989. source: "./media/characters/cadbunny/normal.svg",
  50990. extra: 1129/947,
  50991. bottom: 93/1222
  50992. },
  50993. default: true,
  50994. form: "normal"
  50995. },
  50996. gigantamax: {
  50997. height: math.unit(26, "feet"),
  50998. weight: math.unit(16000, "lb"),
  50999. name: "Front",
  51000. image: {
  51001. source: "./media/characters/cadbunny/gigantamax.svg",
  51002. extra: 1133/944,
  51003. bottom: 90/1223
  51004. },
  51005. default: true,
  51006. form: "gigantamax"
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(6 + 6/12, "feet"),
  51013. default: true,
  51014. form: "normal"
  51015. },
  51016. {
  51017. name: "Small",
  51018. height: math.unit(26, "feet"),
  51019. default: true,
  51020. form: "gigantamax"
  51021. },
  51022. {
  51023. name: "Large",
  51024. height: math.unit(78, "feet"),
  51025. form: "gigantamax"
  51026. },
  51027. ],
  51028. {
  51029. "normal": {
  51030. name: "Normal",
  51031. default: true
  51032. },
  51033. "gigantamax": {
  51034. name: "Gigantamax"
  51035. }
  51036. }
  51037. ))
  51038. characterMakers.push(() => makeCharacter(
  51039. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51040. {
  51041. anthroFront: {
  51042. height: math.unit(8, "feet"),
  51043. weight: math.unit(300, "lb"),
  51044. name: "Front",
  51045. image: {
  51046. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51047. extra: 1272/1176,
  51048. bottom: 53/1325
  51049. },
  51050. form: "anthro",
  51051. default: true
  51052. },
  51053. feralSide: {
  51054. height: math.unit(4, "feet"),
  51055. weight: math.unit(250, "lb"),
  51056. name: "Side",
  51057. image: {
  51058. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51059. extra: 731/621,
  51060. bottom: 0/731
  51061. },
  51062. form: "feral",
  51063. default: true
  51064. },
  51065. },
  51066. [
  51067. {
  51068. name: "Regular",
  51069. height: math.unit(8, "feet"),
  51070. form: "anthro"
  51071. },
  51072. {
  51073. name: "Macro",
  51074. height: math.unit(250, "feet"),
  51075. form: "anthro",
  51076. default: true
  51077. },
  51078. {
  51079. name: "Regular",
  51080. height: math.unit(4, "feet"),
  51081. form: "feral"
  51082. },
  51083. {
  51084. name: "Macro",
  51085. height: math.unit(125, "feet"),
  51086. form: "feral",
  51087. default: true
  51088. },
  51089. ],
  51090. {
  51091. "anthro": {
  51092. name: "Anthro",
  51093. default: true
  51094. },
  51095. "feral": {
  51096. name: "Feral",
  51097. },
  51098. }
  51099. ))
  51100. characterMakers.push(() => makeCharacter(
  51101. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51102. {
  51103. front: {
  51104. height: math.unit(11 + 10/12, "feet"),
  51105. weight: math.unit(1587, "kg"),
  51106. name: "Front",
  51107. image: {
  51108. source: "./media/characters/maple-javira-dragon/front.svg",
  51109. extra: 1136/744,
  51110. bottom: 73/1209
  51111. }
  51112. },
  51113. side: {
  51114. height: math.unit(11 + 10/12, "feet"),
  51115. weight: math.unit(1587, "kg"),
  51116. name: "Side",
  51117. image: {
  51118. source: "./media/characters/maple-javira-dragon/side.svg",
  51119. extra: 712/505,
  51120. bottom: 17/729
  51121. }
  51122. },
  51123. head: {
  51124. height: math.unit(8.05, "feet"),
  51125. name: "Head",
  51126. image: {
  51127. source: "./media/characters/maple-javira-dragon/head.svg",
  51128. extra: 1420/1344,
  51129. bottom: 0/1420
  51130. }
  51131. },
  51132. },
  51133. [
  51134. {
  51135. name: "Normal",
  51136. height: math.unit(11 + 10/12, "feet"),
  51137. default: true
  51138. },
  51139. ]
  51140. ))
  51141. characterMakers.push(() => makeCharacter(
  51142. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51143. {
  51144. front: {
  51145. height: math.unit(117, "cm"),
  51146. weight: math.unit(50, "kg"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/sonia-wyverntail/front.svg",
  51150. extra: 708/592,
  51151. bottom: 25/733
  51152. }
  51153. },
  51154. },
  51155. [
  51156. {
  51157. name: "Normal",
  51158. height: math.unit(117, "cm"),
  51159. default: true
  51160. },
  51161. ]
  51162. ))
  51163. characterMakers.push(() => makeCharacter(
  51164. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51165. {
  51166. front: {
  51167. height: math.unit(6 + 5/12, "feet"),
  51168. name: "Front",
  51169. image: {
  51170. source: "./media/characters/micah/front.svg",
  51171. extra: 1758/1546,
  51172. bottom: 214/1972
  51173. }
  51174. },
  51175. },
  51176. [
  51177. {
  51178. name: "Normal",
  51179. height: math.unit(6 + 5/12, "feet"),
  51180. default: true
  51181. },
  51182. ]
  51183. ))
  51184. characterMakers.push(() => makeCharacter(
  51185. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  51186. {
  51187. front: {
  51188. height: math.unit(5 + 10/12, "feet"),
  51189. weight: math.unit(220, "lb"),
  51190. name: "Front",
  51191. image: {
  51192. source: "./media/characters/zarya/front.svg",
  51193. extra: 593/572,
  51194. bottom: 50/643
  51195. }
  51196. },
  51197. back: {
  51198. height: math.unit(5 + 10/12, "feet"),
  51199. weight: math.unit(220, "lb"),
  51200. name: "Back",
  51201. image: {
  51202. source: "./media/characters/zarya/back.svg",
  51203. extra: 603/582,
  51204. bottom: 38/641
  51205. }
  51206. },
  51207. },
  51208. [
  51209. {
  51210. name: "Normal",
  51211. height: math.unit(5 + 10/12, "feet"),
  51212. default: true
  51213. },
  51214. ]
  51215. ))
  51216. characterMakers.push(() => makeCharacter(
  51217. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51218. {
  51219. front: {
  51220. height: math.unit(7.5, "feet"),
  51221. name: "Front",
  51222. image: {
  51223. source: "./media/characters/sven-hatisson/front.svg",
  51224. extra: 917/857,
  51225. bottom: 42/959
  51226. }
  51227. },
  51228. back: {
  51229. height: math.unit(7.5, "feet"),
  51230. name: "Back",
  51231. image: {
  51232. source: "./media/characters/sven-hatisson/back.svg",
  51233. extra: 903/856,
  51234. bottom: 15/918
  51235. }
  51236. },
  51237. },
  51238. [
  51239. {
  51240. name: "Base Height",
  51241. height: math.unit(7.5, "feet")
  51242. },
  51243. {
  51244. name: "Usual Height",
  51245. height: math.unit(13.5, "feet"),
  51246. default: true
  51247. },
  51248. {
  51249. name: "Smaller Macro",
  51250. height: math.unit(85, "feet")
  51251. },
  51252. {
  51253. name: "Moderate Macro",
  51254. height: math.unit(320, "feet")
  51255. },
  51256. {
  51257. name: "Large Macro",
  51258. height: math.unit(1000, "feet")
  51259. },
  51260. {
  51261. name: "Largest Size",
  51262. height: math.unit(2, "miles")
  51263. },
  51264. ]
  51265. ))
  51266. characterMakers.push(() => makeCharacter(
  51267. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51268. {
  51269. side: {
  51270. height: math.unit(1.8, "meters"),
  51271. weight: math.unit(275, "kg"),
  51272. name: "Side",
  51273. image: {
  51274. source: "./media/characters/terra/side.svg",
  51275. extra: 1273/1147,
  51276. bottom: 0/1273
  51277. }
  51278. },
  51279. },
  51280. [
  51281. {
  51282. name: "Normal",
  51283. height: math.unit(16.2, "meters"),
  51284. default: true
  51285. },
  51286. ]
  51287. ))
  51288. characterMakers.push(() => makeCharacter(
  51289. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51290. {
  51291. borzoiFront: {
  51292. height: math.unit(6 + 9/12, "feet"),
  51293. name: "Front",
  51294. image: {
  51295. source: "./media/characters/rae/borzoi-front.svg",
  51296. extra: 1161/1098,
  51297. bottom: 31/1192
  51298. },
  51299. form: "borzoi",
  51300. default: true
  51301. },
  51302. werewolfFront: {
  51303. height: math.unit(8 + 7/12, "feet"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/rae/werewolf-front.svg",
  51307. extra: 1411/1334,
  51308. bottom: 127/1538
  51309. },
  51310. form: "werewolf",
  51311. default: true
  51312. },
  51313. },
  51314. [
  51315. {
  51316. name: "Normal",
  51317. height: math.unit(6 + 9/12, "feet"),
  51318. default: true,
  51319. form: "borzoi"
  51320. },
  51321. {
  51322. name: "Normal",
  51323. height: math.unit(8 + 7/12, "feet"),
  51324. default: true,
  51325. form: "werewolf"
  51326. },
  51327. ],
  51328. {
  51329. "borzoi": {
  51330. name: "Borzoi",
  51331. default: true
  51332. },
  51333. "werewolf": {
  51334. name: "Werewolf",
  51335. },
  51336. }
  51337. ))
  51338. characterMakers.push(() => makeCharacter(
  51339. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51340. {
  51341. front: {
  51342. height: math.unit(8 + 7/12, "feet"),
  51343. weight: math.unit(482, "lb"),
  51344. name: "Front",
  51345. image: {
  51346. source: "./media/characters/kit/front.svg",
  51347. extra: 1247/1103,
  51348. bottom: 41/1288
  51349. }
  51350. },
  51351. back: {
  51352. height: math.unit(8 + 7/12, "feet"),
  51353. weight: math.unit(482, "lb"),
  51354. name: "Back",
  51355. image: {
  51356. source: "./media/characters/kit/back.svg",
  51357. extra: 1252/1123,
  51358. bottom: 21/1273
  51359. }
  51360. },
  51361. paw: {
  51362. height: math.unit(1.46, "feet"),
  51363. name: "Paw",
  51364. image: {
  51365. source: "./media/characters/kit/paw.svg"
  51366. }
  51367. },
  51368. },
  51369. [
  51370. {
  51371. name: "Normal",
  51372. height: math.unit(2.61, "meters"),
  51373. default: true
  51374. },
  51375. {
  51376. name: "\"Tall\"",
  51377. height: math.unit(8.21, "meters")
  51378. },
  51379. {
  51380. name: "Tall",
  51381. height: math.unit(19.6, "meters")
  51382. },
  51383. {
  51384. name: "Very Tall",
  51385. height: math.unit(57.91, "meters")
  51386. },
  51387. {
  51388. name: "Semi-Macro",
  51389. height: math.unit(138.64, "meters")
  51390. },
  51391. {
  51392. name: "Macro",
  51393. height: math.unit(831.99, "meters")
  51394. },
  51395. {
  51396. name: "EX-Macro",
  51397. height: math.unit(96451121, "meters")
  51398. },
  51399. {
  51400. name: "S1-Omnipotent",
  51401. height: math.unit(4.42074e+9, "meters")
  51402. },
  51403. {
  51404. name: "S2-Omnipotent",
  51405. height: math.unit(9.42074e+17, "meters")
  51406. },
  51407. {
  51408. name: "Omnipotent",
  51409. height: math.unit(4.23112e+24, "meters")
  51410. },
  51411. {
  51412. name: "Hypergod",
  51413. height: math.unit(5.05176e+27, "meters")
  51414. },
  51415. {
  51416. name: "Hypergod-EX",
  51417. height: math.unit(9.45532e+49, "meters")
  51418. },
  51419. {
  51420. name: "Hypergod-SP",
  51421. height: math.unit(9.45532e+195, "meters")
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  51427. {
  51428. side: {
  51429. height: math.unit(0.6, "meters"),
  51430. weight: math.unit(24, "kg"),
  51431. name: "Side",
  51432. image: {
  51433. source: "./media/characters/celeste/side.svg",
  51434. extra: 810/517,
  51435. bottom: 53/863
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Velociraptor",
  51442. height: math.unit(0.6, "meters"),
  51443. default: true
  51444. },
  51445. {
  51446. name: "Utahraptor",
  51447. height: math.unit(1.8, "meters")
  51448. },
  51449. {
  51450. name: "Gallimimus",
  51451. height: math.unit(4.0, "meters")
  51452. },
  51453. {
  51454. name: "Large",
  51455. height: math.unit(20, "meters")
  51456. },
  51457. {
  51458. name: "Planetary",
  51459. height: math.unit(50, "megameters")
  51460. },
  51461. {
  51462. name: "Stellar",
  51463. height: math.unit(1.5, "gigameters")
  51464. },
  51465. {
  51466. name: "Galactic",
  51467. height: math.unit(100, "exameters")
  51468. },
  51469. ]
  51470. ))
  51471. characterMakers.push(() => makeCharacter(
  51472. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  51473. {
  51474. front: {
  51475. height: math.unit(6, "feet"),
  51476. weight: math.unit(210, "lb"),
  51477. name: "Front",
  51478. image: {
  51479. source: "./media/characters/glacia/front.svg",
  51480. extra: 958/901,
  51481. bottom: 45/1003
  51482. }
  51483. },
  51484. },
  51485. [
  51486. {
  51487. name: "Macro",
  51488. height: math.unit(1000, "meters"),
  51489. default: true
  51490. },
  51491. ]
  51492. ))
  51493. characterMakers.push(() => makeCharacter(
  51494. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  51495. {
  51496. front: {
  51497. height: math.unit(4, "meters"),
  51498. name: "Front",
  51499. image: {
  51500. source: "./media/characters/giri/front.svg",
  51501. extra: 966/894,
  51502. bottom: 21/987
  51503. }
  51504. },
  51505. },
  51506. [
  51507. {
  51508. name: "Normal",
  51509. height: math.unit(4, "meters"),
  51510. default: true
  51511. },
  51512. ]
  51513. ))
  51514. characterMakers.push(() => makeCharacter(
  51515. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  51516. {
  51517. back: {
  51518. height: math.unit(4, "feet"),
  51519. weight: math.unit(37, "lb"),
  51520. name: "Back",
  51521. image: {
  51522. source: "./media/characters/tin/back.svg",
  51523. extra: 845/780,
  51524. bottom: 28/873
  51525. }
  51526. },
  51527. },
  51528. [
  51529. {
  51530. name: "Normal",
  51531. height: math.unit(4, "feet"),
  51532. default: true
  51533. },
  51534. ]
  51535. ))
  51536. characterMakers.push(() => makeCharacter(
  51537. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  51538. {
  51539. front: {
  51540. height: math.unit(25, "feet"),
  51541. name: "Front",
  51542. image: {
  51543. source: "./media/characters/cadenza-vivace/front.svg",
  51544. extra: 1842/1578,
  51545. bottom: 30/1872
  51546. }
  51547. },
  51548. },
  51549. [
  51550. {
  51551. name: "Macro",
  51552. height: math.unit(25, "feet"),
  51553. default: true
  51554. },
  51555. ]
  51556. ))
  51557. characterMakers.push(() => makeCharacter(
  51558. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  51559. {
  51560. front: {
  51561. height: math.unit(10, "feet"),
  51562. weight: math.unit(625, "kg"),
  51563. name: "Front",
  51564. image: {
  51565. source: "./media/characters/zain/front.svg",
  51566. extra: 1682/1498,
  51567. bottom: 223/1905
  51568. }
  51569. },
  51570. back: {
  51571. height: math.unit(10, "feet"),
  51572. weight: math.unit(625, "kg"),
  51573. name: "Back",
  51574. image: {
  51575. source: "./media/characters/zain/back.svg",
  51576. extra: 1814/1657,
  51577. bottom: 152/1966
  51578. }
  51579. },
  51580. head: {
  51581. height: math.unit(10, "feet"),
  51582. weight: math.unit(625, "kg"),
  51583. name: "Head",
  51584. image: {
  51585. source: "./media/characters/zain/head.svg",
  51586. extra: 1059/762,
  51587. bottom: 0/1059
  51588. }
  51589. },
  51590. },
  51591. [
  51592. {
  51593. name: "Normal",
  51594. height: math.unit(10, "feet"),
  51595. default: true
  51596. },
  51597. ]
  51598. ))
  51599. characterMakers.push(() => makeCharacter(
  51600. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  51601. {
  51602. front: {
  51603. height: math.unit(6 + 5/12, "feet"),
  51604. weight: math.unit(750, "lb"),
  51605. name: "Front",
  51606. image: {
  51607. source: "./media/characters/ruchex/front.svg",
  51608. extra: 877/820,
  51609. bottom: 17/894
  51610. },
  51611. extraAttributes: {
  51612. "width": {
  51613. name: "Width",
  51614. power: 1,
  51615. type: "length",
  51616. base: math.unit(4.757, "feet")
  51617. },
  51618. }
  51619. },
  51620. },
  51621. [
  51622. {
  51623. name: "Normal",
  51624. height: math.unit(6 + 5/12, "feet"),
  51625. default: true
  51626. },
  51627. ]
  51628. ))
  51629. characterMakers.push(() => makeCharacter(
  51630. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  51631. {
  51632. dressedFront: {
  51633. height: math.unit(191, "cm"),
  51634. weight: math.unit(80, "kg"),
  51635. name: "Front",
  51636. image: {
  51637. source: "./media/characters/buster/dressed-front.svg",
  51638. extra: 1022/973,
  51639. bottom: 69/1091
  51640. }
  51641. },
  51642. dressedBack: {
  51643. height: math.unit(191, "cm"),
  51644. weight: math.unit(80, "kg"),
  51645. name: "Back",
  51646. image: {
  51647. source: "./media/characters/buster/dressed-back.svg",
  51648. extra: 1018/970,
  51649. bottom: 55/1073
  51650. }
  51651. },
  51652. nudeFront: {
  51653. height: math.unit(191, "cm"),
  51654. weight: math.unit(80, "kg"),
  51655. name: "Front (Nude)",
  51656. image: {
  51657. source: "./media/characters/buster/nude-front.svg",
  51658. extra: 1022/973,
  51659. bottom: 69/1091
  51660. }
  51661. },
  51662. nudeBack: {
  51663. height: math.unit(191, "cm"),
  51664. weight: math.unit(80, "kg"),
  51665. name: "Back (Nude)",
  51666. image: {
  51667. source: "./media/characters/buster/nude-back.svg",
  51668. extra: 1018/970,
  51669. bottom: 55/1073
  51670. }
  51671. },
  51672. dick: {
  51673. height: math.unit(2.59, "feet"),
  51674. name: "Dick",
  51675. image: {
  51676. source: "./media/characters/buster/dick.svg"
  51677. }
  51678. },
  51679. ass: {
  51680. height: math.unit(1.2, "feet"),
  51681. name: "Ass",
  51682. image: {
  51683. source: "./media/characters/buster/ass.svg"
  51684. }
  51685. },
  51686. },
  51687. [
  51688. {
  51689. name: "Normal",
  51690. height: math.unit(191, "cm"),
  51691. default: true
  51692. },
  51693. ]
  51694. ))
  51695. characterMakers.push(() => makeCharacter(
  51696. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51697. {
  51698. side: {
  51699. height: math.unit(8.1, "feet"),
  51700. weight: math.unit(3500, "lb"),
  51701. name: "Side",
  51702. image: {
  51703. source: "./media/characters/sonya/side.svg",
  51704. extra: 1730/1317,
  51705. bottom: 86/1816
  51706. }
  51707. },
  51708. },
  51709. [
  51710. {
  51711. name: "Normal",
  51712. height: math.unit(8.1, "feet"),
  51713. default: true
  51714. },
  51715. ]
  51716. ))
  51717. characterMakers.push(() => makeCharacter(
  51718. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51719. {
  51720. front: {
  51721. height: math.unit(6, "feet"),
  51722. weight: math.unit(150, "lb"),
  51723. name: "Front",
  51724. image: {
  51725. source: "./media/characters/cadence-andrysiak/front.svg",
  51726. extra: 1164/1121,
  51727. bottom: 60/1224
  51728. }
  51729. },
  51730. back: {
  51731. height: math.unit(6, "feet"),
  51732. weight: math.unit(150, "lb"),
  51733. name: "Back",
  51734. image: {
  51735. source: "./media/characters/cadence-andrysiak/back.svg",
  51736. extra: 1200/1165,
  51737. bottom: 9/1209
  51738. }
  51739. },
  51740. dressed: {
  51741. height: math.unit(6, "feet"),
  51742. weight: math.unit(150, "lb"),
  51743. name: "Dressed",
  51744. image: {
  51745. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51746. extra: 1164/1121,
  51747. bottom: 60/1224
  51748. }
  51749. },
  51750. },
  51751. [
  51752. {
  51753. name: "Micro",
  51754. height: math.unit(1, "mm")
  51755. },
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(6, "feet"),
  51759. default: true
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(60, "inches"),
  51768. weight: math.unit(16, "lb"),
  51769. preyCapacity: math.unit(80, "liters"),
  51770. name: "Front",
  51771. image: {
  51772. source: "./media/characters/penny-lynx/front.svg",
  51773. extra: 1959/1769,
  51774. bottom: 49/2008
  51775. }
  51776. },
  51777. },
  51778. [
  51779. {
  51780. name: "Nokia",
  51781. height: math.unit(2, "inches")
  51782. },
  51783. {
  51784. name: "Desktop",
  51785. height: math.unit(24, "inches")
  51786. },
  51787. {
  51788. name: "TV",
  51789. height: math.unit(60, "inches")
  51790. },
  51791. {
  51792. name: "Jumbotron",
  51793. height: math.unit(12, "feet")
  51794. },
  51795. {
  51796. name: "Billboard",
  51797. height: math.unit(48, "feet"),
  51798. default: true
  51799. },
  51800. {
  51801. name: "IMAX",
  51802. height: math.unit(96, "feet")
  51803. },
  51804. {
  51805. name: "SINGULARITY",
  51806. height: math.unit(864938, "miles")
  51807. },
  51808. ]
  51809. ))
  51810. characterMakers.push(() => makeCharacter(
  51811. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51812. {
  51813. front: {
  51814. height: math.unit(5 + 4/12, "feet"),
  51815. weight: math.unit(230, "lb"),
  51816. name: "Front",
  51817. image: {
  51818. source: "./media/characters/sukebe/front.svg",
  51819. extra: 2130/2038,
  51820. bottom: 90/2220
  51821. }
  51822. },
  51823. back: {
  51824. height: math.unit(3.48, "feet"),
  51825. weight: math.unit(230, "lb"),
  51826. name: "Back",
  51827. image: {
  51828. source: "./media/characters/sukebe/back.svg",
  51829. extra: 1670/1604,
  51830. bottom: 0/1670
  51831. }
  51832. },
  51833. },
  51834. [
  51835. {
  51836. name: "Normal",
  51837. height: math.unit(5 + 4/12, "feet"),
  51838. default: true
  51839. },
  51840. ]
  51841. ))
  51842. characterMakers.push(() => makeCharacter(
  51843. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51844. {
  51845. front: {
  51846. height: math.unit(6, "feet"),
  51847. name: "Front",
  51848. image: {
  51849. source: "./media/characters/nylla/front.svg",
  51850. extra: 1868/1699,
  51851. bottom: 97/1965
  51852. }
  51853. },
  51854. back: {
  51855. height: math.unit(6, "feet"),
  51856. name: "Back",
  51857. image: {
  51858. source: "./media/characters/nylla/back.svg",
  51859. extra: 1889/1712,
  51860. bottom: 93/1982
  51861. }
  51862. },
  51863. frontNsfw: {
  51864. height: math.unit(6, "feet"),
  51865. name: "Front (NSFW)",
  51866. image: {
  51867. source: "./media/characters/nylla/front-nsfw.svg",
  51868. extra: 1868/1699,
  51869. bottom: 97/1965
  51870. },
  51871. extraAttributes: {
  51872. "dickLength": {
  51873. name: "Dick Length",
  51874. power: 1,
  51875. type: "length",
  51876. base: math.unit(1.4, "feet")
  51877. },
  51878. "cumVolume": {
  51879. name: "Cum Volume",
  51880. power: 3,
  51881. type: "volume",
  51882. base: math.unit(100, "mL")
  51883. },
  51884. }
  51885. },
  51886. backNsfw: {
  51887. height: math.unit(6, "feet"),
  51888. name: "Back (NSFW)",
  51889. image: {
  51890. source: "./media/characters/nylla/back-nsfw.svg",
  51891. extra: 1889/1712,
  51892. bottom: 93/1982
  51893. }
  51894. },
  51895. maw: {
  51896. height: math.unit(2.10, "feet"),
  51897. name: "Maw",
  51898. image: {
  51899. source: "./media/characters/nylla/maw.svg"
  51900. }
  51901. },
  51902. paws: {
  51903. height: math.unit(2.06, "feet"),
  51904. name: "Paws",
  51905. image: {
  51906. source: "./media/characters/nylla/paws.svg"
  51907. }
  51908. },
  51909. muzzle: {
  51910. height: math.unit(0.61, "feet"),
  51911. name: "Muzzle",
  51912. image: {
  51913. source: "./media/characters/nylla/muzzle.svg"
  51914. }
  51915. },
  51916. sheath: {
  51917. height: math.unit(1.305, "feet"),
  51918. name: "Sheath",
  51919. image: {
  51920. source: "./media/characters/nylla/sheath.svg"
  51921. }
  51922. },
  51923. },
  51924. [
  51925. {
  51926. name: "Micro",
  51927. height: math.unit(7.5, "inches")
  51928. },
  51929. {
  51930. name: "Normal",
  51931. height: math.unit(7, "feet"),
  51932. default: true
  51933. },
  51934. {
  51935. name: "Macro",
  51936. height: math.unit(60, "feet")
  51937. },
  51938. {
  51939. name: "Mega",
  51940. height: math.unit(200, "feet")
  51941. },
  51942. ]
  51943. ))
  51944. characterMakers.push(() => makeCharacter(
  51945. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51946. {
  51947. front: {
  51948. height: math.unit(10, "feet"),
  51949. weight: math.unit(2300, "lb"),
  51950. name: "Front",
  51951. image: {
  51952. source: "./media/characters/hunt3r/front.svg",
  51953. extra: 1909/1742,
  51954. bottom: 46/1955
  51955. }
  51956. },
  51957. },
  51958. [
  51959. {
  51960. name: "Normal",
  51961. height: math.unit(10, "feet"),
  51962. default: true
  51963. },
  51964. ]
  51965. ))
  51966. characterMakers.push(() => makeCharacter(
  51967. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51968. {
  51969. dressed: {
  51970. height: math.unit(11, "feet"),
  51971. weight: math.unit(18500, "lb"),
  51972. preyCapacity: math.unit(9, "people"),
  51973. name: "Dressed",
  51974. image: {
  51975. source: "./media/characters/cylphis/dressed.svg",
  51976. extra: 1028/1003,
  51977. bottom: 75/1103
  51978. },
  51979. },
  51980. undressed: {
  51981. height: math.unit(11, "feet"),
  51982. weight: math.unit(18500, "lb"),
  51983. preyCapacity: math.unit(9, "people"),
  51984. name: "Undressed",
  51985. image: {
  51986. source: "./media/characters/cylphis/undressed.svg",
  51987. extra: 1028/1003,
  51988. bottom: 75/1103
  51989. }
  51990. },
  51991. full: {
  51992. height: math.unit(11, "feet"),
  51993. weight: math.unit(18500 + 150*9, "lb"),
  51994. preyCapacity: math.unit(9, "people"),
  51995. name: "Full",
  51996. image: {
  51997. source: "./media/characters/cylphis/full.svg",
  51998. extra: 1028/1003,
  51999. bottom: 75/1103
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Small",
  52006. height: math.unit(8, "feet")
  52007. },
  52008. {
  52009. name: "Normal",
  52010. height: math.unit(11, "feet"),
  52011. default: true
  52012. },
  52013. ]
  52014. ))
  52015. characterMakers.push(() => makeCharacter(
  52016. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52017. {
  52018. front: {
  52019. height: math.unit(2 + 7/12, "feet"),
  52020. name: "Front",
  52021. image: {
  52022. source: "./media/characters/orishan/front.svg",
  52023. extra: 1058/1023,
  52024. bottom: 23/1081
  52025. }
  52026. },
  52027. back: {
  52028. height: math.unit(2 + 7/12, "feet"),
  52029. name: "Back",
  52030. image: {
  52031. source: "./media/characters/orishan/back.svg",
  52032. extra: 1058/1023,
  52033. bottom: 23/1081
  52034. }
  52035. },
  52036. },
  52037. [
  52038. {
  52039. name: "Micro",
  52040. height: math.unit(2, "cm")
  52041. },
  52042. {
  52043. name: "Normal",
  52044. height: math.unit(2 + 7/12, "feet"),
  52045. default: true
  52046. },
  52047. ]
  52048. ))
  52049. characterMakers.push(() => makeCharacter(
  52050. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52051. {
  52052. front: {
  52053. height: math.unit(3, "meters"),
  52054. weight: math.unit(508, "kg"),
  52055. name: "Front",
  52056. image: {
  52057. source: "./media/characters/seranis/front.svg",
  52058. extra: 1478/1454,
  52059. bottom: 41/1519
  52060. }
  52061. },
  52062. },
  52063. [
  52064. {
  52065. name: "Normal",
  52066. height: math.unit(3, "meters"),
  52067. default: true
  52068. },
  52069. {
  52070. name: "Macro",
  52071. height: math.unit(108, "meters")
  52072. },
  52073. {
  52074. name: "Megamacro",
  52075. height: math.unit(1250, "meters")
  52076. },
  52077. ]
  52078. ))
  52079. characterMakers.push(() => makeCharacter(
  52080. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52081. {
  52082. undressed: {
  52083. height: math.unit(5 + 3/12, "feet"),
  52084. name: "Undressed",
  52085. image: {
  52086. source: "./media/characters/ankou/undressed.svg",
  52087. extra: 1301/1213,
  52088. bottom: 87/1388
  52089. }
  52090. },
  52091. dressed: {
  52092. height: math.unit(5 + 3/12, "feet"),
  52093. name: "Dressed",
  52094. image: {
  52095. source: "./media/characters/ankou/dressed.svg",
  52096. extra: 1301/1213,
  52097. bottom: 87/1388
  52098. }
  52099. },
  52100. head: {
  52101. height: math.unit(1.61, "feet"),
  52102. name: "Head",
  52103. image: {
  52104. source: "./media/characters/ankou/head.svg"
  52105. }
  52106. },
  52107. },
  52108. [
  52109. {
  52110. name: "Normal",
  52111. height: math.unit(5 + 3/12, "feet"),
  52112. default: true
  52113. },
  52114. ]
  52115. ))
  52116. characterMakers.push(() => makeCharacter(
  52117. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52118. {
  52119. side: {
  52120. height: math.unit(6 + 3/12, "feet"),
  52121. weight: math.unit(200, "kg"),
  52122. name: "Side",
  52123. image: {
  52124. source: "./media/characters/juniper-skunktaur/side.svg",
  52125. extra: 1574/1229,
  52126. bottom: 38/1612
  52127. }
  52128. },
  52129. front: {
  52130. height: math.unit(6 + 3/12, "feet"),
  52131. weight: math.unit(200, "kg"),
  52132. name: "Front",
  52133. image: {
  52134. source: "./media/characters/juniper-skunktaur/front.svg",
  52135. extra: 1337/1278,
  52136. bottom: 22/1359
  52137. }
  52138. },
  52139. back: {
  52140. height: math.unit(6 + 3/12, "feet"),
  52141. weight: math.unit(200, "kg"),
  52142. name: "Back",
  52143. image: {
  52144. source: "./media/characters/juniper-skunktaur/back.svg",
  52145. extra: 1618/1273,
  52146. bottom: 13/1631
  52147. }
  52148. },
  52149. top: {
  52150. height: math.unit(2.62, "feet"),
  52151. weight: math.unit(200, "kg"),
  52152. name: "Top",
  52153. image: {
  52154. source: "./media/characters/juniper-skunktaur/top.svg"
  52155. }
  52156. },
  52157. },
  52158. [
  52159. {
  52160. name: "Normal",
  52161. height: math.unit(6 + 3/12, "feet"),
  52162. default: true
  52163. },
  52164. ]
  52165. ))
  52166. characterMakers.push(() => makeCharacter(
  52167. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52168. {
  52169. front: {
  52170. height: math.unit(20.5, "feet"),
  52171. name: "Front",
  52172. image: {
  52173. source: "./media/characters/rei/front.svg",
  52174. extra: 1349/1195,
  52175. bottom: 31/1380
  52176. }
  52177. },
  52178. back: {
  52179. height: math.unit(20.5, "feet"),
  52180. name: "Back",
  52181. image: {
  52182. source: "./media/characters/rei/back.svg",
  52183. extra: 1358/1204,
  52184. bottom: 22/1380
  52185. }
  52186. },
  52187. pawsDigi: {
  52188. height: math.unit(3.45, "feet"),
  52189. name: "Paws (Digi)",
  52190. image: {
  52191. source: "./media/characters/rei/paws-digi.svg"
  52192. }
  52193. },
  52194. pawsPlanti: {
  52195. height: math.unit(3.45, "feet"),
  52196. name: "Paws (Planti)",
  52197. image: {
  52198. source: "./media/characters/rei/paws-planti.svg"
  52199. }
  52200. },
  52201. },
  52202. [
  52203. {
  52204. name: "Normal",
  52205. height: math.unit(20.5, "feet"),
  52206. default: true
  52207. },
  52208. ]
  52209. ))
  52210. characterMakers.push(() => makeCharacter(
  52211. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52212. {
  52213. front: {
  52214. height: math.unit(5 + 11/12, "feet"),
  52215. name: "Front",
  52216. image: {
  52217. source: "./media/characters/carina/front.svg",
  52218. extra: 1720/1449,
  52219. bottom: 14/1734
  52220. }
  52221. },
  52222. back: {
  52223. height: math.unit(5 + 11/12, "feet"),
  52224. name: "Back",
  52225. image: {
  52226. source: "./media/characters/carina/back.svg",
  52227. extra: 1493/1445,
  52228. bottom: 17/1510
  52229. }
  52230. },
  52231. paw: {
  52232. height: math.unit(0.92, "feet"),
  52233. name: "Paw",
  52234. image: {
  52235. source: "./media/characters/carina/paw.svg"
  52236. }
  52237. },
  52238. },
  52239. [
  52240. {
  52241. name: "Normal",
  52242. height: math.unit(5 + 11/12, "feet"),
  52243. default: true
  52244. },
  52245. ]
  52246. ))
  52247. characterMakers.push(() => makeCharacter(
  52248. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  52249. {
  52250. front: {
  52251. height: math.unit(4.88, "meters"),
  52252. name: "Front",
  52253. image: {
  52254. source: "./media/characters/maya/front.svg",
  52255. extra: 1222/1145,
  52256. bottom: 57/1279
  52257. }
  52258. },
  52259. },
  52260. [
  52261. {
  52262. name: "Normal",
  52263. height: math.unit(4.88, "meters"),
  52264. default: true
  52265. },
  52266. {
  52267. name: "Macro",
  52268. height: math.unit(38.1, "meters")
  52269. },
  52270. {
  52271. name: "Macro+",
  52272. height: math.unit(152.4, "meters")
  52273. },
  52274. {
  52275. name: "Macro++",
  52276. height: math.unit(16.09, "km")
  52277. },
  52278. {
  52279. name: "Mega-macro",
  52280. height: math.unit(700, "megameters")
  52281. },
  52282. ]
  52283. ))
  52284. characterMakers.push(() => makeCharacter(
  52285. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52286. {
  52287. front: {
  52288. height: math.unit(6 + 2/12, "feet"),
  52289. weight: math.unit(500, "lb"),
  52290. preyCapacity: math.unit(4, "people"),
  52291. name: "Front",
  52292. image: {
  52293. source: "./media/characters/yepir/front.svg"
  52294. }
  52295. },
  52296. side: {
  52297. height: math.unit(6 + 2/12, "feet"),
  52298. weight: math.unit(500, "lb"),
  52299. preyCapacity: math.unit(4, "people"),
  52300. name: "Side",
  52301. image: {
  52302. source: "./media/characters/yepir/side.svg"
  52303. }
  52304. },
  52305. paw: {
  52306. height: math.unit(1.05, "feet"),
  52307. name: "Paw",
  52308. image: {
  52309. source: "./media/characters/yepir/paw.svg"
  52310. }
  52311. },
  52312. },
  52313. [
  52314. {
  52315. name: "Normal",
  52316. height: math.unit(6 + 2/12, "feet"),
  52317. default: true
  52318. },
  52319. ]
  52320. ))
  52321. characterMakers.push(() => makeCharacter(
  52322. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52323. {
  52324. front: {
  52325. height: math.unit(5 + 4/12, "feet"),
  52326. name: "Front",
  52327. image: {
  52328. source: "./media/characters/russec/front.svg",
  52329. extra: 1926/1626,
  52330. bottom: 72/1998
  52331. }
  52332. },
  52333. back: {
  52334. height: math.unit(5 + 4/12, "feet"),
  52335. name: "Back",
  52336. image: {
  52337. source: "./media/characters/russec/back.svg",
  52338. extra: 1910/1591,
  52339. bottom: 48/1958
  52340. }
  52341. },
  52342. },
  52343. [
  52344. {
  52345. name: "Small",
  52346. height: math.unit(5 + 4/12, "feet")
  52347. },
  52348. {
  52349. name: "Normal",
  52350. height: math.unit(72, "feet"),
  52351. default: true
  52352. },
  52353. ]
  52354. ))
  52355. characterMakers.push(() => makeCharacter(
  52356. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  52357. {
  52358. side: {
  52359. height: math.unit(12, "feet"),
  52360. name: "Side",
  52361. image: {
  52362. source: "./media/characters/cianus/side.svg",
  52363. extra: 808/526,
  52364. bottom: 61/869
  52365. }
  52366. },
  52367. },
  52368. [
  52369. {
  52370. name: "Normal",
  52371. height: math.unit(12, "feet"),
  52372. default: true
  52373. },
  52374. ]
  52375. ))
  52376. characterMakers.push(() => makeCharacter(
  52377. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  52378. {
  52379. front: {
  52380. height: math.unit(9 + 6/12, "feet"),
  52381. weight: math.unit(300, "lb"),
  52382. name: "Front",
  52383. image: {
  52384. source: "./media/characters/ahab/front.svg",
  52385. extra: 1897/1868,
  52386. bottom: 121/2018
  52387. }
  52388. },
  52389. frontNsfw: {
  52390. height: math.unit(9 + 6/12, "feet"),
  52391. weight: math.unit(300, "lb"),
  52392. name: "Front-nsfw",
  52393. image: {
  52394. source: "./media/characters/ahab/front-nsfw.svg",
  52395. extra: 1897/1868,
  52396. bottom: 121/2018
  52397. }
  52398. },
  52399. },
  52400. [
  52401. {
  52402. name: "Normal",
  52403. height: math.unit(9 + 6/12, "feet")
  52404. },
  52405. {
  52406. name: "Macro",
  52407. height: math.unit(657, "feet"),
  52408. default: true
  52409. },
  52410. ]
  52411. ))
  52412. characterMakers.push(() => makeCharacter(
  52413. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  52414. {
  52415. front: {
  52416. height: math.unit(2.69, "meters"),
  52417. weight: math.unit(132, "kg"),
  52418. name: "Front",
  52419. image: {
  52420. source: "./media/characters/aarkus/front.svg",
  52421. extra: 1400/1231,
  52422. bottom: 34/1434
  52423. }
  52424. },
  52425. back: {
  52426. height: math.unit(2.69, "meters"),
  52427. weight: math.unit(132, "kg"),
  52428. name: "Back",
  52429. image: {
  52430. source: "./media/characters/aarkus/back.svg",
  52431. extra: 1381/1218,
  52432. bottom: 30/1411
  52433. }
  52434. },
  52435. frontNsfw: {
  52436. height: math.unit(2.69, "meters"),
  52437. weight: math.unit(132, "kg"),
  52438. name: "Front (NSFW)",
  52439. image: {
  52440. source: "./media/characters/aarkus/front-nsfw.svg",
  52441. extra: 1400/1231,
  52442. bottom: 34/1434
  52443. }
  52444. },
  52445. foot: {
  52446. height: math.unit(1.45, "feet"),
  52447. name: "Foot",
  52448. image: {
  52449. source: "./media/characters/aarkus/foot.svg"
  52450. }
  52451. },
  52452. head: {
  52453. height: math.unit(2.85, "feet"),
  52454. name: "Head",
  52455. image: {
  52456. source: "./media/characters/aarkus/head.svg"
  52457. }
  52458. },
  52459. headAlt: {
  52460. height: math.unit(3.07, "feet"),
  52461. name: "Head (Alt)",
  52462. image: {
  52463. source: "./media/characters/aarkus/head-alt.svg"
  52464. }
  52465. },
  52466. mouth: {
  52467. height: math.unit(1.25, "feet"),
  52468. name: "Mouth",
  52469. image: {
  52470. source: "./media/characters/aarkus/mouth.svg"
  52471. }
  52472. },
  52473. dick: {
  52474. height: math.unit(1.77, "feet"),
  52475. name: "Dick",
  52476. image: {
  52477. source: "./media/characters/aarkus/dick.svg"
  52478. }
  52479. },
  52480. },
  52481. [
  52482. {
  52483. name: "Normal",
  52484. height: math.unit(2.69, "meters"),
  52485. default: true
  52486. },
  52487. {
  52488. name: "Macro",
  52489. height: math.unit(269, "meters")
  52490. },
  52491. {
  52492. name: "Macro+",
  52493. height: math.unit(672.5, "meters")
  52494. },
  52495. {
  52496. name: "Megamacro",
  52497. height: math.unit(2.017, "km")
  52498. },
  52499. ]
  52500. ))
  52501. characterMakers.push(() => makeCharacter(
  52502. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  52503. {
  52504. front: {
  52505. height: math.unit(23.47, "cm"),
  52506. weight: math.unit(600, "grams"),
  52507. name: "Front",
  52508. image: {
  52509. source: "./media/characters/diode/front.svg",
  52510. extra: 1778/1396,
  52511. bottom: 95/1873
  52512. }
  52513. },
  52514. side: {
  52515. height: math.unit(23.47, "cm"),
  52516. weight: math.unit(600, "grams"),
  52517. name: "Side",
  52518. image: {
  52519. source: "./media/characters/diode/side.svg",
  52520. extra: 1831/1404,
  52521. bottom: 86/1917
  52522. }
  52523. },
  52524. wings: {
  52525. height: math.unit(0.683, "feet"),
  52526. name: "Wings",
  52527. image: {
  52528. source: "./media/characters/diode/wings.svg"
  52529. }
  52530. },
  52531. },
  52532. [
  52533. {
  52534. name: "Normal",
  52535. height: math.unit(23.47, "cm"),
  52536. default: true
  52537. },
  52538. ]
  52539. ))
  52540. characterMakers.push(() => makeCharacter(
  52541. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  52542. {
  52543. front: {
  52544. height: math.unit(6 + 3/12, "feet"),
  52545. weight: math.unit(250, "lb"),
  52546. name: "Front",
  52547. image: {
  52548. source: "./media/characters/reika/front.svg",
  52549. extra: 1120/1078,
  52550. bottom: 86/1206
  52551. }
  52552. },
  52553. },
  52554. [
  52555. {
  52556. name: "Normal",
  52557. height: math.unit(6 + 3/12, "feet"),
  52558. default: true
  52559. },
  52560. ]
  52561. ))
  52562. characterMakers.push(() => makeCharacter(
  52563. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  52564. {
  52565. front: {
  52566. height: math.unit(16 + 8/12, "feet"),
  52567. weight: math.unit(9000, "lb"),
  52568. name: "Front",
  52569. image: {
  52570. source: "./media/characters/lokuto-takama/front.svg",
  52571. extra: 1774/1632,
  52572. bottom: 147/1921
  52573. },
  52574. extraAttributes: {
  52575. "bustWidth": {
  52576. name: "Bust Width",
  52577. power: 1,
  52578. type: "length",
  52579. base: math.unit(2.4, "meters")
  52580. },
  52581. "breastWeight": {
  52582. name: "Breast Weight",
  52583. power: 3,
  52584. type: "mass",
  52585. base: math.unit(1000, "kg")
  52586. },
  52587. }
  52588. },
  52589. },
  52590. [
  52591. {
  52592. name: "Normal",
  52593. height: math.unit(16 + 8/12, "feet"),
  52594. default: true
  52595. },
  52596. ]
  52597. ))
  52598. characterMakers.push(() => makeCharacter(
  52599. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  52600. {
  52601. front: {
  52602. height: math.unit(10, "cm"),
  52603. weight: math.unit(850, "grams"),
  52604. name: "Front",
  52605. image: {
  52606. source: "./media/characters/owak-bone/front.svg",
  52607. extra: 1965/1801,
  52608. bottom: 31/1996
  52609. }
  52610. },
  52611. },
  52612. [
  52613. {
  52614. name: "Normal",
  52615. height: math.unit(10, "cm"),
  52616. default: true
  52617. },
  52618. ]
  52619. ))
  52620. characterMakers.push(() => makeCharacter(
  52621. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  52622. {
  52623. front: {
  52624. height: math.unit(2 + 6/12, "feet"),
  52625. weight: math.unit(9, "lb"),
  52626. name: "Front",
  52627. image: {
  52628. source: "./media/characters/muffin/front.svg",
  52629. extra: 1220/1195,
  52630. bottom: 84/1304
  52631. }
  52632. },
  52633. },
  52634. [
  52635. {
  52636. name: "Normal",
  52637. height: math.unit(2 + 6/12, "feet"),
  52638. default: true
  52639. },
  52640. ]
  52641. ))
  52642. characterMakers.push(() => makeCharacter(
  52643. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  52644. {
  52645. front: {
  52646. height: math.unit(7, "feet"),
  52647. name: "Front",
  52648. image: {
  52649. source: "./media/characters/chimera/front.svg",
  52650. extra: 1752/1614,
  52651. bottom: 68/1820
  52652. }
  52653. },
  52654. },
  52655. [
  52656. {
  52657. name: "Normal",
  52658. height: math.unit(7, "feet")
  52659. },
  52660. {
  52661. name: "Gigamacro",
  52662. height: math.unit(2.9, "gigameters"),
  52663. default: true
  52664. },
  52665. {
  52666. name: "Universal",
  52667. height: math.unit(1.56e26, "yottameters")
  52668. },
  52669. ]
  52670. ))
  52671. characterMakers.push(() => makeCharacter(
  52672. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  52673. {
  52674. front: {
  52675. height: math.unit(3, "feet"),
  52676. weight: math.unit(20, "lb"),
  52677. name: "Front",
  52678. image: {
  52679. source: "./media/characters/kit-fennec-fox/front.svg",
  52680. extra: 1027/932,
  52681. bottom: 16/1043
  52682. }
  52683. },
  52684. back: {
  52685. height: math.unit(3, "feet"),
  52686. weight: math.unit(20, "lb"),
  52687. name: "Back",
  52688. image: {
  52689. source: "./media/characters/kit-fennec-fox/back.svg",
  52690. extra: 1027/932,
  52691. bottom: 16/1043
  52692. }
  52693. },
  52694. },
  52695. [
  52696. {
  52697. name: "Normal",
  52698. height: math.unit(3, "feet"),
  52699. default: true
  52700. },
  52701. ]
  52702. ))
  52703. characterMakers.push(() => makeCharacter(
  52704. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52705. {
  52706. front: {
  52707. height: math.unit(167, "cm"),
  52708. name: "Front",
  52709. image: {
  52710. source: "./media/characters/blue-otter/front.svg",
  52711. extra: 1951/1920,
  52712. bottom: 31/1982
  52713. }
  52714. },
  52715. },
  52716. [
  52717. {
  52718. name: "Otter-Sized",
  52719. height: math.unit(100, "cm")
  52720. },
  52721. {
  52722. name: "Normal",
  52723. height: math.unit(167, "cm"),
  52724. default: true
  52725. },
  52726. ]
  52727. ))
  52728. characterMakers.push(() => makeCharacter(
  52729. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52730. {
  52731. front: {
  52732. height: math.unit(4 + 4/12, "feet"),
  52733. name: "Front",
  52734. image: {
  52735. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52736. extra: 1072/1067,
  52737. bottom: 117/1189
  52738. }
  52739. },
  52740. back: {
  52741. height: math.unit(4 + 4/12, "feet"),
  52742. name: "Back",
  52743. image: {
  52744. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52745. extra: 1135/1129,
  52746. bottom: 57/1192
  52747. }
  52748. },
  52749. head: {
  52750. height: math.unit(1.77, "feet"),
  52751. name: "Head",
  52752. image: {
  52753. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52754. }
  52755. },
  52756. },
  52757. [
  52758. {
  52759. name: "Normal",
  52760. height: math.unit(4 + 4/12, "feet"),
  52761. default: true
  52762. },
  52763. ]
  52764. ))
  52765. characterMakers.push(() => makeCharacter(
  52766. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52767. {
  52768. front: {
  52769. height: math.unit(2, "inches"),
  52770. name: "Front",
  52771. image: {
  52772. source: "./media/characters/carley-hartford/front.svg",
  52773. extra: 1035/988,
  52774. bottom: 23/1058
  52775. }
  52776. },
  52777. back: {
  52778. height: math.unit(2, "inches"),
  52779. name: "Back",
  52780. image: {
  52781. source: "./media/characters/carley-hartford/back.svg",
  52782. extra: 1035/988,
  52783. bottom: 23/1058
  52784. }
  52785. },
  52786. dressed: {
  52787. height: math.unit(2, "inches"),
  52788. name: "Dressed",
  52789. image: {
  52790. source: "./media/characters/carley-hartford/dressed.svg",
  52791. extra: 651/620,
  52792. bottom: 0/651
  52793. }
  52794. },
  52795. },
  52796. [
  52797. {
  52798. name: "Micro",
  52799. height: math.unit(2, "inches"),
  52800. default: true
  52801. },
  52802. {
  52803. name: "Macro",
  52804. height: math.unit(6 + 3/12, "feet")
  52805. },
  52806. ]
  52807. ))
  52808. characterMakers.push(() => makeCharacter(
  52809. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52810. {
  52811. front: {
  52812. height: math.unit(2 + 3/12, "feet"),
  52813. weight: math.unit(15 + 7/16, "lb"),
  52814. name: "Front",
  52815. image: {
  52816. source: "./media/characters/duke/front.svg",
  52817. extra: 910/815,
  52818. bottom: 30/940
  52819. }
  52820. },
  52821. },
  52822. [
  52823. {
  52824. name: "Normal",
  52825. height: math.unit(2 + 3/12, "feet"),
  52826. default: true
  52827. },
  52828. ]
  52829. ))
  52830. characterMakers.push(() => makeCharacter(
  52831. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52832. {
  52833. front: {
  52834. height: math.unit(5 + 4/12, "feet"),
  52835. weight: math.unit(156, "lb"),
  52836. name: "Front",
  52837. image: {
  52838. source: "./media/characters/dein/front.svg",
  52839. extra: 855/815,
  52840. bottom: 48/903
  52841. }
  52842. },
  52843. side: {
  52844. height: math.unit(5 + 4/12, "feet"),
  52845. weight: math.unit(156, "lb"),
  52846. name: "side",
  52847. image: {
  52848. source: "./media/characters/dein/side.svg",
  52849. extra: 846/803,
  52850. bottom: 25/871
  52851. }
  52852. },
  52853. maw: {
  52854. height: math.unit(1.45, "feet"),
  52855. name: "Maw",
  52856. image: {
  52857. source: "./media/characters/dein/maw.svg"
  52858. }
  52859. },
  52860. },
  52861. [
  52862. {
  52863. name: "Ferret Sized",
  52864. height: math.unit(2 + 5/12, "feet")
  52865. },
  52866. {
  52867. name: "Normal",
  52868. height: math.unit(5 + 4/12, "feet"),
  52869. default: true
  52870. },
  52871. ]
  52872. ))
  52873. characterMakers.push(() => makeCharacter(
  52874. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  52875. {
  52876. front: {
  52877. height: math.unit(84 + 8/12, "feet"),
  52878. weight: math.unit(942180, "lb"),
  52879. name: "Front",
  52880. image: {
  52881. source: "./media/characters/daurine-arima/front.svg",
  52882. extra: 1989/1782,
  52883. bottom: 37/2026
  52884. }
  52885. },
  52886. side: {
  52887. height: math.unit(84 + 8/12, "feet"),
  52888. weight: math.unit(942180, "lb"),
  52889. name: "Side",
  52890. image: {
  52891. source: "./media/characters/daurine-arima/side.svg",
  52892. extra: 1997/1790,
  52893. bottom: 21/2018
  52894. }
  52895. },
  52896. back: {
  52897. height: math.unit(84 + 8/12, "feet"),
  52898. weight: math.unit(942180, "lb"),
  52899. name: "Back",
  52900. image: {
  52901. source: "./media/characters/daurine-arima/back.svg",
  52902. extra: 1992/1800,
  52903. bottom: 12/2004
  52904. }
  52905. },
  52906. head: {
  52907. height: math.unit(15.5, "feet"),
  52908. name: "Head",
  52909. image: {
  52910. source: "./media/characters/daurine-arima/head.svg"
  52911. }
  52912. },
  52913. headAlt: {
  52914. height: math.unit(19.19, "feet"),
  52915. name: "Head (Alt)",
  52916. image: {
  52917. source: "./media/characters/daurine-arima/head-alt.svg"
  52918. }
  52919. },
  52920. },
  52921. [
  52922. {
  52923. name: "Minimum height",
  52924. height: math.unit(8 + 10/12, "feet")
  52925. },
  52926. {
  52927. name: "Comfort height",
  52928. height: math.unit(19 + 6 /12, "feet")
  52929. },
  52930. {
  52931. name: "\"Normal\" height",
  52932. height: math.unit(28 + 10/12, "feet")
  52933. },
  52934. {
  52935. name: "Base height",
  52936. height: math.unit(84 + 8/12, "feet"),
  52937. default: true
  52938. },
  52939. {
  52940. name: "Mini-macro",
  52941. height: math.unit(2360, "feet")
  52942. },
  52943. {
  52944. name: "Macro",
  52945. height: math.unit(10, "miles")
  52946. },
  52947. {
  52948. name: "Goddess",
  52949. height: math.unit(9.99e40, "yottameters")
  52950. },
  52951. ]
  52952. ))
  52953. characterMakers.push(() => makeCharacter(
  52954. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  52955. {
  52956. front: {
  52957. height: math.unit(2.3, "meters"),
  52958. name: "Front",
  52959. image: {
  52960. source: "./media/characters/cilenomon/front.svg",
  52961. extra: 1963/1778,
  52962. bottom: 54/2017
  52963. }
  52964. },
  52965. },
  52966. [
  52967. {
  52968. name: "Normal",
  52969. height: math.unit(2.3, "meters"),
  52970. default: true
  52971. },
  52972. {
  52973. name: "Big",
  52974. height: math.unit(5, "meters")
  52975. },
  52976. {
  52977. name: "Macro",
  52978. height: math.unit(30, "meters")
  52979. },
  52980. {
  52981. name: "True",
  52982. height: math.unit(1, "universe")
  52983. },
  52984. ]
  52985. ))
  52986. characterMakers.push(() => makeCharacter(
  52987. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  52988. {
  52989. front: {
  52990. height: math.unit(5, "feet"),
  52991. name: "Front",
  52992. image: {
  52993. source: "./media/characters/sen-mink/front.svg",
  52994. extra: 1727/1675,
  52995. bottom: 35/1762
  52996. }
  52997. },
  52998. },
  52999. [
  53000. {
  53001. name: "Normal",
  53002. height: math.unit(5, "feet"),
  53003. default: true
  53004. },
  53005. ]
  53006. ))
  53007. characterMakers.push(() => makeCharacter(
  53008. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53009. {
  53010. front: {
  53011. height: math.unit(5.42999, "feet"),
  53012. weight: math.unit(100, "lb"),
  53013. name: "Front",
  53014. image: {
  53015. source: "./media/characters/ophois/front.svg",
  53016. extra: 1429/1286,
  53017. bottom: 60/1489
  53018. }
  53019. },
  53020. },
  53021. [
  53022. {
  53023. name: "Normal",
  53024. height: math.unit(5.42999, "feet"),
  53025. default: true
  53026. },
  53027. ]
  53028. ))
  53029. characterMakers.push(() => makeCharacter(
  53030. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53031. {
  53032. front: {
  53033. height: math.unit(2, "meters"),
  53034. name: "Front",
  53035. image: {
  53036. source: "./media/characters/riley/front.svg",
  53037. extra: 1779/1754,
  53038. bottom: 139/1918
  53039. }
  53040. },
  53041. },
  53042. [
  53043. {
  53044. name: "Normal",
  53045. height: math.unit(2, "meters"),
  53046. default: true
  53047. },
  53048. ]
  53049. ))
  53050. characterMakers.push(() => makeCharacter(
  53051. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53052. {
  53053. front: {
  53054. height: math.unit(6 + 2/12, "feet"),
  53055. weight: math.unit(195, "lb"),
  53056. preyCapacity: math.unit(6, "people"),
  53057. name: "Front",
  53058. image: {
  53059. source: "./media/characters/shuken-flash/front.svg",
  53060. extra: 1905/1739,
  53061. bottom: 65/1970
  53062. }
  53063. },
  53064. back: {
  53065. height: math.unit(6 + 2/12, "feet"),
  53066. weight: math.unit(195, "lb"),
  53067. preyCapacity: math.unit(6, "people"),
  53068. name: "Back",
  53069. image: {
  53070. source: "./media/characters/shuken-flash/back.svg",
  53071. extra: 1912/1751,
  53072. bottom: 13/1925
  53073. }
  53074. },
  53075. },
  53076. [
  53077. {
  53078. name: "Normal",
  53079. height: math.unit(6 + 2/12, "feet"),
  53080. default: true
  53081. },
  53082. ]
  53083. ))
  53084. characterMakers.push(() => makeCharacter(
  53085. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53086. {
  53087. front: {
  53088. height: math.unit(5 + 9/12, "feet"),
  53089. weight: math.unit(150, "lb"),
  53090. name: "Front",
  53091. image: {
  53092. source: "./media/characters/plat/front.svg",
  53093. extra: 1816/1703,
  53094. bottom: 43/1859
  53095. }
  53096. },
  53097. side: {
  53098. height: math.unit(5 + 9/12, "feet"),
  53099. weight: math.unit(300, "lb"),
  53100. name: "Side",
  53101. image: {
  53102. source: "./media/characters/plat/side.svg",
  53103. extra: 1824/1699,
  53104. bottom: 18/1842
  53105. }
  53106. },
  53107. },
  53108. [
  53109. {
  53110. name: "Normal",
  53111. height: math.unit(5 + 9/12, "feet"),
  53112. default: true
  53113. },
  53114. ]
  53115. ))
  53116. characterMakers.push(() => makeCharacter(
  53117. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53118. {
  53119. front: {
  53120. height: math.unit(9, "feet"),
  53121. weight: math.unit(1800, "lb"),
  53122. name: "Front",
  53123. image: {
  53124. source: "./media/characters/elaine/front.svg",
  53125. extra: 1833/1354,
  53126. bottom: 25/1858
  53127. }
  53128. },
  53129. back: {
  53130. height: math.unit(8.8, "feet"),
  53131. weight: math.unit(1800, "lb"),
  53132. name: "Back",
  53133. image: {
  53134. source: "./media/characters/elaine/back.svg",
  53135. extra: 1641/1233,
  53136. bottom: 53/1694
  53137. }
  53138. },
  53139. },
  53140. [
  53141. {
  53142. name: "Normal",
  53143. height: math.unit(9, "feet"),
  53144. default: true
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53150. {
  53151. front: {
  53152. height: math.unit(17 + 9/12, "feet"),
  53153. weight: math.unit(8000, "lb"),
  53154. name: "Front",
  53155. image: {
  53156. source: "./media/characters/vera-raven/front.svg",
  53157. extra: 1457/1412,
  53158. bottom: 121/1578
  53159. }
  53160. },
  53161. side: {
  53162. height: math.unit(17 + 9/12, "feet"),
  53163. weight: math.unit(8000, "lb"),
  53164. name: "Side",
  53165. image: {
  53166. source: "./media/characters/vera-raven/side.svg",
  53167. extra: 1510/1464,
  53168. bottom: 54/1564
  53169. }
  53170. },
  53171. },
  53172. [
  53173. {
  53174. name: "Normal",
  53175. height: math.unit(17 + 9/12, "feet"),
  53176. default: true
  53177. },
  53178. ]
  53179. ))
  53180. characterMakers.push(() => makeCharacter(
  53181. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53182. {
  53183. dressed: {
  53184. height: math.unit(6 + 9/12, "feet"),
  53185. name: "Dressed",
  53186. image: {
  53187. source: "./media/characters/nakisha/dressed.svg",
  53188. extra: 1909/1757,
  53189. bottom: 48/1957
  53190. }
  53191. },
  53192. nude: {
  53193. height: math.unit(6 + 9/12, "feet"),
  53194. name: "Nude",
  53195. image: {
  53196. source: "./media/characters/nakisha/nude.svg",
  53197. extra: 1917/1765,
  53198. bottom: 34/1951
  53199. }
  53200. },
  53201. },
  53202. [
  53203. {
  53204. name: "Normal",
  53205. height: math.unit(6 + 9/12, "feet"),
  53206. default: true
  53207. },
  53208. ]
  53209. ))
  53210. characterMakers.push(() => makeCharacter(
  53211. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53212. {
  53213. front: {
  53214. height: math.unit(87, "meters"),
  53215. name: "Front",
  53216. image: {
  53217. source: "./media/characters/serafin/front.svg",
  53218. extra: 1919/1776,
  53219. bottom: 65/1984
  53220. }
  53221. },
  53222. },
  53223. [
  53224. {
  53225. name: "Normal",
  53226. height: math.unit(87, "meters"),
  53227. default: true
  53228. },
  53229. ]
  53230. ))
  53231. characterMakers.push(() => makeCharacter(
  53232. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53233. {
  53234. front: {
  53235. height: math.unit(6, "feet"),
  53236. weight: math.unit(200, "lb"),
  53237. name: "Front",
  53238. image: {
  53239. source: "./media/characters/poptart/front.svg",
  53240. extra: 615/583,
  53241. bottom: 23/638
  53242. }
  53243. },
  53244. back: {
  53245. height: math.unit(6, "feet"),
  53246. weight: math.unit(200, "lb"),
  53247. name: "Back",
  53248. image: {
  53249. source: "./media/characters/poptart/back.svg",
  53250. extra: 617/584,
  53251. bottom: 22/639
  53252. }
  53253. },
  53254. frontNsfw: {
  53255. height: math.unit(6, "feet"),
  53256. weight: math.unit(200, "lb"),
  53257. name: "Front (NSFW)",
  53258. image: {
  53259. source: "./media/characters/poptart/front-nsfw.svg",
  53260. extra: 615/583,
  53261. bottom: 23/638
  53262. }
  53263. },
  53264. backNsfw: {
  53265. height: math.unit(6, "feet"),
  53266. weight: math.unit(200, "lb"),
  53267. name: "Back (NSFW)",
  53268. image: {
  53269. source: "./media/characters/poptart/back-nsfw.svg",
  53270. extra: 617/584,
  53271. bottom: 22/639
  53272. }
  53273. },
  53274. hand: {
  53275. height: math.unit(1.14, "feet"),
  53276. name: "Hand",
  53277. image: {
  53278. source: "./media/characters/poptart/hand.svg"
  53279. }
  53280. },
  53281. foot: {
  53282. height: math.unit(1.5, "feet"),
  53283. name: "Foot",
  53284. image: {
  53285. source: "./media/characters/poptart/foot.svg"
  53286. }
  53287. },
  53288. },
  53289. [
  53290. {
  53291. name: "Normal",
  53292. height: math.unit(6, "feet"),
  53293. default: true
  53294. },
  53295. {
  53296. name: "Grande",
  53297. height: math.unit(350, "feet")
  53298. },
  53299. {
  53300. name: "Massif",
  53301. height: math.unit(967, "feet")
  53302. },
  53303. ]
  53304. ))
  53305. characterMakers.push(() => makeCharacter(
  53306. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53307. {
  53308. hyenaSide: {
  53309. height: math.unit(120, "cm"),
  53310. weight: math.unit(120, "lb"),
  53311. name: "Side",
  53312. image: {
  53313. source: "./media/characters/trance/hyena-side.svg",
  53314. extra: 998/904,
  53315. bottom: 76/1074
  53316. }
  53317. },
  53318. },
  53319. [
  53320. {
  53321. name: "Normal",
  53322. height: math.unit(120, "cm"),
  53323. default: true
  53324. },
  53325. {
  53326. name: "Dire",
  53327. height: math.unit(230, "cm")
  53328. },
  53329. {
  53330. name: "Macro",
  53331. height: math.unit(37, "feet")
  53332. },
  53333. ]
  53334. ))
  53335. characterMakers.push(() => makeCharacter(
  53336. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53337. {
  53338. front: {
  53339. height: math.unit(6 + 3/12, "feet"),
  53340. name: "Front",
  53341. image: {
  53342. source: "./media/characters/michael-berretta/front.svg",
  53343. extra: 515/494,
  53344. bottom: 20/535
  53345. }
  53346. },
  53347. back: {
  53348. height: math.unit(6 + 3/12, "feet"),
  53349. name: "Back",
  53350. image: {
  53351. source: "./media/characters/michael-berretta/back.svg",
  53352. extra: 520/497,
  53353. bottom: 21/541
  53354. }
  53355. },
  53356. frontNsfw: {
  53357. height: math.unit(6 + 3/12, "feet"),
  53358. name: "Front (NSFW)",
  53359. image: {
  53360. source: "./media/characters/michael-berretta/front-nsfw.svg",
  53361. extra: 515/494,
  53362. bottom: 20/535
  53363. }
  53364. },
  53365. dick: {
  53366. height: math.unit(1, "feet"),
  53367. name: "Dick",
  53368. image: {
  53369. source: "./media/characters/michael-berretta/dick.svg"
  53370. }
  53371. },
  53372. },
  53373. [
  53374. {
  53375. name: "Normal",
  53376. height: math.unit(6 + 3/12, "feet"),
  53377. default: true
  53378. },
  53379. {
  53380. name: "Big",
  53381. height: math.unit(12, "feet")
  53382. },
  53383. {
  53384. name: "Macro",
  53385. height: math.unit(187.5, "feet")
  53386. },
  53387. ]
  53388. ))
  53389. characterMakers.push(() => makeCharacter(
  53390. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  53391. {
  53392. front: {
  53393. height: math.unit(9 + 9/12, "feet"),
  53394. weight: math.unit(1244, "lb"),
  53395. name: "Front",
  53396. image: {
  53397. source: "./media/characters/stella-edgecomb/front.svg",
  53398. extra: 1835/1706,
  53399. bottom: 49/1884
  53400. }
  53401. },
  53402. pen: {
  53403. height: math.unit(0.95, "feet"),
  53404. name: "Pen",
  53405. image: {
  53406. source: "./media/characters/stella-edgecomb/pen.svg"
  53407. }
  53408. },
  53409. },
  53410. [
  53411. {
  53412. name: "Cozy Bear",
  53413. height: math.unit(0.5, "inches")
  53414. },
  53415. {
  53416. name: "Normal",
  53417. height: math.unit(9 + 9/12, "feet"),
  53418. default: true
  53419. },
  53420. {
  53421. name: "Giga Bear",
  53422. height: math.unit(1, "mile")
  53423. },
  53424. {
  53425. name: "Great Bear",
  53426. height: math.unit(53, "miles")
  53427. },
  53428. {
  53429. name: "Goddess Bear",
  53430. height: math.unit(40000, "miles")
  53431. },
  53432. {
  53433. name: "Sun Bear",
  53434. height: math.unit(900000, "miles")
  53435. },
  53436. ]
  53437. ))
  53438. characterMakers.push(() => makeCharacter(
  53439. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  53440. {
  53441. anthroFront: {
  53442. height: math.unit(556, "cm"),
  53443. weight: math.unit(2650, "kg"),
  53444. preyCapacity: math.unit(3, "people"),
  53445. name: "Front",
  53446. image: {
  53447. source: "./media/characters/ash´iika/front.svg",
  53448. extra: 710/673,
  53449. bottom: 15/725
  53450. },
  53451. form: "anthro",
  53452. default: true
  53453. },
  53454. anthroSide: {
  53455. height: math.unit(556, "cm"),
  53456. weight: math.unit(2650, "kg"),
  53457. preyCapacity: math.unit(3, "people"),
  53458. name: "Side",
  53459. image: {
  53460. source: "./media/characters/ash´iika/side.svg",
  53461. extra: 696/676,
  53462. bottom: 13/709
  53463. },
  53464. form: "anthro"
  53465. },
  53466. anthroDressed: {
  53467. height: math.unit(556, "cm"),
  53468. weight: math.unit(2650, "kg"),
  53469. preyCapacity: math.unit(3, "people"),
  53470. name: "Dressed",
  53471. image: {
  53472. source: "./media/characters/ash´iika/dressed.svg",
  53473. extra: 710/673,
  53474. bottom: 15/725
  53475. },
  53476. form: "anthro"
  53477. },
  53478. anthroHead: {
  53479. height: math.unit(3.5, "feet"),
  53480. name: "Head",
  53481. image: {
  53482. source: "./media/characters/ash´iika/head.svg",
  53483. extra: 348/291,
  53484. bottom: 45/393
  53485. },
  53486. form: "anthro"
  53487. },
  53488. feralSide: {
  53489. height: math.unit(870, "cm"),
  53490. weight: math.unit(17500, "kg"),
  53491. preyCapacity: math.unit(15, "people"),
  53492. name: "Side",
  53493. image: {
  53494. source: "./media/characters/ash´iika/feral.svg",
  53495. extra: 595/199,
  53496. bottom: 7/602
  53497. },
  53498. form: "feral",
  53499. default: true,
  53500. },
  53501. },
  53502. [
  53503. {
  53504. name: "Normal",
  53505. height: math.unit(556, "cm"),
  53506. default: true,
  53507. form: "anthro"
  53508. },
  53509. {
  53510. name: "Macro",
  53511. height: math.unit(88, "meters"),
  53512. form: "anthro"
  53513. },
  53514. {
  53515. name: "Normal",
  53516. height: math.unit(870, "cm"),
  53517. default: true,
  53518. form: "feral"
  53519. },
  53520. {
  53521. name: "Large",
  53522. height: math.unit(25, "meters"),
  53523. form: "feral"
  53524. },
  53525. ],
  53526. {
  53527. "anthro": {
  53528. name: "Anthro",
  53529. default: true
  53530. },
  53531. "feral": {
  53532. name: "Feral",
  53533. },
  53534. }
  53535. ))
  53536. characterMakers.push(() => makeCharacter(
  53537. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  53538. {
  53539. front: {
  53540. height: math.unit(10, "feet"),
  53541. weight: math.unit(800, "lb"),
  53542. name: "Front",
  53543. image: {
  53544. source: "./media/characters/yen/front.svg",
  53545. extra: 443/411,
  53546. bottom: 6/449
  53547. }
  53548. },
  53549. sleeping: {
  53550. height: math.unit(10, "feet"),
  53551. weight: math.unit(800, "lb"),
  53552. name: "Sleeping",
  53553. image: {
  53554. source: "./media/characters/yen/sleeping.svg",
  53555. extra: 470/422,
  53556. bottom: 0/470
  53557. }
  53558. },
  53559. head: {
  53560. height: math.unit(2.2, "feet"),
  53561. name: "Head",
  53562. image: {
  53563. source: "./media/characters/yen/head.svg"
  53564. }
  53565. },
  53566. headAlt: {
  53567. height: math.unit(2.1, "feet"),
  53568. name: "Head (Alt)",
  53569. image: {
  53570. source: "./media/characters/yen/head-alt.svg"
  53571. }
  53572. },
  53573. },
  53574. [
  53575. {
  53576. name: "Normal",
  53577. height: math.unit(10, "feet"),
  53578. default: true
  53579. },
  53580. ]
  53581. ))
  53582. characterMakers.push(() => makeCharacter(
  53583. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  53584. {
  53585. front: {
  53586. height: math.unit(12, "feet"),
  53587. name: "Front",
  53588. image: {
  53589. source: "./media/characters/citra/front.svg",
  53590. extra: 1950/1710,
  53591. bottom: 47/1997
  53592. }
  53593. },
  53594. },
  53595. [
  53596. {
  53597. name: "Normal",
  53598. height: math.unit(12, "feet"),
  53599. default: true
  53600. },
  53601. ]
  53602. ))
  53603. characterMakers.push(() => makeCharacter(
  53604. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  53605. {
  53606. side: {
  53607. height: math.unit(7 + 10/12, "feet"),
  53608. name: "Side",
  53609. image: {
  53610. source: "./media/characters/sholstim/side.svg",
  53611. extra: 786/682,
  53612. bottom: 40/826
  53613. }
  53614. },
  53615. },
  53616. [
  53617. {
  53618. name: "Normal",
  53619. height: math.unit(7 + 10/12, "feet"),
  53620. default: true
  53621. },
  53622. ]
  53623. ))
  53624. characterMakers.push(() => makeCharacter(
  53625. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  53626. {
  53627. front: {
  53628. height: math.unit(3.10, "meters"),
  53629. name: "Front",
  53630. image: {
  53631. source: "./media/characters/aggyn/front.svg",
  53632. extra: 1188/963,
  53633. bottom: 24/1212
  53634. }
  53635. },
  53636. },
  53637. [
  53638. {
  53639. name: "Normal",
  53640. height: math.unit(3.10, "meters"),
  53641. default: true
  53642. },
  53643. ]
  53644. ))
  53645. characterMakers.push(() => makeCharacter(
  53646. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  53647. {
  53648. front: {
  53649. height: math.unit(7 + 5/12, "feet"),
  53650. weight: math.unit(687, "lb"),
  53651. name: "Front",
  53652. image: {
  53653. source: "./media/characters/alsandair-hergenroether/front.svg",
  53654. extra: 1251/1186,
  53655. bottom: 75/1326
  53656. }
  53657. },
  53658. back: {
  53659. height: math.unit(7 + 5/12, "feet"),
  53660. weight: math.unit(687, "lb"),
  53661. name: "Back",
  53662. image: {
  53663. source: "./media/characters/alsandair-hergenroether/back.svg",
  53664. extra: 1290/1229,
  53665. bottom: 17/1307
  53666. }
  53667. },
  53668. },
  53669. [
  53670. {
  53671. name: "Max Compression",
  53672. height: math.unit(7 + 5/12, "feet"),
  53673. default: true
  53674. },
  53675. {
  53676. name: "\"Normal\"",
  53677. height: math.unit(2, "universes")
  53678. },
  53679. ]
  53680. ))
  53681. characterMakers.push(() => makeCharacter(
  53682. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  53683. {
  53684. front: {
  53685. height: math.unit(4 + 1/12, "feet"),
  53686. weight: math.unit(92, "lb"),
  53687. name: "Front",
  53688. image: {
  53689. source: "./media/characters/ie/front.svg",
  53690. extra: 1585/1352,
  53691. bottom: 91/1676
  53692. }
  53693. },
  53694. },
  53695. [
  53696. {
  53697. name: "Normal",
  53698. height: math.unit(4 + 1/12, "feet"),
  53699. default: true
  53700. },
  53701. ]
  53702. ))
  53703. characterMakers.push(() => makeCharacter(
  53704. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  53705. {
  53706. anthro: {
  53707. height: math.unit(6, "feet"),
  53708. weight: math.unit(150, "lb"),
  53709. name: "Front",
  53710. image: {
  53711. source: "./media/characters/willow/anthro.svg",
  53712. extra: 1073/986,
  53713. bottom: 34/1107
  53714. },
  53715. form: "anthro",
  53716. default: true
  53717. },
  53718. taur: {
  53719. height: math.unit(6, "feet"),
  53720. weight: math.unit(150, "lb"),
  53721. name: "Side",
  53722. image: {
  53723. source: "./media/characters/willow/taur.svg",
  53724. extra: 647/512,
  53725. bottom: 136/783
  53726. },
  53727. form: "taur",
  53728. default: true
  53729. },
  53730. },
  53731. [
  53732. {
  53733. name: "Humanoid",
  53734. height: math.unit(2.7, "meters"),
  53735. form: "anthro"
  53736. },
  53737. {
  53738. name: "Normal",
  53739. height: math.unit(9, "meters"),
  53740. form: "anthro",
  53741. default: true
  53742. },
  53743. {
  53744. name: "Humanoid",
  53745. height: math.unit(2.1, "meters"),
  53746. form: "taur"
  53747. },
  53748. {
  53749. name: "Normal",
  53750. height: math.unit(7, "meters"),
  53751. form: "taur",
  53752. default: true
  53753. },
  53754. ],
  53755. {
  53756. "anthro": {
  53757. name: "Anthro",
  53758. default: true
  53759. },
  53760. "taur": {
  53761. name: "Taur",
  53762. },
  53763. }
  53764. ))
  53765. characterMakers.push(() => makeCharacter(
  53766. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  53767. {
  53768. front: {
  53769. height: math.unit(2 + 5/12, "feet"),
  53770. name: "Front",
  53771. image: {
  53772. source: "./media/characters/kyan/front.svg",
  53773. extra: 460/334,
  53774. bottom: 23/483
  53775. },
  53776. extraAttributes: {
  53777. "toeLength": {
  53778. name: "Toe Length",
  53779. power: 1,
  53780. type: "length",
  53781. base: math.unit(7, "cm")
  53782. },
  53783. "toeclawLength": {
  53784. name: "Toeclaw Length",
  53785. power: 1,
  53786. type: "length",
  53787. base: math.unit(4.7, "cm")
  53788. },
  53789. "earHeight": {
  53790. name: "Ear Height",
  53791. power: 1,
  53792. type: "length",
  53793. base: math.unit(14.1, "cm")
  53794. },
  53795. }
  53796. },
  53797. paws: {
  53798. height: math.unit(0.45, "feet"),
  53799. name: "Paws",
  53800. image: {
  53801. source: "./media/characters/kyan/paws.svg",
  53802. extra: 581/581,
  53803. bottom: 114/695
  53804. }
  53805. },
  53806. },
  53807. [
  53808. {
  53809. name: "Normal",
  53810. height: math.unit(2 + 5/12, "feet"),
  53811. default: true
  53812. },
  53813. ]
  53814. ))
  53815. characterMakers.push(() => makeCharacter(
  53816. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  53817. {
  53818. front: {
  53819. height: math.unit(2 + 2/3, "feet"),
  53820. name: "Front",
  53821. image: {
  53822. source: "./media/characters/xazzon/front.svg",
  53823. extra: 1109/984,
  53824. bottom: 42/1151
  53825. }
  53826. },
  53827. back: {
  53828. height: math.unit(2 + 2/3, "feet"),
  53829. name: "Back",
  53830. image: {
  53831. source: "./media/characters/xazzon/back.svg",
  53832. extra: 1095/971,
  53833. bottom: 23/1118
  53834. }
  53835. },
  53836. },
  53837. [
  53838. {
  53839. name: "Normal",
  53840. height: math.unit(2 + 2/3, "feet"),
  53841. default: true
  53842. },
  53843. ]
  53844. ))
  53845. characterMakers.push(() => makeCharacter(
  53846. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  53847. {
  53848. dressed: {
  53849. height: math.unit(5 + 7/12, "feet"),
  53850. weight: math.unit(173, "lb"),
  53851. name: "Dressed",
  53852. image: {
  53853. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  53854. extra: 3262/2862,
  53855. bottom: 188/3450
  53856. }
  53857. },
  53858. undressed: {
  53859. height: math.unit(5 + 7/12, "feet"),
  53860. weight: math.unit(173, "lb"),
  53861. name: "Undressed",
  53862. image: {
  53863. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  53864. extra: 3262/2862,
  53865. bottom: 188/3450
  53866. }
  53867. },
  53868. },
  53869. [
  53870. {
  53871. name: "The void",
  53872. height: math.unit(7.29193e-34, "angstroms")
  53873. },
  53874. {
  53875. name: "Uh-Oh.",
  53876. height: math.unit(5.734e-7, "angstroms")
  53877. },
  53878. {
  53879. name: "Pico",
  53880. height: math.unit(0.876, "angstroms")
  53881. },
  53882. {
  53883. name: "Nano",
  53884. height: math.unit(0.000134200, "mm")
  53885. },
  53886. {
  53887. name: "Micro",
  53888. height: math.unit(0.0673020, "mm")
  53889. },
  53890. {
  53891. name: "Tiny",
  53892. height: math.unit(2.4, "mm")
  53893. },
  53894. {
  53895. name: "Actual Normal",
  53896. height: math.unit(3, "inches"),
  53897. default: true
  53898. },
  53899. {
  53900. name: "Normal",
  53901. height: math.unit(5 + 8/12, "feet")
  53902. },
  53903. {
  53904. name: "Giant",
  53905. height: math.unit(12, "feet")
  53906. },
  53907. {
  53908. name: "City Ruler",
  53909. height: math.unit(270, "meters")
  53910. },
  53911. {
  53912. name: "Giga",
  53913. height: math.unit(1117.6, "km")
  53914. },
  53915. {
  53916. name: "All-Powerful Queen",
  53917. height: math.unit(70.8, "gigameters")
  53918. },
  53919. {
  53920. name: "'Goddess'",
  53921. height: math.unit(600, "yottameters")
  53922. },
  53923. {
  53924. name: "Biggest!",
  53925. height: math.unit(4.23e5, "yottameters")
  53926. },
  53927. ]
  53928. ))
  53929. characterMakers.push(() => makeCharacter(
  53930. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  53931. {
  53932. front: {
  53933. height: math.unit(8, "feet"),
  53934. weight: math.unit(300, "lb"),
  53935. name: "Front",
  53936. image: {
  53937. source: "./media/characters/khyla-shadowsong/front.svg",
  53938. extra: 861/798,
  53939. bottom: 32/893
  53940. }
  53941. },
  53942. side: {
  53943. height: math.unit(8, "feet"),
  53944. weight: math.unit(300, "lb"),
  53945. name: "Side",
  53946. image: {
  53947. source: "./media/characters/khyla-shadowsong/side.svg",
  53948. extra: 790/750,
  53949. bottom: 87/877
  53950. }
  53951. },
  53952. back: {
  53953. height: math.unit(8, "feet"),
  53954. weight: math.unit(300, "lb"),
  53955. name: "Back",
  53956. image: {
  53957. source: "./media/characters/khyla-shadowsong/back.svg",
  53958. extra: 855/808,
  53959. bottom: 14/869
  53960. }
  53961. },
  53962. head: {
  53963. height: math.unit(2.7, "feet"),
  53964. name: "Head",
  53965. image: {
  53966. source: "./media/characters/khyla-shadowsong/head.svg"
  53967. }
  53968. },
  53969. },
  53970. [
  53971. {
  53972. name: "Micro",
  53973. height: math.unit(6, "inches")
  53974. },
  53975. {
  53976. name: "Normal",
  53977. height: math.unit(8, "feet"),
  53978. default: true
  53979. },
  53980. ]
  53981. ))
  53982. characterMakers.push(() => makeCharacter(
  53983. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  53984. {
  53985. hyperFront: {
  53986. height: math.unit(9 + 4/12, "feet"),
  53987. weight: math.unit(2000, "lb"),
  53988. name: "Front",
  53989. image: {
  53990. source: "./media/characters/tiden/hyper-front.svg",
  53991. extra: 400/382,
  53992. bottom: 6/406
  53993. },
  53994. form: "hyper",
  53995. },
  53996. regularFront: {
  53997. height: math.unit(7 + 10/12, "feet"),
  53998. weight: math.unit(470, "lb"),
  53999. name: "Front",
  54000. image: {
  54001. source: "./media/characters/tiden/regular-front.svg",
  54002. extra: 468/442,
  54003. bottom: 6/474
  54004. },
  54005. form: "regular",
  54006. },
  54007. },
  54008. [
  54009. {
  54010. name: "Normal",
  54011. height: math.unit(9 + 4/12, "feet"),
  54012. default: true,
  54013. form: "hyper"
  54014. },
  54015. {
  54016. name: "Normal",
  54017. height: math.unit(7 + 10/12, "feet"),
  54018. default: true,
  54019. form: "regular"
  54020. },
  54021. ],
  54022. {
  54023. "hyper": {
  54024. name: "Hyper",
  54025. default: true
  54026. },
  54027. "regular": {
  54028. name: "Regular",
  54029. },
  54030. }
  54031. ))
  54032. characterMakers.push(() => makeCharacter(
  54033. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54034. {
  54035. side: {
  54036. height: math.unit(6, "feet"),
  54037. weight: math.unit(150, "lb"),
  54038. name: "Side",
  54039. image: {
  54040. source: "./media/characters/jason-crowe/side.svg",
  54041. extra: 1771/766,
  54042. bottom: 219/1990
  54043. }
  54044. },
  54045. },
  54046. [
  54047. {
  54048. name: "Pocket Gryphon",
  54049. height: math.unit(6, "cm")
  54050. },
  54051. {
  54052. name: "Raven",
  54053. height: math.unit(60, "cm")
  54054. },
  54055. {
  54056. name: "Normal",
  54057. height: math.unit(1, "meter"),
  54058. default: true
  54059. },
  54060. ]
  54061. ))
  54062. characterMakers.push(() => makeCharacter(
  54063. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54064. {
  54065. front: {
  54066. height: math.unit(9 + 6/12, "feet"),
  54067. weight: math.unit(1100, "lb"),
  54068. name: "Front",
  54069. image: {
  54070. source: "./media/characters/django/front.svg",
  54071. extra: 1231/1136,
  54072. bottom: 34/1265
  54073. }
  54074. },
  54075. side: {
  54076. height: math.unit(9 + 6/12, "feet"),
  54077. weight: math.unit(1100, "lb"),
  54078. name: "Side",
  54079. image: {
  54080. source: "./media/characters/django/side.svg",
  54081. extra: 1267/1174,
  54082. bottom: 9/1276
  54083. }
  54084. },
  54085. },
  54086. [
  54087. {
  54088. name: "Normal",
  54089. height: math.unit(9 + 6/12, "feet"),
  54090. default: true
  54091. },
  54092. {
  54093. name: "Macro 1",
  54094. height: math.unit(50, "feet")
  54095. },
  54096. {
  54097. name: "Macro 2",
  54098. height: math.unit(500, "feet")
  54099. },
  54100. {
  54101. name: "Mega Macro",
  54102. height: math.unit(5300, "feet")
  54103. },
  54104. ]
  54105. ))
  54106. characterMakers.push(() => makeCharacter(
  54107. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54108. {
  54109. frontSfw: {
  54110. height: math.unit(120, "cm"),
  54111. weight: math.unit(15, "kg"),
  54112. name: "Front (SFW)",
  54113. image: {
  54114. source: "./media/characters/eri/front-sfw.svg",
  54115. extra: 1014/939,
  54116. bottom: 37/1051
  54117. },
  54118. form: "moth",
  54119. },
  54120. frontNsfw: {
  54121. height: math.unit(120, "cm"),
  54122. weight: math.unit(15, "kg"),
  54123. name: "Front (NSFW)",
  54124. image: {
  54125. source: "./media/characters/eri/front-nsfw.svg",
  54126. extra: 1014/939,
  54127. bottom: 37/1051
  54128. },
  54129. form: "moth",
  54130. default: true
  54131. },
  54132. egg: {
  54133. height: math.unit(10, "cm"),
  54134. name: "Egg",
  54135. image: {
  54136. source: "./media/characters/eri/egg.svg"
  54137. },
  54138. form: "egg",
  54139. default: true
  54140. },
  54141. },
  54142. [
  54143. {
  54144. name: "Normal",
  54145. height: math.unit(120, "cm"),
  54146. default: true,
  54147. form: "moth"
  54148. },
  54149. {
  54150. name: "Normal",
  54151. height: math.unit(10, "cm"),
  54152. default: true,
  54153. form: "egg"
  54154. },
  54155. ],
  54156. {
  54157. "moth": {
  54158. name: "Moth",
  54159. default: true
  54160. },
  54161. "egg": {
  54162. name: "Egg",
  54163. },
  54164. }
  54165. ))
  54166. characterMakers.push(() => makeCharacter(
  54167. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54168. {
  54169. front: {
  54170. height: math.unit(200, "feet"),
  54171. name: "Front",
  54172. image: {
  54173. source: "./media/characters/bishop-dowser/front.svg",
  54174. extra: 933/868,
  54175. bottom: 106/1039
  54176. }
  54177. },
  54178. },
  54179. [
  54180. {
  54181. name: "Giant",
  54182. height: math.unit(200, "feet"),
  54183. default: true
  54184. },
  54185. ]
  54186. ))
  54187. characterMakers.push(() => makeCharacter(
  54188. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54189. {
  54190. front: {
  54191. height: math.unit(2, "meters"),
  54192. preyCapacity: math.unit(3, "people"),
  54193. name: "Front",
  54194. image: {
  54195. source: "./media/characters/fryra/front.svg",
  54196. extra: 1025/948,
  54197. bottom: 30/1055
  54198. },
  54199. extraAttributes: {
  54200. "breastVolume": {
  54201. name: "Breast Volume",
  54202. power: 3,
  54203. type: "volume",
  54204. base: math.unit(8, "liters")
  54205. },
  54206. }
  54207. },
  54208. back: {
  54209. height: math.unit(2, "meters"),
  54210. preyCapacity: math.unit(3, "people"),
  54211. name: "Back",
  54212. image: {
  54213. source: "./media/characters/fryra/back.svg",
  54214. extra: 993/938,
  54215. bottom: 38/1031
  54216. },
  54217. extraAttributes: {
  54218. "breastVolume": {
  54219. name: "Breast Volume",
  54220. power: 3,
  54221. type: "volume",
  54222. base: math.unit(8, "liters")
  54223. },
  54224. }
  54225. },
  54226. head: {
  54227. height: math.unit(1.33, "feet"),
  54228. name: "Head",
  54229. image: {
  54230. source: "./media/characters/fryra/head.svg"
  54231. }
  54232. },
  54233. maw: {
  54234. height: math.unit(0.56, "feet"),
  54235. name: "Maw",
  54236. image: {
  54237. source: "./media/characters/fryra/maw.svg"
  54238. }
  54239. },
  54240. },
  54241. [
  54242. {
  54243. name: "Micro",
  54244. height: math.unit(5, "cm")
  54245. },
  54246. {
  54247. name: "Normal",
  54248. height: math.unit(2, "meters"),
  54249. default: true
  54250. },
  54251. {
  54252. name: "Small Macro",
  54253. height: math.unit(8, "meters")
  54254. },
  54255. {
  54256. name: "Macro",
  54257. height: math.unit(50, "meters")
  54258. },
  54259. {
  54260. name: "Megamacro",
  54261. height: math.unit(1, "km")
  54262. },
  54263. {
  54264. name: "Planetary",
  54265. height: math.unit(300000, "km")
  54266. },
  54267. {
  54268. name: "Universal",
  54269. height: math.unit(250, "lightyears")
  54270. },
  54271. {
  54272. name: "Fabric of Reality",
  54273. height: math.unit(1000, "multiverses")
  54274. },
  54275. ]
  54276. ))
  54277. characterMakers.push(() => makeCharacter(
  54278. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54279. {
  54280. frontDressed: {
  54281. height: math.unit(6 + 2/12, "feet"),
  54282. name: "Front (Dressed)",
  54283. image: {
  54284. source: "./media/characters/fiera/front-dressed.svg",
  54285. extra: 1883/1793,
  54286. bottom: 70/1953
  54287. }
  54288. },
  54289. backDressed: {
  54290. height: math.unit(6 + 2/12, "feet"),
  54291. name: "Back (Dressed)",
  54292. image: {
  54293. source: "./media/characters/fiera/back-dressed.svg",
  54294. extra: 1847/1780,
  54295. bottom: 70/1917
  54296. }
  54297. },
  54298. frontNude: {
  54299. height: math.unit(6 + 2/12, "feet"),
  54300. name: "Front (Nude)",
  54301. image: {
  54302. source: "./media/characters/fiera/front-nude.svg",
  54303. extra: 1875/1785,
  54304. bottom: 66/1941
  54305. }
  54306. },
  54307. backNude: {
  54308. height: math.unit(6 + 2/12, "feet"),
  54309. name: "Back (Nude)",
  54310. image: {
  54311. source: "./media/characters/fiera/back-nude.svg",
  54312. extra: 1855/1788,
  54313. bottom: 44/1899
  54314. }
  54315. },
  54316. maw: {
  54317. height: math.unit(1.3, "feet"),
  54318. name: "Maw",
  54319. image: {
  54320. source: "./media/characters/fiera/maw.svg"
  54321. }
  54322. },
  54323. paw: {
  54324. height: math.unit(1, "feet"),
  54325. name: "Paw",
  54326. image: {
  54327. source: "./media/characters/fiera/paw.svg"
  54328. }
  54329. },
  54330. shoe: {
  54331. height: math.unit(1.05, "feet"),
  54332. name: "Shoe",
  54333. image: {
  54334. source: "./media/characters/fiera/shoe.svg"
  54335. }
  54336. },
  54337. },
  54338. [
  54339. {
  54340. name: "Normal",
  54341. height: math.unit(6 + 2/12, "feet"),
  54342. default: true
  54343. },
  54344. {
  54345. name: "Size Difference",
  54346. height: math.unit(13, "feet")
  54347. },
  54348. {
  54349. name: "Macro",
  54350. height: math.unit(60, "feet")
  54351. },
  54352. {
  54353. name: "Mega Macro",
  54354. height: math.unit(200, "feet")
  54355. },
  54356. ]
  54357. ))
  54358. characterMakers.push(() => makeCharacter(
  54359. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  54360. {
  54361. back: {
  54362. height: math.unit(6, "feet"),
  54363. name: "Back",
  54364. image: {
  54365. source: "./media/characters/flare/back.svg",
  54366. extra: 1883/1765,
  54367. bottom: 32/1915
  54368. }
  54369. },
  54370. },
  54371. [
  54372. {
  54373. name: "Normal",
  54374. height: math.unit(6 + 2/12, "feet"),
  54375. default: true
  54376. },
  54377. {
  54378. name: "Size Difference",
  54379. height: math.unit(13, "feet")
  54380. },
  54381. {
  54382. name: "Macro",
  54383. height: math.unit(60, "feet")
  54384. },
  54385. {
  54386. name: "Macro 2",
  54387. height: math.unit(100, "feet")
  54388. },
  54389. {
  54390. name: "Mega Macro",
  54391. height: math.unit(200, "feet")
  54392. },
  54393. ]
  54394. ))
  54395. characterMakers.push(() => makeCharacter(
  54396. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  54397. {
  54398. front: {
  54399. height: math.unit(2.2, "m"),
  54400. weight: math.unit(300, "kg"),
  54401. name: "Front",
  54402. image: {
  54403. source: "./media/characters/hanna/front.svg",
  54404. extra: 1696/1502,
  54405. bottom: 206/1902
  54406. }
  54407. },
  54408. },
  54409. [
  54410. {
  54411. name: "Humanoid",
  54412. height: math.unit(2.2, "meters")
  54413. },
  54414. {
  54415. name: "Normal",
  54416. height: math.unit(4.8, "meters"),
  54417. default: true
  54418. },
  54419. ]
  54420. ))
  54421. characterMakers.push(() => makeCharacter(
  54422. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  54423. {
  54424. front: {
  54425. height: math.unit(2.8, "meters"),
  54426. name: "Front",
  54427. image: {
  54428. source: "./media/characters/argo/front.svg",
  54429. extra: 731/518,
  54430. bottom: 84/815
  54431. }
  54432. },
  54433. },
  54434. [
  54435. {
  54436. name: "Normal",
  54437. height: math.unit(3, "meters"),
  54438. default: true
  54439. },
  54440. ]
  54441. ))
  54442. characterMakers.push(() => makeCharacter(
  54443. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  54444. {
  54445. side: {
  54446. height: math.unit(3.8, "meters"),
  54447. name: "Side",
  54448. image: {
  54449. source: "./media/characters/sybil/side.svg",
  54450. extra: 382/361,
  54451. bottom: 25/407
  54452. }
  54453. },
  54454. },
  54455. [
  54456. {
  54457. name: "Normal",
  54458. height: math.unit(3.8, "meters"),
  54459. default: true
  54460. },
  54461. ]
  54462. ))
  54463. characterMakers.push(() => makeCharacter(
  54464. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  54465. {
  54466. side: {
  54467. height: math.unit(6, "meters"),
  54468. name: "Side",
  54469. image: {
  54470. source: "./media/characters/plum/side.svg",
  54471. extra: 858/755,
  54472. bottom: 45/903
  54473. },
  54474. form: "taur",
  54475. default: true
  54476. },
  54477. back: {
  54478. height: math.unit(6.3, "meters"),
  54479. name: "Back",
  54480. image: {
  54481. source: "./media/characters/plum/back.svg",
  54482. extra: 887/813,
  54483. bottom: 32/919
  54484. },
  54485. form: "taur",
  54486. },
  54487. feral: {
  54488. height: math.unit(5.5, "meter"),
  54489. name: "Front",
  54490. image: {
  54491. source: "./media/characters/plum/feral.svg",
  54492. extra: 568/403,
  54493. bottom: 51/619
  54494. },
  54495. form: "feral",
  54496. default: true
  54497. },
  54498. head: {
  54499. height: math.unit(1.46, "meter"),
  54500. name: "Head",
  54501. image: {
  54502. source: "./media/characters/plum/head.svg"
  54503. },
  54504. form: "taur"
  54505. },
  54506. tailTop: {
  54507. height: math.unit(5.6, "meter"),
  54508. name: "Tail (Top)",
  54509. image: {
  54510. source: "./media/characters/plum/tail-top.svg"
  54511. },
  54512. form: "taur",
  54513. },
  54514. tailBottom: {
  54515. height: math.unit(5.6, "meter"),
  54516. name: "Tail (Bottom)",
  54517. image: {
  54518. source: "./media/characters/plum/tail-bottom.svg"
  54519. },
  54520. form: "taur",
  54521. },
  54522. feralHead: {
  54523. height: math.unit(2.56549521, "meter"),
  54524. name: "Head",
  54525. image: {
  54526. source: "./media/characters/plum/head.svg"
  54527. },
  54528. form: "feral"
  54529. },
  54530. feralTailTop: {
  54531. height: math.unit(5.44728435, "meter"),
  54532. name: "Tail (Top)",
  54533. image: {
  54534. source: "./media/characters/plum/tail-top.svg"
  54535. },
  54536. form: "feral",
  54537. },
  54538. feralTailBottom: {
  54539. height: math.unit(5.44728435, "meter"),
  54540. name: "Tail (Bottom)",
  54541. image: {
  54542. source: "./media/characters/plum/tail-bottom.svg"
  54543. },
  54544. form: "feral",
  54545. },
  54546. },
  54547. [
  54548. {
  54549. name: "Normal",
  54550. height: math.unit(6, "meters"),
  54551. default: true,
  54552. form: "taur"
  54553. },
  54554. {
  54555. name: "Normal",
  54556. height: math.unit(5.5, "meters"),
  54557. default: true,
  54558. form: "feral"
  54559. },
  54560. ],
  54561. {
  54562. "taur": {
  54563. name: "Taur",
  54564. default: true
  54565. },
  54566. "feral": {
  54567. name: "Feral",
  54568. },
  54569. }
  54570. ))
  54571. characterMakers.push(() => makeCharacter(
  54572. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  54573. {
  54574. front: {
  54575. height: math.unit(6, "feet"),
  54576. weight: math.unit(115, "lb"),
  54577. name: "Front",
  54578. image: {
  54579. source: "./media/characters/celeste-kitsune/front.svg",
  54580. extra: 393/366,
  54581. bottom: 7/400
  54582. }
  54583. },
  54584. side: {
  54585. height: math.unit(6, "feet"),
  54586. weight: math.unit(115, "lb"),
  54587. name: "Side",
  54588. image: {
  54589. source: "./media/characters/celeste-kitsune/side.svg",
  54590. extra: 818/765,
  54591. bottom: 40/858
  54592. }
  54593. },
  54594. },
  54595. [
  54596. {
  54597. name: "Megamacro",
  54598. height: math.unit(1500, "miles"),
  54599. default: true
  54600. },
  54601. ]
  54602. ))
  54603. characterMakers.push(() => makeCharacter(
  54604. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  54605. {
  54606. front: {
  54607. height: math.unit(8, "meters"),
  54608. name: "Front",
  54609. image: {
  54610. source: "./media/characters/io/front.svg",
  54611. extra: 865/722,
  54612. bottom: 58/923
  54613. }
  54614. },
  54615. back: {
  54616. height: math.unit(8, "meters"),
  54617. name: "Back",
  54618. image: {
  54619. source: "./media/characters/io/back.svg",
  54620. extra: 920/776,
  54621. bottom: 42/962
  54622. }
  54623. },
  54624. head: {
  54625. height: math.unit(5.09, "meters"),
  54626. name: "Head",
  54627. image: {
  54628. source: "./media/characters/io/head.svg"
  54629. }
  54630. },
  54631. hand: {
  54632. height: math.unit(1.6, "meters"),
  54633. name: "Hand",
  54634. image: {
  54635. source: "./media/characters/io/hand.svg"
  54636. }
  54637. },
  54638. foot: {
  54639. height: math.unit(2.4, "meters"),
  54640. name: "Foot",
  54641. image: {
  54642. source: "./media/characters/io/foot.svg"
  54643. }
  54644. },
  54645. },
  54646. [
  54647. {
  54648. name: "Normal",
  54649. height: math.unit(8, "meters"),
  54650. default: true
  54651. },
  54652. ]
  54653. ))
  54654. characterMakers.push(() => makeCharacter(
  54655. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  54656. {
  54657. side: {
  54658. height: math.unit(6 + 3/12, "feet"),
  54659. weight: math.unit(225, "lb"),
  54660. name: "Side",
  54661. image: {
  54662. source: "./media/characters/silas/side.svg",
  54663. extra: 703/653,
  54664. bottom: 23/726
  54665. },
  54666. extraAttributes: {
  54667. "pawLength": {
  54668. name: "Paw Length",
  54669. power: 1,
  54670. type: "length",
  54671. base: math.unit(12, "inches")
  54672. },
  54673. "pawWidth": {
  54674. name: "Paw Width",
  54675. power: 1,
  54676. type: "length",
  54677. base: math.unit(4.5, "inches")
  54678. },
  54679. "pawArea": {
  54680. name: "Paw Area",
  54681. power: 2,
  54682. type: "area",
  54683. base: math.unit(12 * 4.5, "inches^2")
  54684. },
  54685. }
  54686. },
  54687. },
  54688. [
  54689. {
  54690. name: "Normal",
  54691. height: math.unit(6 + 3/12, "feet"),
  54692. default: true
  54693. },
  54694. ]
  54695. ))
  54696. characterMakers.push(() => makeCharacter(
  54697. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  54698. {
  54699. back: {
  54700. height: math.unit(1.6, "meters"),
  54701. weight: math.unit(150, "lb"),
  54702. name: "Back",
  54703. image: {
  54704. source: "./media/characters/zari/back.svg",
  54705. extra: 424/411,
  54706. bottom: 32/456
  54707. },
  54708. extraAttributes: {
  54709. "bladderCapacity": {
  54710. name: "Bladder Size",
  54711. power: 3,
  54712. type: "volume",
  54713. base: math.unit(500, "mL")
  54714. },
  54715. "bladderFlow": {
  54716. name: "Flow Rate",
  54717. power: 3,
  54718. type: "volume",
  54719. base: math.unit(25, "mL")
  54720. },
  54721. }
  54722. },
  54723. },
  54724. [
  54725. {
  54726. name: "Normal",
  54727. height: math.unit(1.6, "meters"),
  54728. default: true
  54729. },
  54730. ]
  54731. ))
  54732. characterMakers.push(() => makeCharacter(
  54733. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  54734. {
  54735. front: {
  54736. height: math.unit(25, "feet"),
  54737. weight: math.unit(5, "tons"),
  54738. name: "Front",
  54739. image: {
  54740. source: "./media/characters/charlie-human/front.svg",
  54741. extra: 1870/1740,
  54742. bottom: 102/1972
  54743. },
  54744. extraAttributes: {
  54745. "dickLength": {
  54746. name: "Dick Length",
  54747. power: 1,
  54748. type: "length",
  54749. base: math.unit(9, "feet")
  54750. },
  54751. }
  54752. },
  54753. back: {
  54754. height: math.unit(25, "feet"),
  54755. weight: math.unit(5, "tons"),
  54756. name: "Back",
  54757. image: {
  54758. source: "./media/characters/charlie-human/back.svg",
  54759. extra: 1858/1733,
  54760. bottom: 105/1963
  54761. },
  54762. extraAttributes: {
  54763. "dickLength": {
  54764. name: "Dick Length",
  54765. power: 1,
  54766. type: "length",
  54767. base: math.unit(9, "feet")
  54768. },
  54769. }
  54770. },
  54771. },
  54772. [
  54773. {
  54774. name: "\"Normal\"",
  54775. height: math.unit(6 + 4/12, "feet")
  54776. },
  54777. {
  54778. name: "Big",
  54779. height: math.unit(25, "feet"),
  54780. default: true
  54781. },
  54782. ]
  54783. ))
  54784. characterMakers.push(() => makeCharacter(
  54785. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  54786. {
  54787. front: {
  54788. height: math.unit(6 + 4/12, "feet"),
  54789. weight: math.unit(320, "lb"),
  54790. name: "Front",
  54791. image: {
  54792. source: "./media/characters/ookitsu/front.svg",
  54793. extra: 1160/976,
  54794. bottom: 38/1198
  54795. }
  54796. },
  54797. frontNsfw: {
  54798. height: math.unit(6 + 4/12, "feet"),
  54799. weight: math.unit(320, "lb"),
  54800. name: "Front (NSFW)",
  54801. image: {
  54802. source: "./media/characters/ookitsu/front-nsfw.svg",
  54803. extra: 1160/976,
  54804. bottom: 38/1198
  54805. }
  54806. },
  54807. back: {
  54808. height: math.unit(6 + 4/12, "feet"),
  54809. weight: math.unit(320, "lb"),
  54810. name: "Back",
  54811. image: {
  54812. source: "./media/characters/ookitsu/back.svg",
  54813. extra: 1030/975,
  54814. bottom: 70/1100
  54815. }
  54816. },
  54817. head: {
  54818. height: math.unit(1.79, "feet"),
  54819. name: "Head",
  54820. image: {
  54821. source: "./media/characters/ookitsu/head.svg"
  54822. }
  54823. },
  54824. hand: {
  54825. height: math.unit(0.92, "feet"),
  54826. name: "Hand",
  54827. image: {
  54828. source: "./media/characters/ookitsu/hand.svg"
  54829. }
  54830. },
  54831. tails: {
  54832. height: math.unit(3.3, "feet"),
  54833. name: "Tails",
  54834. image: {
  54835. source: "./media/characters/ookitsu/tails.svg"
  54836. }
  54837. },
  54838. dick: {
  54839. height: math.unit(1.10833, "feet"),
  54840. name: "Dick",
  54841. image: {
  54842. source: "./media/characters/ookitsu/dick.svg"
  54843. }
  54844. },
  54845. },
  54846. [
  54847. {
  54848. name: "Normal",
  54849. height: math.unit(6 + 4/12, "feet"),
  54850. default: true
  54851. },
  54852. {
  54853. name: "Macro",
  54854. height: math.unit(30, "feet")
  54855. },
  54856. ]
  54857. ))
  54858. characterMakers.push(() => makeCharacter(
  54859. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  54860. {
  54861. anthroFront: {
  54862. height: math.unit(6, "feet"),
  54863. weight: math.unit(250, "lb"),
  54864. name: "Front",
  54865. image: {
  54866. source: "./media/characters/jhusky/anthro-front.svg",
  54867. extra: 474/439,
  54868. bottom: 7/481
  54869. },
  54870. form: "anthro",
  54871. default: true
  54872. },
  54873. taurSideSfw: {
  54874. height: math.unit(6 + 4/12, "feet"),
  54875. weight: math.unit(500, "lb"),
  54876. name: "Side (SFW)",
  54877. image: {
  54878. source: "./media/characters/jhusky/taur-side-sfw.svg",
  54879. extra: 1741/1629,
  54880. bottom: 196/1937
  54881. },
  54882. form: "taur",
  54883. default: true
  54884. },
  54885. taurSideNsfw: {
  54886. height: math.unit(6 + 4/12, "feet"),
  54887. weight: math.unit(500, "lb"),
  54888. name: "Taur (NSFW)",
  54889. image: {
  54890. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  54891. extra: 1741/1629,
  54892. bottom: 196/1937
  54893. },
  54894. form: "taur",
  54895. },
  54896. },
  54897. [
  54898. {
  54899. name: "Huge",
  54900. height: math.unit(500, "feet"),
  54901. form: "anthro"
  54902. },
  54903. {
  54904. name: "Macro",
  54905. height: math.unit(1000, "feet"),
  54906. default: true,
  54907. form: "anthro"
  54908. },
  54909. {
  54910. name: "Megamacro",
  54911. height: math.unit(10000, "feet"),
  54912. form: "anthro"
  54913. },
  54914. {
  54915. name: "Huge",
  54916. height: math.unit(528, "feet"),
  54917. form: "taur"
  54918. },
  54919. {
  54920. name: "Macro",
  54921. height: math.unit(1056, "feet"),
  54922. default: true,
  54923. form: "taur"
  54924. },
  54925. {
  54926. name: "Megamacro",
  54927. height: math.unit(10556, "feet"),
  54928. form: "taur"
  54929. },
  54930. ],
  54931. {
  54932. "anthro": {
  54933. name: "Anthro",
  54934. default: true
  54935. },
  54936. "taur": {
  54937. name: "Taur",
  54938. },
  54939. }
  54940. ))
  54941. characterMakers.push(() => makeCharacter(
  54942. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  54943. {
  54944. front: {
  54945. height: math.unit(8, "feet"),
  54946. weight: math.unit(500, "lb"),
  54947. name: "Front",
  54948. image: {
  54949. source: "./media/characters/armail/front.svg",
  54950. extra: 1753/1669,
  54951. bottom: 155/1908
  54952. }
  54953. },
  54954. back: {
  54955. height: math.unit(8, "feet"),
  54956. weight: math.unit(500, "lb"),
  54957. name: "Back",
  54958. image: {
  54959. source: "./media/characters/armail/back.svg",
  54960. extra: 1872/1803,
  54961. bottom: 63/1935
  54962. }
  54963. },
  54964. },
  54965. [
  54966. {
  54967. name: "Micro",
  54968. height: math.unit(0.25, "feet")
  54969. },
  54970. {
  54971. name: "Normal",
  54972. height: math.unit(8, "feet"),
  54973. default: true
  54974. },
  54975. {
  54976. name: "Mini-macro",
  54977. height: math.unit(30, "feet")
  54978. },
  54979. {
  54980. name: "Macro",
  54981. height: math.unit(400, "feet")
  54982. },
  54983. {
  54984. name: "Mega-macro",
  54985. height: math.unit(6000, "feet")
  54986. },
  54987. ]
  54988. ))
  54989. characterMakers.push(() => makeCharacter(
  54990. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  54991. {
  54992. front: {
  54993. height: math.unit(6 + 7/12, "feet"),
  54994. weight: math.unit(210, "lb"),
  54995. name: "Front",
  54996. image: {
  54997. source: "./media/characters/wilfred-t-buxton/front.svg",
  54998. extra: 1068/882,
  54999. bottom: 28/1096
  55000. }
  55001. },
  55002. },
  55003. [
  55004. {
  55005. name: "Normal",
  55006. height: math.unit(6 + 7/12, "feet"),
  55007. default: true
  55008. },
  55009. ]
  55010. ))
  55011. characterMakers.push(() => makeCharacter(
  55012. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55013. {
  55014. front: {
  55015. height: math.unit(5 + 2/12, "feet"),
  55016. weight: math.unit(120, "lb"),
  55017. name: "Front",
  55018. image: {
  55019. source: "./media/characters/leighton-marrow/front.svg",
  55020. extra: 441/409,
  55021. bottom: 37/478
  55022. }
  55023. },
  55024. },
  55025. [
  55026. {
  55027. name: "Normal",
  55028. height: math.unit(5 + 2/12, "feet"),
  55029. default: true
  55030. },
  55031. ]
  55032. ))
  55033. characterMakers.push(() => makeCharacter(
  55034. { name: "Licos", species: ["werewolf"], tags: ["anthro"] },
  55035. {
  55036. front: {
  55037. height: math.unit(4, "meters"),
  55038. weight: math.unit(1200, "kg"),
  55039. name: "Front",
  55040. image: {
  55041. source: "./media/characters/licos/front.svg",
  55042. extra: 1727/1604,
  55043. bottom: 101/1828
  55044. }
  55045. },
  55046. },
  55047. [
  55048. {
  55049. name: "Normal",
  55050. height: math.unit(4, "meters"),
  55051. default: true
  55052. },
  55053. ]
  55054. ))
  55055. characterMakers.push(() => makeCharacter(
  55056. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55057. {
  55058. front: {
  55059. height: math.unit(10 + 3/12, "feet"),
  55060. name: "Front",
  55061. image: {
  55062. source: "./media/characters/theo-monkey/front.svg",
  55063. extra: 1735/1658,
  55064. bottom: 73/1808
  55065. }
  55066. },
  55067. back: {
  55068. height: math.unit(10 + 3/12, "feet"),
  55069. name: "Back",
  55070. image: {
  55071. source: "./media/characters/theo-monkey/back.svg",
  55072. extra: 1742/1664,
  55073. bottom: 33/1775
  55074. }
  55075. },
  55076. head: {
  55077. height: math.unit(2.29, "feet"),
  55078. name: "Head",
  55079. image: {
  55080. source: "./media/characters/theo-monkey/head.svg"
  55081. }
  55082. },
  55083. handPalm: {
  55084. height: math.unit(1.73, "feet"),
  55085. name: "Hand (Palm)",
  55086. image: {
  55087. source: "./media/characters/theo-monkey/hand-palm.svg"
  55088. }
  55089. },
  55090. handBack: {
  55091. height: math.unit(1.63, "feet"),
  55092. name: "Hand (Back)",
  55093. image: {
  55094. source: "./media/characters/theo-monkey/hand-back.svg"
  55095. }
  55096. },
  55097. footSole: {
  55098. height: math.unit(2.15, "feet"),
  55099. name: "Foot (Sole)",
  55100. image: {
  55101. source: "./media/characters/theo-monkey/foot-sole.svg"
  55102. }
  55103. },
  55104. footSide: {
  55105. height: math.unit(1.6, "feet"),
  55106. name: "Foot (Side)",
  55107. image: {
  55108. source: "./media/characters/theo-monkey/foot-side.svg"
  55109. }
  55110. },
  55111. },
  55112. [
  55113. {
  55114. name: "Normal",
  55115. height: math.unit(10 + 3/12, "feet"),
  55116. default: true
  55117. },
  55118. ]
  55119. ))
  55120. characterMakers.push(() => makeCharacter(
  55121. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55122. {
  55123. front: {
  55124. height: math.unit(11, "feet"),
  55125. weight: math.unit(3000, "lb"),
  55126. preyCapacity: math.unit(10, "people"),
  55127. name: "Front",
  55128. image: {
  55129. source: "./media/characters/brook/front.svg",
  55130. extra: 909/835,
  55131. bottom: 108/1017
  55132. }
  55133. },
  55134. back: {
  55135. height: math.unit(11, "feet"),
  55136. weight: math.unit(3000, "lb"),
  55137. preyCapacity: math.unit(10, "people"),
  55138. name: "Back",
  55139. image: {
  55140. source: "./media/characters/brook/back.svg",
  55141. extra: 976/916,
  55142. bottom: 34/1010
  55143. }
  55144. },
  55145. backAlt: {
  55146. height: math.unit(11, "feet"),
  55147. weight: math.unit(3000, "lb"),
  55148. preyCapacity: math.unit(10, "people"),
  55149. name: "Back (Alt)",
  55150. image: {
  55151. source: "./media/characters/brook/back-alt.svg",
  55152. extra: 1283/1213,
  55153. bottom: 35/1318
  55154. }
  55155. },
  55156. bust: {
  55157. height: math.unit(9.0859030837, "feet"),
  55158. weight: math.unit(3000, "lb"),
  55159. preyCapacity: math.unit(10, "people"),
  55160. name: "Bust",
  55161. image: {
  55162. source: "./media/characters/brook/bust.svg",
  55163. extra: 2043/1923,
  55164. bottom: 0/2043
  55165. }
  55166. },
  55167. },
  55168. [
  55169. {
  55170. name: "Small",
  55171. height: math.unit(11, "feet"),
  55172. default: true
  55173. },
  55174. {
  55175. name: "Towering",
  55176. height: math.unit(5, "km")
  55177. },
  55178. {
  55179. name: "Enormous",
  55180. height: math.unit(25, "earths")
  55181. },
  55182. ]
  55183. ))
  55184. characterMakers.push(() => makeCharacter(
  55185. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55186. {
  55187. front: {
  55188. height: math.unit(4, "feet"),
  55189. weight: math.unit(150, "lb"),
  55190. name: "Front",
  55191. image: {
  55192. source: "./media/characters/squishi/front.svg",
  55193. extra: 1428/1271,
  55194. bottom: 30/1458
  55195. },
  55196. extraAttributes: {
  55197. "pawSize": {
  55198. name: "Paw Size",
  55199. power: 1,
  55200. type: "length",
  55201. base: math.unit(14, "ShoeSizeMensUS"),
  55202. defaultUnit: "ShoeSizeMensUS"
  55203. },
  55204. }
  55205. },
  55206. side: {
  55207. height: math.unit(4, "feet"),
  55208. weight: math.unit(150, "lb"),
  55209. name: "Side",
  55210. image: {
  55211. source: "./media/characters/squishi/side.svg",
  55212. extra: 1428/1271,
  55213. bottom: 30/1458
  55214. },
  55215. extraAttributes: {
  55216. "pawSize": {
  55217. name: "Paw Size",
  55218. power: 1,
  55219. type: "length",
  55220. base: math.unit(14, "ShoeSizeMensUS"),
  55221. defaultUnit: "ShoeSizeMensUS"
  55222. },
  55223. }
  55224. },
  55225. back: {
  55226. height: math.unit(4, "feet"),
  55227. weight: math.unit(150, "lb"),
  55228. name: "Back",
  55229. image: {
  55230. source: "./media/characters/squishi/back.svg",
  55231. extra: 1428/1271,
  55232. bottom: 30/1458
  55233. },
  55234. extraAttributes: {
  55235. "pawSize": {
  55236. name: "Paw Size",
  55237. power: 1,
  55238. type: "length",
  55239. base: math.unit(14, "ShoeSizeMensUS"),
  55240. defaultUnit: "ShoeSizeMensUS"
  55241. },
  55242. }
  55243. },
  55244. },
  55245. [
  55246. {
  55247. name: "Normal",
  55248. height: math.unit(4, "feet"),
  55249. default: true
  55250. },
  55251. ]
  55252. ))
  55253. characterMakers.push(() => makeCharacter(
  55254. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55255. {
  55256. front: {
  55257. height: math.unit(7 + 8/12, "feet"),
  55258. weight: math.unit(333, "lb"),
  55259. name: "Front",
  55260. image: {
  55261. source: "./media/characters/vincent-vasroc/front.svg",
  55262. extra: 1962/1860,
  55263. bottom: 41/2003
  55264. }
  55265. },
  55266. back: {
  55267. height: math.unit(7 + 8/12, "feet"),
  55268. weight: math.unit(333, "lb"),
  55269. name: "Back",
  55270. image: {
  55271. source: "./media/characters/vincent-vasroc/back.svg",
  55272. extra: 1952/1815,
  55273. bottom: 33/1985
  55274. }
  55275. },
  55276. paw: {
  55277. height: math.unit(1.24, "feet"),
  55278. name: "Paw",
  55279. image: {
  55280. source: "./media/characters/vincent-vasroc/paw.svg"
  55281. }
  55282. },
  55283. ear: {
  55284. height: math.unit(0.75, "feet"),
  55285. name: "Ear",
  55286. image: {
  55287. source: "./media/characters/vincent-vasroc/ear.svg"
  55288. }
  55289. },
  55290. },
  55291. [
  55292. {
  55293. name: "Nano",
  55294. height: math.unit(92, "micrometers")
  55295. },
  55296. {
  55297. name: "Normal",
  55298. height: math.unit(7 + 8/12, "feet"),
  55299. default: true
  55300. },
  55301. ]
  55302. ))
  55303. characterMakers.push(() => makeCharacter(
  55304. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55305. {
  55306. frontNsfw: {
  55307. height: math.unit(40, "feet"),
  55308. weight: math.unit(58, "tons"),
  55309. name: "Front (NSFW)",
  55310. image: {
  55311. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55312. extra: 1265/965,
  55313. bottom: 155/1420
  55314. }
  55315. },
  55316. frontSfw: {
  55317. height: math.unit(40, "feet"),
  55318. weight: math.unit(58, "tons"),
  55319. name: "Front (SFW)",
  55320. image: {
  55321. source: "./media/characters/ru-kahn/front-sfw.svg",
  55322. extra: 1265/965,
  55323. bottom: 80/1345
  55324. }
  55325. },
  55326. },
  55327. [
  55328. {
  55329. name: "Small",
  55330. height: math.unit(4, "feet")
  55331. },
  55332. {
  55333. name: "Normal",
  55334. height: math.unit(40, "feet"),
  55335. default: true
  55336. },
  55337. {
  55338. name: "Macro",
  55339. height: math.unit(400, "feet")
  55340. },
  55341. ]
  55342. ))
  55343. characterMakers.push(() => makeCharacter(
  55344. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  55345. {
  55346. frontNude: {
  55347. height: math.unit(6 + 5/12, "feet"),
  55348. name: "Front (Nude)",
  55349. image: {
  55350. source: "./media/characters/sylvie-laforge/front-nude.svg",
  55351. extra: 1369/1366,
  55352. bottom: 68/1437
  55353. }
  55354. },
  55355. frontDressed: {
  55356. height: math.unit(6 + 5/12, "feet"),
  55357. name: "Front (Dressed)",
  55358. image: {
  55359. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  55360. extra: 1369/1366,
  55361. bottom: 68/1437
  55362. }
  55363. },
  55364. },
  55365. [
  55366. {
  55367. name: "Normal",
  55368. height: math.unit(6 + 5/12, "feet"),
  55369. default: true
  55370. },
  55371. {
  55372. name: "Maximum",
  55373. height: math.unit(1930, "feet")
  55374. },
  55375. ]
  55376. ))
  55377. characterMakers.push(() => makeCharacter(
  55378. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  55379. {
  55380. front: {
  55381. height: math.unit(5 + 6/12, "feet"),
  55382. name: "Front",
  55383. image: {
  55384. source: "./media/characters/kaja/front.svg",
  55385. extra: 1874/1514,
  55386. bottom: 117/1991
  55387. }
  55388. },
  55389. },
  55390. [
  55391. {
  55392. name: "Normal",
  55393. height: math.unit(5 + 6/12, "feet"),
  55394. default: true
  55395. },
  55396. ]
  55397. ))
  55398. characterMakers.push(() => makeCharacter(
  55399. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  55400. {
  55401. front: {
  55402. height: math.unit(5 + 9/12, "feet"),
  55403. weight: math.unit(200, "lb"),
  55404. name: "Front",
  55405. image: {
  55406. source: "./media/characters/mark-smith/front.svg",
  55407. extra: 1004/943,
  55408. bottom: 58/1062
  55409. }
  55410. },
  55411. back: {
  55412. height: math.unit(5 + 9/12, "feet"),
  55413. weight: math.unit(200, "lb"),
  55414. name: "Back",
  55415. image: {
  55416. source: "./media/characters/mark-smith/back.svg",
  55417. extra: 1023/953,
  55418. bottom: 24/1047
  55419. }
  55420. },
  55421. head: {
  55422. height: math.unit(1.82, "feet"),
  55423. name: "Head",
  55424. image: {
  55425. source: "./media/characters/mark-smith/head.svg"
  55426. }
  55427. },
  55428. hand: {
  55429. height: math.unit(1.4, "feet"),
  55430. name: "Hand",
  55431. image: {
  55432. source: "./media/characters/mark-smith/hand.svg"
  55433. }
  55434. },
  55435. paw: {
  55436. height: math.unit(1.69, "feet"),
  55437. name: "Paw",
  55438. image: {
  55439. source: "./media/characters/mark-smith/paw.svg"
  55440. }
  55441. },
  55442. },
  55443. [
  55444. {
  55445. name: "Micro",
  55446. height: math.unit(0.25, "inches")
  55447. },
  55448. {
  55449. name: "Normal",
  55450. height: math.unit(5 + 9/12, "feet"),
  55451. default: true
  55452. },
  55453. {
  55454. name: "Macro",
  55455. height: math.unit(500, "feet")
  55456. },
  55457. ]
  55458. ))
  55459. characterMakers.push(() => makeCharacter(
  55460. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  55461. {
  55462. frontNude: {
  55463. height: math.unit(6, "feet"),
  55464. name: "Front (Nude)",
  55465. image: {
  55466. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  55467. extra: 1384/1321,
  55468. bottom: 57/1441
  55469. }
  55470. },
  55471. frontDressed: {
  55472. height: math.unit(6, "feet"),
  55473. name: "Front (Dressed)",
  55474. image: {
  55475. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  55476. extra: 1384/1321,
  55477. bottom: 57/1441
  55478. }
  55479. },
  55480. },
  55481. [
  55482. {
  55483. name: "Normal",
  55484. height: math.unit(6, "feet"),
  55485. default: true
  55486. },
  55487. {
  55488. name: "Maximum",
  55489. height: math.unit(1776, "feet")
  55490. },
  55491. ]
  55492. ))
  55493. characterMakers.push(() => makeCharacter(
  55494. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  55495. {
  55496. front: {
  55497. height: math.unit(2 + 4/12, "feet"),
  55498. weight: math.unit(350, "lb"),
  55499. name: "Front",
  55500. image: {
  55501. source: "./media/characters/devos/front.svg",
  55502. extra: 958/852,
  55503. bottom: 143/1101
  55504. }
  55505. },
  55506. },
  55507. [
  55508. {
  55509. name: "Base",
  55510. height: math.unit(2 + 4/12, "feet"),
  55511. default: true
  55512. },
  55513. ]
  55514. ))
  55515. characterMakers.push(() => makeCharacter(
  55516. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  55517. {
  55518. front: {
  55519. height: math.unit(9 + 2/12, "feet"),
  55520. name: "Front",
  55521. image: {
  55522. source: "./media/characters/hiveheart/front.svg",
  55523. extra: 394/364,
  55524. bottom: 65/459
  55525. }
  55526. },
  55527. back: {
  55528. height: math.unit(9 + 2/12, "feet"),
  55529. name: "Back",
  55530. image: {
  55531. source: "./media/characters/hiveheart/back.svg",
  55532. extra: 374/357,
  55533. bottom: 63/437
  55534. }
  55535. },
  55536. },
  55537. [
  55538. {
  55539. name: "Base",
  55540. height: math.unit(9 + 2/12, "feet"),
  55541. default: true
  55542. },
  55543. ]
  55544. ))
  55545. characterMakers.push(() => makeCharacter(
  55546. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  55547. {
  55548. front: {
  55549. height: math.unit(2.5, "inches"),
  55550. weight: math.unit(0.6, "oz"),
  55551. name: "Front",
  55552. image: {
  55553. source: "./media/characters/bryn/front.svg",
  55554. extra: 1480/1205,
  55555. bottom: 27/1507
  55556. }
  55557. },
  55558. back: {
  55559. height: math.unit(2.5, "inches"),
  55560. weight: math.unit(0.6, "oz"),
  55561. name: "Back",
  55562. image: {
  55563. source: "./media/characters/bryn/back.svg",
  55564. extra: 1475/1201,
  55565. bottom: 39/1514
  55566. }
  55567. },
  55568. foot: {
  55569. height: math.unit(0.4, "inches"),
  55570. name: "Foot",
  55571. image: {
  55572. source: "./media/characters/bryn/foot.svg"
  55573. }
  55574. },
  55575. },
  55576. [
  55577. {
  55578. name: "Normal",
  55579. height: math.unit(2.5, "inches"),
  55580. default: true
  55581. },
  55582. ]
  55583. ))
  55584. characterMakers.push(() => makeCharacter(
  55585. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  55586. {
  55587. side: {
  55588. height: math.unit(7, "feet"),
  55589. weight: math.unit(657, "kg"),
  55590. name: "Side",
  55591. image: {
  55592. source: "./media/characters/delta/side.svg",
  55593. extra: 781/212,
  55594. bottom: 7/788
  55595. },
  55596. extraAttributes: {
  55597. "wingspan": {
  55598. name: "Wingspan",
  55599. power: 1,
  55600. type: "length",
  55601. base: math.unit(48, "feet")
  55602. },
  55603. "length": {
  55604. name: "Length",
  55605. power: 1,
  55606. type: "length",
  55607. base: math.unit(21, "feet")
  55608. },
  55609. "pawSize": {
  55610. name: "Paw Size",
  55611. power: 2,
  55612. type: "area",
  55613. base: math.unit(1.5*1.4, "feet^2")
  55614. },
  55615. }
  55616. },
  55617. },
  55618. [
  55619. {
  55620. name: "Normal",
  55621. height: math.unit(6, "feet"),
  55622. default: true
  55623. },
  55624. ]
  55625. ))
  55626. characterMakers.push(() => makeCharacter(
  55627. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  55628. {
  55629. front: {
  55630. height: math.unit(6, "feet"),
  55631. name: "Front",
  55632. image: {
  55633. source: "./media/characters/pyrow/front.svg",
  55634. extra: 513/486,
  55635. bottom: 14/527
  55636. }
  55637. },
  55638. frontWing: {
  55639. height: math.unit(6, "feet"),
  55640. name: "Front (Wing)",
  55641. image: {
  55642. source: "./media/characters/pyrow/front-wing.svg",
  55643. extra: 539/383,
  55644. bottom: 20/559
  55645. }
  55646. },
  55647. back: {
  55648. height: math.unit(6, "feet"),
  55649. name: "Back",
  55650. image: {
  55651. source: "./media/characters/pyrow/back.svg",
  55652. extra: 500/473,
  55653. bottom: 9/509
  55654. }
  55655. },
  55656. },
  55657. [
  55658. {
  55659. name: "Normal",
  55660. height: math.unit(6, "feet"),
  55661. default: true
  55662. },
  55663. ]
  55664. ))
  55665. characterMakers.push(() => makeCharacter(
  55666. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  55667. {
  55668. front: {
  55669. height: math.unit(5, "meters"),
  55670. weight: math.unit(3, "tonnes"),
  55671. name: "Front",
  55672. image: {
  55673. source: "./media/characters/velikan/front.svg",
  55674. extra: 867/744,
  55675. bottom: 71/938
  55676. },
  55677. extraAttributes: {
  55678. "shoeSize": {
  55679. name: "Shoe Size",
  55680. power: 1,
  55681. type: "length",
  55682. base: math.unit(135, "ShoeSizeUK"),
  55683. defaultUnit: "ShoeSizeUK"
  55684. },
  55685. }
  55686. },
  55687. },
  55688. [
  55689. {
  55690. name: "Normal",
  55691. height: math.unit(5, "meters"),
  55692. default: true
  55693. },
  55694. {
  55695. name: "Macro",
  55696. height: math.unit(1, "km")
  55697. },
  55698. {
  55699. name: "Mega Macro",
  55700. height: math.unit(100, "km")
  55701. },
  55702. {
  55703. name: "Giga Macro",
  55704. height: math.unit(2, "megameters")
  55705. },
  55706. {
  55707. name: "Planetary",
  55708. height: math.unit(22, "megameters")
  55709. },
  55710. {
  55711. name: "Solar",
  55712. height: math.unit(8, "gigameters")
  55713. },
  55714. {
  55715. name: "Cosmic",
  55716. height: math.unit(10, "zettameters")
  55717. },
  55718. {
  55719. name: "Omni",
  55720. height: math.unit(9e260, "multiverses")
  55721. },
  55722. ]
  55723. ))
  55724. characterMakers.push(() => makeCharacter(
  55725. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  55726. {
  55727. front: {
  55728. height: math.unit(4 + 3/12, "feet"),
  55729. weight: math.unit(90, "lb"),
  55730. name: "Front",
  55731. image: {
  55732. source: "./media/characters/sabiki/front.svg",
  55733. extra: 1662/1423,
  55734. bottom: 65/1727
  55735. }
  55736. },
  55737. },
  55738. [
  55739. {
  55740. name: "Normal",
  55741. height: math.unit(4 + 3/12, "feet"),
  55742. default: true
  55743. },
  55744. ]
  55745. ))
  55746. characterMakers.push(() => makeCharacter(
  55747. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  55748. {
  55749. frontSfw: {
  55750. height: math.unit(2, "mm"),
  55751. name: "Front (SFW)",
  55752. image: {
  55753. source: "./media/characters/carmel/front-sfw.svg",
  55754. extra: 1131/1006,
  55755. bottom: 66/1197
  55756. }
  55757. },
  55758. frontNsfw: {
  55759. height: math.unit(2, "mm"),
  55760. name: "Front (NSFW)",
  55761. image: {
  55762. source: "./media/characters/carmel/front-nsfw.svg",
  55763. extra: 1131/1006,
  55764. bottom: 66/1197
  55765. }
  55766. },
  55767. foot: {
  55768. height: math.unit(0.3, "mm"),
  55769. name: "Foot",
  55770. image: {
  55771. source: "./media/characters/carmel/foot.svg"
  55772. }
  55773. },
  55774. tongue: {
  55775. height: math.unit(0.71, "mm"),
  55776. name: "Tongue",
  55777. image: {
  55778. source: "./media/characters/carmel/tongue.svg"
  55779. }
  55780. },
  55781. dick: {
  55782. height: math.unit(0.085, "mm"),
  55783. name: "Dick",
  55784. image: {
  55785. source: "./media/characters/carmel/dick.svg"
  55786. }
  55787. },
  55788. },
  55789. [
  55790. {
  55791. name: "Micro",
  55792. height: math.unit(2, "mm"),
  55793. default: true
  55794. },
  55795. {
  55796. name: "Normal",
  55797. height: math.unit(4 + 8/12, "feet")
  55798. },
  55799. {
  55800. name: "Mega Macro",
  55801. height: math.unit(250, "feet")
  55802. },
  55803. {
  55804. name: "BIGGER",
  55805. height: math.unit(1000, "feet")
  55806. },
  55807. {
  55808. name: "BIGGEST",
  55809. height: math.unit(2, "miles")
  55810. },
  55811. ]
  55812. ))
  55813. characterMakers.push(() => makeCharacter(
  55814. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  55815. {
  55816. front: {
  55817. height: math.unit(6.5, "feet"),
  55818. weight: math.unit(198, "lb"),
  55819. name: "Front",
  55820. image: {
  55821. source: "./media/characters/tamani/anthro.svg",
  55822. extra: 930/890,
  55823. bottom: 34/964
  55824. },
  55825. form: "anthro",
  55826. default: true
  55827. },
  55828. side: {
  55829. height: math.unit(6, "feet"),
  55830. weight: math.unit(198*2, "lb"),
  55831. name: "Side",
  55832. image: {
  55833. source: "./media/characters/tamani/feral.svg",
  55834. extra: 559/519,
  55835. bottom: 43/602
  55836. },
  55837. form: "feral"
  55838. },
  55839. },
  55840. [
  55841. {
  55842. name: "Normal",
  55843. height: math.unit(6.5, "feet"),
  55844. default: true,
  55845. form: "anthro"
  55846. },
  55847. {
  55848. name: "Normal",
  55849. height: math.unit(6, "feet"),
  55850. default: true,
  55851. form: "feral"
  55852. },
  55853. ],
  55854. {
  55855. "anthro": {
  55856. name: "Anthro",
  55857. default: true
  55858. },
  55859. "feral": {
  55860. name: "Feral",
  55861. },
  55862. }
  55863. ))
  55864. characterMakers.push(() => makeCharacter(
  55865. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  55866. {
  55867. front: {
  55868. height: math.unit(4 + 1/12, "feet"),
  55869. weight: math.unit(114, "lb"),
  55870. name: "Front",
  55871. image: {
  55872. source: "./media/characters/dex/front.svg",
  55873. extra: 787/680,
  55874. bottom: 18/805
  55875. }
  55876. },
  55877. side: {
  55878. height: math.unit(4 + 1/12, "feet"),
  55879. weight: math.unit(114, "lb"),
  55880. name: "Side",
  55881. image: {
  55882. source: "./media/characters/dex/side.svg",
  55883. extra: 785/680,
  55884. bottom: 12/797
  55885. }
  55886. },
  55887. back: {
  55888. height: math.unit(4 + 1/12, "feet"),
  55889. weight: math.unit(114, "lb"),
  55890. name: "Back",
  55891. image: {
  55892. source: "./media/characters/dex/back.svg",
  55893. extra: 785/681,
  55894. bottom: 17/802
  55895. }
  55896. },
  55897. loungewear: {
  55898. height: math.unit(4 + 1/12, "feet"),
  55899. weight: math.unit(114, "lb"),
  55900. name: "Loungewear",
  55901. image: {
  55902. source: "./media/characters/dex/loungewear.svg",
  55903. extra: 787/680,
  55904. bottom: 18/805
  55905. }
  55906. },
  55907. workout: {
  55908. height: math.unit(4 + 1/12, "feet"),
  55909. weight: math.unit(114, "lb"),
  55910. name: "Workout",
  55911. image: {
  55912. source: "./media/characters/dex/workout.svg",
  55913. extra: 787/680,
  55914. bottom: 18/805
  55915. }
  55916. },
  55917. schoolUniform: {
  55918. height: math.unit(4 + 1/12, "feet"),
  55919. weight: math.unit(114, "lb"),
  55920. name: "School-uniform",
  55921. image: {
  55922. source: "./media/characters/dex/school-uniform.svg",
  55923. extra: 787/680,
  55924. bottom: 18/805
  55925. }
  55926. },
  55927. maw: {
  55928. height: math.unit(0.55, "feet"),
  55929. name: "Maw",
  55930. image: {
  55931. source: "./media/characters/dex/maw.svg"
  55932. }
  55933. },
  55934. paw: {
  55935. height: math.unit(0.87, "feet"),
  55936. name: "Paw",
  55937. image: {
  55938. source: "./media/characters/dex/paw.svg"
  55939. }
  55940. },
  55941. bust: {
  55942. height: math.unit(1.67, "feet"),
  55943. name: "Bust",
  55944. image: {
  55945. source: "./media/characters/dex/bust.svg"
  55946. }
  55947. },
  55948. },
  55949. [
  55950. {
  55951. name: "Normal",
  55952. height: math.unit(4 + 1/12, "feet"),
  55953. default: true
  55954. },
  55955. ]
  55956. ))
  55957. characterMakers.push(() => makeCharacter(
  55958. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  55959. {
  55960. front: {
  55961. height: math.unit(4 + 3/12, "feet"),
  55962. weight: math.unit(60, "lb"),
  55963. name: "Front",
  55964. image: {
  55965. source: "./media/characters/silke/front.svg",
  55966. extra: 1334/1122,
  55967. bottom: 21/1355
  55968. }
  55969. },
  55970. back: {
  55971. height: math.unit(4 + 3/12, "feet"),
  55972. weight: math.unit(60, "lb"),
  55973. name: "Back",
  55974. image: {
  55975. source: "./media/characters/silke/back.svg",
  55976. extra: 1328/1092,
  55977. bottom: 16/1344
  55978. }
  55979. },
  55980. dressed: {
  55981. height: math.unit(4 + 3/12, "feet"),
  55982. weight: math.unit(60, "lb"),
  55983. name: "Dressed",
  55984. image: {
  55985. source: "./media/characters/silke/dressed.svg",
  55986. extra: 1334/1122,
  55987. bottom: 43/1377
  55988. }
  55989. },
  55990. },
  55991. [
  55992. {
  55993. name: "Normal",
  55994. height: math.unit(4 + 3/12, "feet"),
  55995. default: true
  55996. },
  55997. ]
  55998. ))
  55999. characterMakers.push(() => makeCharacter(
  56000. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56001. {
  56002. front: {
  56003. height: math.unit(1.58, "meters"),
  56004. weight: math.unit(47, "kg"),
  56005. name: "Front",
  56006. image: {
  56007. source: "./media/characters/wireshark/front.svg",
  56008. extra: 883/838,
  56009. bottom: 66/949
  56010. }
  56011. },
  56012. },
  56013. [
  56014. {
  56015. name: "Normal",
  56016. height: math.unit(1.58, "meters"),
  56017. default: true
  56018. },
  56019. ]
  56020. ))
  56021. characterMakers.push(() => makeCharacter(
  56022. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56023. {
  56024. front: {
  56025. height: math.unit(6, "meters"),
  56026. weight: math.unit(15000, "kg"),
  56027. name: "Front",
  56028. image: {
  56029. source: "./media/characters/gallagher/front.svg",
  56030. extra: 532/493,
  56031. bottom: 0/532
  56032. }
  56033. },
  56034. },
  56035. [
  56036. {
  56037. name: "Normal",
  56038. height: math.unit(6, "meters"),
  56039. default: true
  56040. },
  56041. ]
  56042. ))
  56043. characterMakers.push(() => makeCharacter(
  56044. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56045. {
  56046. front: {
  56047. height: math.unit(2.4, "meters"),
  56048. weight: math.unit(270, "kg"),
  56049. name: "Front",
  56050. image: {
  56051. source: "./media/characters/alice/front.svg",
  56052. extra: 950/900,
  56053. bottom: 36/986
  56054. }
  56055. },
  56056. side: {
  56057. height: math.unit(2.4, "meters"),
  56058. weight: math.unit(270, "kg"),
  56059. name: "Side",
  56060. image: {
  56061. source: "./media/characters/alice/side.svg",
  56062. extra: 921/876,
  56063. bottom: 19/940
  56064. }
  56065. },
  56066. dressed: {
  56067. height: math.unit(2.4, "meters"),
  56068. weight: math.unit(270, "kg"),
  56069. name: "Dressed",
  56070. image: {
  56071. source: "./media/characters/alice/dressed.svg",
  56072. extra: 905/850,
  56073. bottom: 81/986
  56074. }
  56075. },
  56076. fishnet: {
  56077. height: math.unit(2.4, "meters"),
  56078. weight: math.unit(270, "kg"),
  56079. name: "Fishnet",
  56080. image: {
  56081. source: "./media/characters/alice/fishnet.svg",
  56082. extra: 905/850,
  56083. bottom: 81/986
  56084. }
  56085. },
  56086. },
  56087. [
  56088. {
  56089. name: "Normal",
  56090. height: math.unit(2.4, "meters"),
  56091. default: true
  56092. },
  56093. ]
  56094. ))
  56095. characterMakers.push(() => makeCharacter(
  56096. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56097. {
  56098. front: {
  56099. height: math.unit(175.25, "feet"),
  56100. name: "Front",
  56101. image: {
  56102. source: "./media/characters/fio/front.svg",
  56103. extra: 1883/1591,
  56104. bottom: 34/1917
  56105. }
  56106. },
  56107. },
  56108. [
  56109. {
  56110. name: "Normal",
  56111. height: math.unit(175.25, "cm"),
  56112. default: true
  56113. },
  56114. ]
  56115. ))
  56116. characterMakers.push(() => makeCharacter(
  56117. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56118. {
  56119. side: {
  56120. height: math.unit(6, "meters"),
  56121. weight: math.unit(3400, "kg"),
  56122. preyCapacity: math.unit(1700, "liters"),
  56123. name: "Side",
  56124. image: {
  56125. source: "./media/characters/hass/side.svg",
  56126. extra: 1058/997,
  56127. bottom: 177/1235
  56128. }
  56129. },
  56130. feeding: {
  56131. height: math.unit(6*0.63, "meters"),
  56132. weight: math.unit(3400, "kg"),
  56133. preyCapacity: math.unit(1700, "liters"),
  56134. name: "Feeding",
  56135. image: {
  56136. source: "./media/characters/hass/feeding.svg",
  56137. extra: 689/579,
  56138. bottom: 146/835
  56139. }
  56140. },
  56141. guts: {
  56142. height: math.unit(6, "meters"),
  56143. weight: math.unit(3400, "kg"),
  56144. name: "Guts",
  56145. image: {
  56146. source: "./media/characters/hass/guts.svg",
  56147. extra: 1223/1198,
  56148. bottom: 182/1405
  56149. }
  56150. },
  56151. dickFront: {
  56152. height: math.unit(1.4, "meters"),
  56153. name: "Dick (Front)",
  56154. image: {
  56155. source: "./media/characters/hass/dick-front.svg"
  56156. }
  56157. },
  56158. dickSide: {
  56159. height: math.unit(1.3, "meters"),
  56160. name: "Dick (Side)",
  56161. image: {
  56162. source: "./media/characters/hass/dick-side.svg"
  56163. }
  56164. },
  56165. dickBack: {
  56166. height: math.unit(1.4, "meters"),
  56167. name: "Dick (Back)",
  56168. image: {
  56169. source: "./media/characters/hass/dick-back.svg"
  56170. }
  56171. },
  56172. },
  56173. [
  56174. {
  56175. name: "Normal",
  56176. height: math.unit(6, "meters"),
  56177. default: true
  56178. },
  56179. ]
  56180. ))
  56181. //characters
  56182. function makeCharacters() {
  56183. const results = [];
  56184. characterMakers.forEach(character => {
  56185. results.push(character());
  56186. });
  56187. return results;
  56188. }