less copy protection, more size visualization
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

66730 řádky
1.7 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. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. "secretary-bird": {
  2423. name: "Secretary Bird",
  2424. parents: ["bird-of-prey"]
  2425. },
  2426. "russian-blue": {
  2427. name: "Russian Blue",
  2428. parents: ["housecat"]
  2429. },
  2430. "wholphin": {
  2431. name: "Wholphin",
  2432. parents: ["whale", "dolphin"]
  2433. },
  2434. "sea-dragon": {
  2435. name: "Sea Dragon",
  2436. parents: ["dragon", "aquatic"]
  2437. },
  2438. }
  2439. //species
  2440. function getSpeciesInfo(speciesList) {
  2441. let result = new Set();
  2442. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2443. result.add(entry)
  2444. });
  2445. return Array.from(result);
  2446. };
  2447. function getSpeciesInfoHelper(species) {
  2448. if (!speciesData[species]) {
  2449. console.warn(species + " doesn't exist");
  2450. return [];
  2451. }
  2452. if (speciesData[species].parents) {
  2453. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2454. } else {
  2455. return [species];
  2456. }
  2457. }
  2458. characterMakers.push(() => makeCharacter(
  2459. {
  2460. name: "Fen",
  2461. species: ["crux"],
  2462. description: {
  2463. title: "Bio",
  2464. text: "Very furry. Sheds on everything."
  2465. },
  2466. tags: [
  2467. "anthro",
  2468. "goo"
  2469. ]
  2470. },
  2471. {
  2472. front: {
  2473. height: math.unit(12, "feet"),
  2474. weight: math.unit(2400, "lb"),
  2475. preyCapacity: math.unit(1, "people"),
  2476. name: "Front",
  2477. image: {
  2478. source: "./media/characters/fen/front.svg",
  2479. extra: 1804/1562,
  2480. bottom: 205/2009
  2481. },
  2482. extraAttributes: {
  2483. pawSize: {
  2484. name: "Paw Size",
  2485. power: 2,
  2486. type: "area",
  2487. base: math.unit(0.35, "m^2")
  2488. }
  2489. }
  2490. },
  2491. diving: {
  2492. height: math.unit(4.9, "meters"),
  2493. weight: math.unit(2400, "lb"),
  2494. name: "Diving",
  2495. image: {
  2496. source: "./media/characters/fen/diving.svg"
  2497. }
  2498. },
  2499. sleeby: {
  2500. height: math.unit(3.45, "meters"),
  2501. weight: math.unit(2400, "lb"),
  2502. name: "Sleeby",
  2503. image: {
  2504. source: "./media/characters/fen/sleeby.svg"
  2505. }
  2506. },
  2507. goo: {
  2508. height: math.unit(12, "feet"),
  2509. weight: math.unit(3600, "lb"),
  2510. volume: math.unit(1000, "liters"),
  2511. preyCapacity: math.unit(6, "people"),
  2512. name: "Goo",
  2513. image: {
  2514. source: "./media/characters/fen/goo.svg",
  2515. extra: 1307/1071,
  2516. bottom: 134/1441
  2517. }
  2518. },
  2519. horror: {
  2520. height: math.unit(13.6, "feet"),
  2521. weight: math.unit(2400, "lb"),
  2522. preyCapacity: math.unit(1, "people"),
  2523. name: "Horror",
  2524. image: {
  2525. source: "./media/characters/fen/horror.svg",
  2526. extra: 893/797,
  2527. bottom: 0/893
  2528. }
  2529. },
  2530. gooNsfw: {
  2531. height: math.unit(12, "feet"),
  2532. weight: math.unit(3750, "lb"),
  2533. volume: math.unit(1000, "liters"),
  2534. preyCapacity: math.unit(6, "people"),
  2535. name: "Goo (NSFW)",
  2536. image: {
  2537. source: "./media/characters/fen/goo-nsfw.svg",
  2538. extra: 1875/1734,
  2539. bottom: 122/1997
  2540. }
  2541. },
  2542. maw: {
  2543. height: math.unit(5.03, "feet"),
  2544. name: "Maw",
  2545. image: {
  2546. source: "./media/characters/fen/maw.svg"
  2547. }
  2548. },
  2549. gooCeiling: {
  2550. height: math.unit(6.6, "feet"),
  2551. weight: math.unit(3000, "lb"),
  2552. volume: math.unit(1000, "liters"),
  2553. preyCapacity: math.unit(6, "people"),
  2554. name: "Maw (Goo)",
  2555. image: {
  2556. source: "./media/characters/fen/goo-maw.svg"
  2557. }
  2558. },
  2559. paw: {
  2560. height: math.unit(3.77, "feet"),
  2561. name: "Paw",
  2562. image: {
  2563. source: "./media/characters/fen/paw.svg"
  2564. },
  2565. extraAttributes: {
  2566. "toeSize": {
  2567. name: "Toe Size",
  2568. power: 2,
  2569. type: "area",
  2570. base: math.unit(0.02875, "m^2")
  2571. },
  2572. "pawSize": {
  2573. name: "Paw Size",
  2574. power: 2,
  2575. type: "area",
  2576. base: math.unit(0.378, "m^2")
  2577. },
  2578. }
  2579. },
  2580. tail: {
  2581. height: math.unit(12.1, "feet"),
  2582. name: "Tail",
  2583. image: {
  2584. source: "./media/characters/fen/tail.svg"
  2585. }
  2586. },
  2587. tailFull: {
  2588. height: math.unit(12.1, "feet"),
  2589. name: "Full Tail",
  2590. image: {
  2591. source: "./media/characters/fen/tail-full.svg"
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(12, "feet"),
  2596. weight: math.unit(2400, "lb"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/fen/back.svg",
  2600. },
  2601. info: {
  2602. description: {
  2603. mode: "append",
  2604. text: "\n\nHe is not currently looking at you."
  2605. }
  2606. }
  2607. },
  2608. full: {
  2609. height: math.unit(1.85, "meter"),
  2610. weight: math.unit(3200, "lb"),
  2611. preyCapacity: math.unit(3, "people"),
  2612. name: "Full",
  2613. image: {
  2614. source: "./media/characters/fen/full.svg",
  2615. extra: 1133/859,
  2616. bottom: 145/1278
  2617. },
  2618. info: {
  2619. description: {
  2620. mode: "append",
  2621. text: "\n\nMunch."
  2622. }
  2623. }
  2624. },
  2625. gooLounging: {
  2626. height: math.unit(4.53, "feet"),
  2627. weight: math.unit(3000, "lb"),
  2628. preyCapacity: math.unit(6, "people"),
  2629. name: "Goo (Lounging)",
  2630. image: {
  2631. source: "./media/characters/fen/goo-lounging.svg",
  2632. bottom: 116 / 613
  2633. }
  2634. },
  2635. lounging: {
  2636. height: math.unit(10.52, "feet"),
  2637. weight: math.unit(2400, "lb"),
  2638. name: "Lounging",
  2639. image: {
  2640. source: "./media/characters/fen/lounging.svg"
  2641. }
  2642. },
  2643. },
  2644. [
  2645. {
  2646. name: "Small",
  2647. height: math.unit(2.2428, "meter")
  2648. },
  2649. {
  2650. name: "Normal",
  2651. height: math.unit(12, "feet"),
  2652. default: true,
  2653. },
  2654. {
  2655. name: "Big",
  2656. height: math.unit(20, "feet")
  2657. },
  2658. {
  2659. name: "Minimacro",
  2660. height: math.unit(40, "feet"),
  2661. info: {
  2662. description: {
  2663. mode: "append",
  2664. text: "\n\nTOO DAMN BIG"
  2665. }
  2666. }
  2667. },
  2668. {
  2669. name: "Macro",
  2670. height: math.unit(100, "feet"),
  2671. info: {
  2672. description: {
  2673. mode: "append",
  2674. text: "\n\nTOO DAMN BIG"
  2675. }
  2676. }
  2677. },
  2678. {
  2679. name: "Megamacro",
  2680. height: math.unit(2, "miles")
  2681. },
  2682. {
  2683. name: "Gigamacro",
  2684. height: math.unit(10, "earths")
  2685. },
  2686. ]
  2687. ))
  2688. characterMakers.push(() => makeCharacter(
  2689. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2690. {
  2691. front: {
  2692. height: math.unit(183, "cm"),
  2693. weight: math.unit(80, "kg"),
  2694. name: "Front",
  2695. image: {
  2696. source: "./media/characters/sofia-fluttertail/front.svg",
  2697. bottom: 0.01,
  2698. extra: 2154 / 2081
  2699. }
  2700. },
  2701. frontAlt: {
  2702. height: math.unit(183, "cm"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Front (alt)",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2707. }
  2708. },
  2709. back: {
  2710. height: math.unit(183, "cm"),
  2711. weight: math.unit(80, "kg"),
  2712. name: "Back",
  2713. image: {
  2714. source: "./media/characters/sofia-fluttertail/back.svg"
  2715. }
  2716. },
  2717. kneeling: {
  2718. height: math.unit(125, "cm"),
  2719. weight: math.unit(80, "kg"),
  2720. name: "Kneeling",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2723. extra: 1033 / 977,
  2724. bottom: 23.7 / 1057
  2725. }
  2726. },
  2727. maw: {
  2728. height: math.unit(183 / 5, "cm"),
  2729. name: "Maw",
  2730. image: {
  2731. source: "./media/characters/sofia-fluttertail/maw.svg"
  2732. }
  2733. },
  2734. mawcloseup: {
  2735. height: math.unit(183 / 5 * 0.41, "cm"),
  2736. name: "Maw (Closeup)",
  2737. image: {
  2738. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2739. }
  2740. },
  2741. paws: {
  2742. height: math.unit(1.17, "feet"),
  2743. name: "Paws",
  2744. image: {
  2745. source: "./media/characters/sofia-fluttertail/paws.svg",
  2746. extra: 851 / 851,
  2747. bottom: 17 / 868
  2748. }
  2749. },
  2750. },
  2751. [
  2752. {
  2753. name: "Normal",
  2754. height: math.unit(1.83, "meter")
  2755. },
  2756. {
  2757. name: "Size Thief",
  2758. height: math.unit(18, "feet")
  2759. },
  2760. {
  2761. name: "50 Foot Collie",
  2762. height: math.unit(50, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(96, "feet"),
  2767. default: true
  2768. },
  2769. {
  2770. name: "Megamerger",
  2771. height: math.unit(650, "feet")
  2772. },
  2773. ]
  2774. ))
  2775. characterMakers.push(() => makeCharacter(
  2776. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2777. {
  2778. front: {
  2779. height: math.unit(7, "feet"),
  2780. weight: math.unit(100, "kg"),
  2781. name: "Front",
  2782. image: {
  2783. source: "./media/characters/march/front.svg",
  2784. extra: 1992/1851,
  2785. bottom: 39/2031
  2786. }
  2787. },
  2788. foot: {
  2789. height: math.unit(0.9, "feet"),
  2790. name: "Foot",
  2791. image: {
  2792. source: "./media/characters/march/foot.svg"
  2793. }
  2794. },
  2795. },
  2796. [
  2797. {
  2798. name: "Normal",
  2799. height: math.unit(7.9, "feet")
  2800. },
  2801. {
  2802. name: "Macro",
  2803. height: math.unit(220, "meters")
  2804. },
  2805. {
  2806. name: "Megamacro",
  2807. height: math.unit(2.98, "km"),
  2808. default: true
  2809. },
  2810. {
  2811. name: "Gigamacro",
  2812. height: math.unit(15963, "km")
  2813. },
  2814. {
  2815. name: "Teramacro",
  2816. height: math.unit(2980000000, "km")
  2817. },
  2818. {
  2819. name: "Examacro",
  2820. height: math.unit(250, "parsecs")
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(6, "feet"),
  2829. weight: math.unit(60, "kg"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/noir/front.svg",
  2833. extra: 1,
  2834. bottom: 0.032
  2835. }
  2836. },
  2837. },
  2838. [
  2839. {
  2840. name: "Normal",
  2841. height: math.unit(6.6, "feet")
  2842. },
  2843. {
  2844. name: "Macro",
  2845. height: math.unit(500, "feet")
  2846. },
  2847. {
  2848. name: "Megamacro",
  2849. height: math.unit(2.5, "km"),
  2850. default: true
  2851. },
  2852. {
  2853. name: "Gigamacro",
  2854. height: math.unit(22500, "km")
  2855. },
  2856. {
  2857. name: "Teramacro",
  2858. height: math.unit(2500000000, "km")
  2859. },
  2860. {
  2861. name: "Examacro",
  2862. height: math.unit(200, "parsecs")
  2863. },
  2864. ]
  2865. ))
  2866. characterMakers.push(() => makeCharacter(
  2867. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2868. {
  2869. front: {
  2870. height: math.unit(7, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Front",
  2873. image: {
  2874. source: "./media/characters/okuri/front.svg",
  2875. extra: 739/665,
  2876. bottom: 39/778
  2877. }
  2878. },
  2879. back: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Back",
  2883. image: {
  2884. source: "./media/characters/okuri/back.svg",
  2885. extra: 734/653,
  2886. bottom: 13/747
  2887. }
  2888. },
  2889. sitting: {
  2890. height: math.unit(2.95, "feet"),
  2891. weight: math.unit(100, "kg"),
  2892. name: "Sitting",
  2893. image: {
  2894. source: "./media/characters/okuri/sitting.svg",
  2895. extra: 370/318,
  2896. bottom: 99/469
  2897. }
  2898. },
  2899. },
  2900. [
  2901. {
  2902. name: "Smallest",
  2903. height: math.unit(5 + 2/12, "feet")
  2904. },
  2905. {
  2906. name: "Smaller",
  2907. height: math.unit(300, "feet")
  2908. },
  2909. {
  2910. name: "Small",
  2911. height: math.unit(1000, "feet")
  2912. },
  2913. {
  2914. name: "Macro",
  2915. height: math.unit(1, "mile")
  2916. },
  2917. {
  2918. name: "Mega Macro (Small)",
  2919. height: math.unit(20, "km")
  2920. },
  2921. {
  2922. name: "Mega Macro (Large)",
  2923. height: math.unit(600, "km")
  2924. },
  2925. {
  2926. name: "Giga Macro",
  2927. height: math.unit(10000, "km")
  2928. },
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(577560, "km"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Large",
  2936. height: math.unit(4, "galaxies")
  2937. },
  2938. {
  2939. name: "Largest",
  2940. height: math.unit(15, "multiverses")
  2941. },
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(7, "feet"),
  2949. weight: math.unit(100, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/manny/front.svg",
  2953. extra: 1,
  2954. bottom: 0.06
  2955. }
  2956. },
  2957. back: {
  2958. height: math.unit(7, "feet"),
  2959. weight: math.unit(100, "kg"),
  2960. name: "Back",
  2961. image: {
  2962. source: "./media/characters/manny/back.svg",
  2963. extra: 1,
  2964. bottom: 0.014
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Normal",
  2971. height: math.unit(7, "feet"),
  2972. },
  2973. {
  2974. name: "Macro",
  2975. height: math.unit(78, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Macro+",
  2980. height: math.unit(300, "meters")
  2981. },
  2982. {
  2983. name: "Macro++",
  2984. height: math.unit(2400, "meters")
  2985. },
  2986. {
  2987. name: "Megamacro",
  2988. height: math.unit(5167, "meters")
  2989. },
  2990. {
  2991. name: "Gigamacro",
  2992. height: math.unit(41769, "miles")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(7, "feet"),
  3001. weight: math.unit(100, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/adake/front-1.svg"
  3005. }
  3006. },
  3007. frontAlt: {
  3008. height: math.unit(7, "feet"),
  3009. weight: math.unit(100, "kg"),
  3010. name: "Front (Alt)",
  3011. image: {
  3012. source: "./media/characters/adake/front-2.svg",
  3013. extra: 1,
  3014. bottom: 0.01
  3015. }
  3016. },
  3017. back: {
  3018. height: math.unit(7, "feet"),
  3019. weight: math.unit(100, "kg"),
  3020. name: "Back",
  3021. image: {
  3022. source: "./media/characters/adake/back.svg",
  3023. }
  3024. },
  3025. kneel: {
  3026. height: math.unit(5.385, "feet"),
  3027. weight: math.unit(100, "kg"),
  3028. name: "Kneeling",
  3029. image: {
  3030. source: "./media/characters/adake/kneel.svg",
  3031. bottom: 0.052
  3032. }
  3033. },
  3034. },
  3035. [
  3036. {
  3037. name: "Normal",
  3038. height: math.unit(7, "feet"),
  3039. },
  3040. {
  3041. name: "Macro",
  3042. height: math.unit(78, "feet"),
  3043. default: true
  3044. },
  3045. {
  3046. name: "Macro+",
  3047. height: math.unit(300, "meters")
  3048. },
  3049. {
  3050. name: "Macro++",
  3051. height: math.unit(2400, "meters")
  3052. },
  3053. {
  3054. name: "Megamacro",
  3055. height: math.unit(5167, "meters")
  3056. },
  3057. {
  3058. name: "Gigamacro",
  3059. height: math.unit(41769, "miles")
  3060. },
  3061. ]
  3062. ))
  3063. characterMakers.push(() => makeCharacter(
  3064. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3065. {
  3066. front: {
  3067. height: math.unit(1.65, "meters"),
  3068. weight: math.unit(50, "kg"),
  3069. name: "Front",
  3070. image: {
  3071. source: "./media/characters/elijah/front.svg",
  3072. extra: 858 / 830,
  3073. bottom: 95.5 / 953.8559
  3074. }
  3075. },
  3076. back: {
  3077. height: math.unit(1.65, "meters"),
  3078. weight: math.unit(50, "kg"),
  3079. name: "Back",
  3080. image: {
  3081. source: "./media/characters/elijah/back.svg",
  3082. extra: 895 / 850,
  3083. bottom: 5.3 / 897.956
  3084. }
  3085. },
  3086. frontNsfw: {
  3087. height: math.unit(1.65, "meters"),
  3088. weight: math.unit(50, "kg"),
  3089. name: "Front (NSFW)",
  3090. image: {
  3091. source: "./media/characters/elijah/front-nsfw.svg",
  3092. extra: 858 / 830,
  3093. bottom: 95.5 / 953.8559
  3094. }
  3095. },
  3096. backNsfw: {
  3097. height: math.unit(1.65, "meters"),
  3098. weight: math.unit(50, "kg"),
  3099. name: "Back (NSFW)",
  3100. image: {
  3101. source: "./media/characters/elijah/back-nsfw.svg",
  3102. extra: 895 / 850,
  3103. bottom: 5.3 / 897.956
  3104. }
  3105. },
  3106. dick: {
  3107. height: math.unit(1, "feet"),
  3108. name: "Dick",
  3109. image: {
  3110. source: "./media/characters/elijah/dick.svg"
  3111. }
  3112. },
  3113. beakOpen: {
  3114. height: math.unit(1.25, "feet"),
  3115. name: "Beak (Open)",
  3116. image: {
  3117. source: "./media/characters/elijah/beak-open.svg"
  3118. }
  3119. },
  3120. beakShut: {
  3121. height: math.unit(1.25, "feet"),
  3122. name: "Beak (Shut)",
  3123. image: {
  3124. source: "./media/characters/elijah/beak-shut.svg"
  3125. }
  3126. },
  3127. footFlexing: {
  3128. height: math.unit(1.61, "feet"),
  3129. name: "Foot (Flexing)",
  3130. image: {
  3131. source: "./media/characters/elijah/foot-flexing.svg"
  3132. }
  3133. },
  3134. footStepping: {
  3135. height: math.unit(1.44, "feet"),
  3136. name: "Foot (Stepping)",
  3137. image: {
  3138. source: "./media/characters/elijah/foot-stepping.svg"
  3139. }
  3140. },
  3141. plantigradeLeg: {
  3142. height: math.unit(2.34, "feet"),
  3143. name: "Plantigrade Leg",
  3144. image: {
  3145. source: "./media/characters/elijah/plantigrade-leg.svg"
  3146. }
  3147. },
  3148. plantigradeFootLeft: {
  3149. height: math.unit(0.9, "feet"),
  3150. name: "Plantigrade Foot (Left)",
  3151. image: {
  3152. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3153. }
  3154. },
  3155. plantigradeFootRight: {
  3156. height: math.unit(0.9, "feet"),
  3157. name: "Plantigrade Foot (Right)",
  3158. image: {
  3159. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3160. }
  3161. },
  3162. },
  3163. [
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(1.65, "meters")
  3167. },
  3168. {
  3169. name: "Macro",
  3170. height: math.unit(55, "meters"),
  3171. default: true
  3172. },
  3173. {
  3174. name: "Macro+",
  3175. height: math.unit(105, "meters")
  3176. },
  3177. ]
  3178. ))
  3179. characterMakers.push(() => makeCharacter(
  3180. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3181. {
  3182. front: {
  3183. height: math.unit(7 + 2/12, "feet"),
  3184. weight: math.unit(320, "kg"),
  3185. preyCapacity: math.unit(0.276549935, "people"),
  3186. name: "Front",
  3187. image: {
  3188. source: "./media/characters/rai/front.svg",
  3189. extra: 1802/1696,
  3190. bottom: 68/1870
  3191. },
  3192. form: "anthro",
  3193. default: true
  3194. },
  3195. frontDressed: {
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. weight: math.unit(320, "kg"),
  3198. preyCapacity: math.unit(0.276549935, "people"),
  3199. name: "Front (Dressed)",
  3200. image: {
  3201. source: "./media/characters/rai/front-dressed.svg",
  3202. extra: 1802/1696,
  3203. bottom: 68/1870
  3204. },
  3205. form: "anthro"
  3206. },
  3207. side: {
  3208. height: math.unit(7 + 2/12, "feet"),
  3209. weight: math.unit(320, "kg"),
  3210. preyCapacity: math.unit(0.276549935, "people"),
  3211. name: "Side",
  3212. image: {
  3213. source: "./media/characters/rai/side.svg",
  3214. extra: 1789/1710,
  3215. bottom: 115/1904
  3216. },
  3217. form: "anthro"
  3218. },
  3219. back: {
  3220. height: math.unit(7 + 2/12, "feet"),
  3221. weight: math.unit(320, "kg"),
  3222. preyCapacity: math.unit(0.276549935, "people"),
  3223. name: "Back",
  3224. image: {
  3225. source: "./media/characters/rai/back.svg",
  3226. extra: 1770/1707,
  3227. bottom: 28/1798
  3228. },
  3229. form: "anthro"
  3230. },
  3231. feral: {
  3232. height: math.unit(9.5, "feet"),
  3233. weight: math.unit(640, "kg"),
  3234. preyCapacity: math.unit(4, "people"),
  3235. name: "Feral",
  3236. image: {
  3237. source: "./media/characters/rai/feral.svg",
  3238. extra: 945/553,
  3239. bottom: 176/1121
  3240. },
  3241. form: "feral",
  3242. default: true
  3243. },
  3244. dragon: {
  3245. height: math.unit(23, "feet"),
  3246. weight: math.unit(50000, "lb"),
  3247. name: "Dragon",
  3248. image: {
  3249. source: "./media/characters/rai/dragon.svg",
  3250. extra: 2498 / 2030,
  3251. bottom: 85.2 / 2584
  3252. },
  3253. form: "dragon",
  3254. default: true
  3255. },
  3256. maw: {
  3257. height: math.unit(1.69, "feet"),
  3258. name: "Maw",
  3259. image: {
  3260. source: "./media/characters/rai/maw.svg"
  3261. },
  3262. form: "anthro"
  3263. },
  3264. },
  3265. [
  3266. {
  3267. name: "Normal",
  3268. height: math.unit(7 + 2/12, "feet"),
  3269. form: "anthro"
  3270. },
  3271. {
  3272. name: "Big",
  3273. height: math.unit(11, "feet"),
  3274. form: "anthro"
  3275. },
  3276. {
  3277. name: "Minimacro",
  3278. height: math.unit(77, "feet"),
  3279. form: "anthro"
  3280. },
  3281. {
  3282. name: "Macro",
  3283. height: math.unit(302, "feet"),
  3284. default: true,
  3285. form: "anthro"
  3286. },
  3287. {
  3288. name: "Normal",
  3289. height: math.unit(9.5, "feet"),
  3290. form: "feral",
  3291. default: true
  3292. },
  3293. {
  3294. name: "Normal",
  3295. height: math.unit(23, "feet"),
  3296. form: "dragon",
  3297. default: true
  3298. }
  3299. ],
  3300. {
  3301. "anthro": {
  3302. name: "Anthro",
  3303. default: true
  3304. },
  3305. "feral": {
  3306. name: "Feral",
  3307. },
  3308. "dragon": {
  3309. name: "Dragon",
  3310. },
  3311. }
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3315. {
  3316. frontDressed: {
  3317. height: math.unit(216, "feet"),
  3318. weight: math.unit(7000000, "lb"),
  3319. preyCapacity: math.unit(1321, "people"),
  3320. name: "Front (Dressed)",
  3321. image: {
  3322. source: "./media/characters/jazzy/front-dressed.svg",
  3323. extra: 2738 / 2651,
  3324. bottom: 41.8 / 2786
  3325. }
  3326. },
  3327. backDressed: {
  3328. height: math.unit(216, "feet"),
  3329. weight: math.unit(7000000, "lb"),
  3330. preyCapacity: math.unit(1321, "people"),
  3331. name: "Back (Dressed)",
  3332. image: {
  3333. source: "./media/characters/jazzy/back-dressed.svg",
  3334. extra: 2775 / 2673,
  3335. bottom: 36.8 / 2817
  3336. }
  3337. },
  3338. front: {
  3339. height: math.unit(216, "feet"),
  3340. weight: math.unit(7000000, "lb"),
  3341. preyCapacity: math.unit(1321, "people"),
  3342. name: "Front",
  3343. image: {
  3344. source: "./media/characters/jazzy/front.svg",
  3345. extra: 2738 / 2651,
  3346. bottom: 41.8 / 2786
  3347. }
  3348. },
  3349. back: {
  3350. height: math.unit(216, "feet"),
  3351. weight: math.unit(7000000, "lb"),
  3352. preyCapacity: math.unit(1321, "people"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/jazzy/back.svg",
  3356. extra: 2775 / 2673,
  3357. bottom: 36.8 / 2817
  3358. }
  3359. },
  3360. maw: {
  3361. height: math.unit(20, "feet"),
  3362. name: "Maw",
  3363. image: {
  3364. source: "./media/characters/jazzy/maw.svg"
  3365. }
  3366. },
  3367. paws: {
  3368. height: math.unit(27.5, "feet"),
  3369. name: "Paws",
  3370. image: {
  3371. source: "./media/characters/jazzy/paws.svg"
  3372. }
  3373. },
  3374. eye: {
  3375. height: math.unit(4.4, "feet"),
  3376. name: "Eye",
  3377. image: {
  3378. source: "./media/characters/jazzy/eye.svg"
  3379. }
  3380. },
  3381. droneOffense: {
  3382. height: math.unit(9.5, "inches"),
  3383. name: "Drone (Offense)",
  3384. image: {
  3385. source: "./media/characters/jazzy/drone-offense.svg"
  3386. }
  3387. },
  3388. droneRecon: {
  3389. height: math.unit(9.5, "inches"),
  3390. name: "Drone (Recon)",
  3391. image: {
  3392. source: "./media/characters/jazzy/drone-recon.svg"
  3393. }
  3394. },
  3395. droneDefense: {
  3396. height: math.unit(9.5, "inches"),
  3397. name: "Drone (Defense)",
  3398. image: {
  3399. source: "./media/characters/jazzy/drone-defense.svg"
  3400. }
  3401. },
  3402. },
  3403. [
  3404. {
  3405. name: "Macro",
  3406. height: math.unit(216, "feet"),
  3407. default: true
  3408. },
  3409. ]
  3410. ))
  3411. characterMakers.push(() => makeCharacter(
  3412. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3413. {
  3414. front: {
  3415. height: math.unit(9 + 6/12, "feet"),
  3416. weight: math.unit(700, "lb"),
  3417. name: "Front",
  3418. image: {
  3419. source: "./media/characters/flamm/front.svg",
  3420. extra: 1736/1596,
  3421. bottom: 93/1829
  3422. }
  3423. },
  3424. buff: {
  3425. height: math.unit(9 + 6/12, "feet"),
  3426. weight: math.unit(950, "lb"),
  3427. name: "Buff",
  3428. image: {
  3429. source: "./media/characters/flamm/buff.svg",
  3430. extra: 3018/2874,
  3431. bottom: 221/3239
  3432. }
  3433. },
  3434. },
  3435. [
  3436. {
  3437. name: "Normal",
  3438. height: math.unit(9.5, "feet")
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(200, "feet"),
  3443. default: true
  3444. },
  3445. ]
  3446. ))
  3447. characterMakers.push(() => makeCharacter(
  3448. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3449. {
  3450. front: {
  3451. height: math.unit(5 + 3/12, "feet"),
  3452. weight: math.unit(60, "kg"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/zephiro/front.svg",
  3456. extra: 1873/1761,
  3457. bottom: 147/2020
  3458. }
  3459. },
  3460. side: {
  3461. height: math.unit(5 + 3/12, "feet"),
  3462. weight: math.unit(60, "kg"),
  3463. name: "Side",
  3464. image: {
  3465. source: "./media/characters/zephiro/side.svg",
  3466. extra: 1929/1827,
  3467. bottom: 65/1994
  3468. }
  3469. },
  3470. back: {
  3471. height: math.unit(5 + 3/12, "feet"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Back",
  3474. image: {
  3475. source: "./media/characters/zephiro/back.svg",
  3476. extra: 1926/1816,
  3477. bottom: 41/1967
  3478. }
  3479. },
  3480. hand: {
  3481. height: math.unit(0.68, "feet"),
  3482. name: "Hand",
  3483. image: {
  3484. source: "./media/characters/zephiro/hand.svg"
  3485. }
  3486. },
  3487. paw: {
  3488. height: math.unit(1, "feet"),
  3489. name: "Paw",
  3490. image: {
  3491. source: "./media/characters/zephiro/paw.svg"
  3492. }
  3493. },
  3494. beans: {
  3495. height: math.unit(0.93, "feet"),
  3496. name: "Beans",
  3497. image: {
  3498. source: "./media/characters/zephiro/beans.svg"
  3499. }
  3500. },
  3501. },
  3502. [
  3503. {
  3504. name: "Micro",
  3505. height: math.unit(3, "inches")
  3506. },
  3507. {
  3508. name: "Normal",
  3509. height: math.unit(5 + 3 / 12, "feet"),
  3510. default: true
  3511. },
  3512. {
  3513. name: "Macro",
  3514. height: math.unit(118, "feet")
  3515. },
  3516. ]
  3517. ))
  3518. characterMakers.push(() => makeCharacter(
  3519. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3520. {
  3521. front: {
  3522. height: math.unit(5, "feet"),
  3523. weight: math.unit(90, "kg"),
  3524. preyCapacity: math.unit(14, "people"),
  3525. name: "Front",
  3526. image: {
  3527. source: "./media/characters/fory/front.svg",
  3528. extra: 2862 / 2674,
  3529. bottom: 180 / 3043.8
  3530. },
  3531. form: "weaselbun",
  3532. default: true,
  3533. extraAttributes: {
  3534. "pawSize": {
  3535. name: "Paw Size",
  3536. power: 2,
  3537. type: "area",
  3538. base: math.unit(0.1596, "m^2")
  3539. },
  3540. "pawLength": {
  3541. name: "Paw Length",
  3542. power: 1,
  3543. type: "length",
  3544. base: math.unit(0.7, "m")
  3545. }
  3546. }
  3547. },
  3548. back: {
  3549. height: math.unit(5, "feet"),
  3550. weight: math.unit(90, "kg"),
  3551. preyCapacity: math.unit(14, "people"),
  3552. name: "Back",
  3553. image: {
  3554. source: "./media/characters/fory/back.svg",
  3555. extra: 1790/1672,
  3556. bottom: 84/1874
  3557. },
  3558. form: "weaselbun",
  3559. extraAttributes: {
  3560. "pawSize": {
  3561. name: "Paw Size",
  3562. power: 2,
  3563. type: "area",
  3564. base: math.unit(0.1596, "m^2")
  3565. },
  3566. "pawLength": {
  3567. name: "Paw Length",
  3568. power: 1,
  3569. type: "length",
  3570. base: math.unit(0.7, "m")
  3571. }
  3572. }
  3573. },
  3574. paw: {
  3575. height: math.unit(2.14, "feet"),
  3576. name: "Paw",
  3577. image: {
  3578. source: "./media/characters/fory/paw.svg"
  3579. },
  3580. form: "weaselbun",
  3581. extraAttributes: {
  3582. "pawSize": {
  3583. name: "Paw Size",
  3584. power: 2,
  3585. type: "area",
  3586. base: math.unit(0.1596, "m^2")
  3587. },
  3588. "pawLength": {
  3589. name: "Paw Length",
  3590. power: 1,
  3591. type: "length",
  3592. base: math.unit(0.48, "m")
  3593. }
  3594. }
  3595. },
  3596. bunBack: {
  3597. height: math.unit(3, "feet"),
  3598. weight: math.unit(20, "kg"),
  3599. preyCapacity: math.unit(3, "people"),
  3600. name: "Back",
  3601. image: {
  3602. source: "./media/characters/fory/bun-back.svg",
  3603. extra: 1749/1564,
  3604. bottom: 246/1995
  3605. },
  3606. form: "bun",
  3607. default: true,
  3608. extraAttributes: {
  3609. "pawSize": {
  3610. name: "Paw Size",
  3611. power: 2,
  3612. type: "area",
  3613. base: math.unit(0.072, "m^2")
  3614. },
  3615. "pawLength": {
  3616. name: "Paw Length",
  3617. power: 1,
  3618. type: "length",
  3619. base: math.unit(0.45, "m")
  3620. }
  3621. }
  3622. },
  3623. },
  3624. [
  3625. {
  3626. name: "Normal",
  3627. height: math.unit(5, "feet"),
  3628. form: "weaselbun"
  3629. },
  3630. {
  3631. name: "Macro",
  3632. height: math.unit(50, "feet"),
  3633. default: true,
  3634. form: "weaselbun"
  3635. },
  3636. {
  3637. name: "Megamacro",
  3638. height: math.unit(10, "miles"),
  3639. form: "weaselbun"
  3640. },
  3641. {
  3642. name: "Gigamacro",
  3643. height: math.unit(5, "earths"),
  3644. form: "weaselbun"
  3645. },
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(3, "feet"),
  3649. default: true,
  3650. form: "bun"
  3651. },
  3652. {
  3653. name: "Fun-Size",
  3654. height: math.unit(12, "feet"),
  3655. form: "bun"
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(100, "feet"),
  3660. form: "bun"
  3661. },
  3662. {
  3663. name: "Planetary",
  3664. height: math.unit(3, "earths"),
  3665. form: "bun"
  3666. },
  3667. ],
  3668. {
  3669. "weaselbun": {
  3670. name: "Weaselbun",
  3671. default: true
  3672. },
  3673. "bun": {
  3674. name: "Bun",
  3675. },
  3676. }
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(7, "feet"),
  3683. weight: math.unit(90, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/kurrikage/front.svg",
  3687. extra: 1845/1733,
  3688. bottom: 119/1964
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(7, "feet"),
  3693. weight: math.unit(90, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/kurrikage/back.svg",
  3697. extra: 1790/1677,
  3698. bottom: 61/1851
  3699. }
  3700. },
  3701. dressed: {
  3702. height: math.unit(7, "feet"),
  3703. weight: math.unit(90, "kg"),
  3704. name: "Dressed",
  3705. image: {
  3706. source: "./media/characters/kurrikage/dressed.svg",
  3707. extra: 1845/1733,
  3708. bottom: 119/1964
  3709. }
  3710. },
  3711. foot: {
  3712. height: math.unit(1.5, "feet"),
  3713. name: "Foot",
  3714. image: {
  3715. source: "./media/characters/kurrikage/foot.svg"
  3716. }
  3717. },
  3718. staff: {
  3719. height: math.unit(6.7, "feet"),
  3720. name: "Staff",
  3721. image: {
  3722. source: "./media/characters/kurrikage/staff.svg"
  3723. }
  3724. },
  3725. peek: {
  3726. height: math.unit(1.05, "feet"),
  3727. name: "Peeking",
  3728. image: {
  3729. source: "./media/characters/kurrikage/peek.svg",
  3730. bottom: 0.08
  3731. }
  3732. },
  3733. },
  3734. [
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(12, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Big",
  3742. height: math.unit(20, "feet")
  3743. },
  3744. {
  3745. name: "Macro",
  3746. height: math.unit(500, "feet")
  3747. },
  3748. {
  3749. name: "Megamacro",
  3750. height: math.unit(20, "miles")
  3751. },
  3752. ]
  3753. ))
  3754. characterMakers.push(() => makeCharacter(
  3755. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3756. {
  3757. front: {
  3758. height: math.unit(6, "feet"),
  3759. weight: math.unit(75, "kg"),
  3760. name: "Front",
  3761. image: {
  3762. source: "./media/characters/shingo/front.svg",
  3763. extra: 1900/1825,
  3764. bottom: 82/1982
  3765. }
  3766. },
  3767. side: {
  3768. height: math.unit(6, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Side",
  3771. image: {
  3772. source: "./media/characters/shingo/side.svg",
  3773. extra: 1930/1865,
  3774. bottom: 16/1946
  3775. }
  3776. },
  3777. back: {
  3778. height: math.unit(6, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Back",
  3781. image: {
  3782. source: "./media/characters/shingo/back.svg",
  3783. extra: 1922/1852,
  3784. bottom: 16/1938
  3785. }
  3786. },
  3787. frontDressed: {
  3788. height: math.unit(6, "feet"),
  3789. weight: math.unit(150, "lb"),
  3790. name: "Front-dressed",
  3791. image: {
  3792. source: "./media/characters/shingo/front-dressed.svg",
  3793. extra: 1900/1825,
  3794. bottom: 82/1982
  3795. }
  3796. },
  3797. paw: {
  3798. height: math.unit(1.29, "feet"),
  3799. name: "Paw",
  3800. image: {
  3801. source: "./media/characters/shingo/paw.svg"
  3802. }
  3803. },
  3804. hand: {
  3805. height: math.unit(1.07, "feet"),
  3806. name: "Hand",
  3807. image: {
  3808. source: "./media/characters/shingo/hand.svg"
  3809. }
  3810. },
  3811. frontAlt: {
  3812. height: math.unit(6, "feet"),
  3813. weight: math.unit(75, "kg"),
  3814. name: "Front (Alt)",
  3815. image: {
  3816. source: "./media/characters/shingo/front-alt.svg",
  3817. extra: 3511 / 3338,
  3818. bottom: 0.005
  3819. }
  3820. },
  3821. frontAlt2: {
  3822. height: math.unit(6, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Front (Alt 2)",
  3825. image: {
  3826. source: "./media/characters/shingo/front-alt-2.svg",
  3827. extra: 706/681,
  3828. bottom: 11/717
  3829. }
  3830. },
  3831. pawAlt: {
  3832. height: math.unit(1, "feet"),
  3833. name: "Paw (Alt)",
  3834. image: {
  3835. source: "./media/characters/shingo/paw-alt.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Micro",
  3842. height: math.unit(4, "inches")
  3843. },
  3844. {
  3845. name: "Normal",
  3846. height: math.unit(6, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Macro",
  3851. height: math.unit(108, "feet")
  3852. },
  3853. {
  3854. name: "Macro+",
  3855. height: math.unit(1500, "feet")
  3856. },
  3857. ]
  3858. ))
  3859. characterMakers.push(() => makeCharacter(
  3860. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3861. {
  3862. side: {
  3863. height: math.unit(6, "feet"),
  3864. weight: math.unit(75, "kg"),
  3865. name: "Side",
  3866. image: {
  3867. source: "./media/characters/aigey/side.svg"
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Macro",
  3874. height: math.unit(200, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Megamacro",
  3879. height: math.unit(100, "miles")
  3880. },
  3881. ]
  3882. )
  3883. )
  3884. characterMakers.push(() => makeCharacter(
  3885. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3886. {
  3887. front: {
  3888. height: math.unit(13, "feet"),
  3889. weight: math.unit(1036.80, "kg"),
  3890. name: "Front",
  3891. image: {
  3892. source: "./media/characters/natasha/front.svg",
  3893. extra: 1301/1210,
  3894. bottom: 39/1340
  3895. }
  3896. },
  3897. back: {
  3898. height: math.unit(13, "feet"),
  3899. weight: math.unit(1036.80, "kg"),
  3900. name: "Back",
  3901. image: {
  3902. source: "./media/characters/natasha/back.svg",
  3903. extra: 1342/1252,
  3904. bottom: 20/1362
  3905. }
  3906. },
  3907. head: {
  3908. height: math.unit(3.48, "feet"),
  3909. name: "Head",
  3910. image: {
  3911. source: "./media/characters/natasha/head.svg"
  3912. }
  3913. },
  3914. jaws: {
  3915. height: math.unit(3.52, "feet"),
  3916. name: "Jaws",
  3917. image: {
  3918. source: "./media/characters/natasha/jaws.svg"
  3919. }
  3920. },
  3921. paws: {
  3922. height: math.unit(2.7, "feet"),
  3923. name: "Paws",
  3924. image: {
  3925. source: "./media/characters/natasha/paws.svg"
  3926. }
  3927. },
  3928. collar: {
  3929. height: math.unit(0.89, "feet"),
  3930. name: "Collar",
  3931. image: {
  3932. source: "./media/characters/natasha/collar.svg"
  3933. }
  3934. },
  3935. gauge: {
  3936. height: math.unit(0.36, "feet"),
  3937. name: "Gauge",
  3938. image: {
  3939. source: "./media/characters/natasha/gauge.svg"
  3940. }
  3941. },
  3942. },
  3943. [
  3944. {
  3945. name: "Shortstack",
  3946. height: math.unit(3, "feet")
  3947. },
  3948. {
  3949. name: "Normal",
  3950. height: math.unit(13, "feet"),
  3951. default: true
  3952. },
  3953. {
  3954. name: "Macro",
  3955. height: math.unit(100, "feet")
  3956. },
  3957. {
  3958. name: "Macro+",
  3959. height: math.unit(260, "feet")
  3960. },
  3961. {
  3962. name: "Macro++",
  3963. height: math.unit(1, "mile")
  3964. },
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3969. {
  3970. front: {
  3971. height: math.unit(6, "feet"),
  3972. weight: math.unit(75, "kg"),
  3973. name: "Front",
  3974. image: {
  3975. source: "./media/characters/malik/front.svg",
  3976. extra: 1750/1561,
  3977. bottom: 80/1830
  3978. },
  3979. extraAttributes: {
  3980. "toeSize": {
  3981. name: "Toe Size",
  3982. power: 2,
  3983. type: "area",
  3984. base: math.unit(0.0159, "m^2")
  3985. },
  3986. "pawSize": {
  3987. name: "Paw Size",
  3988. power: 2,
  3989. type: "area",
  3990. base: math.unit(0.09834, "m^2")
  3991. },
  3992. }
  3993. },
  3994. side: {
  3995. height: math.unit(6, "feet"),
  3996. weight: math.unit(75, "kg"),
  3997. name: "Side",
  3998. image: {
  3999. source: "./media/characters/malik/side.svg",
  4000. extra: 1802/1685,
  4001. bottom: 42/1844
  4002. },
  4003. extraAttributes: {
  4004. "toeSize": {
  4005. name: "Toe Size",
  4006. power: 2,
  4007. type: "area",
  4008. base: math.unit(0.0159, "m^2")
  4009. },
  4010. "pawSize": {
  4011. name: "Paw Size",
  4012. power: 2,
  4013. type: "area",
  4014. base: math.unit(0.09834, "m^2")
  4015. },
  4016. }
  4017. },
  4018. back: {
  4019. height: math.unit(6, "feet"),
  4020. weight: math.unit(75, "kg"),
  4021. name: "Back",
  4022. image: {
  4023. source: "./media/characters/malik/back.svg",
  4024. extra: 1803/1607,
  4025. bottom: 33/1836
  4026. },
  4027. extraAttributes: {
  4028. "toeSize": {
  4029. name: "Toe Size",
  4030. power: 2,
  4031. type: "area",
  4032. base: math.unit(0.0159, "m^2")
  4033. },
  4034. "pawSize": {
  4035. name: "Paw Size",
  4036. power: 2,
  4037. type: "area",
  4038. base: math.unit(0.09834, "m^2")
  4039. },
  4040. }
  4041. },
  4042. },
  4043. [
  4044. {
  4045. name: "Macro",
  4046. height: math.unit(156, "feet"),
  4047. default: true
  4048. },
  4049. {
  4050. name: "Macro+",
  4051. height: math.unit(1188, "feet")
  4052. },
  4053. ]
  4054. ))
  4055. characterMakers.push(() => makeCharacter(
  4056. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4057. {
  4058. front: {
  4059. height: math.unit(6, "feet"),
  4060. weight: math.unit(75, "kg"),
  4061. name: "Front",
  4062. image: {
  4063. source: "./media/characters/sefer/front.svg",
  4064. extra: 848 / 659,
  4065. bottom: 28.3 / 876.442
  4066. }
  4067. },
  4068. back: {
  4069. height: math.unit(6, "feet"),
  4070. weight: math.unit(75, "kg"),
  4071. name: "Back",
  4072. image: {
  4073. source: "./media/characters/sefer/back.svg",
  4074. extra: 864 / 695,
  4075. bottom: 10 / 871
  4076. }
  4077. },
  4078. frontDressed: {
  4079. height: math.unit(6, "feet"),
  4080. weight: math.unit(75, "kg"),
  4081. name: "Dressed",
  4082. image: {
  4083. source: "./media/characters/sefer/dressed.svg",
  4084. extra: 839 / 653,
  4085. bottom: 37.6 / 878
  4086. }
  4087. },
  4088. },
  4089. [
  4090. {
  4091. name: "Normal",
  4092. height: math.unit(6, "feet"),
  4093. default: true
  4094. },
  4095. {
  4096. name: "Big",
  4097. height: math.unit(8, "meters")
  4098. },
  4099. ]
  4100. ))
  4101. characterMakers.push(() => makeCharacter(
  4102. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4103. {
  4104. body: {
  4105. height: math.unit(2.2428, "meter"),
  4106. weight: math.unit(124.738, "kg"),
  4107. name: "Body",
  4108. image: {
  4109. extra: 1225 / 1050,
  4110. source: "./media/characters/north/front.svg"
  4111. }
  4112. }
  4113. },
  4114. [
  4115. {
  4116. name: "Micro",
  4117. height: math.unit(4, "inches")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(63, "meters")
  4122. },
  4123. {
  4124. name: "Megamacro",
  4125. height: math.unit(101, "miles"),
  4126. default: true
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4132. {
  4133. angled: {
  4134. height: math.unit(4, "meter"),
  4135. weight: math.unit(150, "kg"),
  4136. name: "Angled",
  4137. image: {
  4138. source: "./media/characters/talan/angled-sfw.svg",
  4139. bottom: 29 / 3734
  4140. }
  4141. },
  4142. angledNsfw: {
  4143. height: math.unit(4, "meter"),
  4144. weight: math.unit(150, "kg"),
  4145. name: "Angled (NSFW)",
  4146. image: {
  4147. source: "./media/characters/talan/angled-nsfw.svg",
  4148. bottom: 29 / 3734
  4149. }
  4150. },
  4151. frontNsfw: {
  4152. height: math.unit(4, "meter"),
  4153. weight: math.unit(150, "kg"),
  4154. name: "Front (NSFW)",
  4155. image: {
  4156. source: "./media/characters/talan/front-nsfw.svg",
  4157. bottom: 29 / 3734
  4158. }
  4159. },
  4160. sideNsfw: {
  4161. height: math.unit(4, "meter"),
  4162. weight: math.unit(150, "kg"),
  4163. name: "Side (NSFW)",
  4164. image: {
  4165. source: "./media/characters/talan/side-nsfw.svg",
  4166. bottom: 29 / 3734
  4167. }
  4168. },
  4169. back: {
  4170. height: math.unit(4, "meter"),
  4171. weight: math.unit(150, "kg"),
  4172. name: "Back",
  4173. image: {
  4174. source: "./media/characters/talan/back.svg"
  4175. }
  4176. },
  4177. dickBottom: {
  4178. height: math.unit(0.621, "meter"),
  4179. name: "Dick (Bottom)",
  4180. image: {
  4181. source: "./media/characters/talan/dick-bottom.svg"
  4182. }
  4183. },
  4184. dickTop: {
  4185. height: math.unit(0.621, "meter"),
  4186. name: "Dick (Top)",
  4187. image: {
  4188. source: "./media/characters/talan/dick-top.svg"
  4189. }
  4190. },
  4191. dickSide: {
  4192. height: math.unit(0.305, "meter"),
  4193. name: "Dick (Side)",
  4194. image: {
  4195. source: "./media/characters/talan/dick-side.svg"
  4196. }
  4197. },
  4198. dickFront: {
  4199. height: math.unit(0.305, "meter"),
  4200. name: "Dick (Front)",
  4201. image: {
  4202. source: "./media/characters/talan/dick-front.svg"
  4203. }
  4204. },
  4205. },
  4206. [
  4207. {
  4208. name: "Normal",
  4209. height: math.unit(4, "meters")
  4210. },
  4211. {
  4212. name: "Macro",
  4213. height: math.unit(100, "meters")
  4214. },
  4215. {
  4216. name: "Megamacro",
  4217. height: math.unit(2, "miles"),
  4218. default: true
  4219. },
  4220. {
  4221. name: "Gigamacro",
  4222. height: math.unit(5000, "miles")
  4223. },
  4224. {
  4225. name: "Teramacro",
  4226. height: math.unit(100, "parsecs")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(2, "meter"),
  4235. weight: math.unit(90, "kg"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/gael'rathus/front.svg"
  4239. }
  4240. },
  4241. frontAlt: {
  4242. height: math.unit(2, "meter"),
  4243. weight: math.unit(90, "kg"),
  4244. name: "Front (alt)",
  4245. image: {
  4246. source: "./media/characters/gael'rathus/front-alt.svg"
  4247. }
  4248. },
  4249. frontAlt2: {
  4250. height: math.unit(2, "meter"),
  4251. weight: math.unit(90, "kg"),
  4252. name: "Front (alt 2)",
  4253. image: {
  4254. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4255. }
  4256. }
  4257. },
  4258. [
  4259. {
  4260. name: "Normal",
  4261. height: math.unit(9, "feet"),
  4262. default: true
  4263. },
  4264. {
  4265. name: "Large",
  4266. height: math.unit(25, "feet")
  4267. },
  4268. {
  4269. name: "Macro",
  4270. height: math.unit(0.25, "miles")
  4271. },
  4272. {
  4273. name: "Megamacro",
  4274. height: math.unit(10, "miles")
  4275. }
  4276. ]
  4277. ))
  4278. characterMakers.push(() => makeCharacter(
  4279. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4280. {
  4281. side: {
  4282. height: math.unit(2, "meter"),
  4283. weight: math.unit(140, "kg"),
  4284. name: "Side",
  4285. image: {
  4286. source: "./media/characters/sosha/side.svg",
  4287. extra: 1170/1006,
  4288. bottom: 94/1264
  4289. }
  4290. },
  4291. maw: {
  4292. height: math.unit(2.87, "feet"),
  4293. name: "Maw",
  4294. image: {
  4295. source: "./media/characters/sosha/maw.svg",
  4296. extra: 966/865,
  4297. bottom: 0/966
  4298. }
  4299. },
  4300. cooch: {
  4301. height: math.unit(5.6, "feet"),
  4302. name: "Cooch",
  4303. image: {
  4304. source: "./media/characters/sosha/cooch.svg"
  4305. }
  4306. },
  4307. },
  4308. [
  4309. {
  4310. name: "Normal",
  4311. height: math.unit(12, "feet"),
  4312. default: true
  4313. }
  4314. ]
  4315. ))
  4316. characterMakers.push(() => makeCharacter(
  4317. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4318. {
  4319. side: {
  4320. height: math.unit(5 + 5 / 12, "feet"),
  4321. weight: math.unit(170, "kg"),
  4322. name: "Side",
  4323. image: {
  4324. source: "./media/characters/runnola/side.svg",
  4325. extra: 741 / 448,
  4326. bottom: 0.05
  4327. }
  4328. },
  4329. },
  4330. [
  4331. {
  4332. name: "Small",
  4333. height: math.unit(3, "feet")
  4334. },
  4335. {
  4336. name: "Normal",
  4337. height: math.unit(5 + 5 / 12, "feet"),
  4338. default: true
  4339. },
  4340. {
  4341. name: "Big",
  4342. height: math.unit(10, "feet")
  4343. },
  4344. ]
  4345. ))
  4346. characterMakers.push(() => makeCharacter(
  4347. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4348. {
  4349. front: {
  4350. height: math.unit(2, "meter"),
  4351. weight: math.unit(50, "kg"),
  4352. name: "Front",
  4353. image: {
  4354. source: "./media/characters/kurribird/front.svg",
  4355. bottom: 0.015
  4356. }
  4357. },
  4358. frontAlt: {
  4359. height: math.unit(1.5, "meter"),
  4360. weight: math.unit(50, "kg"),
  4361. name: "Front (Alt)",
  4362. image: {
  4363. source: "./media/characters/kurribird/front-alt.svg",
  4364. extra: 1.45
  4365. }
  4366. },
  4367. },
  4368. [
  4369. {
  4370. name: "Normal",
  4371. height: math.unit(7, "feet")
  4372. },
  4373. {
  4374. name: "Big",
  4375. height: math.unit(12, "feet"),
  4376. default: true
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(1500, "feet")
  4381. },
  4382. {
  4383. name: "Megamacro",
  4384. height: math.unit(2, "miles")
  4385. }
  4386. ]
  4387. ))
  4388. characterMakers.push(() => makeCharacter(
  4389. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4390. {
  4391. front: {
  4392. height: math.unit(2, "meter"),
  4393. weight: math.unit(80, "kg"),
  4394. name: "Front",
  4395. image: {
  4396. source: "./media/characters/elbial/front.svg",
  4397. extra: 1643 / 1556,
  4398. bottom: 60.2 / 1696
  4399. }
  4400. },
  4401. side: {
  4402. height: math.unit(2, "meter"),
  4403. weight: math.unit(80, "kg"),
  4404. name: "Side",
  4405. image: {
  4406. source: "./media/characters/elbial/side.svg",
  4407. extra: 1601/1528,
  4408. bottom: 97/1698
  4409. }
  4410. },
  4411. back: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(80, "kg"),
  4414. name: "Back",
  4415. image: {
  4416. source: "./media/characters/elbial/back.svg",
  4417. extra: 1653/1569,
  4418. bottom: 20/1673
  4419. }
  4420. },
  4421. frontDressed: {
  4422. height: math.unit(2, "meter"),
  4423. weight: math.unit(80, "kg"),
  4424. name: "Front (Dressed)",
  4425. image: {
  4426. source: "./media/characters/elbial/front-dressed.svg",
  4427. extra: 1638/1569,
  4428. bottom: 70/1708
  4429. }
  4430. },
  4431. genitals: {
  4432. height: math.unit(2 / 3.367, "meter"),
  4433. name: "Genitals",
  4434. image: {
  4435. source: "./media/characters/elbial/genitals.svg"
  4436. }
  4437. },
  4438. },
  4439. [
  4440. {
  4441. name: "Large",
  4442. height: math.unit(100, "feet")
  4443. },
  4444. {
  4445. name: "Macro",
  4446. height: math.unit(500, "feet"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Megamacro",
  4451. height: math.unit(10, "miles")
  4452. },
  4453. {
  4454. name: "Gigamacro",
  4455. height: math.unit(25000, "miles")
  4456. },
  4457. {
  4458. name: "Full-Size",
  4459. height: math.unit(8000000, "gigaparsecs")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(2, "meter"),
  4468. weight: math.unit(60, "kg"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/noah/front.svg",
  4472. extra: 1383/1313,
  4473. bottom: 104/1487
  4474. }
  4475. },
  4476. hand: {
  4477. height: math.unit(0.6, "feet"),
  4478. name: "Hand",
  4479. image: {
  4480. source: "./media/characters/noah/hand.svg"
  4481. }
  4482. },
  4483. talons: {
  4484. height: math.unit(1.385, "feet"),
  4485. name: "Talons",
  4486. image: {
  4487. source: "./media/characters/noah/talons.svg"
  4488. }
  4489. },
  4490. beak: {
  4491. height: math.unit(0.43, "feet"),
  4492. name: "Beak",
  4493. image: {
  4494. source: "./media/characters/noah/beak.svg"
  4495. }
  4496. },
  4497. collar: {
  4498. height: math.unit(0.88, "feet"),
  4499. name: "Collar",
  4500. image: {
  4501. source: "./media/characters/noah/collar.svg"
  4502. }
  4503. },
  4504. eyeNarrow: {
  4505. height: math.unit(0.18, "feet"),
  4506. name: "Eye (Narrow)",
  4507. image: {
  4508. source: "./media/characters/noah/eye-narrow.svg"
  4509. }
  4510. },
  4511. eyeNormal: {
  4512. height: math.unit(0.18, "feet"),
  4513. name: "Eye (Normal)",
  4514. image: {
  4515. source: "./media/characters/noah/eye-normal.svg"
  4516. }
  4517. },
  4518. eyeWide: {
  4519. height: math.unit(0.18, "feet"),
  4520. name: "Eye (Wide)",
  4521. image: {
  4522. source: "./media/characters/noah/eye-wide.svg"
  4523. }
  4524. },
  4525. ear: {
  4526. height: math.unit(0.64, "feet"),
  4527. name: "Ear",
  4528. image: {
  4529. source: "./media/characters/noah/ear.svg"
  4530. }
  4531. },
  4532. },
  4533. [
  4534. {
  4535. name: "Large",
  4536. height: math.unit(50, "feet")
  4537. },
  4538. {
  4539. name: "Macro",
  4540. height: math.unit(750, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "Megamacro",
  4545. height: math.unit(50, "miles")
  4546. },
  4547. {
  4548. name: "Gigamacro",
  4549. height: math.unit(100000, "miles")
  4550. },
  4551. {
  4552. name: "Full-Size",
  4553. height: math.unit(3000000000, "miles")
  4554. }
  4555. ]
  4556. ))
  4557. characterMakers.push(() => makeCharacter(
  4558. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4559. {
  4560. front: {
  4561. height: math.unit(2, "meter"),
  4562. weight: math.unit(80, "kg"),
  4563. name: "Front",
  4564. image: {
  4565. source: "./media/characters/natalya/front.svg"
  4566. }
  4567. },
  4568. back: {
  4569. height: math.unit(2, "meter"),
  4570. weight: math.unit(80, "kg"),
  4571. name: "Back",
  4572. image: {
  4573. source: "./media/characters/natalya/back.svg"
  4574. }
  4575. }
  4576. },
  4577. [
  4578. {
  4579. name: "Normal",
  4580. height: math.unit(150, "feet"),
  4581. default: true
  4582. },
  4583. {
  4584. name: "Megamacro",
  4585. height: math.unit(5, "miles")
  4586. },
  4587. {
  4588. name: "Full-Size",
  4589. height: math.unit(600, "kiloparsecs")
  4590. }
  4591. ]
  4592. ))
  4593. characterMakers.push(() => makeCharacter(
  4594. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4595. {
  4596. front: {
  4597. height: math.unit(2, "meter"),
  4598. weight: math.unit(50, "kg"),
  4599. name: "Front",
  4600. image: {
  4601. source: "./media/characters/erestrebah/front.svg",
  4602. extra: 1262/1162,
  4603. bottom: 96/1358
  4604. }
  4605. },
  4606. back: {
  4607. height: math.unit(2, "meter"),
  4608. weight: math.unit(50, "kg"),
  4609. name: "Back",
  4610. image: {
  4611. source: "./media/characters/erestrebah/back.svg",
  4612. extra: 1257/1139,
  4613. bottom: 13/1270
  4614. }
  4615. },
  4616. wing: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(50, "kg"),
  4619. name: "Wing",
  4620. image: {
  4621. source: "./media/characters/erestrebah/wing.svg",
  4622. extra: 1262/1162,
  4623. bottom: 96/1358
  4624. }
  4625. },
  4626. mouth: {
  4627. height: math.unit(0.39, "feet"),
  4628. name: "Mouth",
  4629. image: {
  4630. source: "./media/characters/erestrebah/mouth.svg"
  4631. }
  4632. }
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(10, "feet")
  4638. },
  4639. {
  4640. name: "Large",
  4641. height: math.unit(50, "feet"),
  4642. default: true
  4643. },
  4644. {
  4645. name: "Macro",
  4646. height: math.unit(300, "feet")
  4647. },
  4648. {
  4649. name: "Macro+",
  4650. height: math.unit(750, "feet")
  4651. },
  4652. {
  4653. name: "Megamacro",
  4654. height: math.unit(3, "miles")
  4655. }
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4660. {
  4661. front: {
  4662. height: math.unit(2, "meter"),
  4663. weight: math.unit(80, "kg"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/jennifer/front.svg",
  4667. bottom: 0.11,
  4668. extra: 1.16
  4669. }
  4670. },
  4671. frontAlt: {
  4672. height: math.unit(2, "meter"),
  4673. weight: math.unit(80, "kg"),
  4674. name: "Front (Alt)",
  4675. image: {
  4676. source: "./media/characters/jennifer/front-alt.svg"
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Canon Height",
  4683. height: math.unit(120, "feet"),
  4684. default: true
  4685. },
  4686. {
  4687. name: "Macro+",
  4688. height: math.unit(300, "feet")
  4689. },
  4690. {
  4691. name: "Megamacro",
  4692. height: math.unit(20000, "feet")
  4693. }
  4694. ]
  4695. ))
  4696. characterMakers.push(() => makeCharacter(
  4697. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4698. {
  4699. front: {
  4700. height: math.unit(2, "meter"),
  4701. weight: math.unit(50, "kg"),
  4702. name: "Front",
  4703. image: {
  4704. source: "./media/characters/kalista/front.svg",
  4705. extra: 1314/1145,
  4706. bottom: 101/1415
  4707. }
  4708. },
  4709. back: {
  4710. height: math.unit(2, "meter"),
  4711. weight: math.unit(50, "kg"),
  4712. name: "Back",
  4713. image: {
  4714. source: "./media/characters/kalista/back.svg",
  4715. extra: 1366 / 1156,
  4716. bottom: 33.9 / 1362.78
  4717. }
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Uncomfortably Small",
  4723. height: math.unit(10, "feet")
  4724. },
  4725. {
  4726. name: "Small",
  4727. height: math.unit(30, "feet")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(100, "feet"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Macro+",
  4736. height: math.unit(2000, "feet")
  4737. },
  4738. {
  4739. name: "True Form",
  4740. height: math.unit(8924, "miles")
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(2, "meter"),
  4749. weight: math.unit(120, "kg"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/ggv/front.svg"
  4753. }
  4754. },
  4755. side: {
  4756. height: math.unit(2, "meter"),
  4757. weight: math.unit(120, "kg"),
  4758. name: "Side",
  4759. image: {
  4760. source: "./media/characters/ggv/side.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Extremely Puny",
  4767. height: math.unit(9 + 5 / 12, "feet")
  4768. },
  4769. {
  4770. name: "Horribly Small",
  4771. height: math.unit(47.7, "miles"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "Reasonably Sized",
  4776. height: math.unit(25000, "parsecs")
  4777. },
  4778. {
  4779. name: "Slightly Uncompressed",
  4780. height: math.unit(7.77e31, "parsecs")
  4781. },
  4782. {
  4783. name: "Omniversal",
  4784. height: math.unit(1e300, "meters")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(2, "meter"),
  4793. weight: math.unit(75, "lb"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/napalm/front.svg"
  4797. }
  4798. },
  4799. back: {
  4800. height: math.unit(2, "meter"),
  4801. weight: math.unit(75, "lb"),
  4802. name: "Back",
  4803. image: {
  4804. source: "./media/characters/napalm/back.svg"
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Standard",
  4811. height: math.unit(55, "feet"),
  4812. default: true
  4813. }
  4814. ]
  4815. ))
  4816. characterMakers.push(() => makeCharacter(
  4817. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4818. {
  4819. front: {
  4820. height: math.unit(7 + 5 / 6, "feet"),
  4821. weight: math.unit(325, "lb"),
  4822. name: "Front",
  4823. image: {
  4824. source: "./media/characters/asana/front.svg",
  4825. extra: 1133 / 1060,
  4826. bottom: 15.2 / 1148.6
  4827. }
  4828. },
  4829. back: {
  4830. height: math.unit(7 + 5 / 6, "feet"),
  4831. weight: math.unit(325, "lb"),
  4832. name: "Back",
  4833. image: {
  4834. source: "./media/characters/asana/back.svg",
  4835. extra: 1114 / 1043,
  4836. bottom: 5 / 1120
  4837. }
  4838. },
  4839. dressedDark: {
  4840. height: math.unit(7 + 5 / 6, "feet"),
  4841. weight: math.unit(325, "lb"),
  4842. name: "Dressed (Dark)",
  4843. image: {
  4844. source: "./media/characters/asana/dressed-dark.svg",
  4845. extra: 1133 / 1060,
  4846. bottom: 15.2 / 1148.6
  4847. }
  4848. },
  4849. dressedLight: {
  4850. height: math.unit(7 + 5 / 6, "feet"),
  4851. weight: math.unit(325, "lb"),
  4852. name: "Dressed (Light)",
  4853. image: {
  4854. source: "./media/characters/asana/dressed-light.svg",
  4855. extra: 1133 / 1060,
  4856. bottom: 15.2 / 1148.6
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Standard",
  4863. height: math.unit(7 + 5 / 6, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Large",
  4868. height: math.unit(10, "meters")
  4869. },
  4870. {
  4871. name: "Macro",
  4872. height: math.unit(2500, "meters")
  4873. },
  4874. {
  4875. name: "Megamacro",
  4876. height: math.unit(5e6, "meters")
  4877. },
  4878. {
  4879. name: "Examacro",
  4880. height: math.unit(5e12, "lightyears")
  4881. },
  4882. {
  4883. name: "Max Size",
  4884. height: math.unit(1e31, "lightyears")
  4885. }
  4886. ]
  4887. ))
  4888. characterMakers.push(() => makeCharacter(
  4889. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4890. {
  4891. front: {
  4892. height: math.unit(2, "meter"),
  4893. weight: math.unit(60, "kg"),
  4894. name: "Front",
  4895. image: {
  4896. source: "./media/characters/ebony/front.svg",
  4897. bottom: 0.03,
  4898. extra: 1045 / 810 + 0.03
  4899. }
  4900. },
  4901. side: {
  4902. height: math.unit(2, "meter"),
  4903. weight: math.unit(60, "kg"),
  4904. name: "Side",
  4905. image: {
  4906. source: "./media/characters/ebony/side.svg",
  4907. bottom: 0.03,
  4908. extra: 1045 / 810 + 0.03
  4909. }
  4910. },
  4911. back: {
  4912. height: math.unit(2, "meter"),
  4913. weight: math.unit(60, "kg"),
  4914. name: "Back",
  4915. image: {
  4916. source: "./media/characters/ebony/back.svg",
  4917. bottom: 0.01,
  4918. extra: 1045 / 810 + 0.01
  4919. }
  4920. },
  4921. },
  4922. [
  4923. // TODO check why I did this lol
  4924. {
  4925. name: "Standard",
  4926. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(200, "feet")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(13000, "km")
  4936. }
  4937. ]
  4938. ))
  4939. characterMakers.push(() => makeCharacter(
  4940. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4941. {
  4942. front: {
  4943. height: math.unit(6, "feet"),
  4944. weight: math.unit(175, "lb"),
  4945. name: "Front",
  4946. image: {
  4947. source: "./media/characters/mountain/front.svg",
  4948. extra: 972 / 955,
  4949. bottom: 64 / 1036.6
  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/mountain/back.svg",
  4958. extra: 970 / 950,
  4959. bottom: 28.25 / 999
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Large",
  4966. height: math.unit(20, "meters")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(300, "meters")
  4971. },
  4972. {
  4973. name: "Gigamacro",
  4974. height: math.unit(10000, "km"),
  4975. default: true
  4976. },
  4977. {
  4978. name: "Examacro",
  4979. height: math.unit(10e9, "lightyears")
  4980. }
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(8, "feet"),
  4988. weight: math.unit(500, "lb"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/rick/front.svg"
  4992. }
  4993. }
  4994. },
  4995. [
  4996. {
  4997. name: "Normal",
  4998. height: math.unit(8, "feet"),
  4999. default: true
  5000. },
  5001. {
  5002. name: "Macro",
  5003. height: math.unit(5, "km")
  5004. }
  5005. ]
  5006. ))
  5007. characterMakers.push(() => makeCharacter(
  5008. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  5009. {
  5010. front: {
  5011. height: math.unit(8, "feet"),
  5012. weight: math.unit(120, "lb"),
  5013. name: "Front",
  5014. image: {
  5015. source: "./media/characters/ona/front.svg"
  5016. }
  5017. },
  5018. frontAlt: {
  5019. height: math.unit(8, "feet"),
  5020. weight: math.unit(120, "lb"),
  5021. name: "Front (Alt)",
  5022. image: {
  5023. source: "./media/characters/ona/front-alt.svg"
  5024. }
  5025. },
  5026. back: {
  5027. height: math.unit(8, "feet"),
  5028. weight: math.unit(120, "lb"),
  5029. name: "Back",
  5030. image: {
  5031. source: "./media/characters/ona/back.svg"
  5032. }
  5033. },
  5034. foot: {
  5035. height: math.unit(1.1, "feet"),
  5036. name: "Foot",
  5037. image: {
  5038. source: "./media/characters/ona/foot.svg"
  5039. }
  5040. }
  5041. },
  5042. [
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(70, "km"),
  5046. default: true
  5047. },
  5048. {
  5049. name: "Gigamacro",
  5050. height: math.unit(681818, "miles")
  5051. },
  5052. {
  5053. name: "Examacro",
  5054. height: math.unit(3800000, "lightyears")
  5055. },
  5056. ]
  5057. ))
  5058. characterMakers.push(() => makeCharacter(
  5059. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5060. {
  5061. front: {
  5062. height: math.unit(12, "feet"),
  5063. weight: math.unit(3000, "lb"),
  5064. name: "Front",
  5065. image: {
  5066. source: "./media/characters/mech/front.svg",
  5067. extra: 2900 / 2770,
  5068. bottom: 110 / 3010
  5069. }
  5070. },
  5071. back: {
  5072. height: math.unit(12, "feet"),
  5073. weight: math.unit(3000, "lb"),
  5074. name: "Back",
  5075. image: {
  5076. source: "./media/characters/mech/back.svg",
  5077. extra: 3011 / 2890,
  5078. bottom: 94 / 3105
  5079. }
  5080. },
  5081. maw: {
  5082. height: math.unit(3.07, "feet"),
  5083. name: "Maw",
  5084. image: {
  5085. source: "./media/characters/mech/maw.svg"
  5086. }
  5087. },
  5088. head: {
  5089. height: math.unit(3.07, "feet"),
  5090. name: "Head",
  5091. image: {
  5092. source: "./media/characters/mech/head.svg"
  5093. }
  5094. },
  5095. dick: {
  5096. height: math.unit(1.43, "feet"),
  5097. name: "Dick",
  5098. image: {
  5099. source: "./media/characters/mech/dick.svg"
  5100. }
  5101. },
  5102. },
  5103. [
  5104. {
  5105. name: "Normal",
  5106. height: math.unit(12, "feet")
  5107. },
  5108. {
  5109. name: "Macro",
  5110. height: math.unit(300, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Macro+",
  5115. height: math.unit(1500, "feet")
  5116. },
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5121. {
  5122. front: {
  5123. height: math.unit(1.3, "meter"),
  5124. weight: math.unit(30, "kg"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/gregory/front.svg",
  5128. }
  5129. }
  5130. },
  5131. [
  5132. {
  5133. name: "Normal",
  5134. height: math.unit(1.3, "meter"),
  5135. default: true
  5136. },
  5137. {
  5138. name: "Macro",
  5139. height: math.unit(20, "meter")
  5140. }
  5141. ]
  5142. ))
  5143. characterMakers.push(() => makeCharacter(
  5144. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5145. {
  5146. front: {
  5147. height: math.unit(2.8, "meter"),
  5148. weight: math.unit(200, "kg"),
  5149. name: "Front",
  5150. image: {
  5151. source: "./media/characters/elory/front.svg",
  5152. }
  5153. }
  5154. },
  5155. [
  5156. {
  5157. name: "Normal",
  5158. height: math.unit(2.8, "meter"),
  5159. default: true
  5160. },
  5161. {
  5162. name: "Macro",
  5163. height: math.unit(38, "meter")
  5164. }
  5165. ]
  5166. ))
  5167. characterMakers.push(() => makeCharacter(
  5168. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5169. {
  5170. front: {
  5171. height: math.unit(470, "feet"),
  5172. weight: math.unit(924, "tons"),
  5173. name: "Front",
  5174. image: {
  5175. source: "./media/characters/angelpatamon/front.svg",
  5176. }
  5177. }
  5178. },
  5179. [
  5180. {
  5181. name: "Normal",
  5182. height: math.unit(470, "feet"),
  5183. default: true
  5184. },
  5185. {
  5186. name: "Deity Size I",
  5187. height: math.unit(28651.2, "km")
  5188. },
  5189. {
  5190. name: "Deity Size II",
  5191. height: math.unit(171907.2, "km")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5197. {
  5198. side: {
  5199. height: math.unit(7.2, "meter"),
  5200. weight: math.unit(8.2, "tons"),
  5201. name: "Side",
  5202. image: {
  5203. source: "./media/characters/cryae/side.svg",
  5204. extra: 3500 / 1500
  5205. }
  5206. }
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(7.2, "meter"),
  5212. default: true
  5213. }
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5218. {
  5219. front: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(175, "lb"),
  5222. name: "Front",
  5223. image: {
  5224. source: "./media/characters/xera/front.svg",
  5225. extra: 2377 / 1972,
  5226. bottom: 75.5 / 2452
  5227. }
  5228. },
  5229. side: {
  5230. height: math.unit(6, "feet"),
  5231. weight: math.unit(175, "lb"),
  5232. name: "Side",
  5233. image: {
  5234. source: "./media/characters/xera/side.svg",
  5235. extra: 2345 / 2019,
  5236. bottom: 39.7 / 2384
  5237. }
  5238. },
  5239. back: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(175, "lb"),
  5242. name: "Back",
  5243. image: {
  5244. source: "./media/characters/xera/back.svg",
  5245. extra: 2095 / 1984,
  5246. bottom: 67 / 2166
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Small",
  5253. height: math.unit(10, "feet")
  5254. },
  5255. {
  5256. name: "Macro",
  5257. height: math.unit(500, "meters"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro+",
  5262. height: math.unit(10, "km")
  5263. },
  5264. {
  5265. name: "Gigamacro",
  5266. height: math.unit(25000, "km")
  5267. },
  5268. {
  5269. name: "Teramacro",
  5270. height: math.unit(3e6, "km")
  5271. }
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(175, "lb"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/nebula/front.svg",
  5283. extra: 2566 / 2362,
  5284. bottom: 81 / 2644
  5285. }
  5286. }
  5287. },
  5288. [
  5289. {
  5290. name: "Small",
  5291. height: math.unit(4.5, "meters")
  5292. },
  5293. {
  5294. name: "Macro",
  5295. height: math.unit(1500, "meters"),
  5296. default: true
  5297. },
  5298. {
  5299. name: "Megamacro",
  5300. height: math.unit(150, "km")
  5301. },
  5302. {
  5303. name: "Gigamacro",
  5304. height: math.unit(27000, "km")
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5310. {
  5311. front: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(225, "lb"),
  5314. name: "Front",
  5315. image: {
  5316. source: "./media/characters/abysgar/front.svg",
  5317. extra: 1739/1614,
  5318. bottom: 71/1810
  5319. }
  5320. },
  5321. frontNsfw: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(225, "lb"),
  5324. name: "Front (NSFW)",
  5325. image: {
  5326. source: "./media/characters/abysgar/front-nsfw.svg",
  5327. extra: 1739/1614,
  5328. bottom: 71/1810
  5329. }
  5330. },
  5331. back: {
  5332. height: math.unit(4.6, "feet"),
  5333. weight: math.unit(225, "lb"),
  5334. name: "Back",
  5335. image: {
  5336. source: "./media/characters/abysgar/back.svg",
  5337. extra: 1384/1327,
  5338. bottom: 0/1384
  5339. }
  5340. },
  5341. head: {
  5342. height: math.unit(1.25, "feet"),
  5343. name: "Head",
  5344. image: {
  5345. source: "./media/characters/abysgar/head.svg",
  5346. extra: 669/569,
  5347. bottom: 0/669
  5348. }
  5349. },
  5350. },
  5351. [
  5352. {
  5353. name: "Small",
  5354. height: math.unit(4.5, "meters")
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(1250, "meters"),
  5359. default: true
  5360. },
  5361. {
  5362. name: "Megamacro",
  5363. height: math.unit(125, "km")
  5364. },
  5365. {
  5366. name: "Gigamacro",
  5367. height: math.unit(26000, "km")
  5368. }
  5369. ]
  5370. ))
  5371. characterMakers.push(() => makeCharacter(
  5372. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5373. {
  5374. front: {
  5375. height: math.unit(6, "feet"),
  5376. weight: math.unit(180, "lb"),
  5377. name: "Front",
  5378. image: {
  5379. source: "./media/characters/yakuz/front.svg"
  5380. }
  5381. }
  5382. },
  5383. [
  5384. {
  5385. name: "Small",
  5386. height: math.unit(5, "meters")
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(1500, "meters"),
  5391. default: true
  5392. },
  5393. {
  5394. name: "Megamacro",
  5395. height: math.unit(200, "km")
  5396. },
  5397. {
  5398. name: "Gigamacro",
  5399. height: math.unit(100000, "km")
  5400. }
  5401. ]
  5402. ))
  5403. characterMakers.push(() => makeCharacter(
  5404. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5405. {
  5406. front: {
  5407. height: math.unit(6, "feet"),
  5408. weight: math.unit(175, "lb"),
  5409. name: "Front",
  5410. image: {
  5411. source: "./media/characters/mirova/front.svg",
  5412. extra: 3334 / 3071,
  5413. bottom: 42 / 3375.6
  5414. }
  5415. }
  5416. },
  5417. [
  5418. {
  5419. name: "Small",
  5420. height: math.unit(5, "meters")
  5421. },
  5422. {
  5423. name: "Macro",
  5424. height: math.unit(900, "meters"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Megamacro",
  5429. height: math.unit(135, "km")
  5430. },
  5431. {
  5432. name: "Gigamacro",
  5433. height: math.unit(20000, "km")
  5434. }
  5435. ]
  5436. ))
  5437. characterMakers.push(() => makeCharacter(
  5438. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5439. {
  5440. side: {
  5441. height: math.unit(28.35, "feet"),
  5442. weight: math.unit(99.75, "tons"),
  5443. name: "Side",
  5444. image: {
  5445. source: "./media/characters/asana-mech/side.svg",
  5446. extra: 923 / 699,
  5447. bottom: 50 / 975
  5448. }
  5449. },
  5450. chaingun: {
  5451. height: math.unit(7, "feet"),
  5452. weight: math.unit(2400, "lb"),
  5453. name: "Chaingun",
  5454. image: {
  5455. source: "./media/characters/asana-mech/chaingun.svg"
  5456. }
  5457. },
  5458. laser: {
  5459. height: math.unit(7.12, "feet"),
  5460. weight: math.unit(2000, "lb"),
  5461. name: "Laser",
  5462. image: {
  5463. source: "./media/characters/asana-mech/laser.svg"
  5464. }
  5465. },
  5466. },
  5467. [
  5468. {
  5469. name: "Normal",
  5470. height: math.unit(28.35, "feet"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Macro",
  5475. height: math.unit(2500, "feet")
  5476. },
  5477. {
  5478. name: "Megamacro",
  5479. height: math.unit(25, "miles")
  5480. },
  5481. {
  5482. name: "Examacro",
  5483. height: math.unit(6e8, "lightyears")
  5484. },
  5485. ]
  5486. ))
  5487. characterMakers.push(() => makeCharacter(
  5488. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5489. {
  5490. front: {
  5491. height: math.unit(5, "meters"),
  5492. weight: math.unit(1000, "kg"),
  5493. name: "Front",
  5494. image: {
  5495. source: "./media/characters/asche/front.svg",
  5496. extra: 1258 / 1190,
  5497. bottom: 47 / 1305
  5498. }
  5499. },
  5500. frontUnderwear: {
  5501. height: math.unit(5, "meters"),
  5502. weight: math.unit(1000, "kg"),
  5503. name: "Front (Underwear)",
  5504. image: {
  5505. source: "./media/characters/asche/front-underwear.svg",
  5506. extra: 1258 / 1190,
  5507. bottom: 47 / 1305
  5508. }
  5509. },
  5510. frontDressed: {
  5511. height: math.unit(5, "meters"),
  5512. weight: math.unit(1000, "kg"),
  5513. name: "Front (Dressed)",
  5514. image: {
  5515. source: "./media/characters/asche/front-dressed.svg",
  5516. extra: 1258 / 1190,
  5517. bottom: 47 / 1305
  5518. }
  5519. },
  5520. frontArmor: {
  5521. height: math.unit(5, "meters"),
  5522. weight: math.unit(1000, "kg"),
  5523. name: "Front (Armored)",
  5524. image: {
  5525. source: "./media/characters/asche/front-armored.svg",
  5526. extra: 1374 / 1308,
  5527. bottom: 23 / 1397
  5528. }
  5529. },
  5530. mp724: {
  5531. height: math.unit(0.96, "meters"),
  5532. weight: math.unit(38, "kg"),
  5533. name: "H&K MP724",
  5534. image: {
  5535. source: "./media/characters/asche/h&k-mp724.svg"
  5536. }
  5537. },
  5538. side: {
  5539. height: math.unit(5, "meters"),
  5540. weight: math.unit(1000, "kg"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/asche/side.svg",
  5544. extra: 1717 / 1609,
  5545. bottom: 0.005
  5546. }
  5547. },
  5548. back: {
  5549. height: math.unit(5, "meters"),
  5550. weight: math.unit(1000, "kg"),
  5551. name: "Back",
  5552. image: {
  5553. source: "./media/characters/asche/back.svg",
  5554. extra: 1570 / 1501
  5555. }
  5556. },
  5557. },
  5558. [
  5559. {
  5560. name: "DEFCON 5",
  5561. height: math.unit(5, "meters")
  5562. },
  5563. {
  5564. name: "DEFCON 4",
  5565. height: math.unit(500, "meters"),
  5566. default: true
  5567. },
  5568. {
  5569. name: "DEFCON 3",
  5570. height: math.unit(5, "km")
  5571. },
  5572. {
  5573. name: "DEFCON 2",
  5574. height: math.unit(500, "km")
  5575. },
  5576. {
  5577. name: "DEFCON 1",
  5578. height: math.unit(500000, "km")
  5579. },
  5580. {
  5581. name: "DEFCON 0",
  5582. height: math.unit(3, "gigaparsecs")
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5588. {
  5589. front: {
  5590. height: math.unit(7, "feet"),
  5591. weight: math.unit(92.7, "kg"),
  5592. name: "Front",
  5593. image: {
  5594. source: "./media/characters/gale/front.svg",
  5595. extra: 977/919,
  5596. bottom: 105/1082
  5597. }
  5598. },
  5599. side: {
  5600. height: math.unit(6.7, "feet"),
  5601. weight: math.unit(92.7, "kg"),
  5602. name: "Side",
  5603. image: {
  5604. source: "./media/characters/gale/side.svg",
  5605. extra: 978/922,
  5606. bottom: 140/1118
  5607. }
  5608. },
  5609. back: {
  5610. height: math.unit(7, "feet"),
  5611. weight: math.unit(92.7, "kg"),
  5612. name: "Back",
  5613. image: {
  5614. source: "./media/characters/gale/back.svg",
  5615. extra: 966/920,
  5616. bottom: 61/1027
  5617. }
  5618. },
  5619. maw: {
  5620. height: math.unit(2.23, "feet"),
  5621. name: "Maw",
  5622. image: {
  5623. source: "./media/characters/gale/maw.svg"
  5624. }
  5625. },
  5626. foot: {
  5627. height: math.unit(2.1, "feet"),
  5628. name: "Foot",
  5629. image: {
  5630. source: "./media/characters/gale/foot.svg"
  5631. }
  5632. },
  5633. },
  5634. [
  5635. {
  5636. name: "Normal",
  5637. height: math.unit(7, "feet")
  5638. },
  5639. {
  5640. name: "Macro",
  5641. height: math.unit(150, "feet"),
  5642. default: true
  5643. },
  5644. {
  5645. name: "Macro+",
  5646. height: math.unit(300, "feet")
  5647. },
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5652. {
  5653. front: {
  5654. height: math.unit(5 + 10/12, "feet"),
  5655. weight: math.unit(67, "kg"),
  5656. name: "Front",
  5657. image: {
  5658. source: "./media/characters/draylen/front.svg",
  5659. extra: 832/777,
  5660. bottom: 85/917
  5661. }
  5662. }
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(5 + 10/12, "feet")
  5668. },
  5669. {
  5670. name: "Macro",
  5671. height: math.unit(150, "feet"),
  5672. default: true
  5673. }
  5674. ]
  5675. ))
  5676. characterMakers.push(() => makeCharacter(
  5677. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5678. {
  5679. front: {
  5680. height: math.unit(7 + 9 / 12, "feet"),
  5681. weight: math.unit(379, "lbs"),
  5682. name: "Front",
  5683. image: {
  5684. source: "./media/characters/chez/front.svg"
  5685. }
  5686. },
  5687. side: {
  5688. height: math.unit(7 + 9 / 12, "feet"),
  5689. weight: math.unit(379, "lbs"),
  5690. name: "Side",
  5691. image: {
  5692. source: "./media/characters/chez/side.svg"
  5693. }
  5694. }
  5695. },
  5696. [
  5697. {
  5698. name: "Normal",
  5699. height: math.unit(7 + 9 / 12, "feet"),
  5700. default: true
  5701. },
  5702. {
  5703. name: "God King",
  5704. height: math.unit(9750000, "meters")
  5705. }
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5710. {
  5711. front: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(275, "lbs"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/kaylum/front.svg",
  5717. bottom: 0.01,
  5718. extra: 1166 / 1031
  5719. }
  5720. },
  5721. frontWingless: {
  5722. height: math.unit(6, "feet"),
  5723. weight: math.unit(275, "lbs"),
  5724. name: "Front (Wingless)",
  5725. image: {
  5726. source: "./media/characters/kaylum/front-wingless.svg",
  5727. bottom: 0.01,
  5728. extra: 1117 / 1031
  5729. }
  5730. }
  5731. },
  5732. [
  5733. {
  5734. name: "Normal",
  5735. height: math.unit(3.05, "meters")
  5736. },
  5737. {
  5738. name: "Master",
  5739. height: math.unit(5.5, "meters")
  5740. },
  5741. {
  5742. name: "Rampage",
  5743. height: math.unit(19, "meters")
  5744. },
  5745. {
  5746. name: "Macro Lite",
  5747. height: math.unit(37, "meters")
  5748. },
  5749. {
  5750. name: "Hyper Predator",
  5751. height: math.unit(61, "meters")
  5752. },
  5753. {
  5754. name: "Macro",
  5755. height: math.unit(138, "meters"),
  5756. default: true
  5757. }
  5758. ]
  5759. ))
  5760. characterMakers.push(() => makeCharacter(
  5761. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5762. {
  5763. front: {
  5764. height: math.unit(5 + 5 / 12, "feet"),
  5765. weight: math.unit(120, "lbs"),
  5766. name: "Front",
  5767. image: {
  5768. source: "./media/characters/geta/front.svg",
  5769. extra: 1003/933,
  5770. bottom: 21/1024
  5771. }
  5772. },
  5773. paw: {
  5774. height: math.unit(0.35, "feet"),
  5775. name: "Paw",
  5776. image: {
  5777. source: "./media/characters/geta/paw.svg"
  5778. }
  5779. },
  5780. },
  5781. [
  5782. {
  5783. name: "Micro",
  5784. height: math.unit(3, "inches"),
  5785. default: true
  5786. },
  5787. {
  5788. name: "Normal",
  5789. height: math.unit(5 + 5 / 12, "feet")
  5790. }
  5791. ]
  5792. ))
  5793. characterMakers.push(() => makeCharacter(
  5794. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5795. {
  5796. front: {
  5797. height: math.unit(6, "feet"),
  5798. weight: math.unit(300, "lbs"),
  5799. name: "Front",
  5800. image: {
  5801. source: "./media/characters/tyrnn/front.svg"
  5802. }
  5803. }
  5804. },
  5805. [
  5806. {
  5807. name: "Main Height",
  5808. height: math.unit(355, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Fave. Height",
  5813. height: math.unit(2400, "feet")
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(300, "lbs"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/appledectomy/front.svg"
  5826. }
  5827. }
  5828. },
  5829. [
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(2500, "feet")
  5833. },
  5834. {
  5835. name: "Megamacro",
  5836. height: math.unit(50, "miles"),
  5837. default: true
  5838. },
  5839. {
  5840. name: "Gigamacro",
  5841. height: math.unit(5000, "miles")
  5842. },
  5843. {
  5844. name: "Teramacro",
  5845. height: math.unit(250000, "miles")
  5846. },
  5847. ]
  5848. ))
  5849. characterMakers.push(() => makeCharacter(
  5850. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5851. {
  5852. front: {
  5853. height: math.unit(6, "feet"),
  5854. weight: math.unit(200, "lbs"),
  5855. name: "Front",
  5856. image: {
  5857. source: "./media/characters/vulpes/front.svg",
  5858. extra: 573 / 543,
  5859. bottom: 0.033
  5860. }
  5861. },
  5862. side: {
  5863. height: math.unit(6, "feet"),
  5864. weight: math.unit(200, "lbs"),
  5865. name: "Side",
  5866. image: {
  5867. source: "./media/characters/vulpes/side.svg",
  5868. extra: 577 / 549,
  5869. bottom: 11 / 588
  5870. }
  5871. },
  5872. back: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(200, "lbs"),
  5875. name: "Back",
  5876. image: {
  5877. source: "./media/characters/vulpes/back.svg",
  5878. extra: 573 / 549,
  5879. bottom: 20 / 593
  5880. }
  5881. },
  5882. feet: {
  5883. height: math.unit(1.276, "feet"),
  5884. name: "Feet",
  5885. image: {
  5886. source: "./media/characters/vulpes/feet.svg"
  5887. }
  5888. },
  5889. maw: {
  5890. height: math.unit(1.18, "feet"),
  5891. name: "Maw",
  5892. image: {
  5893. source: "./media/characters/vulpes/maw.svg"
  5894. }
  5895. },
  5896. },
  5897. [
  5898. {
  5899. name: "Micro",
  5900. height: math.unit(2, "inches")
  5901. },
  5902. {
  5903. name: "Normal",
  5904. height: math.unit(6.3, "feet")
  5905. },
  5906. {
  5907. name: "Macro",
  5908. height: math.unit(850, "feet")
  5909. },
  5910. {
  5911. name: "Megamacro",
  5912. height: math.unit(7500, "feet"),
  5913. default: true
  5914. },
  5915. {
  5916. name: "Gigamacro",
  5917. height: math.unit(570000, "miles")
  5918. }
  5919. ]
  5920. ))
  5921. characterMakers.push(() => makeCharacter(
  5922. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5923. {
  5924. front: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(210, "lbs"),
  5927. name: "Front",
  5928. image: {
  5929. source: "./media/characters/rain-fallen/front.svg"
  5930. }
  5931. },
  5932. side: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(210, "lbs"),
  5935. name: "Side",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/side.svg"
  5938. }
  5939. },
  5940. back: {
  5941. height: math.unit(6, "feet"),
  5942. weight: math.unit(210, "lbs"),
  5943. name: "Back",
  5944. image: {
  5945. source: "./media/characters/rain-fallen/back.svg"
  5946. }
  5947. },
  5948. feral: {
  5949. height: math.unit(9, "feet"),
  5950. weight: math.unit(700, "lbs"),
  5951. name: "Feral",
  5952. image: {
  5953. source: "./media/characters/rain-fallen/feral.svg"
  5954. }
  5955. },
  5956. },
  5957. [
  5958. {
  5959. name: "Meddling with Mortals",
  5960. height: math.unit(8 + 8/12, "feet")
  5961. },
  5962. {
  5963. name: "Normal",
  5964. height: math.unit(5, "meter")
  5965. },
  5966. {
  5967. name: "Macro",
  5968. height: math.unit(150, "meter"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Megamacro",
  5973. height: math.unit(278e6, "meter")
  5974. },
  5975. {
  5976. name: "Gigamacro",
  5977. height: math.unit(2e9, "meter")
  5978. },
  5979. {
  5980. name: "Teramacro",
  5981. height: math.unit(8e12, "meter")
  5982. },
  5983. {
  5984. name: "Devourer",
  5985. height: math.unit(14, "zettameters")
  5986. },
  5987. {
  5988. name: "Scarlet King",
  5989. height: math.unit(18, "yottameters")
  5990. },
  5991. {
  5992. name: "Void",
  5993. height: math.unit(1e88, "yottameters")
  5994. }
  5995. ]
  5996. ))
  5997. characterMakers.push(() => makeCharacter(
  5998. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5999. {
  6000. standing: {
  6001. height: math.unit(6, "feet"),
  6002. weight: math.unit(180, "lbs"),
  6003. name: "Standing",
  6004. image: {
  6005. source: "./media/characters/zaakira/standing.svg",
  6006. extra: 1599/1504,
  6007. bottom: 39/1638
  6008. }
  6009. },
  6010. laying: {
  6011. height: math.unit(3.3, "feet"),
  6012. weight: math.unit(180, "lbs"),
  6013. name: "Laying",
  6014. image: {
  6015. source: "./media/characters/zaakira/laying.svg"
  6016. }
  6017. },
  6018. },
  6019. [
  6020. {
  6021. name: "Normal",
  6022. height: math.unit(12, "feet")
  6023. },
  6024. {
  6025. name: "Macro",
  6026. height: math.unit(279, "feet"),
  6027. default: true
  6028. }
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6033. {
  6034. femSfw: {
  6035. height: math.unit(8, "feet"),
  6036. weight: math.unit(350, "lb"),
  6037. name: "Fem",
  6038. image: {
  6039. source: "./media/characters/sigvald/fem-sfw.svg",
  6040. extra: 182 / 164,
  6041. bottom: 8.7 / 190.5
  6042. }
  6043. },
  6044. femNsfw: {
  6045. height: math.unit(8, "feet"),
  6046. weight: math.unit(350, "lb"),
  6047. name: "Fem (NSFW)",
  6048. image: {
  6049. source: "./media/characters/sigvald/fem-nsfw.svg",
  6050. extra: 182 / 164,
  6051. bottom: 8.7 / 190.5
  6052. }
  6053. },
  6054. maleNsfw: {
  6055. height: math.unit(8, "feet"),
  6056. weight: math.unit(350, "lb"),
  6057. name: "Male (NSFW)",
  6058. image: {
  6059. source: "./media/characters/sigvald/male-nsfw.svg",
  6060. extra: 182 / 164,
  6061. bottom: 8.7 / 190.5
  6062. }
  6063. },
  6064. hermNsfw: {
  6065. height: math.unit(8, "feet"),
  6066. weight: math.unit(350, "lb"),
  6067. name: "Herm (NSFW)",
  6068. image: {
  6069. source: "./media/characters/sigvald/herm-nsfw.svg",
  6070. extra: 182 / 164,
  6071. bottom: 8.7 / 190.5
  6072. }
  6073. },
  6074. dick: {
  6075. height: math.unit(2.36, "feet"),
  6076. name: "Dick",
  6077. image: {
  6078. source: "./media/characters/sigvald/dick.svg"
  6079. }
  6080. },
  6081. eye: {
  6082. height: math.unit(0.31, "feet"),
  6083. name: "Eye",
  6084. image: {
  6085. source: "./media/characters/sigvald/eye.svg"
  6086. }
  6087. },
  6088. mouth: {
  6089. height: math.unit(0.92, "feet"),
  6090. name: "Mouth",
  6091. image: {
  6092. source: "./media/characters/sigvald/mouth.svg"
  6093. }
  6094. },
  6095. paws: {
  6096. height: math.unit(2.2, "feet"),
  6097. name: "Paws",
  6098. image: {
  6099. source: "./media/characters/sigvald/paws.svg"
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(8, "feet")
  6107. },
  6108. {
  6109. name: "Large",
  6110. height: math.unit(12, "feet")
  6111. },
  6112. {
  6113. name: "Larger",
  6114. height: math.unit(20, "feet")
  6115. },
  6116. {
  6117. name: "Macro",
  6118. height: math.unit(150, "feet")
  6119. },
  6120. {
  6121. name: "Macro+",
  6122. height: math.unit(200, "feet"),
  6123. default: true
  6124. },
  6125. ]
  6126. ))
  6127. characterMakers.push(() => makeCharacter(
  6128. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6129. {
  6130. side: {
  6131. height: math.unit(12, "feet"),
  6132. weight: math.unit(2000, "kg"),
  6133. name: "Side",
  6134. image: {
  6135. source: "./media/characters/scott/side.svg",
  6136. extra: 754 / 724,
  6137. bottom: 0.069
  6138. }
  6139. },
  6140. upright: {
  6141. height: math.unit(12, "feet"),
  6142. weight: math.unit(2000, "kg"),
  6143. name: "Upright",
  6144. image: {
  6145. source: "./media/characters/scott/upright.svg",
  6146. extra: 3881 / 3722,
  6147. bottom: 0.05
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(12, "feet"),
  6155. default: true
  6156. },
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6161. {
  6162. side: {
  6163. height: math.unit(8, "meters"),
  6164. weight: math.unit(84755, "lbs"),
  6165. name: "Side",
  6166. image: {
  6167. source: "./media/characters/tobias/side.svg",
  6168. extra: 1474 / 1096,
  6169. bottom: 38.9 / 1513.1235
  6170. }
  6171. },
  6172. maw: {
  6173. height: math.unit(2.3, "meters"),
  6174. name: "Maw",
  6175. image: {
  6176. source: "./media/characters/tobias/maw.svg"
  6177. }
  6178. },
  6179. burp: {
  6180. height: math.unit(2.85, "meters"),
  6181. name: "Burp",
  6182. image: {
  6183. source: "./media/characters/tobias/burp.svg"
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(8, "meters"),
  6191. default: true
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6197. {
  6198. front: {
  6199. height: math.unit(5.5, "feet"),
  6200. weight: math.unit(400, "lbs"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/kieran/front.svg",
  6204. extra: 2694 / 2364,
  6205. bottom: 217 / 2908
  6206. }
  6207. },
  6208. side: {
  6209. height: math.unit(5.5, "feet"),
  6210. weight: math.unit(400, "lbs"),
  6211. name: "Side",
  6212. image: {
  6213. source: "./media/characters/kieran/side.svg",
  6214. extra: 875 / 777,
  6215. bottom: 84.6 / 959
  6216. }
  6217. },
  6218. },
  6219. [
  6220. {
  6221. name: "Normal",
  6222. height: math.unit(5.5, "feet"),
  6223. default: true
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6229. {
  6230. side: {
  6231. height: math.unit(2, "meters"),
  6232. weight: math.unit(70, "kg"),
  6233. name: "Side",
  6234. image: {
  6235. source: "./media/characters/sanya/side.svg",
  6236. bottom: 0.02,
  6237. extra: 1.02
  6238. }
  6239. },
  6240. },
  6241. [
  6242. {
  6243. name: "Small",
  6244. height: math.unit(2, "meters")
  6245. },
  6246. {
  6247. name: "Normal",
  6248. height: math.unit(3, "meters")
  6249. },
  6250. {
  6251. name: "Macro",
  6252. height: math.unit(16, "meters"),
  6253. default: true
  6254. },
  6255. ]
  6256. ))
  6257. characterMakers.push(() => makeCharacter(
  6258. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6259. {
  6260. front: {
  6261. height: math.unit(2, "meters"),
  6262. weight: math.unit(120, "kg"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/miranda/front.svg",
  6266. extra: 195 / 185,
  6267. bottom: 10.9 / 206.5
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(2, "meters"),
  6272. weight: math.unit(120, "kg"),
  6273. name: "Back",
  6274. image: {
  6275. source: "./media/characters/miranda/back.svg",
  6276. extra: 201 / 193,
  6277. bottom: 2.3 / 203.7
  6278. }
  6279. },
  6280. },
  6281. [
  6282. {
  6283. name: "Normal",
  6284. height: math.unit(10, "feet"),
  6285. default: true
  6286. }
  6287. ]
  6288. ))
  6289. characterMakers.push(() => makeCharacter(
  6290. { name: "James", species: ["deer"], tags: ["anthro"] },
  6291. {
  6292. side: {
  6293. height: math.unit(2, "meters"),
  6294. weight: math.unit(100, "kg"),
  6295. name: "Front",
  6296. image: {
  6297. source: "./media/characters/james/front.svg",
  6298. extra: 10 / 8.5
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(8.5, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6312. {
  6313. side: {
  6314. height: math.unit(9.5, "feet"),
  6315. weight: math.unit(2500, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/heather/side.svg"
  6319. }
  6320. },
  6321. },
  6322. [
  6323. {
  6324. name: "Normal",
  6325. height: math.unit(9.5, "feet"),
  6326. default: true
  6327. }
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6332. {
  6333. side: {
  6334. height: math.unit(6.5, "feet"),
  6335. weight: math.unit(400, "lbs"),
  6336. name: "Side",
  6337. image: {
  6338. source: "./media/characters/lukas/side.svg",
  6339. extra: 7.25 / 6.5
  6340. }
  6341. },
  6342. },
  6343. [
  6344. {
  6345. name: "Normal",
  6346. height: math.unit(6.5, "feet"),
  6347. default: true
  6348. }
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6353. {
  6354. side: {
  6355. height: math.unit(5, "feet"),
  6356. weight: math.unit(3000, "lbs"),
  6357. name: "Side",
  6358. image: {
  6359. source: "./media/characters/louise/side.svg"
  6360. }
  6361. },
  6362. },
  6363. [
  6364. {
  6365. name: "Normal",
  6366. height: math.unit(5, "feet"),
  6367. default: true
  6368. }
  6369. ]
  6370. ))
  6371. characterMakers.push(() => makeCharacter(
  6372. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6373. {
  6374. side: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(150, "lbs"),
  6377. name: "Side",
  6378. image: {
  6379. source: "./media/characters/ramona/side.svg",
  6380. extra: 871/854,
  6381. bottom: 41/912
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(6 + 4/12, "feet")
  6389. },
  6390. {
  6391. name: "Minimacro",
  6392. height: math.unit(5.3, "meters"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(20, "stories")
  6398. },
  6399. {
  6400. name: "Macro+",
  6401. height: math.unit(50, "stories")
  6402. },
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6407. {
  6408. standing: {
  6409. height: math.unit(5.75, "feet"),
  6410. weight: math.unit(160, "lbs"),
  6411. name: "Standing",
  6412. image: {
  6413. source: "./media/characters/deerpuff/standing.svg",
  6414. extra: 682 / 624
  6415. }
  6416. },
  6417. sitting: {
  6418. height: math.unit(5.75 / 1.79, "feet"),
  6419. weight: math.unit(160, "lbs"),
  6420. name: "Sitting",
  6421. image: {
  6422. source: "./media/characters/deerpuff/sitting.svg",
  6423. bottom: 44 / 400,
  6424. extra: 1
  6425. }
  6426. },
  6427. taurLaying: {
  6428. height: math.unit(6, "feet"),
  6429. weight: math.unit(400, "lbs"),
  6430. name: "Taur (Laying)",
  6431. image: {
  6432. source: "./media/characters/deerpuff/taur-laying.svg"
  6433. }
  6434. },
  6435. },
  6436. [
  6437. {
  6438. name: "Puffball",
  6439. height: math.unit(6, "inches")
  6440. },
  6441. {
  6442. name: "Normalpuff",
  6443. height: math.unit(5.75, "feet")
  6444. },
  6445. {
  6446. name: "Macropuff",
  6447. height: math.unit(1500, "feet"),
  6448. default: true
  6449. },
  6450. {
  6451. name: "Megapuff",
  6452. height: math.unit(500, "miles")
  6453. },
  6454. {
  6455. name: "Gigapuff",
  6456. height: math.unit(250000, "miles")
  6457. },
  6458. {
  6459. name: "Omegapuff",
  6460. height: math.unit(1000, "lightyears")
  6461. },
  6462. ]
  6463. ))
  6464. characterMakers.push(() => makeCharacter(
  6465. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6466. {
  6467. stomping: {
  6468. height: math.unit(6, "feet"),
  6469. weight: math.unit(170, "lbs"),
  6470. name: "Stomping",
  6471. image: {
  6472. source: "./media/characters/vivian/stomping.svg"
  6473. }
  6474. },
  6475. sitting: {
  6476. height: math.unit(6 / 1.75, "feet"),
  6477. weight: math.unit(170, "lbs"),
  6478. name: "Sitting",
  6479. image: {
  6480. source: "./media/characters/vivian/sitting.svg",
  6481. bottom: 1 / 6.4,
  6482. extra: 1,
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Normal",
  6489. height: math.unit(7, "feet"),
  6490. default: true
  6491. },
  6492. {
  6493. name: "Macro",
  6494. height: math.unit(10, "stories")
  6495. },
  6496. {
  6497. name: "Macro+",
  6498. height: math.unit(30, "stories")
  6499. },
  6500. {
  6501. name: "Megamacro",
  6502. height: math.unit(10, "miles")
  6503. },
  6504. {
  6505. name: "Megamacro+",
  6506. height: math.unit(2750000, "meters")
  6507. },
  6508. ]
  6509. ))
  6510. characterMakers.push(() => makeCharacter(
  6511. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6512. {
  6513. front: {
  6514. height: math.unit(6, "feet"),
  6515. weight: math.unit(160, "lbs"),
  6516. name: "Front",
  6517. image: {
  6518. source: "./media/characters/prince/front.svg",
  6519. extra: 1938/1682,
  6520. bottom: 45/1983
  6521. }
  6522. },
  6523. back: {
  6524. height: math.unit(6, "feet"),
  6525. weight: math.unit(160, "lbs"),
  6526. name: "Back",
  6527. image: {
  6528. source: "./media/characters/prince/back.svg",
  6529. extra: 1955/1726,
  6530. bottom: 6/1961
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(7.75, "feet"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Not cute",
  6542. height: math.unit(17, "feet")
  6543. },
  6544. {
  6545. name: "I said NOT",
  6546. height: math.unit(91, "feet")
  6547. },
  6548. {
  6549. name: "Please stop",
  6550. height: math.unit(560, "feet")
  6551. },
  6552. {
  6553. name: "What have you done",
  6554. height: math.unit(2200, "feet")
  6555. },
  6556. {
  6557. name: "Deer God",
  6558. height: math.unit(3.6, "miles")
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6564. {
  6565. standing: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(300, "lbs"),
  6568. name: "Standing",
  6569. image: {
  6570. source: "./media/characters/psymon/standing.svg",
  6571. extra: 1888 / 1810,
  6572. bottom: 0.05
  6573. }
  6574. },
  6575. slithering: {
  6576. height: math.unit(6, "feet"),
  6577. weight: math.unit(300, "lbs"),
  6578. name: "Slithering",
  6579. image: {
  6580. source: "./media/characters/psymon/slithering.svg",
  6581. extra: 1330 / 1224
  6582. }
  6583. },
  6584. slitheringAlt: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(300, "lbs"),
  6587. name: "Slithering (Alt)",
  6588. image: {
  6589. source: "./media/characters/psymon/slithering-alt.svg",
  6590. extra: 1330 / 1224
  6591. }
  6592. },
  6593. },
  6594. [
  6595. {
  6596. name: "Normal",
  6597. height: math.unit(11.25, "feet"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Large",
  6602. height: math.unit(27, "feet")
  6603. },
  6604. {
  6605. name: "Giant",
  6606. height: math.unit(87, "feet")
  6607. },
  6608. {
  6609. name: "Macro",
  6610. height: math.unit(365, "feet")
  6611. },
  6612. {
  6613. name: "Megamacro",
  6614. height: math.unit(3, "miles")
  6615. },
  6616. {
  6617. name: "World Serpent",
  6618. height: math.unit(8000, "miles")
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6624. {
  6625. front: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(180, "lbs"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/daimos/front.svg",
  6631. extra: 4160 / 3897,
  6632. bottom: 0.021
  6633. }
  6634. }
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(8, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Big Dog",
  6644. height: math.unit(22, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(127, "feet")
  6649. },
  6650. {
  6651. name: "Megamacro",
  6652. height: math.unit(3600, "feet")
  6653. },
  6654. ]
  6655. ))
  6656. characterMakers.push(() => makeCharacter(
  6657. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6658. {
  6659. side: {
  6660. height: math.unit(6, "feet"),
  6661. weight: math.unit(180, "lbs"),
  6662. name: "Side",
  6663. image: {
  6664. source: "./media/characters/blake/side.svg",
  6665. extra: 1212 / 1120,
  6666. bottom: 0.05
  6667. }
  6668. },
  6669. crouched: {
  6670. height: math.unit(6 * 0.57, "feet"),
  6671. weight: math.unit(180, "lbs"),
  6672. name: "Crouched",
  6673. image: {
  6674. source: "./media/characters/blake/crouched.svg",
  6675. extra: 840 / 587,
  6676. bottom: 0.04
  6677. }
  6678. },
  6679. bent: {
  6680. height: math.unit(6 * 0.75, "feet"),
  6681. weight: math.unit(180, "lbs"),
  6682. name: "Bent",
  6683. image: {
  6684. source: "./media/characters/blake/bent.svg",
  6685. extra: 592 / 544,
  6686. bottom: 0.035
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(8 + 1 / 6, "feet"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Big Backside",
  6698. height: math.unit(37, "feet")
  6699. },
  6700. {
  6701. name: "Subway Shredder",
  6702. height: math.unit(72, "feet")
  6703. },
  6704. {
  6705. name: "City Carver",
  6706. height: math.unit(1675, "feet")
  6707. },
  6708. {
  6709. name: "Tectonic Tweaker",
  6710. height: math.unit(2300, "miles")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/guisetto/front.svg",
  6723. extra: 856 / 817,
  6724. bottom: 0.06
  6725. }
  6726. },
  6727. airborne: {
  6728. height: math.unit(6, "feet"),
  6729. weight: math.unit(180, "lbs"),
  6730. name: "Airborne",
  6731. image: {
  6732. source: "./media/characters/guisetto/airborne.svg",
  6733. extra: 584 / 525
  6734. }
  6735. },
  6736. },
  6737. [
  6738. {
  6739. name: "Normal",
  6740. height: math.unit(10 + 11 / 12, "feet"),
  6741. default: true
  6742. },
  6743. {
  6744. name: "Large",
  6745. height: math.unit(35, "feet")
  6746. },
  6747. {
  6748. name: "Macro",
  6749. height: math.unit(475, "feet")
  6750. },
  6751. ]
  6752. ))
  6753. characterMakers.push(() => makeCharacter(
  6754. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6755. {
  6756. front: {
  6757. height: math.unit(6, "feet"),
  6758. weight: math.unit(180, "lbs"),
  6759. name: "Front",
  6760. image: {
  6761. source: "./media/characters/luxor/front.svg",
  6762. extra: 2940 / 2152
  6763. }
  6764. },
  6765. back: {
  6766. height: math.unit(6, "feet"),
  6767. weight: math.unit(180, "lbs"),
  6768. name: "Back",
  6769. image: {
  6770. source: "./media/characters/luxor/back.svg",
  6771. extra: 1083 / 960
  6772. }
  6773. },
  6774. },
  6775. [
  6776. {
  6777. name: "Normal",
  6778. height: math.unit(5 + 5 / 6, "feet"),
  6779. default: true
  6780. },
  6781. {
  6782. name: "Lamp",
  6783. height: math.unit(50, "feet")
  6784. },
  6785. {
  6786. name: "Lämp",
  6787. height: math.unit(300, "feet")
  6788. },
  6789. {
  6790. name: "The sun is a lamp",
  6791. height: math.unit(250000, "miles")
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6797. {
  6798. front: {
  6799. height: math.unit(6, "feet"),
  6800. weight: math.unit(50, "lbs"),
  6801. name: "Front",
  6802. image: {
  6803. source: "./media/characters/huoyan/front.svg"
  6804. }
  6805. },
  6806. side: {
  6807. height: math.unit(6, "feet"),
  6808. weight: math.unit(180, "lbs"),
  6809. name: "Side",
  6810. image: {
  6811. source: "./media/characters/huoyan/side.svg"
  6812. }
  6813. },
  6814. },
  6815. [
  6816. {
  6817. name: "Chef",
  6818. height: math.unit(9, "feet")
  6819. },
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(65, "feet"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(780, "feet")
  6828. },
  6829. {
  6830. name: "Flaming Mountain",
  6831. height: math.unit(4.8, "miles")
  6832. },
  6833. {
  6834. name: "Celestial",
  6835. height: math.unit(765000, "miles")
  6836. },
  6837. ]
  6838. ))
  6839. characterMakers.push(() => makeCharacter(
  6840. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6841. {
  6842. front: {
  6843. height: math.unit(5 + 3 / 4, "feet"),
  6844. weight: math.unit(120, "lbs"),
  6845. name: "Front",
  6846. image: {
  6847. source: "./media/characters/tails/front.svg"
  6848. }
  6849. }
  6850. },
  6851. [
  6852. {
  6853. name: "Normal",
  6854. height: math.unit(5 + 3 / 4, "feet"),
  6855. default: true
  6856. }
  6857. ]
  6858. ))
  6859. characterMakers.push(() => makeCharacter(
  6860. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6861. {
  6862. front: {
  6863. height: math.unit(4, "feet"),
  6864. weight: math.unit(50, "lbs"),
  6865. name: "Front",
  6866. image: {
  6867. source: "./media/characters/rainy/front.svg"
  6868. }
  6869. }
  6870. },
  6871. [
  6872. {
  6873. name: "Macro",
  6874. height: math.unit(800, "feet"),
  6875. default: true
  6876. }
  6877. ]
  6878. ))
  6879. characterMakers.push(() => makeCharacter(
  6880. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6881. {
  6882. front: {
  6883. height: math.unit(6, "feet"),
  6884. weight: math.unit(150, "lbs"),
  6885. name: "Front",
  6886. image: {
  6887. source: "./media/characters/rainier/front.svg"
  6888. }
  6889. }
  6890. },
  6891. [
  6892. {
  6893. name: "Micro",
  6894. height: math.unit(2, "mm"),
  6895. default: true
  6896. }
  6897. ]
  6898. ))
  6899. characterMakers.push(() => makeCharacter(
  6900. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6901. {
  6902. front: {
  6903. height: math.unit(8 + 4/12, "feet"),
  6904. weight: math.unit(450, "kilograms"),
  6905. name: "Front",
  6906. image: {
  6907. source: "./media/characters/andy-renard/front.svg",
  6908. extra: 862/809,
  6909. bottom: 85/947
  6910. },
  6911. extraAttributes: {
  6912. "pawSize": {
  6913. name: "Paw Size",
  6914. power: 2,
  6915. type: "area",
  6916. base: math.unit(0.45*0.3, "meters^2")
  6917. },
  6918. "handSize": {
  6919. name: "Hand Size",
  6920. power: 2,
  6921. type: "area",
  6922. base: math.unit(0.4 * 0.3, "meters^2")
  6923. },
  6924. "cockSize": {
  6925. name: "Cock Length",
  6926. power: 1,
  6927. type: "length",
  6928. base: math.unit(0.75, "meters")
  6929. },
  6930. "ballDiameter": {
  6931. name: "Ball Diameter",
  6932. power: 1,
  6933. type: "length",
  6934. base: math.unit(0.3, "meters")
  6935. },
  6936. "ballVolume": {
  6937. name: "Ball Volume",
  6938. power: 3,
  6939. type: "volume",
  6940. base: math.unit(0.01413716694, "meters^3")
  6941. },
  6942. }
  6943. },
  6944. back: {
  6945. height: math.unit(8 + 4/12, "feet"),
  6946. weight: math.unit(450, "kilograms"),
  6947. name: "Back",
  6948. image: {
  6949. source: "./media/characters/andy-renard/back.svg",
  6950. extra: 1112/1033,
  6951. bottom: 64/1176
  6952. },
  6953. extraAttributes: {
  6954. "pawSize": {
  6955. name: "Paw Size",
  6956. power: 2,
  6957. type: "area",
  6958. base: math.unit(0.45*0.3, "meters^2")
  6959. },
  6960. "handSize": {
  6961. name: "Hand Size",
  6962. power: 2,
  6963. type: "area",
  6964. base: math.unit(0.4 * 0.3, "meters^2")
  6965. },
  6966. "cockSize": {
  6967. name: "Cock Length",
  6968. power: 1,
  6969. type: "length",
  6970. base: math.unit(0.75, "meters")
  6971. },
  6972. "ballDiameter": {
  6973. name: "Ball Diameter",
  6974. power: 1,
  6975. type: "length",
  6976. base: math.unit(0.3, "meters")
  6977. },
  6978. "ballVolume": {
  6979. name: "Ball Volume",
  6980. power: 3,
  6981. type: "volume",
  6982. base: math.unit(0.01413716694, "meters^3")
  6983. },
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Tall",
  6990. height: math.unit(6 + 8/12, "feet")
  6991. },
  6992. {
  6993. name: "Very Tall",
  6994. height: math.unit(8 + 4/12, "feet")
  6995. },
  6996. {
  6997. name: "Mini Macro",
  6998. height: math.unit(15, "feet"),
  6999. default: true
  7000. },
  7001. {
  7002. name: "Giant",
  7003. height: math.unit(50, "feet")
  7004. },
  7005. {
  7006. name: "Nice",
  7007. height: math.unit(69, "feet")
  7008. },
  7009. {
  7010. name: "Macro",
  7011. height: math.unit(100, "feet")
  7012. },
  7013. {
  7014. name: "Enormous",
  7015. height: math.unit(500, "feet")
  7016. },
  7017. {
  7018. name: "Gargantuan",
  7019. height: math.unit(1000, "feet")
  7020. },
  7021. {
  7022. name: "Mega",
  7023. height: math.unit(1, "mile")
  7024. },
  7025. {
  7026. name: "Giga",
  7027. height: math.unit(50, "miles")
  7028. },
  7029. {
  7030. name: "Tera",
  7031. height: math.unit(1000, "miles")
  7032. },
  7033. {
  7034. name: "Cosmic",
  7035. height: math.unit(1.5, "galaxies")
  7036. },
  7037. {
  7038. name: "God",
  7039. height: math.unit(1.5, "universes")
  7040. },
  7041. {
  7042. name: "Chief Execute God",
  7043. height: math.unit(1.5, "multiverses")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(210, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/cimmaron/front-sfw.svg",
  7056. extra: 701 / 676,
  7057. bottom: 0.046
  7058. }
  7059. },
  7060. back: {
  7061. height: math.unit(6, "feet"),
  7062. weight: math.unit(210, "lbs"),
  7063. name: "Back",
  7064. image: {
  7065. source: "./media/characters/cimmaron/back-sfw.svg",
  7066. extra: 701 / 676,
  7067. bottom: 0.046
  7068. }
  7069. },
  7070. frontNsfw: {
  7071. height: math.unit(6, "feet"),
  7072. weight: math.unit(210, "lbs"),
  7073. name: "Front (NSFW)",
  7074. image: {
  7075. source: "./media/characters/cimmaron/front-nsfw.svg",
  7076. extra: 701 / 676,
  7077. bottom: 0.046
  7078. }
  7079. },
  7080. backNsfw: {
  7081. height: math.unit(6, "feet"),
  7082. weight: math.unit(210, "lbs"),
  7083. name: "Back (NSFW)",
  7084. image: {
  7085. source: "./media/characters/cimmaron/back-nsfw.svg",
  7086. extra: 701 / 676,
  7087. bottom: 0.046
  7088. }
  7089. },
  7090. dick: {
  7091. height: math.unit(1.714, "feet"),
  7092. name: "Dick",
  7093. image: {
  7094. source: "./media/characters/cimmaron/dick.svg"
  7095. }
  7096. },
  7097. },
  7098. [
  7099. {
  7100. name: "Normal",
  7101. height: math.unit(6, "feet"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Macro Mayor",
  7106. height: math.unit(350, "meters")
  7107. },
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(200, "lbs"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/akari/front.svg",
  7119. extra: 962 / 901,
  7120. bottom: 0.04
  7121. }
  7122. }
  7123. },
  7124. [
  7125. {
  7126. name: "Micro",
  7127. height: math.unit(5, "inches"),
  7128. default: true
  7129. },
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(7, "feet")
  7133. },
  7134. ]
  7135. ))
  7136. characterMakers.push(() => makeCharacter(
  7137. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7138. {
  7139. front: {
  7140. height: math.unit(6, "feet"),
  7141. weight: math.unit(140, "lbs"),
  7142. name: "Front",
  7143. image: {
  7144. source: "./media/characters/cynosura/front.svg",
  7145. extra: 437/410,
  7146. bottom: 9/446
  7147. }
  7148. },
  7149. back: {
  7150. height: math.unit(6, "feet"),
  7151. weight: math.unit(140, "lbs"),
  7152. name: "Back",
  7153. image: {
  7154. source: "./media/characters/cynosura/back.svg",
  7155. extra: 1304/1160,
  7156. bottom: 71/1375
  7157. }
  7158. },
  7159. },
  7160. [
  7161. {
  7162. name: "Micro",
  7163. height: math.unit(4, "inches")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(5.75, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Tall",
  7172. height: math.unit(10, "feet")
  7173. },
  7174. {
  7175. name: "Big",
  7176. height: math.unit(20, "feet")
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(50, "feet")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(13 + 2/12, "feet"),
  7189. weight: math.unit(800, "kg"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/gin/front.svg",
  7193. extra: 1312/1191,
  7194. bottom: 45/1357
  7195. }
  7196. },
  7197. mouth: {
  7198. height: math.unit(2.39 * 1.8, "feet"),
  7199. name: "Mouth",
  7200. image: {
  7201. source: "./media/characters/gin/mouth.svg"
  7202. }
  7203. },
  7204. hand: {
  7205. height: math.unit(1.57 * 2.19, "feet"),
  7206. name: "Hand",
  7207. image: {
  7208. source: "./media/characters/gin/hand.svg"
  7209. }
  7210. },
  7211. foot: {
  7212. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7213. name: "Foot",
  7214. image: {
  7215. source: "./media/characters/gin/foot.svg"
  7216. }
  7217. },
  7218. sole: {
  7219. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7220. name: "Sole",
  7221. image: {
  7222. source: "./media/characters/gin/sole.svg"
  7223. }
  7224. },
  7225. },
  7226. [
  7227. {
  7228. name: "Very Small",
  7229. height: math.unit(13 + 2 / 12, "feet")
  7230. },
  7231. {
  7232. name: "Micro",
  7233. height: math.unit(600, "miles")
  7234. },
  7235. {
  7236. name: "Regular",
  7237. height: math.unit(20, "earths"),
  7238. default: true
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(2.2, "solarradii")
  7243. },
  7244. {
  7245. name: "Teramacro",
  7246. height: math.unit(1.2, "galaxies")
  7247. },
  7248. {
  7249. name: "Omegamacro",
  7250. height: math.unit(200, "universes")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(6 + 1 / 6, "feet"),
  7259. weight: math.unit(178, "lbs"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/guy/front.svg"
  7263. }
  7264. }
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(6 + 1 / 6, "feet"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Large",
  7274. height: math.unit(25 + 7 / 12, "feet")
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(60 + 9 / 12, "feet")
  7279. },
  7280. {
  7281. name: "Macro+",
  7282. height: math.unit(246, "feet")
  7283. },
  7284. {
  7285. name: "Macro++",
  7286. height: math.unit(878, "feet")
  7287. }
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(9, "feet"),
  7295. weight: math.unit(800, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/tiberius/front.svg",
  7299. extra: 2295 / 2071
  7300. }
  7301. },
  7302. back: {
  7303. height: math.unit(9, "feet"),
  7304. weight: math.unit(800, "lbs"),
  7305. name: "Back",
  7306. image: {
  7307. source: "./media/characters/tiberius/back.svg",
  7308. extra: 2373 / 2160
  7309. }
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(9, "feet"),
  7316. default: true
  7317. }
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7322. {
  7323. front: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(600, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/surgo/front.svg",
  7329. extra: 3591 / 2227
  7330. }
  7331. },
  7332. back: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(600, "lbs"),
  7335. name: "Back",
  7336. image: {
  7337. source: "./media/characters/surgo/back.svg",
  7338. extra: 3557 / 2228
  7339. }
  7340. },
  7341. laying: {
  7342. height: math.unit(6 * 0.85, "feet"),
  7343. weight: math.unit(600, "lbs"),
  7344. name: "Laying",
  7345. image: {
  7346. source: "./media/characters/surgo/laying.svg"
  7347. }
  7348. },
  7349. },
  7350. [
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(6, "feet"),
  7354. default: true
  7355. }
  7356. ]
  7357. ))
  7358. characterMakers.push(() => makeCharacter(
  7359. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7360. {
  7361. side: {
  7362. height: math.unit(6, "feet"),
  7363. weight: math.unit(150, "lbs"),
  7364. name: "Side",
  7365. image: {
  7366. source: "./media/characters/cibus/side.svg",
  7367. extra: 800 / 400
  7368. }
  7369. },
  7370. },
  7371. [
  7372. {
  7373. name: "Normal",
  7374. height: math.unit(6, "feet"),
  7375. default: true
  7376. }
  7377. ]
  7378. ))
  7379. characterMakers.push(() => makeCharacter(
  7380. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7381. {
  7382. front: {
  7383. height: math.unit(6, "feet"),
  7384. weight: math.unit(240, "lbs"),
  7385. name: "Front",
  7386. image: {
  7387. source: "./media/characters/nibbles/front.svg"
  7388. }
  7389. },
  7390. side: {
  7391. height: math.unit(6, "feet"),
  7392. weight: math.unit(240, "lbs"),
  7393. name: "Side",
  7394. image: {
  7395. source: "./media/characters/nibbles/side.svg"
  7396. }
  7397. },
  7398. },
  7399. [
  7400. {
  7401. name: "Normal",
  7402. height: math.unit(9, "feet"),
  7403. default: true
  7404. }
  7405. ]
  7406. ))
  7407. characterMakers.push(() => makeCharacter(
  7408. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7409. {
  7410. side: {
  7411. height: math.unit(5 + 1 / 6, "feet"),
  7412. weight: math.unit(130, "lbs"),
  7413. name: "Side",
  7414. image: {
  7415. source: "./media/characters/rikky/side.svg",
  7416. extra: 851 / 801
  7417. }
  7418. },
  7419. },
  7420. [
  7421. {
  7422. name: "Normal",
  7423. height: math.unit(5 + 1 / 6, "feet")
  7424. },
  7425. {
  7426. name: "Macro",
  7427. height: math.unit(152, "feet"),
  7428. default: true
  7429. },
  7430. {
  7431. name: "Megamacro",
  7432. height: math.unit(7, "miles")
  7433. }
  7434. ]
  7435. ))
  7436. characterMakers.push(() => makeCharacter(
  7437. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7438. {
  7439. side: {
  7440. height: math.unit(370, "cm"),
  7441. weight: math.unit(350, "lbs"),
  7442. name: "Side",
  7443. image: {
  7444. source: "./media/characters/malfressa/side.svg"
  7445. }
  7446. },
  7447. walking: {
  7448. height: math.unit(370, "cm"),
  7449. weight: math.unit(350, "lbs"),
  7450. name: "Walking",
  7451. image: {
  7452. source: "./media/characters/malfressa/walking.svg"
  7453. }
  7454. },
  7455. feral: {
  7456. height: math.unit(2500, "cm"),
  7457. weight: math.unit(100000, "lbs"),
  7458. name: "Feral",
  7459. image: {
  7460. source: "./media/characters/malfressa/feral.svg",
  7461. extra: 2108 / 837,
  7462. bottom: 0.02
  7463. }
  7464. },
  7465. },
  7466. [
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(370, "cm")
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(300, "meters"),
  7474. default: true
  7475. }
  7476. ]
  7477. ))
  7478. characterMakers.push(() => makeCharacter(
  7479. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7480. {
  7481. front: {
  7482. height: math.unit(6, "feet"),
  7483. weight: math.unit(60, "kg"),
  7484. name: "Front",
  7485. image: {
  7486. source: "./media/characters/jaro/front.svg",
  7487. extra: 845/817,
  7488. bottom: 45/890
  7489. }
  7490. },
  7491. back: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(60, "kg"),
  7494. name: "Back",
  7495. image: {
  7496. source: "./media/characters/jaro/back.svg",
  7497. extra: 847/817,
  7498. bottom: 34/881
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(7, "inches")
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(5.5, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Minimacro",
  7514. height: math.unit(20, "feet")
  7515. },
  7516. {
  7517. name: "Macro",
  7518. height: math.unit(200, "meters")
  7519. }
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(6, "feet"),
  7527. weight: math.unit(195, "lb"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/rogue/front.svg"
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Macro",
  7537. height: math.unit(90, "feet"),
  7538. default: true
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7544. {
  7545. standing: {
  7546. height: math.unit(5 + 8 / 12, "feet"),
  7547. weight: math.unit(140, "lb"),
  7548. name: "Standing",
  7549. image: {
  7550. source: "./media/characters/piper/standing.svg",
  7551. extra: 1440/1284,
  7552. bottom: 66/1506
  7553. }
  7554. },
  7555. running: {
  7556. height: math.unit(5 + 8 / 12, "feet"),
  7557. weight: math.unit(140, "lb"),
  7558. name: "Running",
  7559. image: {
  7560. source: "./media/characters/piper/running.svg",
  7561. extra: 3948/3655,
  7562. bottom: 0/3948
  7563. }
  7564. },
  7565. sole: {
  7566. height: math.unit(0.81, "feet"),
  7567. weight: math.unit(2, "kg"),
  7568. name: "Sole",
  7569. image: {
  7570. source: "./media/characters/piper/sole.svg"
  7571. }
  7572. },
  7573. nipple: {
  7574. height: math.unit(0.25, "feet"),
  7575. weight: math.unit(1.5, "lb"),
  7576. name: "Nipple",
  7577. image: {
  7578. source: "./media/characters/piper/nipple.svg"
  7579. }
  7580. },
  7581. head: {
  7582. height: math.unit(1.1, "feet"),
  7583. name: "Head",
  7584. image: {
  7585. source: "./media/characters/piper/head.svg"
  7586. }
  7587. },
  7588. },
  7589. [
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(2, "inches")
  7593. },
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(5 + 8 / 12, "feet")
  7597. },
  7598. {
  7599. name: "Macro",
  7600. height: math.unit(250, "feet"),
  7601. default: true
  7602. },
  7603. {
  7604. name: "Megamacro",
  7605. height: math.unit(7, "miles")
  7606. },
  7607. ]
  7608. ))
  7609. characterMakers.push(() => makeCharacter(
  7610. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7611. {
  7612. front: {
  7613. height: math.unit(6, "feet"),
  7614. weight: math.unit(220, "lb"),
  7615. name: "Front",
  7616. image: {
  7617. source: "./media/characters/gemini/front.svg"
  7618. }
  7619. },
  7620. back: {
  7621. height: math.unit(6, "feet"),
  7622. weight: math.unit(220, "lb"),
  7623. name: "Back",
  7624. image: {
  7625. source: "./media/characters/gemini/back.svg"
  7626. }
  7627. },
  7628. kneeling: {
  7629. height: math.unit(6 / 1.5, "feet"),
  7630. weight: math.unit(220, "lb"),
  7631. name: "Kneeling",
  7632. image: {
  7633. source: "./media/characters/gemini/kneeling.svg",
  7634. bottom: 0.02
  7635. }
  7636. },
  7637. },
  7638. [
  7639. {
  7640. name: "Macro",
  7641. height: math.unit(300, "meters"),
  7642. default: true
  7643. },
  7644. {
  7645. name: "Megamacro",
  7646. height: math.unit(6900, "meters")
  7647. },
  7648. ]
  7649. ))
  7650. characterMakers.push(() => makeCharacter(
  7651. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7652. {
  7653. anthro: {
  7654. height: math.unit(2.35, "meters"),
  7655. weight: math.unit(73, "kg"),
  7656. name: "Anthro",
  7657. image: {
  7658. source: "./media/characters/alicia/anthro.svg",
  7659. extra: 2571 / 2385,
  7660. bottom: 75 / 2648
  7661. }
  7662. },
  7663. paw: {
  7664. height: math.unit(1.32, "feet"),
  7665. name: "Paw",
  7666. image: {
  7667. source: "./media/characters/alicia/paw.svg"
  7668. }
  7669. },
  7670. feral: {
  7671. height: math.unit(1.69, "meters"),
  7672. weight: math.unit(73, "kg"),
  7673. name: "Feral",
  7674. image: {
  7675. source: "./media/characters/alicia/feral.svg",
  7676. extra: 2123 / 1715,
  7677. bottom: 222 / 2349
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(2.35, "meters")
  7685. },
  7686. {
  7687. name: "Macro",
  7688. height: math.unit(60, "meters"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Megamacro",
  7693. height: math.unit(10000, "kilometers")
  7694. },
  7695. ]
  7696. ))
  7697. characterMakers.push(() => makeCharacter(
  7698. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7699. {
  7700. front: {
  7701. height: math.unit(7, "feet"),
  7702. weight: math.unit(250, "lbs"),
  7703. name: "Front",
  7704. image: {
  7705. source: "./media/characters/archy/front.svg"
  7706. }
  7707. }
  7708. },
  7709. [
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(1, "inch")
  7713. },
  7714. {
  7715. name: "Shorty",
  7716. height: math.unit(5, "feet")
  7717. },
  7718. {
  7719. name: "Normal",
  7720. height: math.unit(7, "feet")
  7721. },
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(600, "meters"),
  7725. default: true
  7726. },
  7727. {
  7728. name: "Megamacro",
  7729. height: math.unit(1, "mile")
  7730. },
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(1.65, "meters"),
  7738. weight: math.unit(74, "kg"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/berri/front.svg",
  7742. extra: 857 / 837,
  7743. bottom: 18 / 877
  7744. }
  7745. },
  7746. bum: {
  7747. height: math.unit(1.46, "feet"),
  7748. name: "Bum",
  7749. image: {
  7750. source: "./media/characters/berri/bum.svg"
  7751. }
  7752. },
  7753. mouth: {
  7754. height: math.unit(0.44, "feet"),
  7755. name: "Mouth",
  7756. image: {
  7757. source: "./media/characters/berri/mouth.svg"
  7758. }
  7759. },
  7760. paw: {
  7761. height: math.unit(0.826, "feet"),
  7762. name: "Paw",
  7763. image: {
  7764. source: "./media/characters/berri/paw.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(1.65, "meters")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(60, "m"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Megamacro",
  7780. height: math.unit(9.213, "km")
  7781. },
  7782. {
  7783. name: "Planet Eater",
  7784. height: math.unit(489, "megameters")
  7785. },
  7786. {
  7787. name: "Teramacro",
  7788. height: math.unit(2471635000000, "meters")
  7789. },
  7790. {
  7791. name: "Examacro",
  7792. height: math.unit(8.0624e+26, "meters")
  7793. }
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(1.72, "meters"),
  7801. weight: math.unit(68, "kg"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/lexi/front.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Very Smol",
  7811. height: math.unit(10, "mm")
  7812. },
  7813. {
  7814. name: "Micro",
  7815. height: math.unit(6.8, "cm"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(1.72, "m")
  7821. }
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(1.69, "meters"),
  7829. weight: math.unit(68, "kg"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/martin/front.svg",
  7833. extra: 596 / 581
  7834. }
  7835. }
  7836. },
  7837. [
  7838. {
  7839. name: "Micro",
  7840. height: math.unit(6.85, "cm"),
  7841. default: true
  7842. },
  7843. {
  7844. name: "Normal",
  7845. height: math.unit(1.69, "m")
  7846. }
  7847. ]
  7848. ))
  7849. characterMakers.push(() => makeCharacter(
  7850. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7851. {
  7852. front: {
  7853. height: math.unit(1.69, "meters"),
  7854. weight: math.unit(68, "kg"),
  7855. name: "Front",
  7856. image: {
  7857. source: "./media/characters/juno/front.svg"
  7858. }
  7859. }
  7860. },
  7861. [
  7862. {
  7863. name: "Micro",
  7864. height: math.unit(7, "cm")
  7865. },
  7866. {
  7867. name: "Normal",
  7868. height: math.unit(1.89, "m")
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(353, "meters"),
  7873. default: true
  7874. }
  7875. ]
  7876. ))
  7877. characterMakers.push(() => makeCharacter(
  7878. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7879. {
  7880. front: {
  7881. height: math.unit(1.93, "meters"),
  7882. weight: math.unit(83, "kg"),
  7883. name: "Front",
  7884. image: {
  7885. source: "./media/characters/samantha/front.svg"
  7886. }
  7887. },
  7888. frontClothed: {
  7889. height: math.unit(1.93, "meters"),
  7890. weight: math.unit(83, "kg"),
  7891. name: "Front (Clothed)",
  7892. image: {
  7893. source: "./media/characters/samantha/front-clothed.svg"
  7894. }
  7895. },
  7896. back: {
  7897. height: math.unit(1.93, "meters"),
  7898. weight: math.unit(83, "kg"),
  7899. name: "Back",
  7900. image: {
  7901. source: "./media/characters/samantha/back.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Normal",
  7908. height: math.unit(1.93, "m")
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(74, "meters"),
  7913. default: true
  7914. },
  7915. {
  7916. name: "Macro+",
  7917. height: math.unit(223, "meters"),
  7918. },
  7919. {
  7920. name: "Megamacro",
  7921. height: math.unit(8381, "meters"),
  7922. },
  7923. {
  7924. name: "Megamacro+",
  7925. height: math.unit(12000, "kilometers")
  7926. },
  7927. ]
  7928. ))
  7929. characterMakers.push(() => makeCharacter(
  7930. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7931. {
  7932. front: {
  7933. height: math.unit(1.92, "meters"),
  7934. weight: math.unit(80, "kg"),
  7935. name: "Front",
  7936. image: {
  7937. source: "./media/characters/dr-clay/front.svg"
  7938. }
  7939. },
  7940. frontClothed: {
  7941. height: math.unit(1.92, "meters"),
  7942. weight: math.unit(80, "kg"),
  7943. name: "Front (Clothed)",
  7944. image: {
  7945. source: "./media/characters/dr-clay/front-clothed.svg"
  7946. }
  7947. }
  7948. },
  7949. [
  7950. {
  7951. name: "Normal",
  7952. height: math.unit(1.92, "m")
  7953. },
  7954. {
  7955. name: "Macro",
  7956. height: math.unit(214, "meters"),
  7957. default: true
  7958. },
  7959. {
  7960. name: "Macro+",
  7961. height: math.unit(12.237, "meters"),
  7962. },
  7963. {
  7964. name: "Megamacro",
  7965. height: math.unit(557, "megameters"),
  7966. },
  7967. {
  7968. name: "Unimaginable",
  7969. height: math.unit(120e9, "lightyears")
  7970. },
  7971. ]
  7972. ))
  7973. characterMakers.push(() => makeCharacter(
  7974. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7975. {
  7976. front: {
  7977. height: math.unit(2, "meters"),
  7978. weight: math.unit(80, "kg"),
  7979. name: "Front",
  7980. image: {
  7981. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7982. }
  7983. }
  7984. },
  7985. [
  7986. {
  7987. name: "Teramacro",
  7988. height: math.unit(500000, "lightyears"),
  7989. default: true
  7990. },
  7991. ]
  7992. ))
  7993. characterMakers.push(() => makeCharacter(
  7994. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7995. {
  7996. crux: {
  7997. height: math.unit(2, "meters"),
  7998. weight: math.unit(150, "kg"),
  7999. name: "Crux",
  8000. image: {
  8001. source: "./media/characters/vemus/crux.svg",
  8002. extra: 1074/936,
  8003. bottom: 23/1097
  8004. }
  8005. },
  8006. skunkTanuki: {
  8007. height: math.unit(2, "meters"),
  8008. weight: math.unit(150, "kg"),
  8009. name: "Skunk-Tanuki",
  8010. image: {
  8011. source: "./media/characters/vemus/skunk-tanuki.svg",
  8012. extra: 926/893,
  8013. bottom: 20/946
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Normal",
  8020. height: math.unit(4, "meters"),
  8021. default: true
  8022. },
  8023. {
  8024. name: "Big",
  8025. height: math.unit(8, "meters")
  8026. },
  8027. {
  8028. name: "Macro",
  8029. height: math.unit(100, "meters")
  8030. },
  8031. {
  8032. name: "Macro+",
  8033. height: math.unit(1500, "meters")
  8034. },
  8035. {
  8036. name: "Stellar",
  8037. height: math.unit(14e8, "meters")
  8038. },
  8039. ]
  8040. ))
  8041. characterMakers.push(() => makeCharacter(
  8042. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8043. {
  8044. front: {
  8045. height: math.unit(2, "meters"),
  8046. weight: math.unit(70, "kg"),
  8047. name: "Front",
  8048. image: {
  8049. source: "./media/characters/beherit/front.svg",
  8050. extra: 1234/1109,
  8051. bottom: 55/1289
  8052. }
  8053. }
  8054. },
  8055. [
  8056. {
  8057. name: "Normal",
  8058. height: math.unit(6, "feet")
  8059. },
  8060. {
  8061. name: "Lorg",
  8062. height: math.unit(25, "feet"),
  8063. default: true
  8064. },
  8065. {
  8066. name: "Lorger",
  8067. height: math.unit(75, "feet")
  8068. },
  8069. {
  8070. name: "Macro",
  8071. height: math.unit(200, "meters")
  8072. },
  8073. ]
  8074. ))
  8075. characterMakers.push(() => makeCharacter(
  8076. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8077. {
  8078. front: {
  8079. height: math.unit(2, "meters"),
  8080. weight: math.unit(150, "kg"),
  8081. name: "Front",
  8082. image: {
  8083. source: "./media/characters/everett/front.svg",
  8084. extra: 1017/866,
  8085. bottom: 86/1103
  8086. }
  8087. },
  8088. paw: {
  8089. height: math.unit(2 / 3.6, "meters"),
  8090. name: "Paw",
  8091. image: {
  8092. source: "./media/characters/everett/paw.svg"
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Normal",
  8099. height: math.unit(15, "feet"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Lorg",
  8104. height: math.unit(70, "feet"),
  8105. default: true
  8106. },
  8107. {
  8108. name: "Lorger",
  8109. height: math.unit(250, "feet")
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(500, "meters")
  8114. },
  8115. ]
  8116. ))
  8117. characterMakers.push(() => makeCharacter(
  8118. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8119. {
  8120. front: {
  8121. height: math.unit(2, "meters"),
  8122. weight: math.unit(86, "kg"),
  8123. name: "Front",
  8124. image: {
  8125. source: "./media/characters/rose/front.svg",
  8126. extra: 1785/1636,
  8127. bottom: 30/1815
  8128. },
  8129. form: "liom",
  8130. default: true
  8131. },
  8132. frontSporty: {
  8133. height: math.unit(2, "meters"),
  8134. weight: math.unit(86, "kg"),
  8135. name: "Front (Sporty)",
  8136. image: {
  8137. source: "./media/characters/rose/front-sporty.svg",
  8138. extra: 350/335,
  8139. bottom: 10/360
  8140. },
  8141. form: "liom"
  8142. },
  8143. frontAlt: {
  8144. height: math.unit(1.6, "meters"),
  8145. weight: math.unit(86, "kg"),
  8146. name: "Front (Alt)",
  8147. image: {
  8148. source: "./media/characters/rose/front-alt.svg",
  8149. extra: 299/283,
  8150. bottom: 3/302
  8151. },
  8152. form: "liom"
  8153. },
  8154. plush: {
  8155. height: math.unit(2, "meters"),
  8156. weight: math.unit(86/3, "kg"),
  8157. name: "Plush",
  8158. image: {
  8159. source: "./media/characters/rose/plush.svg",
  8160. extra: 361/337,
  8161. bottom: 11/372
  8162. },
  8163. form: "plush",
  8164. default: true
  8165. },
  8166. faeStanding: {
  8167. height: math.unit(10, "cm"),
  8168. weight: math.unit(10, "grams"),
  8169. name: "Standing",
  8170. image: {
  8171. source: "./media/characters/rose/fae-standing.svg",
  8172. extra: 1189/1060,
  8173. bottom: 27/1216
  8174. },
  8175. form: "fae",
  8176. default: true
  8177. },
  8178. faeSitting: {
  8179. height: math.unit(5, "cm"),
  8180. weight: math.unit(10, "grams"),
  8181. name: "Sitting",
  8182. image: {
  8183. source: "./media/characters/rose/fae-sitting.svg",
  8184. extra: 737/577,
  8185. bottom: 356/1093
  8186. },
  8187. form: "fae"
  8188. },
  8189. faePaw: {
  8190. height: math.unit(1.35, "cm"),
  8191. name: "Paw",
  8192. image: {
  8193. source: "./media/characters/rose/fae-paw.svg"
  8194. },
  8195. form: "fae"
  8196. },
  8197. },
  8198. [
  8199. {
  8200. name: "True Micro",
  8201. height: math.unit(9, "cm"),
  8202. form: "liom"
  8203. },
  8204. {
  8205. name: "Micro",
  8206. height: math.unit(16, "cm"),
  8207. form: "liom"
  8208. },
  8209. {
  8210. name: "Normal",
  8211. height: math.unit(1.85, "meters"),
  8212. default: true,
  8213. form: "liom"
  8214. },
  8215. {
  8216. name: "Mini-Macro",
  8217. height: math.unit(5, "meters"),
  8218. form: "liom"
  8219. },
  8220. {
  8221. name: "Macro",
  8222. height: math.unit(15, "meters"),
  8223. form: "liom"
  8224. },
  8225. {
  8226. name: "True Macro",
  8227. height: math.unit(40, "meters"),
  8228. form: "liom"
  8229. },
  8230. {
  8231. name: "City Scale",
  8232. height: math.unit(1, "km"),
  8233. form: "liom"
  8234. },
  8235. {
  8236. name: "Plushie",
  8237. height: math.unit(9, "cm"),
  8238. form: "plush",
  8239. default: true
  8240. },
  8241. {
  8242. name: "Fae",
  8243. height: math.unit(10, "cm"),
  8244. form: "fae",
  8245. default: true
  8246. },
  8247. ],
  8248. {
  8249. "liom": {
  8250. name: "Liom"
  8251. },
  8252. "plush": {
  8253. name: "Plush"
  8254. },
  8255. "fae": {
  8256. name: "Fae Fox",
  8257. default: true
  8258. }
  8259. }
  8260. ))
  8261. characterMakers.push(() => makeCharacter(
  8262. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8263. {
  8264. front: {
  8265. height: math.unit(2, "meters"),
  8266. weight: math.unit(350, "lbs"),
  8267. name: "Front",
  8268. image: {
  8269. source: "./media/characters/regal/front.svg"
  8270. }
  8271. },
  8272. back: {
  8273. height: math.unit(2, "meters"),
  8274. weight: math.unit(350, "lbs"),
  8275. name: "Back",
  8276. image: {
  8277. source: "./media/characters/regal/back.svg"
  8278. }
  8279. },
  8280. },
  8281. [
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(350, "feet"),
  8285. default: true
  8286. }
  8287. ]
  8288. ))
  8289. characterMakers.push(() => makeCharacter(
  8290. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8291. {
  8292. standing: {
  8293. height: math.unit(4 + 11/12, "feet"),
  8294. weight: math.unit(100, "lb"),
  8295. name: "Standing",
  8296. image: {
  8297. source: "./media/characters/opal/standing.svg",
  8298. extra: 1588/1513,
  8299. bottom: 23/1611
  8300. }
  8301. },
  8302. sitting: {
  8303. height: math.unit(2.3, "feet"),
  8304. weight: math.unit(100, "lb"),
  8305. name: "Sitting",
  8306. image: {
  8307. source: "./media/characters/opal/sitting.svg",
  8308. extra: 1031/892,
  8309. bottom: 142/1173
  8310. }
  8311. },
  8312. hand: {
  8313. height: math.unit(0.59, "feet"),
  8314. name: "Hand",
  8315. image: {
  8316. source: "./media/characters/opal/hand.svg"
  8317. }
  8318. },
  8319. foot: {
  8320. height: math.unit(0.61, "feet"),
  8321. name: "Foot",
  8322. image: {
  8323. source: "./media/characters/opal/foot.svg"
  8324. }
  8325. },
  8326. },
  8327. [
  8328. {
  8329. name: "Small",
  8330. height: math.unit(4 + 11 / 12, "feet")
  8331. },
  8332. {
  8333. name: "Normal",
  8334. height: math.unit(20, "feet"),
  8335. default: true
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(120, "feet")
  8340. },
  8341. {
  8342. name: "Megamacro",
  8343. height: math.unit(80, "miles")
  8344. },
  8345. {
  8346. name: "True Size",
  8347. height: math.unit(100000, "lightyears")
  8348. },
  8349. ]
  8350. ))
  8351. characterMakers.push(() => makeCharacter(
  8352. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8353. {
  8354. front: {
  8355. height: math.unit(6, "feet"),
  8356. weight: math.unit(200, "lbs"),
  8357. name: "Front",
  8358. image: {
  8359. source: "./media/characters/vector-wuff/front.svg"
  8360. }
  8361. }
  8362. },
  8363. [
  8364. {
  8365. name: "Normal",
  8366. height: math.unit(2.8, "meters")
  8367. },
  8368. {
  8369. name: "Macro",
  8370. height: math.unit(450, "meters"),
  8371. default: true
  8372. },
  8373. {
  8374. name: "Megamacro",
  8375. height: math.unit(15, "kilometers")
  8376. }
  8377. ]
  8378. ))
  8379. characterMakers.push(() => makeCharacter(
  8380. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8381. {
  8382. front: {
  8383. height: math.unit(6, "feet"),
  8384. weight: math.unit(256, "lbs"),
  8385. name: "Front",
  8386. image: {
  8387. source: "./media/characters/dannik/front.svg"
  8388. }
  8389. }
  8390. },
  8391. [
  8392. {
  8393. name: "Macro",
  8394. height: math.unit(69.57, "meters"),
  8395. default: true
  8396. },
  8397. ]
  8398. ))
  8399. characterMakers.push(() => makeCharacter(
  8400. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8401. {
  8402. front: {
  8403. height: math.unit(6, "feet"),
  8404. weight: math.unit(120, "lbs"),
  8405. name: "Front",
  8406. image: {
  8407. source: "./media/characters/azura-saharah/front.svg"
  8408. }
  8409. },
  8410. back: {
  8411. height: math.unit(6, "feet"),
  8412. weight: math.unit(120, "lbs"),
  8413. name: "Back",
  8414. image: {
  8415. source: "./media/characters/azura-saharah/back.svg"
  8416. }
  8417. },
  8418. },
  8419. [
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(100, "feet"),
  8423. default: true
  8424. },
  8425. ]
  8426. ))
  8427. characterMakers.push(() => makeCharacter(
  8428. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8429. {
  8430. side: {
  8431. height: math.unit(5 + 4 / 12, "feet"),
  8432. weight: math.unit(163, "lbs"),
  8433. name: "Side",
  8434. image: {
  8435. source: "./media/characters/kennedy/side.svg"
  8436. }
  8437. }
  8438. },
  8439. [
  8440. {
  8441. name: "Standard Doggo",
  8442. height: math.unit(5 + 4 / 12, "feet")
  8443. },
  8444. {
  8445. name: "Big Doggo",
  8446. height: math.unit(25 + 3 / 12, "feet"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(5 + 5/12, "feet"),
  8456. weight: math.unit(100, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/odios-de-lunar/front.svg",
  8460. extra: 1468/1323,
  8461. bottom: 22/1490
  8462. }
  8463. }
  8464. },
  8465. [
  8466. {
  8467. name: "Micro",
  8468. height: math.unit(3, "inches")
  8469. },
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(5.5, "feet"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(100, "feet")
  8478. },
  8479. ]
  8480. ))
  8481. characterMakers.push(() => makeCharacter(
  8482. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8483. {
  8484. back: {
  8485. height: math.unit(6, "feet"),
  8486. weight: math.unit(220, "lbs"),
  8487. name: "Back",
  8488. image: {
  8489. source: "./media/characters/mandake/back.svg"
  8490. }
  8491. }
  8492. },
  8493. [
  8494. {
  8495. name: "Normal",
  8496. height: math.unit(7, "feet"),
  8497. default: true
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(78, "feet")
  8502. },
  8503. {
  8504. name: "Macro+",
  8505. height: math.unit(300, "meters")
  8506. },
  8507. {
  8508. name: "Macro++",
  8509. height: math.unit(2400, "feet")
  8510. },
  8511. {
  8512. name: "Megamacro",
  8513. height: math.unit(5167, "meters")
  8514. },
  8515. {
  8516. name: "Gigamacro",
  8517. height: math.unit(41769, "miles")
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(6, "feet"),
  8526. weight: math.unit(120, "lbs"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/yozey/front.svg"
  8530. }
  8531. },
  8532. frontAlt: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(120, "lbs"),
  8535. name: "Front (Alt)",
  8536. image: {
  8537. source: "./media/characters/yozey/front-alt.svg"
  8538. }
  8539. },
  8540. side: {
  8541. height: math.unit(6, "feet"),
  8542. weight: math.unit(120, "lbs"),
  8543. name: "Side",
  8544. image: {
  8545. source: "./media/characters/yozey/side.svg"
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Micro",
  8552. height: math.unit(3, "inches"),
  8553. default: true
  8554. },
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(6, "feet")
  8558. }
  8559. ]
  8560. ))
  8561. characterMakers.push(() => makeCharacter(
  8562. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8563. {
  8564. front: {
  8565. height: math.unit(6, "feet"),
  8566. weight: math.unit(103, "lbs"),
  8567. name: "Front",
  8568. image: {
  8569. source: "./media/characters/valeska-voss/front.svg"
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Mini-Sized Sub",
  8576. height: math.unit(3.1, "inches")
  8577. },
  8578. {
  8579. name: "Mid-Sized Sub",
  8580. height: math.unit(6.2, "inches")
  8581. },
  8582. {
  8583. name: "Full-Sized Sub",
  8584. height: math.unit(9.3, "inches")
  8585. },
  8586. {
  8587. name: "Normal",
  8588. height: math.unit(5 + 2 / 12, "foot"),
  8589. default: true
  8590. },
  8591. ]
  8592. ))
  8593. characterMakers.push(() => makeCharacter(
  8594. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8595. {
  8596. front: {
  8597. height: math.unit(6, "feet"),
  8598. weight: math.unit(160, "lbs"),
  8599. name: "Front",
  8600. image: {
  8601. source: "./media/characters/gene-zeta/front.svg",
  8602. extra: 3006 / 2826,
  8603. bottom: 182 / 3188
  8604. }
  8605. }
  8606. },
  8607. [
  8608. {
  8609. name: "Micro",
  8610. height: math.unit(6, "inches")
  8611. },
  8612. {
  8613. name: "Normal",
  8614. height: math.unit(5 + 11 / 12, "foot"),
  8615. default: true
  8616. },
  8617. {
  8618. name: "Macro",
  8619. height: math.unit(140, "feet")
  8620. },
  8621. {
  8622. name: "Supercharged",
  8623. height: math.unit(2500, "feet")
  8624. },
  8625. ]
  8626. ))
  8627. characterMakers.push(() => makeCharacter(
  8628. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8629. {
  8630. front: {
  8631. height: math.unit(6, "feet"),
  8632. weight: math.unit(350, "lbs"),
  8633. name: "Front",
  8634. image: {
  8635. source: "./media/characters/razinox/front.svg",
  8636. extra: 1686 / 1548,
  8637. bottom: 28.2 / 1868
  8638. }
  8639. },
  8640. back: {
  8641. height: math.unit(6, "feet"),
  8642. weight: math.unit(350, "lbs"),
  8643. name: "Back",
  8644. image: {
  8645. source: "./media/characters/razinox/back.svg",
  8646. extra: 1660 / 1590,
  8647. bottom: 15 / 1665
  8648. }
  8649. },
  8650. },
  8651. [
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(10 + 8 / 12, "foot")
  8655. },
  8656. {
  8657. name: "Minimacro",
  8658. height: math.unit(15, "foot")
  8659. },
  8660. {
  8661. name: "Macro",
  8662. height: math.unit(60, "foot"),
  8663. default: true
  8664. },
  8665. {
  8666. name: "Megamacro",
  8667. height: math.unit(5, "miles")
  8668. },
  8669. {
  8670. name: "Gigamacro",
  8671. height: math.unit(6000, "miles")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(6, "feet"),
  8680. weight: math.unit(150, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/cobalt/front.svg"
  8684. }
  8685. }
  8686. },
  8687. [
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(8 + 1 / 12, "foot")
  8691. },
  8692. {
  8693. name: "Macro",
  8694. height: math.unit(111, "foot"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Supracosmic",
  8699. height: math.unit(1e42, "feet")
  8700. },
  8701. ]
  8702. ))
  8703. characterMakers.push(() => makeCharacter(
  8704. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8705. {
  8706. front: {
  8707. height: math.unit(5, "inches"),
  8708. name: "Front",
  8709. image: {
  8710. source: "./media/characters/amanda/front.svg",
  8711. extra: 926/791,
  8712. bottom: 38/964
  8713. }
  8714. },
  8715. back: {
  8716. height: math.unit(5, "inches"),
  8717. name: "Back",
  8718. image: {
  8719. source: "./media/characters/amanda/back.svg",
  8720. extra: 909/805,
  8721. bottom: 43/952
  8722. }
  8723. },
  8724. },
  8725. [
  8726. {
  8727. name: "Micro",
  8728. height: math.unit(5, "inches"),
  8729. default: true
  8730. },
  8731. ]
  8732. ))
  8733. characterMakers.push(() => makeCharacter(
  8734. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8735. {
  8736. front: {
  8737. height: math.unit(2.75, "meters"),
  8738. weight: math.unit(1200, "lb"),
  8739. name: "Front",
  8740. image: {
  8741. source: "./media/characters/teal/front.svg",
  8742. extra: 2463 / 2320,
  8743. bottom: 166 / 2629
  8744. }
  8745. },
  8746. back: {
  8747. height: math.unit(2.75, "meters"),
  8748. weight: math.unit(1200, "lb"),
  8749. name: "Back",
  8750. image: {
  8751. source: "./media/characters/teal/back.svg",
  8752. extra: 2580 / 2489,
  8753. bottom: 151 / 2731
  8754. }
  8755. },
  8756. sitting: {
  8757. height: math.unit(1.9, "meters"),
  8758. weight: math.unit(1200, "lb"),
  8759. name: "Sitting",
  8760. image: {
  8761. source: "./media/characters/teal/sitting.svg",
  8762. extra: 623 / 590,
  8763. bottom: 121 / 744
  8764. }
  8765. },
  8766. standing: {
  8767. height: math.unit(2.75, "meters"),
  8768. weight: math.unit(1200, "lb"),
  8769. name: "Standing",
  8770. image: {
  8771. source: "./media/characters/teal/standing.svg",
  8772. extra: 923 / 893,
  8773. bottom: 60 / 983
  8774. }
  8775. },
  8776. stretching: {
  8777. height: math.unit(3.65, "meters"),
  8778. weight: math.unit(1200, "lb"),
  8779. name: "Stretching",
  8780. image: {
  8781. source: "./media/characters/teal/stretching.svg",
  8782. extra: 1276 / 1244,
  8783. bottom: 0 / 1276
  8784. }
  8785. },
  8786. legged: {
  8787. height: math.unit(1.3, "meters"),
  8788. weight: math.unit(100, "lb"),
  8789. name: "Legged",
  8790. image: {
  8791. source: "./media/characters/teal/legged.svg",
  8792. extra: 462 / 437,
  8793. bottom: 24 / 486
  8794. }
  8795. },
  8796. naga: {
  8797. height: math.unit(5.4, "meters"),
  8798. weight: math.unit(4000, "lb"),
  8799. name: "Naga",
  8800. image: {
  8801. source: "./media/characters/teal/naga.svg",
  8802. extra: 1902 / 1858,
  8803. bottom: 0 / 1902
  8804. }
  8805. },
  8806. hand: {
  8807. height: math.unit(0.52, "meters"),
  8808. name: "Hand",
  8809. image: {
  8810. source: "./media/characters/teal/hand.svg"
  8811. }
  8812. },
  8813. maw: {
  8814. height: math.unit(0.43, "meters"),
  8815. name: "Maw",
  8816. image: {
  8817. source: "./media/characters/teal/maw.svg"
  8818. }
  8819. },
  8820. slit: {
  8821. height: math.unit(0.25, "meters"),
  8822. name: "Slit",
  8823. image: {
  8824. source: "./media/characters/teal/slit.svg"
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Normal",
  8831. height: math.unit(2.75, "meters"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Macro",
  8836. height: math.unit(300, "feet")
  8837. },
  8838. {
  8839. name: "Macro+",
  8840. height: math.unit(2000, "feet")
  8841. },
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8846. {
  8847. frontCat: {
  8848. height: math.unit(6, "feet"),
  8849. weight: math.unit(180, "lbs"),
  8850. name: "Front (Cat)",
  8851. image: {
  8852. source: "./media/characters/ravin-amulet/front-cat.svg"
  8853. }
  8854. },
  8855. frontCatAlt: {
  8856. height: math.unit(6, "feet"),
  8857. weight: math.unit(180, "lbs"),
  8858. name: "Front (Alt, Cat)",
  8859. image: {
  8860. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8861. }
  8862. },
  8863. frontWerewolf: {
  8864. height: math.unit(6 * 1.2, "feet"),
  8865. weight: math.unit(225, "lbs"),
  8866. name: "Front (Werewolf)",
  8867. image: {
  8868. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8869. }
  8870. },
  8871. backWerewolf: {
  8872. height: math.unit(6 * 1.2, "feet"),
  8873. weight: math.unit(225, "lbs"),
  8874. name: "Back (Werewolf)",
  8875. image: {
  8876. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Nano",
  8883. height: math.unit(1, "micrometer")
  8884. },
  8885. {
  8886. name: "Micro",
  8887. height: math.unit(1, "inch")
  8888. },
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(6, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(60, "feet")
  8897. }
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(165, "lbs"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/fluoresce/front.svg"
  8909. }
  8910. }
  8911. },
  8912. [
  8913. {
  8914. name: "Micro",
  8915. height: math.unit(6, "cm")
  8916. },
  8917. {
  8918. name: "Normal",
  8919. height: math.unit(5 + 7 / 12, "feet"),
  8920. default: true
  8921. },
  8922. {
  8923. name: "Macro",
  8924. height: math.unit(56, "feet")
  8925. },
  8926. {
  8927. name: "Megamacro",
  8928. height: math.unit(1.9, "miles")
  8929. },
  8930. ]
  8931. ))
  8932. characterMakers.push(() => makeCharacter(
  8933. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8934. {
  8935. front: {
  8936. height: math.unit(9 + 6 / 12, "feet"),
  8937. weight: math.unit(523, "lbs"),
  8938. name: "Side",
  8939. image: {
  8940. source: "./media/characters/aurora/side.svg",
  8941. extra: 474/393,
  8942. bottom: 5/479
  8943. }
  8944. }
  8945. },
  8946. [
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(9 + 6 / 12, "feet")
  8950. },
  8951. {
  8952. name: "Macro",
  8953. height: math.unit(96, "feet"),
  8954. default: true
  8955. },
  8956. {
  8957. name: "Macro+",
  8958. height: math.unit(243, "feet")
  8959. },
  8960. ]
  8961. ))
  8962. characterMakers.push(() => makeCharacter(
  8963. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8964. {
  8965. front: {
  8966. height: math.unit(194, "cm"),
  8967. weight: math.unit(90, "kg"),
  8968. name: "Front",
  8969. image: {
  8970. source: "./media/characters/ranek/front.svg",
  8971. extra: 1862/1791,
  8972. bottom: 80/1942
  8973. }
  8974. },
  8975. back: {
  8976. height: math.unit(194, "cm"),
  8977. weight: math.unit(90, "kg"),
  8978. name: "Back",
  8979. image: {
  8980. source: "./media/characters/ranek/back.svg",
  8981. extra: 1853/1787,
  8982. bottom: 74/1927
  8983. }
  8984. },
  8985. feral: {
  8986. height: math.unit(30, "cm"),
  8987. weight: math.unit(1.6, "lbs"),
  8988. name: "Feral",
  8989. image: {
  8990. source: "./media/characters/ranek/feral.svg",
  8991. extra: 990/631,
  8992. bottom: 29/1019
  8993. }
  8994. },
  8995. },
  8996. [
  8997. {
  8998. name: "Normal",
  8999. height: math.unit(194, "cm"),
  9000. default: true
  9001. },
  9002. {
  9003. name: "Macro",
  9004. height: math.unit(100, "meters")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  9010. {
  9011. front: {
  9012. height: math.unit(5 + 6 / 12, "feet"),
  9013. weight: math.unit(153, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/andrew-cooper/front.svg"
  9017. }
  9018. },
  9019. },
  9020. [
  9021. {
  9022. name: "Nano",
  9023. height: math.unit(1, "mm")
  9024. },
  9025. {
  9026. name: "Micro",
  9027. height: math.unit(2, "inches")
  9028. },
  9029. {
  9030. name: "Normal",
  9031. height: math.unit(5 + 6 / 12, "feet"),
  9032. default: true
  9033. }
  9034. ]
  9035. ))
  9036. characterMakers.push(() => makeCharacter(
  9037. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9038. {
  9039. front: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(180, "lbs"),
  9042. name: "Front",
  9043. image: {
  9044. source: "./media/characters/akane-sato/front.svg",
  9045. extra: 1219 / 1140
  9046. }
  9047. },
  9048. back: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(180, "lbs"),
  9051. name: "Back",
  9052. image: {
  9053. source: "./media/characters/akane-sato/back.svg",
  9054. extra: 1219 / 1170
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Normal",
  9061. height: math.unit(2.5, "meters")
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(250, "meters"),
  9066. default: true
  9067. },
  9068. {
  9069. name: "Megamacro",
  9070. height: math.unit(25, "km")
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(6, "feet"),
  9079. weight: math.unit(65, "kg"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/rook/front.svg",
  9083. extra: 960 / 950
  9084. }
  9085. }
  9086. },
  9087. [
  9088. {
  9089. name: "Normal",
  9090. height: math.unit(8.8, "feet")
  9091. },
  9092. {
  9093. name: "Macro",
  9094. height: math.unit(88, "feet"),
  9095. default: true
  9096. },
  9097. {
  9098. name: "Megamacro",
  9099. height: math.unit(8, "miles")
  9100. },
  9101. ]
  9102. ))
  9103. characterMakers.push(() => makeCharacter(
  9104. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9105. {
  9106. front: {
  9107. height: math.unit(12 + 2 / 12, "feet"),
  9108. weight: math.unit(808, "lbs"),
  9109. name: "Front",
  9110. image: {
  9111. source: "./media/characters/prodigy/front.svg"
  9112. }
  9113. }
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(12 + 2 / 12, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(143, "feet")
  9124. },
  9125. {
  9126. name: "Macro+",
  9127. height: math.unit(400, "feet")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(225, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/daniel/front.svg"
  9140. }
  9141. },
  9142. leaning: {
  9143. height: math.unit(6, "feet"),
  9144. weight: math.unit(225, "lbs"),
  9145. name: "Leaning",
  9146. image: {
  9147. source: "./media/characters/daniel/leaning.svg"
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Macro",
  9154. height: math.unit(1000, "feet"),
  9155. default: true
  9156. },
  9157. ]
  9158. ))
  9159. characterMakers.push(() => makeCharacter(
  9160. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9161. {
  9162. front: {
  9163. height: math.unit(6, "feet"),
  9164. weight: math.unit(88, "lbs"),
  9165. name: "Front",
  9166. image: {
  9167. source: "./media/characters/chiros/front.svg",
  9168. extra: 306 / 226
  9169. }
  9170. },
  9171. side: {
  9172. height: math.unit(6, "feet"),
  9173. weight: math.unit(88, "lbs"),
  9174. name: "Side",
  9175. image: {
  9176. source: "./media/characters/chiros/side.svg",
  9177. extra: 306 / 226
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(6, "cm"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9191. {
  9192. front: {
  9193. height: math.unit(6, "feet"),
  9194. weight: math.unit(100, "lbs"),
  9195. name: "Front",
  9196. image: {
  9197. source: "./media/characters/selka/front.svg",
  9198. extra: 947 / 887
  9199. }
  9200. }
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(5, "cm"),
  9206. default: true
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(8 + 3 / 12, "feet"),
  9215. weight: math.unit(424, "lbs"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/verin/front.svg",
  9219. extra: 1845 / 1550
  9220. }
  9221. },
  9222. frontArmored: {
  9223. height: math.unit(8 + 3 / 12, "feet"),
  9224. weight: math.unit(424, "lbs"),
  9225. name: "Front (Armored)",
  9226. image: {
  9227. source: "./media/characters/verin/front-armor.svg",
  9228. extra: 1845 / 1550,
  9229. bottom: 0.01
  9230. }
  9231. },
  9232. back: {
  9233. height: math.unit(8 + 3 / 12, "feet"),
  9234. weight: math.unit(424, "lbs"),
  9235. name: "Back",
  9236. image: {
  9237. source: "./media/characters/verin/back.svg",
  9238. bottom: 0.1,
  9239. extra: 1
  9240. }
  9241. },
  9242. foot: {
  9243. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9244. name: "Foot",
  9245. image: {
  9246. source: "./media/characters/verin/foot.svg"
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(8 + 3 / 12, "feet")
  9254. },
  9255. {
  9256. name: "Minimacro",
  9257. height: math.unit(21, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "Macro",
  9262. height: math.unit(626, "feet")
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(2.718, "meters"),
  9271. weight: math.unit(150, "lbs"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/sovrim-terraquian/front.svg",
  9275. extra: 1752/1689,
  9276. bottom: 36/1788
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(2.718, "meters"),
  9281. weight: math.unit(150, "lbs"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/sovrim-terraquian/back.svg",
  9285. extra: 1698/1657,
  9286. bottom: 58/1756
  9287. }
  9288. },
  9289. tongue: {
  9290. height: math.unit(2.865, "feet"),
  9291. name: "Tongue",
  9292. image: {
  9293. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9294. }
  9295. },
  9296. hand: {
  9297. height: math.unit(1.61, "feet"),
  9298. name: "Hand",
  9299. image: {
  9300. source: "./media/characters/sovrim-terraquian/hand.svg"
  9301. }
  9302. },
  9303. foot: {
  9304. height: math.unit(1.05, "feet"),
  9305. name: "Foot",
  9306. image: {
  9307. source: "./media/characters/sovrim-terraquian/foot.svg"
  9308. }
  9309. },
  9310. footAlt: {
  9311. height: math.unit(0.88, "feet"),
  9312. name: "Foot (Alt)",
  9313. image: {
  9314. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9315. }
  9316. },
  9317. },
  9318. [
  9319. {
  9320. name: "Micro",
  9321. height: math.unit(2, "inches")
  9322. },
  9323. {
  9324. name: "Small",
  9325. height: math.unit(1, "meter")
  9326. },
  9327. {
  9328. name: "Normal",
  9329. height: math.unit(Math.E, "meters"),
  9330. default: true
  9331. },
  9332. {
  9333. name: "Macro",
  9334. height: math.unit(20, "meters")
  9335. },
  9336. {
  9337. name: "Macro+",
  9338. height: math.unit(400, "meters")
  9339. },
  9340. ]
  9341. ))
  9342. characterMakers.push(() => makeCharacter(
  9343. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9344. {
  9345. front: {
  9346. height: math.unit(7, "feet"),
  9347. weight: math.unit(489, "lbs"),
  9348. name: "Front",
  9349. image: {
  9350. source: "./media/characters/reece-silvermane/front.svg",
  9351. bottom: 0.02,
  9352. extra: 1
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(1.5, "miles"),
  9360. default: true
  9361. },
  9362. ]
  9363. ))
  9364. characterMakers.push(() => makeCharacter(
  9365. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9366. {
  9367. front: {
  9368. height: math.unit(6, "feet"),
  9369. weight: math.unit(78, "kg"),
  9370. name: "Front",
  9371. image: {
  9372. source: "./media/characters/kane/front.svg",
  9373. extra: 978 / 899
  9374. }
  9375. },
  9376. back: {
  9377. height: math.unit(6, "feet"),
  9378. weight: math.unit(78, "kg"),
  9379. name: "Back",
  9380. image: {
  9381. source: "./media/characters/kane/back.svg",
  9382. extra: 1966/1800,
  9383. bottom: 0/1966
  9384. }
  9385. },
  9386. head: {
  9387. height: math.unit(1.4, "feet"),
  9388. name: "Head",
  9389. image: {
  9390. source: "./media/characters/kane/head.svg"
  9391. }
  9392. },
  9393. },
  9394. [
  9395. {
  9396. name: "Normal",
  9397. height: math.unit(2.1, "m"),
  9398. },
  9399. {
  9400. name: "Macro",
  9401. height: math.unit(1, "km"),
  9402. default: true
  9403. },
  9404. ]
  9405. ))
  9406. characterMakers.push(() => makeCharacter(
  9407. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9408. {
  9409. front: {
  9410. height: math.unit(6, "feet"),
  9411. weight: math.unit(200, "kg"),
  9412. name: "Front",
  9413. image: {
  9414. source: "./media/characters/tegon/front.svg",
  9415. bottom: 0.01,
  9416. extra: 1
  9417. }
  9418. },
  9419. },
  9420. [
  9421. {
  9422. name: "Micro",
  9423. height: math.unit(1, "inch")
  9424. },
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(6 + 3 / 12, "feet"),
  9428. default: true
  9429. },
  9430. {
  9431. name: "Macro",
  9432. height: math.unit(300, "feet")
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(69, "miles")
  9437. },
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9442. {
  9443. side: {
  9444. height: math.unit(6, "feet"),
  9445. weight: math.unit(2304, "lbs"),
  9446. name: "Side",
  9447. image: {
  9448. source: "./media/characters/arcturax/side.svg",
  9449. extra: 790 / 376,
  9450. bottom: 0.01
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Micro",
  9457. height: math.unit(2, "inch")
  9458. },
  9459. {
  9460. name: "Normal",
  9461. height: math.unit(6, "feet")
  9462. },
  9463. {
  9464. name: "Macro",
  9465. height: math.unit(39, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Megamacro",
  9470. height: math.unit(7, "miles")
  9471. },
  9472. ]
  9473. ))
  9474. characterMakers.push(() => makeCharacter(
  9475. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9476. {
  9477. front: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(50, "lbs"),
  9480. name: "Front",
  9481. image: {
  9482. source: "./media/characters/sentri/front.svg",
  9483. extra: 1750 / 1570,
  9484. bottom: 0.025
  9485. }
  9486. },
  9487. frontAlt: {
  9488. height: math.unit(6, "feet"),
  9489. weight: math.unit(50, "lbs"),
  9490. name: "Front (Alt)",
  9491. image: {
  9492. source: "./media/characters/sentri/front-alt.svg",
  9493. extra: 1750 / 1570,
  9494. bottom: 0.025
  9495. }
  9496. },
  9497. },
  9498. [
  9499. {
  9500. name: "Normal",
  9501. height: math.unit(15, "feet"),
  9502. default: true
  9503. },
  9504. {
  9505. name: "Macro",
  9506. height: math.unit(2500, "feet")
  9507. }
  9508. ]
  9509. ))
  9510. characterMakers.push(() => makeCharacter(
  9511. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9512. {
  9513. front: {
  9514. height: math.unit(5 + 8 / 12, "feet"),
  9515. weight: math.unit(130, "lbs"),
  9516. name: "Front",
  9517. image: {
  9518. source: "./media/characters/corvin/front.svg",
  9519. extra: 1803 / 1629
  9520. }
  9521. },
  9522. frontShirt: {
  9523. height: math.unit(5 + 8 / 12, "feet"),
  9524. weight: math.unit(130, "lbs"),
  9525. name: "Front (Shirt)",
  9526. image: {
  9527. source: "./media/characters/corvin/front-shirt.svg",
  9528. extra: 1803 / 1629
  9529. }
  9530. },
  9531. frontPoncho: {
  9532. height: math.unit(5 + 8 / 12, "feet"),
  9533. weight: math.unit(130, "lbs"),
  9534. name: "Front (Poncho)",
  9535. image: {
  9536. source: "./media/characters/corvin/front-poncho.svg",
  9537. extra: 1803 / 1629
  9538. }
  9539. },
  9540. side: {
  9541. height: math.unit(5 + 8 / 12, "feet"),
  9542. weight: math.unit(130, "lbs"),
  9543. name: "Side",
  9544. image: {
  9545. source: "./media/characters/corvin/side.svg",
  9546. extra: 1012 / 945
  9547. }
  9548. },
  9549. back: {
  9550. height: math.unit(5 + 8 / 12, "feet"),
  9551. weight: math.unit(130, "lbs"),
  9552. name: "Back",
  9553. image: {
  9554. source: "./media/characters/corvin/back.svg",
  9555. extra: 1803 / 1629
  9556. }
  9557. },
  9558. },
  9559. [
  9560. {
  9561. name: "Micro",
  9562. height: math.unit(3, "inches")
  9563. },
  9564. {
  9565. name: "Normal",
  9566. height: math.unit(5 + 8 / 12, "feet")
  9567. },
  9568. {
  9569. name: "Macro",
  9570. height: math.unit(300, "feet"),
  9571. default: true
  9572. },
  9573. {
  9574. name: "Megamacro",
  9575. height: math.unit(500, "miles")
  9576. }
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(135, "lbs"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/q/front.svg",
  9588. extra: 854 / 752,
  9589. bottom: 0.005
  9590. }
  9591. },
  9592. back: {
  9593. height: math.unit(6, "feet"),
  9594. weight: math.unit(130, "lbs"),
  9595. name: "Back",
  9596. image: {
  9597. source: "./media/characters/q/back.svg",
  9598. extra: 854 / 752
  9599. }
  9600. },
  9601. },
  9602. [
  9603. {
  9604. name: "Macro",
  9605. height: math.unit(90, "feet"),
  9606. default: true
  9607. },
  9608. {
  9609. name: "Extra Macro",
  9610. height: math.unit(300, "feet"),
  9611. },
  9612. {
  9613. name: "BIG WALF",
  9614. height: math.unit(750, "feet"),
  9615. },
  9616. ]
  9617. ))
  9618. characterMakers.push(() => makeCharacter(
  9619. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9620. {
  9621. front: {
  9622. height: math.unit(3, "feet"),
  9623. weight: math.unit(28, "lbs"),
  9624. name: "Front",
  9625. image: {
  9626. source: "./media/characters/citrine/front.svg"
  9627. }
  9628. }
  9629. },
  9630. [
  9631. {
  9632. name: "Normal",
  9633. height: math.unit(3, "feet"),
  9634. default: true
  9635. }
  9636. ]
  9637. ))
  9638. characterMakers.push(() => makeCharacter(
  9639. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9640. {
  9641. front: {
  9642. height: math.unit(14, "feet"),
  9643. weight: math.unit(1450, "kg"),
  9644. preyCapacity: math.unit(15, "people"),
  9645. name: "Front",
  9646. image: {
  9647. source: "./media/characters/aura-starwind/front.svg",
  9648. extra: 1440/1327,
  9649. bottom: 11/1451
  9650. }
  9651. },
  9652. side: {
  9653. height: math.unit(14, "feet"),
  9654. weight: math.unit(1450, "kg"),
  9655. preyCapacity: math.unit(15, "people"),
  9656. name: "Side",
  9657. image: {
  9658. source: "./media/characters/aura-starwind/side.svg",
  9659. extra: 1654 / 1497
  9660. }
  9661. },
  9662. taur: {
  9663. height: math.unit(18, "feet"),
  9664. weight: math.unit(5500, "kg"),
  9665. preyCapacity: math.unit(50, "people"),
  9666. name: "Taur",
  9667. image: {
  9668. source: "./media/characters/aura-starwind/taur.svg",
  9669. extra: 1760 / 1650
  9670. }
  9671. },
  9672. feral: {
  9673. height: math.unit(46, "feet"),
  9674. weight: math.unit(25000, "kg"),
  9675. preyCapacity: math.unit(120, "people"),
  9676. name: "Feral",
  9677. image: {
  9678. source: "./media/characters/aura-starwind/feral.svg"
  9679. }
  9680. },
  9681. },
  9682. [
  9683. {
  9684. name: "Normal",
  9685. height: math.unit(14, "feet"),
  9686. default: true
  9687. },
  9688. {
  9689. name: "Macro",
  9690. height: math.unit(50, "meters")
  9691. },
  9692. {
  9693. name: "Megamacro",
  9694. height: math.unit(5000, "meters")
  9695. },
  9696. {
  9697. name: "Gigamacro",
  9698. height: math.unit(100000, "kilometers")
  9699. },
  9700. ]
  9701. ))
  9702. characterMakers.push(() => makeCharacter(
  9703. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9704. {
  9705. front: {
  9706. height: math.unit(2 + 7 / 12, "feet"),
  9707. weight: math.unit(32, "lbs"),
  9708. name: "Front",
  9709. image: {
  9710. source: "./media/characters/rivet/front.svg",
  9711. extra: 1716 / 1658,
  9712. bottom: 0.03
  9713. }
  9714. },
  9715. foot: {
  9716. height: math.unit(0.551, "feet"),
  9717. name: "Rivet's Foot",
  9718. image: {
  9719. source: "./media/characters/rivet/foot.svg"
  9720. },
  9721. rename: true
  9722. }
  9723. },
  9724. [
  9725. {
  9726. name: "Micro",
  9727. height: math.unit(1.5, "inches"),
  9728. },
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(2 + 7 / 12, "feet"),
  9732. default: true
  9733. },
  9734. {
  9735. name: "Macro",
  9736. height: math.unit(85, "feet")
  9737. },
  9738. {
  9739. name: "Megamacro",
  9740. height: math.unit(2.2, "km")
  9741. }
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9746. {
  9747. front: {
  9748. height: math.unit(5 + 9 / 12, "feet"),
  9749. weight: math.unit(150, "lbs"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/coffee/front.svg",
  9753. extra: 946/880,
  9754. bottom: 66/1012
  9755. }
  9756. },
  9757. foot: {
  9758. height: math.unit(1.29, "feet"),
  9759. name: "Foot",
  9760. image: {
  9761. source: "./media/characters/coffee/foot.svg"
  9762. }
  9763. },
  9764. },
  9765. [
  9766. {
  9767. name: "Micro",
  9768. height: math.unit(2, "inches"),
  9769. },
  9770. {
  9771. name: "Normal",
  9772. height: math.unit(5 + 9 / 12, "feet"),
  9773. default: true
  9774. },
  9775. {
  9776. name: "Macro",
  9777. height: math.unit(800, "feet")
  9778. },
  9779. {
  9780. name: "Megamacro",
  9781. height: math.unit(25, "miles")
  9782. }
  9783. ]
  9784. ))
  9785. characterMakers.push(() => makeCharacter(
  9786. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9787. {
  9788. front: {
  9789. height: math.unit(6, "feet"),
  9790. weight: math.unit(200, "lbs"),
  9791. name: "Front",
  9792. image: {
  9793. source: "./media/characters/chari-gal/front.svg",
  9794. extra: 735/649,
  9795. bottom: 55/790
  9796. },
  9797. form: "normal",
  9798. default: true
  9799. },
  9800. back: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(200, "lb"),
  9803. name: "Back",
  9804. image: {
  9805. source: "./media/characters/chari-gal/back.svg",
  9806. extra: 762/666,
  9807. bottom: 31/793
  9808. },
  9809. form: "normal"
  9810. },
  9811. mouth: {
  9812. height: math.unit(1.35, "feet"),
  9813. name: "Mouth",
  9814. image: {
  9815. source: "./media/characters/chari-gal/mouth.svg"
  9816. },
  9817. form: "normal"
  9818. },
  9819. gigantamax: {
  9820. height: math.unit(6 * 16, "feet"),
  9821. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9822. name: "Gigantamax",
  9823. image: {
  9824. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9825. extra: 1507/1149,
  9826. bottom: 254/1761
  9827. },
  9828. form: "gigantamax",
  9829. default: true
  9830. },
  9831. },
  9832. [
  9833. {
  9834. name: "Normal",
  9835. height: math.unit(5 + 7 / 12, "feet"),
  9836. form: "normal",
  9837. },
  9838. {
  9839. name: "Macro",
  9840. height: math.unit(200, "feet"),
  9841. default: true,
  9842. form: "normal"
  9843. },
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9847. form: "gigantamax",
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(16 * 200, "feet"),
  9852. default: true,
  9853. form: "gigantamax"
  9854. },
  9855. ],
  9856. {
  9857. "normal": {
  9858. name: "Normal",
  9859. default: true
  9860. },
  9861. "gigantamax": {
  9862. name: "Gigantamax",
  9863. },
  9864. }
  9865. ))
  9866. characterMakers.push(() => makeCharacter(
  9867. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9868. {
  9869. front: {
  9870. height: math.unit(6, "feet"),
  9871. weight: math.unit(150, "lbs"),
  9872. name: "Front",
  9873. image: {
  9874. source: "./media/characters/nova/front.svg",
  9875. extra: 5000 / 4722,
  9876. bottom: 0.02
  9877. }
  9878. }
  9879. },
  9880. [
  9881. {
  9882. name: "Micro-",
  9883. height: math.unit(0.8, "inches")
  9884. },
  9885. {
  9886. name: "Micro",
  9887. height: math.unit(2, "inches"),
  9888. default: true
  9889. },
  9890. ]
  9891. ))
  9892. characterMakers.push(() => makeCharacter(
  9893. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9894. {
  9895. koboldFront: {
  9896. height: math.unit(3 + 1 / 12, "feet"),
  9897. weight: math.unit(21.7, "lbs"),
  9898. name: "Front",
  9899. image: {
  9900. source: "./media/characters/argent/kobold-front.svg",
  9901. extra: 1471 / 1331,
  9902. bottom: 100.8 / 1575.5
  9903. },
  9904. form: "kobold",
  9905. default: true
  9906. },
  9907. dragonFront: {
  9908. height: math.unit(75, "inches"),
  9909. name: "Front",
  9910. image: {
  9911. source: "./media/characters/argent/dragon-front.svg",
  9912. extra: 1389/1248,
  9913. bottom: 54/1443
  9914. },
  9915. form: "dragon",
  9916. },
  9917. dragonBack: {
  9918. height: math.unit(75, "inches"),
  9919. name: "Back",
  9920. image: {
  9921. source: "./media/characters/argent/dragon-back.svg",
  9922. extra: 1399/1271,
  9923. bottom: 23/1422
  9924. },
  9925. form: "dragon",
  9926. },
  9927. dragonDressed: {
  9928. height: math.unit(75, "inches"),
  9929. name: "Dressed",
  9930. image: {
  9931. source: "./media/characters/argent/dragon-dressed.svg",
  9932. extra: 1350/1215,
  9933. bottom: 26/1376
  9934. },
  9935. form: "dragon"
  9936. },
  9937. dragonHead: {
  9938. height: math.unit(23.5, "inches"),
  9939. name: "Head",
  9940. image: {
  9941. source: "./media/characters/argent/dragon-head.svg"
  9942. },
  9943. form: "dragon",
  9944. },
  9945. },
  9946. [
  9947. {
  9948. name: "Micro",
  9949. height: math.unit(2, "inches"),
  9950. form: "kobold",
  9951. },
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(3 + 1 / 12, "feet"),
  9955. form: "kobold",
  9956. default: true
  9957. },
  9958. {
  9959. name: "Macro",
  9960. height: math.unit(120, "feet"),
  9961. form: "kobold",
  9962. },
  9963. {
  9964. name: "Speck",
  9965. height: math.unit(1, "mm"),
  9966. form: "dragon",
  9967. },
  9968. {
  9969. name: "Tiny",
  9970. height: math.unit(1, "cm"),
  9971. form: "dragon",
  9972. },
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(5, "cm"),
  9976. form: "dragon",
  9977. },
  9978. {
  9979. name: "Normal",
  9980. height: math.unit(75, "inches"),
  9981. form: "dragon",
  9982. default: true
  9983. },
  9984. {
  9985. name: "Extra Tall",
  9986. height: math.unit(9, "feet"),
  9987. form: "dragon",
  9988. },
  9989. {
  9990. name: "Inconvenient",
  9991. height: math.unit(5, "meters"),
  9992. form: "dragon",
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(70, "meters"),
  9997. form: "dragon",
  9998. },
  9999. {
  10000. name: "Macro+",
  10001. height: math.unit(250, "meters"),
  10002. form: "dragon",
  10003. },
  10004. {
  10005. name: "Megamacro",
  10006. height: math.unit(20, "km"),
  10007. form: "dragon",
  10008. },
  10009. {
  10010. name: "Mountainous",
  10011. height: math.unit(100, "km"),
  10012. form: "dragon",
  10013. },
  10014. {
  10015. name: "Continental",
  10016. height: math.unit(2, "megameters"),
  10017. form: "dragon",
  10018. },
  10019. {
  10020. name: "Too Big",
  10021. height: math.unit(900, "megameters"),
  10022. form: "dragon",
  10023. },
  10024. ],
  10025. {
  10026. "kobold": {
  10027. name: "Kobold",
  10028. default: true
  10029. },
  10030. "dragon": {
  10031. name: "Dragon",
  10032. },
  10033. }
  10034. ))
  10035. characterMakers.push(() => makeCharacter(
  10036. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10037. {
  10038. lamp: {
  10039. height: math.unit(7 * 1559 / 989, "feet"),
  10040. name: "Magic Lamp",
  10041. image: {
  10042. source: "./media/characters/mira-al-cul/lamp.svg",
  10043. extra: 1617 / 1559
  10044. }
  10045. },
  10046. front: {
  10047. height: math.unit(7, "feet"),
  10048. name: "Front",
  10049. image: {
  10050. source: "./media/characters/mira-al-cul/front.svg",
  10051. extra: 1044 / 990
  10052. }
  10053. },
  10054. },
  10055. [
  10056. {
  10057. name: "Heavily Restricted",
  10058. height: math.unit(7 * 1559 / 989, "feet")
  10059. },
  10060. {
  10061. name: "Freshly Freed",
  10062. height: math.unit(50 * 1559 / 989, "feet")
  10063. },
  10064. {
  10065. name: "World Encompassing",
  10066. height: math.unit(10000 * 1559 / 989, "miles")
  10067. },
  10068. {
  10069. name: "Galactic",
  10070. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10071. },
  10072. {
  10073. name: "Palmed Universe",
  10074. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10075. default: true
  10076. },
  10077. {
  10078. name: "Multiversal Matriarch",
  10079. height: math.unit(8.87e10, "yottameters")
  10080. },
  10081. {
  10082. name: "Void Mother",
  10083. height: math.unit(3.14e110, "yottaparsecs")
  10084. },
  10085. {
  10086. name: "Toying with Transcendence",
  10087. height: math.unit(1e307, "meters")
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10093. {
  10094. front: {
  10095. height: math.unit(17 + 1 / 12, "feet"),
  10096. weight: math.unit(476.2 * 5, "lbs"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/kuro-shi-uchū/front.svg",
  10100. extra: 2329 / 1835,
  10101. bottom: 0.02
  10102. }
  10103. },
  10104. },
  10105. [
  10106. {
  10107. name: "Micro",
  10108. height: math.unit(2, "inches")
  10109. },
  10110. {
  10111. name: "Normal",
  10112. height: math.unit(12, "meters")
  10113. },
  10114. {
  10115. name: "Planetary",
  10116. height: math.unit(0.00929, "AU"),
  10117. default: true
  10118. },
  10119. {
  10120. name: "Universal",
  10121. height: math.unit(20, "gigaparsecs")
  10122. },
  10123. ]
  10124. ))
  10125. characterMakers.push(() => makeCharacter(
  10126. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10127. {
  10128. front: {
  10129. height: math.unit(5 + 2 / 12, "feet"),
  10130. weight: math.unit(120, "lbs"),
  10131. name: "Front",
  10132. image: {
  10133. source: "./media/characters/katherine/front.svg",
  10134. extra: 2075 / 1969
  10135. }
  10136. },
  10137. dress: {
  10138. height: math.unit(5 + 2 / 12, "feet"),
  10139. weight: math.unit(120, "lbs"),
  10140. name: "Dress",
  10141. image: {
  10142. source: "./media/characters/katherine/dress.svg",
  10143. extra: 2258 / 2064
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(1, "inches"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Normal",
  10155. height: math.unit(5 + 2 / 12, "feet")
  10156. },
  10157. {
  10158. name: "Macro",
  10159. height: math.unit(100, "meters")
  10160. },
  10161. {
  10162. name: "Megamacro",
  10163. height: math.unit(80, "miles")
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(7 + 8 / 12, "feet"),
  10172. weight: math.unit(250, "lbs"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/yevis/front.svg",
  10176. extra: 1938 / 1755
  10177. }
  10178. }
  10179. },
  10180. [
  10181. {
  10182. name: "Mortal",
  10183. height: math.unit(7 + 8 / 12, "feet")
  10184. },
  10185. {
  10186. name: "Battle",
  10187. height: math.unit(25 + 11 / 12, "feet")
  10188. },
  10189. {
  10190. name: "Wrath",
  10191. height: math.unit(1654 + 11 / 12, "feet")
  10192. },
  10193. {
  10194. name: "Planet Destroyer",
  10195. height: math.unit(12000, "miles")
  10196. },
  10197. {
  10198. name: "Galaxy Conqueror",
  10199. height: math.unit(1.45, "zettameters"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Universal War",
  10204. height: math.unit(184, "gigaparsecs")
  10205. },
  10206. {
  10207. name: "Eternity War",
  10208. height: math.unit(1.98e55, "yottaparsecs")
  10209. },
  10210. ]
  10211. ))
  10212. characterMakers.push(() => makeCharacter(
  10213. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10214. {
  10215. front: {
  10216. height: math.unit(5 + 8 / 12, "feet"),
  10217. weight: math.unit(63, "kg"),
  10218. name: "Front",
  10219. image: {
  10220. source: "./media/characters/xavier/front.svg",
  10221. extra: 944 / 883
  10222. }
  10223. },
  10224. frontStretch: {
  10225. height: math.unit(5 + 8 / 12, "feet"),
  10226. weight: math.unit(63, "kg"),
  10227. name: "Stretching",
  10228. image: {
  10229. source: "./media/characters/xavier/front-stretch.svg",
  10230. extra: 962 / 820
  10231. }
  10232. },
  10233. },
  10234. [
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(5 + 8 / 12, "feet")
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(100, "meters"),
  10242. default: true
  10243. },
  10244. {
  10245. name: "McLargeHuge",
  10246. height: math.unit(10, "miles")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(5 + 5 / 12, "feet"),
  10255. weight: math.unit(150, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/joshii/front.svg",
  10259. extra: 765 / 653,
  10260. bottom: 51 / 816
  10261. }
  10262. },
  10263. foot: {
  10264. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10265. name: "Foot",
  10266. image: {
  10267. source: "./media/characters/joshii/foot.svg"
  10268. }
  10269. },
  10270. },
  10271. [
  10272. {
  10273. name: "Micro",
  10274. height: math.unit(2, "inches")
  10275. },
  10276. {
  10277. name: "Normal",
  10278. height: math.unit(5 + 5 / 12, "feet")
  10279. },
  10280. {
  10281. name: "Macro",
  10282. height: math.unit(785, "feet"),
  10283. default: true
  10284. },
  10285. {
  10286. name: "Megamacro",
  10287. height: math.unit(24.5, "miles")
  10288. },
  10289. ]
  10290. ))
  10291. characterMakers.push(() => makeCharacter(
  10292. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10293. {
  10294. front: {
  10295. height: math.unit(6, "feet"),
  10296. weight: math.unit(150, "lb"),
  10297. name: "Front",
  10298. image: {
  10299. source: "./media/characters/goddess-elizabeth/front.svg",
  10300. extra: 1800 / 1525,
  10301. bottom: 0.005
  10302. }
  10303. },
  10304. foot: {
  10305. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10306. name: "Foot",
  10307. image: {
  10308. source: "./media/characters/goddess-elizabeth/foot.svg"
  10309. }
  10310. },
  10311. mouth: {
  10312. height: math.unit(6, "feet"),
  10313. name: "Mouth",
  10314. image: {
  10315. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10316. }
  10317. },
  10318. },
  10319. [
  10320. {
  10321. name: "Micro",
  10322. height: math.unit(12, "feet")
  10323. },
  10324. {
  10325. name: "Normal",
  10326. height: math.unit(80, "miles"),
  10327. default: true
  10328. },
  10329. {
  10330. name: "Macro",
  10331. height: math.unit(15000, "parsecs")
  10332. },
  10333. ]
  10334. ))
  10335. characterMakers.push(() => makeCharacter(
  10336. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10337. {
  10338. front: {
  10339. height: math.unit(5 + 9 / 12, "feet"),
  10340. weight: math.unit(144, "lb"),
  10341. name: "Front",
  10342. image: {
  10343. source: "./media/characters/kara/front.svg"
  10344. }
  10345. },
  10346. feet: {
  10347. height: math.unit(6 / 6.765, "feet"),
  10348. name: "Kara's Feet",
  10349. rename: true,
  10350. image: {
  10351. source: "./media/characters/kara/feet.svg"
  10352. }
  10353. },
  10354. },
  10355. [
  10356. {
  10357. name: "Normal",
  10358. height: math.unit(5 + 9 / 12, "feet")
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(174, "feet"),
  10363. default: true
  10364. },
  10365. ]
  10366. ))
  10367. characterMakers.push(() => makeCharacter(
  10368. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10369. {
  10370. front: {
  10371. height: math.unit(18, "feet"),
  10372. weight: math.unit(4050, "lb"),
  10373. name: "Front",
  10374. image: {
  10375. source: "./media/characters/tyrone/front.svg",
  10376. extra: 2405 / 2270,
  10377. bottom: 182 / 2587
  10378. }
  10379. },
  10380. },
  10381. [
  10382. {
  10383. name: "Normal",
  10384. height: math.unit(18, "feet"),
  10385. default: true
  10386. },
  10387. {
  10388. name: "Macro",
  10389. height: math.unit(300, "feet")
  10390. },
  10391. {
  10392. name: "Megamacro",
  10393. height: math.unit(15, "km")
  10394. },
  10395. {
  10396. name: "Gigamacro",
  10397. height: math.unit(500, "km")
  10398. },
  10399. {
  10400. name: "Teramacro",
  10401. height: math.unit(0.5, "gigameters")
  10402. },
  10403. {
  10404. name: "Omnimacro",
  10405. height: math.unit(1e252, "yottauniverse")
  10406. },
  10407. ]
  10408. ))
  10409. characterMakers.push(() => makeCharacter(
  10410. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10411. {
  10412. front: {
  10413. height: math.unit(7 + 8 / 12, "feet"),
  10414. weight: math.unit(120, "lb"),
  10415. name: "Front",
  10416. image: {
  10417. source: "./media/characters/danny/front.svg",
  10418. extra: 1490 / 1350
  10419. }
  10420. },
  10421. back: {
  10422. height: math.unit(7 + 8 / 12, "feet"),
  10423. weight: math.unit(120, "lb"),
  10424. name: "Back",
  10425. image: {
  10426. source: "./media/characters/danny/back.svg",
  10427. extra: 1490 / 1350
  10428. }
  10429. },
  10430. },
  10431. [
  10432. {
  10433. name: "Normal",
  10434. height: math.unit(7 + 8 / 12, "feet"),
  10435. default: true
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(3.5, "inches"),
  10444. weight: math.unit(19, "grams"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/mallow/front.svg",
  10448. extra: 471 / 431
  10449. }
  10450. },
  10451. back: {
  10452. height: math.unit(3.5, "inches"),
  10453. weight: math.unit(19, "grams"),
  10454. name: "Back",
  10455. image: {
  10456. source: "./media/characters/mallow/back.svg",
  10457. extra: 471 / 431
  10458. }
  10459. },
  10460. },
  10461. [
  10462. {
  10463. name: "Normal",
  10464. height: math.unit(3.5, "inches"),
  10465. default: true
  10466. },
  10467. ]
  10468. ))
  10469. characterMakers.push(() => makeCharacter(
  10470. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10471. {
  10472. front: {
  10473. height: math.unit(9, "feet"),
  10474. weight: math.unit(230, "kg"),
  10475. name: "Front",
  10476. image: {
  10477. source: "./media/characters/starry-aqua/front.svg"
  10478. }
  10479. },
  10480. back: {
  10481. height: math.unit(9, "feet"),
  10482. weight: math.unit(230, "kg"),
  10483. name: "Back",
  10484. image: {
  10485. source: "./media/characters/starry-aqua/back.svg"
  10486. }
  10487. },
  10488. hand: {
  10489. height: math.unit(9 * 0.1168, "feet"),
  10490. name: "Hand",
  10491. image: {
  10492. source: "./media/characters/starry-aqua/hand.svg"
  10493. }
  10494. },
  10495. foot: {
  10496. height: math.unit(9 * 0.18, "feet"),
  10497. name: "Foot",
  10498. image: {
  10499. source: "./media/characters/starry-aqua/foot.svg"
  10500. }
  10501. }
  10502. },
  10503. [
  10504. {
  10505. name: "Micro",
  10506. height: math.unit(3, "inches")
  10507. },
  10508. {
  10509. name: "Normal",
  10510. height: math.unit(9, "feet")
  10511. },
  10512. {
  10513. name: "Macro",
  10514. height: math.unit(300, "feet"),
  10515. default: true
  10516. },
  10517. {
  10518. name: "Megamacro",
  10519. height: math.unit(3200, "feet")
  10520. }
  10521. ]
  10522. ))
  10523. characterMakers.push(() => makeCharacter(
  10524. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10525. {
  10526. front: {
  10527. height: math.unit(15, "feet"),
  10528. weight: math.unit(5026, "lb"),
  10529. name: "Front",
  10530. image: {
  10531. source: "./media/characters/luka-towers/front.svg",
  10532. extra: 1269/1133,
  10533. bottom: 51/1320
  10534. }
  10535. },
  10536. },
  10537. [
  10538. {
  10539. name: "Normal",
  10540. height: math.unit(15, "feet"),
  10541. default: true
  10542. },
  10543. {
  10544. name: "Minimacro",
  10545. height: math.unit(25, "feet")
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(320, "feet")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(35000, "feet")
  10554. },
  10555. {
  10556. name: "Gigamacro",
  10557. height: math.unit(4000, "miles")
  10558. },
  10559. {
  10560. name: "Teramacro",
  10561. height: math.unit(15000, "miles")
  10562. },
  10563. ]
  10564. ))
  10565. characterMakers.push(() => makeCharacter(
  10566. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10567. {
  10568. front: {
  10569. height: math.unit(6, "feet"),
  10570. weight: math.unit(150, "lb"),
  10571. name: "Front",
  10572. image: {
  10573. source: "./media/characters/natalie-nightring/front.svg",
  10574. extra: 1,
  10575. bottom: 0.06
  10576. }
  10577. },
  10578. },
  10579. [
  10580. {
  10581. name: "Uh Oh",
  10582. height: math.unit(0.1, "mm")
  10583. },
  10584. {
  10585. name: "Small",
  10586. height: math.unit(3, "inches")
  10587. },
  10588. {
  10589. name: "Human Scale",
  10590. height: math.unit(6, "feet")
  10591. },
  10592. {
  10593. name: "Librarian",
  10594. height: math.unit(50, "feet"),
  10595. default: true
  10596. },
  10597. {
  10598. name: "Immense",
  10599. height: math.unit(200, "miles")
  10600. },
  10601. ]
  10602. ))
  10603. characterMakers.push(() => makeCharacter(
  10604. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10605. {
  10606. front: {
  10607. height: math.unit(6, "feet"),
  10608. weight: math.unit(180, "lbs"),
  10609. name: "Front",
  10610. image: {
  10611. source: "./media/characters/danni-rosie/front.svg",
  10612. extra: 1260 / 1128,
  10613. bottom: 0.022
  10614. }
  10615. },
  10616. },
  10617. [
  10618. {
  10619. name: "Micro",
  10620. height: math.unit(2, "inches"),
  10621. default: true
  10622. },
  10623. ]
  10624. ))
  10625. characterMakers.push(() => makeCharacter(
  10626. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10627. {
  10628. front: {
  10629. height: math.unit(5 + 9 / 12, "feet"),
  10630. weight: math.unit(220, "lb"),
  10631. name: "Front",
  10632. image: {
  10633. source: "./media/characters/samantha-kruse/front.svg",
  10634. extra: (985 / 935),
  10635. bottom: 0.03
  10636. }
  10637. },
  10638. frontUndressed: {
  10639. height: math.unit(5 + 9 / 12, "feet"),
  10640. weight: math.unit(220, "lb"),
  10641. name: "Front (Undressed)",
  10642. image: {
  10643. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10644. extra: (973 / 923),
  10645. bottom: 0.025
  10646. }
  10647. },
  10648. fat: {
  10649. height: math.unit(5 + 9 / 12, "feet"),
  10650. weight: math.unit(900, "lb"),
  10651. name: "Front (Fat)",
  10652. image: {
  10653. source: "./media/characters/samantha-kruse/fat.svg",
  10654. extra: 2688 / 2561
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(5 + 9 / 12, "feet"),
  10662. default: true
  10663. }
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10668. {
  10669. back: {
  10670. height: math.unit(5 + 4 / 12, "feet"),
  10671. weight: math.unit(4963, "lb"),
  10672. name: "Back",
  10673. image: {
  10674. source: "./media/characters/amelia-rosie/back.svg",
  10675. extra: 1113 / 963,
  10676. bottom: 0.01
  10677. }
  10678. },
  10679. },
  10680. [
  10681. {
  10682. name: "Level 0",
  10683. height: math.unit(5 + 4 / 12, "feet")
  10684. },
  10685. {
  10686. name: "Level 1",
  10687. height: math.unit(164597, "feet"),
  10688. default: true
  10689. },
  10690. {
  10691. name: "Level 2",
  10692. height: math.unit(956243, "miles")
  10693. },
  10694. {
  10695. name: "Level 3",
  10696. height: math.unit(29421709423, "miles")
  10697. },
  10698. {
  10699. name: "Level 4",
  10700. height: math.unit(154, "lightyears")
  10701. },
  10702. {
  10703. name: "Level 5",
  10704. height: math.unit(4738272, "lightyears")
  10705. },
  10706. {
  10707. name: "Level 6",
  10708. height: math.unit(145787152896, "lightyears")
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(5 + 11 / 12, "feet"),
  10717. weight: math.unit(65, "kg"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/rook-kitara/front.svg",
  10721. extra: 1347 / 1274,
  10722. bottom: 0.005
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Totally Unfair",
  10729. height: math.unit(1.8, "mm")
  10730. },
  10731. {
  10732. name: "Lap Rookie",
  10733. height: math.unit(1.4, "feet")
  10734. },
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(5 + 11 / 12, "feet"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "How Did This Happen",
  10742. height: math.unit(80, "miles")
  10743. }
  10744. ]
  10745. ))
  10746. characterMakers.push(() => makeCharacter(
  10747. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10748. {
  10749. front: {
  10750. height: math.unit(7, "feet"),
  10751. weight: math.unit(300, "lb"),
  10752. name: "Front",
  10753. image: {
  10754. source: "./media/characters/pisces/front.svg",
  10755. extra: 2255 / 2115,
  10756. bottom: 0.03
  10757. }
  10758. },
  10759. back: {
  10760. height: math.unit(7, "feet"),
  10761. weight: math.unit(300, "lb"),
  10762. name: "Back",
  10763. image: {
  10764. source: "./media/characters/pisces/back.svg",
  10765. extra: 2146 / 2055,
  10766. bottom: 0.04
  10767. }
  10768. },
  10769. },
  10770. [
  10771. {
  10772. name: "Normal",
  10773. height: math.unit(7, "feet"),
  10774. default: true
  10775. },
  10776. {
  10777. name: "Swimming Pool",
  10778. height: math.unit(12.2, "meters")
  10779. },
  10780. {
  10781. name: "Olympic Swimming Pool",
  10782. height: math.unit(56.3, "meters")
  10783. },
  10784. {
  10785. name: "Lake Superior",
  10786. height: math.unit(93900, "meters")
  10787. },
  10788. {
  10789. name: "Mediterranean Sea",
  10790. height: math.unit(644457, "meters")
  10791. },
  10792. {
  10793. name: "World's Oceans",
  10794. height: math.unit(4567491, "meters")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10800. {
  10801. front: {
  10802. height: math.unit(2.3, "meters"),
  10803. weight: math.unit(120, "kg"),
  10804. name: "Front",
  10805. image: {
  10806. source: "./media/characters/zelas/front.svg"
  10807. }
  10808. },
  10809. side: {
  10810. height: math.unit(2.3, "meters"),
  10811. weight: math.unit(120, "kg"),
  10812. name: "Side",
  10813. image: {
  10814. source: "./media/characters/zelas/side.svg"
  10815. }
  10816. },
  10817. back: {
  10818. height: math.unit(2.3, "meters"),
  10819. weight: math.unit(120, "kg"),
  10820. name: "Back",
  10821. image: {
  10822. source: "./media/characters/zelas/back.svg"
  10823. }
  10824. },
  10825. foot: {
  10826. height: math.unit(1.116, "feet"),
  10827. name: "Foot",
  10828. image: {
  10829. source: "./media/characters/zelas/foot.svg"
  10830. }
  10831. },
  10832. },
  10833. [
  10834. {
  10835. name: "Normal",
  10836. height: math.unit(2.3, "meters")
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(30, "meters"),
  10841. default: true
  10842. },
  10843. ]
  10844. ))
  10845. characterMakers.push(() => makeCharacter(
  10846. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10847. {
  10848. front: {
  10849. height: math.unit(1, "inch"),
  10850. weight: math.unit(0.21, "grams"),
  10851. name: "Front",
  10852. image: {
  10853. source: "./media/characters/talbot/front.svg",
  10854. extra: 594 / 544
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Micro",
  10861. height: math.unit(1, "inch"),
  10862. default: true
  10863. },
  10864. ]
  10865. ))
  10866. characterMakers.push(() => makeCharacter(
  10867. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10868. {
  10869. front: {
  10870. height: math.unit(3 + 3 / 12, "feet"),
  10871. weight: math.unit(51.8, "lb"),
  10872. name: "Front",
  10873. image: {
  10874. source: "./media/characters/fliss/front.svg",
  10875. extra: 840 / 640
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Teeny Tiny",
  10882. height: math.unit(1, "mm")
  10883. },
  10884. {
  10885. name: "Small",
  10886. height: math.unit(1, "inch"),
  10887. default: true
  10888. },
  10889. {
  10890. name: "Standard Sylveon",
  10891. height: math.unit(3 + 3 / 12, "feet")
  10892. },
  10893. {
  10894. name: "Large Nuisance",
  10895. height: math.unit(33, "feet")
  10896. },
  10897. {
  10898. name: "City Filler",
  10899. height: math.unit(3000, "feet")
  10900. },
  10901. {
  10902. name: "New Horizon",
  10903. height: math.unit(6000, "miles")
  10904. },
  10905. ]
  10906. ))
  10907. characterMakers.push(() => makeCharacter(
  10908. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10909. {
  10910. front: {
  10911. height: math.unit(5, "cm"),
  10912. weight: math.unit(1.94, "g"),
  10913. name: "Front",
  10914. image: {
  10915. source: "./media/characters/fleta/front.svg",
  10916. extra: 835 / 803
  10917. }
  10918. },
  10919. back: {
  10920. height: math.unit(5, "cm"),
  10921. weight: math.unit(1.94, "g"),
  10922. name: "Back",
  10923. image: {
  10924. source: "./media/characters/fleta/back.svg",
  10925. extra: 835 / 803
  10926. }
  10927. },
  10928. },
  10929. [
  10930. {
  10931. name: "Micro",
  10932. height: math.unit(5, "cm"),
  10933. default: true
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(225, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/dominic/front.svg",
  10946. extra: 1770 / 1620,
  10947. bottom: 0.025
  10948. }
  10949. },
  10950. back: {
  10951. height: math.unit(6, "feet"),
  10952. weight: math.unit(225, "lb"),
  10953. name: "Back",
  10954. image: {
  10955. source: "./media/characters/dominic/back.svg",
  10956. extra: 1745 / 1620,
  10957. bottom: 0.065
  10958. }
  10959. },
  10960. },
  10961. [
  10962. {
  10963. name: "Nano",
  10964. height: math.unit(0.1, "mm")
  10965. },
  10966. {
  10967. name: "Micro-",
  10968. height: math.unit(1, "mm")
  10969. },
  10970. {
  10971. name: "Micro",
  10972. height: math.unit(4, "inches")
  10973. },
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(6 + 4 / 12, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Macro",
  10981. height: math.unit(115, "feet")
  10982. },
  10983. {
  10984. name: "Macro+",
  10985. height: math.unit(955, "feet")
  10986. },
  10987. {
  10988. name: "Megamacro",
  10989. height: math.unit(8990, "feet")
  10990. },
  10991. {
  10992. name: "Gigmacro",
  10993. height: math.unit(9310, "miles")
  10994. },
  10995. {
  10996. name: "Teramacro",
  10997. height: math.unit(1567005010, "miles")
  10998. },
  10999. {
  11000. name: "Examacro",
  11001. height: math.unit(1425, "parsecs")
  11002. },
  11003. ]
  11004. ))
  11005. characterMakers.push(() => makeCharacter(
  11006. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  11007. {
  11008. front: {
  11009. height: math.unit(400, "feet"),
  11010. weight: math.unit(44444444, "lb"),
  11011. name: "Front",
  11012. image: {
  11013. source: "./media/characters/major-colonel/front.svg"
  11014. }
  11015. },
  11016. back: {
  11017. height: math.unit(400, "feet"),
  11018. weight: math.unit(44444444, "lb"),
  11019. name: "Back",
  11020. image: {
  11021. source: "./media/characters/major-colonel/back.svg"
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Macro",
  11028. height: math.unit(400, "feet"),
  11029. default: true
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11035. {
  11036. catFront: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(120, "lb"),
  11039. name: "Front (Cat Side)",
  11040. image: {
  11041. source: "./media/characters/axel-lycan/cat-front.svg",
  11042. extra: 430 / 402,
  11043. bottom: 43 / 472.35
  11044. }
  11045. },
  11046. catBack: {
  11047. height: math.unit(6, "feet"),
  11048. weight: math.unit(120, "lb"),
  11049. name: "Back (Cat Side)",
  11050. image: {
  11051. source: "./media/characters/axel-lycan/cat-back.svg",
  11052. extra: 447 / 419,
  11053. bottom: 23.3 / 469
  11054. }
  11055. },
  11056. wolfFront: {
  11057. height: math.unit(6, "feet"),
  11058. weight: math.unit(120, "lb"),
  11059. name: "Front (Wolf Side)",
  11060. image: {
  11061. source: "./media/characters/axel-lycan/wolf-front.svg",
  11062. extra: 485 / 456,
  11063. bottom: 19 / 504
  11064. }
  11065. },
  11066. wolfBack: {
  11067. height: math.unit(6, "feet"),
  11068. weight: math.unit(120, "lb"),
  11069. name: "Back (Wolf Side)",
  11070. image: {
  11071. source: "./media/characters/axel-lycan/wolf-back.svg",
  11072. extra: 475 / 438,
  11073. bottom: 39.2 / 514
  11074. }
  11075. },
  11076. },
  11077. [
  11078. {
  11079. name: "Macro",
  11080. height: math.unit(1, "km"),
  11081. default: true
  11082. },
  11083. ]
  11084. ))
  11085. characterMakers.push(() => makeCharacter(
  11086. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11087. {
  11088. front: {
  11089. height: math.unit(5 + 9 / 12, "feet"),
  11090. weight: math.unit(175, "lb"),
  11091. name: "Front",
  11092. image: {
  11093. source: "./media/characters/vanrel-hyena/front.svg",
  11094. extra: 1086 / 1010,
  11095. bottom: 0.04
  11096. }
  11097. },
  11098. },
  11099. [
  11100. {
  11101. name: "Normal",
  11102. height: math.unit(5 + 9 / 12, "feet"),
  11103. default: true
  11104. },
  11105. ]
  11106. ))
  11107. characterMakers.push(() => makeCharacter(
  11108. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11109. {
  11110. front: {
  11111. height: math.unit(6, "feet"),
  11112. weight: math.unit(103, "lb"),
  11113. name: "Front",
  11114. image: {
  11115. source: "./media/characters/abbott-absol/front.svg",
  11116. extra: 765/694,
  11117. bottom: 47/812
  11118. }
  11119. },
  11120. },
  11121. [
  11122. {
  11123. name: "Megamicro",
  11124. height: math.unit(0.1, "mm")
  11125. },
  11126. {
  11127. name: "Micro",
  11128. height: math.unit(1, "inch")
  11129. },
  11130. {
  11131. name: "Normal",
  11132. height: math.unit(6, "feet"),
  11133. default: true
  11134. },
  11135. ]
  11136. ))
  11137. characterMakers.push(() => makeCharacter(
  11138. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11139. {
  11140. front: {
  11141. height: math.unit(6, "feet"),
  11142. weight: math.unit(264, "lb"),
  11143. name: "Front",
  11144. image: {
  11145. source: "./media/characters/hector/front.svg",
  11146. extra: 2280 / 2130,
  11147. bottom: 0.07
  11148. }
  11149. },
  11150. },
  11151. [
  11152. {
  11153. name: "Normal",
  11154. height: math.unit(12.25, "foot"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(160, "feet")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(6, "feet"),
  11168. weight: math.unit(150, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/sal/front.svg",
  11172. extra: 1846 / 1699,
  11173. bottom: 0.04
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Megamacro",
  11180. height: math.unit(10, "miles"),
  11181. default: true
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11187. {
  11188. front: {
  11189. height: math.unit(3, "meters"),
  11190. weight: math.unit(450, "kg"),
  11191. name: "front",
  11192. image: {
  11193. source: "./media/characters/ranger/front.svg",
  11194. extra: 2401 / 2243,
  11195. bottom: 0.05
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(3, "meters"),
  11203. default: true
  11204. },
  11205. ]
  11206. ))
  11207. characterMakers.push(() => makeCharacter(
  11208. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11209. {
  11210. front: {
  11211. height: math.unit(14, "feet"),
  11212. weight: math.unit(800, "kg"),
  11213. name: "Front",
  11214. image: {
  11215. source: "./media/characters/theresa/front.svg",
  11216. extra: 3575 / 3346,
  11217. bottom: 0.03
  11218. }
  11219. },
  11220. },
  11221. [
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(14, "feet"),
  11225. default: true
  11226. },
  11227. ]
  11228. ))
  11229. characterMakers.push(() => makeCharacter(
  11230. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11231. {
  11232. front: {
  11233. height: math.unit(6, "feet"),
  11234. weight: math.unit(3, "kg"),
  11235. name: "Front",
  11236. image: {
  11237. source: "./media/characters/ine/front.svg",
  11238. extra: 678 / 539,
  11239. bottom: 0.023
  11240. }
  11241. },
  11242. },
  11243. [
  11244. {
  11245. name: "Normal",
  11246. height: math.unit(2.265, "feet"),
  11247. default: true
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(5, "feet"),
  11256. weight: math.unit(30, "kg"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/vial/front.svg",
  11260. extra: 1365 / 1277,
  11261. bottom: 0.04
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(5, "feet"),
  11269. default: true
  11270. },
  11271. ]
  11272. ))
  11273. characterMakers.push(() => makeCharacter(
  11274. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11275. {
  11276. side: {
  11277. height: math.unit(3.4, "meters"),
  11278. weight: math.unit(1000, "lb"),
  11279. name: "Side",
  11280. image: {
  11281. source: "./media/characters/rovoska/side.svg",
  11282. extra: 4403 / 1515
  11283. }
  11284. },
  11285. },
  11286. [
  11287. {
  11288. name: "Normal",
  11289. height: math.unit(3.4, "meters"),
  11290. default: true
  11291. },
  11292. ]
  11293. ))
  11294. characterMakers.push(() => makeCharacter(
  11295. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11296. {
  11297. front: {
  11298. height: math.unit(8, "feet"),
  11299. weight: math.unit(315, "lb"),
  11300. name: "Front",
  11301. image: {
  11302. source: "./media/characters/gunner-rotthbauer/front.svg"
  11303. }
  11304. },
  11305. back: {
  11306. height: math.unit(8, "feet"),
  11307. weight: math.unit(315, "lb"),
  11308. name: "Back",
  11309. image: {
  11310. source: "./media/characters/gunner-rotthbauer/back.svg"
  11311. }
  11312. },
  11313. },
  11314. [
  11315. {
  11316. name: "Micro",
  11317. height: math.unit(3.5, "inches")
  11318. },
  11319. {
  11320. name: "Normal",
  11321. height: math.unit(8, "feet"),
  11322. default: true
  11323. },
  11324. {
  11325. name: "Macro",
  11326. height: math.unit(250, "feet")
  11327. },
  11328. {
  11329. name: "Megamacro",
  11330. height: math.unit(1, "AU")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11336. {
  11337. front: {
  11338. height: math.unit(5 + 5 / 12, "feet"),
  11339. weight: math.unit(140, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/allatia/front.svg",
  11343. extra: 1227 / 1180,
  11344. bottom: 0.027
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Normal",
  11351. height: math.unit(5 + 5 / 12, "feet")
  11352. },
  11353. {
  11354. name: "Macro",
  11355. height: math.unit(250, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Megamacro",
  11360. height: math.unit(8, "miles")
  11361. }
  11362. ]
  11363. ))
  11364. characterMakers.push(() => makeCharacter(
  11365. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11366. {
  11367. front: {
  11368. height: math.unit(6, "feet"),
  11369. weight: math.unit(120, "lb"),
  11370. name: "Front",
  11371. image: {
  11372. source: "./media/characters/tene/front.svg",
  11373. extra: 814/750,
  11374. bottom: 36/850
  11375. }
  11376. },
  11377. stomping: {
  11378. height: math.unit(2.025, "meters"),
  11379. weight: math.unit(120, "lb"),
  11380. name: "Stomping",
  11381. image: {
  11382. source: "./media/characters/tene/stomping.svg",
  11383. extra: 885/821,
  11384. bottom: 15/900
  11385. }
  11386. },
  11387. sitting: {
  11388. height: math.unit(1, "meter"),
  11389. weight: math.unit(120, "lb"),
  11390. name: "Sitting",
  11391. image: {
  11392. source: "./media/characters/tene/sitting.svg",
  11393. extra: 396/366,
  11394. bottom: 79/475
  11395. }
  11396. },
  11397. smiling: {
  11398. height: math.unit(1.2, "feet"),
  11399. name: "Smiling",
  11400. image: {
  11401. source: "./media/characters/tene/smiling.svg",
  11402. extra: 1364/1071,
  11403. bottom: 0/1364
  11404. }
  11405. },
  11406. smug: {
  11407. height: math.unit(1.3, "feet"),
  11408. name: "Smug",
  11409. image: {
  11410. source: "./media/characters/tene/smug.svg",
  11411. extra: 1323/1082,
  11412. bottom: 0/1323
  11413. }
  11414. },
  11415. feral: {
  11416. height: math.unit(3.9, "feet"),
  11417. weight: math.unit(250, "lb"),
  11418. name: "Feral",
  11419. image: {
  11420. source: "./media/characters/tene/feral.svg",
  11421. extra: 717 / 458,
  11422. bottom: 0.179
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Normal",
  11429. height: math.unit(6, "feet")
  11430. },
  11431. {
  11432. name: "Macro",
  11433. height: math.unit(300, "feet"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Megamacro",
  11438. height: math.unit(5, "miles")
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11444. {
  11445. side: {
  11446. height: math.unit(6, "feet"),
  11447. name: "Side",
  11448. image: {
  11449. source: "./media/characters/evander/side.svg",
  11450. extra: 877 / 477
  11451. }
  11452. },
  11453. },
  11454. [
  11455. {
  11456. name: "Normal",
  11457. height: math.unit(0.83, "meters"),
  11458. default: true
  11459. },
  11460. ]
  11461. ))
  11462. characterMakers.push(() => makeCharacter(
  11463. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11464. {
  11465. front: {
  11466. height: math.unit(12, "feet"),
  11467. weight: math.unit(1000, "lb"),
  11468. name: "Front",
  11469. image: {
  11470. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11471. extra: 1762 / 1611
  11472. }
  11473. },
  11474. back: {
  11475. height: math.unit(12, "feet"),
  11476. weight: math.unit(1000, "lb"),
  11477. name: "Back",
  11478. image: {
  11479. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11480. extra: 1762 / 1611
  11481. }
  11482. },
  11483. },
  11484. [
  11485. {
  11486. name: "Normal",
  11487. height: math.unit(12, "feet"),
  11488. default: true
  11489. },
  11490. {
  11491. name: "Kaiju",
  11492. height: math.unit(150, "feet")
  11493. },
  11494. ]
  11495. ))
  11496. characterMakers.push(() => makeCharacter(
  11497. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11498. {
  11499. front: {
  11500. height: math.unit(5 + 11/12, "feet"),
  11501. weight: math.unit(180, "lb"),
  11502. name: "Front",
  11503. image: {
  11504. source: "./media/characters/zero-alurus/front.svg",
  11505. extra: 1032/957,
  11506. bottom: 10/1042
  11507. }
  11508. },
  11509. back: {
  11510. height: math.unit(5 + 11/12, "feet"),
  11511. weight: math.unit(180, "lb"),
  11512. name: "Back",
  11513. image: {
  11514. source: "./media/characters/zero-alurus/back.svg",
  11515. extra: 1027/950,
  11516. bottom: 12/1039
  11517. }
  11518. },
  11519. },
  11520. [
  11521. {
  11522. name: "Normal",
  11523. height: math.unit(5 + 11 / 12, "feet")
  11524. },
  11525. {
  11526. name: "Mini-Macro",
  11527. height: math.unit(25, "feet")
  11528. },
  11529. {
  11530. name: "Macro",
  11531. height: math.unit(90, "feet"),
  11532. default: true
  11533. },
  11534. {
  11535. name: "Macro+",
  11536. height: math.unit(500, "feet")
  11537. },
  11538. {
  11539. name: "Megamacro",
  11540. height: math.unit(1200, "feet")
  11541. },
  11542. ]
  11543. ))
  11544. characterMakers.push(() => makeCharacter(
  11545. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11546. {
  11547. front: {
  11548. height: math.unit(6, "feet"),
  11549. weight: math.unit(200, "lb"),
  11550. name: "Front",
  11551. image: {
  11552. source: "./media/characters/mega-shi/front.svg",
  11553. extra: 1279 / 1250,
  11554. bottom: 0.02
  11555. }
  11556. },
  11557. back: {
  11558. height: math.unit(6, "feet"),
  11559. weight: math.unit(200, "lb"),
  11560. name: "Back",
  11561. image: {
  11562. source: "./media/characters/mega-shi/back.svg",
  11563. extra: 1279 / 1250,
  11564. bottom: 0.02
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Micro",
  11571. height: math.unit(16 + 6 / 12, "feet")
  11572. },
  11573. {
  11574. name: "Third Dimension",
  11575. height: math.unit(40, "meters")
  11576. },
  11577. {
  11578. name: "Normal",
  11579. height: math.unit(660, "feet"),
  11580. default: true
  11581. },
  11582. {
  11583. name: "Megamacro",
  11584. height: math.unit(10, "miles")
  11585. },
  11586. {
  11587. name: "Planetary Launch",
  11588. height: math.unit(500, "miles")
  11589. },
  11590. {
  11591. name: "Interstellar",
  11592. height: math.unit(1e9, "miles")
  11593. },
  11594. {
  11595. name: "Leaving the Universe",
  11596. height: math.unit(1, "gigaparsec")
  11597. },
  11598. {
  11599. name: "Travelling Universes",
  11600. height: math.unit(30e15, "parsecs")
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(5 + 4/12, "feet"),
  11609. weight: math.unit(120, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/odyssey/front.svg",
  11613. extra: 1747/1571,
  11614. bottom: 47/1794
  11615. }
  11616. },
  11617. side: {
  11618. height: math.unit(5.1, "feet"),
  11619. weight: math.unit(120, "lb"),
  11620. name: "Side",
  11621. image: {
  11622. source: "./media/characters/odyssey/side.svg",
  11623. extra: 1847/1619,
  11624. bottom: 47/1894
  11625. }
  11626. },
  11627. lounging: {
  11628. height: math.unit(1.464, "feet"),
  11629. weight: math.unit(120, "lb"),
  11630. name: "Lounging",
  11631. image: {
  11632. source: "./media/characters/odyssey/lounging.svg",
  11633. extra: 1235/837,
  11634. bottom: 551/1786
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(5 + 4 / 12, "feet")
  11642. },
  11643. {
  11644. name: "Macro",
  11645. height: math.unit(1, "km")
  11646. },
  11647. {
  11648. name: "Megamacro",
  11649. height: math.unit(3000, "km")
  11650. },
  11651. {
  11652. name: "Gigamacro",
  11653. height: math.unit(1, "AU"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Omniversal",
  11658. height: math.unit(100e14, "lightyears")
  11659. },
  11660. ]
  11661. ))
  11662. characterMakers.push(() => makeCharacter(
  11663. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11664. {
  11665. front: {
  11666. height: math.unit(5 + 10/12, "feet"),
  11667. name: "Front",
  11668. image: {
  11669. source: "./media/characters/mekuto/front.svg",
  11670. extra: 875/835,
  11671. bottom: 46/921
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Minimicro",
  11678. height: math.unit(0.2, "inches")
  11679. },
  11680. {
  11681. name: "Micro",
  11682. height: math.unit(1.5, "inches")
  11683. },
  11684. {
  11685. name: "Normal",
  11686. height: math.unit(5 + 10 / 12, "feet"),
  11687. default: true
  11688. },
  11689. {
  11690. name: "Minimacro",
  11691. height: math.unit(17 + 9 / 12, "feet")
  11692. },
  11693. {
  11694. name: "Macro",
  11695. height: math.unit(177.5, "feet")
  11696. },
  11697. {
  11698. name: "Megamacro",
  11699. height: math.unit(152, "miles")
  11700. },
  11701. ]
  11702. ))
  11703. characterMakers.push(() => makeCharacter(
  11704. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11705. {
  11706. front: {
  11707. height: math.unit(6.5, "inches"),
  11708. weight: math.unit(13, "oz"),
  11709. name: "Front",
  11710. image: {
  11711. source: "./media/characters/dafydd-tomos/front.svg",
  11712. extra: 2990 / 2603,
  11713. bottom: 0.03
  11714. }
  11715. },
  11716. },
  11717. [
  11718. {
  11719. name: "Micro",
  11720. height: math.unit(6.5, "inches"),
  11721. default: true
  11722. },
  11723. ]
  11724. ))
  11725. characterMakers.push(() => makeCharacter(
  11726. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11727. {
  11728. front: {
  11729. height: math.unit(6, "feet"),
  11730. weight: math.unit(150, "lb"),
  11731. name: "Front",
  11732. image: {
  11733. source: "./media/characters/splinter/front.svg",
  11734. extra: 2990 / 2882,
  11735. bottom: 0.04
  11736. }
  11737. },
  11738. back: {
  11739. height: math.unit(6, "feet"),
  11740. weight: math.unit(150, "lb"),
  11741. name: "Back",
  11742. image: {
  11743. source: "./media/characters/splinter/back.svg",
  11744. extra: 2990 / 2882,
  11745. bottom: 0.04
  11746. }
  11747. },
  11748. },
  11749. [
  11750. {
  11751. name: "Normal",
  11752. height: math.unit(6, "feet")
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(230, "meters"),
  11757. default: true
  11758. },
  11759. ]
  11760. ))
  11761. characterMakers.push(() => makeCharacter(
  11762. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11763. {
  11764. front: {
  11765. height: math.unit(4 + 10 / 12, "feet"),
  11766. weight: math.unit(480, "lb"),
  11767. name: "Front",
  11768. image: {
  11769. source: "./media/characters/snow-gabumon/front.svg",
  11770. extra: 1140 / 963,
  11771. bottom: 0.058
  11772. }
  11773. },
  11774. back: {
  11775. height: math.unit(4 + 10 / 12, "feet"),
  11776. weight: math.unit(480, "lb"),
  11777. name: "Back",
  11778. image: {
  11779. source: "./media/characters/snow-gabumon/back.svg",
  11780. extra: 1115 / 962,
  11781. bottom: 0.041
  11782. }
  11783. },
  11784. frontUndresed: {
  11785. height: math.unit(4 + 10 / 12, "feet"),
  11786. weight: math.unit(480, "lb"),
  11787. name: "Front (Undressed)",
  11788. image: {
  11789. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11790. extra: 1061 / 960,
  11791. bottom: 0.045
  11792. }
  11793. },
  11794. },
  11795. [
  11796. {
  11797. name: "Micro",
  11798. height: math.unit(1, "inch")
  11799. },
  11800. {
  11801. name: "Normal",
  11802. height: math.unit(4 + 10 / 12, "feet"),
  11803. default: true
  11804. },
  11805. {
  11806. name: "Macro",
  11807. height: math.unit(200, "feet")
  11808. },
  11809. {
  11810. name: "Megamacro",
  11811. height: math.unit(120, "miles")
  11812. },
  11813. {
  11814. name: "Gigamacro",
  11815. height: math.unit(9800, "miles")
  11816. },
  11817. ]
  11818. ))
  11819. characterMakers.push(() => makeCharacter(
  11820. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11821. {
  11822. front: {
  11823. height: math.unit(1.7, "meters"),
  11824. weight: math.unit(140, "lb"),
  11825. name: "Front",
  11826. image: {
  11827. source: "./media/characters/moody/front.svg",
  11828. extra: 3226 / 3007,
  11829. bottom: 0.087
  11830. }
  11831. },
  11832. },
  11833. [
  11834. {
  11835. name: "Micro",
  11836. height: math.unit(1, "mm")
  11837. },
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(1.7, "meters"),
  11841. default: true
  11842. },
  11843. {
  11844. name: "Macro",
  11845. height: math.unit(80, "meters")
  11846. },
  11847. {
  11848. name: "Macro+",
  11849. height: math.unit(500, "meters")
  11850. },
  11851. ]
  11852. ))
  11853. characterMakers.push(() => makeCharacter(
  11854. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11855. {
  11856. front: {
  11857. height: math.unit(6, "feet"),
  11858. weight: math.unit(150, "lb"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/zyas/front.svg",
  11862. extra: 1180 / 1120,
  11863. bottom: 0.045
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(10, "feet"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(500, "feet")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(5, "miles")
  11880. },
  11881. {
  11882. name: "Teramacro",
  11883. height: math.unit(150000, "miles")
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11889. {
  11890. front: {
  11891. height: math.unit(6, "feet"),
  11892. weight: math.unit(150, "lb"),
  11893. name: "Front",
  11894. image: {
  11895. source: "./media/characters/cuon/front.svg",
  11896. extra: 1390 / 1320,
  11897. bottom: 0.008
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Micro",
  11904. height: math.unit(3, "inches")
  11905. },
  11906. {
  11907. name: "Normal",
  11908. height: math.unit(18 + 9 / 12, "feet"),
  11909. default: true
  11910. },
  11911. {
  11912. name: "Macro",
  11913. height: math.unit(360, "feet")
  11914. },
  11915. {
  11916. name: "Megamacro",
  11917. height: math.unit(360, "miles")
  11918. },
  11919. ]
  11920. ))
  11921. characterMakers.push(() => makeCharacter(
  11922. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11923. {
  11924. front: {
  11925. height: math.unit(2.4, "meters"),
  11926. weight: math.unit(70, "kg"),
  11927. name: "Front",
  11928. image: {
  11929. source: "./media/characters/nyanuxk/front.svg",
  11930. extra: 1172 / 1084,
  11931. bottom: 0.065
  11932. }
  11933. },
  11934. side: {
  11935. height: math.unit(2.4, "meters"),
  11936. weight: math.unit(70, "kg"),
  11937. name: "Side",
  11938. image: {
  11939. source: "./media/characters/nyanuxk/side.svg",
  11940. extra: 1190 / 1132,
  11941. bottom: 0.007
  11942. }
  11943. },
  11944. back: {
  11945. height: math.unit(2.4, "meters"),
  11946. weight: math.unit(70, "kg"),
  11947. name: "Back",
  11948. image: {
  11949. source: "./media/characters/nyanuxk/back.svg",
  11950. extra: 1200 / 1141,
  11951. bottom: 0.015
  11952. }
  11953. },
  11954. foot: {
  11955. height: math.unit(0.52, "meters"),
  11956. name: "Foot",
  11957. image: {
  11958. source: "./media/characters/nyanuxk/foot.svg"
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Micro",
  11965. height: math.unit(2, "cm")
  11966. },
  11967. {
  11968. name: "Normal",
  11969. height: math.unit(2.4, "meters"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Smaller Macro",
  11974. height: math.unit(120, "meters")
  11975. },
  11976. {
  11977. name: "Bigger Macro",
  11978. height: math.unit(1.2, "km")
  11979. },
  11980. {
  11981. name: "Megamacro",
  11982. height: math.unit(15, "kilometers")
  11983. },
  11984. {
  11985. name: "Gigamacro",
  11986. height: math.unit(2000, "km")
  11987. },
  11988. {
  11989. name: "Teramacro",
  11990. height: math.unit(500000, "km")
  11991. },
  11992. ]
  11993. ))
  11994. characterMakers.push(() => makeCharacter(
  11995. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11996. {
  11997. side: {
  11998. height: math.unit(6, "feet"),
  11999. name: "Side",
  12000. image: {
  12001. source: "./media/characters/ailbhe/side.svg",
  12002. extra: 757 / 464,
  12003. bottom: 0.041
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(1.07, "meters"),
  12011. default: true
  12012. },
  12013. ]
  12014. ))
  12015. characterMakers.push(() => makeCharacter(
  12016. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  12017. {
  12018. front: {
  12019. height: math.unit(6, "feet"),
  12020. weight: math.unit(120, "kg"),
  12021. name: "Front",
  12022. image: {
  12023. source: "./media/characters/zevulfius/front.svg",
  12024. extra: 965 / 903
  12025. }
  12026. },
  12027. side: {
  12028. height: math.unit(6, "feet"),
  12029. weight: math.unit(120, "kg"),
  12030. name: "Side",
  12031. image: {
  12032. source: "./media/characters/zevulfius/side.svg",
  12033. extra: 939 / 900
  12034. }
  12035. },
  12036. back: {
  12037. height: math.unit(6, "feet"),
  12038. weight: math.unit(120, "kg"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/zevulfius/back.svg",
  12042. extra: 918 / 854,
  12043. bottom: 0.005
  12044. }
  12045. },
  12046. foot: {
  12047. height: math.unit(6 / 3.72, "feet"),
  12048. name: "Foot",
  12049. image: {
  12050. source: "./media/characters/zevulfius/foot.svg"
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Macro",
  12057. height: math.unit(750, "meters")
  12058. },
  12059. {
  12060. name: "Megamacro",
  12061. height: math.unit(20, "km"),
  12062. default: true
  12063. },
  12064. {
  12065. name: "Gigamacro",
  12066. height: math.unit(2000, "km")
  12067. },
  12068. {
  12069. name: "Teramacro",
  12070. height: math.unit(250000, "km")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12076. {
  12077. front: {
  12078. height: math.unit(100, "feet"),
  12079. weight: math.unit(350, "kg"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/rikes/front.svg",
  12083. extra: 1565 / 1483,
  12084. bottom: 0.017
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(100, "feet"),
  12092. default: true
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12098. {
  12099. front: {
  12100. height: math.unit(8, "feet"),
  12101. weight: math.unit(356, "lb"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/adam-silver-mane/front.svg",
  12105. extra: 1036/937,
  12106. bottom: 63/1099
  12107. }
  12108. },
  12109. side: {
  12110. height: math.unit(8, "feet"),
  12111. weight: math.unit(356, "lb"),
  12112. name: "Side",
  12113. image: {
  12114. source: "./media/characters/adam-silver-mane/side.svg",
  12115. extra: 997/901,
  12116. bottom: 59/1056
  12117. }
  12118. },
  12119. frontNsfw: {
  12120. height: math.unit(8, "feet"),
  12121. weight: math.unit(356, "lb"),
  12122. name: "Front (NSFW)",
  12123. image: {
  12124. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12125. extra: 1036/937,
  12126. bottom: 63/1099
  12127. }
  12128. },
  12129. sideNsfw: {
  12130. height: math.unit(8, "feet"),
  12131. weight: math.unit(356, "lb"),
  12132. name: "Side (NSFW)",
  12133. image: {
  12134. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12135. extra: 997/901,
  12136. bottom: 59/1056
  12137. }
  12138. },
  12139. dick: {
  12140. height: math.unit(2.1, "feet"),
  12141. name: "Dick",
  12142. image: {
  12143. source: "./media/characters/adam-silver-mane/dick.svg"
  12144. }
  12145. },
  12146. taur: {
  12147. height: math.unit(16, "feet"),
  12148. weight: math.unit(1500, "kg"),
  12149. name: "Taur",
  12150. image: {
  12151. source: "./media/characters/adam-silver-mane/taur.svg",
  12152. extra: 1713 / 1571,
  12153. bottom: 0.01
  12154. }
  12155. },
  12156. },
  12157. [
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(8, "feet")
  12161. },
  12162. {
  12163. name: "Minimacro",
  12164. height: math.unit(80, "feet")
  12165. },
  12166. {
  12167. name: "MDA",
  12168. height: math.unit(80, "meters")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(800, "feet"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(8000, "feet")
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(800, "miles")
  12182. },
  12183. {
  12184. name: "Teramacro",
  12185. height: math.unit(80000, "miles")
  12186. },
  12187. {
  12188. name: "Celestial",
  12189. height: math.unit(8e6, "miles")
  12190. },
  12191. {
  12192. name: "Star Dragon",
  12193. height: math.unit(800000, "parsecs")
  12194. },
  12195. {
  12196. name: "Godly",
  12197. height: math.unit(800, "teraparsecs")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(6, "feet"),
  12206. weight: math.unit(150, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/ky'owin/front.svg",
  12210. extra: 3862/3053,
  12211. bottom: 74/3936
  12212. }
  12213. },
  12214. },
  12215. [
  12216. {
  12217. name: "Normal",
  12218. height: math.unit(6 + 8 / 12, "feet")
  12219. },
  12220. {
  12221. name: "Large",
  12222. height: math.unit(68, "feet")
  12223. },
  12224. {
  12225. name: "Macro",
  12226. height: math.unit(132, "feet")
  12227. },
  12228. {
  12229. name: "Macro+",
  12230. height: math.unit(340, "feet")
  12231. },
  12232. {
  12233. name: "Macro++",
  12234. height: math.unit(680, "feet"),
  12235. default: true
  12236. },
  12237. {
  12238. name: "Megamacro",
  12239. height: math.unit(1, "mile")
  12240. },
  12241. {
  12242. name: "Megamacro+",
  12243. height: math.unit(10, "miles")
  12244. },
  12245. ]
  12246. ))
  12247. characterMakers.push(() => makeCharacter(
  12248. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12249. {
  12250. front: {
  12251. height: math.unit(4, "feet"),
  12252. weight: math.unit(50, "lb"),
  12253. name: "Front",
  12254. image: {
  12255. source: "./media/characters/mal/front.svg",
  12256. extra: 785 / 724,
  12257. bottom: 0.07
  12258. }
  12259. },
  12260. },
  12261. [
  12262. {
  12263. name: "Micro",
  12264. height: math.unit(4, "inches")
  12265. },
  12266. {
  12267. name: "Normal",
  12268. height: math.unit(4, "feet"),
  12269. default: true
  12270. },
  12271. {
  12272. name: "Macro",
  12273. height: math.unit(200, "feet")
  12274. },
  12275. ]
  12276. ))
  12277. characterMakers.push(() => makeCharacter(
  12278. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12279. {
  12280. front: {
  12281. height: math.unit(6, "feet"),
  12282. weight: math.unit(150, "lb"),
  12283. name: "Front",
  12284. image: {
  12285. source: "./media/characters/jordan-deware/front.svg",
  12286. extra: 1191 / 1012
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Nano",
  12293. height: math.unit(0.01, "mm")
  12294. },
  12295. {
  12296. name: "Minimicro",
  12297. height: math.unit(1, "mm")
  12298. },
  12299. {
  12300. name: "Micro",
  12301. height: math.unit(0.5, "inches")
  12302. },
  12303. {
  12304. name: "Normal",
  12305. height: math.unit(4, "feet"),
  12306. default: true
  12307. },
  12308. {
  12309. name: "Minimacro",
  12310. height: math.unit(40, "meters")
  12311. },
  12312. {
  12313. name: "Small Macro",
  12314. height: math.unit(400, "meters")
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(4, "miles")
  12319. },
  12320. {
  12321. name: "Megamacro",
  12322. height: math.unit(40, "miles")
  12323. },
  12324. {
  12325. name: "Megamacro+",
  12326. height: math.unit(400, "miles")
  12327. },
  12328. {
  12329. name: "Gigamacro",
  12330. height: math.unit(400000, "miles")
  12331. },
  12332. ]
  12333. ))
  12334. characterMakers.push(() => makeCharacter(
  12335. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12336. {
  12337. front: {
  12338. height: math.unit(15, "feet"),
  12339. weight: math.unit(3000, "kg"),
  12340. preyCapacity: math.unit(450, "people"),
  12341. name: "Front",
  12342. image: {
  12343. source: "./media/characters/kimiko/front.svg",
  12344. extra: 875/832,
  12345. bottom: 36/911
  12346. },
  12347. extraAttributes: {
  12348. "pawSize": {
  12349. name: "Paw Size",
  12350. power: 1,
  12351. type: "length",
  12352. base: math.unit(0.9, "meters")
  12353. },
  12354. }
  12355. },
  12356. side: {
  12357. height: math.unit(15, "feet"),
  12358. weight: math.unit(3000, "kg"),
  12359. preyCapacity: math.unit(400, "people"),
  12360. name: "Side",
  12361. image: {
  12362. source: "./media/characters/kimiko/side.svg",
  12363. extra: 448/270,
  12364. bottom: 7/455
  12365. },
  12366. extraAttributes: {
  12367. "pawSize": {
  12368. name: "Paw Size",
  12369. power: 1,
  12370. type: "length",
  12371. base: math.unit(0.9, "meters")
  12372. },
  12373. }
  12374. },
  12375. maw: {
  12376. height: math.unit(0.81, "feet"),
  12377. name: "Maw",
  12378. image: {
  12379. source: "./media/characters/kimiko/maw.svg"
  12380. }
  12381. },
  12382. },
  12383. [
  12384. {
  12385. name: "Normal",
  12386. height: math.unit(15, "feet"),
  12387. default: true
  12388. },
  12389. {
  12390. name: "Macro",
  12391. height: math.unit(220, "feet")
  12392. },
  12393. {
  12394. name: "Macro+",
  12395. height: math.unit(1450, "feet")
  12396. },
  12397. {
  12398. name: "Megamacro",
  12399. height: math.unit(11500, "feet")
  12400. },
  12401. {
  12402. name: "Gigamacro",
  12403. height: math.unit(9500, "miles")
  12404. },
  12405. {
  12406. name: "Teramacro",
  12407. height: math.unit(2208005005, "miles")
  12408. },
  12409. {
  12410. name: "Examacro",
  12411. height: math.unit(2750, "parsecs")
  12412. },
  12413. {
  12414. name: "Zettamacro",
  12415. height: math.unit(101500, "parsecs")
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(6, "feet"),
  12424. weight: math.unit(70, "kg"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/andrew-sleepy/front.svg"
  12428. }
  12429. },
  12430. side: {
  12431. height: math.unit(6, "feet"),
  12432. weight: math.unit(70, "kg"),
  12433. name: "Side",
  12434. image: {
  12435. source: "./media/characters/andrew-sleepy/side.svg"
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Micro",
  12442. height: math.unit(1, "mm"),
  12443. default: true
  12444. },
  12445. ]
  12446. ))
  12447. characterMakers.push(() => makeCharacter(
  12448. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12449. {
  12450. front: {
  12451. height: math.unit(6, "feet"),
  12452. weight: math.unit(150, "lb"),
  12453. name: "Front",
  12454. image: {
  12455. source: "./media/characters/judio/front.svg",
  12456. extra: 1258 / 1110
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(5 + 6 / 12, "feet")
  12464. },
  12465. {
  12466. name: "Macro",
  12467. height: math.unit(1000, "feet"),
  12468. default: true
  12469. },
  12470. {
  12471. name: "Megamacro",
  12472. height: math.unit(10, "miles")
  12473. },
  12474. ]
  12475. ))
  12476. characterMakers.push(() => makeCharacter(
  12477. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12478. {
  12479. frontDressed: {
  12480. height: math.unit(6, "feet"),
  12481. weight: math.unit(68, "kg"),
  12482. name: "Front (Dressed)",
  12483. image: {
  12484. source: "./media/characters/nomaxice/front-dressed.svg",
  12485. extra: 1137/824,
  12486. bottom: 74/1211
  12487. }
  12488. },
  12489. frontShorts: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(68, "kg"),
  12492. name: "Front (Shorts)",
  12493. image: {
  12494. source: "./media/characters/nomaxice/front-shorts.svg",
  12495. extra: 1137/824,
  12496. bottom: 74/1211
  12497. }
  12498. },
  12499. back: {
  12500. height: math.unit(6, "feet"),
  12501. weight: math.unit(68, "kg"),
  12502. name: "Back",
  12503. image: {
  12504. source: "./media/characters/nomaxice/back.svg",
  12505. extra: 822/786,
  12506. bottom: 39/861
  12507. }
  12508. },
  12509. hand: {
  12510. height: math.unit(0.565, "feet"),
  12511. name: "Hand",
  12512. image: {
  12513. source: "./media/characters/nomaxice/hand.svg"
  12514. }
  12515. },
  12516. foot: {
  12517. height: math.unit(1, "feet"),
  12518. name: "Foot",
  12519. image: {
  12520. source: "./media/characters/nomaxice/foot.svg"
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Micro",
  12527. height: math.unit(8, "cm")
  12528. },
  12529. {
  12530. name: "Norm",
  12531. height: math.unit(1.82, "m")
  12532. },
  12533. {
  12534. name: "Norm+",
  12535. height: math.unit(8.8, "feet"),
  12536. default: true
  12537. },
  12538. {
  12539. name: "Big",
  12540. height: math.unit(8, "meters")
  12541. },
  12542. {
  12543. name: "Macro",
  12544. height: math.unit(18, "meters")
  12545. },
  12546. {
  12547. name: "Macro+",
  12548. height: math.unit(88, "meters")
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(12, "feet"),
  12557. weight: math.unit(1.5, "tons"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/dydros/front.svg",
  12561. extra: 863 / 800,
  12562. bottom: 0.015
  12563. }
  12564. },
  12565. back: {
  12566. height: math.unit(12, "feet"),
  12567. weight: math.unit(1.5, "tons"),
  12568. name: "Back",
  12569. image: {
  12570. source: "./media/characters/dydros/back.svg",
  12571. extra: 900 / 843,
  12572. bottom: 0.005
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(12, "feet"),
  12580. default: true
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12586. {
  12587. front: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(100, "kg"),
  12590. name: "Front",
  12591. image: {
  12592. source: "./media/characters/riggi/front.svg",
  12593. extra: 5787 / 5303
  12594. }
  12595. },
  12596. hyper: {
  12597. height: math.unit(6 * 5 / 3, "feet"),
  12598. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12599. name: "Hyper",
  12600. image: {
  12601. source: "./media/characters/riggi/hyper.svg",
  12602. extra: 3595 / 3485
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Small Macro",
  12609. height: math.unit(50, "feet")
  12610. },
  12611. {
  12612. name: "Default",
  12613. height: math.unit(200, "feet"),
  12614. default: true
  12615. },
  12616. {
  12617. name: "Loom",
  12618. height: math.unit(10000, "feet")
  12619. },
  12620. {
  12621. name: "Cruising Altitude",
  12622. height: math.unit(30000, "feet")
  12623. },
  12624. {
  12625. name: "Megamacro",
  12626. height: math.unit(100, "miles")
  12627. },
  12628. {
  12629. name: "Continent Sized",
  12630. height: math.unit(2800, "miles")
  12631. },
  12632. {
  12633. name: "Earth Sized",
  12634. height: math.unit(8000, "miles")
  12635. },
  12636. ]
  12637. ))
  12638. characterMakers.push(() => makeCharacter(
  12639. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12640. {
  12641. front: {
  12642. height: math.unit(6, "feet"),
  12643. weight: math.unit(250, "lb"),
  12644. name: "Front",
  12645. image: {
  12646. source: "./media/characters/alexi/front.svg",
  12647. extra: 3483 / 3291,
  12648. bottom: 0.04
  12649. }
  12650. },
  12651. back: {
  12652. height: math.unit(6, "feet"),
  12653. weight: math.unit(250, "lb"),
  12654. name: "Back",
  12655. image: {
  12656. source: "./media/characters/alexi/back.svg",
  12657. extra: 3533 / 3356,
  12658. bottom: 0.021
  12659. }
  12660. },
  12661. frontTransforming: {
  12662. height: math.unit(8.58, "feet"),
  12663. weight: math.unit(1300, "lb"),
  12664. name: "Transforming",
  12665. image: {
  12666. source: "./media/characters/alexi/front-transforming.svg",
  12667. extra: 437 / 409,
  12668. bottom: 19 / 458.66
  12669. }
  12670. },
  12671. frontTransformed: {
  12672. height: math.unit(12.5, "feet"),
  12673. weight: math.unit(4000, "lb"),
  12674. name: "Transformed",
  12675. image: {
  12676. source: "./media/characters/alexi/front-transformed.svg",
  12677. extra: 639 / 614,
  12678. bottom: 30.55 / 671
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Normal",
  12685. height: math.unit(14, "feet"),
  12686. default: true
  12687. },
  12688. {
  12689. name: "Minimacro",
  12690. height: math.unit(30, "meters")
  12691. },
  12692. {
  12693. name: "Macro",
  12694. height: math.unit(500, "meters")
  12695. },
  12696. {
  12697. name: "Megamacro",
  12698. height: math.unit(9000, "km")
  12699. },
  12700. {
  12701. name: "Teramacro",
  12702. height: math.unit(384000, "km")
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(6, "feet"),
  12711. weight: math.unit(150, "lb"),
  12712. name: "Front",
  12713. image: {
  12714. source: "./media/characters/kayroo/front.svg",
  12715. extra: 1153 / 1038,
  12716. bottom: 0.06
  12717. }
  12718. },
  12719. foot: {
  12720. height: math.unit(6, "feet"),
  12721. weight: math.unit(150, "lb"),
  12722. name: "Foot",
  12723. image: {
  12724. source: "./media/characters/kayroo/foot.svg"
  12725. }
  12726. },
  12727. },
  12728. [
  12729. {
  12730. name: "Normal",
  12731. height: math.unit(8, "feet"),
  12732. default: true
  12733. },
  12734. {
  12735. name: "Minimacro",
  12736. height: math.unit(250, "feet")
  12737. },
  12738. {
  12739. name: "Macro",
  12740. height: math.unit(2800, "feet")
  12741. },
  12742. {
  12743. name: "Megamacro",
  12744. height: math.unit(5200, "feet")
  12745. },
  12746. {
  12747. name: "Gigamacro",
  12748. height: math.unit(27000, "feet")
  12749. },
  12750. {
  12751. name: "Omega",
  12752. height: math.unit(45000, "feet")
  12753. },
  12754. ]
  12755. ))
  12756. characterMakers.push(() => makeCharacter(
  12757. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12758. {
  12759. front: {
  12760. height: math.unit(18, "feet"),
  12761. weight: math.unit(5800, "lb"),
  12762. name: "Front",
  12763. image: {
  12764. source: "./media/characters/rhys/front.svg",
  12765. extra: 3386 / 3090,
  12766. bottom: 0.07
  12767. }
  12768. },
  12769. },
  12770. [
  12771. {
  12772. name: "Normal",
  12773. height: math.unit(18, "feet"),
  12774. default: true
  12775. },
  12776. {
  12777. name: "Working Size",
  12778. height: math.unit(200, "feet")
  12779. },
  12780. {
  12781. name: "Demolition Size",
  12782. height: math.unit(2000, "feet")
  12783. },
  12784. {
  12785. name: "Maximum Licensed Size",
  12786. height: math.unit(5, "miles")
  12787. },
  12788. {
  12789. name: "Maximum Observed Size",
  12790. height: math.unit(10, "yottameters")
  12791. },
  12792. ]
  12793. ))
  12794. characterMakers.push(() => makeCharacter(
  12795. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12796. {
  12797. front: {
  12798. height: math.unit(6, "feet"),
  12799. weight: math.unit(250, "lb"),
  12800. name: "Front",
  12801. image: {
  12802. source: "./media/characters/toto/front.svg",
  12803. extra: 527 / 479,
  12804. bottom: 0.05
  12805. }
  12806. },
  12807. },
  12808. [
  12809. {
  12810. name: "Micro",
  12811. height: math.unit(3, "feet")
  12812. },
  12813. {
  12814. name: "Normal",
  12815. height: math.unit(10, "feet")
  12816. },
  12817. {
  12818. name: "Macro",
  12819. height: math.unit(150, "feet"),
  12820. default: true
  12821. },
  12822. {
  12823. name: "Megamacro",
  12824. height: math.unit(1200, "feet")
  12825. },
  12826. ]
  12827. ))
  12828. characterMakers.push(() => makeCharacter(
  12829. { name: "King", species: ["lion"], tags: ["anthro"] },
  12830. {
  12831. back: {
  12832. height: math.unit(6, "feet"),
  12833. weight: math.unit(150, "lb"),
  12834. name: "Back",
  12835. image: {
  12836. source: "./media/characters/king/back.svg"
  12837. }
  12838. },
  12839. },
  12840. [
  12841. {
  12842. name: "Micro",
  12843. height: math.unit(2, "inches")
  12844. },
  12845. {
  12846. name: "Normal",
  12847. height: math.unit(8, "feet")
  12848. },
  12849. {
  12850. name: "Macro",
  12851. height: math.unit(200, "feet"),
  12852. default: true
  12853. },
  12854. {
  12855. name: "Megamacro",
  12856. height: math.unit(50, "miles")
  12857. },
  12858. ]
  12859. ))
  12860. characterMakers.push(() => makeCharacter(
  12861. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12862. {
  12863. front: {
  12864. height: math.unit(11, "feet"),
  12865. weight: math.unit(1400, "lb"),
  12866. name: "Front",
  12867. image: {
  12868. source: "./media/characters/cordite/front.svg",
  12869. extra: 1919/1827,
  12870. bottom: 40/1959
  12871. }
  12872. },
  12873. side: {
  12874. height: math.unit(11, "feet"),
  12875. weight: math.unit(1400, "lb"),
  12876. name: "Side",
  12877. image: {
  12878. source: "./media/characters/cordite/side.svg",
  12879. extra: 1908/1793,
  12880. bottom: 38/1946
  12881. }
  12882. },
  12883. back: {
  12884. height: math.unit(11, "feet"),
  12885. weight: math.unit(1400, "lb"),
  12886. name: "Back",
  12887. image: {
  12888. source: "./media/characters/cordite/back.svg",
  12889. extra: 1938/1837,
  12890. bottom: 10/1948
  12891. }
  12892. },
  12893. feral: {
  12894. height: math.unit(2, "feet"),
  12895. weight: math.unit(90, "lb"),
  12896. name: "Feral",
  12897. image: {
  12898. source: "./media/characters/cordite/feral.svg",
  12899. extra: 1260 / 755,
  12900. bottom: 0.05
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(11, "feet"),
  12908. default: true
  12909. },
  12910. ]
  12911. ))
  12912. characterMakers.push(() => makeCharacter(
  12913. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12914. {
  12915. front: {
  12916. height: math.unit(6, "feet"),
  12917. weight: math.unit(150, "lb"),
  12918. name: "Front",
  12919. image: {
  12920. source: "./media/characters/pianostrong/front.svg",
  12921. extra: 6577 / 6254,
  12922. bottom: 0.02
  12923. }
  12924. },
  12925. side: {
  12926. height: math.unit(6, "feet"),
  12927. weight: math.unit(150, "lb"),
  12928. name: "Side",
  12929. image: {
  12930. source: "./media/characters/pianostrong/side.svg",
  12931. extra: 6106 / 5730
  12932. }
  12933. },
  12934. back: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(150, "lb"),
  12937. name: "Back",
  12938. image: {
  12939. source: "./media/characters/pianostrong/back.svg",
  12940. extra: 6085 / 5733,
  12941. bottom: 0.01
  12942. }
  12943. },
  12944. },
  12945. [
  12946. {
  12947. name: "Macro",
  12948. height: math.unit(100, "feet")
  12949. },
  12950. {
  12951. name: "Macro+",
  12952. height: math.unit(300, "feet"),
  12953. default: true
  12954. },
  12955. {
  12956. name: "Macro++",
  12957. height: math.unit(1000, "feet")
  12958. },
  12959. ]
  12960. ))
  12961. characterMakers.push(() => makeCharacter(
  12962. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12963. {
  12964. front: {
  12965. height: math.unit(6, "feet"),
  12966. weight: math.unit(150, "lb"),
  12967. name: "Front",
  12968. image: {
  12969. source: "./media/characters/kona/front.svg",
  12970. extra: 2960 / 2629,
  12971. bottom: 0.005
  12972. }
  12973. },
  12974. },
  12975. [
  12976. {
  12977. name: "Normal",
  12978. height: math.unit(11 + 8 / 12, "feet")
  12979. },
  12980. {
  12981. name: "Macro",
  12982. height: math.unit(850, "feet"),
  12983. default: true
  12984. },
  12985. {
  12986. name: "Macro+",
  12987. height: math.unit(1.5, "km"),
  12988. default: true
  12989. },
  12990. {
  12991. name: "Megamacro",
  12992. height: math.unit(80, "miles")
  12993. },
  12994. {
  12995. name: "Gigamacro",
  12996. height: math.unit(3500, "miles")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  13002. {
  13003. side: {
  13004. height: math.unit(1.9, "meters"),
  13005. weight: math.unit(326, "kg"),
  13006. name: "Side",
  13007. image: {
  13008. source: "./media/characters/levi/side.svg",
  13009. extra: 1704 / 1334,
  13010. bottom: 0.02
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(1.9, "meters"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(20, "meters")
  13023. },
  13024. {
  13025. name: "Macro+",
  13026. height: math.unit(200, "meters")
  13027. },
  13028. {
  13029. name: "Megamacro",
  13030. height: math.unit(2, "km")
  13031. },
  13032. {
  13033. name: "Megamacro+",
  13034. height: math.unit(20, "km")
  13035. },
  13036. {
  13037. name: "Gigamacro",
  13038. height: math.unit(2500, "km")
  13039. },
  13040. {
  13041. name: "Gigamacro+",
  13042. height: math.unit(120000, "km")
  13043. },
  13044. {
  13045. name: "Teramacro",
  13046. height: math.unit(7.77e6, "km")
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(6 + 4/12, "feet"),
  13055. weight: math.unit(190, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/bmc/front.svg",
  13059. extra: 1626/1472,
  13060. bottom: 79/1705
  13061. }
  13062. },
  13063. back: {
  13064. height: math.unit(6 + 4/12, "feet"),
  13065. weight: math.unit(190, "lb"),
  13066. name: "Back",
  13067. image: {
  13068. source: "./media/characters/bmc/back.svg",
  13069. extra: 1640/1479,
  13070. bottom: 45/1685
  13071. }
  13072. },
  13073. frontArmor: {
  13074. height: math.unit(6 + 4/12, "feet"),
  13075. weight: math.unit(190, "lb"),
  13076. name: "Front-armor",
  13077. image: {
  13078. source: "./media/characters/bmc/front-armor.svg",
  13079. extra: 1538/1468,
  13080. bottom: 79/1617
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Human-sized",
  13087. height: math.unit(6 + 4 / 12, "feet")
  13088. },
  13089. {
  13090. name: "Interactive Size",
  13091. height: math.unit(25, "feet")
  13092. },
  13093. {
  13094. name: "Small",
  13095. height: math.unit(250, "feet")
  13096. },
  13097. {
  13098. name: "Normal",
  13099. height: math.unit(1250, "feet"),
  13100. default: true
  13101. },
  13102. {
  13103. name: "Good Day",
  13104. height: math.unit(88, "miles")
  13105. },
  13106. {
  13107. name: "Largest Measured Size",
  13108. height: math.unit(105.960, "galaxies")
  13109. },
  13110. ]
  13111. ))
  13112. characterMakers.push(() => makeCharacter(
  13113. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13114. {
  13115. front: {
  13116. height: math.unit(20, "feet"),
  13117. weight: math.unit(2016, "kg"),
  13118. name: "Front",
  13119. image: {
  13120. source: "./media/characters/sven-the-kaiju/front.svg",
  13121. extra: 1277/1250,
  13122. bottom: 35/1312
  13123. }
  13124. },
  13125. mouth: {
  13126. height: math.unit(1.85, "feet"),
  13127. name: "Mouth",
  13128. image: {
  13129. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13130. }
  13131. },
  13132. },
  13133. [
  13134. {
  13135. name: "Fairy",
  13136. height: math.unit(6, "inches")
  13137. },
  13138. {
  13139. name: "Normal",
  13140. height: math.unit(20, "feet"),
  13141. default: true
  13142. },
  13143. {
  13144. name: "Rampage",
  13145. height: math.unit(200, "feet")
  13146. },
  13147. {
  13148. name: "Archfey Forest Guardian",
  13149. height: math.unit(1, "mile")
  13150. },
  13151. ]
  13152. ))
  13153. characterMakers.push(() => makeCharacter(
  13154. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13155. {
  13156. front: {
  13157. height: math.unit(4, "meters"),
  13158. weight: math.unit(2, "tons"),
  13159. name: "Front",
  13160. image: {
  13161. source: "./media/characters/marik/front.svg",
  13162. extra: 1057 / 1003,
  13163. bottom: 0.08
  13164. }
  13165. },
  13166. },
  13167. [
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(4, "meters"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(20, "meters")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(50, "km")
  13180. },
  13181. {
  13182. name: "Gigamacro",
  13183. height: math.unit(100, "km")
  13184. },
  13185. {
  13186. name: "Alpha Macro",
  13187. height: math.unit(7.88e7, "yottameters")
  13188. },
  13189. ]
  13190. ))
  13191. characterMakers.push(() => makeCharacter(
  13192. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13193. {
  13194. front: {
  13195. height: math.unit(6, "feet"),
  13196. weight: math.unit(110, "lb"),
  13197. name: "Front",
  13198. image: {
  13199. source: "./media/characters/mel/front.svg",
  13200. extra: 736 / 617,
  13201. bottom: 0.017
  13202. }
  13203. },
  13204. },
  13205. [
  13206. {
  13207. name: "Pico",
  13208. height: math.unit(3, "pm")
  13209. },
  13210. {
  13211. name: "Nano",
  13212. height: math.unit(3, "nm")
  13213. },
  13214. {
  13215. name: "Micro",
  13216. height: math.unit(0.3, "mm"),
  13217. default: true
  13218. },
  13219. {
  13220. name: "Micro+",
  13221. height: math.unit(3, "mm")
  13222. },
  13223. {
  13224. name: "Normal",
  13225. height: math.unit(5 + 10.5 / 12, "feet")
  13226. },
  13227. ]
  13228. ))
  13229. characterMakers.push(() => makeCharacter(
  13230. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13231. {
  13232. kaiju: {
  13233. height: math.unit(1.75, "meters"),
  13234. weight: math.unit(55, "kg"),
  13235. name: "Kaiju",
  13236. image: {
  13237. source: "./media/characters/lykonous/kaiju.svg",
  13238. extra: 1055 / 946,
  13239. bottom: 0.135
  13240. }
  13241. },
  13242. },
  13243. [
  13244. {
  13245. name: "Normal",
  13246. height: math.unit(2.5, "meters"),
  13247. default: true
  13248. },
  13249. {
  13250. name: "Kaiju Dragon",
  13251. height: math.unit(60, "meters")
  13252. },
  13253. {
  13254. name: "Mega Kaiju",
  13255. height: math.unit(120, "km")
  13256. },
  13257. {
  13258. name: "Giga Kaiju",
  13259. height: math.unit(200, "megameters")
  13260. },
  13261. {
  13262. name: "Terra Kaiju",
  13263. height: math.unit(400, "gigameters")
  13264. },
  13265. {
  13266. name: "Kaiju Dragon God",
  13267. height: math.unit(13000, "exaparsecs")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/blü/front.svg",
  13280. extra: 1883 / 1564,
  13281. bottom: 0.031
  13282. }
  13283. },
  13284. },
  13285. [
  13286. {
  13287. name: "Normal",
  13288. height: math.unit(13, "feet"),
  13289. default: true
  13290. },
  13291. {
  13292. name: "Big Boi",
  13293. height: math.unit(150, "meters")
  13294. },
  13295. {
  13296. name: "Mini Stomper",
  13297. height: math.unit(300, "meters")
  13298. },
  13299. {
  13300. name: "Macro",
  13301. height: math.unit(1000, "meters")
  13302. },
  13303. {
  13304. name: "Megamacro",
  13305. height: math.unit(11000, "meters")
  13306. },
  13307. {
  13308. name: "Gigamacro",
  13309. height: math.unit(11000, "km")
  13310. },
  13311. {
  13312. name: "Teramacro",
  13313. height: math.unit(420000, "km")
  13314. },
  13315. {
  13316. name: "Examacro",
  13317. height: math.unit(120, "parsecs")
  13318. },
  13319. {
  13320. name: "God Tho",
  13321. height: math.unit(98000000000, "parsecs")
  13322. },
  13323. ]
  13324. ))
  13325. characterMakers.push(() => makeCharacter(
  13326. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13327. {
  13328. taurFront: {
  13329. height: math.unit(6, "feet"),
  13330. weight: math.unit(200, "lb"),
  13331. name: "Taur (Front)",
  13332. image: {
  13333. source: "./media/characters/scales/taur-front.svg",
  13334. extra: 1,
  13335. bottom: 0.05
  13336. }
  13337. },
  13338. taurBack: {
  13339. height: math.unit(6, "feet"),
  13340. weight: math.unit(200, "lb"),
  13341. name: "Taur (Back)",
  13342. image: {
  13343. source: "./media/characters/scales/taur-back.svg",
  13344. extra: 1,
  13345. bottom: 0.08
  13346. }
  13347. },
  13348. anthro: {
  13349. height: math.unit(6 * 7 / 12, "feet"),
  13350. weight: math.unit(100, "lb"),
  13351. name: "Anthro",
  13352. image: {
  13353. source: "./media/characters/scales/anthro.svg",
  13354. extra: 1,
  13355. bottom: 0.06
  13356. }
  13357. },
  13358. },
  13359. [
  13360. {
  13361. name: "Normal",
  13362. height: math.unit(12, "feet"),
  13363. default: true
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(6, "feet"),
  13372. weight: math.unit(150, "lb"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/koragos/front.svg",
  13376. extra: 841 / 794,
  13377. bottom: 0.035
  13378. }
  13379. },
  13380. back: {
  13381. height: math.unit(6, "feet"),
  13382. weight: math.unit(150, "lb"),
  13383. name: "Back",
  13384. image: {
  13385. source: "./media/characters/koragos/back.svg",
  13386. extra: 841 / 810,
  13387. bottom: 0.022
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Normal",
  13394. height: math.unit(6 + 11 / 12, "feet"),
  13395. default: true
  13396. },
  13397. {
  13398. name: "Macro",
  13399. height: math.unit(490, "feet")
  13400. },
  13401. {
  13402. name: "Megamacro",
  13403. height: math.unit(10, "miles")
  13404. },
  13405. {
  13406. name: "Gigamacro",
  13407. height: math.unit(50, "miles")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(6, "feet"),
  13416. weight: math.unit(250, "lb"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/xylrem/front.svg",
  13420. extra: 3323 / 3050,
  13421. bottom: 0.065
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Micro",
  13428. height: math.unit(4, "feet")
  13429. },
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(16, "feet"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Macro",
  13437. height: math.unit(2720, "feet")
  13438. },
  13439. {
  13440. name: "Megamacro",
  13441. height: math.unit(25000, "miles")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(8, "feet"),
  13450. weight: math.unit(250, "kg"),
  13451. name: "Front",
  13452. image: {
  13453. source: "./media/characters/ikideru/front.svg",
  13454. extra: 930 / 870,
  13455. bottom: 0.087
  13456. }
  13457. },
  13458. back: {
  13459. height: math.unit(8, "feet"),
  13460. weight: math.unit(250, "kg"),
  13461. name: "Back",
  13462. image: {
  13463. source: "./media/characters/ikideru/back.svg",
  13464. extra: 919 / 852,
  13465. bottom: 0.055
  13466. }
  13467. },
  13468. },
  13469. [
  13470. {
  13471. name: "Rare",
  13472. height: math.unit(8, "feet"),
  13473. default: true
  13474. },
  13475. {
  13476. name: "Playful Loom",
  13477. height: math.unit(80, "feet")
  13478. },
  13479. {
  13480. name: "City Leaner",
  13481. height: math.unit(230, "feet")
  13482. },
  13483. {
  13484. name: "Megamacro",
  13485. height: math.unit(2500, "feet")
  13486. },
  13487. {
  13488. name: "Gigamacro",
  13489. height: math.unit(26400, "feet")
  13490. },
  13491. {
  13492. name: "Tectonic Shifter",
  13493. height: math.unit(1.7, "megameters")
  13494. },
  13495. {
  13496. name: "Planet Carer",
  13497. height: math.unit(21, "megameters")
  13498. },
  13499. {
  13500. name: "God",
  13501. height: math.unit(11157.22, "parsecs")
  13502. },
  13503. ]
  13504. ))
  13505. characterMakers.push(() => makeCharacter(
  13506. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13507. {
  13508. front: {
  13509. height: math.unit(6, "feet"),
  13510. weight: math.unit(120, "lb"),
  13511. name: "Front",
  13512. image: {
  13513. source: "./media/characters/neo/front.svg"
  13514. }
  13515. },
  13516. },
  13517. [
  13518. {
  13519. name: "Micro",
  13520. height: math.unit(2, "inches"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Human Size",
  13525. height: math.unit(5 + 8 / 12, "feet")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(13 + 10 / 12, "feet"),
  13534. weight: math.unit(5320, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/chauncey-chantz/front.svg",
  13538. extra: 1587 / 1435,
  13539. bottom: 0.02
  13540. }
  13541. },
  13542. },
  13543. [
  13544. {
  13545. name: "Normal",
  13546. height: math.unit(13 + 10 / 12, "feet"),
  13547. default: true
  13548. },
  13549. {
  13550. name: "Macro",
  13551. height: math.unit(45, "feet")
  13552. },
  13553. {
  13554. name: "Megamacro",
  13555. height: math.unit(250, "miles")
  13556. },
  13557. {
  13558. name: "Planetary",
  13559. height: math.unit(10000, "miles")
  13560. },
  13561. {
  13562. name: "Galactic",
  13563. height: math.unit(40000, "parsecs")
  13564. },
  13565. {
  13566. name: "Universal",
  13567. height: math.unit(1, "yottameter")
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13573. {
  13574. front: {
  13575. height: math.unit(6, "feet"),
  13576. weight: math.unit(150, "lb"),
  13577. name: "Front",
  13578. image: {
  13579. source: "./media/characters/epifox/front.svg",
  13580. extra: 1,
  13581. bottom: 0.075
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Micro",
  13588. height: math.unit(6, "inches")
  13589. },
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(12, "feet"),
  13593. default: true
  13594. },
  13595. {
  13596. name: "Macro",
  13597. height: math.unit(3810, "feet")
  13598. },
  13599. {
  13600. name: "Megamacro",
  13601. height: math.unit(500, "miles")
  13602. },
  13603. ]
  13604. ))
  13605. characterMakers.push(() => makeCharacter(
  13606. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13607. {
  13608. front: {
  13609. height: math.unit(1.8796, "m"),
  13610. weight: math.unit(230, "lb"),
  13611. name: "Front",
  13612. image: {
  13613. source: "./media/characters/colin-t/front.svg",
  13614. extra: 1272 / 1193,
  13615. bottom: 0.07
  13616. }
  13617. },
  13618. },
  13619. [
  13620. {
  13621. name: "Micro",
  13622. height: math.unit(0.571, "meters")
  13623. },
  13624. {
  13625. name: "Normal",
  13626. height: math.unit(1.8796, "meters"),
  13627. default: true
  13628. },
  13629. {
  13630. name: "Tall",
  13631. height: math.unit(4, "meters")
  13632. },
  13633. {
  13634. name: "Macro",
  13635. height: math.unit(67.241, "meters")
  13636. },
  13637. {
  13638. name: "Megamacro",
  13639. height: math.unit(371.856, "meters")
  13640. },
  13641. {
  13642. name: "Planetary",
  13643. height: math.unit(12631.5689, "km")
  13644. },
  13645. ]
  13646. ))
  13647. characterMakers.push(() => makeCharacter(
  13648. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13649. {
  13650. front: {
  13651. height: math.unit(1.85, "meters"),
  13652. weight: math.unit(80, "kg"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/matvei/front.svg",
  13656. extra: 456/447,
  13657. bottom: 8/464
  13658. }
  13659. },
  13660. back: {
  13661. height: math.unit(1.85, "meters"),
  13662. weight: math.unit(80, "kg"),
  13663. name: "Back",
  13664. image: {
  13665. source: "./media/characters/matvei/back.svg",
  13666. extra: 434/427,
  13667. bottom: 11/445
  13668. }
  13669. },
  13670. },
  13671. [
  13672. {
  13673. name: "Normal",
  13674. height: math.unit(1.85, "meters"),
  13675. default: true
  13676. },
  13677. ]
  13678. ))
  13679. characterMakers.push(() => makeCharacter(
  13680. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13681. {
  13682. front: {
  13683. height: math.unit(5 + 9 / 12, "feet"),
  13684. weight: math.unit(70, "lb"),
  13685. name: "Front",
  13686. image: {
  13687. source: "./media/characters/quincy/front.svg",
  13688. extra: 3041 / 2751
  13689. }
  13690. },
  13691. back: {
  13692. height: math.unit(5 + 9 / 12, "feet"),
  13693. weight: math.unit(70, "lb"),
  13694. name: "Back",
  13695. image: {
  13696. source: "./media/characters/quincy/back.svg",
  13697. extra: 3041 / 2751
  13698. }
  13699. },
  13700. flying: {
  13701. height: math.unit(5 + 4 / 12, "feet"),
  13702. weight: math.unit(70, "lb"),
  13703. name: "Flying",
  13704. image: {
  13705. source: "./media/characters/quincy/flying.svg",
  13706. extra: 1044 / 930
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Micro",
  13713. height: math.unit(3, "cm")
  13714. },
  13715. {
  13716. name: "Normal",
  13717. height: math.unit(5 + 9 / 12, "feet")
  13718. },
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(200, "meters"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(1000, "meters")
  13727. },
  13728. ]
  13729. ))
  13730. characterMakers.push(() => makeCharacter(
  13731. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13732. {
  13733. front: {
  13734. height: math.unit(3 + 11/12, "feet"),
  13735. weight: math.unit(50, "lb"),
  13736. name: "Front",
  13737. image: {
  13738. source: "./media/characters/vanrel/front.svg",
  13739. extra: 1104/949,
  13740. bottom: 52/1156
  13741. }
  13742. },
  13743. back: {
  13744. height: math.unit(3 + 11/12, "feet"),
  13745. weight: math.unit(50, "lb"),
  13746. name: "Back",
  13747. image: {
  13748. source: "./media/characters/vanrel/back.svg",
  13749. extra: 1119/976,
  13750. bottom: 37/1156
  13751. }
  13752. },
  13753. tome: {
  13754. height: math.unit(1.35, "feet"),
  13755. weight: math.unit(10, "lb"),
  13756. name: "Vanrel's Tome",
  13757. rename: true,
  13758. image: {
  13759. source: "./media/characters/vanrel/tome.svg"
  13760. }
  13761. },
  13762. beans: {
  13763. height: math.unit(0.89, "feet"),
  13764. name: "Beans",
  13765. image: {
  13766. source: "./media/characters/vanrel/beans.svg"
  13767. }
  13768. },
  13769. },
  13770. [
  13771. {
  13772. name: "Normal",
  13773. height: math.unit(3 + 11/12, "feet"),
  13774. default: true
  13775. },
  13776. ]
  13777. ))
  13778. characterMakers.push(() => makeCharacter(
  13779. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13780. {
  13781. front: {
  13782. height: math.unit(7 + 5 / 12, "feet"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/kuiper-vanrel/front.svg",
  13786. extra: 1219/1169,
  13787. bottom: 69/1288
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(7 + 5 / 12, "feet"),
  13792. name: "Back",
  13793. image: {
  13794. source: "./media/characters/kuiper-vanrel/back.svg",
  13795. extra: 1236/1193,
  13796. bottom: 27/1263
  13797. }
  13798. },
  13799. foot: {
  13800. height: math.unit(0.55, "meters"),
  13801. name: "Foot",
  13802. image: {
  13803. source: "./media/characters/kuiper-vanrel/foot.svg",
  13804. }
  13805. },
  13806. battle: {
  13807. height: math.unit(6.824, "feet"),
  13808. name: "Battle",
  13809. image: {
  13810. source: "./media/characters/kuiper-vanrel/battle.svg",
  13811. extra: 1466 / 1327,
  13812. bottom: 29 / 1492.5
  13813. }
  13814. },
  13815. meerkui: {
  13816. height: math.unit(18, "inches"),
  13817. name: "Meerkui",
  13818. image: {
  13819. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13820. extra: 1354/1289,
  13821. bottom: 69/1423
  13822. }
  13823. },
  13824. },
  13825. [
  13826. {
  13827. name: "Normal",
  13828. height: math.unit(7 + 5 / 12, "feet"),
  13829. default: true
  13830. },
  13831. ]
  13832. ))
  13833. characterMakers.push(() => makeCharacter(
  13834. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13835. {
  13836. front: {
  13837. height: math.unit(8 + 5 / 12, "feet"),
  13838. name: "Front",
  13839. image: {
  13840. source: "./media/characters/keset-vanrel/front.svg",
  13841. extra: 1231/1148,
  13842. bottom: 82/1313
  13843. }
  13844. },
  13845. back: {
  13846. height: math.unit(8 + 5 / 12, "feet"),
  13847. name: "Back",
  13848. image: {
  13849. source: "./media/characters/keset-vanrel/back.svg",
  13850. extra: 1240/1174,
  13851. bottom: 33/1273
  13852. }
  13853. },
  13854. hand: {
  13855. height: math.unit(0.6, "meters"),
  13856. name: "Hand",
  13857. image: {
  13858. source: "./media/characters/keset-vanrel/hand.svg"
  13859. }
  13860. },
  13861. foot: {
  13862. height: math.unit(0.94978, "meters"),
  13863. name: "Foot",
  13864. image: {
  13865. source: "./media/characters/keset-vanrel/foot.svg"
  13866. }
  13867. },
  13868. battle: {
  13869. height: math.unit(7.408, "feet"),
  13870. name: "Battle",
  13871. image: {
  13872. source: "./media/characters/keset-vanrel/battle.svg",
  13873. extra: 1890 / 1386,
  13874. bottom: 73.28 / 1970
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Normal",
  13881. height: math.unit(8 + 5 / 12, "feet"),
  13882. default: true
  13883. },
  13884. ]
  13885. ))
  13886. characterMakers.push(() => makeCharacter(
  13887. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13888. {
  13889. front: {
  13890. height: math.unit(6, "feet"),
  13891. weight: math.unit(150, "lb"),
  13892. name: "Front",
  13893. image: {
  13894. source: "./media/characters/neos/front.svg",
  13895. extra: 1696 / 992,
  13896. bottom: 0.14
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Normal",
  13903. height: math.unit(54, "cm"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Macro",
  13908. height: math.unit(100, "m")
  13909. },
  13910. {
  13911. name: "Megamacro",
  13912. height: math.unit(10, "km")
  13913. },
  13914. {
  13915. name: "Megamacro+",
  13916. height: math.unit(100, "km")
  13917. },
  13918. {
  13919. name: "Gigamacro",
  13920. height: math.unit(100, "Mm")
  13921. },
  13922. {
  13923. name: "Teramacro",
  13924. height: math.unit(100, "Gm")
  13925. },
  13926. {
  13927. name: "Examacro",
  13928. height: math.unit(100, "Em")
  13929. },
  13930. {
  13931. name: "Godly",
  13932. height: math.unit(10000, "Ym")
  13933. },
  13934. {
  13935. name: "Beyond Godly",
  13936. height: math.unit(25, "multiverses")
  13937. },
  13938. ]
  13939. ))
  13940. characterMakers.push(() => makeCharacter(
  13941. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13942. {
  13943. fluide_tame: {
  13944. height: math.unit(5, "feet"),
  13945. name: "Tame",
  13946. image: {
  13947. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13948. extra: 1655/1574,
  13949. bottom: 231/1886
  13950. },
  13951. form: "fluide",
  13952. default: true
  13953. },
  13954. fluide_nude: {
  13955. height: math.unit(5, "feet"),
  13956. name: "Nude",
  13957. image: {
  13958. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13959. extra: 1655/1574,
  13960. bottom: 231/1886
  13961. },
  13962. form: "fluide",
  13963. },
  13964. male_tame: {
  13965. height: math.unit(5, "feet"),
  13966. name: "Tame",
  13967. image: {
  13968. source: "./media/characters/sammy-mouse/male-tame.svg",
  13969. extra: 1655/1574,
  13970. bottom: 231/1886
  13971. },
  13972. form: "male",
  13973. default: true
  13974. },
  13975. male_nude: {
  13976. height: math.unit(5, "feet"),
  13977. name: "Nude",
  13978. image: {
  13979. source: "./media/characters/sammy-mouse/male-nude.svg",
  13980. extra: 1655/1574,
  13981. bottom: 231/1886
  13982. },
  13983. form: "male",
  13984. },
  13985. female_nude: {
  13986. height: math.unit(5, "feet"),
  13987. name: "Nude",
  13988. image: {
  13989. source: "./media/characters/sammy-mouse/female-nude.svg",
  13990. extra: 1655/1574,
  13991. bottom: 231/1886
  13992. },
  13993. form: "female",
  13994. default: true
  13995. },
  13996. mouth: {
  13997. height: math.unit(0.32, "feet"),
  13998. name: "Mouth",
  13999. image: {
  14000. source: "./media/characters/sammy-mouse/mouth.svg"
  14001. },
  14002. allForms: true
  14003. },
  14004. paw: {
  14005. height: math.unit(0.42, "feet"),
  14006. name: "Paw",
  14007. image: {
  14008. source: "./media/characters/sammy-mouse/paw.svg"
  14009. },
  14010. allForms: true
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Micro",
  14016. height: math.unit(5, "inches"),
  14017. allForms: true
  14018. },
  14019. {
  14020. name: "Normal",
  14021. height: math.unit(5, "feet"),
  14022. default: true,
  14023. allForms: true
  14024. },
  14025. {
  14026. name: "Macro",
  14027. height: math.unit(60, "feet"),
  14028. allForms: true
  14029. },
  14030. ],
  14031. {
  14032. "fluide": {
  14033. name: "Fluide",
  14034. default: true
  14035. },
  14036. "male": {
  14037. name: "Male",
  14038. },
  14039. "female": {
  14040. name: "Female",
  14041. },
  14042. }
  14043. ))
  14044. characterMakers.push(() => makeCharacter(
  14045. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  14046. {
  14047. front: {
  14048. height: math.unit(4, "feet"),
  14049. weight: math.unit(50, "lb"),
  14050. name: "Front",
  14051. image: {
  14052. source: "./media/characters/kole/front.svg",
  14053. extra: 1423 / 1303,
  14054. bottom: 0.025
  14055. }
  14056. },
  14057. back: {
  14058. height: math.unit(4, "feet"),
  14059. weight: math.unit(50, "lb"),
  14060. name: "Back",
  14061. image: {
  14062. source: "./media/characters/kole/back.svg",
  14063. extra: 1426 / 1280,
  14064. bottom: 0.02
  14065. }
  14066. },
  14067. },
  14068. [
  14069. {
  14070. name: "Normal",
  14071. height: math.unit(4, "feet"),
  14072. default: true
  14073. },
  14074. ]
  14075. ))
  14076. characterMakers.push(() => makeCharacter(
  14077. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14078. {
  14079. front: {
  14080. height: math.unit(2.5, "feet"),
  14081. weight: math.unit(32, "lb"),
  14082. name: "Front",
  14083. image: {
  14084. source: "./media/characters/rufran/front.svg",
  14085. extra: 1313/885,
  14086. bottom: 94/1407
  14087. }
  14088. },
  14089. side: {
  14090. height: math.unit(2.5, "feet"),
  14091. weight: math.unit(32, "lb"),
  14092. name: "Side",
  14093. image: {
  14094. source: "./media/characters/rufran/side.svg",
  14095. extra: 1109/852,
  14096. bottom: 118/1227
  14097. }
  14098. },
  14099. back: {
  14100. height: math.unit(2.5, "feet"),
  14101. weight: math.unit(32, "lb"),
  14102. name: "Back",
  14103. image: {
  14104. source: "./media/characters/rufran/back.svg",
  14105. extra: 1280/878,
  14106. bottom: 131/1411
  14107. }
  14108. },
  14109. mouth: {
  14110. height: math.unit(1.13, "feet"),
  14111. name: "Mouth",
  14112. image: {
  14113. source: "./media/characters/rufran/mouth.svg"
  14114. }
  14115. },
  14116. foot: {
  14117. height: math.unit(1.33, "feet"),
  14118. name: "Foot",
  14119. image: {
  14120. source: "./media/characters/rufran/foot.svg"
  14121. }
  14122. },
  14123. koboldFront: {
  14124. height: math.unit(2 + 6 / 12, "feet"),
  14125. weight: math.unit(20, "lb"),
  14126. name: "Front (Kobold)",
  14127. image: {
  14128. source: "./media/characters/rufran/kobold-front.svg",
  14129. extra: 2041 / 1839,
  14130. bottom: 0.055
  14131. }
  14132. },
  14133. koboldBack: {
  14134. height: math.unit(2 + 6 / 12, "feet"),
  14135. weight: math.unit(20, "lb"),
  14136. name: "Back (Kobold)",
  14137. image: {
  14138. source: "./media/characters/rufran/kobold-back.svg",
  14139. extra: 2054 / 1839,
  14140. bottom: 0.01
  14141. }
  14142. },
  14143. koboldHand: {
  14144. height: math.unit(0.2166, "meters"),
  14145. name: "Hand (Kobold)",
  14146. image: {
  14147. source: "./media/characters/rufran/kobold-hand.svg"
  14148. }
  14149. },
  14150. koboldFoot: {
  14151. height: math.unit(0.185, "meters"),
  14152. name: "Foot (Kobold)",
  14153. image: {
  14154. source: "./media/characters/rufran/kobold-foot.svg"
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Micro",
  14161. height: math.unit(1, "inch")
  14162. },
  14163. {
  14164. name: "Normal",
  14165. height: math.unit(2 + 6 / 12, "feet"),
  14166. default: true
  14167. },
  14168. {
  14169. name: "Big",
  14170. height: math.unit(60, "feet")
  14171. },
  14172. {
  14173. name: "Macro",
  14174. height: math.unit(325, "feet")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(0.3, "meters"),
  14183. weight: math.unit(3.5, "kg"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/chip/front.svg",
  14187. extra: 748 / 674
  14188. }
  14189. },
  14190. },
  14191. [
  14192. {
  14193. name: "Micro",
  14194. height: math.unit(1, "inch"),
  14195. default: true
  14196. },
  14197. ]
  14198. ))
  14199. characterMakers.push(() => makeCharacter(
  14200. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14201. {
  14202. side: {
  14203. height: math.unit(2.3, "meters"),
  14204. weight: math.unit(3500, "lb"),
  14205. name: "Side",
  14206. image: {
  14207. source: "./media/characters/torvid/side.svg",
  14208. extra: 1972 / 722,
  14209. bottom: 0.035
  14210. }
  14211. },
  14212. },
  14213. [
  14214. {
  14215. name: "Normal",
  14216. height: math.unit(2.3, "meters"),
  14217. default: true
  14218. },
  14219. ]
  14220. ))
  14221. characterMakers.push(() => makeCharacter(
  14222. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14223. {
  14224. front: {
  14225. height: math.unit(2, "meters"),
  14226. weight: math.unit(150.5, "kg"),
  14227. name: "Front",
  14228. image: {
  14229. source: "./media/characters/susan/front.svg",
  14230. extra: 693 / 635,
  14231. bottom: 0.05
  14232. }
  14233. },
  14234. },
  14235. [
  14236. {
  14237. name: "Megamacro",
  14238. height: math.unit(505, "miles"),
  14239. default: true
  14240. },
  14241. ]
  14242. ))
  14243. characterMakers.push(() => makeCharacter(
  14244. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14245. {
  14246. front: {
  14247. height: math.unit(6, "feet"),
  14248. weight: math.unit(150, "lb"),
  14249. name: "Front",
  14250. image: {
  14251. source: "./media/characters/raindrops/front.svg",
  14252. extra: 2655 / 2461,
  14253. bottom: 49 / 2705
  14254. }
  14255. },
  14256. back: {
  14257. height: math.unit(6, "feet"),
  14258. weight: math.unit(150, "lb"),
  14259. name: "Back",
  14260. image: {
  14261. source: "./media/characters/raindrops/back.svg",
  14262. extra: 2574 / 2400,
  14263. bottom: 65 / 2634
  14264. }
  14265. },
  14266. },
  14267. [
  14268. {
  14269. name: "Micro",
  14270. height: math.unit(6, "inches")
  14271. },
  14272. {
  14273. name: "Normal",
  14274. height: math.unit(6 + 2 / 12, "feet")
  14275. },
  14276. {
  14277. name: "Macro",
  14278. height: math.unit(131, "feet"),
  14279. default: true
  14280. },
  14281. {
  14282. name: "Megamacro",
  14283. height: math.unit(15, "miles")
  14284. },
  14285. {
  14286. name: "Gigamacro",
  14287. height: math.unit(4000, "miles")
  14288. },
  14289. {
  14290. name: "Teramacro",
  14291. height: math.unit(315000, "miles")
  14292. },
  14293. ]
  14294. ))
  14295. characterMakers.push(() => makeCharacter(
  14296. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14297. {
  14298. front: {
  14299. height: math.unit(2.794, "meters"),
  14300. weight: math.unit(325, "kg"),
  14301. name: "Front",
  14302. image: {
  14303. source: "./media/characters/tezwa/front.svg",
  14304. extra: 2083 / 1906,
  14305. bottom: 0.031
  14306. }
  14307. },
  14308. foot: {
  14309. height: math.unit(0.687, "meters"),
  14310. name: "Foot",
  14311. image: {
  14312. source: "./media/characters/tezwa/foot.svg"
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Normal",
  14319. height: math.unit(9 + 2 / 12, "feet"),
  14320. default: true
  14321. },
  14322. ]
  14323. ))
  14324. characterMakers.push(() => makeCharacter(
  14325. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14326. {
  14327. front: {
  14328. height: math.unit(58, "feet"),
  14329. weight: math.unit(89000, "lb"),
  14330. name: "Front",
  14331. image: {
  14332. source: "./media/characters/typhus/front.svg",
  14333. extra: 816 / 800,
  14334. bottom: 0.065
  14335. }
  14336. },
  14337. },
  14338. [
  14339. {
  14340. name: "Macro",
  14341. height: math.unit(58, "feet"),
  14342. default: true
  14343. },
  14344. ]
  14345. ))
  14346. characterMakers.push(() => makeCharacter(
  14347. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14348. {
  14349. front: {
  14350. height: math.unit(12, "feet"),
  14351. weight: math.unit(6, "tonnes"),
  14352. name: "Front",
  14353. image: {
  14354. source: "./media/characters/lyra-von-wulf/front.svg",
  14355. extra: 1,
  14356. bottom: 0.10
  14357. }
  14358. },
  14359. frontMecha: {
  14360. height: math.unit(12, "feet"),
  14361. weight: math.unit(12, "tonnes"),
  14362. name: "Front (Mecha)",
  14363. image: {
  14364. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14365. extra: 1,
  14366. bottom: 0.042
  14367. }
  14368. },
  14369. maw: {
  14370. height: math.unit(2.2, "feet"),
  14371. name: "Maw",
  14372. image: {
  14373. source: "./media/characters/lyra-von-wulf/maw.svg"
  14374. }
  14375. },
  14376. },
  14377. [
  14378. {
  14379. name: "Normal",
  14380. height: math.unit(12, "feet"),
  14381. default: true
  14382. },
  14383. {
  14384. name: "Classic",
  14385. height: math.unit(50, "feet")
  14386. },
  14387. {
  14388. name: "Macro",
  14389. height: math.unit(500, "feet")
  14390. },
  14391. {
  14392. name: "Megamacro",
  14393. height: math.unit(1, "mile")
  14394. },
  14395. {
  14396. name: "Gigamacro",
  14397. height: math.unit(400, "miles")
  14398. },
  14399. {
  14400. name: "Teramacro",
  14401. height: math.unit(22000, "miles")
  14402. },
  14403. {
  14404. name: "Solarmacro",
  14405. height: math.unit(8600000, "miles")
  14406. },
  14407. {
  14408. name: "Galactic",
  14409. height: math.unit(1057000, "lightyears")
  14410. },
  14411. ]
  14412. ))
  14413. characterMakers.push(() => makeCharacter(
  14414. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14415. {
  14416. front: {
  14417. height: math.unit(6 + 10 / 12, "feet"),
  14418. weight: math.unit(150, "lb"),
  14419. name: "Front",
  14420. image: {
  14421. source: "./media/characters/dixon/front.svg",
  14422. extra: 3361 / 3209,
  14423. bottom: 0.01
  14424. }
  14425. },
  14426. },
  14427. [
  14428. {
  14429. name: "Normal",
  14430. height: math.unit(6 + 10 / 12, "feet"),
  14431. default: true
  14432. },
  14433. {
  14434. name: "Big",
  14435. height: math.unit(12, "meters")
  14436. },
  14437. {
  14438. name: "Macro",
  14439. height: math.unit(500, "meters")
  14440. },
  14441. {
  14442. name: "Megamacro",
  14443. height: math.unit(2, "km")
  14444. },
  14445. ]
  14446. ))
  14447. characterMakers.push(() => makeCharacter(
  14448. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14449. {
  14450. kingCheetah_front: {
  14451. height: math.unit(1.85, "meters"),
  14452. weight: math.unit(68, "kg"),
  14453. name: "Front",
  14454. image: {
  14455. source: "./media/characters/kauko/king-cheetah-front.svg",
  14456. extra: 1007/972,
  14457. bottom: 35/1042
  14458. },
  14459. form: "king-cheetah",
  14460. default: true
  14461. },
  14462. kingCheetah_back: {
  14463. height: math.unit(1.85, "meters"),
  14464. weight: math.unit(68, "kg"),
  14465. name: "Back",
  14466. image: {
  14467. source: "./media/characters/kauko/king-cheetah-back.svg",
  14468. extra: 1015/980,
  14469. bottom: 11/1026
  14470. },
  14471. form: "king-cheetah",
  14472. },
  14473. kingCheetah_hand: {
  14474. height: math.unit(0.23, "meters"),
  14475. name: "Hand",
  14476. image: {
  14477. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14478. },
  14479. form: "king-cheetah",
  14480. },
  14481. kingCheetah_paw: {
  14482. height: math.unit(0.38, "meters"),
  14483. name: "Paw",
  14484. image: {
  14485. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14486. },
  14487. form: "king-cheetah",
  14488. },
  14489. kingCheetah_nape: {
  14490. height: math.unit(0.23, "meters"),
  14491. name: "Nape",
  14492. image: {
  14493. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14494. },
  14495. form: "king-cheetah",
  14496. },
  14497. wolf_front: {
  14498. height: math.unit(1.88, "meters"),
  14499. weight: math.unit(74, "kg"),
  14500. name: "Front",
  14501. image: {
  14502. source: "./media/characters/kauko/wolf-front.svg",
  14503. extra: 952/908,
  14504. bottom: 64/1016
  14505. },
  14506. form: "wolf",
  14507. default: true
  14508. },
  14509. wolf_dressed: {
  14510. height: math.unit(1.88, "meters"),
  14511. weight: math.unit(74, "kg"),
  14512. name: "Dressed",
  14513. image: {
  14514. source: "./media/characters/kauko/wolf-dressed.svg",
  14515. extra: 963/916,
  14516. bottom: 101/1064
  14517. },
  14518. form: "wolf",
  14519. },
  14520. wolf_hand: {
  14521. height: math.unit(0.3, "meters"),
  14522. name: "Hand",
  14523. image: {
  14524. source: "./media/characters/kauko/wolf-hand.svg"
  14525. },
  14526. form: "wolf",
  14527. },
  14528. wolf_paw: {
  14529. height: math.unit(0.407, "meters"),
  14530. name: "Paw",
  14531. image: {
  14532. source: "./media/characters/kauko/wolf-paw.svg"
  14533. },
  14534. form: "wolf",
  14535. },
  14536. wolf_nape: {
  14537. height: math.unit(0.25, "meters"),
  14538. name: "Nape",
  14539. image: {
  14540. source: "./media/characters/kauko/wolf-nape.svg"
  14541. },
  14542. form: "wolf",
  14543. },
  14544. },
  14545. [
  14546. {
  14547. name: "Normal",
  14548. height: math.unit(1.85, "m"),
  14549. default: true,
  14550. form: "king-cheetah"
  14551. },
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(1.88, "m"),
  14555. default: true,
  14556. form: "wolf"
  14557. },
  14558. ],
  14559. {
  14560. "king-cheetah": {
  14561. name: "King Cheetah",
  14562. default: true
  14563. },
  14564. "wolf": {
  14565. name: "Wolf",
  14566. },
  14567. }
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14571. {
  14572. frontSfw: {
  14573. height: math.unit(5, "meters"),
  14574. weight: math.unit(4250, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/varg/front-sfw.svg",
  14578. extra: 1103/1010,
  14579. bottom: 50/1153
  14580. },
  14581. form: "anthro",
  14582. default: true
  14583. },
  14584. backSfw: {
  14585. height: math.unit(5, "meters"),
  14586. weight: math.unit(4250, "lb"),
  14587. name: "Back",
  14588. image: {
  14589. source: "./media/characters/varg/back-sfw.svg",
  14590. extra: 1038/1022,
  14591. bottom: 36/1074
  14592. },
  14593. form: "anthro"
  14594. },
  14595. frontNsfw: {
  14596. height: math.unit(5, "meters"),
  14597. weight: math.unit(4250, "lb"),
  14598. name: "Front (NSFW)",
  14599. image: {
  14600. source: "./media/characters/varg/front-nsfw.svg",
  14601. extra: 1103/1010,
  14602. bottom: 50/1153
  14603. },
  14604. form: "anthro"
  14605. },
  14606. sheath: {
  14607. height: math.unit(3.8, "feet"),
  14608. weight: math.unit(90, "kilograms"),
  14609. name: "Sheath",
  14610. image: {
  14611. source: "./media/characters/varg/sheath.svg"
  14612. },
  14613. form: "anthro"
  14614. },
  14615. dick: {
  14616. height: math.unit(4.6, "feet"),
  14617. weight: math.unit(451, "kilograms"),
  14618. name: "Dick",
  14619. image: {
  14620. source: "./media/characters/varg/dick.svg"
  14621. },
  14622. form: "anthro"
  14623. },
  14624. feralSfw: {
  14625. height: math.unit(5, "meters"),
  14626. weight: math.unit(100000, "lb"),
  14627. name: "Side",
  14628. image: {
  14629. source: "./media/characters/varg/feral-sfw.svg",
  14630. extra: 1065/511,
  14631. bottom: 211/1276
  14632. },
  14633. form: "feral",
  14634. default: true
  14635. },
  14636. feralNsfw: {
  14637. height: math.unit(5, "meters"),
  14638. weight: math.unit(100000, "lb"),
  14639. name: "Side (NSFW)",
  14640. image: {
  14641. source: "./media/characters/varg/feral-nsfw.svg",
  14642. extra: 1065/511,
  14643. bottom: 211/1276
  14644. },
  14645. form: "feral",
  14646. },
  14647. feralSheath: {
  14648. height: math.unit(9.8, "feet"),
  14649. weight: math.unit(2000, "kilograms"),
  14650. name: "Sheath",
  14651. image: {
  14652. source: "./media/characters/varg/sheath.svg"
  14653. },
  14654. form: "feral"
  14655. },
  14656. feralDick: {
  14657. height: math.unit(13.11, "feet"),
  14658. weight: math.unit(10440, "kilograms"),
  14659. name: "Dick",
  14660. image: {
  14661. source: "./media/characters/varg/dick.svg"
  14662. },
  14663. form: "feral"
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(5, "meters"),
  14670. form: "anthro"
  14671. },
  14672. {
  14673. name: "Macro",
  14674. height: math.unit(200, "meters"),
  14675. form: "anthro"
  14676. },
  14677. {
  14678. name: "Megamacro",
  14679. height: math.unit(20, "kilometers"),
  14680. form: "anthro"
  14681. },
  14682. {
  14683. name: "True Size",
  14684. height: math.unit(211, "km"),
  14685. form: "anthro",
  14686. default: true
  14687. },
  14688. {
  14689. name: "Gigamacro",
  14690. height: math.unit(1000, "km"),
  14691. form: "anthro"
  14692. },
  14693. {
  14694. name: "Gigamacro+",
  14695. height: math.unit(8000, "km"),
  14696. form: "anthro"
  14697. },
  14698. {
  14699. name: "Teramacro",
  14700. height: math.unit(1000000, "km"),
  14701. form: "anthro"
  14702. },
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(5, "meters"),
  14706. form: "feral"
  14707. },
  14708. {
  14709. name: "Macro",
  14710. height: math.unit(200, "meters"),
  14711. form: "feral"
  14712. },
  14713. {
  14714. name: "Megamacro",
  14715. height: math.unit(20, "kilometers"),
  14716. form: "feral"
  14717. },
  14718. {
  14719. name: "True Size",
  14720. height: math.unit(211, "km"),
  14721. form: "feral",
  14722. default: true
  14723. },
  14724. {
  14725. name: "Gigamacro",
  14726. height: math.unit(1000, "km"),
  14727. form: "feral"
  14728. },
  14729. {
  14730. name: "Gigamacro+",
  14731. height: math.unit(8000, "km"),
  14732. form: "feral"
  14733. },
  14734. {
  14735. name: "Teramacro",
  14736. height: math.unit(1000000, "km"),
  14737. form: "feral"
  14738. },
  14739. ],
  14740. {
  14741. "anthro": {
  14742. name: "Anthro",
  14743. default: true
  14744. },
  14745. "feral": {
  14746. name: "Feral",
  14747. },
  14748. }
  14749. ))
  14750. characterMakers.push(() => makeCharacter(
  14751. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14752. {
  14753. front: {
  14754. height: math.unit(7 + 7 / 12, "feet"),
  14755. weight: math.unit(267, "lb"),
  14756. name: "Front",
  14757. image: {
  14758. source: "./media/characters/dayza/front.svg",
  14759. extra: 1262 / 1200,
  14760. bottom: 0.035
  14761. }
  14762. },
  14763. side: {
  14764. height: math.unit(7 + 7 / 12, "feet"),
  14765. weight: math.unit(267, "lb"),
  14766. name: "Side",
  14767. image: {
  14768. source: "./media/characters/dayza/side.svg",
  14769. extra: 1295 / 1245,
  14770. bottom: 0.05
  14771. }
  14772. },
  14773. back: {
  14774. height: math.unit(7 + 7 / 12, "feet"),
  14775. weight: math.unit(267, "lb"),
  14776. name: "Back",
  14777. image: {
  14778. source: "./media/characters/dayza/back.svg",
  14779. extra: 1241 / 1170
  14780. }
  14781. },
  14782. },
  14783. [
  14784. {
  14785. name: "Normal",
  14786. height: math.unit(7 + 7 / 12, "feet"),
  14787. default: true
  14788. },
  14789. {
  14790. name: "Macro",
  14791. height: math.unit(155, "feet")
  14792. },
  14793. ]
  14794. ))
  14795. characterMakers.push(() => makeCharacter(
  14796. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14797. {
  14798. front: {
  14799. height: math.unit(6 + 5 / 12, "feet"),
  14800. weight: math.unit(160, "lb"),
  14801. name: "Front",
  14802. image: {
  14803. source: "./media/characters/xanthos/front.svg",
  14804. extra: 1,
  14805. bottom: 0.04
  14806. }
  14807. },
  14808. back: {
  14809. height: math.unit(6 + 5 / 12, "feet"),
  14810. weight: math.unit(160, "lb"),
  14811. name: "Back",
  14812. image: {
  14813. source: "./media/characters/xanthos/back.svg",
  14814. extra: 1,
  14815. bottom: 0.03
  14816. }
  14817. },
  14818. hand: {
  14819. height: math.unit(0.928, "feet"),
  14820. name: "Hand",
  14821. image: {
  14822. source: "./media/characters/xanthos/hand.svg"
  14823. }
  14824. },
  14825. foot: {
  14826. height: math.unit(1.286, "feet"),
  14827. name: "Foot",
  14828. image: {
  14829. source: "./media/characters/xanthos/foot.svg"
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Normal",
  14836. height: math.unit(6 + 5 / 12, "feet"),
  14837. default: true
  14838. },
  14839. {
  14840. name: "Normal+",
  14841. height: math.unit(6, "meters")
  14842. },
  14843. {
  14844. name: "Macro",
  14845. height: math.unit(40, "feet")
  14846. },
  14847. {
  14848. name: "Macro+",
  14849. height: math.unit(200, "meters")
  14850. },
  14851. {
  14852. name: "Megamacro",
  14853. height: math.unit(20, "km")
  14854. },
  14855. {
  14856. name: "Megamacro+",
  14857. height: math.unit(100, "km")
  14858. },
  14859. {
  14860. name: "Gigamacro",
  14861. height: math.unit(200, "megameters")
  14862. },
  14863. {
  14864. name: "Gigamacro+",
  14865. height: math.unit(1.5, "gigameters")
  14866. },
  14867. ]
  14868. ))
  14869. characterMakers.push(() => makeCharacter(
  14870. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14871. {
  14872. front: {
  14873. height: math.unit(6 + 3 / 12, "feet"),
  14874. weight: math.unit(215, "lb"),
  14875. name: "Front",
  14876. image: {
  14877. source: "./media/characters/grynn/front.svg",
  14878. extra: 4627 / 4209,
  14879. bottom: 0.047
  14880. }
  14881. },
  14882. },
  14883. [
  14884. {
  14885. name: "Micro",
  14886. height: math.unit(6, "inches")
  14887. },
  14888. {
  14889. name: "Normal",
  14890. height: math.unit(6 + 3 / 12, "feet"),
  14891. default: true
  14892. },
  14893. {
  14894. name: "Big",
  14895. height: math.unit(104, "feet")
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(944, "feet")
  14900. },
  14901. {
  14902. name: "Macro+",
  14903. height: math.unit(9480, "feet")
  14904. },
  14905. {
  14906. name: "Megamacro",
  14907. height: math.unit(78752, "feet")
  14908. },
  14909. {
  14910. name: "Megamacro+",
  14911. height: math.unit(630128, "feet")
  14912. },
  14913. {
  14914. name: "Megamacro++",
  14915. height: math.unit(3150695, "feet")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(7 + 5 / 12, "feet"),
  14924. weight: math.unit(450, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/mocha-aura/front.svg",
  14928. extra: 1907 / 1817,
  14929. bottom: 0.04
  14930. }
  14931. },
  14932. back: {
  14933. height: math.unit(7 + 5 / 12, "feet"),
  14934. weight: math.unit(450, "lb"),
  14935. name: "Back",
  14936. image: {
  14937. source: "./media/characters/mocha-aura/back.svg",
  14938. extra: 1900 / 1825,
  14939. bottom: 0.045
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Nano",
  14946. height: math.unit(1, "nm")
  14947. },
  14948. {
  14949. name: "Megamicro",
  14950. height: math.unit(1, "mm")
  14951. },
  14952. {
  14953. name: "Micro",
  14954. height: math.unit(3, "inches")
  14955. },
  14956. {
  14957. name: "Normal",
  14958. height: math.unit(7 + 5 / 12, "feet"),
  14959. default: true
  14960. },
  14961. {
  14962. name: "Macro",
  14963. height: math.unit(30, "feet")
  14964. },
  14965. {
  14966. name: "Megamacro",
  14967. height: math.unit(3500, "feet")
  14968. },
  14969. {
  14970. name: "Teramacro",
  14971. height: math.unit(500000, "miles")
  14972. },
  14973. {
  14974. name: "Petamacro",
  14975. height: math.unit(50000000000000000, "parsecs")
  14976. },
  14977. ]
  14978. ))
  14979. characterMakers.push(() => makeCharacter(
  14980. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14981. {
  14982. front: {
  14983. height: math.unit(6, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Front",
  14986. image: {
  14987. source: "./media/characters/ilisha-devya/front.svg",
  14988. extra: 1053/1049,
  14989. bottom: 270/1323
  14990. }
  14991. },
  14992. back: {
  14993. height: math.unit(6, "feet"),
  14994. weight: math.unit(150, "lb"),
  14995. name: "Back",
  14996. image: {
  14997. source: "./media/characters/ilisha-devya/back.svg",
  14998. extra: 1131/1128,
  14999. bottom: 39/1170
  15000. }
  15001. },
  15002. },
  15003. [
  15004. {
  15005. name: "Macro",
  15006. height: math.unit(500, "feet"),
  15007. default: true
  15008. },
  15009. {
  15010. name: "Megamacro",
  15011. height: math.unit(10, "miles")
  15012. },
  15013. {
  15014. name: "Gigamacro",
  15015. height: math.unit(100000, "miles")
  15016. },
  15017. {
  15018. name: "Examacro",
  15019. height: math.unit(1e9, "lightyears")
  15020. },
  15021. {
  15022. name: "Omniversal",
  15023. height: math.unit(1e33, "lightyears")
  15024. },
  15025. {
  15026. name: "Beyond Infinite",
  15027. height: math.unit(1e100, "lightyears")
  15028. },
  15029. ]
  15030. ))
  15031. characterMakers.push(() => makeCharacter(
  15032. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  15033. {
  15034. Side: {
  15035. height: math.unit(6, "feet"),
  15036. weight: math.unit(150, "lb"),
  15037. name: "Side",
  15038. image: {
  15039. source: "./media/characters/mira/side.svg",
  15040. extra: 900 / 799,
  15041. bottom: 0.02
  15042. }
  15043. },
  15044. },
  15045. [
  15046. {
  15047. name: "Human Size",
  15048. height: math.unit(6, "feet")
  15049. },
  15050. {
  15051. name: "Macro",
  15052. height: math.unit(100, "feet"),
  15053. default: true
  15054. },
  15055. {
  15056. name: "Megamacro",
  15057. height: math.unit(10, "miles")
  15058. },
  15059. {
  15060. name: "Gigamacro",
  15061. height: math.unit(25000, "miles")
  15062. },
  15063. {
  15064. name: "Teramacro",
  15065. height: math.unit(300, "AU")
  15066. },
  15067. {
  15068. name: "Full Size",
  15069. height: math.unit(4.5e10, "lightyears")
  15070. },
  15071. ]
  15072. ))
  15073. characterMakers.push(() => makeCharacter(
  15074. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15075. {
  15076. front: {
  15077. height: math.unit(6, "feet"),
  15078. weight: math.unit(150, "lb"),
  15079. name: "Front",
  15080. image: {
  15081. source: "./media/characters/holly/front.svg",
  15082. extra: 639 / 606
  15083. }
  15084. },
  15085. back: {
  15086. height: math.unit(6, "feet"),
  15087. weight: math.unit(150, "lb"),
  15088. name: "Back",
  15089. image: {
  15090. source: "./media/characters/holly/back.svg",
  15091. extra: 623 / 598
  15092. }
  15093. },
  15094. frontWorking: {
  15095. height: math.unit(6, "feet"),
  15096. weight: math.unit(150, "lb"),
  15097. name: "Front (Working)",
  15098. image: {
  15099. source: "./media/characters/holly/front-working.svg",
  15100. extra: 607 / 577,
  15101. bottom: 0.048
  15102. }
  15103. },
  15104. },
  15105. [
  15106. {
  15107. name: "Normal",
  15108. height: math.unit(12 + 3 / 12, "feet"),
  15109. default: true
  15110. },
  15111. ]
  15112. ))
  15113. characterMakers.push(() => makeCharacter(
  15114. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15115. {
  15116. front: {
  15117. height: math.unit(6, "feet"),
  15118. weight: math.unit(150, "lb"),
  15119. name: "Front",
  15120. image: {
  15121. source: "./media/characters/porter/front.svg",
  15122. extra: 1,
  15123. bottom: 0.01
  15124. }
  15125. },
  15126. frontRobes: {
  15127. height: math.unit(6, "feet"),
  15128. weight: math.unit(150, "lb"),
  15129. name: "Front (Robes)",
  15130. image: {
  15131. source: "./media/characters/porter/front-robes.svg",
  15132. extra: 1.01,
  15133. bottom: 0.01
  15134. }
  15135. },
  15136. },
  15137. [
  15138. {
  15139. name: "Normal",
  15140. height: math.unit(11 + 9 / 12, "feet"),
  15141. default: true
  15142. },
  15143. ]
  15144. ))
  15145. characterMakers.push(() => makeCharacter(
  15146. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15147. {
  15148. legendary: {
  15149. height: math.unit(6, "feet"),
  15150. weight: math.unit(150, "lb"),
  15151. name: "Legendary",
  15152. image: {
  15153. source: "./media/characters/lucy/legendary.svg",
  15154. extra: 1355 / 1100,
  15155. bottom: 0.045
  15156. }
  15157. },
  15158. },
  15159. [
  15160. {
  15161. name: "Legendary",
  15162. height: math.unit(86882 * 2, "miles"),
  15163. default: true
  15164. },
  15165. ]
  15166. ))
  15167. characterMakers.push(() => makeCharacter(
  15168. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15169. {
  15170. front: {
  15171. height: math.unit(6, "feet"),
  15172. weight: math.unit(150, "lb"),
  15173. name: "Front",
  15174. image: {
  15175. source: "./media/characters/drusilla/front.svg",
  15176. extra: 678 / 635,
  15177. bottom: 0.03
  15178. }
  15179. },
  15180. back: {
  15181. height: math.unit(6, "feet"),
  15182. weight: math.unit(150, "lb"),
  15183. name: "Back",
  15184. image: {
  15185. source: "./media/characters/drusilla/back.svg",
  15186. extra: 678 / 635,
  15187. bottom: 0.005
  15188. }
  15189. },
  15190. },
  15191. [
  15192. {
  15193. name: "Macro",
  15194. height: math.unit(100, "feet")
  15195. },
  15196. {
  15197. name: "Canon Height",
  15198. height: math.unit(2000, "feet"),
  15199. default: true
  15200. },
  15201. ]
  15202. ))
  15203. characterMakers.push(() => makeCharacter(
  15204. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15205. {
  15206. front: {
  15207. height: math.unit(6, "feet"),
  15208. weight: math.unit(180, "lb"),
  15209. name: "Front",
  15210. image: {
  15211. source: "./media/characters/renard-thatch/front.svg",
  15212. extra: 2411 / 2275,
  15213. bottom: 0.01
  15214. }
  15215. },
  15216. frontPosing: {
  15217. height: math.unit(6, "feet"),
  15218. weight: math.unit(180, "lb"),
  15219. name: "Front (Posing)",
  15220. image: {
  15221. source: "./media/characters/renard-thatch/front-posing.svg",
  15222. extra: 2381 / 2261,
  15223. bottom: 0.01
  15224. }
  15225. },
  15226. back: {
  15227. height: math.unit(6, "feet"),
  15228. weight: math.unit(180, "lb"),
  15229. name: "Back",
  15230. image: {
  15231. source: "./media/characters/renard-thatch/back.svg",
  15232. extra: 2428 / 2288
  15233. }
  15234. },
  15235. },
  15236. [
  15237. {
  15238. name: "Micro",
  15239. height: math.unit(3, "inches")
  15240. },
  15241. {
  15242. name: "Default",
  15243. height: math.unit(6, "feet"),
  15244. default: true
  15245. },
  15246. {
  15247. name: "Macro",
  15248. height: math.unit(75, "feet")
  15249. },
  15250. ]
  15251. ))
  15252. characterMakers.push(() => makeCharacter(
  15253. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15254. {
  15255. front: {
  15256. height: math.unit(1450, "feet"),
  15257. weight: math.unit(1.21e6, "tons"),
  15258. name: "Front",
  15259. image: {
  15260. source: "./media/characters/sekvra/front.svg",
  15261. extra: 1193/1190,
  15262. bottom: 78/1271
  15263. }
  15264. },
  15265. side: {
  15266. height: math.unit(1450, "feet"),
  15267. weight: math.unit(1.21e6, "tons"),
  15268. name: "Side",
  15269. image: {
  15270. source: "./media/characters/sekvra/side.svg",
  15271. extra: 1193/1190,
  15272. bottom: 52/1245
  15273. }
  15274. },
  15275. back: {
  15276. height: math.unit(1450, "feet"),
  15277. weight: math.unit(1.21e6, "tons"),
  15278. name: "Back",
  15279. image: {
  15280. source: "./media/characters/sekvra/back.svg",
  15281. extra: 1219/1216,
  15282. bottom: 21/1240
  15283. }
  15284. },
  15285. frontClothed: {
  15286. height: math.unit(1450, "feet"),
  15287. weight: math.unit(1.21e6, "tons"),
  15288. name: "Front (Clothed)",
  15289. image: {
  15290. source: "./media/characters/sekvra/front-clothed.svg",
  15291. extra: 1192/1189,
  15292. bottom: 79/1271
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Macro",
  15299. height: math.unit(1450, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Megamacro",
  15304. height: math.unit(15000, "feet")
  15305. },
  15306. ]
  15307. ))
  15308. characterMakers.push(() => makeCharacter(
  15309. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15310. {
  15311. front: {
  15312. height: math.unit(6, "feet"),
  15313. weight: math.unit(150, "lb"),
  15314. name: "Front",
  15315. image: {
  15316. source: "./media/characters/carmine/front.svg",
  15317. extra: 1557/1538,
  15318. bottom: 68/1625
  15319. }
  15320. },
  15321. frontArmor: {
  15322. height: math.unit(6, "feet"),
  15323. weight: math.unit(150, "lb"),
  15324. name: "Front (Armor)",
  15325. image: {
  15326. source: "./media/characters/carmine/front-armor.svg",
  15327. extra: 1549/1530,
  15328. bottom: 82/1631
  15329. }
  15330. },
  15331. mouth: {
  15332. height: math.unit(0.55, "feet"),
  15333. name: "Mouth",
  15334. image: {
  15335. source: "./media/characters/carmine/mouth.svg"
  15336. }
  15337. },
  15338. hand: {
  15339. height: math.unit(1.05, "feet"),
  15340. name: "Hand",
  15341. image: {
  15342. source: "./media/characters/carmine/hand.svg"
  15343. }
  15344. },
  15345. foot: {
  15346. height: math.unit(0.6, "feet"),
  15347. name: "Foot",
  15348. image: {
  15349. source: "./media/characters/carmine/foot.svg"
  15350. }
  15351. },
  15352. },
  15353. [
  15354. {
  15355. name: "Large",
  15356. height: math.unit(1, "mile")
  15357. },
  15358. {
  15359. name: "Huge",
  15360. height: math.unit(40, "miles"),
  15361. default: true
  15362. },
  15363. {
  15364. name: "Colossal",
  15365. height: math.unit(2500, "miles")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(6, "feet"),
  15374. weight: math.unit(150, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/elyssia/front.svg",
  15378. extra: 2201 / 2035,
  15379. bottom: 0.05
  15380. }
  15381. },
  15382. frontClothed: {
  15383. height: math.unit(6, "feet"),
  15384. weight: math.unit(150, "lb"),
  15385. name: "Front (Clothed)",
  15386. image: {
  15387. source: "./media/characters/elyssia/front-clothed.svg",
  15388. extra: 2201 / 2035,
  15389. bottom: 0.05
  15390. }
  15391. },
  15392. back: {
  15393. height: math.unit(6, "feet"),
  15394. weight: math.unit(150, "lb"),
  15395. name: "Back",
  15396. image: {
  15397. source: "./media/characters/elyssia/back.svg",
  15398. extra: 2201 / 2035,
  15399. bottom: 0.013
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Smaller",
  15406. height: math.unit(150, "feet")
  15407. },
  15408. {
  15409. name: "Standard",
  15410. height: math.unit(1400, "feet"),
  15411. default: true
  15412. },
  15413. {
  15414. name: "Distracted",
  15415. height: math.unit(15000, "feet")
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(7 + 4/12, "feet"),
  15424. weight: math.unit(690, "lb"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/geno-maxwell/front.svg",
  15428. extra: 984/856,
  15429. bottom: 87/1071
  15430. }
  15431. },
  15432. back: {
  15433. height: math.unit(7 + 4/12, "feet"),
  15434. weight: math.unit(690, "lb"),
  15435. name: "Back",
  15436. image: {
  15437. source: "./media/characters/geno-maxwell/back.svg",
  15438. extra: 981/854,
  15439. bottom: 57/1038
  15440. }
  15441. },
  15442. frontCostume: {
  15443. height: math.unit(7 + 4/12, "feet"),
  15444. weight: math.unit(690, "lb"),
  15445. name: "Front (Costume)",
  15446. image: {
  15447. source: "./media/characters/geno-maxwell/front-costume.svg",
  15448. extra: 984/856,
  15449. bottom: 87/1071
  15450. }
  15451. },
  15452. backcostume: {
  15453. height: math.unit(7 + 4/12, "feet"),
  15454. weight: math.unit(690, "lb"),
  15455. name: "Back (Costume)",
  15456. image: {
  15457. source: "./media/characters/geno-maxwell/back-costume.svg",
  15458. extra: 981/854,
  15459. bottom: 57/1038
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Micro",
  15466. height: math.unit(3, "inches")
  15467. },
  15468. {
  15469. name: "Normal",
  15470. height: math.unit(7 + 4 / 12, "feet"),
  15471. default: true
  15472. },
  15473. {
  15474. name: "Macro",
  15475. height: math.unit(220, "feet")
  15476. },
  15477. {
  15478. name: "Megamacro",
  15479. height: math.unit(11, "miles")
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(7 + 4/12, "feet"),
  15488. weight: math.unit(750, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/regena-maxwell/front.svg",
  15492. extra: 984/856,
  15493. bottom: 87/1071
  15494. }
  15495. },
  15496. back: {
  15497. height: math.unit(7 + 4/12, "feet"),
  15498. weight: math.unit(750, "lb"),
  15499. name: "Back",
  15500. image: {
  15501. source: "./media/characters/regena-maxwell/back.svg",
  15502. extra: 981/854,
  15503. bottom: 57/1038
  15504. }
  15505. },
  15506. frontCostume: {
  15507. height: math.unit(7 + 4/12, "feet"),
  15508. weight: math.unit(750, "lb"),
  15509. name: "Front (Costume)",
  15510. image: {
  15511. source: "./media/characters/regena-maxwell/front-costume.svg",
  15512. extra: 984/856,
  15513. bottom: 87/1071
  15514. }
  15515. },
  15516. backcostume: {
  15517. height: math.unit(7 + 4/12, "feet"),
  15518. weight: math.unit(750, "lb"),
  15519. name: "Back (Costume)",
  15520. image: {
  15521. source: "./media/characters/regena-maxwell/back-costume.svg",
  15522. extra: 981/854,
  15523. bottom: 57/1038
  15524. }
  15525. },
  15526. },
  15527. [
  15528. {
  15529. name: "Normal",
  15530. height: math.unit(7 + 4 / 12, "feet"),
  15531. default: true
  15532. },
  15533. {
  15534. name: "Macro",
  15535. height: math.unit(220, "feet")
  15536. },
  15537. {
  15538. name: "Megamacro",
  15539. height: math.unit(11, "miles")
  15540. },
  15541. ]
  15542. ))
  15543. characterMakers.push(() => makeCharacter(
  15544. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15545. {
  15546. front: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(150, "lb"),
  15549. name: "Front",
  15550. image: {
  15551. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15552. extra: 860 / 690,
  15553. bottom: 0.03
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Normal",
  15560. height: math.unit(1.7, "meters"),
  15561. default: true
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(6, "feet"),
  15570. weight: math.unit(150, "lb"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/quilly/front.svg",
  15574. extra: 890 / 776
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Gigamacro",
  15581. height: math.unit(404090, "miles"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15588. {
  15589. front: {
  15590. height: math.unit(7 + 8 / 12, "feet"),
  15591. weight: math.unit(350, "lb"),
  15592. name: "Front",
  15593. image: {
  15594. source: "./media/characters/tempest/front.svg",
  15595. extra: 1175 / 1086,
  15596. bottom: 0.02
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Normal",
  15603. height: math.unit(7 + 8 / 12, "feet"),
  15604. default: true
  15605. },
  15606. ]
  15607. ))
  15608. characterMakers.push(() => makeCharacter(
  15609. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15610. {
  15611. side: {
  15612. height: math.unit(4 + 5 / 12, "feet"),
  15613. weight: math.unit(80, "lb"),
  15614. name: "Side",
  15615. image: {
  15616. source: "./media/characters/rodger/side.svg",
  15617. extra: 1235 / 1118
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Micro",
  15624. height: math.unit(1, "inch")
  15625. },
  15626. {
  15627. name: "Normal",
  15628. height: math.unit(4 + 5 / 12, "feet"),
  15629. default: true
  15630. },
  15631. {
  15632. name: "Macro",
  15633. height: math.unit(120, "feet")
  15634. },
  15635. ]
  15636. ))
  15637. characterMakers.push(() => makeCharacter(
  15638. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15639. {
  15640. front: {
  15641. height: math.unit(6, "feet"),
  15642. weight: math.unit(150, "lb"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/danyel/front.svg",
  15646. extra: 1185 / 1123,
  15647. bottom: 0.05
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Shrunken",
  15654. height: math.unit(0.5, "mm")
  15655. },
  15656. {
  15657. name: "Micro",
  15658. height: math.unit(1, "mm"),
  15659. default: true
  15660. },
  15661. {
  15662. name: "Upsized",
  15663. height: math.unit(5 + 5 / 12, "feet")
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15669. {
  15670. front: {
  15671. height: math.unit(5 + 6 / 12, "feet"),
  15672. weight: math.unit(200, "lb"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/vivian-bijoux/front.svg",
  15676. extra: 1217/1209,
  15677. bottom: 76/1293
  15678. }
  15679. },
  15680. back: {
  15681. height: math.unit(5 + 6 / 12, "feet"),
  15682. weight: math.unit(200, "lb"),
  15683. name: "Back",
  15684. image: {
  15685. source: "./media/characters/vivian-bijoux/back.svg",
  15686. extra: 1214/1208,
  15687. bottom: 51/1265
  15688. }
  15689. },
  15690. dressed: {
  15691. height: math.unit(5 + 6 / 12, "feet"),
  15692. weight: math.unit(200, "lb"),
  15693. name: "Dressed",
  15694. image: {
  15695. source: "./media/characters/vivian-bijoux/dressed.svg",
  15696. extra: 1217/1209,
  15697. bottom: 76/1293
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Normal",
  15704. height: math.unit(5 + 6 / 12, "feet"),
  15705. default: true
  15706. },
  15707. {
  15708. name: "Bad Dream",
  15709. height: math.unit(500, "feet")
  15710. },
  15711. {
  15712. name: "Nightmare",
  15713. height: math.unit(500, "miles")
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(6 + 1 / 12, "feet"),
  15722. weight: math.unit(260, "lb"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/zeta/front.svg",
  15726. extra: 1968 / 1889,
  15727. bottom: 0.06
  15728. }
  15729. },
  15730. back: {
  15731. height: math.unit(6 + 1 / 12, "feet"),
  15732. weight: math.unit(260, "lb"),
  15733. name: "Back",
  15734. image: {
  15735. source: "./media/characters/zeta/back.svg",
  15736. extra: 1944 / 1858,
  15737. bottom: 0.03
  15738. }
  15739. },
  15740. hand: {
  15741. height: math.unit(1.112, "feet"),
  15742. name: "Hand",
  15743. image: {
  15744. source: "./media/characters/zeta/hand.svg"
  15745. }
  15746. },
  15747. foot: {
  15748. height: math.unit(1.48, "feet"),
  15749. name: "Foot",
  15750. image: {
  15751. source: "./media/characters/zeta/foot.svg"
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Micro",
  15758. height: math.unit(6, "inches")
  15759. },
  15760. {
  15761. name: "Normal",
  15762. height: math.unit(6 + 1 / 12, "feet"),
  15763. default: true
  15764. },
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(20, "feet")
  15768. },
  15769. ]
  15770. ))
  15771. characterMakers.push(() => makeCharacter(
  15772. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15773. {
  15774. front: {
  15775. height: math.unit(6, "feet"),
  15776. weight: math.unit(150, "lb"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/jamie-larsen/front.svg",
  15780. extra: 962 / 933,
  15781. bottom: 0.02
  15782. }
  15783. },
  15784. back: {
  15785. height: math.unit(6, "feet"),
  15786. weight: math.unit(150, "lb"),
  15787. name: "Back",
  15788. image: {
  15789. source: "./media/characters/jamie-larsen/back.svg",
  15790. extra: 997 / 946
  15791. }
  15792. },
  15793. },
  15794. [
  15795. {
  15796. name: "Macro",
  15797. height: math.unit(28 + 7 / 12, "feet"),
  15798. default: true
  15799. },
  15800. {
  15801. name: "Macro+",
  15802. height: math.unit(180, "feet")
  15803. },
  15804. {
  15805. name: "Megamacro",
  15806. height: math.unit(10, "miles")
  15807. },
  15808. {
  15809. name: "Gigamacro",
  15810. height: math.unit(200000, "miles")
  15811. },
  15812. ]
  15813. ))
  15814. characterMakers.push(() => makeCharacter(
  15815. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15816. {
  15817. front: {
  15818. height: math.unit(6, "feet"),
  15819. weight: math.unit(120, "lb"),
  15820. name: "Front",
  15821. image: {
  15822. source: "./media/characters/vance/front.svg",
  15823. extra: 1980 / 1890,
  15824. bottom: 0.09
  15825. }
  15826. },
  15827. back: {
  15828. height: math.unit(6, "feet"),
  15829. weight: math.unit(120, "lb"),
  15830. name: "Back",
  15831. image: {
  15832. source: "./media/characters/vance/back.svg",
  15833. extra: 2081 / 1994,
  15834. bottom: 0.014
  15835. }
  15836. },
  15837. hand: {
  15838. height: math.unit(0.88, "feet"),
  15839. name: "Hand",
  15840. image: {
  15841. source: "./media/characters/vance/hand.svg"
  15842. }
  15843. },
  15844. foot: {
  15845. height: math.unit(0.64, "feet"),
  15846. name: "Foot",
  15847. image: {
  15848. source: "./media/characters/vance/foot.svg"
  15849. }
  15850. },
  15851. },
  15852. [
  15853. {
  15854. name: "Small",
  15855. height: math.unit(90, "feet"),
  15856. default: true
  15857. },
  15858. {
  15859. name: "Macro",
  15860. height: math.unit(100, "meters")
  15861. },
  15862. {
  15863. name: "Megamacro",
  15864. height: math.unit(15, "miles")
  15865. },
  15866. ]
  15867. ))
  15868. characterMakers.push(() => makeCharacter(
  15869. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15870. {
  15871. front: {
  15872. height: math.unit(6, "feet"),
  15873. weight: math.unit(180, "lb"),
  15874. name: "Front",
  15875. image: {
  15876. source: "./media/characters/xochitl/front.svg",
  15877. extra: 2297 / 2261,
  15878. bottom: 0.065
  15879. }
  15880. },
  15881. back: {
  15882. height: math.unit(6, "feet"),
  15883. weight: math.unit(180, "lb"),
  15884. name: "Back",
  15885. image: {
  15886. source: "./media/characters/xochitl/back.svg",
  15887. extra: 2386 / 2354,
  15888. bottom: 0.01
  15889. }
  15890. },
  15891. foot: {
  15892. height: math.unit(6 / 5 * 1.15, "feet"),
  15893. weight: math.unit(150, "lb"),
  15894. name: "Foot",
  15895. image: {
  15896. source: "./media/characters/xochitl/foot.svg"
  15897. }
  15898. },
  15899. },
  15900. [
  15901. {
  15902. name: "Macro",
  15903. height: math.unit(80, "feet")
  15904. },
  15905. {
  15906. name: "Macro+",
  15907. height: math.unit(400, "feet"),
  15908. default: true
  15909. },
  15910. {
  15911. name: "Gigamacro",
  15912. height: math.unit(80000, "miles")
  15913. },
  15914. {
  15915. name: "Gigamacro+",
  15916. height: math.unit(400000, "miles")
  15917. },
  15918. {
  15919. name: "Teramacro",
  15920. height: math.unit(300, "AU")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(150, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/vincent/front.svg",
  15933. extra: 1130 / 1080,
  15934. bottom: 0.055
  15935. }
  15936. },
  15937. beak: {
  15938. height: math.unit(6 * 0.1, "feet"),
  15939. name: "Beak",
  15940. image: {
  15941. source: "./media/characters/vincent/beak.svg"
  15942. }
  15943. },
  15944. hand: {
  15945. height: math.unit(6 * 0.85, "feet"),
  15946. weight: math.unit(150, "lb"),
  15947. name: "Hand",
  15948. image: {
  15949. source: "./media/characters/vincent/hand.svg"
  15950. }
  15951. },
  15952. foot: {
  15953. height: math.unit(6 * 0.19, "feet"),
  15954. weight: math.unit(150, "lb"),
  15955. name: "Foot",
  15956. image: {
  15957. source: "./media/characters/vincent/foot.svg"
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Base",
  15964. height: math.unit(6 + 5 / 12, "feet"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Macro",
  15969. height: math.unit(300, "feet")
  15970. },
  15971. {
  15972. name: "Megamacro",
  15973. height: math.unit(2, "miles")
  15974. },
  15975. {
  15976. name: "Gigamacro",
  15977. height: math.unit(1000, "miles")
  15978. },
  15979. ]
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(2, "meters"),
  15986. weight: math.unit(500, "kg"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/coatl/front.svg",
  15990. extra: 3948 / 3500,
  15991. bottom: 0.082
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(4, "meters")
  15999. },
  16000. {
  16001. name: "Macro",
  16002. height: math.unit(100, "meters"),
  16003. default: true
  16004. },
  16005. {
  16006. name: "Macro+",
  16007. height: math.unit(300, "meters")
  16008. },
  16009. {
  16010. name: "Megamacro",
  16011. height: math.unit(3, "gigameters")
  16012. },
  16013. {
  16014. name: "Megamacro+",
  16015. height: math.unit(300, "terameters")
  16016. },
  16017. {
  16018. name: "Megamacro++",
  16019. height: math.unit(3, "lightyears")
  16020. },
  16021. ]
  16022. ))
  16023. characterMakers.push(() => makeCharacter(
  16024. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  16025. {
  16026. front: {
  16027. height: math.unit(6, "feet"),
  16028. weight: math.unit(50, "kg"),
  16029. name: "front",
  16030. image: {
  16031. source: "./media/characters/shiroryu/front.svg",
  16032. extra: 1990 / 1935
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Mortal Mingling",
  16039. height: math.unit(3, "meters")
  16040. },
  16041. {
  16042. name: "Kaiju-ish",
  16043. height: math.unit(250, "meters")
  16044. },
  16045. {
  16046. name: "Somewhat Godly",
  16047. height: math.unit(400, "km"),
  16048. default: true
  16049. },
  16050. {
  16051. name: "Planetary",
  16052. height: math.unit(300, "megameters")
  16053. },
  16054. {
  16055. name: "Galaxy-dwarfing",
  16056. height: math.unit(450, "kiloparsecs")
  16057. },
  16058. {
  16059. name: "Universe Eater",
  16060. height: math.unit(150, "gigaparsecs")
  16061. },
  16062. {
  16063. name: "Almost Immeasurable",
  16064. height: math.unit(1.3e266, "yottaparsecs")
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6, "feet"),
  16073. weight: math.unit(150, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/umeko/front.svg",
  16077. extra: 1,
  16078. bottom: 0.019
  16079. }
  16080. },
  16081. frontArmored: {
  16082. height: math.unit(6, "feet"),
  16083. weight: math.unit(150, "lb"),
  16084. name: "Front (Armored)",
  16085. image: {
  16086. source: "./media/characters/umeko/front-armored.svg",
  16087. extra: 1,
  16088. bottom: 0.021
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(220, "feet"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Guardian Dragon",
  16100. height: math.unit(50, "miles")
  16101. },
  16102. {
  16103. name: "Cosmic",
  16104. height: math.unit(800000, "miles")
  16105. },
  16106. ]
  16107. ))
  16108. characterMakers.push(() => makeCharacter(
  16109. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16110. {
  16111. front: {
  16112. height: math.unit(6, "feet"),
  16113. weight: math.unit(150, "lb"),
  16114. name: "Front",
  16115. image: {
  16116. source: "./media/characters/cassidy/front.svg",
  16117. extra: 810/808,
  16118. bottom: 41/851
  16119. }
  16120. },
  16121. },
  16122. [
  16123. {
  16124. name: "Canon Height",
  16125. height: math.unit(120, "feet"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro+",
  16130. height: math.unit(400, "feet")
  16131. },
  16132. {
  16133. name: "Macro++",
  16134. height: math.unit(4000, "feet")
  16135. },
  16136. {
  16137. name: "Megamacro",
  16138. height: math.unit(3, "miles")
  16139. },
  16140. ]
  16141. ))
  16142. characterMakers.push(() => makeCharacter(
  16143. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16144. {
  16145. front: {
  16146. height: math.unit(6, "feet"),
  16147. weight: math.unit(150, "lb"),
  16148. name: "Front",
  16149. image: {
  16150. source: "./media/characters/isaac/front.svg",
  16151. extra: 896 / 815,
  16152. bottom: 0.11
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Human Size",
  16159. height: math.unit(8, "feet"),
  16160. default: true
  16161. },
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(400, "feet")
  16165. },
  16166. {
  16167. name: "Megamacro",
  16168. height: math.unit(50, "miles")
  16169. },
  16170. {
  16171. name: "Canon Height",
  16172. height: math.unit(200, "AU")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(6, "feet"),
  16181. weight: math.unit(72, "kg"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/sleekit/front.svg",
  16185. extra: 4693 / 4487,
  16186. bottom: 0.012
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Minimum Height",
  16193. height: math.unit(10, "meters")
  16194. },
  16195. {
  16196. name: "Smaller",
  16197. height: math.unit(25, "meters")
  16198. },
  16199. {
  16200. name: "Larger",
  16201. height: math.unit(38, "meters"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Maximum height",
  16206. height: math.unit(100, "meters")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(150, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/nillia/front.svg",
  16219. extra: 719/665,
  16220. bottom: 6/725
  16221. }
  16222. },
  16223. back: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(150, "lb"),
  16226. name: "Back",
  16227. image: {
  16228. source: "./media/characters/nillia/back.svg",
  16229. extra: 705/651,
  16230. bottom: 5/710
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Canon Height",
  16237. height: math.unit(489, "feet"),
  16238. default: true
  16239. }
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(150, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/mesmyriza/front.svg",
  16251. extra: 1541/1291,
  16252. bottom: 87/1628
  16253. }
  16254. },
  16255. foot: {
  16256. height: math.unit(6 / (250 / 35), "feet"),
  16257. name: "Foot",
  16258. image: {
  16259. source: "./media/characters/mesmyriza/foot.svg"
  16260. }
  16261. },
  16262. },
  16263. [
  16264. {
  16265. name: "Macro",
  16266. height: math.unit(457, "meters"),
  16267. default: true
  16268. },
  16269. {
  16270. name: "Megamacro",
  16271. height: math.unit(8, "megameters")
  16272. },
  16273. ]
  16274. ))
  16275. characterMakers.push(() => makeCharacter(
  16276. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16277. {
  16278. front: {
  16279. height: math.unit(6, "feet"),
  16280. weight: math.unit(250, "lb"),
  16281. name: "Front",
  16282. image: {
  16283. source: "./media/characters/saudade/front.svg",
  16284. extra: 1172 / 1139,
  16285. bottom: 0.035
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Micro",
  16292. height: math.unit(3, "inches")
  16293. },
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(6, "feet"),
  16297. default: true
  16298. },
  16299. {
  16300. name: "Macro",
  16301. height: math.unit(50, "feet")
  16302. },
  16303. {
  16304. name: "Megamacro",
  16305. height: math.unit(2800, "feet")
  16306. },
  16307. ]
  16308. ))
  16309. characterMakers.push(() => makeCharacter(
  16310. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16311. {
  16312. front: {
  16313. height: math.unit(5 + 4 / 12, "feet"),
  16314. weight: math.unit(100, "lb"),
  16315. name: "Front",
  16316. image: {
  16317. source: "./media/characters/keireer/front.svg",
  16318. extra: 716 / 666,
  16319. bottom: 0.05
  16320. }
  16321. },
  16322. },
  16323. [
  16324. {
  16325. name: "Normal",
  16326. height: math.unit(5 + 4 / 12, "feet"),
  16327. default: true
  16328. },
  16329. ]
  16330. ))
  16331. characterMakers.push(() => makeCharacter(
  16332. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16333. {
  16334. front: {
  16335. height: math.unit(5.5, "feet"),
  16336. weight: math.unit(90, "kg"),
  16337. name: "Front",
  16338. image: {
  16339. source: "./media/characters/mirja/front.svg",
  16340. extra: 1452/1262,
  16341. bottom: 67/1519
  16342. }
  16343. },
  16344. frontDressed: {
  16345. height: math.unit(5.5, "feet"),
  16346. weight: math.unit(90, "lb"),
  16347. name: "Front (Dressed)",
  16348. image: {
  16349. source: "./media/characters/mirja/dressed.svg",
  16350. extra: 1452/1262,
  16351. bottom: 67/1519
  16352. }
  16353. },
  16354. back: {
  16355. height: math.unit(6, "feet"),
  16356. weight: math.unit(90, "lb"),
  16357. name: "Back",
  16358. image: {
  16359. source: "./media/characters/mirja/back.svg",
  16360. extra: 1892/1795,
  16361. bottom: 48/1940
  16362. }
  16363. },
  16364. maw: {
  16365. height: math.unit(1.312, "feet"),
  16366. name: "Maw",
  16367. image: {
  16368. source: "./media/characters/mirja/maw.svg"
  16369. }
  16370. },
  16371. paw: {
  16372. height: math.unit(1.15, "feet"),
  16373. name: "Paw",
  16374. image: {
  16375. source: "./media/characters/mirja/paw.svg"
  16376. }
  16377. },
  16378. },
  16379. [
  16380. {
  16381. name: "\"Incognito\"",
  16382. height: math.unit(3, "meters")
  16383. },
  16384. {
  16385. name: "Strolling Size",
  16386. height: math.unit(15, "km")
  16387. },
  16388. {
  16389. name: "Larger Strolling Size",
  16390. height: math.unit(400, "km")
  16391. },
  16392. {
  16393. name: "Preferred Size",
  16394. height: math.unit(5000, "km"),
  16395. default: true
  16396. },
  16397. {
  16398. name: "True Size",
  16399. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16400. },
  16401. ]
  16402. ))
  16403. characterMakers.push(() => makeCharacter(
  16404. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16405. {
  16406. front: {
  16407. height: math.unit(15, "feet"),
  16408. weight: math.unit(880, "kg"),
  16409. name: "Front",
  16410. image: {
  16411. source: "./media/characters/nightraver/front.svg",
  16412. extra: 2444 / 2160,
  16413. bottom: 0.027
  16414. }
  16415. },
  16416. back: {
  16417. height: math.unit(15, "feet"),
  16418. weight: math.unit(880, "kg"),
  16419. name: "Back",
  16420. image: {
  16421. source: "./media/characters/nightraver/back.svg",
  16422. extra: 2309 / 2180,
  16423. bottom: 0.005
  16424. }
  16425. },
  16426. sole: {
  16427. height: math.unit(2.878, "feet"),
  16428. name: "Sole",
  16429. image: {
  16430. source: "./media/characters/nightraver/sole.svg"
  16431. }
  16432. },
  16433. foot: {
  16434. height: math.unit(2.285, "feet"),
  16435. name: "Foot",
  16436. image: {
  16437. source: "./media/characters/nightraver/foot.svg"
  16438. }
  16439. },
  16440. maw: {
  16441. height: math.unit(2.67, "feet"),
  16442. name: "Maw",
  16443. image: {
  16444. source: "./media/characters/nightraver/maw.svg"
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Micro",
  16451. height: math.unit(1, "cm")
  16452. },
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(15, "feet"),
  16456. default: true
  16457. },
  16458. {
  16459. name: "Macro",
  16460. height: math.unit(300, "feet")
  16461. },
  16462. {
  16463. name: "Megamacro",
  16464. height: math.unit(300, "miles")
  16465. },
  16466. {
  16467. name: "Gigamacro",
  16468. height: math.unit(10000, "miles")
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16474. {
  16475. side: {
  16476. height: math.unit(2, "inches"),
  16477. weight: math.unit(5, "grams"),
  16478. name: "Side",
  16479. image: {
  16480. source: "./media/characters/arc/side.svg"
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Micro",
  16487. height: math.unit(2, "inches"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(1.1938, "meters"),
  16497. weight: math.unit(54, "kg"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/nebula-shahar/front.svg",
  16501. extra: 1642 / 1436,
  16502. bottom: 0.06
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Megamicro",
  16509. height: math.unit(0.3, "mm")
  16510. },
  16511. {
  16512. name: "Micro",
  16513. height: math.unit(3, "cm")
  16514. },
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(138, "cm"),
  16518. default: true
  16519. },
  16520. {
  16521. name: "Macro",
  16522. height: math.unit(30, "m")
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(5.24, "feet"),
  16531. weight: math.unit(150, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/shayla/front.svg",
  16535. extra: 1512 / 1414,
  16536. bottom: 0.01
  16537. }
  16538. },
  16539. back: {
  16540. height: math.unit(5.24, "feet"),
  16541. weight: math.unit(150, "lb"),
  16542. name: "Back",
  16543. image: {
  16544. source: "./media/characters/shayla/back.svg",
  16545. extra: 1512 / 1414
  16546. }
  16547. },
  16548. hand: {
  16549. height: math.unit(0.7781496062992126, "feet"),
  16550. name: "Hand",
  16551. image: {
  16552. source: "./media/characters/shayla/hand.svg"
  16553. }
  16554. },
  16555. foot: {
  16556. height: math.unit(1.4206036745406823, "feet"),
  16557. name: "Foot",
  16558. image: {
  16559. source: "./media/characters/shayla/foot.svg"
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(0.32, "feet")
  16567. },
  16568. {
  16569. name: "Normal",
  16570. height: math.unit(5.24, "feet"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Macro",
  16575. height: math.unit(492.12, "feet")
  16576. },
  16577. {
  16578. name: "Megamacro",
  16579. height: math.unit(186.41, "miles")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(2.2, "m"),
  16588. weight: math.unit(120, "kg"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/pia-jr/front.svg",
  16592. extra: 1000 / 970,
  16593. bottom: 0.035
  16594. }
  16595. },
  16596. hand: {
  16597. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16598. name: "Hand",
  16599. image: {
  16600. source: "./media/characters/pia-jr/hand.svg"
  16601. }
  16602. },
  16603. paw: {
  16604. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16605. name: "Paw",
  16606. image: {
  16607. source: "./media/characters/pia-jr/paw.svg"
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Micro",
  16614. height: math.unit(1.2, "cm")
  16615. },
  16616. {
  16617. name: "Normal",
  16618. height: math.unit(2.2, "m"),
  16619. default: true
  16620. },
  16621. {
  16622. name: "Macro",
  16623. height: math.unit(180, "m")
  16624. },
  16625. {
  16626. name: "Megamacro",
  16627. height: math.unit(420, "km")
  16628. },
  16629. ]
  16630. ))
  16631. characterMakers.push(() => makeCharacter(
  16632. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16633. {
  16634. front: {
  16635. height: math.unit(2, "m"),
  16636. weight: math.unit(115, "kg"),
  16637. name: "Front",
  16638. image: {
  16639. source: "./media/characters/pia-sr/front.svg",
  16640. extra: 760 / 730,
  16641. bottom: 0.015
  16642. }
  16643. },
  16644. back: {
  16645. height: math.unit(2, "m"),
  16646. weight: math.unit(115, "kg"),
  16647. name: "Back",
  16648. image: {
  16649. source: "./media/characters/pia-sr/back.svg",
  16650. extra: 760 / 730,
  16651. bottom: 0.01
  16652. }
  16653. },
  16654. hand: {
  16655. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16656. name: "Hand",
  16657. image: {
  16658. source: "./media/characters/pia-sr/hand.svg"
  16659. }
  16660. },
  16661. foot: {
  16662. height: math.unit(1.83, "feet"),
  16663. name: "Foot",
  16664. image: {
  16665. source: "./media/characters/pia-sr/foot.svg"
  16666. }
  16667. },
  16668. },
  16669. [
  16670. {
  16671. name: "Micro",
  16672. height: math.unit(88, "mm")
  16673. },
  16674. {
  16675. name: "Normal",
  16676. height: math.unit(2, "m"),
  16677. default: true
  16678. },
  16679. {
  16680. name: "Macro",
  16681. height: math.unit(200, "m")
  16682. },
  16683. {
  16684. name: "Megamacro",
  16685. height: math.unit(420, "km")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16691. {
  16692. front: {
  16693. height: math.unit(8 + 2 / 12, "feet"),
  16694. weight: math.unit(300, "lb"),
  16695. name: "Front",
  16696. image: {
  16697. source: "./media/characters/kibibyte/front.svg",
  16698. extra: 2221 / 2098,
  16699. bottom: 0.04
  16700. }
  16701. },
  16702. },
  16703. [
  16704. {
  16705. name: "Normal",
  16706. height: math.unit(8 + 2 / 12, "feet"),
  16707. default: true
  16708. },
  16709. {
  16710. name: "Socialable Macro",
  16711. height: math.unit(50, "feet")
  16712. },
  16713. {
  16714. name: "Macro",
  16715. height: math.unit(300, "feet")
  16716. },
  16717. {
  16718. name: "Megamacro",
  16719. height: math.unit(500, "miles")
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(6, "feet"),
  16728. weight: math.unit(150, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/felix/front.svg",
  16732. extra: 762 / 722,
  16733. bottom: 0.02
  16734. }
  16735. },
  16736. frontClothed: {
  16737. height: math.unit(6, "feet"),
  16738. weight: math.unit(150, "lb"),
  16739. name: "Front (Clothed)",
  16740. image: {
  16741. source: "./media/characters/felix/front-clothed.svg",
  16742. extra: 762 / 722,
  16743. bottom: 0.02
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(6 + 8 / 12, "feet"),
  16751. default: true
  16752. },
  16753. {
  16754. name: "Macro",
  16755. height: math.unit(2600, "feet")
  16756. },
  16757. {
  16758. name: "Megamacro",
  16759. height: math.unit(450, "miles")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6 + 1 / 12, "feet"),
  16768. weight: math.unit(250, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/tobo/front.svg",
  16772. extra: 608 / 586,
  16773. bottom: 0.023
  16774. }
  16775. },
  16776. back: {
  16777. height: math.unit(6 + 1 / 12, "feet"),
  16778. weight: math.unit(250, "lb"),
  16779. name: "Back",
  16780. image: {
  16781. source: "./media/characters/tobo/back.svg",
  16782. extra: 608 / 586
  16783. }
  16784. },
  16785. },
  16786. [
  16787. {
  16788. name: "Nano",
  16789. height: math.unit(2, "nm")
  16790. },
  16791. {
  16792. name: "Megamicro",
  16793. height: math.unit(0.1, "mm")
  16794. },
  16795. {
  16796. name: "Micro",
  16797. height: math.unit(1, "inch"),
  16798. default: true
  16799. },
  16800. {
  16801. name: "Human-sized",
  16802. height: math.unit(6 + 1 / 12, "feet")
  16803. },
  16804. {
  16805. name: "Macro",
  16806. height: math.unit(250, "feet")
  16807. },
  16808. {
  16809. name: "Megamacro",
  16810. height: math.unit(75, "miles")
  16811. },
  16812. {
  16813. name: "Texas-sized",
  16814. height: math.unit(750, "miles")
  16815. },
  16816. {
  16817. name: "Teramacro",
  16818. height: math.unit(50000, "miles")
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(6, "feet"),
  16827. weight: math.unit(269, "lb"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/danny-kapowsky/front.svg",
  16831. extra: 766 / 736,
  16832. bottom: 0.044
  16833. }
  16834. },
  16835. back: {
  16836. height: math.unit(6, "feet"),
  16837. weight: math.unit(269, "lb"),
  16838. name: "Back",
  16839. image: {
  16840. source: "./media/characters/danny-kapowsky/back.svg",
  16841. extra: 797 / 760,
  16842. bottom: 0.025
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Macro",
  16849. height: math.unit(150, "feet"),
  16850. default: true
  16851. },
  16852. {
  16853. name: "Macro+",
  16854. height: math.unit(200, "feet")
  16855. },
  16856. {
  16857. name: "Macro++",
  16858. height: math.unit(300, "feet")
  16859. },
  16860. {
  16861. name: "Macro+++",
  16862. height: math.unit(400, "feet")
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16868. {
  16869. side: {
  16870. height: math.unit(6, "feet"),
  16871. weight: math.unit(170, "lb"),
  16872. name: "Side",
  16873. image: {
  16874. source: "./media/characters/finn/side.svg",
  16875. extra: 1953 / 1807,
  16876. bottom: 0.057
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Megamacro",
  16883. height: math.unit(14445, "feet"),
  16884. default: true
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(5 + 6 / 12, "feet"),
  16893. weight: math.unit(125, "lb"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/roy/front.svg",
  16897. extra: 1,
  16898. bottom: 0.11
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Micro",
  16905. height: math.unit(3, "inches"),
  16906. default: true
  16907. },
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(5 + 6 / 12, "feet")
  16911. },
  16912. {
  16913. name: "Lesser Macro",
  16914. height: math.unit(60, "feet")
  16915. },
  16916. {
  16917. name: "Greater Macro",
  16918. height: math.unit(120, "feet")
  16919. },
  16920. ]
  16921. ))
  16922. characterMakers.push(() => makeCharacter(
  16923. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16924. {
  16925. front: {
  16926. height: math.unit(6, "feet"),
  16927. weight: math.unit(100, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/aevsivs/front.svg",
  16931. extra: 1,
  16932. bottom: 0.03
  16933. }
  16934. },
  16935. back: {
  16936. height: math.unit(6, "feet"),
  16937. weight: math.unit(100, "lb"),
  16938. name: "Back",
  16939. image: {
  16940. source: "./media/characters/aevsivs/back.svg"
  16941. }
  16942. },
  16943. },
  16944. [
  16945. {
  16946. name: "Micro",
  16947. height: math.unit(2, "inches"),
  16948. default: true
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(5, "feet")
  16953. },
  16954. ]
  16955. ))
  16956. characterMakers.push(() => makeCharacter(
  16957. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16958. {
  16959. front: {
  16960. height: math.unit(5 + 7 / 12, "feet"),
  16961. weight: math.unit(159, "lb"),
  16962. name: "Front",
  16963. image: {
  16964. source: "./media/characters/hildegard/front.svg",
  16965. extra: 289 / 269,
  16966. bottom: 7.63 / 297.8
  16967. }
  16968. },
  16969. back: {
  16970. height: math.unit(5 + 7 / 12, "feet"),
  16971. weight: math.unit(159, "lb"),
  16972. name: "Back",
  16973. image: {
  16974. source: "./media/characters/hildegard/back.svg",
  16975. extra: 280 / 260,
  16976. bottom: 2.3 / 282
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(5 + 7 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16990. {
  16991. bernard: {
  16992. height: math.unit(2 + 7 / 12, "feet"),
  16993. weight: math.unit(66, "lb"),
  16994. name: "Bernard",
  16995. rename: true,
  16996. image: {
  16997. source: "./media/characters/bernard-wilder/bernard.svg",
  16998. extra: 192 / 128,
  16999. bottom: 0.05
  17000. }
  17001. },
  17002. wilder: {
  17003. height: math.unit(5 + 8 / 12, "feet"),
  17004. weight: math.unit(143, "lb"),
  17005. name: "Wilder",
  17006. rename: true,
  17007. image: {
  17008. source: "./media/characters/bernard-wilder/wilder.svg",
  17009. extra: 361 / 312,
  17010. bottom: 0.02
  17011. }
  17012. },
  17013. },
  17014. [
  17015. {
  17016. name: "Normal",
  17017. height: math.unit(2 + 7 / 12, "feet"),
  17018. default: true
  17019. },
  17020. ]
  17021. ))
  17022. characterMakers.push(() => makeCharacter(
  17023. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  17024. {
  17025. anthro: {
  17026. height: math.unit(6 + 1 / 12, "feet"),
  17027. weight: math.unit(155, "lb"),
  17028. name: "Anthro",
  17029. image: {
  17030. source: "./media/characters/hearth/anthro.svg",
  17031. extra: 1178/1136,
  17032. bottom: 28/1206
  17033. }
  17034. },
  17035. feral: {
  17036. height: math.unit(3.78, "feet"),
  17037. weight: math.unit(35, "kg"),
  17038. name: "Feral",
  17039. image: {
  17040. source: "./media/characters/hearth/feral.svg",
  17041. extra: 153 / 135,
  17042. bottom: 0.03
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(6 + 1 / 12, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(6, "feet"),
  17059. weight: math.unit(182, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/ingrid/front.svg",
  17063. extra: 294 / 268,
  17064. bottom: 0.027
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(6, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17078. {
  17079. eevee: {
  17080. height: math.unit(2 + 10 / 12, "feet"),
  17081. weight: math.unit(86, "lb"),
  17082. name: "Malgam",
  17083. image: {
  17084. source: "./media/characters/malgam/eevee.svg",
  17085. extra: 952/784,
  17086. bottom: 38/990
  17087. }
  17088. },
  17089. sylveon: {
  17090. height: math.unit(4, "feet"),
  17091. weight: math.unit(101, "lb"),
  17092. name: "Future Malgam",
  17093. rename: true,
  17094. image: {
  17095. source: "./media/characters/malgam/sylveon.svg",
  17096. extra: 371 / 325,
  17097. bottom: 0.015
  17098. }
  17099. },
  17100. gigantamax: {
  17101. height: math.unit(50, "feet"),
  17102. name: "Gigantamax Malgam",
  17103. rename: true,
  17104. image: {
  17105. source: "./media/characters/malgam/gigantamax.svg"
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Normal",
  17112. height: math.unit(2 + 10 / 12, "feet"),
  17113. default: true
  17114. },
  17115. ]
  17116. ))
  17117. characterMakers.push(() => makeCharacter(
  17118. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17119. {
  17120. front: {
  17121. height: math.unit(5 + 11 / 12, "feet"),
  17122. weight: math.unit(188, "lb"),
  17123. name: "Front",
  17124. image: {
  17125. source: "./media/characters/fleur/front.svg",
  17126. extra: 309 / 283,
  17127. bottom: 0.007
  17128. }
  17129. },
  17130. },
  17131. [
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(5 + 11 / 12, "feet"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(5 + 4 / 12, "feet"),
  17144. weight: math.unit(122, "lb"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/jude/front.svg",
  17148. extra: 288 / 273,
  17149. bottom: 0.03
  17150. }
  17151. },
  17152. },
  17153. [
  17154. {
  17155. name: "Normal",
  17156. height: math.unit(5 + 4 / 12, "feet"),
  17157. default: true
  17158. },
  17159. ]
  17160. ))
  17161. characterMakers.push(() => makeCharacter(
  17162. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17163. {
  17164. front: {
  17165. height: math.unit(5 + 11 / 12, "feet"),
  17166. weight: math.unit(190, "lb"),
  17167. name: "Front",
  17168. image: {
  17169. source: "./media/characters/seara/front.svg",
  17170. extra: 1,
  17171. bottom: 0.05
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(5 + 11 / 12, "feet"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(16 + 5 / 12, "feet"),
  17188. weight: math.unit(524, "lb"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/caspian-lugia/front.svg",
  17192. extra: 1,
  17193. bottom: 0.04
  17194. }
  17195. },
  17196. },
  17197. [
  17198. {
  17199. name: "Normal",
  17200. height: math.unit(16 + 5 / 12, "feet"),
  17201. default: true
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17207. {
  17208. front: {
  17209. height: math.unit(5 + 7 / 12, "feet"),
  17210. weight: math.unit(170, "lb"),
  17211. name: "Front",
  17212. image: {
  17213. source: "./media/characters/mika/front.svg",
  17214. extra: 1,
  17215. bottom: 0.016
  17216. }
  17217. },
  17218. },
  17219. [
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(5 + 7 / 12, "feet"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17229. {
  17230. front: {
  17231. height: math.unit(6 + 2 / 12, "feet"),
  17232. weight: math.unit(268, "lb"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/sol/front.svg",
  17236. extra: 247 / 231,
  17237. bottom: 0.05
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(6 + 2 / 12, "feet"),
  17245. default: true
  17246. },
  17247. ]
  17248. ))
  17249. characterMakers.push(() => makeCharacter(
  17250. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17251. {
  17252. buizel: {
  17253. height: math.unit(2 + 5 / 12, "feet"),
  17254. weight: math.unit(87, "lb"),
  17255. name: "Front",
  17256. image: {
  17257. source: "./media/characters/umiko/buizel.svg",
  17258. extra: 172 / 157,
  17259. bottom: 0.01
  17260. },
  17261. form: "buizel",
  17262. default: true
  17263. },
  17264. floatzel: {
  17265. height: math.unit(5 + 9 / 12, "feet"),
  17266. weight: math.unit(250, "lb"),
  17267. name: "Front",
  17268. image: {
  17269. source: "./media/characters/umiko/floatzel.svg",
  17270. extra: 1076/1006,
  17271. bottom: 15/1091
  17272. },
  17273. form: "floatzel",
  17274. default: true
  17275. },
  17276. },
  17277. [
  17278. {
  17279. name: "Normal",
  17280. height: math.unit(2 + 5 / 12, "feet"),
  17281. form: "buizel",
  17282. default: true
  17283. },
  17284. {
  17285. name: "Normal",
  17286. height: math.unit(5 + 9 / 12, "feet"),
  17287. form: "floatzel",
  17288. default: true
  17289. },
  17290. ],
  17291. {
  17292. "buizel": {
  17293. name: "Buizel"
  17294. },
  17295. "floatzel": {
  17296. name: "Floatzel",
  17297. default: true
  17298. }
  17299. }
  17300. ))
  17301. characterMakers.push(() => makeCharacter(
  17302. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17303. {
  17304. front: {
  17305. height: math.unit(6 + 2 / 12, "feet"),
  17306. weight: math.unit(146, "lb"),
  17307. name: "Front",
  17308. image: {
  17309. source: "./media/characters/iliac/front.svg",
  17310. extra: 389 / 365,
  17311. bottom: 0.035
  17312. }
  17313. },
  17314. },
  17315. [
  17316. {
  17317. name: "Normal",
  17318. height: math.unit(6 + 2 / 12, "feet"),
  17319. default: true
  17320. },
  17321. ]
  17322. ))
  17323. characterMakers.push(() => makeCharacter(
  17324. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17325. {
  17326. front: {
  17327. height: math.unit(6, "feet"),
  17328. weight: math.unit(170, "lb"),
  17329. name: "Front",
  17330. image: {
  17331. source: "./media/characters/topaz/front.svg",
  17332. extra: 317 / 303,
  17333. bottom: 0.055
  17334. }
  17335. },
  17336. },
  17337. [
  17338. {
  17339. name: "Normal",
  17340. height: math.unit(6, "feet"),
  17341. default: true
  17342. },
  17343. ]
  17344. ))
  17345. characterMakers.push(() => makeCharacter(
  17346. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17347. {
  17348. front: {
  17349. height: math.unit(5 + 11 / 12, "feet"),
  17350. weight: math.unit(144, "lb"),
  17351. name: "Front",
  17352. image: {
  17353. source: "./media/characters/gabriel/front.svg",
  17354. extra: 285 / 262,
  17355. bottom: 0.004
  17356. }
  17357. },
  17358. },
  17359. [
  17360. {
  17361. name: "Normal",
  17362. height: math.unit(5 + 11 / 12, "feet"),
  17363. default: true
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17369. {
  17370. side: {
  17371. height: math.unit(6 + 5 / 12, "feet"),
  17372. weight: math.unit(300, "lb"),
  17373. name: "Side",
  17374. image: {
  17375. source: "./media/characters/tempest-suicune/side.svg",
  17376. extra: 195 / 154,
  17377. bottom: 0.04
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Normal",
  17384. height: math.unit(6 + 5 / 12, "feet"),
  17385. default: true
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(7 + 2 / 12, "feet"),
  17394. weight: math.unit(322, "lb"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/vulcan/front.svg",
  17398. extra: 154 / 147,
  17399. bottom: 0.04
  17400. }
  17401. },
  17402. },
  17403. [
  17404. {
  17405. name: "Normal",
  17406. height: math.unit(7 + 2 / 12, "feet"),
  17407. default: true
  17408. },
  17409. ]
  17410. ))
  17411. characterMakers.push(() => makeCharacter(
  17412. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17413. {
  17414. front: {
  17415. height: math.unit(5 + 10 / 12, "feet"),
  17416. weight: math.unit(264, "lb"),
  17417. name: "Front",
  17418. image: {
  17419. source: "./media/characters/gault/front.svg",
  17420. extra: 161 / 140,
  17421. bottom: 0.028
  17422. }
  17423. },
  17424. },
  17425. [
  17426. {
  17427. name: "Normal",
  17428. height: math.unit(5 + 10 / 12, "feet"),
  17429. default: true
  17430. },
  17431. ]
  17432. ))
  17433. characterMakers.push(() => makeCharacter(
  17434. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17435. {
  17436. front: {
  17437. height: math.unit(6, "feet"),
  17438. weight: math.unit(150, "lb"),
  17439. name: "Front",
  17440. image: {
  17441. source: "./media/characters/shard/front.svg",
  17442. extra: 273 / 238,
  17443. bottom: 0.02
  17444. }
  17445. },
  17446. },
  17447. [
  17448. {
  17449. name: "Normal",
  17450. height: math.unit(3 + 6 / 12, "feet"),
  17451. default: true
  17452. },
  17453. ]
  17454. ))
  17455. characterMakers.push(() => makeCharacter(
  17456. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17457. {
  17458. front: {
  17459. height: math.unit(5 + 11 / 12, "feet"),
  17460. weight: math.unit(146, "lb"),
  17461. name: "Front",
  17462. image: {
  17463. source: "./media/characters/ashe/front.svg",
  17464. extra: 400 / 373,
  17465. bottom: 0.01
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(5 + 11 / 12, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(5 + 5 / 12, "feet"),
  17482. weight: math.unit(135, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/beatrix/front.svg",
  17486. extra: 392 / 379,
  17487. bottom: 0.01
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(6, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(6 + 2/12, "feet"),
  17504. weight: math.unit(135, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/ignatius/front.svg",
  17508. extra: 1380/1259,
  17509. bottom: 27/1407
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(6 + 2/12, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6 + 2 / 12, "feet"),
  17526. weight: math.unit(138, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/mei-li/front.svg",
  17530. extra: 237 / 229,
  17531. bottom: 0.03
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(6 + 2 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(2 + 4 / 12, "feet"),
  17548. weight: math.unit(62, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/puru/front.svg",
  17552. extra: 206 / 149,
  17553. bottom: 0.06
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(2 + 4 / 12, "feet"),
  17561. default: true
  17562. },
  17563. ]
  17564. ))
  17565. characterMakers.push(() => makeCharacter(
  17566. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17567. {
  17568. anthro: {
  17569. height: math.unit(5 + 8/12, "feet"),
  17570. weight: math.unit(200, "lb"),
  17571. energyNeed: math.unit(2000, "kcal"),
  17572. name: "Anthro",
  17573. image: {
  17574. source: "./media/characters/kee/anthro.svg",
  17575. extra: 3251/3184,
  17576. bottom: 250/3501
  17577. }
  17578. },
  17579. taur: {
  17580. height: math.unit(11, "feet"),
  17581. weight: math.unit(500, "lb"),
  17582. energyNeed: math.unit(5000, "kcal"),
  17583. name: "Taur",
  17584. image: {
  17585. source: "./media/characters/kee/taur.svg",
  17586. extra: 1362/1320,
  17587. bottom: 83/1445
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(5 + 8/12, "feet"),
  17595. default: true
  17596. },
  17597. {
  17598. name: "Macro",
  17599. height: math.unit(35, "feet")
  17600. },
  17601. ]
  17602. ))
  17603. characterMakers.push(() => makeCharacter(
  17604. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17605. {
  17606. anthro: {
  17607. height: math.unit(7, "feet"),
  17608. weight: math.unit(190, "lb"),
  17609. name: "Anthro",
  17610. image: {
  17611. source: "./media/characters/cobalt-dracha/anthro.svg",
  17612. extra: 231 / 225,
  17613. bottom: 0.04
  17614. }
  17615. },
  17616. feral: {
  17617. height: math.unit(9 + 7 / 12, "feet"),
  17618. weight: math.unit(294, "lb"),
  17619. name: "Feral",
  17620. image: {
  17621. source: "./media/characters/cobalt-dracha/feral.svg",
  17622. extra: 692 / 633,
  17623. bottom: 0.05
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(7, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17637. {
  17638. fallen: {
  17639. height: math.unit(11 + 8 / 12, "feet"),
  17640. weight: math.unit(485, "lb"),
  17641. name: "Java (Fallen)",
  17642. rename: true,
  17643. image: {
  17644. source: "./media/characters/java/fallen.svg",
  17645. extra: 226 / 208,
  17646. bottom: 0.005
  17647. }
  17648. },
  17649. godkin: {
  17650. height: math.unit(10 + 6 / 12, "feet"),
  17651. weight: math.unit(328, "lb"),
  17652. name: "Java (Godkin)",
  17653. rename: true,
  17654. image: {
  17655. source: "./media/characters/java/godkin.svg",
  17656. extra: 1104/1068,
  17657. bottom: 36/1140
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Normal",
  17664. height: math.unit(11 + 8 / 12, "feet"),
  17665. default: true
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(5 + 9 / 12, "feet"),
  17674. weight: math.unit(170, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/purna/front.svg",
  17678. extra: 239 / 229,
  17679. bottom: 0.01
  17680. }
  17681. },
  17682. },
  17683. [
  17684. {
  17685. name: "Normal",
  17686. height: math.unit(5 + 9 / 12, "feet"),
  17687. default: true
  17688. },
  17689. ]
  17690. ))
  17691. characterMakers.push(() => makeCharacter(
  17692. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17693. {
  17694. front: {
  17695. height: math.unit(5 + 9 / 12, "feet"),
  17696. weight: math.unit(142, "lb"),
  17697. name: "Front",
  17698. image: {
  17699. source: "./media/characters/kuva/front.svg",
  17700. extra: 281 / 271,
  17701. bottom: 0.006
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(5 + 9 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17715. {
  17716. anthro: {
  17717. height: math.unit(9 + 2 / 12, "feet"),
  17718. weight: math.unit(270, "lb"),
  17719. name: "Anthro",
  17720. image: {
  17721. source: "./media/characters/embra/anthro.svg",
  17722. extra: 200 / 187,
  17723. bottom: 0.02
  17724. }
  17725. },
  17726. feral: {
  17727. height: math.unit(18 + 8 / 12, "feet"),
  17728. weight: math.unit(576, "lb"),
  17729. name: "Feral",
  17730. image: {
  17731. source: "./media/characters/embra/feral.svg",
  17732. extra: 152 / 137,
  17733. bottom: 0.037
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(9 + 2 / 12, "feet"),
  17741. default: true
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17747. {
  17748. anthro: {
  17749. height: math.unit(10 + 9 / 12, "feet"),
  17750. weight: math.unit(224, "lb"),
  17751. name: "Anthro",
  17752. image: {
  17753. source: "./media/characters/grottos/anthro.svg",
  17754. extra: 350 / 332,
  17755. bottom: 0.045
  17756. }
  17757. },
  17758. feral: {
  17759. height: math.unit(20 + 7 / 12, "feet"),
  17760. weight: math.unit(629, "lb"),
  17761. name: "Feral",
  17762. image: {
  17763. source: "./media/characters/grottos/feral.svg",
  17764. extra: 207 / 190,
  17765. bottom: 0.05
  17766. }
  17767. },
  17768. },
  17769. [
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(10 + 9 / 12, "feet"),
  17773. default: true
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17779. {
  17780. anthro: {
  17781. height: math.unit(9 + 6 / 12, "feet"),
  17782. weight: math.unit(298, "lb"),
  17783. name: "Anthro",
  17784. image: {
  17785. source: "./media/characters/frifna/anthro.svg",
  17786. extra: 282 / 269,
  17787. bottom: 0.015
  17788. }
  17789. },
  17790. feral: {
  17791. height: math.unit(16 + 2 / 12, "feet"),
  17792. weight: math.unit(624, "lb"),
  17793. name: "Feral",
  17794. image: {
  17795. source: "./media/characters/frifna/feral.svg"
  17796. }
  17797. },
  17798. },
  17799. [
  17800. {
  17801. name: "Normal",
  17802. height: math.unit(9 + 6 / 12, "feet"),
  17803. default: true
  17804. },
  17805. ]
  17806. ))
  17807. characterMakers.push(() => makeCharacter(
  17808. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17809. {
  17810. front: {
  17811. height: math.unit(6 + 2 / 12, "feet"),
  17812. weight: math.unit(168, "lb"),
  17813. name: "Front",
  17814. image: {
  17815. source: "./media/characters/elise/front.svg",
  17816. extra: 276 / 271
  17817. }
  17818. },
  17819. },
  17820. [
  17821. {
  17822. name: "Normal",
  17823. height: math.unit(6 + 2 / 12, "feet"),
  17824. default: true
  17825. },
  17826. ]
  17827. ))
  17828. characterMakers.push(() => makeCharacter(
  17829. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17830. {
  17831. front: {
  17832. height: math.unit(5 + 10 / 12, "feet"),
  17833. weight: math.unit(210, "lb"),
  17834. name: "Front",
  17835. image: {
  17836. source: "./media/characters/glade/front.svg",
  17837. extra: 258 / 247,
  17838. bottom: 0.008
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(5 + 10 / 12, "feet"),
  17846. default: true
  17847. },
  17848. ]
  17849. ))
  17850. characterMakers.push(() => makeCharacter(
  17851. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17852. {
  17853. front: {
  17854. height: math.unit(5 + 10 / 12, "feet"),
  17855. weight: math.unit(129, "lb"),
  17856. name: "Front",
  17857. image: {
  17858. source: "./media/characters/rina/front.svg",
  17859. extra: 266 / 255,
  17860. bottom: 0.005
  17861. }
  17862. },
  17863. },
  17864. [
  17865. {
  17866. name: "Normal",
  17867. height: math.unit(5 + 10 / 12, "feet"),
  17868. default: true
  17869. },
  17870. ]
  17871. ))
  17872. characterMakers.push(() => makeCharacter(
  17873. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17874. {
  17875. front: {
  17876. height: math.unit(6 + 1 / 12, "feet"),
  17877. weight: math.unit(192, "lb"),
  17878. name: "Front",
  17879. image: {
  17880. source: "./media/characters/veronica/front.svg",
  17881. extra: 319 / 309,
  17882. bottom: 0.005
  17883. }
  17884. },
  17885. },
  17886. [
  17887. {
  17888. name: "Normal",
  17889. height: math.unit(6 + 1 / 12, "feet"),
  17890. default: true
  17891. },
  17892. ]
  17893. ))
  17894. characterMakers.push(() => makeCharacter(
  17895. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17896. {
  17897. front: {
  17898. height: math.unit(9 + 3 / 12, "feet"),
  17899. weight: math.unit(1100, "lb"),
  17900. name: "Front",
  17901. image: {
  17902. source: "./media/characters/braxton/front.svg",
  17903. extra: 1057 / 984,
  17904. bottom: 0.05
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(9 + 3 / 12, "feet")
  17912. },
  17913. {
  17914. name: "Giant",
  17915. height: math.unit(300, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(700, "feet")
  17921. },
  17922. {
  17923. name: "Megamacro",
  17924. height: math.unit(6000, "feet")
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(6 + 7 / 12, "feet"),
  17933. weight: math.unit(150, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/blue-feyonics/front.svg",
  17937. extra: 1403 / 1306,
  17938. bottom: 0.047
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(6 + 7 / 12, "feet"),
  17946. default: true
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17952. {
  17953. front: {
  17954. height: math.unit(1.8, "meters"),
  17955. weight: math.unit(60, "kg"),
  17956. name: "Front",
  17957. image: {
  17958. source: "./media/characters/maxwell/front.svg",
  17959. extra: 2060 / 1873
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Micro",
  17966. height: math.unit(1, "mm")
  17967. },
  17968. {
  17969. name: "Normal",
  17970. height: math.unit(1.8, "meter"),
  17971. default: true
  17972. },
  17973. {
  17974. name: "Macro",
  17975. height: math.unit(30, "meters")
  17976. },
  17977. {
  17978. name: "Megamacro",
  17979. height: math.unit(10, "km")
  17980. },
  17981. ]
  17982. ))
  17983. characterMakers.push(() => makeCharacter(
  17984. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17985. {
  17986. front: {
  17987. height: math.unit(6, "feet"),
  17988. weight: math.unit(150, "lb"),
  17989. name: "Front",
  17990. image: {
  17991. source: "./media/characters/jack/front.svg",
  17992. extra: 1754 / 1640,
  17993. bottom: 0.01
  17994. }
  17995. },
  17996. },
  17997. [
  17998. {
  17999. name: "Normal",
  18000. height: math.unit(80000, "feet"),
  18001. default: true
  18002. },
  18003. {
  18004. name: "Max size",
  18005. height: math.unit(10, "lightyears")
  18006. },
  18007. ]
  18008. ))
  18009. characterMakers.push(() => makeCharacter(
  18010. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  18011. {
  18012. urban: {
  18013. height: math.unit(5, "feet"),
  18014. weight: math.unit(240, "lb"),
  18015. name: "Urban",
  18016. image: {
  18017. source: "./media/characters/cafat/urban.svg",
  18018. extra: 1223/1126,
  18019. bottom: 205/1428
  18020. }
  18021. },
  18022. summer: {
  18023. height: math.unit(5, "feet"),
  18024. weight: math.unit(240, "lb"),
  18025. name: "Summer",
  18026. image: {
  18027. source: "./media/characters/cafat/summer.svg",
  18028. extra: 1223/1126,
  18029. bottom: 205/1428
  18030. }
  18031. },
  18032. winter: {
  18033. height: math.unit(5, "feet"),
  18034. weight: math.unit(240, "lb"),
  18035. name: "Winter",
  18036. image: {
  18037. source: "./media/characters/cafat/winter.svg",
  18038. extra: 1223/1126,
  18039. bottom: 205/1428
  18040. }
  18041. },
  18042. lingerie: {
  18043. height: math.unit(5, "feet"),
  18044. weight: math.unit(240, "lb"),
  18045. name: "Lingerie",
  18046. image: {
  18047. source: "./media/characters/cafat/lingerie.svg",
  18048. extra: 1223/1126,
  18049. bottom: 205/1428
  18050. }
  18051. },
  18052. upright: {
  18053. height: math.unit(6.3, "feet"),
  18054. weight: math.unit(240, "lb"),
  18055. name: "Upright",
  18056. image: {
  18057. source: "./media/characters/cafat/upright.svg",
  18058. bottom: 0.01
  18059. }
  18060. },
  18061. uprightFull: {
  18062. height: math.unit(6.3, "feet"),
  18063. weight: math.unit(240, "lb"),
  18064. name: "Upright (Full)",
  18065. image: {
  18066. source: "./media/characters/cafat/upright-full.svg",
  18067. bottom: 0.01
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Small",
  18074. height: math.unit(5, "feet"),
  18075. default: true
  18076. },
  18077. {
  18078. name: "Large",
  18079. height: math.unit(13, "feet")
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(6, "feet"),
  18088. weight: math.unit(150, "lb"),
  18089. name: "Front",
  18090. image: {
  18091. source: "./media/characters/verin-raharra/front.svg",
  18092. extra: 5019 / 4835,
  18093. bottom: 0.023
  18094. }
  18095. },
  18096. },
  18097. [
  18098. {
  18099. name: "Normal",
  18100. height: math.unit(7 + 5 / 12, "feet"),
  18101. default: true
  18102. },
  18103. {
  18104. name: "Upsized",
  18105. height: math.unit(20, "feet")
  18106. },
  18107. ]
  18108. ))
  18109. characterMakers.push(() => makeCharacter(
  18110. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18111. {
  18112. front: {
  18113. height: math.unit(7, "feet"),
  18114. weight: math.unit(230, "lb"),
  18115. name: "Front",
  18116. image: {
  18117. source: "./media/characters/nakata/front.svg",
  18118. extra: 1.005,
  18119. bottom: 0.01
  18120. }
  18121. },
  18122. },
  18123. [
  18124. {
  18125. name: "Normal",
  18126. height: math.unit(7, "feet"),
  18127. default: true
  18128. },
  18129. {
  18130. name: "Big",
  18131. height: math.unit(14, "feet")
  18132. },
  18133. {
  18134. name: "Macro",
  18135. height: math.unit(400, "feet")
  18136. },
  18137. ]
  18138. ))
  18139. characterMakers.push(() => makeCharacter(
  18140. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18141. {
  18142. front: {
  18143. height: math.unit(4.91, "feet"),
  18144. weight: math.unit(100, "lb"),
  18145. name: "Front",
  18146. image: {
  18147. source: "./media/characters/lily/front.svg",
  18148. extra: 1585 / 1415,
  18149. bottom: 0.02
  18150. }
  18151. },
  18152. },
  18153. [
  18154. {
  18155. name: "Normal",
  18156. height: math.unit(4.91, "feet"),
  18157. default: true
  18158. },
  18159. ]
  18160. ))
  18161. characterMakers.push(() => makeCharacter(
  18162. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18163. {
  18164. laying: {
  18165. height: math.unit(4 + 4 / 12, "feet"),
  18166. weight: math.unit(600, "lb"),
  18167. name: "Laying",
  18168. image: {
  18169. source: "./media/characters/sheila/laying.svg",
  18170. extra: 1333 / 1265,
  18171. bottom: 0.16
  18172. }
  18173. },
  18174. },
  18175. [
  18176. {
  18177. name: "Normal",
  18178. height: math.unit(4 + 4 / 12, "feet"),
  18179. default: true
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18185. {
  18186. front: {
  18187. height: math.unit(6, "feet"),
  18188. weight: math.unit(190, "lb"),
  18189. name: "Front",
  18190. image: {
  18191. source: "./media/characters/sax/front.svg",
  18192. extra: 1187 / 973,
  18193. bottom: 0.042
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Micro",
  18200. height: math.unit(4, "inches"),
  18201. default: true
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(6, "feet"),
  18210. weight: math.unit(150, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/pandora/front.svg",
  18214. extra: 2720 / 2556,
  18215. bottom: 0.015
  18216. }
  18217. },
  18218. back: {
  18219. height: math.unit(6, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Back",
  18222. image: {
  18223. source: "./media/characters/pandora/back.svg",
  18224. extra: 2720 / 2556,
  18225. bottom: 0.01
  18226. }
  18227. },
  18228. beans: {
  18229. height: math.unit(6 / 8, "feet"),
  18230. name: "Beans",
  18231. image: {
  18232. source: "./media/characters/pandora/beans.svg"
  18233. }
  18234. },
  18235. collar: {
  18236. height: math.unit(0.31, "feet"),
  18237. name: "Collar",
  18238. image: {
  18239. source: "./media/characters/pandora/collar.svg"
  18240. }
  18241. },
  18242. skirt: {
  18243. height: math.unit(6, "feet"),
  18244. weight: math.unit(150, "lb"),
  18245. name: "Skirt",
  18246. image: {
  18247. source: "./media/characters/pandora/skirt.svg",
  18248. extra: 1622 / 1525,
  18249. bottom: 0.015
  18250. }
  18251. },
  18252. hoodie: {
  18253. height: math.unit(6, "feet"),
  18254. weight: math.unit(150, "lb"),
  18255. name: "Hoodie",
  18256. image: {
  18257. source: "./media/characters/pandora/hoodie.svg",
  18258. extra: 1622 / 1525,
  18259. bottom: 0.015
  18260. }
  18261. },
  18262. casual: {
  18263. height: math.unit(6, "feet"),
  18264. weight: math.unit(150, "lb"),
  18265. name: "Casual",
  18266. image: {
  18267. source: "./media/characters/pandora/casual.svg",
  18268. extra: 1622 / 1525,
  18269. bottom: 0.015
  18270. }
  18271. },
  18272. },
  18273. [
  18274. {
  18275. name: "Normal",
  18276. height: math.unit(6, "feet")
  18277. },
  18278. {
  18279. name: "Big Steppy",
  18280. height: math.unit(1, "km"),
  18281. default: true
  18282. },
  18283. {
  18284. name: "Galactic Steppy",
  18285. height: math.unit(2, "gigameters")
  18286. },
  18287. ]
  18288. ))
  18289. characterMakers.push(() => makeCharacter(
  18290. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18291. {
  18292. side: {
  18293. height: math.unit(10, "feet"),
  18294. weight: math.unit(800, "kg"),
  18295. name: "Side",
  18296. image: {
  18297. source: "./media/characters/venio-darcony/side.svg",
  18298. extra: 1373 / 1003,
  18299. bottom: 0.037
  18300. }
  18301. },
  18302. front: {
  18303. height: math.unit(19, "feet"),
  18304. weight: math.unit(800, "kg"),
  18305. name: "Front",
  18306. image: {
  18307. source: "./media/characters/venio-darcony/front.svg"
  18308. }
  18309. },
  18310. back: {
  18311. height: math.unit(19, "feet"),
  18312. weight: math.unit(800, "kg"),
  18313. name: "Back",
  18314. image: {
  18315. source: "./media/characters/venio-darcony/back.svg"
  18316. }
  18317. },
  18318. sideNsfw: {
  18319. height: math.unit(10, "feet"),
  18320. weight: math.unit(800, "kg"),
  18321. name: "Side (NSFW)",
  18322. image: {
  18323. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18324. extra: 1373 / 1003,
  18325. bottom: 0.037
  18326. }
  18327. },
  18328. frontNsfw: {
  18329. height: math.unit(19, "feet"),
  18330. weight: math.unit(800, "kg"),
  18331. name: "Front (NSFW)",
  18332. image: {
  18333. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18334. }
  18335. },
  18336. backNsfw: {
  18337. height: math.unit(19, "feet"),
  18338. weight: math.unit(800, "kg"),
  18339. name: "Back (NSFW)",
  18340. image: {
  18341. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18342. }
  18343. },
  18344. sideArmored: {
  18345. height: math.unit(10, "feet"),
  18346. weight: math.unit(800, "kg"),
  18347. name: "Side (Armored)",
  18348. image: {
  18349. source: "./media/characters/venio-darcony/side-armored.svg",
  18350. extra: 1373 / 1003,
  18351. bottom: 0.037
  18352. }
  18353. },
  18354. frontArmored: {
  18355. height: math.unit(19, "feet"),
  18356. weight: math.unit(900, "kg"),
  18357. name: "Front (Armored)",
  18358. image: {
  18359. source: "./media/characters/venio-darcony/front-armored.svg"
  18360. }
  18361. },
  18362. backArmored: {
  18363. height: math.unit(19, "feet"),
  18364. weight: math.unit(900, "kg"),
  18365. name: "Back (Armored)",
  18366. image: {
  18367. source: "./media/characters/venio-darcony/back-armored.svg"
  18368. }
  18369. },
  18370. sword: {
  18371. height: math.unit(10, "feet"),
  18372. weight: math.unit(50, "lb"),
  18373. name: "Sword",
  18374. image: {
  18375. source: "./media/characters/venio-darcony/sword.svg"
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(10, "feet")
  18383. },
  18384. {
  18385. name: "Macro",
  18386. height: math.unit(130, "feet"),
  18387. default: true
  18388. },
  18389. {
  18390. name: "Macro+",
  18391. height: math.unit(240, "feet")
  18392. },
  18393. ]
  18394. ))
  18395. characterMakers.push(() => makeCharacter(
  18396. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18397. {
  18398. front: {
  18399. height: math.unit(6, "feet"),
  18400. weight: math.unit(150, "lb"),
  18401. name: "Front",
  18402. image: {
  18403. source: "./media/characters/veski/front.svg",
  18404. extra: 1299 / 1225,
  18405. bottom: 0.04
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(6, "feet"),
  18410. weight: math.unit(150, "lb"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/veski/back.svg",
  18414. extra: 1299 / 1225,
  18415. bottom: 0.008
  18416. }
  18417. },
  18418. maw: {
  18419. height: math.unit(1.5 * 1.21, "feet"),
  18420. name: "Maw",
  18421. image: {
  18422. source: "./media/characters/veski/maw.svg"
  18423. }
  18424. },
  18425. },
  18426. [
  18427. {
  18428. name: "Macro",
  18429. height: math.unit(2, "km"),
  18430. default: true
  18431. },
  18432. ]
  18433. ))
  18434. characterMakers.push(() => makeCharacter(
  18435. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18436. {
  18437. front: {
  18438. height: math.unit(5 + 7 / 12, "feet"),
  18439. name: "Front",
  18440. image: {
  18441. source: "./media/characters/isabelle/front.svg",
  18442. extra: 2130 / 1976,
  18443. bottom: 0.05
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Supermicro",
  18450. height: math.unit(10, "micrometers")
  18451. },
  18452. {
  18453. name: "Micro",
  18454. height: math.unit(1, "inch")
  18455. },
  18456. {
  18457. name: "Tiny",
  18458. height: math.unit(5, "inches")
  18459. },
  18460. {
  18461. name: "Standard",
  18462. height: math.unit(5 + 7 / 12, "inches")
  18463. },
  18464. {
  18465. name: "Macro",
  18466. height: math.unit(80, "meters"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(250, "meters")
  18472. },
  18473. {
  18474. name: "Gigamacro",
  18475. height: math.unit(5, "km")
  18476. },
  18477. {
  18478. name: "Cosmic",
  18479. height: math.unit(2.5e6, "miles")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(6, "feet"),
  18488. weight: math.unit(150, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/hanzo/front.svg",
  18492. extra: 374 / 344,
  18493. bottom: 0.02
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(8, "feet"),
  18501. default: true
  18502. },
  18503. ]
  18504. ))
  18505. characterMakers.push(() => makeCharacter(
  18506. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18507. {
  18508. front: {
  18509. height: math.unit(7, "feet"),
  18510. weight: math.unit(130, "lb"),
  18511. name: "Front",
  18512. image: {
  18513. source: "./media/characters/anna/front.svg",
  18514. extra: 169 / 145,
  18515. bottom: 0.06
  18516. }
  18517. },
  18518. full: {
  18519. height: math.unit(4.96, "feet"),
  18520. weight: math.unit(220, "lb"),
  18521. name: "Full",
  18522. image: {
  18523. source: "./media/characters/anna/full.svg",
  18524. extra: 138 / 114,
  18525. bottom: 0.15
  18526. }
  18527. },
  18528. tongue: {
  18529. height: math.unit(2.53, "feet"),
  18530. name: "Tongue",
  18531. image: {
  18532. source: "./media/characters/anna/tongue.svg"
  18533. }
  18534. },
  18535. },
  18536. [
  18537. {
  18538. name: "Normal",
  18539. height: math.unit(7, "feet"),
  18540. default: true
  18541. },
  18542. ]
  18543. ))
  18544. characterMakers.push(() => makeCharacter(
  18545. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18546. {
  18547. front: {
  18548. height: math.unit(7, "feet"),
  18549. weight: math.unit(150, "lb"),
  18550. name: "Front",
  18551. image: {
  18552. source: "./media/characters/ian-corvid/front.svg",
  18553. extra: 150 / 142,
  18554. bottom: 0.02
  18555. }
  18556. },
  18557. back: {
  18558. height: math.unit(7, "feet"),
  18559. weight: math.unit(150, "lb"),
  18560. name: "Back",
  18561. image: {
  18562. source: "./media/characters/ian-corvid/back.svg",
  18563. extra: 150 / 143,
  18564. bottom: 0.01
  18565. }
  18566. },
  18567. stomping: {
  18568. height: math.unit(7, "feet"),
  18569. weight: math.unit(150, "lb"),
  18570. name: "Stomping",
  18571. image: {
  18572. source: "./media/characters/ian-corvid/stomping.svg",
  18573. extra: 76 / 72
  18574. }
  18575. },
  18576. sitting: {
  18577. height: math.unit(7 / 1.8, "feet"),
  18578. weight: math.unit(150, "lb"),
  18579. name: "Sitting",
  18580. image: {
  18581. source: "./media/characters/ian-corvid/sitting.svg",
  18582. extra: 1400 / 1269,
  18583. bottom: 0.15
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Tiny Microw",
  18590. height: math.unit(1, "inch")
  18591. },
  18592. {
  18593. name: "Microw",
  18594. height: math.unit(6, "inches")
  18595. },
  18596. {
  18597. name: "Crow",
  18598. height: math.unit(7 + 1 / 12, "feet"),
  18599. default: true
  18600. },
  18601. {
  18602. name: "Macrow",
  18603. height: math.unit(176, "feet")
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(5 + 7 / 12, "feet"),
  18612. weight: math.unit(147, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/natalie-kellon/front.svg",
  18616. extra: 1214 / 1141,
  18617. bottom: 0.02
  18618. }
  18619. },
  18620. },
  18621. [
  18622. {
  18623. name: "Micro",
  18624. height: math.unit(1 / 16, "inch")
  18625. },
  18626. {
  18627. name: "Tiny",
  18628. height: math.unit(4, "inches")
  18629. },
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(5 + 7 / 12, "feet"),
  18633. default: true
  18634. },
  18635. {
  18636. name: "Amazon",
  18637. height: math.unit(12, "feet")
  18638. },
  18639. {
  18640. name: "Giantess",
  18641. height: math.unit(160, "meters")
  18642. },
  18643. {
  18644. name: "Titaness",
  18645. height: math.unit(800, "meters")
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(6, "feet"),
  18654. weight: math.unit(150, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/alluria/front.svg",
  18658. extra: 806 / 738,
  18659. bottom: 0.01
  18660. }
  18661. },
  18662. side: {
  18663. height: math.unit(6, "feet"),
  18664. weight: math.unit(150, "lb"),
  18665. name: "Side",
  18666. image: {
  18667. source: "./media/characters/alluria/side.svg",
  18668. extra: 800 / 750,
  18669. }
  18670. },
  18671. back: {
  18672. height: math.unit(6, "feet"),
  18673. weight: math.unit(150, "lb"),
  18674. name: "Back",
  18675. image: {
  18676. source: "./media/characters/alluria/back.svg",
  18677. extra: 806 / 738,
  18678. }
  18679. },
  18680. frontMaid: {
  18681. height: math.unit(6, "feet"),
  18682. weight: math.unit(150, "lb"),
  18683. name: "Front (Maid)",
  18684. image: {
  18685. source: "./media/characters/alluria/front-maid.svg",
  18686. extra: 806 / 738,
  18687. bottom: 0.01
  18688. }
  18689. },
  18690. sideMaid: {
  18691. height: math.unit(6, "feet"),
  18692. weight: math.unit(150, "lb"),
  18693. name: "Side (Maid)",
  18694. image: {
  18695. source: "./media/characters/alluria/side-maid.svg",
  18696. extra: 800 / 750,
  18697. bottom: 0.005
  18698. }
  18699. },
  18700. backMaid: {
  18701. height: math.unit(6, "feet"),
  18702. weight: math.unit(150, "lb"),
  18703. name: "Back (Maid)",
  18704. image: {
  18705. source: "./media/characters/alluria/back-maid.svg",
  18706. extra: 806 / 738,
  18707. }
  18708. },
  18709. },
  18710. [
  18711. {
  18712. name: "Micro",
  18713. height: math.unit(6, "inches"),
  18714. default: true
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(6, "feet"),
  18723. weight: math.unit(150, "lb"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/kyle/front.svg",
  18727. extra: 1069 / 962,
  18728. bottom: 77.228 / 1727.45
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Macro",
  18735. height: math.unit(150, "feet"),
  18736. default: true
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6, "feet"),
  18745. weight: math.unit(300, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/duncan/front.svg",
  18749. extra: 1650 / 1482,
  18750. bottom: 0.05
  18751. }
  18752. },
  18753. },
  18754. [
  18755. {
  18756. name: "Macro",
  18757. height: math.unit(100, "feet"),
  18758. default: true
  18759. },
  18760. ]
  18761. ))
  18762. characterMakers.push(() => makeCharacter(
  18763. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18764. {
  18765. front: {
  18766. height: math.unit(5 + 4 / 12, "feet"),
  18767. weight: math.unit(220, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/memory/front.svg",
  18771. extra: 3641 / 3545,
  18772. bottom: 0.03
  18773. }
  18774. },
  18775. back: {
  18776. height: math.unit(5 + 4 / 12, "feet"),
  18777. weight: math.unit(220, "lb"),
  18778. name: "Back",
  18779. image: {
  18780. source: "./media/characters/memory/back.svg",
  18781. extra: 3641 / 3545,
  18782. bottom: 0.025
  18783. }
  18784. },
  18785. frontSkirt: {
  18786. height: math.unit(5 + 4 / 12, "feet"),
  18787. weight: math.unit(220, "lb"),
  18788. name: "Front (Skirt)",
  18789. image: {
  18790. source: "./media/characters/memory/front-skirt.svg",
  18791. extra: 3641 / 3545,
  18792. bottom: 0.03
  18793. }
  18794. },
  18795. frontDress: {
  18796. height: math.unit(5 + 4 / 12, "feet"),
  18797. weight: math.unit(220, "lb"),
  18798. name: "Front (Dress)",
  18799. image: {
  18800. source: "./media/characters/memory/front-dress.svg",
  18801. extra: 3641 / 3545,
  18802. bottom: 0.03
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Micro",
  18809. height: math.unit(6, "inches"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(5 + 4 / 12, "feet")
  18815. },
  18816. ]
  18817. ))
  18818. characterMakers.push(() => makeCharacter(
  18819. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18820. {
  18821. front: {
  18822. height: math.unit(4 + 11 / 12, "feet"),
  18823. weight: math.unit(100, "lb"),
  18824. name: "Front",
  18825. image: {
  18826. source: "./media/characters/luno/front.svg",
  18827. extra: 1535 / 1487,
  18828. bottom: 0.03
  18829. }
  18830. },
  18831. },
  18832. [
  18833. {
  18834. name: "Micro",
  18835. height: math.unit(3, "inches")
  18836. },
  18837. {
  18838. name: "Normal",
  18839. height: math.unit(4 + 11 / 12, "feet"),
  18840. default: true
  18841. },
  18842. {
  18843. name: "Macro",
  18844. height: math.unit(300, "feet")
  18845. },
  18846. {
  18847. name: "Megamacro",
  18848. height: math.unit(700, "miles")
  18849. },
  18850. ]
  18851. ))
  18852. characterMakers.push(() => makeCharacter(
  18853. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18854. {
  18855. front: {
  18856. height: math.unit(6 + 2 / 12, "feet"),
  18857. weight: math.unit(170, "lb"),
  18858. name: "Front",
  18859. image: {
  18860. source: "./media/characters/jamesy/front.svg",
  18861. extra: 440 / 382,
  18862. bottom: 0.005
  18863. }
  18864. },
  18865. },
  18866. [
  18867. {
  18868. name: "Micro",
  18869. height: math.unit(3, "inches")
  18870. },
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(6 + 2 / 12, "feet"),
  18874. default: true
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(300, "feet")
  18879. },
  18880. {
  18881. name: "Megamacro",
  18882. height: math.unit(700, "miles")
  18883. },
  18884. ]
  18885. ))
  18886. characterMakers.push(() => makeCharacter(
  18887. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18888. {
  18889. front: {
  18890. height: math.unit(6, "feet"),
  18891. weight: math.unit(160, "lb"),
  18892. name: "Front",
  18893. image: {
  18894. source: "./media/characters/mark/front.svg",
  18895. extra: 3300 / 3100,
  18896. bottom: 136.42 / 3440.47
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Macro",
  18903. height: math.unit(120, "meters")
  18904. },
  18905. {
  18906. name: "Bigger Macro",
  18907. height: math.unit(350, "meters")
  18908. },
  18909. {
  18910. name: "Megamacro",
  18911. height: math.unit(8, "km"),
  18912. default: true
  18913. },
  18914. {
  18915. name: "Continental",
  18916. height: math.unit(4550, "km")
  18917. },
  18918. {
  18919. name: "Planetary",
  18920. height: math.unit(65000, "km")
  18921. },
  18922. ]
  18923. ))
  18924. characterMakers.push(() => makeCharacter(
  18925. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18926. {
  18927. front: {
  18928. height: math.unit(6, "feet"),
  18929. weight: math.unit(400, "lb"),
  18930. name: "Front",
  18931. image: {
  18932. source: "./media/characters/mac/front.svg",
  18933. extra: 1048 / 987.7,
  18934. bottom: 60 / 1107.6,
  18935. }
  18936. },
  18937. },
  18938. [
  18939. {
  18940. name: "Macro",
  18941. height: math.unit(500, "feet"),
  18942. default: true
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(5 + 2 / 12, "feet"),
  18951. weight: math.unit(190, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/bari/front.svg",
  18955. extra: 3156 / 2880,
  18956. bottom: 0.03
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(5 + 2 / 12, "feet"),
  18961. weight: math.unit(190, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/bari/back.svg",
  18965. extra: 3260 / 2834,
  18966. bottom: 0.025
  18967. }
  18968. },
  18969. frontPlush: {
  18970. height: math.unit(5 + 2 / 12, "feet"),
  18971. weight: math.unit(190, "lb"),
  18972. name: "Front (Plush)",
  18973. image: {
  18974. source: "./media/characters/bari/front-plush.svg",
  18975. extra: 1112 / 1061,
  18976. bottom: 0.002
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Micro",
  18983. height: math.unit(3, "inches")
  18984. },
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(5 + 2 / 12, "feet"),
  18988. default: true
  18989. },
  18990. {
  18991. name: "Macro",
  18992. height: math.unit(20, "feet")
  18993. },
  18994. ]
  18995. ))
  18996. characterMakers.push(() => makeCharacter(
  18997. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18998. {
  18999. front: {
  19000. height: math.unit(6 + 1 / 12, "feet"),
  19001. weight: math.unit(275, "lb"),
  19002. name: "Front",
  19003. image: {
  19004. source: "./media/characters/hunter-misha-raven/front.svg"
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Mortal",
  19011. height: math.unit(6 + 1 / 12, "feet")
  19012. },
  19013. {
  19014. name: "Divine",
  19015. height: math.unit(1.12134e34, "parsecs"),
  19016. default: true
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  19022. {
  19023. front: {
  19024. height: math.unit(6 + 3 / 12, "feet"),
  19025. weight: math.unit(220, "lb"),
  19026. name: "Front",
  19027. image: {
  19028. source: "./media/characters/max-calore/front.svg",
  19029. extra: 1700 / 1648,
  19030. bottom: 0.01
  19031. }
  19032. },
  19033. back: {
  19034. height: math.unit(6 + 3 / 12, "feet"),
  19035. weight: math.unit(220, "lb"),
  19036. name: "Back",
  19037. image: {
  19038. source: "./media/characters/max-calore/back.svg",
  19039. extra: 1700 / 1648,
  19040. bottom: 0.01
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(6 + 3 / 12, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  19054. {
  19055. side: {
  19056. height: math.unit(2 + 8 / 12, "feet"),
  19057. weight: math.unit(99, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/aspen/side.svg",
  19061. extra: 152 / 138,
  19062. bottom: 0.032
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(2 + 8 / 12, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19076. {
  19077. side: {
  19078. height: math.unit(3 + 2 / 12, "feet"),
  19079. weight: math.unit(224, "lb"),
  19080. name: "Side",
  19081. image: {
  19082. source: "./media/characters/sheila-feral-wolf/side.svg",
  19083. extra: 179 / 166,
  19084. bottom: 0.03
  19085. }
  19086. },
  19087. },
  19088. [
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(3 + 2 / 12, "feet"),
  19092. default: true
  19093. },
  19094. ]
  19095. ))
  19096. characterMakers.push(() => makeCharacter(
  19097. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19098. {
  19099. side: {
  19100. height: math.unit(1 + 9 / 12, "feet"),
  19101. weight: math.unit(38, "lb"),
  19102. name: "Side",
  19103. image: {
  19104. source: "./media/characters/michelle/side.svg",
  19105. extra: 147 / 136.7,
  19106. bottom: 0.03
  19107. }
  19108. },
  19109. },
  19110. [
  19111. {
  19112. name: "Normal",
  19113. height: math.unit(1 + 9 / 12, "feet"),
  19114. default: true
  19115. },
  19116. ]
  19117. ))
  19118. characterMakers.push(() => makeCharacter(
  19119. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19120. {
  19121. front: {
  19122. height: math.unit(1.54, "feet"),
  19123. weight: math.unit(50, "lb"),
  19124. name: "Front",
  19125. image: {
  19126. source: "./media/characters/nino/front.svg"
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(1.54, "feet"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(1.49, "feet"),
  19143. weight: math.unit(45, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/viola/front.svg"
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(1.49, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(6 + 5 / 12, "feet"),
  19163. weight: math.unit(580, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/atlas/front.svg",
  19167. extra: 298.5 / 290,
  19168. bottom: 0.015
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(6 + 5 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19182. {
  19183. side: {
  19184. height: math.unit(15.6, "inches"),
  19185. weight: math.unit(10, "lb"),
  19186. name: "Side",
  19187. image: {
  19188. source: "./media/characters/davy/side.svg",
  19189. extra: 200 / 170,
  19190. bottom: 0.01
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(15.6, "inches"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19204. {
  19205. side: {
  19206. height: math.unit(4 + 8 / 12, "feet"),
  19207. weight: math.unit(166, "lb"),
  19208. name: "Side",
  19209. image: {
  19210. source: "./media/characters/fiona/side.svg",
  19211. extra: 232 / 220,
  19212. bottom: 0.03
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(4 + 8 / 12, "feet"),
  19220. default: true
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19226. {
  19227. front: {
  19228. height: math.unit(26, "inches"),
  19229. weight: math.unit(35, "lb"),
  19230. name: "Front",
  19231. image: {
  19232. source: "./media/characters/lyla/front.svg",
  19233. bottom: 0.1
  19234. }
  19235. },
  19236. },
  19237. [
  19238. {
  19239. name: "Normal",
  19240. height: math.unit(3, "feet"),
  19241. default: true
  19242. },
  19243. ]
  19244. ))
  19245. characterMakers.push(() => makeCharacter(
  19246. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19247. {
  19248. side: {
  19249. height: math.unit(1.8, "feet"),
  19250. weight: math.unit(44, "lb"),
  19251. name: "Side",
  19252. image: {
  19253. source: "./media/characters/perseus/side.svg",
  19254. bottom: 0.21
  19255. }
  19256. },
  19257. },
  19258. [
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(1.8, "feet"),
  19262. default: true
  19263. },
  19264. ]
  19265. ))
  19266. characterMakers.push(() => makeCharacter(
  19267. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19268. {
  19269. side: {
  19270. height: math.unit(4 + 2 / 12, "feet"),
  19271. weight: math.unit(20, "lb"),
  19272. name: "Side",
  19273. image: {
  19274. source: "./media/characters/remus/side.svg"
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Normal",
  19281. height: math.unit(4 + 2 / 12, "feet"),
  19282. default: true
  19283. },
  19284. ]
  19285. ))
  19286. characterMakers.push(() => makeCharacter(
  19287. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19288. {
  19289. front: {
  19290. height: math.unit(4 + 11 / 12, "feet"),
  19291. weight: math.unit(114, "lb"),
  19292. name: "Front",
  19293. image: {
  19294. source: "./media/characters/raf/front.svg",
  19295. extra: 1504/1339,
  19296. bottom: 26/1530
  19297. }
  19298. },
  19299. side: {
  19300. height: math.unit(4 + 11 / 12, "feet"),
  19301. weight: math.unit(114, "lb"),
  19302. name: "Side",
  19303. image: {
  19304. source: "./media/characters/raf/side.svg",
  19305. extra: 1466/1316,
  19306. bottom: 29/1495
  19307. }
  19308. },
  19309. paw: {
  19310. height: math.unit(1.45, "feet"),
  19311. name: "Paw",
  19312. image: {
  19313. source: "./media/characters/raf/paw.svg"
  19314. },
  19315. extraAttributes: {
  19316. "toeSize": {
  19317. name: "Toe Size",
  19318. power: 2,
  19319. type: "area",
  19320. base: math.unit(0.004, "m^2")
  19321. },
  19322. "padSize": {
  19323. name: "Pad Size",
  19324. power: 2,
  19325. type: "area",
  19326. base: math.unit(0.04, "m^2")
  19327. },
  19328. "footSize": {
  19329. name: "Foot Size",
  19330. power: 2,
  19331. type: "area",
  19332. base: math.unit(0.08, "m^2")
  19333. },
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Micro",
  19340. height: math.unit(2, "inches")
  19341. },
  19342. {
  19343. name: "Normal",
  19344. height: math.unit(4 + 11 / 12, "feet"),
  19345. default: true
  19346. },
  19347. {
  19348. name: "Macro",
  19349. height: math.unit(70, "feet")
  19350. },
  19351. ]
  19352. ))
  19353. characterMakers.push(() => makeCharacter(
  19354. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19355. {
  19356. front: {
  19357. height: math.unit(1.5, "meters"),
  19358. weight: math.unit(68, "kg"),
  19359. name: "Front",
  19360. image: {
  19361. source: "./media/characters/liam-einarr/front.svg",
  19362. extra: 2822 / 2666
  19363. }
  19364. },
  19365. back: {
  19366. height: math.unit(1.5, "meters"),
  19367. weight: math.unit(68, "kg"),
  19368. name: "Back",
  19369. image: {
  19370. source: "./media/characters/liam-einarr/back.svg",
  19371. extra: 2822 / 2666,
  19372. bottom: 0.015
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(1.5, "meters"),
  19380. default: true
  19381. },
  19382. {
  19383. name: "Macro",
  19384. height: math.unit(150, "meters")
  19385. },
  19386. {
  19387. name: "Megamacro",
  19388. height: math.unit(35, "km")
  19389. },
  19390. ]
  19391. ))
  19392. characterMakers.push(() => makeCharacter(
  19393. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19394. {
  19395. front: {
  19396. height: math.unit(6, "feet"),
  19397. weight: math.unit(75, "kg"),
  19398. name: "Front",
  19399. image: {
  19400. source: "./media/characters/linda/front.svg",
  19401. extra: 930 / 874,
  19402. bottom: 0.004
  19403. }
  19404. },
  19405. },
  19406. [
  19407. {
  19408. name: "Normal",
  19409. height: math.unit(6, "feet"),
  19410. default: true
  19411. },
  19412. ]
  19413. ))
  19414. characterMakers.push(() => makeCharacter(
  19415. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19416. {
  19417. front: {
  19418. height: math.unit(6 + 8 / 12, "feet"),
  19419. weight: math.unit(220, "lb"),
  19420. name: "Front",
  19421. image: {
  19422. source: "./media/characters/caylex/front.svg",
  19423. extra: 821 / 772,
  19424. bottom: 0.07
  19425. }
  19426. },
  19427. back: {
  19428. height: math.unit(6 + 8 / 12, "feet"),
  19429. weight: math.unit(220, "lb"),
  19430. name: "Back",
  19431. image: {
  19432. source: "./media/characters/caylex/back.svg",
  19433. extra: 821 / 772,
  19434. bottom: 0.022
  19435. }
  19436. },
  19437. hand: {
  19438. height: math.unit(1.25, "feet"),
  19439. name: "Hand",
  19440. image: {
  19441. source: "./media/characters/caylex/hand.svg"
  19442. }
  19443. },
  19444. foot: {
  19445. height: math.unit(1.6, "feet"),
  19446. name: "Foot",
  19447. image: {
  19448. source: "./media/characters/caylex/foot.svg"
  19449. }
  19450. },
  19451. armored: {
  19452. height: math.unit(6 + 8 / 12, "feet"),
  19453. weight: math.unit(250, "lb"),
  19454. name: "Armored",
  19455. image: {
  19456. source: "./media/characters/caylex/armored.svg",
  19457. extra: 1420 / 1310,
  19458. bottom: 0.045
  19459. }
  19460. },
  19461. },
  19462. [
  19463. {
  19464. name: "Normal",
  19465. height: math.unit(6 + 8 / 12, "feet"),
  19466. default: true
  19467. },
  19468. {
  19469. name: "Normal+",
  19470. height: math.unit(12, "feet")
  19471. },
  19472. ]
  19473. ))
  19474. characterMakers.push(() => makeCharacter(
  19475. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19476. {
  19477. front: {
  19478. height: math.unit(7 + 6 / 12, "feet"),
  19479. weight: math.unit(288, "lb"),
  19480. name: "Front",
  19481. image: {
  19482. source: "./media/characters/alana/front.svg",
  19483. extra: 679 / 653,
  19484. bottom: 22.5 / 701
  19485. }
  19486. },
  19487. },
  19488. [
  19489. {
  19490. name: "Normal",
  19491. height: math.unit(7 + 6 / 12, "feet")
  19492. },
  19493. {
  19494. name: "Large",
  19495. height: math.unit(50, "feet")
  19496. },
  19497. {
  19498. name: "Macro",
  19499. height: math.unit(100, "feet"),
  19500. default: true
  19501. },
  19502. {
  19503. name: "Macro+",
  19504. height: math.unit(200, "feet")
  19505. },
  19506. ]
  19507. ))
  19508. characterMakers.push(() => makeCharacter(
  19509. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19510. {
  19511. front: {
  19512. height: math.unit(6 + 1 / 12, "feet"),
  19513. weight: math.unit(210, "lb"),
  19514. name: "Front",
  19515. image: {
  19516. source: "./media/characters/hasani/front.svg",
  19517. extra: 244 / 232,
  19518. bottom: 0.01
  19519. }
  19520. },
  19521. back: {
  19522. height: math.unit(6 + 1 / 12, "feet"),
  19523. weight: math.unit(210, "lb"),
  19524. name: "Back",
  19525. image: {
  19526. source: "./media/characters/hasani/back.svg",
  19527. extra: 244 / 232,
  19528. bottom: 0.01
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(6 + 1 / 12, "feet")
  19536. },
  19537. {
  19538. name: "Macro",
  19539. height: math.unit(175, "feet"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(1.82, "meters"),
  19549. weight: math.unit(140, "lb"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/nita/front.svg",
  19553. extra: 2473 / 2363,
  19554. bottom: 0.01
  19555. }
  19556. },
  19557. },
  19558. [
  19559. {
  19560. name: "Normal",
  19561. height: math.unit(1.82, "m")
  19562. },
  19563. {
  19564. name: "Macro",
  19565. height: math.unit(300, "m")
  19566. },
  19567. {
  19568. name: "Mistake Canon",
  19569. height: math.unit(0.5, "miles"),
  19570. default: true
  19571. },
  19572. {
  19573. name: "Big Mistake",
  19574. height: math.unit(13, "miles")
  19575. },
  19576. {
  19577. name: "Playing God",
  19578. height: math.unit(2450, "miles")
  19579. },
  19580. ]
  19581. ))
  19582. characterMakers.push(() => makeCharacter(
  19583. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19584. {
  19585. front: {
  19586. height: math.unit(4, "feet"),
  19587. weight: math.unit(120, "lb"),
  19588. name: "Front",
  19589. image: {
  19590. source: "./media/characters/shiriko/front.svg",
  19591. extra: 970/934,
  19592. bottom: 5/975
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(4, "feet"),
  19600. default: true
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(6, "feet"),
  19609. name: "front",
  19610. image: {
  19611. source: "./media/characters/deja/front.svg",
  19612. extra: 926 / 840,
  19613. bottom: 0.07
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Planck Length",
  19620. height: math.unit(1.6e-35, "meters")
  19621. },
  19622. {
  19623. name: "Normal",
  19624. height: math.unit(30.48, "meters"),
  19625. default: true
  19626. },
  19627. {
  19628. name: "Universal",
  19629. height: math.unit(8.8e26, "meters")
  19630. },
  19631. ]
  19632. ))
  19633. characterMakers.push(() => makeCharacter(
  19634. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19635. {
  19636. side: {
  19637. height: math.unit(8, "feet"),
  19638. weight: math.unit(6300, "lb"),
  19639. name: "Side",
  19640. image: {
  19641. source: "./media/characters/anima/side.svg",
  19642. bottom: 0.035
  19643. }
  19644. },
  19645. },
  19646. [
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(8, "feet"),
  19650. default: true
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19656. {
  19657. front: {
  19658. height: math.unit(8, "feet"),
  19659. weight: math.unit(350, "lb"),
  19660. name: "Front",
  19661. image: {
  19662. source: "./media/characters/bianca/front.svg",
  19663. extra: 234 / 225,
  19664. bottom: 0.03
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(8, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(11 + 5/12, "feet"),
  19681. weight: math.unit(1200, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/adinia/front.svg",
  19685. extra: 1767/1641,
  19686. bottom: 44/1811
  19687. },
  19688. extraAttributes: {
  19689. "energyIntake": {
  19690. name: "Energy Intake",
  19691. power: 3,
  19692. type: "energy",
  19693. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19694. },
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(11 + 5/12, "feet"),
  19699. weight: math.unit(1200, "lb"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/adinia/back.svg",
  19703. extra: 1834/1684,
  19704. bottom: 14/1848
  19705. },
  19706. extraAttributes: {
  19707. "energyIntake": {
  19708. name: "Energy Intake",
  19709. power: 3,
  19710. type: "energy",
  19711. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19712. },
  19713. }
  19714. },
  19715. maw: {
  19716. height: math.unit(3.79, "feet"),
  19717. name: "Maw",
  19718. image: {
  19719. source: "./media/characters/adinia/maw.svg"
  19720. }
  19721. },
  19722. rump: {
  19723. height: math.unit(4.6, "feet"),
  19724. name: "Rump",
  19725. image: {
  19726. source: "./media/characters/adinia/rump.svg"
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Normal",
  19733. height: math.unit(11 + 5 / 12, "feet"),
  19734. default: true
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19740. {
  19741. front: {
  19742. height: math.unit(3, "meters"),
  19743. weight: math.unit(200, "kg"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/lykasa/front.svg",
  19747. extra: 1076 / 976,
  19748. bottom: 0.06
  19749. }
  19750. },
  19751. },
  19752. [
  19753. {
  19754. name: "Normal",
  19755. height: math.unit(3, "meters")
  19756. },
  19757. {
  19758. name: "Kaiju",
  19759. height: math.unit(120, "meters"),
  19760. default: true
  19761. },
  19762. {
  19763. name: "Mega Kaiju",
  19764. height: math.unit(240, "km")
  19765. },
  19766. {
  19767. name: "Giga Kaiju",
  19768. height: math.unit(400, "megameters")
  19769. },
  19770. {
  19771. name: "Tera Kaiju",
  19772. height: math.unit(800, "gigameters")
  19773. },
  19774. {
  19775. name: "Kaiju Dragon Goddess",
  19776. height: math.unit(26, "zettaparsecs")
  19777. },
  19778. ]
  19779. ))
  19780. characterMakers.push(() => makeCharacter(
  19781. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19782. {
  19783. side: {
  19784. height: math.unit(283 / 124 * 6, "feet"),
  19785. weight: math.unit(35000, "lb"),
  19786. name: "Side",
  19787. image: {
  19788. source: "./media/characters/malfaren/side.svg",
  19789. extra: 1310/529,
  19790. bottom: 24/1334
  19791. }
  19792. },
  19793. front: {
  19794. height: math.unit(22.36, "feet"),
  19795. weight: math.unit(35000, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/malfaren/front.svg",
  19799. extra: 1237/1115,
  19800. bottom: 32/1269
  19801. }
  19802. },
  19803. maw: {
  19804. height: math.unit(6.9, "feet"),
  19805. name: "Maw",
  19806. image: {
  19807. source: "./media/characters/malfaren/maw.svg"
  19808. }
  19809. },
  19810. dick: {
  19811. height: math.unit(6.19, "feet"),
  19812. name: "Dick",
  19813. image: {
  19814. source: "./media/characters/malfaren/dick.svg"
  19815. }
  19816. },
  19817. eye: {
  19818. height: math.unit(0.69, "feet"),
  19819. name: "Eye",
  19820. image: {
  19821. source: "./media/characters/malfaren/eye.svg"
  19822. }
  19823. },
  19824. },
  19825. [
  19826. {
  19827. name: "Big",
  19828. height: math.unit(283 / 162 * 6, "feet"),
  19829. },
  19830. {
  19831. name: "Bigger",
  19832. height: math.unit(283 / 124 * 6, "feet")
  19833. },
  19834. {
  19835. name: "Massive",
  19836. height: math.unit(283 / 92 * 6, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "👀💦",
  19841. height: math.unit(283 / 73 * 6, "feet"),
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19847. {
  19848. front: {
  19849. height: math.unit(1.7, "m"),
  19850. weight: math.unit(70, "kg"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/kernel/front.svg",
  19854. extra: 1960/1821,
  19855. bottom: 17/1977
  19856. }
  19857. },
  19858. },
  19859. [
  19860. {
  19861. name: "Nano",
  19862. height: math.unit(17, "micrometers")
  19863. },
  19864. {
  19865. name: "Micro",
  19866. height: math.unit(1.7, "mm")
  19867. },
  19868. {
  19869. name: "Small",
  19870. height: math.unit(1.7, "cm")
  19871. },
  19872. {
  19873. name: "Normal",
  19874. height: math.unit(1.7, "m"),
  19875. default: true
  19876. },
  19877. ]
  19878. ))
  19879. characterMakers.push(() => makeCharacter(
  19880. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19881. {
  19882. front: {
  19883. height: math.unit(1.75, "meters"),
  19884. weight: math.unit(65, "kg"),
  19885. name: "Front",
  19886. image: {
  19887. source: "./media/characters/jayne-folest/front.svg",
  19888. extra: 2115 / 2007,
  19889. bottom: 0.02
  19890. }
  19891. },
  19892. back: {
  19893. height: math.unit(1.75, "meters"),
  19894. weight: math.unit(65, "kg"),
  19895. name: "Back",
  19896. image: {
  19897. source: "./media/characters/jayne-folest/back.svg",
  19898. extra: 2115 / 2007,
  19899. bottom: 0.005
  19900. }
  19901. },
  19902. frontClothed: {
  19903. height: math.unit(1.75, "meters"),
  19904. weight: math.unit(65, "kg"),
  19905. name: "Front (Clothed)",
  19906. image: {
  19907. source: "./media/characters/jayne-folest/front-clothed.svg",
  19908. extra: 2115 / 2007,
  19909. bottom: 0.035
  19910. }
  19911. },
  19912. hand: {
  19913. height: math.unit(1 / 1.260, "feet"),
  19914. name: "Hand",
  19915. image: {
  19916. source: "./media/characters/jayne-folest/hand.svg"
  19917. }
  19918. },
  19919. foot: {
  19920. height: math.unit(1 / 0.918, "feet"),
  19921. name: "Foot",
  19922. image: {
  19923. source: "./media/characters/jayne-folest/foot.svg"
  19924. }
  19925. },
  19926. },
  19927. [
  19928. {
  19929. name: "Micro",
  19930. height: math.unit(4, "cm")
  19931. },
  19932. {
  19933. name: "Normal",
  19934. height: math.unit(1.75, "meters")
  19935. },
  19936. {
  19937. name: "Macro",
  19938. height: math.unit(47.5, "meters"),
  19939. default: true
  19940. },
  19941. ]
  19942. ))
  19943. characterMakers.push(() => makeCharacter(
  19944. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19945. {
  19946. front: {
  19947. height: math.unit(180, "cm"),
  19948. weight: math.unit(70, "kg"),
  19949. name: "Front",
  19950. image: {
  19951. source: "./media/characters/algier/front.svg",
  19952. extra: 596 / 572,
  19953. bottom: 0.04
  19954. }
  19955. },
  19956. back: {
  19957. height: math.unit(180, "cm"),
  19958. weight: math.unit(70, "kg"),
  19959. name: "Back",
  19960. image: {
  19961. source: "./media/characters/algier/back.svg",
  19962. extra: 596 / 572,
  19963. bottom: 0.025
  19964. }
  19965. },
  19966. frontdressed: {
  19967. height: math.unit(180, "cm"),
  19968. weight: math.unit(150, "kg"),
  19969. name: "Front-dressed",
  19970. image: {
  19971. source: "./media/characters/algier/front-dressed.svg",
  19972. extra: 596 / 572,
  19973. bottom: 0.038
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Micro",
  19980. height: math.unit(5, "cm")
  19981. },
  19982. {
  19983. name: "Normal",
  19984. height: math.unit(180, "cm"),
  19985. default: true
  19986. },
  19987. {
  19988. name: "Macro",
  19989. height: math.unit(64, "m")
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19995. {
  19996. upright: {
  19997. height: math.unit(7, "feet"),
  19998. weight: math.unit(300, "lb"),
  19999. name: "Upright",
  20000. image: {
  20001. source: "./media/characters/pretzel/upright.svg",
  20002. extra: 534 / 522,
  20003. bottom: 0.065
  20004. }
  20005. },
  20006. sprawling: {
  20007. height: math.unit(3.75, "feet"),
  20008. weight: math.unit(300, "lb"),
  20009. name: "Sprawling",
  20010. image: {
  20011. source: "./media/characters/pretzel/sprawling.svg",
  20012. extra: 314 / 281,
  20013. bottom: 0.1
  20014. }
  20015. },
  20016. tongue: {
  20017. height: math.unit(2, "feet"),
  20018. name: "Tongue",
  20019. image: {
  20020. source: "./media/characters/pretzel/tongue.svg"
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(7, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Oversized",
  20032. height: math.unit(15, "feet")
  20033. },
  20034. {
  20035. name: "Huge",
  20036. height: math.unit(30, "feet")
  20037. },
  20038. {
  20039. name: "Macro",
  20040. height: math.unit(250, "feet")
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  20046. {
  20047. sideFront: {
  20048. height: math.unit(5 + 2 / 12, "feet"),
  20049. weight: math.unit(120, "lb"),
  20050. name: "Front Side",
  20051. image: {
  20052. source: "./media/characters/roxi/side-front.svg",
  20053. extra: 2924 / 2717,
  20054. bottom: 0.08
  20055. }
  20056. },
  20057. sideBack: {
  20058. height: math.unit(5 + 2 / 12, "feet"),
  20059. weight: math.unit(120, "lb"),
  20060. name: "Back Side",
  20061. image: {
  20062. source: "./media/characters/roxi/side-back.svg",
  20063. extra: 2904 / 2693,
  20064. bottom: 0.06
  20065. }
  20066. },
  20067. front: {
  20068. height: math.unit(5 + 2 / 12, "feet"),
  20069. weight: math.unit(120, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/roxi/front.svg",
  20073. extra: 2028 / 1907,
  20074. bottom: 0.01
  20075. }
  20076. },
  20077. frontAlt: {
  20078. height: math.unit(5 + 2 / 12, "feet"),
  20079. weight: math.unit(120, "lb"),
  20080. name: "Front (Alt)",
  20081. image: {
  20082. source: "./media/characters/roxi/front-alt.svg",
  20083. extra: 1828 / 1798,
  20084. bottom: 0.01
  20085. }
  20086. },
  20087. sitting: {
  20088. height: math.unit(2.8, "feet"),
  20089. weight: math.unit(120, "lb"),
  20090. name: "Sitting",
  20091. image: {
  20092. source: "./media/characters/roxi/sitting.svg",
  20093. extra: 2660 / 2462,
  20094. bottom: 0.1
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Normal",
  20101. height: math.unit(5 + 2 / 12, "feet"),
  20102. default: true
  20103. },
  20104. ]
  20105. ))
  20106. characterMakers.push(() => makeCharacter(
  20107. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20108. {
  20109. side: {
  20110. height: math.unit(55, "feet"),
  20111. weight: math.unit(153, "tons"),
  20112. name: "Side",
  20113. image: {
  20114. source: "./media/characters/shadow/side.svg",
  20115. extra: 701 / 628,
  20116. bottom: 0.02
  20117. }
  20118. },
  20119. flying: {
  20120. height: math.unit(145, "feet"),
  20121. weight: math.unit(153, "tons"),
  20122. name: "Flying",
  20123. image: {
  20124. source: "./media/characters/shadow/flying.svg"
  20125. }
  20126. },
  20127. },
  20128. [
  20129. {
  20130. name: "Normal",
  20131. height: math.unit(55, "feet"),
  20132. default: true
  20133. },
  20134. ]
  20135. ))
  20136. characterMakers.push(() => makeCharacter(
  20137. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20138. {
  20139. front: {
  20140. height: math.unit(6, "feet"),
  20141. weight: math.unit(200, "lb"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/marcie/front.svg",
  20145. extra: 960 / 876,
  20146. bottom: 58 / 1017.87
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Macro",
  20153. height: math.unit(1, "mile"),
  20154. default: true
  20155. },
  20156. ]
  20157. ))
  20158. characterMakers.push(() => makeCharacter(
  20159. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20160. {
  20161. front: {
  20162. height: math.unit(7, "feet"),
  20163. weight: math.unit(200, "lb"),
  20164. name: "Front",
  20165. image: {
  20166. source: "./media/characters/kachina/front.svg",
  20167. extra: 3206/2764,
  20168. bottom: 140/3346
  20169. }
  20170. },
  20171. },
  20172. [
  20173. {
  20174. name: "Normal",
  20175. height: math.unit(7, "feet"),
  20176. default: true
  20177. },
  20178. ]
  20179. ))
  20180. characterMakers.push(() => makeCharacter(
  20181. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20182. {
  20183. looking: {
  20184. height: math.unit(2, "meters"),
  20185. weight: math.unit(300, "kg"),
  20186. name: "Looking",
  20187. image: {
  20188. source: "./media/characters/kash/looking.svg",
  20189. extra: 474 / 344,
  20190. bottom: 0.03
  20191. }
  20192. },
  20193. side: {
  20194. height: math.unit(2, "meters"),
  20195. weight: math.unit(300, "kg"),
  20196. name: "Side",
  20197. image: {
  20198. source: "./media/characters/kash/side.svg",
  20199. extra: 302 / 251,
  20200. bottom: 0.03
  20201. }
  20202. },
  20203. front: {
  20204. height: math.unit(2, "meters"),
  20205. weight: math.unit(300, "kg"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/kash/front.svg",
  20209. extra: 495 / 360,
  20210. bottom: 0.015
  20211. }
  20212. },
  20213. },
  20214. [
  20215. {
  20216. name: "Normal",
  20217. height: math.unit(2, "meters"),
  20218. default: true
  20219. },
  20220. {
  20221. name: "Big",
  20222. height: math.unit(3, "meters")
  20223. },
  20224. {
  20225. name: "Large",
  20226. height: math.unit(5, "meters")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20232. {
  20233. feeding: {
  20234. height: math.unit(6.7, "feet"),
  20235. weight: math.unit(350, "lb"),
  20236. name: "Feeding",
  20237. image: {
  20238. source: "./media/characters/lalim/feeding.svg",
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Normal",
  20245. height: math.unit(6.7, "feet"),
  20246. default: true
  20247. },
  20248. ]
  20249. ))
  20250. characterMakers.push(() => makeCharacter(
  20251. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20252. {
  20253. front: {
  20254. height: math.unit(9.5, "feet"),
  20255. weight: math.unit(600, "lb"),
  20256. name: "Front",
  20257. image: {
  20258. source: "./media/characters/de'vout/front.svg",
  20259. extra: 1443 / 1328,
  20260. bottom: 0.025
  20261. }
  20262. },
  20263. back: {
  20264. height: math.unit(9.5, "feet"),
  20265. weight: math.unit(600, "lb"),
  20266. name: "Back",
  20267. image: {
  20268. source: "./media/characters/de'vout/back.svg",
  20269. extra: 1443 / 1328
  20270. }
  20271. },
  20272. frontDressed: {
  20273. height: math.unit(9.5, "feet"),
  20274. weight: math.unit(600, "lb"),
  20275. name: "Front (Dressed",
  20276. image: {
  20277. source: "./media/characters/de'vout/front-dressed.svg",
  20278. extra: 1443 / 1328,
  20279. bottom: 0.025
  20280. }
  20281. },
  20282. backDressed: {
  20283. height: math.unit(9.5, "feet"),
  20284. weight: math.unit(600, "lb"),
  20285. name: "Back (Dressed",
  20286. image: {
  20287. source: "./media/characters/de'vout/back-dressed.svg",
  20288. extra: 1443 / 1328
  20289. }
  20290. },
  20291. },
  20292. [
  20293. {
  20294. name: "Normal",
  20295. height: math.unit(9.5, "feet"),
  20296. default: true
  20297. },
  20298. ]
  20299. ))
  20300. characterMakers.push(() => makeCharacter(
  20301. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20302. {
  20303. front: {
  20304. height: math.unit(8, "feet"),
  20305. weight: math.unit(225, "lb"),
  20306. name: "Front",
  20307. image: {
  20308. source: "./media/characters/talana/front.svg",
  20309. extra: 1410 / 1300,
  20310. bottom: 0.015
  20311. }
  20312. },
  20313. frontDressed: {
  20314. height: math.unit(8, "feet"),
  20315. weight: math.unit(225, "lb"),
  20316. name: "Front (Dressed",
  20317. image: {
  20318. source: "./media/characters/talana/front-dressed.svg",
  20319. extra: 1410 / 1300,
  20320. bottom: 0.015
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Normal",
  20327. height: math.unit(8, "feet"),
  20328. default: true
  20329. },
  20330. ]
  20331. ))
  20332. characterMakers.push(() => makeCharacter(
  20333. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20334. {
  20335. side: {
  20336. height: math.unit(7.2, "feet"),
  20337. weight: math.unit(150, "lb"),
  20338. name: "Side",
  20339. image: {
  20340. source: "./media/characters/xeauvok/side.svg",
  20341. extra: 1975 / 1523,
  20342. bottom: 0.07
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Normal",
  20349. height: math.unit(7.2, "feet"),
  20350. default: true
  20351. },
  20352. ]
  20353. ))
  20354. characterMakers.push(() => makeCharacter(
  20355. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20356. {
  20357. side: {
  20358. height: math.unit(4, "meters"),
  20359. weight: math.unit(2200, "kg"),
  20360. name: "Side",
  20361. image: {
  20362. source: "./media/characters/zara/side.svg",
  20363. extra: 765/744,
  20364. bottom: 156/921
  20365. }
  20366. },
  20367. },
  20368. [
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(4, "meters"),
  20372. default: true
  20373. },
  20374. ]
  20375. ))
  20376. characterMakers.push(() => makeCharacter(
  20377. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20378. {
  20379. side: {
  20380. height: math.unit(6, "feet"),
  20381. weight: math.unit(150, "lb"),
  20382. name: "Side",
  20383. image: {
  20384. source: "./media/characters/richard-dragon/side.svg",
  20385. extra: 845 / 340,
  20386. bottom: 0.017
  20387. }
  20388. },
  20389. maw: {
  20390. height: math.unit(2.97, "feet"),
  20391. name: "Maw",
  20392. image: {
  20393. source: "./media/characters/richard-dragon/maw.svg"
  20394. }
  20395. },
  20396. },
  20397. [
  20398. ]
  20399. ))
  20400. characterMakers.push(() => makeCharacter(
  20401. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20402. {
  20403. front: {
  20404. height: math.unit(4, "feet"),
  20405. weight: math.unit(100, "lb"),
  20406. name: "Front",
  20407. image: {
  20408. source: "./media/characters/richard-smeargle/front.svg",
  20409. extra: 2952 / 2820,
  20410. bottom: 0.028
  20411. }
  20412. },
  20413. },
  20414. [
  20415. {
  20416. name: "Normal",
  20417. height: math.unit(4, "feet"),
  20418. default: true
  20419. },
  20420. {
  20421. name: "Dynamax",
  20422. height: math.unit(20, "meters")
  20423. },
  20424. ]
  20425. ))
  20426. characterMakers.push(() => makeCharacter(
  20427. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20428. {
  20429. front: {
  20430. height: math.unit(6, "feet"),
  20431. weight: math.unit(110, "lb"),
  20432. name: "Front",
  20433. image: {
  20434. source: "./media/characters/klay/front.svg",
  20435. extra: 962 / 883,
  20436. bottom: 0.04
  20437. }
  20438. },
  20439. back: {
  20440. height: math.unit(6, "feet"),
  20441. weight: math.unit(110, "lb"),
  20442. name: "Back",
  20443. image: {
  20444. source: "./media/characters/klay/back.svg",
  20445. extra: 962 / 883
  20446. }
  20447. },
  20448. beans: {
  20449. height: math.unit(1.15, "feet"),
  20450. name: "Beans",
  20451. image: {
  20452. source: "./media/characters/klay/beans.svg"
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Micro",
  20459. height: math.unit(6, "inches")
  20460. },
  20461. {
  20462. name: "Mini",
  20463. height: math.unit(3, "feet")
  20464. },
  20465. {
  20466. name: "Normal",
  20467. height: math.unit(6, "feet"),
  20468. default: true
  20469. },
  20470. {
  20471. name: "Big",
  20472. height: math.unit(25, "feet")
  20473. },
  20474. {
  20475. name: "Macro",
  20476. height: math.unit(100, "feet")
  20477. },
  20478. {
  20479. name: "Megamacro",
  20480. height: math.unit(400, "feet")
  20481. },
  20482. ]
  20483. ))
  20484. characterMakers.push(() => makeCharacter(
  20485. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20486. {
  20487. front: {
  20488. height: math.unit(6, "feet"),
  20489. weight: math.unit(160, "lb"),
  20490. name: "Front",
  20491. image: {
  20492. source: "./media/characters/marcus/front.svg",
  20493. extra: 734 / 676,
  20494. bottom: 0.03
  20495. }
  20496. },
  20497. },
  20498. [
  20499. {
  20500. name: "Little",
  20501. height: math.unit(6, "feet")
  20502. },
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(110, "feet"),
  20506. default: true
  20507. },
  20508. {
  20509. name: "Macro",
  20510. height: math.unit(250, "feet")
  20511. },
  20512. {
  20513. name: "Megamacro",
  20514. height: math.unit(1000, "feet")
  20515. },
  20516. ]
  20517. ))
  20518. characterMakers.push(() => makeCharacter(
  20519. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20520. {
  20521. front: {
  20522. height: math.unit(7, "feet"),
  20523. weight: math.unit(275, "lb"),
  20524. name: "Front",
  20525. image: {
  20526. source: "./media/characters/claude-delroute/front.svg",
  20527. extra: 902/827,
  20528. bottom: 26/928
  20529. }
  20530. },
  20531. side: {
  20532. height: math.unit(7, "feet"),
  20533. weight: math.unit(275, "lb"),
  20534. name: "Side",
  20535. image: {
  20536. source: "./media/characters/claude-delroute/side.svg",
  20537. extra: 908/853,
  20538. bottom: 16/924
  20539. }
  20540. },
  20541. back: {
  20542. height: math.unit(7, "feet"),
  20543. weight: math.unit(275, "lb"),
  20544. name: "Back",
  20545. image: {
  20546. source: "./media/characters/claude-delroute/back.svg",
  20547. extra: 911/829,
  20548. bottom: 18/929
  20549. }
  20550. },
  20551. maw: {
  20552. height: math.unit(0.6407, "meters"),
  20553. name: "Maw",
  20554. image: {
  20555. source: "./media/characters/claude-delroute/maw.svg"
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(7, "feet"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Lorge",
  20567. height: math.unit(20, "feet")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(8 + 4 / 12, "feet"),
  20576. weight: math.unit(600, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/dragonien/front.svg",
  20580. extra: 100 / 94,
  20581. bottom: 3.3 / 103.3445
  20582. }
  20583. },
  20584. back: {
  20585. height: math.unit(8 + 4 / 12, "feet"),
  20586. weight: math.unit(600, "lb"),
  20587. name: "Back",
  20588. image: {
  20589. source: "./media/characters/dragonien/back.svg",
  20590. extra: 776 / 746,
  20591. bottom: 6.4 / 782.0616
  20592. }
  20593. },
  20594. foot: {
  20595. height: math.unit(1.54, "feet"),
  20596. name: "Foot",
  20597. image: {
  20598. source: "./media/characters/dragonien/foot.svg",
  20599. }
  20600. },
  20601. },
  20602. [
  20603. {
  20604. name: "Normal",
  20605. height: math.unit(8 + 4 / 12, "feet"),
  20606. default: true
  20607. },
  20608. {
  20609. name: "Macro",
  20610. height: math.unit(200, "feet")
  20611. },
  20612. {
  20613. name: "Megamacro",
  20614. height: math.unit(1, "mile")
  20615. },
  20616. {
  20617. name: "Gigamacro",
  20618. height: math.unit(1000, "miles")
  20619. },
  20620. ]
  20621. ))
  20622. characterMakers.push(() => makeCharacter(
  20623. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20624. {
  20625. front: {
  20626. height: math.unit(5 + 2 / 12, "feet"),
  20627. weight: math.unit(110, "lb"),
  20628. name: "Front",
  20629. image: {
  20630. source: "./media/characters/desta/front.svg",
  20631. extra: 767 / 726,
  20632. bottom: 11.7 / 779
  20633. }
  20634. },
  20635. back: {
  20636. height: math.unit(5 + 2 / 12, "feet"),
  20637. weight: math.unit(110, "lb"),
  20638. name: "Back",
  20639. image: {
  20640. source: "./media/characters/desta/back.svg",
  20641. extra: 777 / 728,
  20642. bottom: 6 / 784
  20643. }
  20644. },
  20645. frontAlt: {
  20646. height: math.unit(5 + 2 / 12, "feet"),
  20647. weight: math.unit(110, "lb"),
  20648. name: "Front",
  20649. image: {
  20650. source: "./media/characters/desta/front-alt.svg",
  20651. extra: 1482 / 1417
  20652. }
  20653. },
  20654. side: {
  20655. height: math.unit(5 + 2 / 12, "feet"),
  20656. weight: math.unit(110, "lb"),
  20657. name: "Side",
  20658. image: {
  20659. source: "./media/characters/desta/side.svg",
  20660. extra: 2579 / 2491,
  20661. bottom: 0.053
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Micro",
  20668. height: math.unit(6, "inches")
  20669. },
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(5 + 2 / 12, "feet"),
  20673. default: true
  20674. },
  20675. {
  20676. name: "Macro",
  20677. height: math.unit(62, "feet")
  20678. },
  20679. {
  20680. name: "Megamacro",
  20681. height: math.unit(1800, "feet")
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(10, "feet"),
  20690. weight: math.unit(700, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/storm-alystar/front.svg",
  20694. extra: 2112 / 1898,
  20695. bottom: 0.034
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Micro",
  20702. height: math.unit(3.5, "inches")
  20703. },
  20704. {
  20705. name: "Normal",
  20706. height: math.unit(10, "feet"),
  20707. default: true
  20708. },
  20709. {
  20710. name: "Macro",
  20711. height: math.unit(400, "feet")
  20712. },
  20713. {
  20714. name: "Deific",
  20715. height: math.unit(60, "miles")
  20716. },
  20717. ]
  20718. ))
  20719. characterMakers.push(() => makeCharacter(
  20720. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20721. {
  20722. front: {
  20723. height: math.unit(2.35, "meters"),
  20724. weight: math.unit(119, "kg"),
  20725. name: "Front",
  20726. image: {
  20727. source: "./media/characters/ilia/front.svg",
  20728. extra: 1285 / 1255,
  20729. bottom: 0.06
  20730. }
  20731. },
  20732. },
  20733. [
  20734. {
  20735. name: "Normal",
  20736. height: math.unit(2.35, "meters")
  20737. },
  20738. {
  20739. name: "Macro",
  20740. height: math.unit(140, "meters"),
  20741. default: true
  20742. },
  20743. {
  20744. name: "Megamacro",
  20745. height: math.unit(100, "miles")
  20746. },
  20747. ]
  20748. ))
  20749. characterMakers.push(() => makeCharacter(
  20750. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20751. {
  20752. front: {
  20753. height: math.unit(6 + 5 / 12, "feet"),
  20754. weight: math.unit(190, "lb"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/kingdead/front.svg",
  20758. extra: 1228 / 1177
  20759. }
  20760. },
  20761. },
  20762. [
  20763. {
  20764. name: "Micro",
  20765. height: math.unit(7, "inches")
  20766. },
  20767. {
  20768. name: "Normal",
  20769. height: math.unit(6 + 5 / 12, "feet")
  20770. },
  20771. {
  20772. name: "Macro",
  20773. height: math.unit(150, "feet"),
  20774. default: true
  20775. },
  20776. {
  20777. name: "Megamacro",
  20778. height: math.unit(200, "miles")
  20779. },
  20780. ]
  20781. ))
  20782. characterMakers.push(() => makeCharacter(
  20783. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20784. {
  20785. front: {
  20786. height: math.unit(8, "feet"),
  20787. weight: math.unit(600, "lb"),
  20788. name: "Front",
  20789. image: {
  20790. source: "./media/characters/kyrehx/front.svg",
  20791. extra: 1195 / 1095,
  20792. bottom: 0.034
  20793. }
  20794. },
  20795. },
  20796. [
  20797. {
  20798. name: "Micro",
  20799. height: math.unit(2, "inches")
  20800. },
  20801. {
  20802. name: "Normal",
  20803. height: math.unit(8, "feet"),
  20804. default: true
  20805. },
  20806. {
  20807. name: "Macro",
  20808. height: math.unit(255, "feet")
  20809. },
  20810. ]
  20811. ))
  20812. characterMakers.push(() => makeCharacter(
  20813. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20814. {
  20815. front: {
  20816. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20817. weight: math.unit(184, "lb"),
  20818. name: "Front",
  20819. image: {
  20820. source: "./media/characters/xang/front.svg",
  20821. extra: 845 / 755
  20822. }
  20823. },
  20824. },
  20825. [
  20826. {
  20827. name: "Normal",
  20828. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20829. default: true
  20830. },
  20831. {
  20832. name: "Macro",
  20833. height: math.unit(0.935 * 146, "feet")
  20834. },
  20835. {
  20836. name: "Megamacro",
  20837. height: math.unit(0.935 * 3, "miles")
  20838. },
  20839. ]
  20840. ))
  20841. characterMakers.push(() => makeCharacter(
  20842. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20843. {
  20844. frontDressed: {
  20845. height: math.unit(5 + 7 / 12, "feet"),
  20846. weight: math.unit(140, "lb"),
  20847. name: "Front (Dressed)",
  20848. image: {
  20849. source: "./media/characters/doc-weardno/front-dressed.svg",
  20850. extra: 263 / 234
  20851. }
  20852. },
  20853. backDressed: {
  20854. height: math.unit(5 + 7 / 12, "feet"),
  20855. weight: math.unit(140, "lb"),
  20856. name: "Back (Dressed)",
  20857. image: {
  20858. source: "./media/characters/doc-weardno/back-dressed.svg",
  20859. extra: 266 / 238
  20860. }
  20861. },
  20862. front: {
  20863. height: math.unit(5 + 7 / 12, "feet"),
  20864. weight: math.unit(140, "lb"),
  20865. name: "Front",
  20866. image: {
  20867. source: "./media/characters/doc-weardno/front.svg",
  20868. extra: 254 / 233
  20869. }
  20870. },
  20871. },
  20872. [
  20873. {
  20874. name: "Micro",
  20875. height: math.unit(3, "inches")
  20876. },
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(5 + 7 / 12, "feet"),
  20880. default: true
  20881. },
  20882. {
  20883. name: "Macro",
  20884. height: math.unit(25, "feet")
  20885. },
  20886. {
  20887. name: "Megamacro",
  20888. height: math.unit(2, "miles")
  20889. },
  20890. ]
  20891. ))
  20892. characterMakers.push(() => makeCharacter(
  20893. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20894. {
  20895. front: {
  20896. height: math.unit(6 + 2 / 12, "feet"),
  20897. weight: math.unit(153, "lb"),
  20898. name: "Front",
  20899. image: {
  20900. source: "./media/characters/seth-whilst/front.svg",
  20901. bottom: 0.07
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Micro",
  20908. height: math.unit(5, "inches")
  20909. },
  20910. {
  20911. name: "Normal",
  20912. height: math.unit(6 + 2 / 12, "feet"),
  20913. default: true
  20914. },
  20915. ]
  20916. ))
  20917. characterMakers.push(() => makeCharacter(
  20918. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20919. {
  20920. front: {
  20921. height: math.unit(3, "inches"),
  20922. weight: math.unit(8, "grams"),
  20923. name: "Front",
  20924. image: {
  20925. source: "./media/characters/pocket-jabari/front.svg",
  20926. extra: 1024 / 974,
  20927. bottom: 0.039
  20928. }
  20929. },
  20930. },
  20931. [
  20932. {
  20933. name: "Minimicro",
  20934. height: math.unit(8, "mm")
  20935. },
  20936. {
  20937. name: "Micro",
  20938. height: math.unit(3, "inches"),
  20939. default: true
  20940. },
  20941. {
  20942. name: "Normal",
  20943. height: math.unit(3, "feet")
  20944. },
  20945. ]
  20946. ))
  20947. characterMakers.push(() => makeCharacter(
  20948. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20949. {
  20950. frontDressed: {
  20951. height: math.unit(15, "feet"),
  20952. weight: math.unit(3280, "lb"),
  20953. name: "Front (Dressed)",
  20954. image: {
  20955. source: "./media/characters/sapphy/front-dressed.svg",
  20956. extra: 1951/1654,
  20957. bottom: 194/2145
  20958. },
  20959. form: "anthro",
  20960. default: true
  20961. },
  20962. backDressed: {
  20963. height: math.unit(15, "feet"),
  20964. weight: math.unit(3280, "lb"),
  20965. name: "Back (Dressed)",
  20966. image: {
  20967. source: "./media/characters/sapphy/back-dressed.svg",
  20968. extra: 2058/1918,
  20969. bottom: 125/2183
  20970. },
  20971. form: "anthro"
  20972. },
  20973. frontNude: {
  20974. height: math.unit(15, "feet"),
  20975. weight: math.unit(3280, "lb"),
  20976. name: "Front (Nude)",
  20977. image: {
  20978. source: "./media/characters/sapphy/front-nude.svg",
  20979. extra: 1951/1654,
  20980. bottom: 194/2145
  20981. },
  20982. form: "anthro"
  20983. },
  20984. backNude: {
  20985. height: math.unit(15, "feet"),
  20986. weight: math.unit(3280, "lb"),
  20987. name: "Back (Nude)",
  20988. image: {
  20989. source: "./media/characters/sapphy/back-nude.svg",
  20990. extra: 2058/1918,
  20991. bottom: 125/2183
  20992. },
  20993. form: "anthro"
  20994. },
  20995. full: {
  20996. height: math.unit(15, "feet"),
  20997. weight: math.unit(3280, "lb"),
  20998. name: "Full",
  20999. image: {
  21000. source: "./media/characters/sapphy/full.svg",
  21001. extra: 1396/1317,
  21002. bottom: 44/1440
  21003. },
  21004. form: "anthro"
  21005. },
  21006. dick: {
  21007. height: math.unit(3.8, "feet"),
  21008. name: "Dick",
  21009. image: {
  21010. source: "./media/characters/sapphy/dick.svg"
  21011. },
  21012. form: "anthro"
  21013. },
  21014. feral: {
  21015. height: math.unit(35, "feet"),
  21016. weight: math.unit(160, "tons"),
  21017. name: "Feral",
  21018. image: {
  21019. source: "./media/characters/sapphy/feral.svg",
  21020. extra: 1050/573,
  21021. bottom: 60/1110
  21022. },
  21023. form: "feral",
  21024. default: true
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(15, "feet"),
  21031. form: "anthro"
  21032. },
  21033. {
  21034. name: "Casual Macro",
  21035. height: math.unit(120, "feet"),
  21036. form: "anthro"
  21037. },
  21038. {
  21039. name: "Macro",
  21040. height: math.unit(2150, "feet"),
  21041. default: true,
  21042. form: "anthro"
  21043. },
  21044. {
  21045. name: "Megamacro",
  21046. height: math.unit(8, "miles"),
  21047. form: "anthro"
  21048. },
  21049. {
  21050. name: "Galaxy Mom",
  21051. height: math.unit(6, "megalightyears"),
  21052. form: "anthro"
  21053. },
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(35, "feet"),
  21057. form: "feral",
  21058. default: true
  21059. },
  21060. {
  21061. name: "Macro",
  21062. height: math.unit(300, "feet"),
  21063. form: "feral"
  21064. },
  21065. {
  21066. name: "Galaxy Mom",
  21067. height: math.unit(10, "megalightyears"),
  21068. form: "feral"
  21069. },
  21070. ],
  21071. {
  21072. "anthro": {
  21073. name: "Anthro",
  21074. default: true
  21075. },
  21076. "feral": {
  21077. name: "Feral"
  21078. }
  21079. }
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21083. {
  21084. hyenaFront: {
  21085. height: math.unit(6, "feet"),
  21086. weight: math.unit(190, "lb"),
  21087. name: "Front",
  21088. image: {
  21089. source: "./media/characters/kiro/hyena-front.svg",
  21090. extra: 927/839,
  21091. bottom: 91/1018
  21092. },
  21093. form: "hyena",
  21094. default: true
  21095. },
  21096. front: {
  21097. height: math.unit(6, "feet"),
  21098. weight: math.unit(170, "lb"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/kiro/front.svg",
  21102. extra: 1064 / 1012,
  21103. bottom: 0.052
  21104. },
  21105. form: "folf",
  21106. default: true
  21107. },
  21108. },
  21109. [
  21110. {
  21111. name: "Micro",
  21112. height: math.unit(6, "inches"),
  21113. form: "folf"
  21114. },
  21115. {
  21116. name: "Normal",
  21117. height: math.unit(6, "feet"),
  21118. form: "folf",
  21119. default: true
  21120. },
  21121. {
  21122. name: "Macro",
  21123. height: math.unit(72, "feet"),
  21124. form: "folf"
  21125. },
  21126. {
  21127. name: "Micro",
  21128. height: math.unit(6, "inches"),
  21129. form: "hyena"
  21130. },
  21131. {
  21132. name: "Normal",
  21133. height: math.unit(6, "feet"),
  21134. form: "hyena",
  21135. default: true
  21136. },
  21137. {
  21138. name: "Macro",
  21139. height: math.unit(72, "feet"),
  21140. form: "hyena"
  21141. },
  21142. ],
  21143. {
  21144. "hyena": {
  21145. name: "Hyena",
  21146. default: true
  21147. },
  21148. "folf": {
  21149. name: "Folf",
  21150. },
  21151. }
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(5 + 9 / 12, "feet"),
  21158. weight: math.unit(175, "lb"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/irishfox/front.svg",
  21162. extra: 1912 / 1680,
  21163. bottom: 0.02
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Nano",
  21170. height: math.unit(1, "mm")
  21171. },
  21172. {
  21173. name: "Micro",
  21174. height: math.unit(2, "inches")
  21175. },
  21176. {
  21177. name: "Normal",
  21178. height: math.unit(5 + 9 / 12, "feet"),
  21179. default: true
  21180. },
  21181. {
  21182. name: "Macro",
  21183. height: math.unit(45, "feet")
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(6 + 1 / 12, "feet"),
  21192. weight: math.unit(75, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/aronai-sieyes/front.svg",
  21196. extra: 1532/1450,
  21197. bottom: 42/1574
  21198. }
  21199. },
  21200. side: {
  21201. height: math.unit(6 + 1 / 12, "feet"),
  21202. weight: math.unit(75, "lb"),
  21203. name: "Side",
  21204. image: {
  21205. source: "./media/characters/aronai-sieyes/side.svg",
  21206. extra: 1422/1365,
  21207. bottom: 148/1570
  21208. }
  21209. },
  21210. back: {
  21211. height: math.unit(6 + 1 / 12, "feet"),
  21212. weight: math.unit(75, "lb"),
  21213. name: "Back",
  21214. image: {
  21215. source: "./media/characters/aronai-sieyes/back.svg",
  21216. extra: 1526/1464,
  21217. bottom: 51/1577
  21218. }
  21219. },
  21220. dressed: {
  21221. height: math.unit(6 + 1 / 12, "feet"),
  21222. weight: math.unit(75, "lb"),
  21223. name: "Dressed",
  21224. image: {
  21225. source: "./media/characters/aronai-sieyes/dressed.svg",
  21226. extra: 1559/1483,
  21227. bottom: 39/1598
  21228. }
  21229. },
  21230. slit: {
  21231. height: math.unit(1.3, "feet"),
  21232. name: "Slit",
  21233. image: {
  21234. source: "./media/characters/aronai-sieyes/slit.svg"
  21235. }
  21236. },
  21237. slitSpread: {
  21238. height: math.unit(0.9, "feet"),
  21239. name: "Slit (Spread)",
  21240. image: {
  21241. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21242. }
  21243. },
  21244. rump: {
  21245. height: math.unit(1.3, "feet"),
  21246. name: "Rump",
  21247. image: {
  21248. source: "./media/characters/aronai-sieyes/rump.svg"
  21249. }
  21250. },
  21251. maw: {
  21252. height: math.unit(1.25, "feet"),
  21253. name: "Maw",
  21254. image: {
  21255. source: "./media/characters/aronai-sieyes/maw.svg"
  21256. }
  21257. },
  21258. feral: {
  21259. height: math.unit(18, "feet"),
  21260. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21261. name: "Feral",
  21262. image: {
  21263. source: "./media/characters/aronai-sieyes/feral.svg",
  21264. extra: 1530 / 1240,
  21265. bottom: 0.035
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Micro",
  21272. height: math.unit(2, "inches")
  21273. },
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(6 + 1 / 12, "feet"),
  21277. default: true
  21278. }
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(12, "feet"),
  21286. weight: math.unit(410, "kg"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/xuna/front.svg",
  21290. extra: 2184 / 1980
  21291. }
  21292. },
  21293. side: {
  21294. height: math.unit(12, "feet"),
  21295. weight: math.unit(410, "kg"),
  21296. name: "Side",
  21297. image: {
  21298. source: "./media/characters/xuna/side.svg",
  21299. extra: 2184 / 1980
  21300. }
  21301. },
  21302. back: {
  21303. height: math.unit(12, "feet"),
  21304. weight: math.unit(410, "kg"),
  21305. name: "Back",
  21306. image: {
  21307. source: "./media/characters/xuna/back.svg",
  21308. extra: 2184 / 1980
  21309. }
  21310. },
  21311. },
  21312. [
  21313. {
  21314. name: "Nano glow",
  21315. height: math.unit(10, "nm")
  21316. },
  21317. {
  21318. name: "Micro floof",
  21319. height: math.unit(0.3, "m")
  21320. },
  21321. {
  21322. name: "Huggable softy boi",
  21323. height: math.unit(3.6576, "m"),
  21324. default: true
  21325. },
  21326. {
  21327. name: "Admirable floof",
  21328. height: math.unit(80, "meters")
  21329. },
  21330. {
  21331. name: "Gentle macro",
  21332. height: math.unit(300, "meters")
  21333. },
  21334. {
  21335. name: "Very careful floof",
  21336. height: math.unit(3200, "meters")
  21337. },
  21338. {
  21339. name: "The mega floof",
  21340. height: math.unit(36000, "meters")
  21341. },
  21342. {
  21343. name: "Giga-fur-Wicker",
  21344. height: math.unit(4800000, "meters")
  21345. },
  21346. {
  21347. name: "Licky world",
  21348. height: math.unit(20000000, "meters")
  21349. },
  21350. {
  21351. name: "Floofy cyan sun",
  21352. height: math.unit(1500000000, "meters")
  21353. },
  21354. {
  21355. name: "Milky Wicker",
  21356. height: math.unit(1000000000000000000000, "meters")
  21357. },
  21358. {
  21359. name: "The observing Wicker",
  21360. height: math.unit(999999999999999999999999999, "meters")
  21361. },
  21362. ]
  21363. ))
  21364. characterMakers.push(() => makeCharacter(
  21365. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21366. {
  21367. front: {
  21368. height: math.unit(5 + 9 / 12, "feet"),
  21369. weight: math.unit(150, "lb"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/arokha-sieyes/front.svg",
  21373. extra: 1425 / 1284,
  21374. bottom: 0.05
  21375. }
  21376. },
  21377. },
  21378. [
  21379. {
  21380. name: "Normal",
  21381. height: math.unit(5 + 9 / 12, "feet")
  21382. },
  21383. {
  21384. name: "Macro",
  21385. height: math.unit(30, "meters"),
  21386. default: true
  21387. },
  21388. ]
  21389. ))
  21390. characterMakers.push(() => makeCharacter(
  21391. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21392. {
  21393. front: {
  21394. height: math.unit(6, "feet"),
  21395. weight: math.unit(180, "lb"),
  21396. name: "Front",
  21397. image: {
  21398. source: "./media/characters/arokh-sieyes/front.svg",
  21399. extra: 1830 / 1769,
  21400. bottom: 0.01
  21401. }
  21402. },
  21403. },
  21404. [
  21405. {
  21406. name: "Normal",
  21407. height: math.unit(6, "feet")
  21408. },
  21409. {
  21410. name: "Macro",
  21411. height: math.unit(30, "meters"),
  21412. default: true
  21413. },
  21414. ]
  21415. ))
  21416. characterMakers.push(() => makeCharacter(
  21417. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21418. {
  21419. side: {
  21420. height: math.unit(13 + 1 / 12, "feet"),
  21421. weight: math.unit(8.5, "tonnes"),
  21422. preyCapacity: math.unit(36, "people"),
  21423. name: "Side",
  21424. image: {
  21425. source: "./media/characters/goldeneye/side.svg",
  21426. extra: 1139/741,
  21427. bottom: 98/1237
  21428. }
  21429. },
  21430. front: {
  21431. height: math.unit(5.1, "feet"),
  21432. weight: math.unit(8.5, "tonnes"),
  21433. preyCapacity: math.unit(36, "people"),
  21434. name: "Front",
  21435. image: {
  21436. source: "./media/characters/goldeneye/front.svg",
  21437. extra: 635/365,
  21438. bottom: 598/1233
  21439. }
  21440. },
  21441. maw: {
  21442. height: math.unit(6.6, "feet"),
  21443. name: "Maw",
  21444. image: {
  21445. source: "./media/characters/goldeneye/maw.svg"
  21446. }
  21447. },
  21448. headFront: {
  21449. height: math.unit(8, "feet"),
  21450. name: "Head (Front)",
  21451. image: {
  21452. source: "./media/characters/goldeneye/head-front.svg"
  21453. }
  21454. },
  21455. headSide: {
  21456. height: math.unit(6, "feet"),
  21457. name: "Head (Side)",
  21458. image: {
  21459. source: "./media/characters/goldeneye/head-side.svg"
  21460. }
  21461. },
  21462. headBack: {
  21463. height: math.unit(8, "feet"),
  21464. name: "Head (Back)",
  21465. image: {
  21466. source: "./media/characters/goldeneye/head-back.svg"
  21467. }
  21468. },
  21469. paw: {
  21470. height: math.unit(3.4, "feet"),
  21471. name: "Paw",
  21472. image: {
  21473. source: "./media/characters/goldeneye/paw.svg"
  21474. }
  21475. },
  21476. toering: {
  21477. height: math.unit(0.45, "feet"),
  21478. name: "Toering",
  21479. image: {
  21480. source: "./media/characters/goldeneye/toering.svg"
  21481. }
  21482. },
  21483. eyes: {
  21484. height: math.unit(0.5, "feet"),
  21485. name: "Eyes",
  21486. image: {
  21487. source: "./media/characters/goldeneye/eyes.svg"
  21488. }
  21489. },
  21490. },
  21491. [
  21492. {
  21493. name: "Normal",
  21494. height: math.unit(13 + 1 / 12, "feet"),
  21495. default: true
  21496. },
  21497. ]
  21498. ))
  21499. characterMakers.push(() => makeCharacter(
  21500. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21501. {
  21502. front: {
  21503. height: math.unit(6 + 1 / 12, "feet"),
  21504. weight: math.unit(210, "lb"),
  21505. name: "Front",
  21506. image: {
  21507. source: "./media/characters/leonardo-lycheborne/front.svg",
  21508. extra: 776/723,
  21509. bottom: 34/810
  21510. }
  21511. },
  21512. side: {
  21513. height: math.unit(6 + 1 / 12, "feet"),
  21514. weight: math.unit(210, "lb"),
  21515. name: "Side",
  21516. image: {
  21517. source: "./media/characters/leonardo-lycheborne/side.svg",
  21518. extra: 780/728,
  21519. bottom: 12/792
  21520. }
  21521. },
  21522. back: {
  21523. height: math.unit(6 + 1 / 12, "feet"),
  21524. weight: math.unit(210, "lb"),
  21525. name: "Back",
  21526. image: {
  21527. source: "./media/characters/leonardo-lycheborne/back.svg",
  21528. extra: 775/721,
  21529. bottom: 17/792
  21530. }
  21531. },
  21532. hand: {
  21533. height: math.unit(1.08, "feet"),
  21534. name: "Hand",
  21535. image: {
  21536. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21537. }
  21538. },
  21539. foot: {
  21540. height: math.unit(1.32, "feet"),
  21541. name: "Foot",
  21542. image: {
  21543. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21544. }
  21545. },
  21546. maw: {
  21547. height: math.unit(1, "feet"),
  21548. name: "Maw",
  21549. image: {
  21550. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21551. }
  21552. },
  21553. were: {
  21554. height: math.unit(20, "feet"),
  21555. weight: math.unit(7800, "lb"),
  21556. name: "Were",
  21557. image: {
  21558. source: "./media/characters/leonardo-lycheborne/were.svg",
  21559. extra: 1224/1165,
  21560. bottom: 72/1296
  21561. }
  21562. },
  21563. feral: {
  21564. height: math.unit(7.5, "feet"),
  21565. weight: math.unit(600, "lb"),
  21566. name: "Feral",
  21567. image: {
  21568. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21569. extra: 797/702,
  21570. bottom: 139/936
  21571. }
  21572. },
  21573. taur: {
  21574. height: math.unit(11, "feet"),
  21575. weight: math.unit(3300, "lb"),
  21576. name: "Taur",
  21577. image: {
  21578. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21579. extra: 1271/1197,
  21580. bottom: 47/1318
  21581. }
  21582. },
  21583. barghest: {
  21584. height: math.unit(11, "feet"),
  21585. weight: math.unit(1300, "lb"),
  21586. name: "Barghest",
  21587. image: {
  21588. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21589. extra: 1291/1204,
  21590. bottom: 37/1328
  21591. }
  21592. },
  21593. dick: {
  21594. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21595. name: "Dick",
  21596. image: {
  21597. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21598. }
  21599. },
  21600. dickWere: {
  21601. height: math.unit((20) / 3.8, "feet"),
  21602. name: "Dick (Were)",
  21603. image: {
  21604. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21605. }
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(6 + 1 / 12, "feet"),
  21612. default: true
  21613. },
  21614. ]
  21615. ))
  21616. characterMakers.push(() => makeCharacter(
  21617. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21618. {
  21619. front: {
  21620. height: math.unit(10, "feet"),
  21621. weight: math.unit(350, "lb"),
  21622. name: "Front",
  21623. image: {
  21624. source: "./media/characters/jet/front.svg",
  21625. extra: 2050 / 1980,
  21626. bottom: 0.013
  21627. }
  21628. },
  21629. back: {
  21630. height: math.unit(10, "feet"),
  21631. weight: math.unit(350, "lb"),
  21632. name: "Back",
  21633. image: {
  21634. source: "./media/characters/jet/back.svg",
  21635. extra: 2050 / 1980,
  21636. bottom: 0.013
  21637. }
  21638. },
  21639. },
  21640. [
  21641. {
  21642. name: "Micro",
  21643. height: math.unit(6, "inches")
  21644. },
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(10, "feet"),
  21648. default: true
  21649. },
  21650. {
  21651. name: "Macro",
  21652. height: math.unit(100, "feet")
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(15, "feet"),
  21661. weight: math.unit(2800, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/tanarath/front.svg",
  21665. extra: 2392 / 2220,
  21666. bottom: 0.03
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(15, "feet"),
  21671. weight: math.unit(2800, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/tanarath/back.svg",
  21675. extra: 2392 / 2220,
  21676. bottom: 0.03
  21677. }
  21678. },
  21679. },
  21680. [
  21681. {
  21682. name: "Normal",
  21683. height: math.unit(15, "feet"),
  21684. default: true
  21685. },
  21686. ]
  21687. ))
  21688. characterMakers.push(() => makeCharacter(
  21689. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21690. {
  21691. front: {
  21692. height: math.unit(7 + 1 / 12, "feet"),
  21693. weight: math.unit(175, "lb"),
  21694. name: "Front",
  21695. image: {
  21696. source: "./media/characters/patty-cattybatty/front.svg",
  21697. extra: 908 / 874,
  21698. bottom: 0.025
  21699. }
  21700. },
  21701. },
  21702. [
  21703. {
  21704. name: "Micro",
  21705. height: math.unit(1, "inch")
  21706. },
  21707. {
  21708. name: "Normal",
  21709. height: math.unit(7 + 1 / 12, "feet")
  21710. },
  21711. {
  21712. name: "Mini Macro",
  21713. height: math.unit(155, "feet")
  21714. },
  21715. {
  21716. name: "Macro",
  21717. height: math.unit(1077, "feet")
  21718. },
  21719. {
  21720. name: "Mega Macro",
  21721. height: math.unit(47650, "feet"),
  21722. default: true
  21723. },
  21724. {
  21725. name: "Giga Macro",
  21726. height: math.unit(440, "miles")
  21727. },
  21728. {
  21729. name: "Tera Macro",
  21730. height: math.unit(8700, "miles")
  21731. },
  21732. {
  21733. name: "Planetary Macro",
  21734. height: math.unit(32700, "miles")
  21735. },
  21736. {
  21737. name: "Solar Macro",
  21738. height: math.unit(550000, "miles")
  21739. },
  21740. {
  21741. name: "Celestial Macro",
  21742. height: math.unit(2.5, "AU")
  21743. },
  21744. ]
  21745. ))
  21746. characterMakers.push(() => makeCharacter(
  21747. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21748. {
  21749. front: {
  21750. height: math.unit(4 + 5 / 12, "feet"),
  21751. weight: math.unit(90, "lb"),
  21752. name: "Front",
  21753. image: {
  21754. source: "./media/characters/cappu/front.svg",
  21755. extra: 1247 / 1152,
  21756. bottom: 0.012
  21757. }
  21758. },
  21759. },
  21760. [
  21761. {
  21762. name: "Normal",
  21763. height: math.unit(4 + 5 / 12, "feet"),
  21764. default: true
  21765. },
  21766. ]
  21767. ))
  21768. characterMakers.push(() => makeCharacter(
  21769. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21770. {
  21771. frontDressed: {
  21772. height: math.unit(70, "cm"),
  21773. weight: math.unit(6, "kg"),
  21774. name: "Front (Dressed)",
  21775. image: {
  21776. source: "./media/characters/sebi/front-dressed.svg",
  21777. extra: 713.5 / 686.5,
  21778. bottom: 0.003
  21779. }
  21780. },
  21781. front: {
  21782. height: math.unit(70, "cm"),
  21783. weight: math.unit(5, "kg"),
  21784. name: "Front",
  21785. image: {
  21786. source: "./media/characters/sebi/front.svg",
  21787. extra: 713.5 / 686.5,
  21788. bottom: 0.003
  21789. }
  21790. }
  21791. },
  21792. [
  21793. {
  21794. name: "Normal",
  21795. height: math.unit(70, "cm"),
  21796. default: true
  21797. },
  21798. {
  21799. name: "Macro",
  21800. height: math.unit(8, "meters")
  21801. },
  21802. ]
  21803. ))
  21804. characterMakers.push(() => makeCharacter(
  21805. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21806. {
  21807. front: {
  21808. height: math.unit(6, "feet"),
  21809. weight: math.unit(150, "lb"),
  21810. name: "Front",
  21811. image: {
  21812. source: "./media/characters/typhek/front.svg",
  21813. extra: 1948 / 1929,
  21814. bottom: 0.025
  21815. }
  21816. },
  21817. side: {
  21818. height: math.unit(6, "feet"),
  21819. weight: math.unit(150, "lb"),
  21820. name: "Side",
  21821. image: {
  21822. source: "./media/characters/typhek/side.svg",
  21823. extra: 2034 / 2010,
  21824. bottom: 0.003
  21825. }
  21826. },
  21827. back: {
  21828. height: math.unit(6, "feet"),
  21829. weight: math.unit(150, "lb"),
  21830. name: "Back",
  21831. image: {
  21832. source: "./media/characters/typhek/back.svg",
  21833. extra: 2005 / 1978,
  21834. bottom: 0.004
  21835. }
  21836. },
  21837. palm: {
  21838. height: math.unit(1.2, "feet"),
  21839. name: "Palm",
  21840. image: {
  21841. source: "./media/characters/typhek/palm.svg"
  21842. }
  21843. },
  21844. fist: {
  21845. height: math.unit(1.1, "feet"),
  21846. name: "Fist",
  21847. image: {
  21848. source: "./media/characters/typhek/fist.svg"
  21849. }
  21850. },
  21851. foot: {
  21852. height: math.unit(1.57, "feet"),
  21853. name: "Foot",
  21854. image: {
  21855. source: "./media/characters/typhek/foot.svg"
  21856. }
  21857. },
  21858. sole: {
  21859. height: math.unit(2.05, "feet"),
  21860. name: "Sole",
  21861. image: {
  21862. source: "./media/characters/typhek/sole.svg"
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Macro",
  21869. height: math.unit(40, "stories"),
  21870. default: true
  21871. },
  21872. {
  21873. name: "Megamacro",
  21874. height: math.unit(1, "mile")
  21875. },
  21876. {
  21877. name: "Gigamacro",
  21878. height: math.unit(4000, "solarradii")
  21879. },
  21880. {
  21881. name: "Universal",
  21882. height: math.unit(1.1, "universes")
  21883. }
  21884. ]
  21885. ))
  21886. characterMakers.push(() => makeCharacter(
  21887. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21888. {
  21889. side: {
  21890. height: math.unit(5 + 7 / 12, "feet"),
  21891. weight: math.unit(150, "lb"),
  21892. name: "Side",
  21893. image: {
  21894. source: "./media/characters/kassy/side.svg",
  21895. extra: 1280 / 1225,
  21896. bottom: 0.002
  21897. }
  21898. },
  21899. front: {
  21900. height: math.unit(5 + 7 / 12, "feet"),
  21901. weight: math.unit(150, "lb"),
  21902. name: "Front",
  21903. image: {
  21904. source: "./media/characters/kassy/front.svg",
  21905. extra: 1280 / 1225,
  21906. bottom: 0.025
  21907. }
  21908. },
  21909. back: {
  21910. height: math.unit(5 + 7 / 12, "feet"),
  21911. weight: math.unit(150, "lb"),
  21912. name: "Back",
  21913. image: {
  21914. source: "./media/characters/kassy/back.svg",
  21915. extra: 1280 / 1225,
  21916. bottom: 0.002
  21917. }
  21918. },
  21919. foot: {
  21920. height: math.unit(1.266, "feet"),
  21921. name: "Foot",
  21922. image: {
  21923. source: "./media/characters/kassy/foot.svg"
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Normal",
  21930. height: math.unit(5 + 7 / 12, "feet")
  21931. },
  21932. {
  21933. name: "Macro",
  21934. height: math.unit(137, "feet"),
  21935. default: true
  21936. },
  21937. {
  21938. name: "Megamacro",
  21939. height: math.unit(1, "mile")
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(6 + 1 / 12, "feet"),
  21948. weight: math.unit(200, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/neil/front.svg",
  21952. extra: 1326 / 1250,
  21953. bottom: 0.023
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(6 + 1 / 12, "feet"),
  21961. default: true
  21962. },
  21963. {
  21964. name: "Macro",
  21965. height: math.unit(200, "feet")
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(5 + 9 / 12, "feet"),
  21974. weight: math.unit(190, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/atticus/front.svg",
  21978. extra: 2934 / 2785,
  21979. bottom: 0.025
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(5 + 9 / 12, "feet"),
  21987. default: true
  21988. },
  21989. {
  21990. name: "Macro",
  21991. height: math.unit(180, "feet")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21997. {
  21998. side: {
  21999. height: math.unit(9, "feet"),
  22000. weight: math.unit(650, "lb"),
  22001. name: "Side",
  22002. image: {
  22003. source: "./media/characters/milo/side.svg",
  22004. extra: 2644 / 2310,
  22005. bottom: 0.032
  22006. }
  22007. },
  22008. },
  22009. [
  22010. {
  22011. name: "Normal",
  22012. height: math.unit(9, "feet"),
  22013. default: true
  22014. },
  22015. {
  22016. name: "Macro",
  22017. height: math.unit(300, "feet")
  22018. },
  22019. ]
  22020. ))
  22021. characterMakers.push(() => makeCharacter(
  22022. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  22023. {
  22024. side: {
  22025. height: math.unit(8, "meters"),
  22026. weight: math.unit(90000, "kg"),
  22027. name: "Side",
  22028. image: {
  22029. source: "./media/characters/ijzer/side.svg",
  22030. extra: 2756 / 1600,
  22031. bottom: 0.01
  22032. }
  22033. },
  22034. },
  22035. [
  22036. {
  22037. name: "Small",
  22038. height: math.unit(3, "meters")
  22039. },
  22040. {
  22041. name: "Normal",
  22042. height: math.unit(8, "meters"),
  22043. default: true
  22044. },
  22045. {
  22046. name: "Normal+",
  22047. height: math.unit(10, "meters")
  22048. },
  22049. {
  22050. name: "Bigger",
  22051. height: math.unit(24, "meters")
  22052. },
  22053. {
  22054. name: "Huge",
  22055. height: math.unit(80, "meters")
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  22061. {
  22062. front: {
  22063. height: math.unit(6 + 2 / 12, "feet"),
  22064. weight: math.unit(153, "lb"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/luca-cervicum/front.svg",
  22068. extra: 370 / 327,
  22069. bottom: 0.015
  22070. }
  22071. },
  22072. back: {
  22073. height: math.unit(6 + 2 / 12, "feet"),
  22074. weight: math.unit(153, "lb"),
  22075. name: "Back",
  22076. image: {
  22077. source: "./media/characters/luca-cervicum/back.svg",
  22078. extra: 367 / 333,
  22079. bottom: 0.005
  22080. }
  22081. },
  22082. frontGear: {
  22083. height: math.unit(6 + 2 / 12, "feet"),
  22084. weight: math.unit(173, "lb"),
  22085. name: "Front (Gear)",
  22086. image: {
  22087. source: "./media/characters/luca-cervicum/front-gear.svg",
  22088. extra: 377 / 333,
  22089. bottom: 0.006
  22090. }
  22091. },
  22092. },
  22093. [
  22094. {
  22095. name: "Normal",
  22096. height: math.unit(6 + 2 / 12, "feet"),
  22097. default: true
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(6 + 1 / 12, "feet"),
  22106. weight: math.unit(304, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/oliver/front.svg",
  22110. extra: 157 / 143,
  22111. bottom: 0.08
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Normal",
  22118. height: math.unit(6 + 1 / 12, "feet"),
  22119. default: true
  22120. },
  22121. ]
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 7 / 12, "feet"),
  22128. weight: math.unit(140, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/shane/front.svg",
  22132. extra: 304 / 289,
  22133. bottom: 0.005
  22134. }
  22135. },
  22136. },
  22137. [
  22138. {
  22139. name: "Normal",
  22140. height: math.unit(5 + 7 / 12, "feet"),
  22141. default: true
  22142. },
  22143. ]
  22144. ))
  22145. characterMakers.push(() => makeCharacter(
  22146. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22147. {
  22148. front: {
  22149. height: math.unit(5 + 9 / 12, "feet"),
  22150. weight: math.unit(178, "lb"),
  22151. name: "Front",
  22152. image: {
  22153. source: "./media/characters/shin/front.svg",
  22154. extra: 159 / 151,
  22155. bottom: 0.015
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 9 / 12, "feet"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(5 + 10 / 12, "feet"),
  22172. weight: math.unit(168, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/xerxes/front.svg",
  22176. extra: 282 / 260,
  22177. bottom: 0.045
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(5 + 10 / 12, "feet"),
  22185. default: true
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(6 + 7 / 12, "feet"),
  22194. weight: math.unit(208, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/chaska/front.svg",
  22198. extra: 332 / 319,
  22199. bottom: 0.015
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(6 + 7 / 12, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22213. {
  22214. front: {
  22215. height: math.unit(5 + 8 / 12, "feet"),
  22216. weight: math.unit(208, "lb"),
  22217. name: "Front",
  22218. image: {
  22219. source: "./media/characters/enuk/front.svg",
  22220. extra: 437 / 406,
  22221. bottom: 0.02
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Normal",
  22228. height: math.unit(5 + 8 / 12, "feet"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(5 + 10 / 12, "feet"),
  22238. weight: math.unit(252, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/bruun/front.svg",
  22242. extra: 197 / 187,
  22243. bottom: 0.012
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(5 + 10 / 12, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(6 + 10 / 12, "feet"),
  22260. weight: math.unit(255, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/alexeev/front.svg",
  22264. extra: 213 / 200,
  22265. bottom: 0.05
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(6 + 10 / 12, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22279. {
  22280. front: {
  22281. height: math.unit(2 + 8 / 12, "feet"),
  22282. weight: math.unit(22, "lb"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/evelyn/front.svg",
  22286. extra: 208 / 180
  22287. }
  22288. },
  22289. },
  22290. [
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(2 + 8 / 12, "feet"),
  22294. default: true
  22295. },
  22296. ]
  22297. ))
  22298. characterMakers.push(() => makeCharacter(
  22299. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22300. {
  22301. front: {
  22302. height: math.unit(5 + 9 / 12, "feet"),
  22303. weight: math.unit(139, "lb"),
  22304. name: "Front",
  22305. image: {
  22306. source: "./media/characters/inca/front.svg",
  22307. extra: 294 / 291,
  22308. bottom: 0.03
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Normal",
  22315. height: math.unit(5 + 9 / 12, "feet"),
  22316. default: true
  22317. },
  22318. ]
  22319. ))
  22320. characterMakers.push(() => makeCharacter(
  22321. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22322. {
  22323. front: {
  22324. height: math.unit(6 + 3 / 12, "feet"),
  22325. weight: math.unit(185, "lb"),
  22326. name: "Front",
  22327. image: {
  22328. source: "./media/characters/mera/front.svg",
  22329. extra: 291 / 277,
  22330. bottom: 0.03
  22331. }
  22332. },
  22333. },
  22334. [
  22335. {
  22336. name: "Normal",
  22337. height: math.unit(6 + 3 / 12, "feet"),
  22338. default: true
  22339. },
  22340. ]
  22341. ))
  22342. characterMakers.push(() => makeCharacter(
  22343. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22344. {
  22345. front: {
  22346. height: math.unit(6 + 7 / 12, "feet"),
  22347. weight: math.unit(160, "lb"),
  22348. name: "Front",
  22349. image: {
  22350. source: "./media/characters/ceres/front.svg",
  22351. extra: 1023 / 950,
  22352. bottom: 0.027
  22353. }
  22354. },
  22355. back: {
  22356. height: math.unit(6 + 7 / 12, "feet"),
  22357. weight: math.unit(160, "lb"),
  22358. name: "Back",
  22359. image: {
  22360. source: "./media/characters/ceres/back.svg",
  22361. extra: 1023 / 950
  22362. }
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(6 + 7 / 12, "feet"),
  22369. default: true
  22370. },
  22371. ]
  22372. ))
  22373. characterMakers.push(() => makeCharacter(
  22374. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22375. {
  22376. front: {
  22377. height: math.unit(5 + 10 / 12, "feet"),
  22378. weight: math.unit(150, "lb"),
  22379. name: "Front",
  22380. image: {
  22381. source: "./media/characters/kris/front.svg",
  22382. extra: 885 / 803,
  22383. bottom: 0.03
  22384. }
  22385. },
  22386. },
  22387. [
  22388. {
  22389. name: "Normal",
  22390. height: math.unit(5 + 10 / 12, "feet"),
  22391. default: true
  22392. },
  22393. ]
  22394. ))
  22395. characterMakers.push(() => makeCharacter(
  22396. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22397. {
  22398. dragon_front: {
  22399. height: math.unit(5, "feet"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/taluthus/dragon-front.svg",
  22403. extra: 1203/1098,
  22404. bottom: 46/1249
  22405. },
  22406. form: "dragon",
  22407. default: true
  22408. },
  22409. dragon_maw: {
  22410. height: math.unit(2.35, "feet"),
  22411. name: "Maw",
  22412. image: {
  22413. source: "./media/characters/taluthus/dragon-maw.svg"
  22414. },
  22415. form: "dragon",
  22416. },
  22417. kitsune_front: {
  22418. height: math.unit(7, "feet"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/taluthus/kitsune-front.svg",
  22422. extra: 900/841,
  22423. bottom: 65/965
  22424. },
  22425. form: "kitsune",
  22426. default: true
  22427. },
  22428. },
  22429. [
  22430. {
  22431. name: "Normal",
  22432. height: math.unit(5, "feet"),
  22433. form: "dragon",
  22434. default: true,
  22435. },
  22436. {
  22437. name: "Normal",
  22438. height: math.unit(7, "feet"),
  22439. form: "kitsune",
  22440. default: true
  22441. },
  22442. {
  22443. name: "Macro",
  22444. height: math.unit(300, "feet"),
  22445. allForms: true
  22446. },
  22447. ],
  22448. {
  22449. "dragon": {
  22450. name: "Dragon",
  22451. default: true
  22452. },
  22453. "kitsune": {
  22454. name: "Kitsune",
  22455. },
  22456. }
  22457. ))
  22458. characterMakers.push(() => makeCharacter(
  22459. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22460. {
  22461. front: {
  22462. height: math.unit(5 + 9 / 12, "feet"),
  22463. weight: math.unit(145, "lb"),
  22464. name: "Front",
  22465. image: {
  22466. source: "./media/characters/dawn/front.svg",
  22467. extra: 2094 / 2016,
  22468. bottom: 0.025
  22469. }
  22470. },
  22471. back: {
  22472. height: math.unit(5 + 9 / 12, "feet"),
  22473. weight: math.unit(160, "lb"),
  22474. name: "Back",
  22475. image: {
  22476. source: "./media/characters/dawn/back.svg",
  22477. extra: 2112 / 2080,
  22478. bottom: 0.005
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Normal",
  22485. height: math.unit(6 + 7 / 12, "feet"),
  22486. default: true
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22492. {
  22493. anthro: {
  22494. height: math.unit(8 + 3 / 12, "feet"),
  22495. weight: math.unit(450, "lb"),
  22496. name: "Anthro",
  22497. image: {
  22498. source: "./media/characters/arador/anthro.svg",
  22499. extra: 1835 / 1718,
  22500. bottom: 0.025
  22501. }
  22502. },
  22503. feral: {
  22504. height: math.unit(4, "feet"),
  22505. weight: math.unit(200, "lb"),
  22506. name: "Feral",
  22507. image: {
  22508. source: "./media/characters/arador/feral.svg",
  22509. extra: 1683 / 1514,
  22510. bottom: 0.07
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Normal",
  22517. height: math.unit(8 + 3 / 12, "feet")
  22518. },
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(82.5, "feet"),
  22522. default: true
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22528. {
  22529. front: {
  22530. height: math.unit(5 + 10 / 12, "feet"),
  22531. weight: math.unit(125, "lb"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/dharsi/front.svg",
  22535. extra: 716 / 630,
  22536. bottom: 0.035
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Nano",
  22543. height: math.unit(100, "nm")
  22544. },
  22545. {
  22546. name: "Micro",
  22547. height: math.unit(2, "inches")
  22548. },
  22549. {
  22550. name: "Normal",
  22551. height: math.unit(5 + 10 / 12, "feet"),
  22552. default: true
  22553. },
  22554. {
  22555. name: "Macro",
  22556. height: math.unit(1000, "feet")
  22557. },
  22558. {
  22559. name: "Megamacro",
  22560. height: math.unit(10, "miles")
  22561. },
  22562. {
  22563. name: "Gigamacro",
  22564. height: math.unit(3000, "miles")
  22565. },
  22566. {
  22567. name: "Teramacro",
  22568. height: math.unit(500000, "miles")
  22569. },
  22570. {
  22571. name: "Teramacro+",
  22572. height: math.unit(30, "galaxies")
  22573. },
  22574. ]
  22575. ))
  22576. characterMakers.push(() => makeCharacter(
  22577. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22578. {
  22579. front: {
  22580. height: math.unit(6, "feet"),
  22581. weight: math.unit(150, "lb"),
  22582. name: "Front",
  22583. image: {
  22584. source: "./media/characters/deathy/front.svg",
  22585. extra: 1552 / 1463,
  22586. bottom: 0.025
  22587. }
  22588. },
  22589. side: {
  22590. height: math.unit(6, "feet"),
  22591. weight: math.unit(150, "lb"),
  22592. name: "Side",
  22593. image: {
  22594. source: "./media/characters/deathy/side.svg",
  22595. extra: 1604 / 1455,
  22596. bottom: 0.025
  22597. }
  22598. },
  22599. back: {
  22600. height: math.unit(6, "feet"),
  22601. weight: math.unit(150, "lb"),
  22602. name: "Back",
  22603. image: {
  22604. source: "./media/characters/deathy/back.svg",
  22605. extra: 1580 / 1463,
  22606. bottom: 0.005
  22607. }
  22608. },
  22609. },
  22610. [
  22611. {
  22612. name: "Micro",
  22613. height: math.unit(5, "millimeters")
  22614. },
  22615. {
  22616. name: "Normal",
  22617. height: math.unit(6 + 5 / 12, "feet"),
  22618. default: true
  22619. },
  22620. ]
  22621. ))
  22622. characterMakers.push(() => makeCharacter(
  22623. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22624. {
  22625. front: {
  22626. height: math.unit(16, "feet"),
  22627. weight: math.unit(4000, "lb"),
  22628. name: "Front",
  22629. image: {
  22630. source: "./media/characters/juniper/front.svg",
  22631. bottom: 0.04
  22632. }
  22633. },
  22634. },
  22635. [
  22636. {
  22637. name: "Normal",
  22638. height: math.unit(16, "feet"),
  22639. default: true
  22640. },
  22641. ]
  22642. ))
  22643. characterMakers.push(() => makeCharacter(
  22644. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22645. {
  22646. front: {
  22647. height: math.unit(6, "feet"),
  22648. weight: math.unit(150, "lb"),
  22649. name: "Front",
  22650. image: {
  22651. source: "./media/characters/hipster/front.svg",
  22652. extra: 1312 / 1209,
  22653. bottom: 0.025
  22654. }
  22655. },
  22656. back: {
  22657. height: math.unit(6, "feet"),
  22658. weight: math.unit(150, "lb"),
  22659. name: "Back",
  22660. image: {
  22661. source: "./media/characters/hipster/back.svg",
  22662. extra: 1281 / 1196,
  22663. bottom: 0.01
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Micro",
  22670. height: math.unit(1, "mm")
  22671. },
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(4, "inches"),
  22675. default: true
  22676. },
  22677. {
  22678. name: "Macro",
  22679. height: math.unit(500, "feet")
  22680. },
  22681. {
  22682. name: "Megamacro",
  22683. height: math.unit(1000, "miles")
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(6, "feet"),
  22692. weight: math.unit(150, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/tendirmuldr/front.svg",
  22696. extra: 1878 / 1772,
  22697. bottom: 0.015
  22698. }
  22699. },
  22700. },
  22701. [
  22702. {
  22703. name: "Megamacro",
  22704. height: math.unit(1500, "miles"),
  22705. default: true
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22711. {
  22712. front: {
  22713. height: math.unit(14, "feet"),
  22714. weight: math.unit(12000, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/mort/front.svg",
  22718. extra: 365 / 318,
  22719. bottom: 0.01
  22720. }
  22721. },
  22722. side: {
  22723. height: math.unit(14, "feet"),
  22724. weight: math.unit(12000, "lb"),
  22725. name: "Side",
  22726. image: {
  22727. source: "./media/characters/mort/side.svg",
  22728. extra: 365 / 318,
  22729. bottom: 0.052
  22730. },
  22731. default: true
  22732. },
  22733. back: {
  22734. height: math.unit(14, "feet"),
  22735. weight: math.unit(12000, "lb"),
  22736. name: "Back",
  22737. image: {
  22738. source: "./media/characters/mort/back.svg",
  22739. extra: 371 / 332,
  22740. bottom: 0.18
  22741. }
  22742. },
  22743. },
  22744. [
  22745. {
  22746. name: "Normal",
  22747. height: math.unit(14, "feet"),
  22748. default: true
  22749. },
  22750. ]
  22751. ))
  22752. characterMakers.push(() => makeCharacter(
  22753. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22754. {
  22755. front: {
  22756. height: math.unit(8, "feet"),
  22757. weight: math.unit(1, "ton"),
  22758. name: "Front",
  22759. image: {
  22760. source: "./media/characters/lycoa/front.svg",
  22761. extra: 1836/1728,
  22762. bottom: 81/1917
  22763. }
  22764. },
  22765. back: {
  22766. height: math.unit(8, "feet"),
  22767. weight: math.unit(1, "ton"),
  22768. name: "Back",
  22769. image: {
  22770. source: "./media/characters/lycoa/back.svg",
  22771. extra: 1785/1720,
  22772. bottom: 91/1876
  22773. }
  22774. },
  22775. head: {
  22776. height: math.unit(1.6243, "feet"),
  22777. name: "Head",
  22778. image: {
  22779. source: "./media/characters/lycoa/head.svg",
  22780. extra: 1011/782,
  22781. bottom: 0/1011
  22782. }
  22783. },
  22784. tailmaw: {
  22785. height: math.unit(1.9, "feet"),
  22786. name: "Tailmaw",
  22787. image: {
  22788. source: "./media/characters/lycoa/tailmaw.svg"
  22789. }
  22790. },
  22791. tentacles: {
  22792. height: math.unit(2.1, "feet"),
  22793. name: "Tentacles",
  22794. image: {
  22795. source: "./media/characters/lycoa/tentacles.svg"
  22796. }
  22797. },
  22798. dick: {
  22799. height: math.unit(1.73, "feet"),
  22800. name: "Dick",
  22801. image: {
  22802. source: "./media/characters/lycoa/dick.svg"
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Normal",
  22809. height: math.unit(8, "feet"),
  22810. default: true
  22811. },
  22812. {
  22813. name: "Macro",
  22814. height: math.unit(30, "feet")
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22820. {
  22821. front: {
  22822. height: math.unit(4 + 2 / 12, "feet"),
  22823. weight: math.unit(70, "lb"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/naldara/front.svg",
  22827. extra: 1664/1387,
  22828. bottom: 81/1745
  22829. },
  22830. form: "anthro",
  22831. default: true
  22832. },
  22833. naga: {
  22834. height: math.unit(20, "feet"),
  22835. weight: math.unit(15000, "kg"),
  22836. name: "Front",
  22837. image: {
  22838. source: "./media/characters/naldara/naga.svg",
  22839. extra: 1590/1396,
  22840. bottom: 285/1875
  22841. },
  22842. form: "naga",
  22843. default: true
  22844. },
  22845. },
  22846. [
  22847. {
  22848. name: "Normal",
  22849. height: math.unit(4 + 2 / 12, "feet"),
  22850. form: "anthro",
  22851. default: true
  22852. },
  22853. {
  22854. name: "Normal",
  22855. height: math.unit(20, "feet"),
  22856. form: "naga",
  22857. default: true
  22858. },
  22859. ],
  22860. {
  22861. "anthro": {
  22862. name: "Anthro",
  22863. default: true
  22864. },
  22865. "naga": {
  22866. name: "Naga"
  22867. }
  22868. }
  22869. ))
  22870. characterMakers.push(() => makeCharacter(
  22871. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22872. {
  22873. front: {
  22874. height: math.unit(13 + 7 / 12, "feet"),
  22875. weight: math.unit(1500, "lb"),
  22876. name: "Front",
  22877. image: {
  22878. source: "./media/characters/briar/front.svg",
  22879. extra: 1223/1157,
  22880. bottom: 123/1346
  22881. }
  22882. },
  22883. },
  22884. [
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(13 + 7 / 12, "feet"),
  22888. default: true
  22889. },
  22890. ]
  22891. ))
  22892. characterMakers.push(() => makeCharacter(
  22893. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22894. {
  22895. side: {
  22896. height: math.unit(16, "feet"),
  22897. weight: math.unit(500, "lb"),
  22898. name: "Side",
  22899. image: {
  22900. source: "./media/characters/vanguard/side.svg",
  22901. extra: 1022/914,
  22902. bottom: 30/1052
  22903. }
  22904. },
  22905. sideAlt: {
  22906. height: math.unit(10, "feet"),
  22907. weight: math.unit(500, "lb"),
  22908. name: "Side (Alt)",
  22909. image: {
  22910. source: "./media/characters/vanguard/side-alt.svg",
  22911. extra: 502 / 425,
  22912. bottom: 0.087
  22913. }
  22914. },
  22915. },
  22916. [
  22917. {
  22918. name: "Normal",
  22919. height: math.unit(17.71, "feet"),
  22920. default: true
  22921. },
  22922. ]
  22923. ))
  22924. characterMakers.push(() => makeCharacter(
  22925. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22926. {
  22927. front: {
  22928. height: math.unit(7.5, "feet"),
  22929. weight: math.unit(2, "lb"),
  22930. name: "Front",
  22931. image: {
  22932. source: "./media/characters/artemis/work-safe-front.svg",
  22933. extra: 1192 / 1075,
  22934. bottom: 0.07
  22935. },
  22936. form: "work-safe",
  22937. default: true
  22938. },
  22939. frontNsfw: {
  22940. height: math.unit(7.5, "feet"),
  22941. weight: math.unit(2, "lb"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/artemis/calibrating-front.svg",
  22945. extra: 1192 / 1075,
  22946. bottom: 0.07
  22947. },
  22948. form: "calibrating",
  22949. default: true
  22950. },
  22951. frontNsfwer: {
  22952. height: math.unit(7.5, "feet"),
  22953. weight: math.unit(2, "lb"),
  22954. name: "Front",
  22955. image: {
  22956. source: "./media/characters/artemis/oversize-load-front.svg",
  22957. extra: 1192 / 1075,
  22958. bottom: 0.07
  22959. },
  22960. form: "oversize-load",
  22961. default: true
  22962. },
  22963. side: {
  22964. height: math.unit(7.5, "feet"),
  22965. weight: math.unit(2, "lb"),
  22966. name: "Side",
  22967. image: {
  22968. source: "./media/characters/artemis/work-safe-side.svg",
  22969. extra: 1192 / 1075,
  22970. bottom: 0.07
  22971. },
  22972. form: "work-safe"
  22973. },
  22974. sideNsfw: {
  22975. height: math.unit(7.5, "feet"),
  22976. weight: math.unit(2, "lb"),
  22977. name: "Side",
  22978. image: {
  22979. source: "./media/characters/artemis/calibrating-side.svg",
  22980. extra: 1192 / 1075,
  22981. bottom: 0.07
  22982. },
  22983. form: "calibrating"
  22984. },
  22985. sideNsfwer: {
  22986. height: math.unit(7.5, "feet"),
  22987. weight: math.unit(2, "lb"),
  22988. name: "Side",
  22989. image: {
  22990. source: "./media/characters/artemis/oversize-load-side.svg",
  22991. extra: 1192 / 1075,
  22992. bottom: 0.07
  22993. },
  22994. form: "oversize-load"
  22995. },
  22996. maw: {
  22997. height: math.unit(1.1, "feet"),
  22998. name: "Maw",
  22999. image: {
  23000. source: "./media/characters/artemis/maw.svg"
  23001. },
  23002. form: "work-safe"
  23003. },
  23004. stomach: {
  23005. height: math.unit(0.95, "feet"),
  23006. name: "Stomach",
  23007. image: {
  23008. source: "./media/characters/artemis/stomach.svg"
  23009. },
  23010. form: "work-safe"
  23011. },
  23012. dickCanine: {
  23013. height: math.unit(1, "feet"),
  23014. name: "Dick (Canine)",
  23015. image: {
  23016. source: "./media/characters/artemis/dick-canine.svg"
  23017. },
  23018. form: "calibrating"
  23019. },
  23020. dickEquine: {
  23021. height: math.unit(0.85, "feet"),
  23022. name: "Dick (Equine)",
  23023. image: {
  23024. source: "./media/characters/artemis/dick-equine.svg"
  23025. },
  23026. form: "calibrating"
  23027. },
  23028. dickExotic: {
  23029. height: math.unit(0.85, "feet"),
  23030. name: "Dick (Exotic)",
  23031. image: {
  23032. source: "./media/characters/artemis/dick-exotic.svg"
  23033. },
  23034. form: "calibrating"
  23035. },
  23036. dickCanineBigger: {
  23037. height: math.unit(1 * 1.33, "feet"),
  23038. name: "Dick (Canine)",
  23039. image: {
  23040. source: "./media/characters/artemis/dick-canine.svg"
  23041. },
  23042. form: "oversize-load"
  23043. },
  23044. dickEquineBigger: {
  23045. height: math.unit(0.85 * 1.33, "feet"),
  23046. name: "Dick (Equine)",
  23047. image: {
  23048. source: "./media/characters/artemis/dick-equine.svg"
  23049. },
  23050. form: "oversize-load"
  23051. },
  23052. dickExoticBigger: {
  23053. height: math.unit(0.85 * 1.33, "feet"),
  23054. name: "Dick (Exotic)",
  23055. image: {
  23056. source: "./media/characters/artemis/dick-exotic.svg"
  23057. },
  23058. form: "oversize-load"
  23059. },
  23060. },
  23061. [
  23062. {
  23063. name: "Normal",
  23064. height: math.unit(7.5, "feet"),
  23065. form: "work-safe",
  23066. default: true
  23067. },
  23068. {
  23069. name: "Normal",
  23070. height: math.unit(7.5, "feet"),
  23071. form: "calibrating",
  23072. default: true
  23073. },
  23074. {
  23075. name: "Normal",
  23076. height: math.unit(7.5, "feet"),
  23077. form: "oversize-load",
  23078. default: true
  23079. },
  23080. {
  23081. name: "Enlarged",
  23082. height: math.unit(12, "feet"),
  23083. form: "work-safe",
  23084. },
  23085. {
  23086. name: "Enlarged",
  23087. height: math.unit(12, "feet"),
  23088. form: "calibrating",
  23089. },
  23090. {
  23091. name: "Enlarged",
  23092. height: math.unit(12, "feet"),
  23093. form: "oversize-load",
  23094. },
  23095. ],
  23096. {
  23097. "work-safe": {
  23098. name: "Work-Safe",
  23099. default: true
  23100. },
  23101. "calibrating": {
  23102. name: "Calibrating"
  23103. },
  23104. "oversize-load": {
  23105. name: "Oversize Load"
  23106. }
  23107. }
  23108. ))
  23109. characterMakers.push(() => makeCharacter(
  23110. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23111. {
  23112. front: {
  23113. height: math.unit(5 + 3 / 12, "feet"),
  23114. weight: math.unit(160, "lb"),
  23115. name: "Front",
  23116. image: {
  23117. source: "./media/characters/kira/front.svg",
  23118. extra: 906 / 786,
  23119. bottom: 0.01
  23120. }
  23121. },
  23122. back: {
  23123. height: math.unit(5 + 3 / 12, "feet"),
  23124. weight: math.unit(160, "lb"),
  23125. name: "Back",
  23126. image: {
  23127. source: "./media/characters/kira/back.svg",
  23128. extra: 882 / 757,
  23129. bottom: 0.005
  23130. }
  23131. },
  23132. frontDressed: {
  23133. height: math.unit(5 + 3 / 12, "feet"),
  23134. weight: math.unit(160, "lb"),
  23135. name: "Front (Dressed)",
  23136. image: {
  23137. source: "./media/characters/kira/front-dressed.svg",
  23138. extra: 906 / 786,
  23139. bottom: 0.01
  23140. }
  23141. },
  23142. beans: {
  23143. height: math.unit(0.92, "feet"),
  23144. name: "Beans",
  23145. image: {
  23146. source: "./media/characters/kira/beans.svg"
  23147. }
  23148. },
  23149. },
  23150. [
  23151. {
  23152. name: "Normal",
  23153. height: math.unit(5 + 3 / 12, "feet"),
  23154. default: true
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23160. {
  23161. front: {
  23162. height: math.unit(5 + 4 / 12, "feet"),
  23163. weight: math.unit(145, "lb"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/scramble/front.svg",
  23167. extra: 763 / 727,
  23168. bottom: 0.05
  23169. }
  23170. },
  23171. back: {
  23172. height: math.unit(5 + 4 / 12, "feet"),
  23173. weight: math.unit(145, "lb"),
  23174. name: "Back",
  23175. image: {
  23176. source: "./media/characters/scramble/back.svg",
  23177. extra: 826 / 737,
  23178. bottom: 0.002
  23179. }
  23180. },
  23181. },
  23182. [
  23183. {
  23184. name: "Normal",
  23185. height: math.unit(5 + 4 / 12, "feet"),
  23186. default: true
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23192. {
  23193. side: {
  23194. height: math.unit(6 + 2 / 12, "feet"),
  23195. weight: math.unit(190, "lb"),
  23196. name: "Side",
  23197. image: {
  23198. source: "./media/characters/biscuit/side.svg",
  23199. extra: 858 / 791,
  23200. bottom: 0.044
  23201. }
  23202. },
  23203. },
  23204. [
  23205. {
  23206. name: "Normal",
  23207. height: math.unit(6 + 2 / 12, "feet"),
  23208. default: true
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(5 + 2 / 12, "feet"),
  23217. weight: math.unit(120, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/poffin/front.svg",
  23221. extra: 786 / 680,
  23222. bottom: 0.005
  23223. }
  23224. },
  23225. },
  23226. [
  23227. {
  23228. name: "Normal",
  23229. height: math.unit(5 + 2 / 12, "feet"),
  23230. default: true
  23231. },
  23232. ]
  23233. ))
  23234. characterMakers.push(() => makeCharacter(
  23235. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23236. {
  23237. front: {
  23238. height: math.unit(6 + 3 / 12, "feet"),
  23239. weight: math.unit(519, "lb"),
  23240. name: "Front",
  23241. image: {
  23242. source: "./media/characters/dhari/front.svg",
  23243. extra: 1048 / 946,
  23244. bottom: 0.015
  23245. }
  23246. },
  23247. back: {
  23248. height: math.unit(6 + 3 / 12, "feet"),
  23249. weight: math.unit(519, "lb"),
  23250. name: "Back",
  23251. image: {
  23252. source: "./media/characters/dhari/back.svg",
  23253. extra: 1048 / 931,
  23254. bottom: 0.005
  23255. }
  23256. },
  23257. frontDressed: {
  23258. height: math.unit(6 + 3 / 12, "feet"),
  23259. weight: math.unit(519, "lb"),
  23260. name: "Front (Dressed)",
  23261. image: {
  23262. source: "./media/characters/dhari/front-dressed.svg",
  23263. extra: 1713 / 1546,
  23264. bottom: 0.02
  23265. }
  23266. },
  23267. backDressed: {
  23268. height: math.unit(6 + 3 / 12, "feet"),
  23269. weight: math.unit(519, "lb"),
  23270. name: "Back (Dressed)",
  23271. image: {
  23272. source: "./media/characters/dhari/back-dressed.svg",
  23273. extra: 1699 / 1537,
  23274. bottom: 0.01
  23275. }
  23276. },
  23277. maw: {
  23278. height: math.unit(0.95, "feet"),
  23279. name: "Maw",
  23280. image: {
  23281. source: "./media/characters/dhari/maw.svg"
  23282. }
  23283. },
  23284. wereFront: {
  23285. height: math.unit(12 + 8 / 12, "feet"),
  23286. weight: math.unit(4000, "lb"),
  23287. name: "Front (Were)",
  23288. image: {
  23289. source: "./media/characters/dhari/were-front.svg",
  23290. extra: 1065 / 969,
  23291. bottom: 0.015
  23292. }
  23293. },
  23294. wereBack: {
  23295. height: math.unit(12 + 8 / 12, "feet"),
  23296. weight: math.unit(4000, "lb"),
  23297. name: "Back (Were)",
  23298. image: {
  23299. source: "./media/characters/dhari/were-back.svg",
  23300. extra: 1065 / 969,
  23301. bottom: 0.012
  23302. }
  23303. },
  23304. wereMaw: {
  23305. height: math.unit(0.625, "meters"),
  23306. name: "Maw (Were)",
  23307. image: {
  23308. source: "./media/characters/dhari/were-maw.svg"
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Normal",
  23315. height: math.unit(6 + 3 / 12, "feet"),
  23316. default: true
  23317. },
  23318. ]
  23319. ))
  23320. characterMakers.push(() => makeCharacter(
  23321. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23322. {
  23323. anthro: {
  23324. height: math.unit(5 + 7 / 12, "feet"),
  23325. weight: math.unit(175, "lb"),
  23326. name: "Anthro",
  23327. image: {
  23328. source: "./media/characters/rena-dyne/anthro.svg",
  23329. extra: 1849 / 1785,
  23330. bottom: 0.005
  23331. }
  23332. },
  23333. taur: {
  23334. height: math.unit(15 + 6 / 12, "feet"),
  23335. weight: math.unit(8000, "lb"),
  23336. name: "Taur",
  23337. image: {
  23338. source: "./media/characters/rena-dyne/taur.svg",
  23339. extra: 2315 / 2234,
  23340. bottom: 0.033
  23341. }
  23342. },
  23343. },
  23344. [
  23345. {
  23346. name: "Normal",
  23347. height: math.unit(5 + 7 / 12, "feet"),
  23348. default: true
  23349. },
  23350. ]
  23351. ))
  23352. characterMakers.push(() => makeCharacter(
  23353. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23354. {
  23355. front: {
  23356. height: math.unit(8, "feet"),
  23357. weight: math.unit(600, "lb"),
  23358. name: "Front",
  23359. image: {
  23360. source: "./media/characters/weremeep/front.svg",
  23361. extra: 970/849,
  23362. bottom: 7/977
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(8, "feet"),
  23370. default: true
  23371. },
  23372. {
  23373. name: "Lorg",
  23374. height: math.unit(12, "feet")
  23375. },
  23376. {
  23377. name: "Oh Lawd She Comin'",
  23378. height: math.unit(20, "feet")
  23379. },
  23380. ]
  23381. ))
  23382. characterMakers.push(() => makeCharacter(
  23383. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23384. {
  23385. front: {
  23386. height: math.unit(4, "feet"),
  23387. weight: math.unit(90, "lb"),
  23388. name: "Front",
  23389. image: {
  23390. source: "./media/characters/reza/front.svg",
  23391. extra: 1183 / 1111,
  23392. bottom: 0.017
  23393. }
  23394. },
  23395. back: {
  23396. height: math.unit(4, "feet"),
  23397. weight: math.unit(90, "lb"),
  23398. name: "Back",
  23399. image: {
  23400. source: "./media/characters/reza/back.svg",
  23401. extra: 1183 / 1111,
  23402. bottom: 0.01
  23403. }
  23404. },
  23405. drake: {
  23406. height: math.unit(30, "feet"),
  23407. weight: math.unit(246960, "lb"),
  23408. name: "Drake",
  23409. image: {
  23410. source: "./media/characters/reza/drake.svg",
  23411. extra: 2350 / 2024,
  23412. bottom: 60.7 / 2403
  23413. }
  23414. },
  23415. },
  23416. [
  23417. {
  23418. name: "Normal",
  23419. height: math.unit(4, "feet"),
  23420. default: true
  23421. },
  23422. ]
  23423. ))
  23424. characterMakers.push(() => makeCharacter(
  23425. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23426. {
  23427. side: {
  23428. height: math.unit(15, "feet"),
  23429. weight: math.unit(14, "tons"),
  23430. name: "Side",
  23431. image: {
  23432. source: "./media/characters/athea/side.svg",
  23433. extra: 960 / 540,
  23434. bottom: 0.003
  23435. }
  23436. },
  23437. sitting: {
  23438. height: math.unit(6 * 2.85, "feet"),
  23439. weight: math.unit(14, "tons"),
  23440. name: "Sitting",
  23441. image: {
  23442. source: "./media/characters/athea/sitting.svg",
  23443. extra: 621 / 581,
  23444. bottom: 0.075
  23445. }
  23446. },
  23447. maw: {
  23448. height: math.unit(7.59498031496063, "feet"),
  23449. name: "Maw",
  23450. image: {
  23451. source: "./media/characters/athea/maw.svg"
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Lap Cat",
  23458. height: math.unit(2.5, "feet")
  23459. },
  23460. {
  23461. name: "Minimacro",
  23462. height: math.unit(15, "feet"),
  23463. default: true
  23464. },
  23465. {
  23466. name: "Macro",
  23467. height: math.unit(120, "feet")
  23468. },
  23469. {
  23470. name: "Macro+",
  23471. height: math.unit(640, "feet")
  23472. },
  23473. {
  23474. name: "Colossus",
  23475. height: math.unit(2.2, "miles")
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23481. {
  23482. front: {
  23483. height: math.unit(8 + 8 / 12, "feet"),
  23484. weight: math.unit(130, "kg"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/seroko/front.svg",
  23488. extra: 1385 / 1280,
  23489. bottom: 0.025
  23490. }
  23491. },
  23492. back: {
  23493. height: math.unit(8 + 8 / 12, "feet"),
  23494. weight: math.unit(130, "kg"),
  23495. name: "Back",
  23496. image: {
  23497. source: "./media/characters/seroko/back.svg",
  23498. extra: 1369 / 1238,
  23499. bottom: 0.018
  23500. }
  23501. },
  23502. frontDressed: {
  23503. height: math.unit(8 + 8 / 12, "feet"),
  23504. weight: math.unit(130, "kg"),
  23505. name: "Front (Dressed)",
  23506. image: {
  23507. source: "./media/characters/seroko/front-dressed.svg",
  23508. extra: 1366 / 1275,
  23509. bottom: 0.03
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Normal",
  23516. height: math.unit(8 + 8 / 12, "feet"),
  23517. default: true
  23518. },
  23519. ]
  23520. ))
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23523. {
  23524. front: {
  23525. height: math.unit(5.5, "feet"),
  23526. weight: math.unit(160, "lb"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/quatzi/front.svg",
  23530. extra: 2346 / 2242,
  23531. bottom: 0.015
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Normal",
  23538. height: math.unit(5.5, "feet"),
  23539. default: true
  23540. },
  23541. {
  23542. name: "Big",
  23543. height: math.unit(7.7, "feet")
  23544. },
  23545. ]
  23546. ))
  23547. characterMakers.push(() => makeCharacter(
  23548. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23549. {
  23550. front: {
  23551. height: math.unit(5 + 11 / 12, "feet"),
  23552. weight: math.unit(180, "lb"),
  23553. name: "Front",
  23554. image: {
  23555. source: "./media/characters/sen/front.svg",
  23556. extra: 1321 / 1254,
  23557. bottom: 0.015
  23558. }
  23559. },
  23560. side: {
  23561. height: math.unit(5 + 11 / 12, "feet"),
  23562. weight: math.unit(180, "lb"),
  23563. name: "Side",
  23564. image: {
  23565. source: "./media/characters/sen/side.svg",
  23566. extra: 1321 / 1254,
  23567. bottom: 0.007
  23568. }
  23569. },
  23570. back: {
  23571. height: math.unit(5 + 11 / 12, "feet"),
  23572. weight: math.unit(180, "lb"),
  23573. name: "Back",
  23574. image: {
  23575. source: "./media/characters/sen/back.svg",
  23576. extra: 1321 / 1254
  23577. }
  23578. },
  23579. },
  23580. [
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(5 + 11 / 12, "feet"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23590. {
  23591. front: {
  23592. height: math.unit(166.6, "cm"),
  23593. weight: math.unit(66.6, "kg"),
  23594. name: "Front",
  23595. image: {
  23596. source: "./media/characters/fruity/front.svg",
  23597. extra: 1510 / 1386,
  23598. bottom: 0.04
  23599. }
  23600. },
  23601. back: {
  23602. height: math.unit(166.6, "cm"),
  23603. weight: math.unit(66.6, "lb"),
  23604. name: "Back",
  23605. image: {
  23606. source: "./media/characters/fruity/back.svg",
  23607. extra: 1563 / 1435,
  23608. bottom: 0.005
  23609. }
  23610. },
  23611. },
  23612. [
  23613. {
  23614. name: "Normal",
  23615. height: math.unit(166.6, "cm"),
  23616. default: true
  23617. },
  23618. {
  23619. name: "Demonic",
  23620. height: math.unit(166.6, "feet")
  23621. },
  23622. ]
  23623. ))
  23624. characterMakers.push(() => makeCharacter(
  23625. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23626. {
  23627. side: {
  23628. height: math.unit(10, "feet"),
  23629. weight: math.unit(500, "lb"),
  23630. name: "Side",
  23631. image: {
  23632. source: "./media/characters/zost/side.svg",
  23633. extra: 2870/2533,
  23634. bottom: 252/3122
  23635. }
  23636. },
  23637. mawFront: {
  23638. height: math.unit(1.08, "meters"),
  23639. name: "Maw (Front)",
  23640. image: {
  23641. source: "./media/characters/zost/maw-front.svg"
  23642. }
  23643. },
  23644. mawSide: {
  23645. height: math.unit(2.66, "feet"),
  23646. name: "Maw (Side)",
  23647. image: {
  23648. source: "./media/characters/zost/maw-side.svg"
  23649. }
  23650. },
  23651. wingspan: {
  23652. height: math.unit(7.4, "feet"),
  23653. name: "Wingspan",
  23654. image: {
  23655. source: "./media/characters/zost/wingspan.svg"
  23656. }
  23657. },
  23658. },
  23659. [
  23660. {
  23661. name: "Normal",
  23662. height: math.unit(10, "feet"),
  23663. default: true
  23664. },
  23665. ]
  23666. ))
  23667. characterMakers.push(() => makeCharacter(
  23668. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23669. {
  23670. front: {
  23671. height: math.unit(5 + 4 / 12, "feet"),
  23672. weight: math.unit(120, "lb"),
  23673. name: "Front",
  23674. image: {
  23675. source: "./media/characters/luci/front.svg",
  23676. extra: 1985 / 1884,
  23677. bottom: 0.04
  23678. }
  23679. },
  23680. back: {
  23681. height: math.unit(5 + 4 / 12, "feet"),
  23682. weight: math.unit(120, "lb"),
  23683. name: "Back",
  23684. image: {
  23685. source: "./media/characters/luci/back.svg",
  23686. extra: 1892 / 1791,
  23687. bottom: 0.002
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Normal",
  23694. height: math.unit(5 + 4 / 12, "feet"),
  23695. default: true
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23701. {
  23702. front: {
  23703. height: math.unit(1500, "feet"),
  23704. weight: math.unit(3.8e6, "tons"),
  23705. name: "Front",
  23706. image: {
  23707. source: "./media/characters/2th/front.svg",
  23708. extra: 3489 / 3350,
  23709. bottom: 0.1
  23710. }
  23711. },
  23712. foot: {
  23713. height: math.unit(461, "feet"),
  23714. name: "Foot",
  23715. image: {
  23716. source: "./media/characters/2th/foot.svg"
  23717. }
  23718. },
  23719. },
  23720. [
  23721. {
  23722. name: "\"Micro\"",
  23723. height: math.unit(15 + 7 / 12, "feet")
  23724. },
  23725. {
  23726. name: "Normal",
  23727. height: math.unit(1500, "feet"),
  23728. default: true
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(5000, "feet")
  23733. },
  23734. {
  23735. name: "Megamacro",
  23736. height: math.unit(15, "miles")
  23737. },
  23738. {
  23739. name: "Gigamacro",
  23740. height: math.unit(4000, "miles")
  23741. },
  23742. {
  23743. name: "Galactic",
  23744. height: math.unit(50, "AU")
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(5 + 6 / 12, "feet"),
  23753. weight: math.unit(220, "lb"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/amethyst/front.svg",
  23757. extra: 2078 / 2040,
  23758. bottom: 0.045
  23759. }
  23760. },
  23761. back: {
  23762. height: math.unit(5 + 6 / 12, "feet"),
  23763. weight: math.unit(220, "lb"),
  23764. name: "Back",
  23765. image: {
  23766. source: "./media/characters/amethyst/back.svg",
  23767. extra: 2021 / 1989,
  23768. bottom: 0.02
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(5 + 6 / 12, "feet"),
  23776. default: true
  23777. },
  23778. ]
  23779. ))
  23780. characterMakers.push(() => makeCharacter(
  23781. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23782. {
  23783. front: {
  23784. height: math.unit(4 + 11 / 12, "feet"),
  23785. weight: math.unit(120, "lb"),
  23786. name: "Front",
  23787. image: {
  23788. source: "./media/characters/yumi-akiyama/front.svg",
  23789. extra: 2638/2432,
  23790. bottom: 70/2708
  23791. }
  23792. },
  23793. back: {
  23794. height: math.unit(4 + 11 / 12, "feet"),
  23795. weight: math.unit(120, "lb"),
  23796. name: "Back",
  23797. image: {
  23798. source: "./media/characters/yumi-akiyama/back.svg",
  23799. extra: 2502/2397,
  23800. bottom: 80/2582
  23801. }
  23802. },
  23803. casual: {
  23804. height: math.unit(4 + 11 / 12, "feet"),
  23805. weight: math.unit(120, "lb"),
  23806. name: "Casual",
  23807. image: {
  23808. source: "./media/characters/yumi-akiyama/casual.svg",
  23809. extra: 958/887,
  23810. bottom: 41/999
  23811. }
  23812. },
  23813. jammies: {
  23814. height: math.unit(4 + 11 / 12, "feet"),
  23815. weight: math.unit(120, "lb"),
  23816. name: "Jammies",
  23817. image: {
  23818. source: "./media/characters/yumi-akiyama/jammies.svg",
  23819. extra: 958/894,
  23820. bottom: 37/995
  23821. }
  23822. },
  23823. warmWeather: {
  23824. height: math.unit(4 + 11 / 12, "feet"),
  23825. weight: math.unit(120, "lb"),
  23826. name: "Warm Weather",
  23827. image: {
  23828. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23829. extra: 929/865,
  23830. bottom: 76/1005
  23831. }
  23832. },
  23833. mouth: {
  23834. height: math.unit(0.35, "feet"),
  23835. name: "Mouth",
  23836. image: {
  23837. source: "./media/characters/yumi-akiyama/mouth.svg"
  23838. }
  23839. },
  23840. paws: {
  23841. height: math.unit(1.05, "feet"),
  23842. name: "Paws",
  23843. image: {
  23844. source: "./media/characters/yumi-akiyama/paws.svg"
  23845. }
  23846. },
  23847. cockRing: {
  23848. height: math.unit(0.225, "feet"),
  23849. name: "Cock Ring",
  23850. image: {
  23851. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23852. }
  23853. },
  23854. },
  23855. [
  23856. {
  23857. name: "Galactic",
  23858. height: math.unit(50, "galaxies"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Universal",
  23863. height: math.unit(100, "universes")
  23864. },
  23865. ]
  23866. ))
  23867. characterMakers.push(() => makeCharacter(
  23868. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23869. {
  23870. front: {
  23871. height: math.unit(8, "feet"),
  23872. weight: math.unit(500, "lb"),
  23873. name: "Front",
  23874. image: {
  23875. source: "./media/characters/rifter-yrmori/front.svg",
  23876. extra: 1180 / 1125,
  23877. bottom: 0.02
  23878. }
  23879. },
  23880. back: {
  23881. height: math.unit(8, "feet"),
  23882. weight: math.unit(500, "lb"),
  23883. name: "Back",
  23884. image: {
  23885. source: "./media/characters/rifter-yrmori/back.svg",
  23886. extra: 1190 / 1145,
  23887. bottom: 0.001
  23888. }
  23889. },
  23890. wings: {
  23891. height: math.unit(7.75, "feet"),
  23892. weight: math.unit(500, "lb"),
  23893. name: "Wings",
  23894. image: {
  23895. source: "./media/characters/rifter-yrmori/wings.svg",
  23896. extra: 1357 / 1285
  23897. }
  23898. },
  23899. maw: {
  23900. height: math.unit(0.8, "feet"),
  23901. name: "Maw",
  23902. image: {
  23903. source: "./media/characters/rifter-yrmori/maw.svg"
  23904. }
  23905. },
  23906. mawfront: {
  23907. height: math.unit(1.45, "feet"),
  23908. name: "Maw (Front)",
  23909. image: {
  23910. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23911. }
  23912. },
  23913. },
  23914. [
  23915. {
  23916. name: "Normal",
  23917. height: math.unit(8, "feet"),
  23918. default: true
  23919. },
  23920. {
  23921. name: "Macro",
  23922. height: math.unit(42, "meters")
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23928. {
  23929. were: {
  23930. height: math.unit(25 + 6 / 12, "feet"),
  23931. weight: math.unit(10000, "lb"),
  23932. name: "Were",
  23933. image: {
  23934. source: "./media/characters/tahajin/were.svg",
  23935. extra: 801 / 770,
  23936. bottom: 0.042
  23937. }
  23938. },
  23939. aquatic: {
  23940. height: math.unit(6 + 4 / 12, "feet"),
  23941. weight: math.unit(160, "lb"),
  23942. name: "Aquatic",
  23943. image: {
  23944. source: "./media/characters/tahajin/aquatic.svg",
  23945. extra: 572 / 542,
  23946. bottom: 0.04
  23947. }
  23948. },
  23949. chow: {
  23950. height: math.unit(8 + 11 / 12, "feet"),
  23951. weight: math.unit(450, "lb"),
  23952. name: "Chow",
  23953. image: {
  23954. source: "./media/characters/tahajin/chow.svg",
  23955. extra: 660 / 640,
  23956. bottom: 0.015
  23957. }
  23958. },
  23959. demiNaga: {
  23960. height: math.unit(6 + 8 / 12, "feet"),
  23961. weight: math.unit(300, "lb"),
  23962. name: "Demi Naga",
  23963. image: {
  23964. source: "./media/characters/tahajin/demi-naga.svg",
  23965. extra: 643 / 615,
  23966. bottom: 0.1
  23967. }
  23968. },
  23969. data: {
  23970. height: math.unit(5, "inches"),
  23971. weight: math.unit(0.1, "lb"),
  23972. name: "Data",
  23973. image: {
  23974. source: "./media/characters/tahajin/data.svg"
  23975. }
  23976. },
  23977. fluu: {
  23978. height: math.unit(5 + 7 / 12, "feet"),
  23979. weight: math.unit(140, "lb"),
  23980. name: "Fluu",
  23981. image: {
  23982. source: "./media/characters/tahajin/fluu.svg",
  23983. extra: 628 / 592,
  23984. bottom: 0.02
  23985. }
  23986. },
  23987. starWarrior: {
  23988. height: math.unit(4 + 5 / 12, "feet"),
  23989. weight: math.unit(50, "lb"),
  23990. name: "Star Warrior",
  23991. image: {
  23992. source: "./media/characters/tahajin/star-warrior.svg"
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Normal",
  23999. height: math.unit(25 + 6 / 12, "feet"),
  24000. default: true
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(8, "feet"),
  24009. weight: math.unit(350, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/gabira/front.svg",
  24013. extra: 1261/1154,
  24014. bottom: 51/1312
  24015. }
  24016. },
  24017. back: {
  24018. height: math.unit(8, "feet"),
  24019. weight: math.unit(350, "lb"),
  24020. name: "Back",
  24021. image: {
  24022. source: "./media/characters/gabira/back.svg",
  24023. extra: 1265/1163,
  24024. bottom: 46/1311
  24025. }
  24026. },
  24027. head: {
  24028. height: math.unit(2.85, "feet"),
  24029. name: "Head",
  24030. image: {
  24031. source: "./media/characters/gabira/head.svg"
  24032. }
  24033. },
  24034. },
  24035. [
  24036. {
  24037. name: "Normal",
  24038. height: math.unit(8, "feet"),
  24039. default: true
  24040. },
  24041. ]
  24042. ))
  24043. characterMakers.push(() => makeCharacter(
  24044. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  24045. {
  24046. front: {
  24047. height: math.unit(5 + 3 / 12, "feet"),
  24048. weight: math.unit(137, "lb"),
  24049. name: "Front",
  24050. image: {
  24051. source: "./media/characters/sasha-katraine/front.svg",
  24052. extra: 1745/1694,
  24053. bottom: 37/1782
  24054. }
  24055. },
  24056. back: {
  24057. height: math.unit(5 + 3 / 12, "feet"),
  24058. weight: math.unit(137, "lb"),
  24059. name: "Back",
  24060. image: {
  24061. source: "./media/characters/sasha-katraine/back.svg",
  24062. extra: 1776/1699,
  24063. bottom: 26/1802
  24064. }
  24065. },
  24066. },
  24067. [
  24068. {
  24069. name: "Micro",
  24070. height: math.unit(5, "inches")
  24071. },
  24072. {
  24073. name: "Normal",
  24074. height: math.unit(5 + 3 / 12, "feet"),
  24075. default: true
  24076. },
  24077. ]
  24078. ))
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24081. {
  24082. side: {
  24083. height: math.unit(4, "inches"),
  24084. weight: math.unit(200, "grams"),
  24085. name: "Side",
  24086. image: {
  24087. source: "./media/characters/der/side.svg",
  24088. extra: 719 / 400,
  24089. bottom: 30.6 / 749.9187
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Micro",
  24096. height: math.unit(4, "inches"),
  24097. default: true
  24098. },
  24099. ]
  24100. ))
  24101. characterMakers.push(() => makeCharacter(
  24102. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24103. {
  24104. side: {
  24105. height: math.unit(30, "meters"),
  24106. weight: math.unit(700, "tonnes"),
  24107. name: "Side",
  24108. image: {
  24109. source: "./media/characters/fixerdragon/side.svg",
  24110. extra: (1293.0514 - 116.03) / 1106.86,
  24111. bottom: 116.03 / 1293.0514
  24112. }
  24113. },
  24114. },
  24115. [
  24116. {
  24117. name: "Planck",
  24118. height: math.unit(1.6e-35, "meters")
  24119. },
  24120. {
  24121. name: "Micro",
  24122. height: math.unit(0.4, "meters")
  24123. },
  24124. {
  24125. name: "Normal",
  24126. height: math.unit(30, "meters"),
  24127. default: true
  24128. },
  24129. {
  24130. name: "Megamacro",
  24131. height: math.unit(1.2, "megameters")
  24132. },
  24133. {
  24134. name: "Teramacro",
  24135. height: math.unit(130, "terameters")
  24136. },
  24137. {
  24138. name: "Yottamacro",
  24139. height: math.unit(6200, "yottameters")
  24140. },
  24141. ]
  24142. ));
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(8, "feet"),
  24148. weight: math.unit(250, "lb"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/kite/front.svg",
  24152. extra: 2796 / 2659,
  24153. bottom: 0.002
  24154. }
  24155. },
  24156. },
  24157. [
  24158. {
  24159. name: "Normal",
  24160. height: math.unit(8, "feet"),
  24161. default: true
  24162. },
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(360, "feet")
  24166. },
  24167. {
  24168. name: "Megamacro",
  24169. height: math.unit(1500, "feet")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24175. {
  24176. anthro_front: {
  24177. height: math.unit(5 + 11/12, "feet"),
  24178. weight: math.unit(170, "lb"),
  24179. name: "Front",
  24180. image: {
  24181. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24182. extra: 1735/1585,
  24183. bottom: 96/1831
  24184. },
  24185. form: "anthro",
  24186. default: true
  24187. },
  24188. anthro_back: {
  24189. height: math.unit(5 + 11/12, "feet"),
  24190. weight: math.unit(170, "lb"),
  24191. name: "Back",
  24192. image: {
  24193. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24194. extra: 1749/1607,
  24195. bottom: 28/1777
  24196. },
  24197. form: "anthro"
  24198. },
  24199. anthro_male: {
  24200. height: math.unit(5 + 11/12, "feet"),
  24201. weight: math.unit(170, "lb"),
  24202. name: "Male",
  24203. image: {
  24204. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24205. extra: 1855/1713,
  24206. bottom: 63/1918
  24207. },
  24208. form: "anthro"
  24209. },
  24210. taur_front: {
  24211. height: math.unit(5 + 7/12, "feet"),
  24212. weight: math.unit(170, "lb"),
  24213. name: "Front",
  24214. image: {
  24215. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24216. extra: 1151/1059,
  24217. bottom: 356/1507
  24218. },
  24219. form: "taur",
  24220. default: true
  24221. },
  24222. anthro_frontDressed: {
  24223. height: math.unit(5 + 11/12, "feet"),
  24224. weight: math.unit(170, "lb"),
  24225. name: "Front (Dressed)",
  24226. image: {
  24227. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24228. extra: 1735/1585,
  24229. bottom: 96/1831
  24230. },
  24231. form: "anthro"
  24232. },
  24233. anthro_backDressed: {
  24234. height: math.unit(5 + 11/12, "feet"),
  24235. weight: math.unit(170, "lb"),
  24236. name: "Back (Dressed)",
  24237. image: {
  24238. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24239. extra: 1749/1607,
  24240. bottom: 28/1777
  24241. },
  24242. form: "anthro"
  24243. },
  24244. anthro_maleDressed: {
  24245. height: math.unit(5 + 11/12, "feet"),
  24246. weight: math.unit(170, "lb"),
  24247. name: "Male (Dressed)",
  24248. image: {
  24249. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24250. extra: 1855/1713,
  24251. bottom: 63/1918
  24252. },
  24253. form: "anthro"
  24254. },
  24255. taur_frontDressed: {
  24256. height: math.unit(5 + 7/12, "feet"),
  24257. weight: math.unit(170, "lb"),
  24258. name: "Front (Dressed)",
  24259. image: {
  24260. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24261. extra: 1151/1059,
  24262. bottom: 356/1507
  24263. },
  24264. form: "taur"
  24265. },
  24266. maw: {
  24267. height: math.unit(1.46, "feet"),
  24268. name: "Maw",
  24269. image: {
  24270. source: "./media/characters/poojawa-vynar/maw.svg"
  24271. },
  24272. allForms: true
  24273. },
  24274. head: {
  24275. height: math.unit(2.34, "feet"),
  24276. name: "Head",
  24277. image: {
  24278. source: "./media/characters/poojawa-vynar/head.svg"
  24279. },
  24280. allForms: true
  24281. },
  24282. leftPaw: {
  24283. height: math.unit(1.72, "feet"),
  24284. name: "Left Paw",
  24285. image: {
  24286. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24287. },
  24288. allForms: true
  24289. },
  24290. rightPaw: {
  24291. height: math.unit(1.61, "feet"),
  24292. name: "Right Paw",
  24293. image: {
  24294. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24295. },
  24296. allForms: true
  24297. },
  24298. toering: {
  24299. height: math.unit(2.9, "inches"),
  24300. name: "Toering",
  24301. image: {
  24302. source: "./media/characters/poojawa-vynar/toering.svg"
  24303. },
  24304. allForms: true
  24305. },
  24306. shaft: {
  24307. height: math.unit(0.625, "feet"),
  24308. name: "Shaft",
  24309. image: {
  24310. source: "./media/characters/poojawa-vynar/shaft.svg"
  24311. },
  24312. allForms: true
  24313. },
  24314. spade: {
  24315. height: math.unit(0.42, "feet"),
  24316. name: "Spade",
  24317. image: {
  24318. source: "./media/characters/poojawa-vynar/spade.svg"
  24319. },
  24320. allForms: true
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Shortstack",
  24326. height: math.unit(4, "feet"),
  24327. form: "anthro"
  24328. },
  24329. {
  24330. name: "Normal",
  24331. height: math.unit(5 + 11 / 12, "feet"),
  24332. form: "anthro",
  24333. default: true
  24334. },
  24335. {
  24336. name: "Tauric",
  24337. height: math.unit(4, "meters"),
  24338. form: "taur",
  24339. default: true
  24340. },
  24341. ],
  24342. {
  24343. "anthro": {
  24344. name: "Anthro",
  24345. default: true
  24346. },
  24347. "taur": {
  24348. name: "Taur",
  24349. },
  24350. }
  24351. ))
  24352. characterMakers.push(() => makeCharacter(
  24353. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24354. {
  24355. front: {
  24356. height: math.unit(293, "meters"),
  24357. weight: math.unit(70400, "tons"),
  24358. name: "Front",
  24359. image: {
  24360. source: "./media/characters/violette/front.svg",
  24361. extra: 1227 / 1180,
  24362. bottom: 0.005
  24363. }
  24364. },
  24365. back: {
  24366. height: math.unit(293, "meters"),
  24367. weight: math.unit(70400, "tons"),
  24368. name: "Back",
  24369. image: {
  24370. source: "./media/characters/violette/back.svg",
  24371. extra: 1227 / 1180,
  24372. bottom: 0.005
  24373. }
  24374. },
  24375. },
  24376. [
  24377. {
  24378. name: "Macro",
  24379. height: math.unit(293, "meters"),
  24380. default: true
  24381. },
  24382. ]
  24383. ))
  24384. characterMakers.push(() => makeCharacter(
  24385. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24386. {
  24387. front: {
  24388. height: math.unit(1050, "feet"),
  24389. weight: math.unit(200000, "tons"),
  24390. name: "Front",
  24391. image: {
  24392. source: "./media/characters/alessandra/front.svg",
  24393. extra: 960 / 912,
  24394. bottom: 0.06
  24395. }
  24396. },
  24397. },
  24398. [
  24399. {
  24400. name: "Macro",
  24401. height: math.unit(1050, "feet")
  24402. },
  24403. {
  24404. name: "Macro+",
  24405. height: math.unit(900, "meters"),
  24406. default: true
  24407. },
  24408. ]
  24409. ))
  24410. characterMakers.push(() => makeCharacter(
  24411. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24412. {
  24413. front: {
  24414. height: math.unit(5, "feet"),
  24415. weight: math.unit(187, "lb"),
  24416. name: "Front",
  24417. image: {
  24418. source: "./media/characters/person/front.svg",
  24419. extra: 3087 / 2945,
  24420. bottom: 91 / 3181
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Micro",
  24427. height: math.unit(3, "inches")
  24428. },
  24429. {
  24430. name: "Normal",
  24431. height: math.unit(5, "feet"),
  24432. default: true
  24433. },
  24434. {
  24435. name: "Macro",
  24436. height: math.unit(90, "feet")
  24437. },
  24438. {
  24439. name: "Max Size",
  24440. height: math.unit(280, "feet")
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(4.5, "meters"),
  24449. weight: math.unit(3200, "lb"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/ty/front.svg",
  24453. extra: 1038 / 960,
  24454. bottom: 31.156 / 1068
  24455. }
  24456. },
  24457. back: {
  24458. height: math.unit(4.5, "meters"),
  24459. weight: math.unit(3200, "lb"),
  24460. name: "Back",
  24461. image: {
  24462. source: "./media/characters/ty/back.svg",
  24463. extra: 1044 / 966,
  24464. bottom: 7.48 / 1049
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Normal",
  24471. height: math.unit(4.5, "meters"),
  24472. default: true
  24473. },
  24474. ]
  24475. ))
  24476. characterMakers.push(() => makeCharacter(
  24477. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24478. {
  24479. front: {
  24480. height: math.unit(5 + 4 / 12, "feet"),
  24481. weight: math.unit(115, "lb"),
  24482. name: "Front",
  24483. image: {
  24484. source: "./media/characters/rocky/front.svg",
  24485. extra: 1012 / 975,
  24486. bottom: 54 / 1066
  24487. }
  24488. },
  24489. },
  24490. [
  24491. {
  24492. name: "Normal",
  24493. height: math.unit(5 + 4 / 12, "feet"),
  24494. default: true
  24495. },
  24496. ]
  24497. ))
  24498. characterMakers.push(() => makeCharacter(
  24499. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24500. {
  24501. upright: {
  24502. height: math.unit(6, "meters"),
  24503. weight: math.unit(4000, "kg"),
  24504. name: "Upright",
  24505. image: {
  24506. source: "./media/characters/ruin/upright.svg",
  24507. extra: 668 / 661,
  24508. bottom: 42 / 799.8396
  24509. }
  24510. },
  24511. },
  24512. [
  24513. {
  24514. name: "Normal",
  24515. height: math.unit(6, "meters"),
  24516. default: true
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24522. {
  24523. front: {
  24524. height: math.unit(5, "feet"),
  24525. weight: math.unit(106, "lb"),
  24526. name: "Front",
  24527. image: {
  24528. source: "./media/characters/robin/front.svg",
  24529. extra: 862 / 799,
  24530. bottom: 42.4 / 914.8856
  24531. }
  24532. },
  24533. },
  24534. [
  24535. {
  24536. name: "Normal",
  24537. height: math.unit(5, "feet"),
  24538. default: true
  24539. },
  24540. ]
  24541. ))
  24542. characterMakers.push(() => makeCharacter(
  24543. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24544. {
  24545. side: {
  24546. height: math.unit(3, "feet"),
  24547. weight: math.unit(225, "lb"),
  24548. name: "Side",
  24549. image: {
  24550. source: "./media/characters/saian/side.svg",
  24551. extra: 566 / 356,
  24552. bottom: 79.7 / 643
  24553. }
  24554. },
  24555. maw: {
  24556. height: math.unit(2.85, "feet"),
  24557. name: "Maw",
  24558. image: {
  24559. source: "./media/characters/saian/maw.svg"
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(3, "feet"),
  24567. default: true
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24573. {
  24574. side: {
  24575. height: math.unit(8, "feet"),
  24576. weight: math.unit(300, "lb"),
  24577. name: "Side",
  24578. image: {
  24579. source: "./media/characters/equus-silvermane/side.svg",
  24580. extra: 2176 / 2050,
  24581. bottom: 65.7 / 2245
  24582. }
  24583. },
  24584. front: {
  24585. height: math.unit(8, "feet"),
  24586. weight: math.unit(300, "lb"),
  24587. name: "Front",
  24588. image: {
  24589. source: "./media/characters/equus-silvermane/front.svg",
  24590. extra: 4633 / 4400,
  24591. bottom: 71.3 / 4706.915
  24592. }
  24593. },
  24594. sideStepping: {
  24595. height: math.unit(8, "feet"),
  24596. weight: math.unit(300, "lb"),
  24597. name: "Side (Stepping)",
  24598. image: {
  24599. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24600. extra: 1968 / 1860,
  24601. bottom: 16.4 / 1989
  24602. }
  24603. },
  24604. },
  24605. [
  24606. {
  24607. name: "Normal",
  24608. height: math.unit(8, "feet")
  24609. },
  24610. {
  24611. name: "Minimacro",
  24612. height: math.unit(75, "feet"),
  24613. default: true
  24614. },
  24615. {
  24616. name: "Macro",
  24617. height: math.unit(150, "feet")
  24618. },
  24619. {
  24620. name: "Macro+",
  24621. height: math.unit(1000, "feet")
  24622. },
  24623. {
  24624. name: "Megamacro",
  24625. height: math.unit(1, "mile")
  24626. },
  24627. ]
  24628. ))
  24629. characterMakers.push(() => makeCharacter(
  24630. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24631. {
  24632. side: {
  24633. height: math.unit(20, "feet"),
  24634. weight: math.unit(30000, "kg"),
  24635. name: "Side",
  24636. image: {
  24637. source: "./media/characters/windar/side.svg",
  24638. extra: 1491 / 1248,
  24639. bottom: 82.56 / 1568
  24640. }
  24641. },
  24642. },
  24643. [
  24644. {
  24645. name: "Normal",
  24646. height: math.unit(20, "feet"),
  24647. default: true
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24653. {
  24654. side: {
  24655. height: math.unit(15.66, "feet"),
  24656. weight: math.unit(150, "lb"),
  24657. name: "Side",
  24658. image: {
  24659. source: "./media/characters/melody/side.svg",
  24660. extra: 1097 / 944,
  24661. bottom: 11.8 / 1109
  24662. }
  24663. },
  24664. sideOutfit: {
  24665. height: math.unit(15.66, "feet"),
  24666. weight: math.unit(150, "lb"),
  24667. name: "Side (Outfit)",
  24668. image: {
  24669. source: "./media/characters/melody/side-outfit.svg",
  24670. extra: 1097 / 944,
  24671. bottom: 11.8 / 1109
  24672. }
  24673. },
  24674. },
  24675. [
  24676. {
  24677. name: "Normal",
  24678. height: math.unit(15.66, "feet"),
  24679. default: true
  24680. },
  24681. ]
  24682. ))
  24683. characterMakers.push(() => makeCharacter(
  24684. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24685. {
  24686. armoredFront: {
  24687. height: math.unit(8, "feet"),
  24688. weight: math.unit(325, "lb"),
  24689. name: "Front",
  24690. image: {
  24691. source: "./media/characters/windera/armored-front.svg",
  24692. extra: 1830/1598,
  24693. bottom: 151/1981
  24694. },
  24695. form: "armored",
  24696. default: true
  24697. },
  24698. macroFront: {
  24699. height: math.unit(70, "feet"),
  24700. weight: math.unit(315453, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/windera/macro-front.svg",
  24704. extra: 963/883,
  24705. bottom: 23/986
  24706. },
  24707. form: "macro",
  24708. default: true
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Normal",
  24714. height: math.unit(8, "feet"),
  24715. default: true,
  24716. form: "armored"
  24717. },
  24718. {
  24719. name: "Normal",
  24720. height: math.unit(70, "feet"),
  24721. default: true,
  24722. form: "macro"
  24723. },
  24724. ],
  24725. {
  24726. "armored": {
  24727. name: "Armored",
  24728. default: true
  24729. },
  24730. "macro": {
  24731. name: "Macro",
  24732. },
  24733. }
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24737. {
  24738. front: {
  24739. height: math.unit(28.75, "feet"),
  24740. weight: math.unit(2000, "kg"),
  24741. name: "Front",
  24742. image: {
  24743. source: "./media/characters/sonear/front.svg",
  24744. extra: 1041.1 / 964.9,
  24745. bottom: 53.7 / 1096.6
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(28.75, "feet"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24759. {
  24760. side: {
  24761. height: math.unit(25.5, "feet"),
  24762. weight: math.unit(23000, "kg"),
  24763. name: "Side",
  24764. image: {
  24765. source: "./media/characters/kanara/side.svg"
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(25.5, "feet"),
  24773. default: true
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24779. {
  24780. side: {
  24781. height: math.unit(10, "feet"),
  24782. weight: math.unit(1000, "kg"),
  24783. name: "Side",
  24784. image: {
  24785. source: "./media/characters/ereus/side.svg",
  24786. extra: 1157 / 959,
  24787. bottom: 153 / 1312.5
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(10, "feet"),
  24795. default: true
  24796. },
  24797. ]
  24798. ))
  24799. characterMakers.push(() => makeCharacter(
  24800. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24801. {
  24802. side: {
  24803. height: math.unit(4.5, "feet"),
  24804. weight: math.unit(500, "lb"),
  24805. name: "Side",
  24806. image: {
  24807. source: "./media/characters/e-ter/side.svg",
  24808. extra: 1550 / 1248,
  24809. bottom: 146 / 1694
  24810. }
  24811. },
  24812. },
  24813. [
  24814. {
  24815. name: "Normal",
  24816. height: math.unit(4.5, "feet"),
  24817. default: true
  24818. },
  24819. ]
  24820. ))
  24821. characterMakers.push(() => makeCharacter(
  24822. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24823. {
  24824. side: {
  24825. height: math.unit(9.7, "feet"),
  24826. weight: math.unit(4000, "kg"),
  24827. name: "Side",
  24828. image: {
  24829. source: "./media/characters/yamie/side.svg"
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(9.7, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(50, "feet"),
  24846. weight: math.unit(50000, "kg"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/anders/front.svg",
  24850. extra: 570 / 539,
  24851. bottom: 14.7 / 586.7
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Large",
  24858. height: math.unit(50, "feet")
  24859. },
  24860. {
  24861. name: "Macro",
  24862. height: math.unit(2000, "feet"),
  24863. default: true
  24864. },
  24865. {
  24866. name: "Megamacro",
  24867. height: math.unit(12, "miles")
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24873. {
  24874. front: {
  24875. height: math.unit(7 + 2 / 12, "feet"),
  24876. weight: math.unit(300, "lb"),
  24877. name: "Front",
  24878. image: {
  24879. source: "./media/characters/reban/front.svg",
  24880. extra: 1287/1212,
  24881. bottom: 148/1435
  24882. }
  24883. },
  24884. head: {
  24885. height: math.unit(1.95, "feet"),
  24886. name: "Head",
  24887. image: {
  24888. source: "./media/characters/reban/head.svg"
  24889. }
  24890. },
  24891. maw: {
  24892. height: math.unit(0.95, "feet"),
  24893. name: "Maw",
  24894. image: {
  24895. source: "./media/characters/reban/maw.svg"
  24896. }
  24897. },
  24898. foot: {
  24899. height: math.unit(1.65, "feet"),
  24900. name: "Foot",
  24901. image: {
  24902. source: "./media/characters/reban/foot.svg"
  24903. }
  24904. },
  24905. dick: {
  24906. height: math.unit(7 / 5, "feet"),
  24907. name: "Dick",
  24908. image: {
  24909. source: "./media/characters/reban/dick.svg"
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Natural Height",
  24916. height: math.unit(7 + 2 / 12, "feet")
  24917. },
  24918. {
  24919. name: "Macro",
  24920. height: math.unit(500, "feet"),
  24921. default: true
  24922. },
  24923. {
  24924. name: "Canon Height",
  24925. height: math.unit(50, "AU")
  24926. },
  24927. ]
  24928. ))
  24929. characterMakers.push(() => makeCharacter(
  24930. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24931. {
  24932. front: {
  24933. height: math.unit(6, "feet"),
  24934. weight: math.unit(150, "lb"),
  24935. name: "Front",
  24936. image: {
  24937. source: "./media/characters/terrance-keayes/front.svg",
  24938. extra: 1.005,
  24939. bottom: 151 / 1615
  24940. }
  24941. },
  24942. side: {
  24943. height: math.unit(6, "feet"),
  24944. weight: math.unit(150, "lb"),
  24945. name: "Side",
  24946. image: {
  24947. source: "./media/characters/terrance-keayes/side.svg",
  24948. extra: 1.005,
  24949. bottom: 129.4 / 1544
  24950. }
  24951. },
  24952. back: {
  24953. height: math.unit(6, "feet"),
  24954. weight: math.unit(150, "lb"),
  24955. name: "Back",
  24956. image: {
  24957. source: "./media/characters/terrance-keayes/back.svg",
  24958. extra: 1.005,
  24959. bottom: 58.4 / 1557.3
  24960. }
  24961. },
  24962. dick: {
  24963. height: math.unit(6 * 0.208, "feet"),
  24964. name: "Dick",
  24965. image: {
  24966. source: "./media/characters/terrance-keayes/dick.svg"
  24967. }
  24968. },
  24969. },
  24970. [
  24971. {
  24972. name: "Canon Height",
  24973. height: math.unit(35, "miles"),
  24974. default: true
  24975. },
  24976. ]
  24977. ))
  24978. characterMakers.push(() => makeCharacter(
  24979. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24980. {
  24981. front: {
  24982. height: math.unit(6, "feet"),
  24983. weight: math.unit(150, "lb"),
  24984. name: "Front",
  24985. image: {
  24986. source: "./media/characters/ofelia/front.svg",
  24987. extra: 1130/1117,
  24988. bottom: 91/1221
  24989. }
  24990. },
  24991. back: {
  24992. height: math.unit(6, "feet"),
  24993. weight: math.unit(150, "lb"),
  24994. name: "Back",
  24995. image: {
  24996. source: "./media/characters/ofelia/back.svg",
  24997. extra: 1172/1159,
  24998. bottom: 28/1200
  24999. }
  25000. },
  25001. maw: {
  25002. height: math.unit(1, "feet"),
  25003. name: "Maw",
  25004. image: {
  25005. source: "./media/characters/ofelia/maw.svg"
  25006. }
  25007. },
  25008. foot: {
  25009. height: math.unit(1.949, "feet"),
  25010. name: "Foot",
  25011. image: {
  25012. source: "./media/characters/ofelia/foot.svg"
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Canon Height",
  25019. height: math.unit(2000, "miles"),
  25020. default: true
  25021. },
  25022. ]
  25023. ))
  25024. characterMakers.push(() => makeCharacter(
  25025. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  25026. {
  25027. front: {
  25028. height: math.unit(6, "feet"),
  25029. weight: math.unit(150, "lb"),
  25030. name: "Front",
  25031. image: {
  25032. source: "./media/characters/samuel/front.svg",
  25033. extra: 265 / 258,
  25034. bottom: 2 / 266.1566
  25035. }
  25036. },
  25037. },
  25038. [
  25039. {
  25040. name: "Macro",
  25041. height: math.unit(100, "feet"),
  25042. default: true
  25043. },
  25044. {
  25045. name: "Full Size",
  25046. height: math.unit(1000, "miles")
  25047. },
  25048. ]
  25049. ))
  25050. characterMakers.push(() => makeCharacter(
  25051. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  25052. {
  25053. front: {
  25054. height: math.unit(6, "feet"),
  25055. weight: math.unit(300, "lb"),
  25056. name: "Front",
  25057. image: {
  25058. source: "./media/characters/beishir-kiel/front.svg",
  25059. extra: 569 / 547,
  25060. bottom: 41.9 / 609
  25061. }
  25062. },
  25063. maw: {
  25064. height: math.unit(6 * 0.202, "feet"),
  25065. name: "Maw",
  25066. image: {
  25067. source: "./media/characters/beishir-kiel/maw.svg"
  25068. }
  25069. },
  25070. },
  25071. [
  25072. {
  25073. name: "Macro",
  25074. height: math.unit(300, "feet"),
  25075. default: true
  25076. },
  25077. ]
  25078. ))
  25079. characterMakers.push(() => makeCharacter(
  25080. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25081. {
  25082. front: {
  25083. height: math.unit(5 + 7/12, "feet"),
  25084. weight: math.unit(120, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/logan-grey/front.svg",
  25088. extra: 1836/1738,
  25089. bottom: 108/1944
  25090. }
  25091. },
  25092. back: {
  25093. height: math.unit(5 + 7/12, "feet"),
  25094. weight: math.unit(120, "lb"),
  25095. name: "Back",
  25096. image: {
  25097. source: "./media/characters/logan-grey/back.svg",
  25098. extra: 1880/1794,
  25099. bottom: 24/1904
  25100. }
  25101. },
  25102. frontSfw: {
  25103. height: math.unit(5 + 7/12, "feet"),
  25104. weight: math.unit(120, "lb"),
  25105. name: "Front (SFW)",
  25106. image: {
  25107. source: "./media/characters/logan-grey/front-sfw.svg",
  25108. extra: 1836/1738,
  25109. bottom: 108/1944
  25110. }
  25111. },
  25112. backSfw: {
  25113. height: math.unit(5 + 7/12, "feet"),
  25114. weight: math.unit(120, "lb"),
  25115. name: "Back (SFW)",
  25116. image: {
  25117. source: "./media/characters/logan-grey/back-sfw.svg",
  25118. extra: 1880/1794,
  25119. bottom: 24/1904
  25120. }
  25121. },
  25122. hands: {
  25123. height: math.unit(0.84, "feet"),
  25124. name: "Hands",
  25125. image: {
  25126. source: "./media/characters/logan-grey/hands.svg"
  25127. }
  25128. },
  25129. paws: {
  25130. height: math.unit(0.72, "feet"),
  25131. name: "Paws",
  25132. image: {
  25133. source: "./media/characters/logan-grey/paws.svg"
  25134. }
  25135. },
  25136. cock: {
  25137. height: math.unit(1.45, "feet"),
  25138. name: "Cock",
  25139. image: {
  25140. source: "./media/characters/logan-grey/cock.svg"
  25141. }
  25142. },
  25143. cockAlt: {
  25144. height: math.unit(1.437, "feet"),
  25145. name: "Cock (alt)",
  25146. image: {
  25147. source: "./media/characters/logan-grey/cock-alt.svg"
  25148. }
  25149. },
  25150. },
  25151. [
  25152. {
  25153. name: "Normal",
  25154. height: math.unit(5 + 8 / 12, "feet")
  25155. },
  25156. {
  25157. name: "The 500 Foot Femboy",
  25158. height: math.unit(500, "feet"),
  25159. default: true
  25160. },
  25161. {
  25162. name: "Megmacro",
  25163. height: math.unit(20, "miles")
  25164. },
  25165. ]
  25166. ))
  25167. characterMakers.push(() => makeCharacter(
  25168. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25169. {
  25170. front: {
  25171. height: math.unit(8 + 2 / 12, "feet"),
  25172. weight: math.unit(275, "lb"),
  25173. name: "Front",
  25174. image: {
  25175. source: "./media/characters/draganta/front.svg",
  25176. extra: 1177 / 1135,
  25177. bottom: 33.46 / 1212.1
  25178. }
  25179. },
  25180. },
  25181. [
  25182. {
  25183. name: "Normal",
  25184. height: math.unit(8 + 6 / 12, "feet"),
  25185. default: true
  25186. },
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(150, "feet")
  25190. },
  25191. {
  25192. name: "Megamacro",
  25193. height: math.unit(1000, "miles")
  25194. },
  25195. ]
  25196. ))
  25197. characterMakers.push(() => makeCharacter(
  25198. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25199. {
  25200. front: {
  25201. height: math.unit(1.72, "m"),
  25202. weight: math.unit(80, "lb"),
  25203. name: "Front",
  25204. image: {
  25205. source: "./media/characters/voski/front.svg",
  25206. extra: 2076.22 / 2022.4,
  25207. bottom: 102.7 / 2177.3866
  25208. }
  25209. },
  25210. frontFlaccid: {
  25211. height: math.unit(1.72, "m"),
  25212. weight: math.unit(80, "lb"),
  25213. name: "Front (Flaccid)",
  25214. image: {
  25215. source: "./media/characters/voski/front-flaccid.svg",
  25216. extra: 2076.22 / 2022.4,
  25217. bottom: 102.7 / 2177.3866
  25218. }
  25219. },
  25220. frontErect: {
  25221. height: math.unit(1.72, "m"),
  25222. weight: math.unit(80, "lb"),
  25223. name: "Front (Erect)",
  25224. image: {
  25225. source: "./media/characters/voski/front-erect.svg",
  25226. extra: 2076.22 / 2022.4,
  25227. bottom: 102.7 / 2177.3866
  25228. }
  25229. },
  25230. back: {
  25231. height: math.unit(1.72, "m"),
  25232. weight: math.unit(80, "lb"),
  25233. name: "Back",
  25234. image: {
  25235. source: "./media/characters/voski/back.svg",
  25236. extra: 2104 / 2051,
  25237. bottom: 10.45 / 2113.63
  25238. }
  25239. },
  25240. },
  25241. [
  25242. {
  25243. name: "Normal",
  25244. height: math.unit(1.72, "m")
  25245. },
  25246. {
  25247. name: "Macro",
  25248. height: math.unit(55, "m"),
  25249. default: true
  25250. },
  25251. {
  25252. name: "Macro+",
  25253. height: math.unit(300, "m")
  25254. },
  25255. {
  25256. name: "Macro++",
  25257. height: math.unit(700, "m")
  25258. },
  25259. {
  25260. name: "Macro+++",
  25261. height: math.unit(4500, "m")
  25262. },
  25263. {
  25264. name: "Macro++++",
  25265. height: math.unit(45, "km")
  25266. },
  25267. {
  25268. name: "Macro+++++",
  25269. height: math.unit(1220, "km")
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(2.3, "m"),
  25278. weight: math.unit(304, "kg"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/icowom-lee/front.svg",
  25282. extra: 985 / 955,
  25283. bottom: 25.4 / 1012
  25284. }
  25285. },
  25286. fronttentacles: {
  25287. height: math.unit(2.3, "m"),
  25288. weight: math.unit(304, "kg"),
  25289. name: "Front-tentacles",
  25290. image: {
  25291. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25292. extra: 985 / 955,
  25293. bottom: 25.4 / 1012
  25294. }
  25295. },
  25296. back: {
  25297. height: math.unit(2.3, "m"),
  25298. weight: math.unit(304, "kg"),
  25299. name: "Back",
  25300. image: {
  25301. source: "./media/characters/icowom-lee/back.svg",
  25302. extra: 975 / 954,
  25303. bottom: 9.5 / 985
  25304. }
  25305. },
  25306. backtentacles: {
  25307. height: math.unit(2.3, "m"),
  25308. weight: math.unit(304, "kg"),
  25309. name: "Back-tentacles",
  25310. image: {
  25311. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25312. extra: 975 / 954,
  25313. bottom: 9.5 / 985
  25314. }
  25315. },
  25316. frontDressed: {
  25317. height: math.unit(2.3, "m"),
  25318. weight: math.unit(304, "kg"),
  25319. name: "Front (Dressed)",
  25320. image: {
  25321. source: "./media/characters/icowom-lee/front-dressed.svg",
  25322. extra: 3076 / 2933,
  25323. bottom: 51.4 / 3125.1889
  25324. }
  25325. },
  25326. rump: {
  25327. height: math.unit(0.776, "meters"),
  25328. name: "Rump",
  25329. image: {
  25330. source: "./media/characters/icowom-lee/rump.svg"
  25331. }
  25332. },
  25333. genitals: {
  25334. height: math.unit(0.78, "meters"),
  25335. name: "Genitals",
  25336. image: {
  25337. source: "./media/characters/icowom-lee/genitals.svg"
  25338. }
  25339. },
  25340. },
  25341. [
  25342. {
  25343. name: "Normal",
  25344. height: math.unit(2.3, "meters"),
  25345. default: true
  25346. },
  25347. {
  25348. name: "Macro",
  25349. height: math.unit(94, "meters"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(22, "meters"),
  25359. weight: math.unit(21000, "kg"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/shock-diamond/front.svg",
  25363. extra: 2204 / 2053,
  25364. bottom: 65 / 2239.47
  25365. }
  25366. },
  25367. frontNude: {
  25368. height: math.unit(22, "meters"),
  25369. weight: math.unit(21000, "kg"),
  25370. name: "Front (Nude)",
  25371. image: {
  25372. source: "./media/characters/shock-diamond/front-nude.svg",
  25373. extra: 2514 / 2285,
  25374. bottom: 13 / 2527.56
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(3, "meters")
  25382. },
  25383. {
  25384. name: "Macro",
  25385. height: math.unit(22, "meters"),
  25386. default: true
  25387. },
  25388. ]
  25389. ))
  25390. characterMakers.push(() => makeCharacter(
  25391. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25392. {
  25393. front: {
  25394. height: math.unit(5 + 4/12, "feet"),
  25395. weight: math.unit(125, "lb"),
  25396. name: "Front",
  25397. image: {
  25398. source: "./media/characters/rory/front.svg",
  25399. extra: 1790/1681,
  25400. bottom: 66/1856
  25401. },
  25402. form: "normal",
  25403. default: true
  25404. },
  25405. back: {
  25406. height: math.unit(5 + 4/12, "feet"),
  25407. weight: math.unit(125, "lb"),
  25408. name: "Back",
  25409. image: {
  25410. source: "./media/characters/rory/back.svg",
  25411. extra: 1805/1690,
  25412. bottom: 56/1861
  25413. },
  25414. form: "normal"
  25415. },
  25416. frontDressed: {
  25417. height: math.unit(5 + 4/12, "feet"),
  25418. weight: math.unit(125, "lb"),
  25419. name: "Front (Dressed)",
  25420. image: {
  25421. source: "./media/characters/rory/front-dressed.svg",
  25422. extra: 1790/1681,
  25423. bottom: 66/1856
  25424. },
  25425. form: "normal"
  25426. },
  25427. backDressed: {
  25428. height: math.unit(5 + 4/12, "feet"),
  25429. weight: math.unit(125, "lb"),
  25430. name: "Back (Dressed)",
  25431. image: {
  25432. source: "./media/characters/rory/back-dressed.svg",
  25433. extra: 1805/1690,
  25434. bottom: 56/1861
  25435. },
  25436. form: "normal"
  25437. },
  25438. frontNsfw: {
  25439. height: math.unit(5 + 4/12, "feet"),
  25440. weight: math.unit(125, "lb"),
  25441. name: "Front (NSFW)",
  25442. image: {
  25443. source: "./media/characters/rory/front-nsfw.svg",
  25444. extra: 1790/1681,
  25445. bottom: 66/1856
  25446. },
  25447. form: "normal"
  25448. },
  25449. backNsfw: {
  25450. height: math.unit(5 + 4/12, "feet"),
  25451. weight: math.unit(125, "lb"),
  25452. name: "Back (NSFW)",
  25453. image: {
  25454. source: "./media/characters/rory/back-nsfw.svg",
  25455. extra: 1805/1690,
  25456. bottom: 56/1861
  25457. },
  25458. form: "normal"
  25459. },
  25460. dick: {
  25461. height: math.unit(0.8, "feet"),
  25462. name: "Dick",
  25463. image: {
  25464. source: "./media/characters/rory/dick.svg"
  25465. },
  25466. form: "normal"
  25467. },
  25468. thicc_front: {
  25469. height: math.unit(5 + 4/12, "feet"),
  25470. weight: math.unit(195, "lb"),
  25471. name: "Front",
  25472. image: {
  25473. source: "./media/characters/rory/thicc-front.svg",
  25474. extra: 1220/1100,
  25475. bottom: 103/1323
  25476. },
  25477. form: "thicc",
  25478. default: true
  25479. },
  25480. thicc_back: {
  25481. height: math.unit(5 + 4/12, "feet"),
  25482. weight: math.unit(195, "lb"),
  25483. name: "Back",
  25484. image: {
  25485. source: "./media/characters/rory/thicc-back.svg",
  25486. extra: 1166/1086,
  25487. bottom: 35/1201
  25488. },
  25489. form: "thicc"
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Micro",
  25495. height: math.unit(3, "inches"),
  25496. allForms: true
  25497. },
  25498. {
  25499. name: "Normal",
  25500. height: math.unit(5 + 4/12, "feet"),
  25501. allForms: true,
  25502. default: true
  25503. },
  25504. {
  25505. name: "Macro",
  25506. height: math.unit(90, "feet"),
  25507. allForms: true
  25508. },
  25509. {
  25510. name: "Supercharged",
  25511. height: math.unit(270, "feet"),
  25512. allForms: true
  25513. },
  25514. ],
  25515. {
  25516. "normal": {
  25517. name: "Normal",
  25518. default: true
  25519. },
  25520. "thicc": {
  25521. name: "Thicc",
  25522. },
  25523. }
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(5 + 9 / 12, "feet"),
  25530. weight: math.unit(190, "lb"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/sprisk/front.svg",
  25534. extra: 1225 / 1180,
  25535. bottom: 42.7 / 1266.4
  25536. }
  25537. },
  25538. frontNsfw: {
  25539. height: math.unit(5 + 9 / 12, "feet"),
  25540. weight: math.unit(190, "lb"),
  25541. name: "Front (NSFW)",
  25542. image: {
  25543. source: "./media/characters/sprisk/front-nsfw.svg",
  25544. extra: 1225 / 1180,
  25545. bottom: 42.7 / 1266.4
  25546. }
  25547. },
  25548. back: {
  25549. height: math.unit(5 + 9 / 12, "feet"),
  25550. weight: math.unit(190, "lb"),
  25551. name: "Back",
  25552. image: {
  25553. source: "./media/characters/sprisk/back.svg",
  25554. extra: 1247 / 1200,
  25555. bottom: 5.6 / 1253.04
  25556. }
  25557. },
  25558. },
  25559. [
  25560. {
  25561. name: "Tiny",
  25562. height: math.unit(2, "inches")
  25563. },
  25564. {
  25565. name: "Normal",
  25566. height: math.unit(5 + 9 / 12, "feet"),
  25567. default: true
  25568. },
  25569. {
  25570. name: "Mini Macro",
  25571. height: math.unit(18, "feet")
  25572. },
  25573. {
  25574. name: "Macro",
  25575. height: math.unit(100, "feet")
  25576. },
  25577. {
  25578. name: "MACRO",
  25579. height: math.unit(50, "miles")
  25580. },
  25581. {
  25582. name: "M A C R O",
  25583. height: math.unit(300, "miles")
  25584. },
  25585. ]
  25586. ))
  25587. characterMakers.push(() => makeCharacter(
  25588. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25589. {
  25590. side: {
  25591. height: math.unit(15.6, "meters"),
  25592. weight: math.unit(700000, "kg"),
  25593. name: "Side",
  25594. image: {
  25595. source: "./media/characters/bunsen/side.svg",
  25596. extra: 1644 / 358
  25597. }
  25598. },
  25599. foot: {
  25600. height: math.unit(1.611 * 1644 / 358, "meter"),
  25601. name: "Foot",
  25602. image: {
  25603. source: "./media/characters/bunsen/foot.svg"
  25604. }
  25605. },
  25606. },
  25607. [
  25608. {
  25609. name: "Small",
  25610. height: math.unit(10, "feet")
  25611. },
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(15.6, "meters"),
  25615. default: true
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(4 + 11 / 12, "feet"),
  25624. weight: math.unit(140, "lb"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/sesh/front.svg",
  25628. extra: 3420 / 3231,
  25629. bottom: 72 / 3949.5
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(4 + 11 / 12, "feet")
  25637. },
  25638. {
  25639. name: "Grown",
  25640. height: math.unit(15, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Macro",
  25645. height: math.unit(1500, "feet")
  25646. },
  25647. {
  25648. name: "Megamacro",
  25649. height: math.unit(30, "miles")
  25650. },
  25651. {
  25652. name: "Continental",
  25653. height: math.unit(3000, "miles")
  25654. },
  25655. {
  25656. name: "Gravity Mass",
  25657. height: math.unit(300000, "miles")
  25658. },
  25659. {
  25660. name: "Planet Buster",
  25661. height: math.unit(30000000, "miles")
  25662. },
  25663. {
  25664. name: "Big",
  25665. height: math.unit(3000000000, "miles")
  25666. },
  25667. ]
  25668. ))
  25669. characterMakers.push(() => makeCharacter(
  25670. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25671. {
  25672. front: {
  25673. height: math.unit(9, "feet"),
  25674. weight: math.unit(350, "lb"),
  25675. name: "Front",
  25676. image: {
  25677. source: "./media/characters/pepper/front.svg",
  25678. extra: 1448 / 1312,
  25679. bottom: 9.4 / 1457.88
  25680. }
  25681. },
  25682. back: {
  25683. height: math.unit(9, "feet"),
  25684. weight: math.unit(350, "lb"),
  25685. name: "Back",
  25686. image: {
  25687. source: "./media/characters/pepper/back.svg",
  25688. extra: 1423 / 1300,
  25689. bottom: 4.6 / 1429
  25690. }
  25691. },
  25692. maw: {
  25693. height: math.unit(0.932, "feet"),
  25694. name: "Maw",
  25695. image: {
  25696. source: "./media/characters/pepper/maw.svg"
  25697. }
  25698. },
  25699. },
  25700. [
  25701. {
  25702. name: "Normal",
  25703. height: math.unit(9, "feet"),
  25704. default: true
  25705. },
  25706. ]
  25707. ))
  25708. characterMakers.push(() => makeCharacter(
  25709. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25710. {
  25711. front: {
  25712. height: math.unit(6, "feet"),
  25713. weight: math.unit(150, "lb"),
  25714. name: "Front",
  25715. image: {
  25716. source: "./media/characters/maelstrom/front.svg",
  25717. extra: 2100 / 1883,
  25718. bottom: 94 / 2196.7
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Less Kaiju",
  25725. height: math.unit(200, "feet")
  25726. },
  25727. {
  25728. name: "Kaiju",
  25729. height: math.unit(400, "feet"),
  25730. default: true
  25731. },
  25732. {
  25733. name: "Kaiju-er",
  25734. height: math.unit(600, "feet")
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(6 + 5 / 12, "feet"),
  25743. weight: math.unit(180, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/lexir/front.svg",
  25747. extra: 180 / 172,
  25748. bottom: 12 / 192
  25749. }
  25750. },
  25751. back: {
  25752. height: math.unit(6 + 5 / 12, "feet"),
  25753. weight: math.unit(180, "lb"),
  25754. name: "Back",
  25755. image: {
  25756. source: "./media/characters/lexir/back.svg",
  25757. extra: 1273/1201,
  25758. bottom: 39/1312
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Very Smal",
  25765. height: math.unit(1, "nm")
  25766. },
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(6 + 5 / 12, "feet"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Macro",
  25774. height: math.unit(1, "mile")
  25775. },
  25776. {
  25777. name: "Megamacro",
  25778. height: math.unit(50, "miles")
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(1.5, "meters"),
  25787. weight: math.unit(100, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/maksio/front.svg",
  25791. extra: 1549 / 1531,
  25792. bottom: 123.7 / 1674.5429
  25793. }
  25794. },
  25795. back: {
  25796. height: math.unit(1.5, "meters"),
  25797. weight: math.unit(100, "lb"),
  25798. name: "Back",
  25799. image: {
  25800. source: "./media/characters/maksio/back.svg",
  25801. extra: 1541 / 1509,
  25802. bottom: 97 / 1639
  25803. }
  25804. },
  25805. hand: {
  25806. height: math.unit(0.621, "feet"),
  25807. name: "Hand",
  25808. image: {
  25809. source: "./media/characters/maksio/hand.svg"
  25810. }
  25811. },
  25812. foot: {
  25813. height: math.unit(1.611, "feet"),
  25814. name: "Foot",
  25815. image: {
  25816. source: "./media/characters/maksio/foot.svg"
  25817. }
  25818. },
  25819. },
  25820. [
  25821. {
  25822. name: "Shrunken",
  25823. height: math.unit(10, "cm")
  25824. },
  25825. {
  25826. name: "Normal",
  25827. height: math.unit(150, "cm"),
  25828. default: true
  25829. },
  25830. ]
  25831. ))
  25832. characterMakers.push(() => makeCharacter(
  25833. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25834. {
  25835. front: {
  25836. height: math.unit(100, "feet"),
  25837. name: "Front",
  25838. image: {
  25839. source: "./media/characters/erza-bear/front.svg",
  25840. extra: 2449 / 2390,
  25841. bottom: 46 / 2494
  25842. }
  25843. },
  25844. back: {
  25845. height: math.unit(100, "feet"),
  25846. name: "Back",
  25847. image: {
  25848. source: "./media/characters/erza-bear/back.svg",
  25849. extra: 2489 / 2430,
  25850. bottom: 85.4 / 2480
  25851. }
  25852. },
  25853. tail: {
  25854. height: math.unit(42, "feet"),
  25855. name: "Tail",
  25856. image: {
  25857. source: "./media/characters/erza-bear/tail.svg"
  25858. }
  25859. },
  25860. tongue: {
  25861. height: math.unit(8, "feet"),
  25862. name: "Tongue",
  25863. image: {
  25864. source: "./media/characters/erza-bear/tongue.svg"
  25865. }
  25866. },
  25867. dick: {
  25868. height: math.unit(10.5, "feet"),
  25869. name: "Dick",
  25870. image: {
  25871. source: "./media/characters/erza-bear/dick.svg"
  25872. }
  25873. },
  25874. dickVertical: {
  25875. height: math.unit(16.9, "feet"),
  25876. name: "Dick (Vertical)",
  25877. image: {
  25878. source: "./media/characters/erza-bear/dick-vertical.svg"
  25879. }
  25880. },
  25881. },
  25882. [
  25883. {
  25884. name: "Macro",
  25885. height: math.unit(100, "feet"),
  25886. default: true
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25892. {
  25893. front: {
  25894. height: math.unit(172, "cm"),
  25895. weight: math.unit(73, "kg"),
  25896. name: "Front",
  25897. image: {
  25898. source: "./media/characters/violet-flor/front.svg",
  25899. extra: 1474/1379,
  25900. bottom: 113/1587
  25901. }
  25902. },
  25903. back: {
  25904. height: math.unit(180, "cm"),
  25905. weight: math.unit(73, "kg"),
  25906. name: "Back",
  25907. image: {
  25908. source: "./media/characters/violet-flor/back.svg",
  25909. extra: 1660/1567,
  25910. bottom: 49/1709
  25911. }
  25912. },
  25913. },
  25914. [
  25915. {
  25916. name: "Normal",
  25917. height: math.unit(172, "cm"),
  25918. default: true
  25919. },
  25920. ]
  25921. ))
  25922. characterMakers.push(() => makeCharacter(
  25923. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25924. {
  25925. front: {
  25926. height: math.unit(6, "feet"),
  25927. weight: math.unit(220, "lb"),
  25928. name: "Front",
  25929. image: {
  25930. source: "./media/characters/lynn-rhea/front.svg",
  25931. extra: 310 / 273
  25932. }
  25933. },
  25934. back: {
  25935. height: math.unit(6, "feet"),
  25936. weight: math.unit(220, "lb"),
  25937. name: "Back",
  25938. image: {
  25939. source: "./media/characters/lynn-rhea/back.svg",
  25940. extra: 310 / 273
  25941. }
  25942. },
  25943. dicks: {
  25944. height: math.unit(0.9, "feet"),
  25945. name: "Dicks",
  25946. image: {
  25947. source: "./media/characters/lynn-rhea/dicks.svg"
  25948. }
  25949. },
  25950. slit: {
  25951. height: math.unit(0.4, "feet"),
  25952. name: "Slit",
  25953. image: {
  25954. source: "./media/characters/lynn-rhea/slit.svg"
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Micro",
  25961. height: math.unit(1, "inch")
  25962. },
  25963. {
  25964. name: "Macro",
  25965. height: math.unit(60, "feet"),
  25966. default: true
  25967. },
  25968. {
  25969. name: "Megamacro",
  25970. height: math.unit(2, "miles")
  25971. },
  25972. {
  25973. name: "Gigamacro",
  25974. height: math.unit(3, "earths")
  25975. },
  25976. {
  25977. name: "Galactic",
  25978. height: math.unit(0.8, "galaxies")
  25979. },
  25980. ]
  25981. ))
  25982. characterMakers.push(() => makeCharacter(
  25983. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25984. {
  25985. front: {
  25986. height: math.unit(1600, "feet"),
  25987. weight: math.unit(85758785169, "kg"),
  25988. name: "Front",
  25989. image: {
  25990. source: "./media/characters/valathos/front.svg",
  25991. extra: 1451 / 1339
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Macro",
  25998. height: math.unit(1600, "feet"),
  25999. default: true
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(7 + 5 / 12, "feet"),
  26008. weight: math.unit(300, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/azula/front.svg",
  26012. extra: 3208 / 2880,
  26013. bottom: 80.2 / 3277
  26014. }
  26015. },
  26016. back: {
  26017. height: math.unit(7 + 5 / 12, "feet"),
  26018. weight: math.unit(300, "lb"),
  26019. name: "Back",
  26020. image: {
  26021. source: "./media/characters/azula/back.svg",
  26022. extra: 3169 / 2822,
  26023. bottom: 150.6 / 3321
  26024. }
  26025. },
  26026. },
  26027. [
  26028. {
  26029. name: "Normal",
  26030. height: math.unit(7 + 5 / 12, "feet"),
  26031. default: true
  26032. },
  26033. {
  26034. name: "Big",
  26035. height: math.unit(20, "feet")
  26036. },
  26037. ]
  26038. ))
  26039. characterMakers.push(() => makeCharacter(
  26040. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  26041. {
  26042. front: {
  26043. height: math.unit(5 + 1 / 12, "feet"),
  26044. weight: math.unit(110, "lb"),
  26045. name: "Front",
  26046. image: {
  26047. source: "./media/characters/rupert/front.svg",
  26048. extra: 1549 / 1495,
  26049. bottom: 54.2 / 1604.4
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Normal",
  26056. height: math.unit(5 + 1 / 12, "feet"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  26063. {
  26064. front: {
  26065. height: math.unit(8 + 4 / 12, "feet"),
  26066. weight: math.unit(350, "lb"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/sheera-castellar/front.svg",
  26070. extra: 1957 / 1894,
  26071. bottom: 26.97 / 1975.017
  26072. }
  26073. },
  26074. side: {
  26075. height: math.unit(8 + 4 / 12, "feet"),
  26076. weight: math.unit(350, "lb"),
  26077. name: "Side",
  26078. image: {
  26079. source: "./media/characters/sheera-castellar/side.svg",
  26080. extra: 1957 / 1894
  26081. }
  26082. },
  26083. back: {
  26084. height: math.unit(8 + 4 / 12, "feet"),
  26085. weight: math.unit(350, "lb"),
  26086. name: "Back",
  26087. image: {
  26088. source: "./media/characters/sheera-castellar/back.svg",
  26089. extra: 1957 / 1894
  26090. }
  26091. },
  26092. angled: {
  26093. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26094. weight: math.unit(350, "lb"),
  26095. name: "Angled",
  26096. image: {
  26097. source: "./media/characters/sheera-castellar/angled.svg",
  26098. extra: 1807 / 1707,
  26099. bottom: 68 / 1875
  26100. }
  26101. },
  26102. genitals: {
  26103. height: math.unit(2.2, "feet"),
  26104. name: "Genitals",
  26105. image: {
  26106. source: "./media/characters/sheera-castellar/genitals.svg"
  26107. }
  26108. },
  26109. taur: {
  26110. height: math.unit(10 + 6/12, "feet"),
  26111. name: "Taur",
  26112. image: {
  26113. source: "./media/characters/sheera-castellar/taur.svg",
  26114. extra: 2017/1909,
  26115. bottom: 185/2202
  26116. }
  26117. },
  26118. },
  26119. [
  26120. {
  26121. name: "Normal",
  26122. height: math.unit(8 + 4 / 12, "feet")
  26123. },
  26124. {
  26125. name: "Macro",
  26126. height: math.unit(150, "feet"),
  26127. default: true
  26128. },
  26129. {
  26130. name: "Macro+",
  26131. height: math.unit(800, "feet")
  26132. },
  26133. ]
  26134. ))
  26135. characterMakers.push(() => makeCharacter(
  26136. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26137. {
  26138. front: {
  26139. height: math.unit(6, "feet"),
  26140. weight: math.unit(150, "lb"),
  26141. name: "Front",
  26142. image: {
  26143. source: "./media/characters/jaipur/front.svg",
  26144. extra: 3860 / 3731,
  26145. bottom: 287 / 4140
  26146. }
  26147. },
  26148. back: {
  26149. height: math.unit(6, "feet"),
  26150. weight: math.unit(150, "lb"),
  26151. name: "Back",
  26152. image: {
  26153. source: "./media/characters/jaipur/back.svg",
  26154. extra: 1637/1561,
  26155. bottom: 154/1791
  26156. }
  26157. },
  26158. },
  26159. [
  26160. {
  26161. name: "Normal",
  26162. height: math.unit(1.85, "meters"),
  26163. default: true
  26164. },
  26165. {
  26166. name: "Macro",
  26167. height: math.unit(150, "meters")
  26168. },
  26169. {
  26170. name: "Macro+",
  26171. height: math.unit(0.5, "miles")
  26172. },
  26173. {
  26174. name: "Macro++",
  26175. height: math.unit(2.5, "miles")
  26176. },
  26177. {
  26178. name: "Macro+++",
  26179. height: math.unit(12, "miles")
  26180. },
  26181. {
  26182. name: "Macro++++",
  26183. height: math.unit(120, "miles")
  26184. },
  26185. {
  26186. name: "Macro+++++",
  26187. height: math.unit(1200, "miles")
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(6, "feet"),
  26196. weight: math.unit(150, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/sheila-wolf/front.svg",
  26200. extra: 1931 / 1808,
  26201. bottom: 29.5 / 1960
  26202. }
  26203. },
  26204. dick: {
  26205. height: math.unit(1.464, "feet"),
  26206. name: "Dick",
  26207. image: {
  26208. source: "./media/characters/sheila-wolf/dick.svg"
  26209. }
  26210. },
  26211. muzzle: {
  26212. height: math.unit(0.513, "feet"),
  26213. name: "Muzzle",
  26214. image: {
  26215. source: "./media/characters/sheila-wolf/muzzle.svg"
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Macro",
  26222. height: math.unit(70, "feet"),
  26223. default: true
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26229. {
  26230. front: {
  26231. height: math.unit(32, "meters"),
  26232. weight: math.unit(300000, "kg"),
  26233. name: "Front",
  26234. image: {
  26235. source: "./media/characters/almor/front.svg",
  26236. extra: 1408 / 1322,
  26237. bottom: 94.6 / 1506.5
  26238. }
  26239. },
  26240. },
  26241. [
  26242. {
  26243. name: "Macro",
  26244. height: math.unit(32, "meters"),
  26245. default: true
  26246. },
  26247. ]
  26248. ))
  26249. characterMakers.push(() => makeCharacter(
  26250. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26251. {
  26252. front: {
  26253. height: math.unit(7, "feet"),
  26254. weight: math.unit(200, "lb"),
  26255. name: "Front",
  26256. image: {
  26257. source: "./media/characters/silver/front.svg",
  26258. extra: 472.1 / 450.5,
  26259. bottom: 26.5 / 499.424
  26260. }
  26261. },
  26262. },
  26263. [
  26264. {
  26265. name: "Normal",
  26266. height: math.unit(7, "feet"),
  26267. default: true
  26268. },
  26269. {
  26270. name: "Macro",
  26271. height: math.unit(800, "feet")
  26272. },
  26273. {
  26274. name: "Megamacro",
  26275. height: math.unit(250, "miles")
  26276. },
  26277. ]
  26278. ))
  26279. characterMakers.push(() => makeCharacter(
  26280. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26281. {
  26282. front: {
  26283. height: math.unit(6, "feet"),
  26284. weight: math.unit(150, "lb"),
  26285. name: "Front",
  26286. image: {
  26287. source: "./media/characters/pliskin/front.svg",
  26288. extra: 1469 / 1359,
  26289. bottom: 70 / 1540
  26290. }
  26291. },
  26292. },
  26293. [
  26294. {
  26295. name: "Micro",
  26296. height: math.unit(3, "inches")
  26297. },
  26298. {
  26299. name: "Normal",
  26300. height: math.unit(5 + 11 / 12, "feet"),
  26301. default: true
  26302. },
  26303. {
  26304. name: "Macro",
  26305. height: math.unit(120, "feet")
  26306. },
  26307. ]
  26308. ))
  26309. characterMakers.push(() => makeCharacter(
  26310. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26311. {
  26312. front: {
  26313. height: math.unit(6, "feet"),
  26314. weight: math.unit(150, "lb"),
  26315. name: "Front",
  26316. image: {
  26317. source: "./media/characters/sammy/front.svg",
  26318. extra: 1193 / 1089,
  26319. bottom: 30.5 / 1226
  26320. }
  26321. },
  26322. },
  26323. [
  26324. {
  26325. name: "Macro",
  26326. height: math.unit(1700, "feet"),
  26327. default: true
  26328. },
  26329. {
  26330. name: "Examacro",
  26331. height: math.unit(2.5e9, "lightyears")
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(21, "meters"),
  26340. weight: math.unit(12, "tonnes"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/kuru/front.svg",
  26344. extra: 4301 / 3785,
  26345. bottom: 371.3 / 4691
  26346. }
  26347. },
  26348. },
  26349. [
  26350. {
  26351. name: "Macro",
  26352. height: math.unit(21, "meters"),
  26353. default: true
  26354. },
  26355. ]
  26356. ))
  26357. characterMakers.push(() => makeCharacter(
  26358. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26359. {
  26360. front: {
  26361. height: math.unit(23, "meters"),
  26362. weight: math.unit(12.2, "tonnes"),
  26363. name: "Front",
  26364. image: {
  26365. source: "./media/characters/rakka/front.svg",
  26366. extra: 4670 / 4169,
  26367. bottom: 301 / 4968.7
  26368. }
  26369. },
  26370. },
  26371. [
  26372. {
  26373. name: "Macro",
  26374. height: math.unit(23, "meters"),
  26375. default: true
  26376. },
  26377. ]
  26378. ))
  26379. characterMakers.push(() => makeCharacter(
  26380. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26381. {
  26382. front: {
  26383. height: math.unit(6, "feet"),
  26384. weight: math.unit(150, "lb"),
  26385. name: "Front",
  26386. image: {
  26387. source: "./media/characters/rhys-feline/front.svg",
  26388. extra: 2488 / 2308,
  26389. bottom: 35.67 / 2519.19
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Really Small",
  26396. height: math.unit(1, "nm")
  26397. },
  26398. {
  26399. name: "Micro",
  26400. height: math.unit(4, "inches")
  26401. },
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(4 + 10 / 12, "feet"),
  26405. default: true
  26406. },
  26407. {
  26408. name: "Macro",
  26409. height: math.unit(100, "feet")
  26410. },
  26411. {
  26412. name: "Megamacto",
  26413. height: math.unit(50, "miles")
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26419. {
  26420. side: {
  26421. height: math.unit(30, "feet"),
  26422. weight: math.unit(35000, "kg"),
  26423. name: "Side",
  26424. image: {
  26425. source: "./media/characters/alydar/side.svg",
  26426. extra: 234 / 222,
  26427. bottom: 6.5 / 241
  26428. }
  26429. },
  26430. front: {
  26431. height: math.unit(30, "feet"),
  26432. weight: math.unit(35000, "kg"),
  26433. name: "Front",
  26434. image: {
  26435. source: "./media/characters/alydar/front.svg",
  26436. extra: 223.37 / 210.2,
  26437. bottom: 22.3 / 246.76
  26438. }
  26439. },
  26440. top: {
  26441. height: math.unit(64.54, "feet"),
  26442. weight: math.unit(35000, "kg"),
  26443. name: "Top",
  26444. image: {
  26445. source: "./media/characters/alydar/top.svg"
  26446. }
  26447. },
  26448. anthro: {
  26449. height: math.unit(30, "feet"),
  26450. weight: math.unit(9000, "kg"),
  26451. name: "Anthro",
  26452. image: {
  26453. source: "./media/characters/alydar/anthro.svg",
  26454. extra: 432 / 421,
  26455. bottom: 7.18 / 440
  26456. }
  26457. },
  26458. maw: {
  26459. height: math.unit(11.693, "feet"),
  26460. name: "Maw",
  26461. image: {
  26462. source: "./media/characters/alydar/maw.svg"
  26463. }
  26464. },
  26465. head: {
  26466. height: math.unit(11.693, "feet"),
  26467. name: "Head",
  26468. image: {
  26469. source: "./media/characters/alydar/head.svg"
  26470. }
  26471. },
  26472. headAlt: {
  26473. height: math.unit(12.861, "feet"),
  26474. name: "Head (Alt)",
  26475. image: {
  26476. source: "./media/characters/alydar/head-alt.svg"
  26477. }
  26478. },
  26479. wing: {
  26480. height: math.unit(20.712, "feet"),
  26481. name: "Wing",
  26482. image: {
  26483. source: "./media/characters/alydar/wing.svg"
  26484. }
  26485. },
  26486. wingFeather: {
  26487. height: math.unit(9.662, "feet"),
  26488. name: "Wing Feather",
  26489. image: {
  26490. source: "./media/characters/alydar/wing-feather.svg"
  26491. }
  26492. },
  26493. countourFeather: {
  26494. height: math.unit(4.154, "feet"),
  26495. name: "Contour Feather",
  26496. image: {
  26497. source: "./media/characters/alydar/contour-feather.svg"
  26498. }
  26499. },
  26500. },
  26501. [
  26502. {
  26503. name: "Diplomatic",
  26504. height: math.unit(13, "feet"),
  26505. default: true
  26506. },
  26507. {
  26508. name: "Small",
  26509. height: math.unit(30, "feet")
  26510. },
  26511. {
  26512. name: "Normal",
  26513. height: math.unit(95, "feet"),
  26514. default: true
  26515. },
  26516. {
  26517. name: "Large",
  26518. height: math.unit(285, "feet")
  26519. },
  26520. {
  26521. name: "Incomprehensible",
  26522. height: math.unit(450, "megameters")
  26523. },
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26528. {
  26529. side: {
  26530. height: math.unit(11, "feet"),
  26531. weight: math.unit(1750, "kg"),
  26532. name: "Side",
  26533. image: {
  26534. source: "./media/characters/selicia/side.svg",
  26535. extra: 440 / 396,
  26536. bottom: 24.8 / 465.979
  26537. }
  26538. },
  26539. maw: {
  26540. height: math.unit(4.665, "feet"),
  26541. name: "Maw",
  26542. image: {
  26543. source: "./media/characters/selicia/maw.svg"
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(11, "feet"),
  26551. default: true
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26557. {
  26558. side: {
  26559. height: math.unit(2 + 6 / 12, "feet"),
  26560. weight: math.unit(30, "lb"),
  26561. name: "Side",
  26562. image: {
  26563. source: "./media/characters/layla/side.svg",
  26564. extra: 244 / 188,
  26565. bottom: 18.2 / 262.1
  26566. }
  26567. },
  26568. back: {
  26569. height: math.unit(2 + 6 / 12, "feet"),
  26570. weight: math.unit(30, "lb"),
  26571. name: "Back",
  26572. image: {
  26573. source: "./media/characters/layla/back.svg",
  26574. extra: 308 / 241.5,
  26575. bottom: 8.9 / 316.8
  26576. }
  26577. },
  26578. cumming: {
  26579. height: math.unit(2 + 6 / 12, "feet"),
  26580. weight: math.unit(30, "lb"),
  26581. name: "Cumming",
  26582. image: {
  26583. source: "./media/characters/layla/cumming.svg",
  26584. extra: 342 / 279,
  26585. bottom: 595 / 938
  26586. }
  26587. },
  26588. dickFlaccid: {
  26589. height: math.unit(2.595, "feet"),
  26590. name: "Flaccid Genitals",
  26591. image: {
  26592. source: "./media/characters/layla/dick-flaccid.svg"
  26593. }
  26594. },
  26595. dickErect: {
  26596. height: math.unit(2.359, "feet"),
  26597. name: "Erect Genitals",
  26598. image: {
  26599. source: "./media/characters/layla/dick-erect.svg"
  26600. }
  26601. },
  26602. dragon: {
  26603. height: math.unit(40, "feet"),
  26604. name: "Dragon",
  26605. image: {
  26606. source: "./media/characters/layla/dragon.svg",
  26607. extra: 610/535,
  26608. bottom: 367/977
  26609. }
  26610. },
  26611. taur: {
  26612. height: math.unit(30, "feet"),
  26613. name: "Taur",
  26614. image: {
  26615. source: "./media/characters/layla/taur.svg",
  26616. extra: 1268/1199,
  26617. bottom: 112/1380
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Micro",
  26624. height: math.unit(1, "inch")
  26625. },
  26626. {
  26627. name: "Small",
  26628. height: math.unit(1, "foot")
  26629. },
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(2 + 6 / 12, "feet"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Macro",
  26637. height: math.unit(200, "feet")
  26638. },
  26639. {
  26640. name: "Megamacro",
  26641. height: math.unit(1000, "miles")
  26642. },
  26643. {
  26644. name: "Planetary",
  26645. height: math.unit(8000, "miles")
  26646. },
  26647. {
  26648. name: "True Layla",
  26649. height: math.unit(200000 * 7, "multiverses")
  26650. },
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26655. {
  26656. back: {
  26657. height: math.unit(10.5, "feet"),
  26658. weight: math.unit(800, "lb"),
  26659. name: "Back",
  26660. image: {
  26661. source: "./media/characters/knox/back.svg",
  26662. extra: 1486 / 1089,
  26663. bottom: 107 / 1601.4
  26664. }
  26665. },
  26666. side: {
  26667. height: math.unit(10.5, "feet"),
  26668. weight: math.unit(800, "lb"),
  26669. name: "Side",
  26670. image: {
  26671. source: "./media/characters/knox/side.svg",
  26672. extra: 244 / 218,
  26673. bottom: 14 / 260
  26674. }
  26675. },
  26676. },
  26677. [
  26678. {
  26679. name: "Compact",
  26680. height: math.unit(10.5, "feet"),
  26681. default: true
  26682. },
  26683. {
  26684. name: "Dynamax",
  26685. height: math.unit(210, "feet")
  26686. },
  26687. {
  26688. name: "Full Macro",
  26689. height: math.unit(850, "feet")
  26690. },
  26691. ]
  26692. ))
  26693. characterMakers.push(() => makeCharacter(
  26694. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26695. {
  26696. front: {
  26697. height: math.unit(28, "feet"),
  26698. weight: math.unit(10500, "lb"),
  26699. name: "Front",
  26700. image: {
  26701. source: "./media/characters/kayda/front.svg",
  26702. extra: 1536 / 1428,
  26703. bottom: 68.7 / 1603
  26704. }
  26705. },
  26706. back: {
  26707. height: math.unit(28, "feet"),
  26708. weight: math.unit(10500, "lb"),
  26709. name: "Back",
  26710. image: {
  26711. source: "./media/characters/kayda/back.svg",
  26712. extra: 1557 / 1464,
  26713. bottom: 39.5 / 1597.49
  26714. }
  26715. },
  26716. dick: {
  26717. height: math.unit(3.858, "feet"),
  26718. name: "Dick",
  26719. image: {
  26720. source: "./media/characters/kayda/dick.svg"
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Macro",
  26727. height: math.unit(28, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(10 + 11 / 12, "feet"),
  26737. weight: math.unit(1400, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/brian/front.svg",
  26741. extra: 737 / 692,
  26742. bottom: 55.4 / 785
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Normal",
  26749. height: math.unit(10 + 11 / 12, "feet"),
  26750. default: true
  26751. },
  26752. ]
  26753. ))
  26754. characterMakers.push(() => makeCharacter(
  26755. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26756. {
  26757. front: {
  26758. height: math.unit(5 + 8 / 12, "feet"),
  26759. weight: math.unit(140, "lb"),
  26760. name: "Front",
  26761. image: {
  26762. source: "./media/characters/khemri/front.svg",
  26763. extra: 4780 / 4059,
  26764. bottom: 80.1 / 4859.25
  26765. }
  26766. },
  26767. },
  26768. [
  26769. {
  26770. name: "Micro",
  26771. height: math.unit(6, "inches")
  26772. },
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(5 + 8 / 12, "feet"),
  26776. default: true
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26782. {
  26783. front: {
  26784. height: math.unit(13, "feet"),
  26785. weight: math.unit(1700, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/felix-braveheart/front.svg",
  26789. extra: 1222 / 1157,
  26790. bottom: 53.2 / 1280
  26791. }
  26792. },
  26793. back: {
  26794. height: math.unit(13, "feet"),
  26795. weight: math.unit(1700, "lb"),
  26796. name: "Back",
  26797. image: {
  26798. source: "./media/characters/felix-braveheart/back.svg",
  26799. extra: 1277 / 1203,
  26800. bottom: 50.2 / 1327
  26801. }
  26802. },
  26803. feral: {
  26804. height: math.unit(6, "feet"),
  26805. weight: math.unit(400, "lb"),
  26806. name: "Feral",
  26807. image: {
  26808. source: "./media/characters/felix-braveheart/feral.svg",
  26809. extra: 682 / 625,
  26810. bottom: 6.9 / 688
  26811. }
  26812. },
  26813. },
  26814. [
  26815. {
  26816. name: "Normal",
  26817. height: math.unit(13, "feet"),
  26818. default: true
  26819. },
  26820. ]
  26821. ))
  26822. characterMakers.push(() => makeCharacter(
  26823. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26824. {
  26825. side: {
  26826. height: math.unit(5 + 11 / 12, "feet"),
  26827. weight: math.unit(1400, "lb"),
  26828. name: "Side",
  26829. image: {
  26830. source: "./media/characters/shadow-blade/side.svg",
  26831. extra: 1726 / 1267,
  26832. bottom: 58.4 / 1785
  26833. }
  26834. },
  26835. },
  26836. [
  26837. {
  26838. name: "Normal",
  26839. height: math.unit(5 + 11 / 12, "feet"),
  26840. default: true
  26841. },
  26842. ]
  26843. ))
  26844. characterMakers.push(() => makeCharacter(
  26845. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26846. {
  26847. front: {
  26848. height: math.unit(1 + 6 / 12, "feet"),
  26849. weight: math.unit(25, "lb"),
  26850. name: "Front",
  26851. image: {
  26852. source: "./media/characters/karla-halldor/front.svg",
  26853. extra: 1459 / 1383,
  26854. bottom: 12 / 1472
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(1 + 6 / 12, "feet"),
  26862. default: true
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(6 + 2 / 12, "feet"),
  26871. weight: math.unit(160, "lb"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/ariam/front.svg",
  26875. extra: 1073/976,
  26876. bottom: 52/1125
  26877. }
  26878. },
  26879. back: {
  26880. height: math.unit(6 + 2/12, "feet"),
  26881. weight: math.unit(160, "lb"),
  26882. name: "Back",
  26883. image: {
  26884. source: "./media/characters/ariam/back.svg",
  26885. extra: 1103/1023,
  26886. bottom: 9/1112
  26887. }
  26888. },
  26889. dressed: {
  26890. height: math.unit(6 + 2/12, "feet"),
  26891. weight: math.unit(160, "lb"),
  26892. name: "Dressed",
  26893. image: {
  26894. source: "./media/characters/ariam/dressed.svg",
  26895. extra: 1099/1009,
  26896. bottom: 25/1124
  26897. }
  26898. },
  26899. squatting: {
  26900. height: math.unit(4.1, "feet"),
  26901. weight: math.unit(160, "lb"),
  26902. name: "Squatting",
  26903. image: {
  26904. source: "./media/characters/ariam/squatting.svg",
  26905. extra: 2617 / 2112,
  26906. bottom: 61.2 / 2681,
  26907. }
  26908. },
  26909. },
  26910. [
  26911. {
  26912. name: "Normal",
  26913. height: math.unit(6 + 2 / 12, "feet"),
  26914. default: true
  26915. },
  26916. {
  26917. name: "Normal+",
  26918. height: math.unit(4, "meters")
  26919. },
  26920. {
  26921. name: "Macro",
  26922. height: math.unit(50, "meters")
  26923. },
  26924. {
  26925. name: "Macro+",
  26926. height: math.unit(100, "meters")
  26927. },
  26928. {
  26929. name: "Megamacro",
  26930. height: math.unit(20, "km")
  26931. },
  26932. {
  26933. name: "Caretaker",
  26934. height: math.unit(444, "megameters")
  26935. },
  26936. ]
  26937. ))
  26938. characterMakers.push(() => makeCharacter(
  26939. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26940. {
  26941. front: {
  26942. height: math.unit(1.67, "meters"),
  26943. weight: math.unit(140, "lb"),
  26944. name: "Front",
  26945. image: {
  26946. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26947. extra: 438 / 410,
  26948. bottom: 0.75 / 439
  26949. }
  26950. },
  26951. },
  26952. [
  26953. {
  26954. name: "Shrunken",
  26955. height: math.unit(7.6, "cm")
  26956. },
  26957. {
  26958. name: "Human Scale",
  26959. height: math.unit(1.67, "meters")
  26960. },
  26961. {
  26962. name: "Wolxi Scale",
  26963. height: math.unit(36.7, "meters"),
  26964. default: true
  26965. },
  26966. ]
  26967. ))
  26968. characterMakers.push(() => makeCharacter(
  26969. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26970. {
  26971. front: {
  26972. height: math.unit(1.73, "meters"),
  26973. weight: math.unit(240, "lb"),
  26974. name: "Front",
  26975. image: {
  26976. source: "./media/characters/izue-two-mothers/front.svg",
  26977. extra: 469 / 437,
  26978. bottom: 1.24 / 470.6
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Shrunken",
  26985. height: math.unit(7.86, "cm")
  26986. },
  26987. {
  26988. name: "Human Scale",
  26989. height: math.unit(1.73, "meters")
  26990. },
  26991. {
  26992. name: "Wolxi Scale",
  26993. height: math.unit(38, "meters"),
  26994. default: true
  26995. },
  26996. ]
  26997. ))
  26998. characterMakers.push(() => makeCharacter(
  26999. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  27000. {
  27001. front: {
  27002. height: math.unit(1.55, "meters"),
  27003. weight: math.unit(120, "lb"),
  27004. name: "Front",
  27005. image: {
  27006. source: "./media/characters/teeku-love-shack/front.svg",
  27007. extra: 387 / 362,
  27008. bottom: 1.51 / 388
  27009. }
  27010. },
  27011. },
  27012. [
  27013. {
  27014. name: "Shrunken",
  27015. height: math.unit(7, "cm")
  27016. },
  27017. {
  27018. name: "Human Scale",
  27019. height: math.unit(1.55, "meters")
  27020. },
  27021. {
  27022. name: "Wolxi Scale",
  27023. height: math.unit(34.1, "meters"),
  27024. default: true
  27025. },
  27026. ]
  27027. ))
  27028. characterMakers.push(() => makeCharacter(
  27029. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  27030. {
  27031. front: {
  27032. height: math.unit(1.83, "meters"),
  27033. weight: math.unit(135, "lb"),
  27034. name: "Front",
  27035. image: {
  27036. source: "./media/characters/dejma-the-red/front.svg",
  27037. extra: 480 / 458,
  27038. bottom: 1.8 / 482
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Shrunken",
  27045. height: math.unit(8.3, "cm")
  27046. },
  27047. {
  27048. name: "Human Scale",
  27049. height: math.unit(1.83, "meters")
  27050. },
  27051. {
  27052. name: "Wolxi Scale",
  27053. height: math.unit(40, "meters"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(1.78, "meters"),
  27063. weight: math.unit(65, "kg"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/aki/front.svg",
  27067. extra: 452 / 415
  27068. }
  27069. },
  27070. frontNsfw: {
  27071. height: math.unit(1.78, "meters"),
  27072. weight: math.unit(65, "kg"),
  27073. name: "Front (NSFW)",
  27074. image: {
  27075. source: "./media/characters/aki/front-nsfw.svg",
  27076. extra: 452 / 415
  27077. }
  27078. },
  27079. back: {
  27080. height: math.unit(1.78, "meters"),
  27081. weight: math.unit(65, "kg"),
  27082. name: "Back",
  27083. image: {
  27084. source: "./media/characters/aki/back.svg",
  27085. extra: 452 / 415
  27086. }
  27087. },
  27088. rump: {
  27089. height: math.unit(2.05, "feet"),
  27090. name: "Rump",
  27091. image: {
  27092. source: "./media/characters/aki/rump.svg"
  27093. }
  27094. },
  27095. dick: {
  27096. height: math.unit(0.95, "feet"),
  27097. name: "Dick",
  27098. image: {
  27099. source: "./media/characters/aki/dick.svg"
  27100. }
  27101. },
  27102. },
  27103. [
  27104. {
  27105. name: "Micro",
  27106. height: math.unit(15, "cm")
  27107. },
  27108. {
  27109. name: "Normal",
  27110. height: math.unit(178, "cm"),
  27111. default: true
  27112. },
  27113. {
  27114. name: "Macro",
  27115. height: math.unit(214, "m")
  27116. },
  27117. {
  27118. name: "Macro+",
  27119. height: math.unit(534, "m")
  27120. },
  27121. ]
  27122. ))
  27123. characterMakers.push(() => makeCharacter(
  27124. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27125. {
  27126. front: {
  27127. height: math.unit(5 + 5 / 12, "feet"),
  27128. weight: math.unit(120, "lb"),
  27129. name: "Front",
  27130. image: {
  27131. source: "./media/characters/ari/front.svg",
  27132. extra: 1550/1471,
  27133. bottom: 39/1589
  27134. }
  27135. },
  27136. },
  27137. [
  27138. {
  27139. name: "Normal",
  27140. height: math.unit(5 + 5 / 12, "feet")
  27141. },
  27142. {
  27143. name: "Macro",
  27144. height: math.unit(100, "feet"),
  27145. default: true
  27146. },
  27147. {
  27148. name: "Megamacro",
  27149. height: math.unit(100, "miles")
  27150. },
  27151. {
  27152. name: "Gigamacro",
  27153. height: math.unit(80000, "miles")
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27159. {
  27160. side: {
  27161. height: math.unit(9, "feet"),
  27162. weight: math.unit(400, "kg"),
  27163. name: "Side",
  27164. image: {
  27165. source: "./media/characters/bolt/side.svg",
  27166. extra: 1126 / 896,
  27167. bottom: 60 / 1187.3,
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Micro",
  27174. height: math.unit(5, "inches")
  27175. },
  27176. {
  27177. name: "Normal",
  27178. height: math.unit(9, "feet"),
  27179. default: true
  27180. },
  27181. {
  27182. name: "Macro",
  27183. height: math.unit(700, "feet")
  27184. },
  27185. {
  27186. name: "Max Size",
  27187. height: math.unit(1.52e22, "yottameters")
  27188. },
  27189. ]
  27190. ))
  27191. characterMakers.push(() => makeCharacter(
  27192. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27193. {
  27194. front: {
  27195. height: math.unit(4.3, "meters"),
  27196. weight: math.unit(3, "tons"),
  27197. name: "Front",
  27198. image: {
  27199. source: "./media/characters/draekon-sylviar/front.svg",
  27200. extra: 2072/1512,
  27201. bottom: 74/2146
  27202. }
  27203. },
  27204. back: {
  27205. height: math.unit(4.3, "meters"),
  27206. weight: math.unit(3, "tons"),
  27207. name: "Back",
  27208. image: {
  27209. source: "./media/characters/draekon-sylviar/back.svg",
  27210. extra: 1639/1483,
  27211. bottom: 41/1680
  27212. }
  27213. },
  27214. feral: {
  27215. height: math.unit(1.15, "meters"),
  27216. weight: math.unit(3, "tons"),
  27217. name: "Feral",
  27218. image: {
  27219. source: "./media/characters/draekon-sylviar/feral.svg",
  27220. extra: 1033/395,
  27221. bottom: 130/1163
  27222. }
  27223. },
  27224. maw: {
  27225. height: math.unit(1.3, "meters"),
  27226. name: "Maw",
  27227. image: {
  27228. source: "./media/characters/draekon-sylviar/maw.svg"
  27229. }
  27230. },
  27231. mawSeparated: {
  27232. height: math.unit(1.53, "meters"),
  27233. name: "Separated Maw",
  27234. image: {
  27235. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27236. }
  27237. },
  27238. tail: {
  27239. height: math.unit(1.15, "meters"),
  27240. name: "Tail",
  27241. image: {
  27242. source: "./media/characters/draekon-sylviar/tail.svg"
  27243. }
  27244. },
  27245. tailDick: {
  27246. height: math.unit(1.15, "meters"),
  27247. name: "Tail (Dick)",
  27248. image: {
  27249. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27250. }
  27251. },
  27252. tailDickSeparated: {
  27253. height: math.unit(1.19, "meters"),
  27254. name: "Tail (Separated Dick)",
  27255. image: {
  27256. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27257. }
  27258. },
  27259. slit: {
  27260. height: math.unit(1, "meters"),
  27261. name: "Slit",
  27262. image: {
  27263. source: "./media/characters/draekon-sylviar/slit.svg"
  27264. }
  27265. },
  27266. dick: {
  27267. height: math.unit(1.15, "meters"),
  27268. name: "Dick",
  27269. image: {
  27270. source: "./media/characters/draekon-sylviar/dick.svg"
  27271. }
  27272. },
  27273. dickSeparated: {
  27274. height: math.unit(1.1, "meters"),
  27275. name: "Separated Dick",
  27276. image: {
  27277. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27278. }
  27279. },
  27280. sheath: {
  27281. height: math.unit(1.15, "meters"),
  27282. name: "Sheath",
  27283. image: {
  27284. source: "./media/characters/draekon-sylviar/sheath.svg"
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Small",
  27291. height: math.unit(4.53 / 2, "meters"),
  27292. default: true
  27293. },
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(4.53, "meters"),
  27297. default: true
  27298. },
  27299. {
  27300. name: "Large",
  27301. height: math.unit(4.53 * 2, "meters"),
  27302. },
  27303. ]
  27304. ))
  27305. characterMakers.push(() => makeCharacter(
  27306. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27307. {
  27308. front: {
  27309. height: math.unit(6 + 2 / 12, "feet"),
  27310. weight: math.unit(180, "lb"),
  27311. name: "Front",
  27312. image: {
  27313. source: "./media/characters/brawler/front.svg",
  27314. extra: 3301 / 3027,
  27315. bottom: 138 / 3439
  27316. }
  27317. },
  27318. },
  27319. [
  27320. {
  27321. name: "Normal",
  27322. height: math.unit(6 + 2 / 12, "feet"),
  27323. default: true
  27324. },
  27325. ]
  27326. ))
  27327. characterMakers.push(() => makeCharacter(
  27328. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27329. {
  27330. front: {
  27331. height: math.unit(11, "feet"),
  27332. weight: math.unit(1000, "lb"),
  27333. name: "Front",
  27334. image: {
  27335. source: "./media/characters/alex/front.svg",
  27336. bottom: 44.5 / 620
  27337. }
  27338. },
  27339. },
  27340. [
  27341. {
  27342. name: "Micro",
  27343. height: math.unit(5, "inches")
  27344. },
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(11, "feet"),
  27348. default: true
  27349. },
  27350. {
  27351. name: "Macro",
  27352. height: math.unit(9.5e9, "feet")
  27353. },
  27354. {
  27355. name: "Max Size",
  27356. height: math.unit(1.4e283, "yottameters")
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27362. {
  27363. female: {
  27364. height: math.unit(29.9, "m"),
  27365. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27366. name: "Female",
  27367. image: {
  27368. source: "./media/characters/zenari/female.svg",
  27369. extra: 3281.6 / 3217,
  27370. bottom: 72.2 / 3353
  27371. }
  27372. },
  27373. male: {
  27374. height: math.unit(27.7, "m"),
  27375. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27376. name: "Male",
  27377. image: {
  27378. source: "./media/characters/zenari/male.svg",
  27379. extra: 3008 / 2991,
  27380. bottom: 54.6 / 3069
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Macro",
  27387. height: math.unit(29.7, "meters"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27394. {
  27395. female: {
  27396. height: math.unit(23.8, "m"),
  27397. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27398. name: "Female",
  27399. image: {
  27400. source: "./media/characters/mactarian/female.svg",
  27401. extra: 2662 / 2569,
  27402. bottom: 73 / 2736
  27403. }
  27404. },
  27405. male: {
  27406. height: math.unit(23.8, "m"),
  27407. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27408. name: "Male",
  27409. image: {
  27410. source: "./media/characters/mactarian/male.svg",
  27411. extra: 2673 / 2600,
  27412. bottom: 76 / 2750
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Macro",
  27419. height: math.unit(23.8, "meters"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27426. {
  27427. female: {
  27428. height: math.unit(19.3, "m"),
  27429. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27430. name: "Female",
  27431. image: {
  27432. source: "./media/characters/umok/female.svg",
  27433. extra: 2186 / 2078,
  27434. bottom: 87 / 2277
  27435. }
  27436. },
  27437. male: {
  27438. height: math.unit(19.5, "m"),
  27439. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27440. name: "Male",
  27441. image: {
  27442. source: "./media/characters/umok/male.svg",
  27443. extra: 2233 / 2140,
  27444. bottom: 24.4 / 2258
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Macro",
  27451. height: math.unit(19.3, "meters"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27458. {
  27459. female: {
  27460. height: math.unit(26.15, "m"),
  27461. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27462. name: "Female",
  27463. image: {
  27464. source: "./media/characters/joraxian/female.svg",
  27465. extra: 2912 / 2824,
  27466. bottom: 36 / 2956
  27467. }
  27468. },
  27469. male: {
  27470. height: math.unit(25.4, "m"),
  27471. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27472. name: "Male",
  27473. image: {
  27474. source: "./media/characters/joraxian/male.svg",
  27475. extra: 2877 / 2721,
  27476. bottom: 82 / 2967
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Macro",
  27483. height: math.unit(26.15, "meters"),
  27484. default: true
  27485. },
  27486. ]
  27487. ))
  27488. characterMakers.push(() => makeCharacter(
  27489. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27490. {
  27491. female: {
  27492. height: math.unit(21.6, "m"),
  27493. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27494. name: "Female",
  27495. image: {
  27496. source: "./media/characters/sthara/female.svg",
  27497. extra: 2516 / 2347,
  27498. bottom: 21.5 / 2537
  27499. }
  27500. },
  27501. male: {
  27502. height: math.unit(24, "m"),
  27503. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27504. name: "Male",
  27505. image: {
  27506. source: "./media/characters/sthara/male.svg",
  27507. extra: 2732 / 2607,
  27508. bottom: 23 / 2732
  27509. }
  27510. },
  27511. },
  27512. [
  27513. {
  27514. name: "Macro",
  27515. height: math.unit(21.6, "meters"),
  27516. default: true
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(6 + 4 / 12, "feet"),
  27525. weight: math.unit(175, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/luka-bryzant/front.svg",
  27529. extra: 311 / 289,
  27530. bottom: 4 / 315
  27531. }
  27532. },
  27533. back: {
  27534. height: math.unit(6 + 4 / 12, "feet"),
  27535. weight: math.unit(175, "lb"),
  27536. name: "Back",
  27537. image: {
  27538. source: "./media/characters/luka-bryzant/back.svg",
  27539. extra: 311 / 289,
  27540. bottom: 3.8 / 313.7
  27541. }
  27542. },
  27543. },
  27544. [
  27545. {
  27546. name: "Micro",
  27547. height: math.unit(10, "inches")
  27548. },
  27549. {
  27550. name: "Normal",
  27551. height: math.unit(6 + 4 / 12, "feet"),
  27552. default: true
  27553. },
  27554. {
  27555. name: "Large",
  27556. height: math.unit(12, "feet")
  27557. },
  27558. ]
  27559. ))
  27560. characterMakers.push(() => makeCharacter(
  27561. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27562. {
  27563. front: {
  27564. height: math.unit(5 + 7 / 12, "feet"),
  27565. weight: math.unit(185, "lb"),
  27566. name: "Front",
  27567. image: {
  27568. source: "./media/characters/aman-aquila/front.svg",
  27569. extra: 1013 / 976,
  27570. bottom: 45.6 / 1057
  27571. }
  27572. },
  27573. side: {
  27574. height: math.unit(5 + 7 / 12, "feet"),
  27575. weight: math.unit(185, "lb"),
  27576. name: "Side",
  27577. image: {
  27578. source: "./media/characters/aman-aquila/side.svg",
  27579. extra: 1054 / 1011,
  27580. bottom: 15 / 1070
  27581. }
  27582. },
  27583. back: {
  27584. height: math.unit(5 + 7 / 12, "feet"),
  27585. weight: math.unit(185, "lb"),
  27586. name: "Back",
  27587. image: {
  27588. source: "./media/characters/aman-aquila/back.svg",
  27589. extra: 1026 / 970,
  27590. bottom: 12 / 1039
  27591. }
  27592. },
  27593. head: {
  27594. height: math.unit(1.211, "feet"),
  27595. name: "Head",
  27596. image: {
  27597. source: "./media/characters/aman-aquila/head.svg",
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Minimicro",
  27604. height: math.unit(0.057, "inches")
  27605. },
  27606. {
  27607. name: "Micro",
  27608. height: math.unit(7, "inches")
  27609. },
  27610. {
  27611. name: "Mini",
  27612. height: math.unit(3 + 7 / 12, "feet")
  27613. },
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(5 + 7 / 12, "feet"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Macro",
  27621. height: math.unit(157 + 7 / 12, "feet")
  27622. },
  27623. {
  27624. name: "Megamacro",
  27625. height: math.unit(1557 + 7 / 12, "feet")
  27626. },
  27627. {
  27628. name: "Gigamacro",
  27629. height: math.unit(15557 + 7 / 12, "feet")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(3 + 2 / 12, "inches"),
  27638. weight: math.unit(0.3, "ounces"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/hiphae/front.svg",
  27642. extra: 1931 / 1683,
  27643. bottom: 24 / 1955
  27644. }
  27645. },
  27646. },
  27647. [
  27648. {
  27649. name: "Normal",
  27650. height: math.unit(3 + 1 / 2, "inches"),
  27651. default: true
  27652. },
  27653. ]
  27654. ))
  27655. characterMakers.push(() => makeCharacter(
  27656. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27657. {
  27658. front: {
  27659. height: math.unit(5 + 10 / 12, "feet"),
  27660. weight: math.unit(165, "lb"),
  27661. name: "Front",
  27662. image: {
  27663. source: "./media/characters/nicky/front.svg",
  27664. extra: 3144 / 2886,
  27665. bottom: 45.6 / 3192
  27666. }
  27667. },
  27668. back: {
  27669. height: math.unit(5 + 10 / 12, "feet"),
  27670. weight: math.unit(165, "lb"),
  27671. name: "Back",
  27672. image: {
  27673. source: "./media/characters/nicky/back.svg",
  27674. extra: 3055 / 2804,
  27675. bottom: 28.4 / 3087
  27676. }
  27677. },
  27678. frontclothed: {
  27679. height: math.unit(5 + 10 / 12, "feet"),
  27680. weight: math.unit(165, "lb"),
  27681. name: "Front-clothed",
  27682. image: {
  27683. source: "./media/characters/nicky/front-clothed.svg",
  27684. extra: 3184.9 / 2926.9,
  27685. bottom: 86.5 / 3239.9
  27686. }
  27687. },
  27688. foot: {
  27689. height: math.unit(1.16, "feet"),
  27690. name: "Foot",
  27691. image: {
  27692. source: "./media/characters/nicky/foot.svg"
  27693. }
  27694. },
  27695. feet: {
  27696. height: math.unit(1.34, "feet"),
  27697. name: "Feet",
  27698. image: {
  27699. source: "./media/characters/nicky/feet.svg"
  27700. }
  27701. },
  27702. maw: {
  27703. height: math.unit(0.9, "feet"),
  27704. name: "Maw",
  27705. image: {
  27706. source: "./media/characters/nicky/maw.svg"
  27707. }
  27708. },
  27709. },
  27710. [
  27711. {
  27712. name: "Normal",
  27713. height: math.unit(5 + 10 / 12, "feet"),
  27714. default: true
  27715. },
  27716. {
  27717. name: "Macro",
  27718. height: math.unit(60, "feet")
  27719. },
  27720. {
  27721. name: "Megamacro",
  27722. height: math.unit(1, "mile")
  27723. },
  27724. ]
  27725. ))
  27726. characterMakers.push(() => makeCharacter(
  27727. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27728. {
  27729. side: {
  27730. height: math.unit(10, "feet"),
  27731. weight: math.unit(600, "lb"),
  27732. name: "Side",
  27733. image: {
  27734. source: "./media/characters/blair/side.svg",
  27735. bottom: 16.6 / 475,
  27736. extra: 458 / 431
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Micro",
  27743. height: math.unit(8, "inches")
  27744. },
  27745. {
  27746. name: "Normal",
  27747. height: math.unit(10, "feet"),
  27748. default: true
  27749. },
  27750. {
  27751. name: "Macro",
  27752. height: math.unit(180, "feet")
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(5 + 4 / 12, "feet"),
  27761. weight: math.unit(125, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/fisher/front.svg",
  27765. extra: 444 / 390,
  27766. bottom: 2 / 444.8
  27767. }
  27768. },
  27769. },
  27770. [
  27771. {
  27772. name: "Micro",
  27773. height: math.unit(4, "inches")
  27774. },
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(5 + 4 / 12, "feet"),
  27778. default: true
  27779. },
  27780. {
  27781. name: "Macro",
  27782. height: math.unit(100, "feet")
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(6.71, "feet"),
  27791. weight: math.unit(200, "lb"),
  27792. preyCapacity: math.unit(1000000, "people"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/gliss/front.svg",
  27796. extra: 2347 / 2231,
  27797. bottom: 113 / 2462
  27798. }
  27799. },
  27800. hammerspaceSize: {
  27801. height: math.unit(6.71 * 717, "feet"),
  27802. weight: math.unit(200, "lb"),
  27803. preyCapacity: math.unit(1000000, "people"),
  27804. name: "Hammerspace Size",
  27805. image: {
  27806. source: "./media/characters/gliss/front.svg",
  27807. extra: 2347 / 2231,
  27808. bottom: 113 / 2462
  27809. }
  27810. },
  27811. },
  27812. [
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(6.71, "feet"),
  27816. default: true
  27817. },
  27818. ]
  27819. ))
  27820. characterMakers.push(() => makeCharacter(
  27821. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27822. {
  27823. side: {
  27824. height: math.unit(1.44, "m"),
  27825. weight: math.unit(80, "kg"),
  27826. name: "Side",
  27827. image: {
  27828. source: "./media/characters/dune-anderson/side.svg",
  27829. bottom: 49 / 1426
  27830. }
  27831. },
  27832. },
  27833. [
  27834. {
  27835. name: "Wolf-sized",
  27836. height: math.unit(1.44, "meters")
  27837. },
  27838. {
  27839. name: "Normal",
  27840. height: math.unit(5.05, "meters"),
  27841. default: true
  27842. },
  27843. {
  27844. name: "Big",
  27845. height: math.unit(14.4, "meters")
  27846. },
  27847. {
  27848. name: "Huge",
  27849. height: math.unit(144, "meters")
  27850. },
  27851. ]
  27852. ))
  27853. characterMakers.push(() => makeCharacter(
  27854. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27855. {
  27856. front: {
  27857. height: math.unit(6, "feet"),
  27858. weight: math.unit(220, "lb"),
  27859. name: "Front",
  27860. image: {
  27861. source: "./media/characters/hind/front.svg",
  27862. extra: 1912/1787,
  27863. bottom: 52/1964
  27864. }
  27865. },
  27866. back: {
  27867. height: math.unit(6, "feet"),
  27868. weight: math.unit(220, "lb"),
  27869. name: "Back",
  27870. image: {
  27871. source: "./media/characters/hind/back.svg",
  27872. extra: 1901/1794,
  27873. bottom: 26/1927
  27874. }
  27875. },
  27876. },
  27877. [
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(6, "feet"),
  27881. default: true
  27882. },
  27883. ]
  27884. ))
  27885. characterMakers.push(() => makeCharacter(
  27886. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27887. {
  27888. front: {
  27889. height: math.unit(2.1, "meters"),
  27890. weight: math.unit(150, "lb"),
  27891. name: "Front",
  27892. image: {
  27893. source: "./media/characters/tharquench-sizestealer/front.svg",
  27894. extra: 1605/1470,
  27895. bottom: 36/1641
  27896. }
  27897. },
  27898. frontAlt: {
  27899. height: math.unit(2.1, "meters"),
  27900. weight: math.unit(150, "lb"),
  27901. name: "Front (Alt)",
  27902. image: {
  27903. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27904. extra: 2318 / 2063,
  27905. bottom: 93.4 / 2410
  27906. }
  27907. },
  27908. },
  27909. [
  27910. {
  27911. name: "Nano",
  27912. height: math.unit(1, "mm")
  27913. },
  27914. {
  27915. name: "Micro",
  27916. height: math.unit(1, "cm")
  27917. },
  27918. {
  27919. name: "Normal",
  27920. height: math.unit(2.1, "meters"),
  27921. default: true
  27922. },
  27923. ]
  27924. ))
  27925. characterMakers.push(() => makeCharacter(
  27926. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27927. {
  27928. front: {
  27929. height: math.unit(7 + 5 / 12, "feet"),
  27930. weight: math.unit(357, "lb"),
  27931. name: "Front",
  27932. image: {
  27933. source: "./media/characters/solex-draconov/front.svg",
  27934. extra: 1993 / 1865,
  27935. bottom: 117 / 2111
  27936. }
  27937. },
  27938. },
  27939. [
  27940. {
  27941. name: "Natural Height",
  27942. height: math.unit(7 + 5 / 12, "feet"),
  27943. default: true
  27944. },
  27945. {
  27946. name: "Macro",
  27947. height: math.unit(350, "feet")
  27948. },
  27949. {
  27950. name: "Macro+",
  27951. height: math.unit(1000, "feet")
  27952. },
  27953. {
  27954. name: "Megamacro",
  27955. height: math.unit(20, "km")
  27956. },
  27957. {
  27958. name: "Megamacro+",
  27959. height: math.unit(1000, "km")
  27960. },
  27961. {
  27962. name: "Gigamacro",
  27963. height: math.unit(2.5, "Gm")
  27964. },
  27965. {
  27966. name: "Teramacro",
  27967. height: math.unit(15, "Tm")
  27968. },
  27969. {
  27970. name: "Galactic",
  27971. height: math.unit(30, "Zm")
  27972. },
  27973. {
  27974. name: "Universal",
  27975. height: math.unit(21000, "Ym")
  27976. },
  27977. {
  27978. name: "Omniversal",
  27979. height: math.unit(9.861e50, "Ym")
  27980. },
  27981. {
  27982. name: "Existential",
  27983. height: math.unit(1e300, "meters")
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27989. {
  27990. side: {
  27991. height: math.unit(25, "feet"),
  27992. weight: math.unit(90000, "lb"),
  27993. name: "Side",
  27994. image: {
  27995. source: "./media/characters/mandarax/side.svg",
  27996. extra: 614 / 332,
  27997. bottom: 55 / 630
  27998. }
  27999. },
  28000. lounging: {
  28001. height: math.unit(15.4, "feet"),
  28002. weight: math.unit(90000, "lb"),
  28003. name: "Lounging",
  28004. image: {
  28005. source: "./media/characters/mandarax/lounging.svg",
  28006. extra: 817/609,
  28007. bottom: 685/1502
  28008. }
  28009. },
  28010. head: {
  28011. height: math.unit(11.4, "feet"),
  28012. name: "Head",
  28013. image: {
  28014. source: "./media/characters/mandarax/head.svg"
  28015. }
  28016. },
  28017. belly: {
  28018. height: math.unit(33, "feet"),
  28019. name: "Belly",
  28020. preyCapacity: math.unit(500, "people"),
  28021. image: {
  28022. source: "./media/characters/mandarax/belly.svg"
  28023. }
  28024. },
  28025. dick: {
  28026. height: math.unit(8.46, "feet"),
  28027. name: "Dick",
  28028. image: {
  28029. source: "./media/characters/mandarax/dick.svg"
  28030. }
  28031. },
  28032. top: {
  28033. height: math.unit(28, "meters"),
  28034. name: "Top",
  28035. image: {
  28036. source: "./media/characters/mandarax/top.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(25, "feet"),
  28044. default: true
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  28050. {
  28051. front: {
  28052. height: math.unit(5, "feet"),
  28053. weight: math.unit(90, "lb"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/pixil/front.svg",
  28057. extra: 2000 / 1618,
  28058. bottom: 12.3 / 2011
  28059. }
  28060. },
  28061. },
  28062. [
  28063. {
  28064. name: "Normal",
  28065. height: math.unit(5, "feet"),
  28066. default: true
  28067. },
  28068. {
  28069. name: "Megamacro",
  28070. height: math.unit(10, "miles"),
  28071. },
  28072. ]
  28073. ))
  28074. characterMakers.push(() => makeCharacter(
  28075. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28076. {
  28077. front: {
  28078. height: math.unit(7 + 2 / 12, "feet"),
  28079. weight: math.unit(200, "lb"),
  28080. name: "Front",
  28081. image: {
  28082. source: "./media/characters/angel/front.svg",
  28083. extra: 1946/1840,
  28084. bottom: 30/1976
  28085. }
  28086. },
  28087. },
  28088. [
  28089. {
  28090. name: "Normal",
  28091. height: math.unit(7 + 2 / 12, "feet"),
  28092. default: true
  28093. },
  28094. {
  28095. name: "Macro",
  28096. height: math.unit(1000, "feet")
  28097. },
  28098. {
  28099. name: "Megamacro",
  28100. height: math.unit(2, "miles")
  28101. },
  28102. {
  28103. name: "Gigamacro",
  28104. height: math.unit(20, "earths")
  28105. },
  28106. ]
  28107. ))
  28108. characterMakers.push(() => makeCharacter(
  28109. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28110. {
  28111. front: {
  28112. height: math.unit(5, "feet"),
  28113. weight: math.unit(180, "lb"),
  28114. name: "Front",
  28115. image: {
  28116. source: "./media/characters/mekana/front.svg",
  28117. extra: 1671 / 1605,
  28118. bottom: 3.5 / 1691
  28119. }
  28120. },
  28121. side: {
  28122. height: math.unit(5, "feet"),
  28123. weight: math.unit(180, "lb"),
  28124. name: "Side",
  28125. image: {
  28126. source: "./media/characters/mekana/side.svg",
  28127. extra: 1671 / 1605,
  28128. bottom: 3.5 / 1691
  28129. }
  28130. },
  28131. back: {
  28132. height: math.unit(5, "feet"),
  28133. weight: math.unit(180, "lb"),
  28134. name: "Back",
  28135. image: {
  28136. source: "./media/characters/mekana/back.svg",
  28137. extra: 1671 / 1605,
  28138. bottom: 3.5 / 1691
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(5, "feet"),
  28146. default: true
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(4 + 6 / 12, "feet"),
  28155. weight: math.unit(80, "lb"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/pixie/front.svg",
  28159. extra: 1924 / 1825,
  28160. bottom: 22.4 / 1946
  28161. }
  28162. },
  28163. },
  28164. [
  28165. {
  28166. name: "Normal",
  28167. height: math.unit(4 + 6 / 12, "feet"),
  28168. default: true
  28169. },
  28170. {
  28171. name: "Macro",
  28172. height: math.unit(40, "feet")
  28173. },
  28174. ]
  28175. ))
  28176. characterMakers.push(() => makeCharacter(
  28177. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28178. {
  28179. front: {
  28180. height: math.unit(2.1, "meters"),
  28181. weight: math.unit(200, "lb"),
  28182. name: "Front",
  28183. image: {
  28184. source: "./media/characters/the-lascivious/front.svg",
  28185. extra: 1 / 0.893,
  28186. bottom: 3.5 / 573.7
  28187. }
  28188. },
  28189. },
  28190. [
  28191. {
  28192. name: "Human Scale",
  28193. height: math.unit(2.1, "meters")
  28194. },
  28195. {
  28196. name: "Wolxi Scale",
  28197. height: math.unit(46.2, "m"),
  28198. default: true
  28199. },
  28200. {
  28201. name: "Boinker of Buildings",
  28202. height: math.unit(10, "km")
  28203. },
  28204. {
  28205. name: "Shagger of Skyscrapers",
  28206. height: math.unit(40, "km")
  28207. },
  28208. {
  28209. name: "Banger of Boroughs",
  28210. height: math.unit(4000, "km")
  28211. },
  28212. {
  28213. name: "Screwer of States",
  28214. height: math.unit(100000, "km")
  28215. },
  28216. {
  28217. name: "Pounder of Planets",
  28218. height: math.unit(2000000, "km")
  28219. },
  28220. ]
  28221. ))
  28222. characterMakers.push(() => makeCharacter(
  28223. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28224. {
  28225. front: {
  28226. height: math.unit(6, "feet"),
  28227. weight: math.unit(150, "lb"),
  28228. name: "Front",
  28229. image: {
  28230. source: "./media/characters/aj/front.svg",
  28231. extra: 2039 / 1562,
  28232. bottom: 40 / 2079
  28233. }
  28234. },
  28235. },
  28236. [
  28237. {
  28238. name: "Normal",
  28239. height: math.unit(11 + 6 / 12, "feet"),
  28240. default: true
  28241. },
  28242. {
  28243. name: "Megamacro",
  28244. height: math.unit(60, "megameters")
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28250. {
  28251. side: {
  28252. height: math.unit(31 + 8 / 12, "feet"),
  28253. weight: math.unit(75000, "kg"),
  28254. name: "Side",
  28255. image: {
  28256. source: "./media/characters/koros/side.svg",
  28257. extra: 1442 / 1297,
  28258. bottom: 122.7 / 1562
  28259. }
  28260. },
  28261. dicksKingsCrown: {
  28262. height: math.unit(6, "feet"),
  28263. name: "Dicks (King's Crown)",
  28264. image: {
  28265. source: "./media/characters/koros/dicks-kings-crown.svg"
  28266. }
  28267. },
  28268. dicksTailSet: {
  28269. height: math.unit(3, "feet"),
  28270. name: "Dicks (Tail Set)",
  28271. image: {
  28272. source: "./media/characters/koros/dicks-tail-set.svg"
  28273. }
  28274. },
  28275. dickCumming: {
  28276. height: math.unit(7.98, "feet"),
  28277. name: "Dick (Cumming)",
  28278. image: {
  28279. source: "./media/characters/koros/dick-cumming.svg"
  28280. }
  28281. },
  28282. dicksBack: {
  28283. height: math.unit(5.9, "feet"),
  28284. name: "Dicks (Back)",
  28285. image: {
  28286. source: "./media/characters/koros/dicks-back.svg"
  28287. }
  28288. },
  28289. dicksFront: {
  28290. height: math.unit(3.72, "feet"),
  28291. name: "Dicks (Front)",
  28292. image: {
  28293. source: "./media/characters/koros/dicks-front.svg"
  28294. }
  28295. },
  28296. dicksPeeking: {
  28297. height: math.unit(3.0, "feet"),
  28298. name: "Dicks (Peeking)",
  28299. image: {
  28300. source: "./media/characters/koros/dicks-peeking.svg"
  28301. }
  28302. },
  28303. eye: {
  28304. height: math.unit(1.7, "feet"),
  28305. name: "Eye",
  28306. image: {
  28307. source: "./media/characters/koros/eye.svg"
  28308. }
  28309. },
  28310. headFront: {
  28311. height: math.unit(11.69, "feet"),
  28312. name: "Head (Front)",
  28313. image: {
  28314. source: "./media/characters/koros/head-front.svg"
  28315. }
  28316. },
  28317. headSide: {
  28318. height: math.unit(14, "feet"),
  28319. name: "Head (Side)",
  28320. image: {
  28321. source: "./media/characters/koros/head-side.svg"
  28322. }
  28323. },
  28324. leg: {
  28325. height: math.unit(17, "feet"),
  28326. name: "Leg",
  28327. image: {
  28328. source: "./media/characters/koros/leg.svg"
  28329. }
  28330. },
  28331. mawSide: {
  28332. height: math.unit(12.8, "feet"),
  28333. name: "Maw (Side)",
  28334. image: {
  28335. source: "./media/characters/koros/maw-side.svg"
  28336. }
  28337. },
  28338. mawSpitting: {
  28339. height: math.unit(17, "feet"),
  28340. name: "Maw (Spitting)",
  28341. image: {
  28342. source: "./media/characters/koros/maw-spitting.svg"
  28343. }
  28344. },
  28345. slit: {
  28346. height: math.unit(2.8, "feet"),
  28347. name: "Slit",
  28348. image: {
  28349. source: "./media/characters/koros/slit.svg"
  28350. }
  28351. },
  28352. stomach: {
  28353. height: math.unit(6.8, "feet"),
  28354. preyCapacity: math.unit(20, "people"),
  28355. name: "Stomach",
  28356. image: {
  28357. source: "./media/characters/koros/stomach.svg"
  28358. }
  28359. },
  28360. wingspanBottom: {
  28361. height: math.unit(114, "feet"),
  28362. name: "Wingspan (Bottom)",
  28363. image: {
  28364. source: "./media/characters/koros/wingspan-bottom.svg"
  28365. }
  28366. },
  28367. wingspanTop: {
  28368. height: math.unit(104, "feet"),
  28369. name: "Wingspan (Top)",
  28370. image: {
  28371. source: "./media/characters/koros/wingspan-top.svg"
  28372. }
  28373. },
  28374. },
  28375. [
  28376. {
  28377. name: "Normal",
  28378. height: math.unit(31 + 8 / 12, "feet"),
  28379. default: true
  28380. },
  28381. ]
  28382. ))
  28383. characterMakers.push(() => makeCharacter(
  28384. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28385. {
  28386. front: {
  28387. height: math.unit(18 + 5 / 12, "feet"),
  28388. weight: math.unit(3750, "kg"),
  28389. name: "Front",
  28390. image: {
  28391. source: "./media/characters/vexx/front.svg",
  28392. extra: 426 / 396,
  28393. bottom: 31.5 / 458
  28394. }
  28395. },
  28396. maw: {
  28397. height: math.unit(6, "feet"),
  28398. name: "Maw",
  28399. image: {
  28400. source: "./media/characters/vexx/maw.svg"
  28401. }
  28402. },
  28403. },
  28404. [
  28405. {
  28406. name: "Normal",
  28407. height: math.unit(18 + 5 / 12, "feet"),
  28408. default: true
  28409. },
  28410. ]
  28411. ))
  28412. characterMakers.push(() => makeCharacter(
  28413. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28414. {
  28415. front: {
  28416. height: math.unit(17 + 6 / 12, "feet"),
  28417. weight: math.unit(150, "lb"),
  28418. name: "Front",
  28419. image: {
  28420. source: "./media/characters/baadra/front.svg",
  28421. extra: 1694/1553,
  28422. bottom: 179/1873
  28423. }
  28424. },
  28425. frontAlt: {
  28426. height: math.unit(17 + 6 / 12, "feet"),
  28427. weight: math.unit(150, "lb"),
  28428. name: "Front (Alt)",
  28429. image: {
  28430. source: "./media/characters/baadra/front-alt.svg",
  28431. extra: 3137 / 2890,
  28432. bottom: 168.4 / 3305
  28433. }
  28434. },
  28435. back: {
  28436. height: math.unit(17 + 6 / 12, "feet"),
  28437. weight: math.unit(150, "lb"),
  28438. name: "Back",
  28439. image: {
  28440. source: "./media/characters/baadra/back.svg",
  28441. extra: 3142 / 2890,
  28442. bottom: 220 / 3371
  28443. }
  28444. },
  28445. head: {
  28446. height: math.unit(5.45, "feet"),
  28447. name: "Head",
  28448. image: {
  28449. source: "./media/characters/baadra/head.svg"
  28450. }
  28451. },
  28452. headAngry: {
  28453. height: math.unit(4.95, "feet"),
  28454. name: "Head (Angry)",
  28455. image: {
  28456. source: "./media/characters/baadra/head-angry.svg"
  28457. }
  28458. },
  28459. headOpen: {
  28460. height: math.unit(6, "feet"),
  28461. name: "Head (Open)",
  28462. image: {
  28463. source: "./media/characters/baadra/head-open.svg"
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(17 + 6 / 12, "feet"),
  28471. default: true
  28472. },
  28473. ]
  28474. ))
  28475. characterMakers.push(() => makeCharacter(
  28476. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28477. {
  28478. front: {
  28479. height: math.unit(7 + 3 / 12, "feet"),
  28480. weight: math.unit(180, "lb"),
  28481. name: "Front",
  28482. image: {
  28483. source: "./media/characters/juri/front.svg",
  28484. extra: 1401 / 1237,
  28485. bottom: 18.5 / 1418
  28486. }
  28487. },
  28488. side: {
  28489. height: math.unit(7 + 3 / 12, "feet"),
  28490. weight: math.unit(180, "lb"),
  28491. name: "Side",
  28492. image: {
  28493. source: "./media/characters/juri/side.svg",
  28494. extra: 1424 / 1242,
  28495. bottom: 18.5 / 1447
  28496. }
  28497. },
  28498. sitting: {
  28499. height: math.unit(6, "feet"),
  28500. weight: math.unit(180, "lb"),
  28501. name: "Sitting",
  28502. image: {
  28503. source: "./media/characters/juri/sitting.svg",
  28504. extra: 1270 / 1143,
  28505. bottom: 100 / 1343
  28506. }
  28507. },
  28508. back: {
  28509. height: math.unit(7 + 3 / 12, "feet"),
  28510. weight: math.unit(180, "lb"),
  28511. name: "Back",
  28512. image: {
  28513. source: "./media/characters/juri/back.svg",
  28514. extra: 1377 / 1240,
  28515. bottom: 23.7 / 1405
  28516. }
  28517. },
  28518. maw: {
  28519. height: math.unit(2.8, "feet"),
  28520. name: "Maw",
  28521. image: {
  28522. source: "./media/characters/juri/maw.svg"
  28523. }
  28524. },
  28525. stomach: {
  28526. height: math.unit(0.89, "feet"),
  28527. preyCapacity: math.unit(4, "liters"),
  28528. name: "Stomach",
  28529. image: {
  28530. source: "./media/characters/juri/stomach.svg"
  28531. }
  28532. },
  28533. },
  28534. [
  28535. {
  28536. name: "Normal",
  28537. height: math.unit(7 + 3 / 12, "feet"),
  28538. default: true
  28539. },
  28540. ]
  28541. ))
  28542. characterMakers.push(() => makeCharacter(
  28543. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28544. {
  28545. fox: {
  28546. height: math.unit(5 + 6 / 12, "feet"),
  28547. weight: math.unit(140, "lb"),
  28548. name: "Fox",
  28549. image: {
  28550. source: "./media/characters/maxene-sita/fox.svg",
  28551. extra: 146 / 138,
  28552. bottom: 2.1 / 148.19
  28553. }
  28554. },
  28555. foxLaying: {
  28556. height: math.unit(1.70, "feet"),
  28557. weight: math.unit(140, "lb"),
  28558. name: "Fox (Laying)",
  28559. image: {
  28560. source: "./media/characters/maxene-sita/fox-laying.svg",
  28561. extra: 910 / 572,
  28562. bottom: 71 / 981
  28563. }
  28564. },
  28565. kitsune: {
  28566. height: math.unit(10, "feet"),
  28567. weight: math.unit(800, "lb"),
  28568. name: "Kitsune",
  28569. image: {
  28570. source: "./media/characters/maxene-sita/kitsune.svg",
  28571. extra: 185 / 176,
  28572. bottom: 4.7 / 189.9
  28573. }
  28574. },
  28575. hellhound: {
  28576. height: math.unit(10, "feet"),
  28577. weight: math.unit(700, "lb"),
  28578. name: "Hellhound",
  28579. image: {
  28580. source: "./media/characters/maxene-sita/hellhound.svg",
  28581. extra: 1600 / 1545,
  28582. bottom: 81 / 1681
  28583. }
  28584. },
  28585. },
  28586. [
  28587. {
  28588. name: "Normal",
  28589. height: math.unit(5 + 6 / 12, "feet"),
  28590. default: true
  28591. },
  28592. ]
  28593. ))
  28594. characterMakers.push(() => makeCharacter(
  28595. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28596. {
  28597. front: {
  28598. height: math.unit(3 + 4 / 12, "feet"),
  28599. weight: math.unit(70, "lb"),
  28600. name: "Front",
  28601. image: {
  28602. source: "./media/characters/maia/front.svg",
  28603. extra: 227 / 219.5,
  28604. bottom: 40 / 267
  28605. }
  28606. },
  28607. back: {
  28608. height: math.unit(3 + 4 / 12, "feet"),
  28609. weight: math.unit(70, "lb"),
  28610. name: "Back",
  28611. image: {
  28612. source: "./media/characters/maia/back.svg",
  28613. extra: 237 / 225
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(3 + 4 / 12, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(5 + 10 / 12, "feet"),
  28630. weight: math.unit(197, "lb"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/jabaro/front.svg",
  28634. extra: 225 / 216,
  28635. bottom: 5.06 / 230
  28636. }
  28637. },
  28638. back: {
  28639. height: math.unit(5 + 10 / 12, "feet"),
  28640. weight: math.unit(197, "lb"),
  28641. name: "Back",
  28642. image: {
  28643. source: "./media/characters/jabaro/back.svg",
  28644. extra: 225 / 219,
  28645. bottom: 1.9 / 227
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(5 + 10 / 12, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(5 + 8 / 12, "feet"),
  28662. weight: math.unit(139, "lb"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/risa/front.svg",
  28666. extra: 270 / 260,
  28667. bottom: 11.2 / 282
  28668. }
  28669. },
  28670. back: {
  28671. height: math.unit(5 + 8 / 12, "feet"),
  28672. weight: math.unit(139, "lb"),
  28673. name: "Back",
  28674. image: {
  28675. source: "./media/characters/risa/back.svg",
  28676. extra: 264 / 255,
  28677. bottom: 4 / 268
  28678. }
  28679. },
  28680. },
  28681. [
  28682. {
  28683. name: "Normal",
  28684. height: math.unit(5 + 8 / 12, "feet"),
  28685. default: true
  28686. },
  28687. ]
  28688. ))
  28689. characterMakers.push(() => makeCharacter(
  28690. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28691. {
  28692. front: {
  28693. height: math.unit(2 + 11 / 12, "feet"),
  28694. weight: math.unit(30, "lb"),
  28695. name: "Front",
  28696. image: {
  28697. source: "./media/characters/weatley/front.svg",
  28698. bottom: 10.7 / 414,
  28699. extra: 403.5 / 362
  28700. }
  28701. },
  28702. back: {
  28703. height: math.unit(2 + 11 / 12, "feet"),
  28704. weight: math.unit(30, "lb"),
  28705. name: "Back",
  28706. image: {
  28707. source: "./media/characters/weatley/back.svg",
  28708. bottom: 10.7 / 414,
  28709. extra: 403.5 / 362
  28710. }
  28711. },
  28712. },
  28713. [
  28714. {
  28715. name: "Normal",
  28716. height: math.unit(2 + 11 / 12, "feet"),
  28717. default: true
  28718. },
  28719. ]
  28720. ))
  28721. characterMakers.push(() => makeCharacter(
  28722. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28723. {
  28724. front: {
  28725. height: math.unit(5 + 2 / 12, "feet"),
  28726. weight: math.unit(50, "kg"),
  28727. name: "Front",
  28728. image: {
  28729. source: "./media/characters/mercury-crescent/front.svg",
  28730. extra: 1088 / 1033,
  28731. bottom: 18.9 / 1109
  28732. }
  28733. },
  28734. },
  28735. [
  28736. {
  28737. name: "Normal",
  28738. height: math.unit(5 + 2 / 12, "feet"),
  28739. default: true
  28740. },
  28741. ]
  28742. ))
  28743. characterMakers.push(() => makeCharacter(
  28744. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28745. {
  28746. front: {
  28747. height: math.unit(2, "feet"),
  28748. weight: math.unit(15, "kg"),
  28749. name: "Front",
  28750. image: {
  28751. source: "./media/characters/diamond-jones/front.svg",
  28752. extra: 727/723,
  28753. bottom: 46/773
  28754. }
  28755. },
  28756. },
  28757. [
  28758. {
  28759. name: "Normal",
  28760. height: math.unit(2, "feet"),
  28761. default: true
  28762. },
  28763. ]
  28764. ))
  28765. characterMakers.push(() => makeCharacter(
  28766. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28767. {
  28768. front: {
  28769. height: math.unit(3, "feet"),
  28770. weight: math.unit(30, "kg"),
  28771. name: "Front",
  28772. image: {
  28773. source: "./media/characters/sweet-bit/front.svg",
  28774. extra: 675 / 567,
  28775. bottom: 27.7 / 703
  28776. }
  28777. },
  28778. },
  28779. [
  28780. {
  28781. name: "Normal",
  28782. height: math.unit(3, "feet"),
  28783. default: true
  28784. },
  28785. ]
  28786. ))
  28787. characterMakers.push(() => makeCharacter(
  28788. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28789. {
  28790. side: {
  28791. height: math.unit(9.178, "feet"),
  28792. weight: math.unit(500, "lb"),
  28793. name: "Side",
  28794. image: {
  28795. source: "./media/characters/umbrazen/side.svg",
  28796. extra: 1730 / 1473,
  28797. bottom: 34.6 / 1765
  28798. }
  28799. },
  28800. },
  28801. [
  28802. {
  28803. name: "Normal",
  28804. height: math.unit(9.178, "feet"),
  28805. default: true
  28806. },
  28807. ]
  28808. ))
  28809. characterMakers.push(() => makeCharacter(
  28810. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28811. {
  28812. front: {
  28813. height: math.unit(10, "feet"),
  28814. weight: math.unit(750, "lb"),
  28815. name: "Front",
  28816. image: {
  28817. source: "./media/characters/arlist/front.svg",
  28818. extra: 961 / 778,
  28819. bottom: 6.2 / 986
  28820. }
  28821. },
  28822. },
  28823. [
  28824. {
  28825. name: "Normal",
  28826. height: math.unit(10, "feet"),
  28827. default: true
  28828. },
  28829. ]
  28830. ))
  28831. characterMakers.push(() => makeCharacter(
  28832. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28833. {
  28834. front: {
  28835. height: math.unit(5 + 1 / 12, "feet"),
  28836. weight: math.unit(110, "lb"),
  28837. name: "Front",
  28838. image: {
  28839. source: "./media/characters/aradel/front.svg",
  28840. extra: 324 / 303,
  28841. bottom: 3.6 / 329.4
  28842. }
  28843. },
  28844. },
  28845. [
  28846. {
  28847. name: "Normal",
  28848. height: math.unit(5 + 1 / 12, "feet"),
  28849. default: true
  28850. },
  28851. ]
  28852. ))
  28853. characterMakers.push(() => makeCharacter(
  28854. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28855. {
  28856. dressed: {
  28857. height: math.unit(3 + 8 / 12, "feet"),
  28858. weight: math.unit(50, "lb"),
  28859. name: "Dressed",
  28860. image: {
  28861. source: "./media/characters/serryn/dressed.svg",
  28862. extra: 1792 / 1656,
  28863. bottom: 43.5 / 1840
  28864. }
  28865. },
  28866. nude: {
  28867. height: math.unit(3 + 8 / 12, "feet"),
  28868. weight: math.unit(50, "lb"),
  28869. name: "Nude",
  28870. image: {
  28871. source: "./media/characters/serryn/nude.svg",
  28872. extra: 1792 / 1656,
  28873. bottom: 43.5 / 1840
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Normal",
  28880. height: math.unit(3 + 8 / 12, "feet"),
  28881. default: true
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28887. {
  28888. front: {
  28889. height: math.unit(7 + 10 / 12, "feet"),
  28890. weight: math.unit(255, "lb"),
  28891. name: "Front",
  28892. image: {
  28893. source: "./media/characters/xavier-thyme/front.svg",
  28894. extra: 3733 / 3642,
  28895. bottom: 131 / 3869
  28896. }
  28897. },
  28898. frontRaven: {
  28899. height: math.unit(7 + 10 / 12, "feet"),
  28900. weight: math.unit(255, "lb"),
  28901. name: "Front (Raven)",
  28902. image: {
  28903. source: "./media/characters/xavier-thyme/front-raven.svg",
  28904. extra: 4385 / 3642,
  28905. bottom: 131 / 4517
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(7 + 10 / 12, "feet"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(1.6, "m"),
  28922. weight: math.unit(50, "kg"),
  28923. name: "Front",
  28924. image: {
  28925. source: "./media/characters/kiki/front.svg",
  28926. extra: 4682 / 3610,
  28927. bottom: 115 / 4777
  28928. }
  28929. },
  28930. },
  28931. [
  28932. {
  28933. name: "Normal",
  28934. height: math.unit(1.6, "meters"),
  28935. default: true
  28936. },
  28937. ]
  28938. ))
  28939. characterMakers.push(() => makeCharacter(
  28940. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28941. {
  28942. front: {
  28943. height: math.unit(50, "m"),
  28944. weight: math.unit(500, "tonnes"),
  28945. name: "Front",
  28946. image: {
  28947. source: "./media/characters/ryoko/front.svg",
  28948. extra: 4632 / 3926,
  28949. bottom: 193 / 4823
  28950. }
  28951. },
  28952. },
  28953. [
  28954. {
  28955. name: "Normal",
  28956. height: math.unit(50, "meters"),
  28957. default: true
  28958. },
  28959. ]
  28960. ))
  28961. characterMakers.push(() => makeCharacter(
  28962. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28963. {
  28964. front: {
  28965. height: math.unit(30, "m"),
  28966. weight: math.unit(22, "tonnes"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/elio/front.svg",
  28970. extra: 4582 / 3720,
  28971. bottom: 236 / 4828
  28972. }
  28973. },
  28974. },
  28975. [
  28976. {
  28977. name: "Normal",
  28978. height: math.unit(30, "meters"),
  28979. default: true
  28980. },
  28981. ]
  28982. ))
  28983. characterMakers.push(() => makeCharacter(
  28984. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28985. {
  28986. front: {
  28987. height: math.unit(6 + 3 / 12, "feet"),
  28988. weight: math.unit(120, "lb"),
  28989. name: "Front",
  28990. image: {
  28991. source: "./media/characters/azura/front.svg",
  28992. extra: 1149 / 1135,
  28993. bottom: 45 / 1194
  28994. }
  28995. },
  28996. frontClothed: {
  28997. height: math.unit(6 + 3 / 12, "feet"),
  28998. weight: math.unit(120, "lb"),
  28999. name: "Front (Clothed)",
  29000. image: {
  29001. source: "./media/characters/azura/front-clothed.svg",
  29002. extra: 1149 / 1135,
  29003. bottom: 45 / 1194
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Normal",
  29010. height: math.unit(6 + 3 / 12, "feet"),
  29011. default: true
  29012. },
  29013. {
  29014. name: "Macro",
  29015. height: math.unit(20 + 6 / 12, "feet")
  29016. },
  29017. {
  29018. name: "Megamacro",
  29019. height: math.unit(12, "miles")
  29020. },
  29021. {
  29022. name: "Gigamacro",
  29023. height: math.unit(10000, "miles")
  29024. },
  29025. {
  29026. name: "Teramacro",
  29027. height: math.unit(900000, "miles")
  29028. },
  29029. ]
  29030. ))
  29031. characterMakers.push(() => makeCharacter(
  29032. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  29033. {
  29034. front: {
  29035. height: math.unit(12, "feet"),
  29036. weight: math.unit(1, "ton"),
  29037. capacity: math.unit(660000, "gallons"),
  29038. name: "Front",
  29039. image: {
  29040. source: "./media/characters/zeus/front.svg",
  29041. extra: 5005 / 4717,
  29042. bottom: 363 / 5388
  29043. }
  29044. },
  29045. },
  29046. [
  29047. {
  29048. name: "Normal",
  29049. height: math.unit(12, "feet")
  29050. },
  29051. {
  29052. name: "Preferred Size",
  29053. height: math.unit(0.5, "miles"),
  29054. default: true
  29055. },
  29056. {
  29057. name: "Giga Horse",
  29058. height: math.unit(300, "miles")
  29059. },
  29060. {
  29061. name: "Riding Planets",
  29062. height: math.unit(30, "megameters")
  29063. },
  29064. {
  29065. name: "Cosmic Giant",
  29066. height: math.unit(3, "zettameters")
  29067. },
  29068. {
  29069. name: "Breeding God",
  29070. height: math.unit(9.92e22, "yottameters")
  29071. },
  29072. ]
  29073. ))
  29074. characterMakers.push(() => makeCharacter(
  29075. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29076. {
  29077. side: {
  29078. height: math.unit(9, "feet"),
  29079. weight: math.unit(1500, "kg"),
  29080. name: "Side",
  29081. image: {
  29082. source: "./media/characters/fang/side.svg",
  29083. extra: 924 / 866,
  29084. bottom: 47.5 / 972.3
  29085. }
  29086. },
  29087. },
  29088. [
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(9, "feet"),
  29092. default: true
  29093. },
  29094. {
  29095. name: "Macro",
  29096. height: math.unit(75 + 6 / 12, "feet")
  29097. },
  29098. {
  29099. name: "Teramacro",
  29100. height: math.unit(50000, "miles")
  29101. },
  29102. ]
  29103. ))
  29104. characterMakers.push(() => makeCharacter(
  29105. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29106. {
  29107. front: {
  29108. height: math.unit(10, "feet"),
  29109. weight: math.unit(2, "tons"),
  29110. name: "Front",
  29111. image: {
  29112. source: "./media/characters/rekhit/front.svg",
  29113. extra: 2796 / 2590,
  29114. bottom: 225 / 3022
  29115. }
  29116. },
  29117. },
  29118. [
  29119. {
  29120. name: "Normal",
  29121. height: math.unit(10, "feet"),
  29122. default: true
  29123. },
  29124. {
  29125. name: "Macro",
  29126. height: math.unit(500, "feet")
  29127. },
  29128. ]
  29129. ))
  29130. characterMakers.push(() => makeCharacter(
  29131. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29132. {
  29133. front: {
  29134. height: math.unit(7 + 6.451 / 12, "feet"),
  29135. weight: math.unit(310, "lb"),
  29136. name: "Front",
  29137. image: {
  29138. source: "./media/characters/dahlia-verrick/front.svg",
  29139. extra: 1488 / 1365,
  29140. bottom: 6.2 / 1495
  29141. }
  29142. },
  29143. back: {
  29144. height: math.unit(7 + 6.451 / 12, "feet"),
  29145. weight: math.unit(310, "lb"),
  29146. name: "Back",
  29147. image: {
  29148. source: "./media/characters/dahlia-verrick/back.svg",
  29149. extra: 1472 / 1351,
  29150. bottom: 5.28 / 1477
  29151. }
  29152. },
  29153. frontBusiness: {
  29154. height: math.unit(7 + 6.451 / 12, "feet"),
  29155. weight: math.unit(200, "lb"),
  29156. name: "Front (Business)",
  29157. image: {
  29158. source: "./media/characters/dahlia-verrick/front-business.svg",
  29159. extra: 1478 / 1381,
  29160. bottom: 5.5 / 1484
  29161. }
  29162. },
  29163. frontCasual: {
  29164. height: math.unit(7 + 6.451 / 12, "feet"),
  29165. weight: math.unit(200, "lb"),
  29166. name: "Front (Casual)",
  29167. image: {
  29168. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29169. extra: 1478 / 1381,
  29170. bottom: 5.5 / 1484
  29171. }
  29172. },
  29173. },
  29174. [
  29175. {
  29176. name: "Travel-Sized",
  29177. height: math.unit(7.45, "inches")
  29178. },
  29179. {
  29180. name: "Normal",
  29181. height: math.unit(7 + 6.451 / 12, "feet"),
  29182. default: true
  29183. },
  29184. {
  29185. name: "Hitting the Town",
  29186. height: math.unit(37 + 8 / 12, "feet")
  29187. },
  29188. {
  29189. name: "Stomp in the Suburbs",
  29190. height: math.unit(964 + 9.728 / 12, "feet")
  29191. },
  29192. {
  29193. name: "Sit on the City",
  29194. height: math.unit(61747 + 10.592 / 12, "feet")
  29195. },
  29196. {
  29197. name: "Glomp the Globe",
  29198. height: math.unit(252919327 + 4.832 / 12, "feet")
  29199. },
  29200. ]
  29201. ))
  29202. characterMakers.push(() => makeCharacter(
  29203. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29204. {
  29205. front: {
  29206. height: math.unit(6 + 4 / 12, "feet"),
  29207. weight: math.unit(320, "lb"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/balina-mahigan/front.svg",
  29211. extra: 447 / 428,
  29212. bottom: 18 / 466
  29213. }
  29214. },
  29215. back: {
  29216. height: math.unit(6 + 4 / 12, "feet"),
  29217. weight: math.unit(320, "lb"),
  29218. name: "Back",
  29219. image: {
  29220. source: "./media/characters/balina-mahigan/back.svg",
  29221. extra: 445 / 428,
  29222. bottom: 4.07 / 448
  29223. }
  29224. },
  29225. arm: {
  29226. height: math.unit(1.88, "feet"),
  29227. name: "Arm",
  29228. image: {
  29229. source: "./media/characters/balina-mahigan/arm.svg"
  29230. }
  29231. },
  29232. backPort: {
  29233. height: math.unit(0.685, "feet"),
  29234. name: "Back Port",
  29235. image: {
  29236. source: "./media/characters/balina-mahigan/back-port.svg"
  29237. }
  29238. },
  29239. hoofpaw: {
  29240. height: math.unit(1.41, "feet"),
  29241. name: "Hoofpaw",
  29242. image: {
  29243. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29244. }
  29245. },
  29246. leftHandBack: {
  29247. height: math.unit(0.938, "feet"),
  29248. name: "Left Hand (Back)",
  29249. image: {
  29250. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29251. }
  29252. },
  29253. leftHandFront: {
  29254. height: math.unit(0.938, "feet"),
  29255. name: "Left Hand (Front)",
  29256. image: {
  29257. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29258. }
  29259. },
  29260. rightHandBack: {
  29261. height: math.unit(0.95, "feet"),
  29262. name: "Right Hand (Back)",
  29263. image: {
  29264. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29265. }
  29266. },
  29267. rightHandFront: {
  29268. height: math.unit(0.95, "feet"),
  29269. name: "Right Hand (Front)",
  29270. image: {
  29271. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Normal",
  29278. height: math.unit(6 + 4 / 12, "feet"),
  29279. default: true
  29280. },
  29281. ]
  29282. ))
  29283. characterMakers.push(() => makeCharacter(
  29284. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29285. {
  29286. front: {
  29287. height: math.unit(6, "feet"),
  29288. weight: math.unit(320, "lb"),
  29289. name: "Front",
  29290. image: {
  29291. source: "./media/characters/balina-mejeri/front.svg",
  29292. extra: 517 / 488,
  29293. bottom: 44.2 / 561
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(6 + 4 / 12, "feet")
  29301. },
  29302. {
  29303. name: "Business",
  29304. height: math.unit(155, "feet"),
  29305. default: true
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29311. {
  29312. kneeling: {
  29313. height: math.unit(6 + 4 / 12, "feet"),
  29314. weight: math.unit(300 * 20, "lb"),
  29315. name: "Kneeling",
  29316. image: {
  29317. source: "./media/characters/balbarian/kneeling.svg",
  29318. extra: 922 / 862,
  29319. bottom: 42.4 / 965
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(6 + 4 / 12, "feet")
  29327. },
  29328. {
  29329. name: "Treasured",
  29330. height: math.unit(18 + 9 / 12, "feet"),
  29331. default: true
  29332. },
  29333. {
  29334. name: "Macro",
  29335. height: math.unit(900, "feet")
  29336. },
  29337. ]
  29338. ))
  29339. characterMakers.push(() => makeCharacter(
  29340. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29341. {
  29342. front: {
  29343. height: math.unit(6 + 4 / 12, "feet"),
  29344. weight: math.unit(325, "lb"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/balina-amarini/front.svg",
  29348. extra: 415 / 403,
  29349. bottom: 19 / 433.4
  29350. }
  29351. },
  29352. back: {
  29353. height: math.unit(6 + 4 / 12, "feet"),
  29354. weight: math.unit(325, "lb"),
  29355. name: "Back",
  29356. image: {
  29357. source: "./media/characters/balina-amarini/back.svg",
  29358. extra: 415 / 403,
  29359. bottom: 13.5 / 432
  29360. }
  29361. },
  29362. overdrive: {
  29363. height: math.unit(6 + 4 / 12, "feet"),
  29364. weight: math.unit(400, "lb"),
  29365. name: "Overdrive",
  29366. image: {
  29367. source: "./media/characters/balina-amarini/overdrive.svg",
  29368. extra: 269 / 259,
  29369. bottom: 12 / 282
  29370. }
  29371. },
  29372. },
  29373. [
  29374. {
  29375. name: "Boom",
  29376. height: math.unit(9 + 10 / 12, "feet"),
  29377. default: true
  29378. },
  29379. {
  29380. name: "Macro",
  29381. height: math.unit(280, "feet")
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29387. {
  29388. goddess: {
  29389. height: math.unit(600, "feet"),
  29390. weight: math.unit(2000000, "tons"),
  29391. name: "Goddess",
  29392. image: {
  29393. source: "./media/characters/lady-kubwa/goddess.svg",
  29394. extra: 1240.5 / 1223,
  29395. bottom: 22 / 1263
  29396. }
  29397. },
  29398. goddesser: {
  29399. height: math.unit(900, "feet"),
  29400. weight: math.unit(20000000, "lb"),
  29401. name: "Goddess-er",
  29402. image: {
  29403. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29404. extra: 899 / 888,
  29405. bottom: 12.6 / 912
  29406. }
  29407. },
  29408. },
  29409. [
  29410. {
  29411. name: "Macro",
  29412. height: math.unit(600, "feet"),
  29413. default: true
  29414. },
  29415. {
  29416. name: "Megamacro",
  29417. height: math.unit(250, "miles")
  29418. },
  29419. ]
  29420. ))
  29421. characterMakers.push(() => makeCharacter(
  29422. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29423. {
  29424. front: {
  29425. height: math.unit(7 + 7 / 12, "feet"),
  29426. weight: math.unit(250, "lb"),
  29427. name: "Front",
  29428. image: {
  29429. source: "./media/characters/tala-grovehorn/front.svg",
  29430. extra: 2636 / 2525,
  29431. bottom: 147 / 2781
  29432. }
  29433. },
  29434. back: {
  29435. height: math.unit(7 + 7 / 12, "feet"),
  29436. weight: math.unit(250, "lb"),
  29437. name: "Back",
  29438. image: {
  29439. source: "./media/characters/tala-grovehorn/back.svg",
  29440. extra: 2635 / 2539,
  29441. bottom: 100 / 2732.8
  29442. }
  29443. },
  29444. mouth: {
  29445. height: math.unit(1.15, "feet"),
  29446. name: "Mouth",
  29447. image: {
  29448. source: "./media/characters/tala-grovehorn/mouth.svg"
  29449. }
  29450. },
  29451. dick: {
  29452. height: math.unit(2.36, "feet"),
  29453. name: "Dick",
  29454. image: {
  29455. source: "./media/characters/tala-grovehorn/dick.svg"
  29456. }
  29457. },
  29458. slit: {
  29459. height: math.unit(0.61, "feet"),
  29460. name: "Slit",
  29461. image: {
  29462. source: "./media/characters/tala-grovehorn/slit.svg"
  29463. }
  29464. },
  29465. },
  29466. [
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(7 + 7 / 12, "feet"),
  29474. weight: math.unit(225, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/epona/front.svg",
  29478. extra: 2445 / 2290,
  29479. bottom: 251 / 2696
  29480. }
  29481. },
  29482. back: {
  29483. height: math.unit(7 + 7 / 12, "feet"),
  29484. weight: math.unit(225, "lb"),
  29485. name: "Back",
  29486. image: {
  29487. source: "./media/characters/epona/back.svg",
  29488. extra: 2546 / 2408,
  29489. bottom: 44 / 2589
  29490. }
  29491. },
  29492. genitals: {
  29493. height: math.unit(1.5, "feet"),
  29494. name: "Genitals",
  29495. image: {
  29496. source: "./media/characters/epona/genitals.svg"
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Normal",
  29503. height: math.unit(7 + 7 / 12, "feet"),
  29504. default: true
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29510. {
  29511. front: {
  29512. height: math.unit(7, "feet"),
  29513. weight: math.unit(518, "lb"),
  29514. name: "Front",
  29515. image: {
  29516. source: "./media/characters/avia-bloodbourn/front.svg",
  29517. extra: 1466 / 1350,
  29518. bottom: 65 / 1527
  29519. }
  29520. },
  29521. },
  29522. [
  29523. ]
  29524. ))
  29525. characterMakers.push(() => makeCharacter(
  29526. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29527. {
  29528. front: {
  29529. height: math.unit(9.35, "feet"),
  29530. weight: math.unit(600, "lb"),
  29531. name: "Front",
  29532. image: {
  29533. source: "./media/characters/amera/front.svg",
  29534. extra: 891 / 818,
  29535. bottom: 30 / 922.7
  29536. }
  29537. },
  29538. back: {
  29539. height: math.unit(9.35, "feet"),
  29540. weight: math.unit(600, "lb"),
  29541. name: "Back",
  29542. image: {
  29543. source: "./media/characters/amera/back.svg",
  29544. extra: 876 / 824,
  29545. bottom: 6.8 / 884
  29546. }
  29547. },
  29548. dick: {
  29549. height: math.unit(2.14, "feet"),
  29550. name: "Dick",
  29551. image: {
  29552. source: "./media/characters/amera/dick.svg"
  29553. }
  29554. },
  29555. },
  29556. [
  29557. {
  29558. name: "Normal",
  29559. height: math.unit(9.35, "feet"),
  29560. default: true
  29561. },
  29562. ]
  29563. ))
  29564. characterMakers.push(() => makeCharacter(
  29565. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29566. {
  29567. kneeling: {
  29568. height: math.unit(3 + 4 / 12, "feet"),
  29569. weight: math.unit(90, "lb"),
  29570. name: "Kneeling",
  29571. image: {
  29572. source: "./media/characters/rosewen/kneeling.svg",
  29573. extra: 1835 / 1571,
  29574. bottom: 27.7 / 1862
  29575. }
  29576. },
  29577. },
  29578. [
  29579. {
  29580. name: "Normal",
  29581. height: math.unit(3 + 4 / 12, "feet"),
  29582. default: true
  29583. },
  29584. ]
  29585. ))
  29586. characterMakers.push(() => makeCharacter(
  29587. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29588. {
  29589. front: {
  29590. height: math.unit(5 + 10 / 12, "feet"),
  29591. weight: math.unit(200, "lb"),
  29592. name: "Front",
  29593. image: {
  29594. source: "./media/characters/sabah/front.svg",
  29595. extra: 849 / 763,
  29596. bottom: 33.9 / 881
  29597. }
  29598. },
  29599. },
  29600. [
  29601. {
  29602. name: "Normal",
  29603. height: math.unit(5 + 10 / 12, "feet"),
  29604. default: true
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29610. {
  29611. front: {
  29612. height: math.unit(3 + 5 / 12, "feet"),
  29613. weight: math.unit(40, "kg"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/purple-flame/front.svg",
  29617. extra: 1577 / 1412,
  29618. bottom: 97 / 1694
  29619. }
  29620. },
  29621. frontDressed: {
  29622. height: math.unit(3 + 5 / 12, "feet"),
  29623. weight: math.unit(40, "kg"),
  29624. name: "Front (Dressed)",
  29625. image: {
  29626. source: "./media/characters/purple-flame/front-dressed.svg",
  29627. extra: 1577 / 1412,
  29628. bottom: 97 / 1694
  29629. }
  29630. },
  29631. headphones: {
  29632. height: math.unit(0.85, "feet"),
  29633. name: "Headphones",
  29634. image: {
  29635. source: "./media/characters/purple-flame/headphones.svg"
  29636. }
  29637. },
  29638. },
  29639. [
  29640. {
  29641. name: "Really Small",
  29642. height: math.unit(5, "cm")
  29643. },
  29644. {
  29645. name: "Micro",
  29646. height: math.unit(1 + 5 / 12, "feet")
  29647. },
  29648. {
  29649. name: "Normal",
  29650. height: math.unit(3 + 5 / 12, "feet"),
  29651. default: true
  29652. },
  29653. {
  29654. name: "Minimacro",
  29655. height: math.unit(125, "feet")
  29656. },
  29657. {
  29658. name: "Macro",
  29659. height: math.unit(0.5, "miles")
  29660. },
  29661. {
  29662. name: "Megamacro",
  29663. height: math.unit(50, "miles")
  29664. },
  29665. {
  29666. name: "Gigantic",
  29667. height: math.unit(750, "miles")
  29668. },
  29669. {
  29670. name: "Planetary",
  29671. height: math.unit(15000, "miles")
  29672. },
  29673. ]
  29674. ))
  29675. characterMakers.push(() => makeCharacter(
  29676. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29677. {
  29678. front: {
  29679. height: math.unit(14, "feet"),
  29680. weight: math.unit(959, "lb"),
  29681. name: "Front",
  29682. image: {
  29683. source: "./media/characters/arsenal/front.svg",
  29684. extra: 2357 / 2157,
  29685. bottom: 93 / 2458
  29686. }
  29687. },
  29688. },
  29689. [
  29690. {
  29691. name: "Normal",
  29692. height: math.unit(14, "feet"),
  29693. default: true
  29694. },
  29695. ]
  29696. ))
  29697. characterMakers.push(() => makeCharacter(
  29698. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29699. {
  29700. front: {
  29701. height: math.unit(6, "feet"),
  29702. weight: math.unit(150, "lb"),
  29703. name: "Front",
  29704. image: {
  29705. source: "./media/characters/adira/front.svg",
  29706. extra: 2121/2013,
  29707. bottom: 206/2327
  29708. }
  29709. },
  29710. },
  29711. [
  29712. {
  29713. name: "Micro",
  29714. height: math.unit(4, "inches"),
  29715. default: true
  29716. },
  29717. {
  29718. name: "Macro",
  29719. height: math.unit(50, "feet")
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(16, "feet"),
  29728. weight: math.unit(1000, "lb"),
  29729. name: "Front",
  29730. image: {
  29731. source: "./media/characters/grim/front.svg",
  29732. extra: 622 / 614,
  29733. bottom: 18.1 / 642
  29734. }
  29735. },
  29736. back: {
  29737. height: math.unit(16, "feet"),
  29738. weight: math.unit(1000, "lb"),
  29739. name: "Back",
  29740. image: {
  29741. source: "./media/characters/grim/back.svg",
  29742. extra: 610.6 / 602,
  29743. bottom: 40.8 / 652
  29744. }
  29745. },
  29746. hunched: {
  29747. height: math.unit(9.75, "feet"),
  29748. weight: math.unit(1000, "lb"),
  29749. name: "Hunched",
  29750. image: {
  29751. source: "./media/characters/grim/hunched.svg",
  29752. extra: 304 / 297,
  29753. bottom: 35.4 / 394
  29754. }
  29755. },
  29756. },
  29757. [
  29758. {
  29759. name: "Normal",
  29760. height: math.unit(16, "feet"),
  29761. default: true
  29762. },
  29763. ]
  29764. ))
  29765. characterMakers.push(() => makeCharacter(
  29766. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29767. {
  29768. front: {
  29769. height: math.unit(2.3, "meters"),
  29770. weight: math.unit(300, "lb"),
  29771. name: "Front",
  29772. image: {
  29773. source: "./media/characters/sinja/front-sfw.svg",
  29774. extra: 1393 / 1294,
  29775. bottom: 70 / 1463
  29776. }
  29777. },
  29778. frontNsfw: {
  29779. height: math.unit(2.3, "meters"),
  29780. weight: math.unit(300, "lb"),
  29781. name: "Front (NSFW)",
  29782. image: {
  29783. source: "./media/characters/sinja/front-nsfw.svg",
  29784. extra: 1393 / 1294,
  29785. bottom: 70 / 1463
  29786. }
  29787. },
  29788. back: {
  29789. height: math.unit(2.3, "meters"),
  29790. weight: math.unit(300, "lb"),
  29791. name: "Back",
  29792. image: {
  29793. source: "./media/characters/sinja/back.svg",
  29794. extra: 1393 / 1294,
  29795. bottom: 70 / 1463
  29796. }
  29797. },
  29798. head: {
  29799. height: math.unit(1.771, "feet"),
  29800. name: "Head",
  29801. image: {
  29802. source: "./media/characters/sinja/head.svg"
  29803. }
  29804. },
  29805. slit: {
  29806. height: math.unit(0.8, "feet"),
  29807. name: "Slit",
  29808. image: {
  29809. source: "./media/characters/sinja/slit.svg"
  29810. }
  29811. },
  29812. },
  29813. [
  29814. {
  29815. name: "Normal",
  29816. height: math.unit(2.3, "meters")
  29817. },
  29818. {
  29819. name: "Macro",
  29820. height: math.unit(91, "meters"),
  29821. default: true
  29822. },
  29823. {
  29824. name: "Megamacro",
  29825. height: math.unit(91440, "meters")
  29826. },
  29827. {
  29828. name: "Gigamacro",
  29829. height: math.unit(60960000, "meters")
  29830. },
  29831. {
  29832. name: "Teramacro",
  29833. height: math.unit(9144000000, "meters")
  29834. },
  29835. ]
  29836. ))
  29837. characterMakers.push(() => makeCharacter(
  29838. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29839. {
  29840. front: {
  29841. height: math.unit(1.7, "meters"),
  29842. weight: math.unit(130, "lb"),
  29843. name: "Front",
  29844. image: {
  29845. source: "./media/characters/kyu/front.svg",
  29846. extra: 415 / 395,
  29847. bottom: 5 / 420
  29848. }
  29849. },
  29850. head: {
  29851. height: math.unit(1.75, "feet"),
  29852. name: "Head",
  29853. image: {
  29854. source: "./media/characters/kyu/head.svg"
  29855. }
  29856. },
  29857. foot: {
  29858. height: math.unit(0.81, "feet"),
  29859. name: "Foot",
  29860. image: {
  29861. source: "./media/characters/kyu/foot.svg"
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Normal",
  29868. height: math.unit(1.7, "meters")
  29869. },
  29870. {
  29871. name: "Macro",
  29872. height: math.unit(131, "feet"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Megamacro",
  29877. height: math.unit(91440, "meters")
  29878. },
  29879. {
  29880. name: "Gigamacro",
  29881. height: math.unit(60960000, "meters")
  29882. },
  29883. {
  29884. name: "Teramacro",
  29885. height: math.unit(9144000000, "meters")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(7 + 1 / 12, "feet"),
  29894. weight: math.unit(250, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/joey/front.svg",
  29898. extra: 1791 / 1537,
  29899. bottom: 28 / 1816
  29900. }
  29901. },
  29902. },
  29903. [
  29904. {
  29905. name: "Micro",
  29906. height: math.unit(3, "inches")
  29907. },
  29908. {
  29909. name: "Normal",
  29910. height: math.unit(7 + 1 / 12, "feet"),
  29911. default: true
  29912. },
  29913. ]
  29914. ))
  29915. characterMakers.push(() => makeCharacter(
  29916. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29917. {
  29918. front: {
  29919. height: math.unit(165, "cm"),
  29920. weight: math.unit(140, "lb"),
  29921. name: "Front",
  29922. image: {
  29923. source: "./media/characters/sam-evans/front.svg",
  29924. extra: 3417 / 3230,
  29925. bottom: 41.3 / 3417
  29926. }
  29927. },
  29928. frontSixTails: {
  29929. height: math.unit(165, "cm"),
  29930. weight: math.unit(140, "lb"),
  29931. name: "Front-six-tails",
  29932. image: {
  29933. source: "./media/characters/sam-evans/front-six-tails.svg",
  29934. extra: 3417 / 3230,
  29935. bottom: 41.3 / 3417
  29936. }
  29937. },
  29938. back: {
  29939. height: math.unit(165, "cm"),
  29940. weight: math.unit(140, "lb"),
  29941. name: "Back",
  29942. image: {
  29943. source: "./media/characters/sam-evans/back.svg",
  29944. extra: 3227 / 3032,
  29945. bottom: 6.8 / 3234
  29946. }
  29947. },
  29948. face: {
  29949. height: math.unit(0.68, "feet"),
  29950. name: "Face",
  29951. image: {
  29952. source: "./media/characters/sam-evans/face.svg"
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Normal",
  29959. height: math.unit(165, "cm"),
  29960. default: true
  29961. },
  29962. {
  29963. name: "Macro",
  29964. height: math.unit(100, "meters")
  29965. },
  29966. {
  29967. name: "Macro+",
  29968. height: math.unit(800, "meters")
  29969. },
  29970. {
  29971. name: "Macro++",
  29972. height: math.unit(3, "km")
  29973. },
  29974. {
  29975. name: "Macro+++",
  29976. height: math.unit(30, "km")
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29982. {
  29983. front: {
  29984. height: math.unit(10, "feet"),
  29985. weight: math.unit(750, "lb"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/juliet-a/front.svg",
  29989. extra: 1766 / 1720,
  29990. bottom: 43 / 1809
  29991. }
  29992. },
  29993. back: {
  29994. height: math.unit(10, "feet"),
  29995. weight: math.unit(750, "lb"),
  29996. name: "Back",
  29997. image: {
  29998. source: "./media/characters/juliet-a/back.svg",
  29999. extra: 1781 / 1734,
  30000. bottom: 35 / 1810,
  30001. }
  30002. },
  30003. },
  30004. [
  30005. {
  30006. name: "Normal",
  30007. height: math.unit(10, "feet"),
  30008. default: true
  30009. },
  30010. {
  30011. name: "Dragon Form",
  30012. height: math.unit(250, "feet")
  30013. },
  30014. {
  30015. name: "Macro",
  30016. height: math.unit(1000, "feet")
  30017. },
  30018. {
  30019. name: "Megamacro",
  30020. height: math.unit(10000, "feet")
  30021. }
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  30026. {
  30027. regular: {
  30028. height: math.unit(7 + 3 / 12, "feet"),
  30029. weight: math.unit(260, "lb"),
  30030. name: "Regular",
  30031. image: {
  30032. source: "./media/characters/wild/regular.svg",
  30033. extra: 97.45 / 92,
  30034. bottom: 6.8 / 104.3
  30035. }
  30036. },
  30037. biggums: {
  30038. height: math.unit(8 + 6 / 12, "feet"),
  30039. weight: math.unit(425, "lb"),
  30040. name: "Biggums",
  30041. image: {
  30042. source: "./media/characters/wild/biggums.svg",
  30043. extra: 97.45 / 92,
  30044. bottom: 7.5 / 132.34
  30045. }
  30046. },
  30047. mawRegular: {
  30048. height: math.unit(1.24, "feet"),
  30049. name: "Maw (Regular)",
  30050. image: {
  30051. source: "./media/characters/wild/maw.svg"
  30052. }
  30053. },
  30054. mawBiggums: {
  30055. height: math.unit(1.47, "feet"),
  30056. name: "Maw (Biggums)",
  30057. image: {
  30058. source: "./media/characters/wild/maw.svg"
  30059. }
  30060. },
  30061. },
  30062. [
  30063. {
  30064. name: "Normal",
  30065. height: math.unit(7 + 3 / 12, "feet"),
  30066. default: true
  30067. },
  30068. ]
  30069. ))
  30070. characterMakers.push(() => makeCharacter(
  30071. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30072. {
  30073. front: {
  30074. height: math.unit(2.5, "meters"),
  30075. weight: math.unit(200, "kg"),
  30076. name: "Front",
  30077. image: {
  30078. source: "./media/characters/vidar/front.svg",
  30079. extra: 2994 / 2795,
  30080. bottom: 56 / 3061
  30081. }
  30082. },
  30083. back: {
  30084. height: math.unit(2.5, "meters"),
  30085. weight: math.unit(200, "kg"),
  30086. name: "Back",
  30087. image: {
  30088. source: "./media/characters/vidar/back.svg",
  30089. extra: 3131 / 2928,
  30090. bottom: 13.5 / 3141.5
  30091. }
  30092. },
  30093. feral: {
  30094. height: math.unit(2.5, "meters"),
  30095. weight: math.unit(2000, "kg"),
  30096. name: "Feral",
  30097. image: {
  30098. source: "./media/characters/vidar/feral.svg",
  30099. extra: 2790 / 1765,
  30100. bottom: 6 / 2796
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Normal",
  30107. height: math.unit(2.5, "meters"),
  30108. default: true
  30109. },
  30110. {
  30111. name: "Macro",
  30112. height: math.unit(100, "meters")
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(5 + 9 / 12, "feet"),
  30121. weight: math.unit(120, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/ash/front.svg",
  30125. extra: 2189 / 1961,
  30126. bottom: 5.2 / 2194
  30127. }
  30128. },
  30129. },
  30130. [
  30131. {
  30132. name: "Normal",
  30133. height: math.unit(5 + 9 / 12, "feet"),
  30134. default: true
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30140. {
  30141. front: {
  30142. height: math.unit(9, "feet"),
  30143. weight: math.unit(10000, "lb"),
  30144. name: "Front",
  30145. image: {
  30146. source: "./media/characters/gygabite/front.svg",
  30147. bottom: 31.7 / 537.8,
  30148. extra: 505 / 370
  30149. }
  30150. },
  30151. },
  30152. [
  30153. {
  30154. name: "Normal",
  30155. height: math.unit(9, "feet"),
  30156. default: true
  30157. },
  30158. ]
  30159. ))
  30160. characterMakers.push(() => makeCharacter(
  30161. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30162. {
  30163. front: {
  30164. height: math.unit(12, "feet"),
  30165. weight: math.unit(4000, "lb"),
  30166. name: "Front",
  30167. image: {
  30168. source: "./media/characters/p0tat0/front.svg",
  30169. extra: 1065 / 921,
  30170. bottom: 55.7 / 1121.25
  30171. }
  30172. },
  30173. },
  30174. [
  30175. {
  30176. name: "Normal",
  30177. height: math.unit(12, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30184. {
  30185. side: {
  30186. height: math.unit(6.5, "feet"),
  30187. weight: math.unit(800, "lb"),
  30188. name: "Side",
  30189. image: {
  30190. source: "./media/characters/dusk/side.svg",
  30191. extra: 615 / 373,
  30192. bottom: 53 / 664
  30193. }
  30194. },
  30195. sitting: {
  30196. height: math.unit(7, "feet"),
  30197. weight: math.unit(800, "lb"),
  30198. name: "Sitting",
  30199. image: {
  30200. source: "./media/characters/dusk/sitting.svg",
  30201. extra: 753 / 425,
  30202. bottom: 33 / 774
  30203. }
  30204. },
  30205. head: {
  30206. height: math.unit(6.1, "feet"),
  30207. name: "Head",
  30208. image: {
  30209. source: "./media/characters/dusk/head.svg"
  30210. }
  30211. },
  30212. },
  30213. [
  30214. {
  30215. name: "Normal",
  30216. height: math.unit(7, "feet"),
  30217. default: true
  30218. },
  30219. ]
  30220. ))
  30221. characterMakers.push(() => makeCharacter(
  30222. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30223. {
  30224. front: {
  30225. height: math.unit(15, "feet"),
  30226. weight: math.unit(7000, "lb"),
  30227. name: "Front",
  30228. image: {
  30229. source: "./media/characters/jay-direwolf/front.svg",
  30230. extra: 1810 / 1732,
  30231. bottom: 66 / 1892
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(15, "feet"),
  30239. default: true
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30245. {
  30246. front: {
  30247. height: math.unit(4 + 9 / 12, "feet"),
  30248. weight: math.unit(130, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/anchovie/front.svg",
  30252. extra: 382 / 350,
  30253. bottom: 25 / 409
  30254. }
  30255. },
  30256. back: {
  30257. height: math.unit(4 + 9 / 12, "feet"),
  30258. weight: math.unit(130, "lb"),
  30259. name: "Back",
  30260. image: {
  30261. source: "./media/characters/anchovie/back.svg",
  30262. extra: 385 / 352,
  30263. bottom: 16.6 / 402
  30264. }
  30265. },
  30266. frontDressed: {
  30267. height: math.unit(4 + 9 / 12, "feet"),
  30268. weight: math.unit(130, "lb"),
  30269. name: "Front (Dressed)",
  30270. image: {
  30271. source: "./media/characters/anchovie/front-dressed.svg",
  30272. extra: 382 / 350,
  30273. bottom: 25 / 409
  30274. }
  30275. },
  30276. backDressed: {
  30277. height: math.unit(4 + 9 / 12, "feet"),
  30278. weight: math.unit(130, "lb"),
  30279. name: "Back (Dressed)",
  30280. image: {
  30281. source: "./media/characters/anchovie/back-dressed.svg",
  30282. extra: 385 / 352,
  30283. bottom: 16.6 / 402
  30284. }
  30285. },
  30286. },
  30287. [
  30288. {
  30289. name: "Micro",
  30290. height: math.unit(6.4, "inches")
  30291. },
  30292. {
  30293. name: "Normal",
  30294. height: math.unit(4 + 9 / 12, "feet"),
  30295. default: true
  30296. },
  30297. ]
  30298. ))
  30299. characterMakers.push(() => makeCharacter(
  30300. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30301. {
  30302. front: {
  30303. height: math.unit(2, "meters"),
  30304. weight: math.unit(180, "lb"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/acidrenamon/front.svg",
  30308. extra: 987 / 890,
  30309. bottom: 22.8 / 1009
  30310. }
  30311. },
  30312. back: {
  30313. height: math.unit(2, "meters"),
  30314. weight: math.unit(180, "lb"),
  30315. name: "Back",
  30316. image: {
  30317. source: "./media/characters/acidrenamon/back.svg",
  30318. extra: 983 / 891,
  30319. bottom: 8.4 / 992
  30320. }
  30321. },
  30322. head: {
  30323. height: math.unit(1.92, "feet"),
  30324. name: "Head",
  30325. image: {
  30326. source: "./media/characters/acidrenamon/head.svg"
  30327. }
  30328. },
  30329. rump: {
  30330. height: math.unit(1.72, "feet"),
  30331. name: "Rump",
  30332. image: {
  30333. source: "./media/characters/acidrenamon/rump.svg"
  30334. }
  30335. },
  30336. tail: {
  30337. height: math.unit(4.2, "feet"),
  30338. name: "Tail",
  30339. image: {
  30340. source: "./media/characters/acidrenamon/tail.svg"
  30341. }
  30342. },
  30343. },
  30344. [
  30345. {
  30346. name: "Normal",
  30347. height: math.unit(2, "meters"),
  30348. default: true
  30349. },
  30350. {
  30351. name: "Minimacro",
  30352. height: math.unit(7, "meters")
  30353. },
  30354. {
  30355. name: "Macro",
  30356. height: math.unit(200, "meters")
  30357. },
  30358. {
  30359. name: "Gigamacro",
  30360. height: math.unit(0.2, "earths")
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30366. {
  30367. front: {
  30368. height: math.unit(152, "feet"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/kenzie-lee/front.svg",
  30372. extra: 1869/1774,
  30373. bottom: 128/1997
  30374. }
  30375. },
  30376. side: {
  30377. height: math.unit(86, "feet"),
  30378. name: "Side",
  30379. image: {
  30380. source: "./media/characters/kenzie-lee/side.svg",
  30381. extra: 930/815,
  30382. bottom: 177/1107
  30383. }
  30384. },
  30385. paw: {
  30386. height: math.unit(15, "feet"),
  30387. name: "Paw",
  30388. image: {
  30389. source: "./media/characters/kenzie-lee/paw.svg"
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Kenzie Flea",
  30396. height: math.unit(2, "mm"),
  30397. default: true
  30398. },
  30399. {
  30400. name: "Micro",
  30401. height: math.unit(2, "inches")
  30402. },
  30403. {
  30404. name: "Normal",
  30405. height: math.unit(152, "feet")
  30406. },
  30407. {
  30408. name: "Megamacro",
  30409. height: math.unit(7, "miles")
  30410. },
  30411. {
  30412. name: "Gigamacro",
  30413. height: math.unit(8000, "miles")
  30414. },
  30415. ]
  30416. ))
  30417. characterMakers.push(() => makeCharacter(
  30418. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30419. {
  30420. front: {
  30421. height: math.unit(6, "feet"),
  30422. name: "Front",
  30423. image: {
  30424. source: "./media/characters/withers/front.svg",
  30425. extra: 1935/1760,
  30426. bottom: 72/2007
  30427. }
  30428. },
  30429. back: {
  30430. height: math.unit(6, "feet"),
  30431. name: "Back",
  30432. image: {
  30433. source: "./media/characters/withers/back.svg",
  30434. extra: 1944/1792,
  30435. bottom: 12/1956
  30436. }
  30437. },
  30438. dressed: {
  30439. height: math.unit(6, "feet"),
  30440. name: "Dressed",
  30441. image: {
  30442. source: "./media/characters/withers/dressed.svg",
  30443. extra: 1937/1765,
  30444. bottom: 73/2010
  30445. }
  30446. },
  30447. phase1: {
  30448. height: math.unit(1.1, "feet"),
  30449. name: "Phase 1",
  30450. image: {
  30451. source: "./media/characters/withers/phase-1.svg",
  30452. extra: 1885/1232,
  30453. bottom: 0/1885
  30454. }
  30455. },
  30456. phase2: {
  30457. height: math.unit(1.05, "feet"),
  30458. name: "Phase 2",
  30459. image: {
  30460. source: "./media/characters/withers/phase-2.svg",
  30461. extra: 1792/1090,
  30462. bottom: 0/1792
  30463. }
  30464. },
  30465. partyWipe: {
  30466. height: math.unit(1.1, "feet"),
  30467. name: "Party Wipe",
  30468. image: {
  30469. source: "./media/characters/withers/party-wipe.svg",
  30470. extra: 1864/1207,
  30471. bottom: 0/1864
  30472. }
  30473. },
  30474. },
  30475. [
  30476. {
  30477. name: "Macro",
  30478. height: math.unit(167, "feet"),
  30479. default: true
  30480. },
  30481. {
  30482. name: "Megamacro",
  30483. height: math.unit(15, "miles")
  30484. }
  30485. ]
  30486. ))
  30487. characterMakers.push(() => makeCharacter(
  30488. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30489. {
  30490. front: {
  30491. height: math.unit(6 + 7 / 12, "feet"),
  30492. weight: math.unit(250, "lb"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/nemoskii/front.svg",
  30496. extra: 2270 / 1734,
  30497. bottom: 86 / 2354
  30498. }
  30499. },
  30500. back: {
  30501. height: math.unit(6 + 7 / 12, "feet"),
  30502. weight: math.unit(250, "lb"),
  30503. name: "Back",
  30504. image: {
  30505. source: "./media/characters/nemoskii/back.svg",
  30506. extra: 1845 / 1788,
  30507. bottom: 10.5 / 1852
  30508. }
  30509. },
  30510. head: {
  30511. height: math.unit(1.31, "feet"),
  30512. name: "Head",
  30513. image: {
  30514. source: "./media/characters/nemoskii/head.svg"
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Micro",
  30521. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30522. },
  30523. {
  30524. name: "Normal",
  30525. height: math.unit(6 + 7 / 12, "feet"),
  30526. default: true
  30527. },
  30528. {
  30529. name: "Macro",
  30530. height: math.unit((6 + 7 / 12) * 150, "feet")
  30531. },
  30532. {
  30533. name: "Macro+",
  30534. height: math.unit((6 + 7 / 12) * 500, "feet")
  30535. },
  30536. {
  30537. name: "Megamacro",
  30538. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(1, "mile"),
  30547. weight: math.unit(265261.9, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/shui/front.svg",
  30551. extra: 1633 / 1564,
  30552. bottom: 91.5 / 1726
  30553. }
  30554. },
  30555. },
  30556. [
  30557. {
  30558. name: "Macro",
  30559. height: math.unit(1, "mile"),
  30560. default: true
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(12 + 6 / 12, "feet"),
  30569. weight: math.unit(1342, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/arokh-takakura/front.svg",
  30573. extra: 1089 / 1043,
  30574. bottom: 77.4 / 1176.7
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(12 + 6 / 12, "feet"),
  30579. weight: math.unit(1342, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/arokh-takakura/back.svg",
  30583. extra: 1046 / 1019,
  30584. bottom: 102 / 1150
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Big",
  30591. height: math.unit(12 + 6 / 12, "feet"),
  30592. default: true
  30593. },
  30594. ]
  30595. ))
  30596. characterMakers.push(() => makeCharacter(
  30597. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30598. {
  30599. front: {
  30600. height: math.unit(5 + 6 / 12, "feet"),
  30601. weight: math.unit(150, "lb"),
  30602. name: "Front",
  30603. image: {
  30604. source: "./media/characters/theo/front.svg",
  30605. extra: 1184 / 1131,
  30606. bottom: 7.4 / 1191
  30607. }
  30608. },
  30609. },
  30610. [
  30611. {
  30612. name: "Micro",
  30613. height: math.unit(5, "inches")
  30614. },
  30615. {
  30616. name: "Normal",
  30617. height: math.unit(5 + 6 / 12, "feet"),
  30618. default: true
  30619. },
  30620. ]
  30621. ))
  30622. characterMakers.push(() => makeCharacter(
  30623. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30624. {
  30625. front: {
  30626. height: math.unit(5 + 9 / 12, "feet"),
  30627. weight: math.unit(130, "lb"),
  30628. name: "Front",
  30629. image: {
  30630. source: "./media/characters/cecelia-swift/front.svg",
  30631. extra: 502 / 484,
  30632. bottom: 23 / 523
  30633. }
  30634. },
  30635. back: {
  30636. height: math.unit(5 + 9 / 12, "feet"),
  30637. weight: math.unit(130, "lb"),
  30638. name: "Back",
  30639. image: {
  30640. source: "./media/characters/cecelia-swift/back.svg",
  30641. extra: 499 / 485,
  30642. bottom: 12 / 511
  30643. }
  30644. },
  30645. head: {
  30646. height: math.unit(0.90, "feet"),
  30647. name: "Head",
  30648. image: {
  30649. source: "./media/characters/cecelia-swift/head.svg"
  30650. }
  30651. },
  30652. rump: {
  30653. height: math.unit(1.75, "feet"),
  30654. name: "Rump",
  30655. image: {
  30656. source: "./media/characters/cecelia-swift/rump.svg"
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Normal",
  30663. height: math.unit(5 + 9 / 12, "feet"),
  30664. default: true
  30665. },
  30666. {
  30667. name: "Big",
  30668. height: math.unit(50, "feet")
  30669. },
  30670. {
  30671. name: "Macro",
  30672. height: math.unit(100, "feet")
  30673. },
  30674. {
  30675. name: "Macro+",
  30676. height: math.unit(500, "feet")
  30677. },
  30678. {
  30679. name: "Macro++",
  30680. height: math.unit(1000, "feet")
  30681. },
  30682. ]
  30683. ))
  30684. characterMakers.push(() => makeCharacter(
  30685. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30686. {
  30687. front: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(150, "lb"),
  30690. name: "Front",
  30691. image: {
  30692. source: "./media/characters/kaunan/front.svg",
  30693. extra: 2890 / 2523,
  30694. bottom: 49 / 2939
  30695. }
  30696. },
  30697. },
  30698. [
  30699. {
  30700. name: "Macro",
  30701. height: math.unit(150, "feet"),
  30702. default: true
  30703. },
  30704. ]
  30705. ))
  30706. characterMakers.push(() => makeCharacter(
  30707. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30708. {
  30709. dressed: {
  30710. height: math.unit(175, "cm"),
  30711. weight: math.unit(60, "kg"),
  30712. name: "Dressed",
  30713. image: {
  30714. source: "./media/characters/fei/dressed.svg",
  30715. extra: 1402/1278,
  30716. bottom: 27/1429
  30717. }
  30718. },
  30719. nude: {
  30720. height: math.unit(175, "cm"),
  30721. weight: math.unit(60, "kg"),
  30722. name: "Nude",
  30723. image: {
  30724. source: "./media/characters/fei/nude.svg",
  30725. extra: 1402/1278,
  30726. bottom: 27/1429
  30727. }
  30728. },
  30729. heels: {
  30730. height: math.unit(0.466, "feet"),
  30731. name: "Heels",
  30732. image: {
  30733. source: "./media/characters/fei/heels.svg",
  30734. extra: 156/152,
  30735. bottom: 28/184
  30736. }
  30737. },
  30738. },
  30739. [
  30740. {
  30741. name: "Mortal",
  30742. height: math.unit(175, "cm")
  30743. },
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(3500, "m")
  30747. },
  30748. {
  30749. name: "Stroll",
  30750. height: math.unit(18.4, "km"),
  30751. default: true
  30752. },
  30753. {
  30754. name: "Showoff",
  30755. height: math.unit(175, "km")
  30756. },
  30757. ]
  30758. ))
  30759. characterMakers.push(() => makeCharacter(
  30760. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30761. {
  30762. front: {
  30763. height: math.unit(7, "feet"),
  30764. weight: math.unit(1000, "kg"),
  30765. name: "Front",
  30766. image: {
  30767. source: "./media/characters/edrax/front.svg",
  30768. extra: 2838 / 2550,
  30769. bottom: 130 / 2968
  30770. }
  30771. },
  30772. },
  30773. [
  30774. {
  30775. name: "Small",
  30776. height: math.unit(7, "feet")
  30777. },
  30778. {
  30779. name: "Normal",
  30780. height: math.unit(1500, "meters")
  30781. },
  30782. {
  30783. name: "Mega",
  30784. height: math.unit(12000000, "km"),
  30785. default: true
  30786. },
  30787. {
  30788. name: "Megamacro",
  30789. height: math.unit(10600000, "lightyears")
  30790. },
  30791. {
  30792. name: "Hypermacro",
  30793. height: math.unit(256, "yottameters")
  30794. },
  30795. ]
  30796. ))
  30797. characterMakers.push(() => makeCharacter(
  30798. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30799. {
  30800. front: {
  30801. height: math.unit(10, "feet"),
  30802. weight: math.unit(750, "lb"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/clove/front.svg",
  30806. extra: 1918/1751,
  30807. bottom: 52/1970
  30808. }
  30809. },
  30810. back: {
  30811. height: math.unit(10, "feet"),
  30812. weight: math.unit(750, "lb"),
  30813. name: "Back",
  30814. image: {
  30815. source: "./media/characters/clove/back.svg",
  30816. extra: 1912/1747,
  30817. bottom: 50/1962
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(10, "feet"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30831. {
  30832. front: {
  30833. height: math.unit(4, "feet"),
  30834. weight: math.unit(50, "lb"),
  30835. name: "Front",
  30836. image: {
  30837. source: "./media/characters/alex-rabbit/front.svg",
  30838. extra: 507 / 458,
  30839. bottom: 18.5 / 527
  30840. }
  30841. },
  30842. back: {
  30843. height: math.unit(4, "feet"),
  30844. weight: math.unit(50, "lb"),
  30845. name: "Back",
  30846. image: {
  30847. source: "./media/characters/alex-rabbit/back.svg",
  30848. extra: 502 / 460,
  30849. bottom: 18.9 / 521
  30850. }
  30851. },
  30852. },
  30853. [
  30854. {
  30855. name: "Normal",
  30856. height: math.unit(4, "feet"),
  30857. default: true
  30858. },
  30859. ]
  30860. ))
  30861. characterMakers.push(() => makeCharacter(
  30862. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30863. {
  30864. front: {
  30865. height: math.unit(1 + 3 / 12, "feet"),
  30866. weight: math.unit(80, "lb"),
  30867. name: "Front",
  30868. image: {
  30869. source: "./media/characters/zander-rose/front.svg",
  30870. extra: 916 / 797,
  30871. bottom: 17 / 933
  30872. }
  30873. },
  30874. back: {
  30875. height: math.unit(1 + 3 / 12, "feet"),
  30876. weight: math.unit(80, "lb"),
  30877. name: "Back",
  30878. image: {
  30879. source: "./media/characters/zander-rose/back.svg",
  30880. extra: 903 / 779,
  30881. bottom: 31 / 934
  30882. }
  30883. },
  30884. },
  30885. [
  30886. {
  30887. name: "Normal",
  30888. height: math.unit(1 + 3 / 12, "feet"),
  30889. default: true
  30890. },
  30891. ]
  30892. ))
  30893. characterMakers.push(() => makeCharacter(
  30894. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30895. {
  30896. anthro: {
  30897. height: math.unit(6, "feet"),
  30898. weight: math.unit(150, "lb"),
  30899. name: "Anthro",
  30900. image: {
  30901. source: "./media/characters/razz/anthro.svg",
  30902. extra: 1437 / 1343,
  30903. bottom: 48 / 1485
  30904. }
  30905. },
  30906. feral: {
  30907. height: math.unit(6, "feet"),
  30908. weight: math.unit(150, "lb"),
  30909. name: "Feral",
  30910. image: {
  30911. source: "./media/characters/razz/feral.svg",
  30912. extra: 2569 / 1385,
  30913. bottom: 95 / 2664
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(6, "feet"),
  30921. default: true
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30927. {
  30928. front: {
  30929. height: math.unit(9 + 4 / 12, "feet"),
  30930. weight: math.unit(500, "lb"),
  30931. name: "Front",
  30932. image: {
  30933. source: "./media/characters/morrigan/front.svg",
  30934. extra: 2707 / 2579,
  30935. bottom: 156 / 2863
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(9 + 4 / 12, "feet"),
  30943. default: true
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30949. {
  30950. front: {
  30951. height: math.unit(5, "stories"),
  30952. weight: math.unit(4000, "lb"),
  30953. name: "Front",
  30954. image: {
  30955. source: "./media/characters/jenene/front.svg",
  30956. extra: 1780 / 1710,
  30957. bottom: 57 / 1837
  30958. }
  30959. },
  30960. },
  30961. [
  30962. {
  30963. name: "Normal",
  30964. height: math.unit(5, "stories"),
  30965. default: true
  30966. },
  30967. ]
  30968. ))
  30969. characterMakers.push(() => makeCharacter(
  30970. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30971. {
  30972. taurSfw: {
  30973. height: math.unit(10, "meters"),
  30974. weight: math.unit(17500, "kg"),
  30975. name: "Taur",
  30976. image: {
  30977. source: "./media/characters/faey/taur-sfw.svg",
  30978. extra: 1200 / 968,
  30979. bottom: 41 / 1241
  30980. }
  30981. },
  30982. chestmaw: {
  30983. height: math.unit(2.01, "meters"),
  30984. name: "Chestmaw",
  30985. image: {
  30986. source: "./media/characters/faey/chestmaw.svg"
  30987. }
  30988. },
  30989. foot: {
  30990. height: math.unit(2.43, "meters"),
  30991. name: "Foot",
  30992. image: {
  30993. source: "./media/characters/faey/foot.svg"
  30994. }
  30995. },
  30996. jaws: {
  30997. height: math.unit(1.66, "meters"),
  30998. name: "Jaws",
  30999. image: {
  31000. source: "./media/characters/faey/jaws.svg"
  31001. }
  31002. },
  31003. tongues: {
  31004. height: math.unit(2.01, "meters"),
  31005. name: "Tongues",
  31006. image: {
  31007. source: "./media/characters/faey/tongues.svg"
  31008. }
  31009. },
  31010. },
  31011. [
  31012. {
  31013. name: "Small",
  31014. height: math.unit(10, "meters"),
  31015. default: true
  31016. },
  31017. {
  31018. name: "Big",
  31019. height: math.unit(500000, "km")
  31020. },
  31021. ]
  31022. ))
  31023. characterMakers.push(() => makeCharacter(
  31024. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  31025. {
  31026. front: {
  31027. height: math.unit(7, "feet"),
  31028. weight: math.unit(275, "lb"),
  31029. name: "Front",
  31030. image: {
  31031. source: "./media/characters/roku/front.svg",
  31032. extra: 903 / 878,
  31033. bottom: 37 / 940
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(7, "feet"),
  31041. default: true
  31042. },
  31043. {
  31044. name: "Macro",
  31045. height: math.unit(500, "feet")
  31046. },
  31047. {
  31048. name: "Megamacro",
  31049. height: math.unit(200, "miles")
  31050. },
  31051. ]
  31052. ))
  31053. characterMakers.push(() => makeCharacter(
  31054. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  31055. {
  31056. front: {
  31057. height: math.unit(6 + 2 / 12, "feet"),
  31058. weight: math.unit(150, "lb"),
  31059. name: "Front",
  31060. image: {
  31061. source: "./media/characters/lira/front.svg",
  31062. extra: 1727 / 1605,
  31063. bottom: 26 / 1753
  31064. }
  31065. },
  31066. back: {
  31067. height: math.unit(6 + 2 / 12, "feet"),
  31068. weight: math.unit(150, "lb"),
  31069. name: "Back",
  31070. image: {
  31071. source: "./media/characters/lira/back.svg",
  31072. extra: 1713/1621,
  31073. bottom: 20/1733
  31074. }
  31075. },
  31076. hand: {
  31077. height: math.unit(0.75, "feet"),
  31078. name: "Hand",
  31079. image: {
  31080. source: "./media/characters/lira/hand.svg"
  31081. }
  31082. },
  31083. maw: {
  31084. height: math.unit(0.65, "feet"),
  31085. name: "Maw",
  31086. image: {
  31087. source: "./media/characters/lira/maw.svg"
  31088. }
  31089. },
  31090. pawDigi: {
  31091. height: math.unit(1.6, "feet"),
  31092. name: "Paw Digi",
  31093. image: {
  31094. source: "./media/characters/lira/paw-digi.svg"
  31095. }
  31096. },
  31097. pawPlanti: {
  31098. height: math.unit(1.4, "feet"),
  31099. name: "Paw Planti",
  31100. image: {
  31101. source: "./media/characters/lira/paw-planti.svg"
  31102. }
  31103. },
  31104. },
  31105. [
  31106. {
  31107. name: "Normal",
  31108. height: math.unit(6 + 2 / 12, "feet"),
  31109. default: true
  31110. },
  31111. {
  31112. name: "Macro",
  31113. height: math.unit(100, "feet")
  31114. },
  31115. {
  31116. name: "Macro²",
  31117. height: math.unit(1600, "feet")
  31118. },
  31119. {
  31120. name: "Planetary",
  31121. height: math.unit(20, "earths")
  31122. },
  31123. ]
  31124. ))
  31125. characterMakers.push(() => makeCharacter(
  31126. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31127. {
  31128. front: {
  31129. height: math.unit(6, "feet"),
  31130. weight: math.unit(150, "lb"),
  31131. name: "Front",
  31132. image: {
  31133. source: "./media/characters/hadjet/front.svg",
  31134. extra: 1480 / 1346,
  31135. bottom: 26 / 1506
  31136. }
  31137. },
  31138. frontNsfw: {
  31139. height: math.unit(6, "feet"),
  31140. weight: math.unit(150, "lb"),
  31141. name: "Front (NSFW)",
  31142. image: {
  31143. source: "./media/characters/hadjet/front-nsfw.svg",
  31144. extra: 1440 / 1358,
  31145. bottom: 52 / 1492
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Macro",
  31152. height: math.unit(10, "stories"),
  31153. default: true
  31154. },
  31155. {
  31156. name: "Megamacro",
  31157. height: math.unit(1.5, "miles")
  31158. },
  31159. {
  31160. name: "Megamacro+",
  31161. height: math.unit(5, "miles")
  31162. },
  31163. ]
  31164. ))
  31165. characterMakers.push(() => makeCharacter(
  31166. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31167. {
  31168. side: {
  31169. height: math.unit(106, "feet"),
  31170. weight: math.unit(500, "tonnes"),
  31171. name: "Side",
  31172. image: {
  31173. source: "./media/characters/kodran/side.svg",
  31174. extra: 553 / 480,
  31175. bottom: 33 / 586
  31176. }
  31177. },
  31178. front: {
  31179. height: math.unit(132, "feet"),
  31180. weight: math.unit(500, "tonnes"),
  31181. name: "Front",
  31182. image: {
  31183. source: "./media/characters/kodran/front.svg",
  31184. extra: 667 / 643,
  31185. bottom: 42 / 709
  31186. }
  31187. },
  31188. flying: {
  31189. height: math.unit(350, "feet"),
  31190. weight: math.unit(500, "tonnes"),
  31191. name: "Flying",
  31192. image: {
  31193. source: "./media/characters/kodran/flying.svg"
  31194. }
  31195. },
  31196. foot: {
  31197. height: math.unit(33, "feet"),
  31198. name: "Foot",
  31199. image: {
  31200. source: "./media/characters/kodran/foot.svg"
  31201. }
  31202. },
  31203. footFront: {
  31204. height: math.unit(19, "feet"),
  31205. name: "Foot (Front)",
  31206. image: {
  31207. source: "./media/characters/kodran/foot-front.svg",
  31208. extra: 261 / 261,
  31209. bottom: 91 / 352
  31210. }
  31211. },
  31212. headFront: {
  31213. height: math.unit(53, "feet"),
  31214. name: "Head (Front)",
  31215. image: {
  31216. source: "./media/characters/kodran/head-front.svg"
  31217. }
  31218. },
  31219. headSide: {
  31220. height: math.unit(65, "feet"),
  31221. name: "Head (Side)",
  31222. image: {
  31223. source: "./media/characters/kodran/head-side.svg"
  31224. }
  31225. },
  31226. throat: {
  31227. height: math.unit(79, "feet"),
  31228. name: "Throat",
  31229. image: {
  31230. source: "./media/characters/kodran/throat.svg"
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Large",
  31237. height: math.unit(106, "feet"),
  31238. default: true
  31239. },
  31240. ]
  31241. ))
  31242. characterMakers.push(() => makeCharacter(
  31243. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31244. {
  31245. side: {
  31246. height: math.unit(11, "feet"),
  31247. weight: math.unit(150, "lb"),
  31248. name: "Side",
  31249. image: {
  31250. source: "./media/characters/pyxaron/side.svg",
  31251. extra: 305 / 195,
  31252. bottom: 17 / 322
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Normal",
  31259. height: math.unit(11, "feet"),
  31260. default: true
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31266. {
  31267. front: {
  31268. height: math.unit(6, "feet"),
  31269. weight: math.unit(150, "lb"),
  31270. name: "Front",
  31271. image: {
  31272. source: "./media/characters/meep/front.svg",
  31273. extra: 88 / 80,
  31274. bottom: 6 / 94
  31275. }
  31276. },
  31277. },
  31278. [
  31279. {
  31280. name: "Fun Sized",
  31281. height: math.unit(2, "inches"),
  31282. default: true
  31283. },
  31284. {
  31285. name: "Friend Sized",
  31286. height: math.unit(8, "inches")
  31287. },
  31288. ]
  31289. ))
  31290. characterMakers.push(() => makeCharacter(
  31291. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31292. {
  31293. front: {
  31294. height: math.unit(15, "feet"),
  31295. weight: math.unit(2500, "lb"),
  31296. name: "Front",
  31297. image: {
  31298. source: "./media/characters/holly-rabbit/front.svg",
  31299. extra: 1433 / 1233,
  31300. bottom: 125 / 1558
  31301. }
  31302. },
  31303. dick: {
  31304. height: math.unit(4.6, "feet"),
  31305. name: "Dick",
  31306. image: {
  31307. source: "./media/characters/holly-rabbit/dick.svg"
  31308. }
  31309. },
  31310. },
  31311. [
  31312. {
  31313. name: "Normal",
  31314. height: math.unit(15, "feet"),
  31315. default: true
  31316. },
  31317. {
  31318. name: "Macro",
  31319. height: math.unit(250, "feet")
  31320. },
  31321. {
  31322. name: "Macro+",
  31323. height: math.unit(2500, "feet")
  31324. },
  31325. ]
  31326. ))
  31327. characterMakers.push(() => makeCharacter(
  31328. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31329. {
  31330. front: {
  31331. height: math.unit(3.02, "meters"),
  31332. weight: math.unit(500, "kg"),
  31333. name: "Front",
  31334. image: {
  31335. source: "./media/characters/drena/front.svg",
  31336. extra: 282 / 243,
  31337. bottom: 8 / 290
  31338. }
  31339. },
  31340. side: {
  31341. height: math.unit(3.02, "meters"),
  31342. weight: math.unit(500, "kg"),
  31343. name: "Side",
  31344. image: {
  31345. source: "./media/characters/drena/side.svg",
  31346. extra: 280 / 245,
  31347. bottom: 10 / 290
  31348. }
  31349. },
  31350. back: {
  31351. height: math.unit(3.02, "meters"),
  31352. weight: math.unit(500, "kg"),
  31353. name: "Back",
  31354. image: {
  31355. source: "./media/characters/drena/back.svg",
  31356. extra: 278 / 243,
  31357. bottom: 2 / 280
  31358. }
  31359. },
  31360. foot: {
  31361. height: math.unit(0.75, "meters"),
  31362. name: "Foot",
  31363. image: {
  31364. source: "./media/characters/drena/foot.svg"
  31365. }
  31366. },
  31367. maw: {
  31368. height: math.unit(0.82, "meters"),
  31369. name: "Maw",
  31370. image: {
  31371. source: "./media/characters/drena/maw.svg"
  31372. }
  31373. },
  31374. eating: {
  31375. height: math.unit(0.75, "meters"),
  31376. name: "Eating",
  31377. image: {
  31378. source: "./media/characters/drena/eating.svg"
  31379. }
  31380. },
  31381. rump: {
  31382. height: math.unit(0.93, "meters"),
  31383. name: "Rump",
  31384. image: {
  31385. source: "./media/characters/drena/rump.svg"
  31386. }
  31387. },
  31388. },
  31389. [
  31390. {
  31391. name: "Normal",
  31392. height: math.unit(3.02, "meters"),
  31393. default: true
  31394. },
  31395. ]
  31396. ))
  31397. characterMakers.push(() => makeCharacter(
  31398. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31399. {
  31400. front: {
  31401. height: math.unit(6 + 4 / 12, "feet"),
  31402. weight: math.unit(250, "lb"),
  31403. name: "Front",
  31404. image: {
  31405. source: "./media/characters/remmyzilla/front.svg",
  31406. extra: 4033 / 3588,
  31407. bottom: 123 / 4156
  31408. }
  31409. },
  31410. back: {
  31411. height: math.unit(6 + 4 / 12, "feet"),
  31412. weight: math.unit(250, "lb"),
  31413. name: "Back",
  31414. image: {
  31415. source: "./media/characters/remmyzilla/back.svg",
  31416. extra: 1696/1602,
  31417. bottom: 63/1759
  31418. }
  31419. },
  31420. paw: {
  31421. height: math.unit(1.73, "feet"),
  31422. name: "Paw",
  31423. image: {
  31424. source: "./media/characters/remmyzilla/paw.svg"
  31425. },
  31426. extraAttributes: {
  31427. "toeSize": {
  31428. name: "Toe Size",
  31429. power: 2,
  31430. type: "area",
  31431. base: math.unit(0.0035, "m^2")
  31432. },
  31433. "padSize": {
  31434. name: "Pad Size",
  31435. power: 2,
  31436. type: "area",
  31437. base: math.unit(0.015, "m^2")
  31438. },
  31439. "pawsize": {
  31440. name: "Paw Size",
  31441. power: 2,
  31442. type: "area",
  31443. base: math.unit(0.072, "m^2")
  31444. },
  31445. }
  31446. },
  31447. maw: {
  31448. height: math.unit(1.73, "feet"),
  31449. name: "Maw",
  31450. image: {
  31451. source: "./media/characters/remmyzilla/maw.svg"
  31452. }
  31453. },
  31454. },
  31455. [
  31456. {
  31457. name: "Normal",
  31458. height: math.unit(6 + 4 / 12, "feet")
  31459. },
  31460. {
  31461. name: "Minimacro",
  31462. height: math.unit(12 + 8 / 12, "feet")
  31463. },
  31464. {
  31465. name: "Normal",
  31466. height: math.unit(640, "feet"),
  31467. default: true
  31468. },
  31469. {
  31470. name: "Megamacro",
  31471. height: math.unit(6400, "feet")
  31472. },
  31473. {
  31474. name: "Gigamacro",
  31475. height: math.unit(64000, "miles")
  31476. },
  31477. ]
  31478. ))
  31479. characterMakers.push(() => makeCharacter(
  31480. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31481. {
  31482. front: {
  31483. height: math.unit(2.5, "meters"),
  31484. weight: math.unit(300, "lb"),
  31485. name: "Front",
  31486. image: {
  31487. source: "./media/characters/lawrence/front.svg",
  31488. extra: 357 / 335,
  31489. bottom: 30 / 387
  31490. }
  31491. },
  31492. back: {
  31493. height: math.unit(2.5, "meters"),
  31494. weight: math.unit(300, "lb"),
  31495. name: "Back",
  31496. image: {
  31497. source: "./media/characters/lawrence/back.svg",
  31498. extra: 357 / 338,
  31499. bottom: 16 / 373
  31500. }
  31501. },
  31502. head: {
  31503. height: math.unit(0.9, "meter"),
  31504. name: "Head",
  31505. image: {
  31506. source: "./media/characters/lawrence/head.svg"
  31507. }
  31508. },
  31509. maw: {
  31510. height: math.unit(0.7, "meter"),
  31511. name: "Maw",
  31512. image: {
  31513. source: "./media/characters/lawrence/maw.svg"
  31514. }
  31515. },
  31516. footBottom: {
  31517. height: math.unit(0.5, "meter"),
  31518. name: "Foot (Bottom)",
  31519. image: {
  31520. source: "./media/characters/lawrence/foot-bottom.svg"
  31521. }
  31522. },
  31523. footTop: {
  31524. height: math.unit(0.5, "meter"),
  31525. name: "Foot (Top)",
  31526. image: {
  31527. source: "./media/characters/lawrence/foot-top.svg"
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Normal",
  31534. height: math.unit(2.5, "meters"),
  31535. default: true
  31536. },
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(95, "meters")
  31540. },
  31541. {
  31542. name: "Megamacro",
  31543. height: math.unit(150, "km")
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31549. {
  31550. front: {
  31551. height: math.unit(4.2, "meters"),
  31552. preyCapacity: math.unit(50, "m^3"),
  31553. weight: math.unit(30, "tonnes"),
  31554. name: "Front",
  31555. image: {
  31556. source: "./media/characters/sydney/front.svg",
  31557. extra: 1177/1129,
  31558. bottom: 197/1374
  31559. },
  31560. extraAttributes: {
  31561. "length": {
  31562. name: "Length",
  31563. power: 1,
  31564. type: "length",
  31565. base: math.unit(21, "meters")
  31566. },
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Normal",
  31573. height: math.unit(4.2, "meters"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31580. {
  31581. back: {
  31582. height: math.unit(201, "feet"),
  31583. name: "Back",
  31584. image: {
  31585. source: "./media/characters/jessica/back.svg",
  31586. extra: 273 / 259,
  31587. bottom: 7 / 280
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Normal",
  31594. height: math.unit(201, "feet"),
  31595. default: true
  31596. },
  31597. {
  31598. name: "Megamacro",
  31599. height: math.unit(8, "miles")
  31600. },
  31601. ]
  31602. ))
  31603. characterMakers.push(() => makeCharacter(
  31604. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31605. {
  31606. side: {
  31607. height: math.unit(5.6, "m"),
  31608. weight: math.unit(8000, "kg"),
  31609. name: "Side",
  31610. image: {
  31611. source: "./media/characters/victoria/side.svg",
  31612. extra: 1542/1229,
  31613. bottom: 124/1666
  31614. }
  31615. },
  31616. maw: {
  31617. height: math.unit(7.14, "feet"),
  31618. name: "Maw",
  31619. image: {
  31620. source: "./media/characters/victoria/maw.svg"
  31621. }
  31622. },
  31623. },
  31624. [
  31625. {
  31626. name: "Normal",
  31627. height: math.unit(5.6, "m"),
  31628. default: true
  31629. },
  31630. ]
  31631. ))
  31632. characterMakers.push(() => makeCharacter(
  31633. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31634. {
  31635. front: {
  31636. height: math.unit(5 + 6 / 12, "feet"),
  31637. name: "Front",
  31638. image: {
  31639. source: "./media/characters/cat/cat-front.svg",
  31640. extra: 1422/1262,
  31641. bottom: 61/1483
  31642. },
  31643. form: "cat",
  31644. default: true
  31645. },
  31646. back: {
  31647. height: math.unit(5 + 6 / 12, "feet"),
  31648. name: "Back",
  31649. image: {
  31650. source: "./media/characters/cat/cat-back.svg",
  31651. extra: 1466/1301,
  31652. bottom: 19/1485
  31653. },
  31654. form: "cat"
  31655. },
  31656. taur: {
  31657. height: math.unit(7, "feet"),
  31658. name: "Side",
  31659. image: {
  31660. source: "./media/characters/cat/taur-side.svg",
  31661. extra: 1389/1233,
  31662. bottom: 83/1472
  31663. },
  31664. form: "taur",
  31665. default: true
  31666. },
  31667. lucarioFront: {
  31668. height: math.unit(4, "feet"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/cat/lucario-front.svg",
  31672. extra: 1149/1019,
  31673. bottom: 84/1233
  31674. },
  31675. form: "lucario",
  31676. default: true
  31677. },
  31678. lucarioBack: {
  31679. height: math.unit(4, "feet"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/cat/lucario-back.svg",
  31683. extra: 1190/1059,
  31684. bottom: 33/1223
  31685. },
  31686. form: "lucario"
  31687. },
  31688. riolu_front: {
  31689. height: math.unit(2 + 4/12, "feet"),
  31690. name: "Front",
  31691. image: {
  31692. source: "./media/characters/cat/riolu-front.svg",
  31693. extra: 1104/956,
  31694. bottom: 70/1174
  31695. },
  31696. form: "riolu",
  31697. default: true
  31698. },
  31699. nickit: {
  31700. height: math.unit(2, "feet"),
  31701. name: "Side",
  31702. image: {
  31703. source: "./media/characters/cat/nickit-side.svg",
  31704. extra: 1087/852,
  31705. bottom: 67/1154
  31706. },
  31707. form: "nickit",
  31708. default: true
  31709. },
  31710. lopunnyFront: {
  31711. height: math.unit(5, "feet"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/cat/lopunny-front.svg",
  31715. extra: 1217/1078,
  31716. bottom: 23/1240
  31717. },
  31718. form: "lopunny",
  31719. default: true
  31720. },
  31721. lopunnyBack: {
  31722. height: math.unit(5, "feet"),
  31723. name: "Back",
  31724. image: {
  31725. source: "./media/characters/cat/lopunny-back.svg",
  31726. extra: 1205/1057,
  31727. bottom: 33/1238
  31728. },
  31729. form: "lopunny"
  31730. },
  31731. dog_front: {
  31732. height: math.unit(5 + 9/12, "feet"),
  31733. name: "Front",
  31734. image: {
  31735. source: "./media/characters/cat/dog-front.svg",
  31736. extra: 1403/1309,
  31737. bottom: 31/1434
  31738. },
  31739. form: "dog",
  31740. default: true
  31741. },
  31742. dog_back: {
  31743. height: math.unit(5 + 9/12, "feet"),
  31744. name: "Back",
  31745. image: {
  31746. source: "./media/characters/cat/dog-back.svg",
  31747. extra: 1393/1297,
  31748. bottom: 38/1431
  31749. },
  31750. form: "dog",
  31751. },
  31752. pikachu_front: {
  31753. height: math.unit(2.64, "feet"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/cat/pikachu-front.svg",
  31757. extra: 1224/958,
  31758. bottom: 34/1258
  31759. },
  31760. form: "pikachu",
  31761. default: true
  31762. },
  31763. pikachu_back: {
  31764. height: math.unit(2.64, "feet"),
  31765. name: "Back",
  31766. image: {
  31767. source: "./media/characters/cat/pikachu-back.svg",
  31768. extra: 1228/958,
  31769. bottom: 16/1244
  31770. },
  31771. form: "pikachu",
  31772. },
  31773. gigachuFront: {
  31774. height: math.unit(75, "feet"),
  31775. name: "Front",
  31776. image: {
  31777. source: "./media/characters/cat/gigachu-front.svg",
  31778. extra: 1239/1027,
  31779. bottom: 32/1271
  31780. },
  31781. form: "gigachu",
  31782. default: true
  31783. },
  31784. gigachuBack: {
  31785. height: math.unit(75, "feet"),
  31786. name: "Back",
  31787. image: {
  31788. source: "./media/characters/cat/gigachu-back.svg",
  31789. extra: 1229/1030,
  31790. bottom: 9/1238
  31791. },
  31792. form: "gigachu"
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Really small",
  31798. height: math.unit(1, "nm"),
  31799. allForms: true
  31800. },
  31801. {
  31802. name: "Micro",
  31803. height: math.unit(5, "inches"),
  31804. allForms: true
  31805. },
  31806. {
  31807. name: "Normal",
  31808. height: math.unit(5 + 6 / 12, "feet"),
  31809. default: true,
  31810. form: "cat"
  31811. },
  31812. {
  31813. name: "Normal",
  31814. height: math.unit(7, "feet"),
  31815. default: true,
  31816. form: "taur"
  31817. },
  31818. {
  31819. name: "Normal",
  31820. height: math.unit(4, "feet"),
  31821. default: true,
  31822. form: "lucario"
  31823. },
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(2, "feet"),
  31827. default: true,
  31828. form: "nickit"
  31829. },
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(5, "feet"),
  31833. default: true,
  31834. form: "lopunny"
  31835. },
  31836. {
  31837. name: "Normal",
  31838. height: math.unit(2 + 4/12, "feet"),
  31839. default: true,
  31840. form: "riolu"
  31841. },
  31842. {
  31843. name: "Normal",
  31844. height: math.unit(5 + 6 / 12, "feet"),
  31845. default: true,
  31846. form: "dog"
  31847. },
  31848. {
  31849. name: "Macro",
  31850. height: math.unit(50, "feet"),
  31851. allForms: true
  31852. },
  31853. {
  31854. name: "Normal",
  31855. height: math.unit(2.64, "feet"),
  31856. default: true,
  31857. form: "pikachu"
  31858. },
  31859. {
  31860. name: "Dynamax",
  31861. height: math.unit(75, "feet"),
  31862. form: "gigachu",
  31863. default: true
  31864. },
  31865. {
  31866. name: "Macro+",
  31867. height: math.unit(150, "feet"),
  31868. allForms: true
  31869. },
  31870. {
  31871. name: "Megamacro",
  31872. height: math.unit(100, "miles"),
  31873. allForms: true
  31874. },
  31875. ],
  31876. {
  31877. "cat": {
  31878. name: "Cat",
  31879. default: true
  31880. },
  31881. "taur": {
  31882. name: "Taur",
  31883. },
  31884. "lucario": {
  31885. name: "Lucario",
  31886. },
  31887. "riolu": {
  31888. name: "Riolu",
  31889. },
  31890. "nickit": {
  31891. name: "Nickit",
  31892. },
  31893. "lopunny": {
  31894. name: "Lopunny",
  31895. },
  31896. "dog": {
  31897. name: "Dog",
  31898. },
  31899. "pikachu": {
  31900. name: "Pikachu",
  31901. },
  31902. "gigachu": {
  31903. name: "Gigachu",
  31904. ignoreAllFormSizes: true
  31905. }
  31906. }
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31910. {
  31911. front: {
  31912. height: math.unit(63.4, "meters"),
  31913. weight: math.unit(3.28349e+6, "kilograms"),
  31914. name: "Front",
  31915. image: {
  31916. source: "./media/characters/kirina-violet/front.svg",
  31917. extra: 2812 / 2725,
  31918. bottom: 0 / 2812
  31919. }
  31920. },
  31921. back: {
  31922. height: math.unit(63.4, "meters"),
  31923. weight: math.unit(3.28349e+6, "kilograms"),
  31924. name: "Back",
  31925. image: {
  31926. source: "./media/characters/kirina-violet/back.svg",
  31927. extra: 2812 / 2725,
  31928. bottom: 0 / 2812
  31929. }
  31930. },
  31931. mouth: {
  31932. height: math.unit(4.35, "meters"),
  31933. name: "Mouth",
  31934. image: {
  31935. source: "./media/characters/kirina-violet/mouth.svg"
  31936. }
  31937. },
  31938. paw: {
  31939. height: math.unit(5.6, "meters"),
  31940. name: "Paw",
  31941. image: {
  31942. source: "./media/characters/kirina-violet/paw.svg"
  31943. }
  31944. },
  31945. tail: {
  31946. height: math.unit(18, "meters"),
  31947. name: "Tail",
  31948. image: {
  31949. source: "./media/characters/kirina-violet/tail.svg"
  31950. }
  31951. },
  31952. },
  31953. [
  31954. {
  31955. name: "Macro",
  31956. height: math.unit(63.4, "meters"),
  31957. default: true
  31958. },
  31959. ]
  31960. ))
  31961. characterMakers.push(() => makeCharacter(
  31962. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31963. {
  31964. front: {
  31965. height: math.unit(6, "feet"),
  31966. weight: math.unit(150, "lb"),
  31967. name: "Front",
  31968. image: {
  31969. source: "./media/characters/sfaiyan/front.svg",
  31970. extra: 999 / 978,
  31971. bottom: 5 / 1004
  31972. }
  31973. },
  31974. },
  31975. [
  31976. {
  31977. name: "Normal",
  31978. height: math.unit(1.82, "meters")
  31979. },
  31980. {
  31981. name: "Giant",
  31982. height: math.unit(2.27, "km"),
  31983. default: true
  31984. },
  31985. ]
  31986. ))
  31987. characterMakers.push(() => makeCharacter(
  31988. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31989. {
  31990. front: {
  31991. height: math.unit(179, "cm"),
  31992. weight: math.unit(100, "kg"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/raunehkeli/front.svg",
  31996. extra: 1934 / 1926,
  31997. bottom: 0 / 1934
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Normal",
  32004. height: math.unit(179, "cm")
  32005. },
  32006. {
  32007. name: "Maximum",
  32008. height: math.unit(575, "meters"),
  32009. default: true
  32010. },
  32011. ]
  32012. ))
  32013. characterMakers.push(() => makeCharacter(
  32014. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  32015. {
  32016. front: {
  32017. height: math.unit(6, "feet"),
  32018. weight: math.unit(150, "lb"),
  32019. name: "Front",
  32020. image: {
  32021. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  32022. extra: 2625 / 2518,
  32023. bottom: 60 / 2685
  32024. }
  32025. },
  32026. },
  32027. [
  32028. {
  32029. name: "Normal",
  32030. height: math.unit(6 + 2 / 12, "feet")
  32031. },
  32032. {
  32033. name: "Macro",
  32034. height: math.unit(1180, "feet"),
  32035. default: true
  32036. },
  32037. ]
  32038. ))
  32039. characterMakers.push(() => makeCharacter(
  32040. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  32041. {
  32042. front: {
  32043. height: math.unit(5 + 6 / 12, "feet"),
  32044. weight: math.unit(108, "lb"),
  32045. name: "Front",
  32046. image: {
  32047. source: "./media/characters/lilith-zott/front.svg",
  32048. extra: 2510 / 2238,
  32049. bottom: 100 / 2610
  32050. }
  32051. },
  32052. frontDressed: {
  32053. height: math.unit(5 + 6 / 12, "feet"),
  32054. weight: math.unit(108, "lb"),
  32055. name: "Front (Dressed)",
  32056. image: {
  32057. source: "./media/characters/lilith-zott/front-dressed.svg",
  32058. extra: 2510 / 2238,
  32059. bottom: 100 / 2610
  32060. }
  32061. },
  32062. },
  32063. [
  32064. {
  32065. name: "Normal",
  32066. height: math.unit(5 + 6 / 12, "feet")
  32067. },
  32068. {
  32069. name: "Macro",
  32070. height: math.unit(1030, "feet"),
  32071. default: true
  32072. },
  32073. ]
  32074. ))
  32075. characterMakers.push(() => makeCharacter(
  32076. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32077. {
  32078. front: {
  32079. height: math.unit(6, "feet"),
  32080. weight: math.unit(150, "lb"),
  32081. name: "Front",
  32082. image: {
  32083. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32084. extra: 2567 / 2435,
  32085. bottom: 39 / 2606
  32086. }
  32087. },
  32088. frontSuper: {
  32089. height: math.unit(6, "feet"),
  32090. name: "Front (Super)",
  32091. image: {
  32092. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32093. extra: 2567 / 2435,
  32094. bottom: 39 / 2606
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(5 + 10 / 12, "feet")
  32102. },
  32103. {
  32104. name: "Macro",
  32105. height: math.unit(1100, "feet"),
  32106. default: true
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(100, "miles"),
  32115. name: "Front",
  32116. image: {
  32117. source: "./media/characters/sona/front.svg",
  32118. extra: 2433 / 2201,
  32119. bottom: 53 / 2486
  32120. }
  32121. },
  32122. foot: {
  32123. height: math.unit(16.1, "miles"),
  32124. name: "Foot",
  32125. image: {
  32126. source: "./media/characters/sona/foot.svg"
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Macro",
  32133. height: math.unit(100, "miles"),
  32134. default: true
  32135. },
  32136. ]
  32137. ))
  32138. characterMakers.push(() => makeCharacter(
  32139. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32140. {
  32141. front: {
  32142. height: math.unit(6, "feet"),
  32143. weight: math.unit(150, "lb"),
  32144. name: "Front",
  32145. image: {
  32146. source: "./media/characters/bailey/front.svg",
  32147. extra: 1778 / 1724,
  32148. bottom: 30 / 1808
  32149. }
  32150. },
  32151. },
  32152. [
  32153. {
  32154. name: "Micro",
  32155. height: math.unit(4, "inches")
  32156. },
  32157. {
  32158. name: "Normal",
  32159. height: math.unit(5 + 5 / 12, "feet"),
  32160. default: true
  32161. },
  32162. {
  32163. name: "Macro",
  32164. height: math.unit(250, "feet")
  32165. },
  32166. {
  32167. name: "Megamacro",
  32168. height: math.unit(100, "miles")
  32169. },
  32170. ]
  32171. ))
  32172. characterMakers.push(() => makeCharacter(
  32173. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32174. {
  32175. front: {
  32176. height: math.unit(5 + 2 / 12, "feet"),
  32177. weight: math.unit(120, "lb"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/snaps/front.svg",
  32181. extra: 2370 / 2177,
  32182. bottom: 48 / 2418
  32183. }
  32184. },
  32185. back: {
  32186. height: math.unit(5 + 2 / 12, "feet"),
  32187. weight: math.unit(120, "lb"),
  32188. name: "Back",
  32189. image: {
  32190. source: "./media/characters/snaps/back.svg",
  32191. extra: 2408 / 2258,
  32192. bottom: 15 / 2423
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Micro",
  32199. height: math.unit(9, "inches")
  32200. },
  32201. {
  32202. name: "Normal",
  32203. height: math.unit(5 + 2 / 12, "feet"),
  32204. default: true
  32205. },
  32206. {
  32207. name: "Mini Macro",
  32208. height: math.unit(10, "feet")
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32214. {
  32215. front: {
  32216. height: math.unit(1.8, "meters"),
  32217. weight: math.unit(85, "kg"),
  32218. name: "Front",
  32219. image: {
  32220. source: "./media/characters/azteck/front.svg",
  32221. extra: 2815 / 2625,
  32222. bottom: 89 / 2904
  32223. }
  32224. },
  32225. back: {
  32226. height: math.unit(1.8, "meters"),
  32227. weight: math.unit(85, "kg"),
  32228. name: "Back",
  32229. image: {
  32230. source: "./media/characters/azteck/back.svg",
  32231. extra: 2856 / 2648,
  32232. bottom: 85 / 2941
  32233. }
  32234. },
  32235. frontDressed: {
  32236. height: math.unit(1.8, "meters"),
  32237. weight: math.unit(85, "kg"),
  32238. name: "Front (Dressed)",
  32239. image: {
  32240. source: "./media/characters/azteck/front-dressed.svg",
  32241. extra: 2147 / 2003,
  32242. bottom: 68 / 2215
  32243. }
  32244. },
  32245. head: {
  32246. height: math.unit(0.47, "meters"),
  32247. weight: math.unit(85, "kg"),
  32248. name: "Head",
  32249. image: {
  32250. source: "./media/characters/azteck/head.svg"
  32251. }
  32252. },
  32253. },
  32254. [
  32255. {
  32256. name: "Bite sized",
  32257. height: math.unit(16, "cm")
  32258. },
  32259. {
  32260. name: "Normal",
  32261. height: math.unit(1.8, "meters"),
  32262. default: true
  32263. },
  32264. ]
  32265. ))
  32266. characterMakers.push(() => makeCharacter(
  32267. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32268. {
  32269. front: {
  32270. height: math.unit(6, "feet"),
  32271. weight: math.unit(150, "lb"),
  32272. name: "Front",
  32273. image: {
  32274. source: "./media/characters/pidge/front.svg",
  32275. extra: 1936/1820,
  32276. bottom: 0/1936
  32277. }
  32278. },
  32279. back: {
  32280. height: math.unit(6, "feet"),
  32281. weight: math.unit(150, "lb"),
  32282. name: "Back",
  32283. image: {
  32284. source: "./media/characters/pidge/back.svg",
  32285. extra: 1938/1843,
  32286. bottom: 0/1938
  32287. }
  32288. },
  32289. casual: {
  32290. height: math.unit(6, "feet"),
  32291. weight: math.unit(150, "lb"),
  32292. name: "Casual",
  32293. image: {
  32294. source: "./media/characters/pidge/casual.svg",
  32295. extra: 1936/1820,
  32296. bottom: 0/1936
  32297. }
  32298. },
  32299. tech: {
  32300. height: math.unit(6, "feet"),
  32301. weight: math.unit(150, "lb"),
  32302. name: "Tech",
  32303. image: {
  32304. source: "./media/characters/pidge/tech.svg",
  32305. extra: 1802/1682,
  32306. bottom: 0/1802
  32307. }
  32308. },
  32309. head: {
  32310. height: math.unit(1.61, "feet"),
  32311. name: "Head",
  32312. image: {
  32313. source: "./media/characters/pidge/head.svg"
  32314. }
  32315. },
  32316. collar: {
  32317. height: math.unit(0.82, "feet"),
  32318. name: "Collar",
  32319. image: {
  32320. source: "./media/characters/pidge/collar.svg"
  32321. }
  32322. },
  32323. },
  32324. [
  32325. {
  32326. name: "Macro",
  32327. height: math.unit(2, "mile"),
  32328. default: true
  32329. },
  32330. {
  32331. name: "PUPPY",
  32332. height: math.unit(20, "miles")
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(6, "feet"),
  32341. weight: math.unit(150, "lb"),
  32342. name: "Front",
  32343. image: {
  32344. source: "./media/characters/en/front.svg",
  32345. extra: 1697 / 1563,
  32346. bottom: 103 / 1800
  32347. }
  32348. },
  32349. back: {
  32350. height: math.unit(6, "feet"),
  32351. weight: math.unit(150, "lb"),
  32352. name: "Back",
  32353. image: {
  32354. source: "./media/characters/en/back.svg",
  32355. extra: 1700 / 1570,
  32356. bottom: 51 / 1751
  32357. }
  32358. },
  32359. frontDressed: {
  32360. height: math.unit(6, "feet"),
  32361. weight: math.unit(150, "lb"),
  32362. name: "Front (Dressed)",
  32363. image: {
  32364. source: "./media/characters/en/front-dressed.svg",
  32365. extra: 1697 / 1563,
  32366. bottom: 103 / 1800
  32367. }
  32368. },
  32369. backDressed: {
  32370. height: math.unit(6, "feet"),
  32371. weight: math.unit(150, "lb"),
  32372. name: "Back (Dressed)",
  32373. image: {
  32374. source: "./media/characters/en/back-dressed.svg",
  32375. extra: 1700 / 1570,
  32376. bottom: 51 / 1751
  32377. }
  32378. },
  32379. },
  32380. [
  32381. {
  32382. name: "Macro",
  32383. height: math.unit(210, "feet"),
  32384. default: true
  32385. },
  32386. ]
  32387. ))
  32388. characterMakers.push(() => makeCharacter(
  32389. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32390. {
  32391. front: {
  32392. height: math.unit(6, "feet"),
  32393. weight: math.unit(150, "lb"),
  32394. name: "Front",
  32395. image: {
  32396. source: "./media/characters/haze-orris/front.svg",
  32397. extra: 3975 / 3525,
  32398. bottom: 137 / 4112
  32399. }
  32400. },
  32401. },
  32402. [
  32403. {
  32404. name: "Micro",
  32405. height: math.unit(150, "mm"),
  32406. default: true
  32407. },
  32408. ]
  32409. ))
  32410. characterMakers.push(() => makeCharacter(
  32411. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32412. {
  32413. front: {
  32414. height: math.unit(6, "feet"),
  32415. weight: math.unit(150, "lb"),
  32416. name: "Front",
  32417. image: {
  32418. source: "./media/characters/casselene-yaro/front.svg",
  32419. extra: 4721 / 4541,
  32420. bottom: 82 / 4803
  32421. }
  32422. },
  32423. back: {
  32424. height: math.unit(6, "feet"),
  32425. weight: math.unit(150, "lb"),
  32426. name: "Back",
  32427. image: {
  32428. source: "./media/characters/casselene-yaro/back.svg",
  32429. extra: 4569 / 4377,
  32430. bottom: 69 / 4638
  32431. }
  32432. },
  32433. dressed: {
  32434. height: math.unit(6, "feet"),
  32435. weight: math.unit(150, "lb"),
  32436. name: "Dressed",
  32437. image: {
  32438. source: "./media/characters/casselene-yaro/dressed.svg",
  32439. extra: 4721 / 4541,
  32440. bottom: 82 / 4803
  32441. }
  32442. },
  32443. maw: {
  32444. height: math.unit(1, "feet"),
  32445. name: "Maw",
  32446. image: {
  32447. source: "./media/characters/casselene-yaro/maw.svg"
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Macro",
  32454. height: math.unit(190, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(10, "feet"),
  32464. weight: math.unit(15015, "lb"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/platine/front.svg",
  32468. extra: 1741/1650,
  32469. bottom: 84/1825
  32470. }
  32471. },
  32472. side: {
  32473. height: math.unit(10, "feet"),
  32474. weight: math.unit(15015, "lb"),
  32475. name: "Side",
  32476. image: {
  32477. source: "./media/characters/platine/side.svg",
  32478. extra: 1790/1705,
  32479. bottom: 29/1819
  32480. }
  32481. },
  32482. },
  32483. [
  32484. {
  32485. name: "Normal",
  32486. height: math.unit(10, "feet"),
  32487. default: true
  32488. },
  32489. {
  32490. name: "Macro",
  32491. height: math.unit(100, "feet")
  32492. },
  32493. {
  32494. name: "Megamacro",
  32495. height: math.unit(1000, "feet")
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32501. {
  32502. front: {
  32503. height: math.unit(15 + 5 / 12, "feet"),
  32504. weight: math.unit(4600, "lb"),
  32505. name: "Front",
  32506. image: {
  32507. source: "./media/characters/neapolitan-ananassa/front.svg",
  32508. extra: 2903 / 2736,
  32509. bottom: 0 / 2903
  32510. }
  32511. },
  32512. side: {
  32513. height: math.unit(15 + 5 / 12, "feet"),
  32514. weight: math.unit(4600, "lb"),
  32515. name: "Side",
  32516. image: {
  32517. source: "./media/characters/neapolitan-ananassa/side.svg",
  32518. extra: 2925 / 2719,
  32519. bottom: 0 / 2925
  32520. }
  32521. },
  32522. back: {
  32523. height: math.unit(15 + 5 / 12, "feet"),
  32524. weight: math.unit(4600, "lb"),
  32525. name: "Back",
  32526. image: {
  32527. source: "./media/characters/neapolitan-ananassa/back.svg",
  32528. extra: 2903 / 2736,
  32529. bottom: 0 / 2903
  32530. }
  32531. },
  32532. },
  32533. [
  32534. {
  32535. name: "Normal",
  32536. height: math.unit(15 + 5 / 12, "feet"),
  32537. default: true
  32538. },
  32539. {
  32540. name: "Post-Millenium",
  32541. height: math.unit(35 + 5 / 12, "feet")
  32542. },
  32543. {
  32544. name: "Post-Era",
  32545. height: math.unit(450 + 5 / 12, "feet")
  32546. },
  32547. ]
  32548. ))
  32549. characterMakers.push(() => makeCharacter(
  32550. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32551. {
  32552. front: {
  32553. height: math.unit(300, "meters"),
  32554. weight: math.unit(125000, "tonnes"),
  32555. name: "Front",
  32556. image: {
  32557. source: "./media/characters/pazuzu/front.svg",
  32558. extra: 877 / 794,
  32559. bottom: 47 / 924
  32560. }
  32561. },
  32562. },
  32563. [
  32564. {
  32565. name: "Macro",
  32566. height: math.unit(300, "meters"),
  32567. default: true
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32573. {
  32574. side: {
  32575. height: math.unit(10 + 7 / 12, "feet"),
  32576. weight: math.unit(2.5, "tons"),
  32577. name: "Side",
  32578. image: {
  32579. source: "./media/characters/aasha/side.svg",
  32580. extra: 1345 / 1245,
  32581. bottom: 111 / 1456
  32582. }
  32583. },
  32584. back: {
  32585. height: math.unit(10 + 7 / 12, "feet"),
  32586. weight: math.unit(2.5, "tons"),
  32587. name: "Back",
  32588. image: {
  32589. source: "./media/characters/aasha/back.svg",
  32590. extra: 1133 / 1057,
  32591. bottom: 257 / 1390
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(10 + 7 / 12, "feet"),
  32599. default: true
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32605. {
  32606. front: {
  32607. height: math.unit(6 + 3 / 12, "feet"),
  32608. name: "Front",
  32609. image: {
  32610. source: "./media/characters/nevan/front.svg",
  32611. extra: 704 / 704,
  32612. bottom: 28 / 732
  32613. }
  32614. },
  32615. back: {
  32616. height: math.unit(6 + 3 / 12, "feet"),
  32617. name: "Back",
  32618. image: {
  32619. source: "./media/characters/nevan/back.svg",
  32620. extra: 714 / 714,
  32621. bottom: 21 / 735
  32622. }
  32623. },
  32624. frontFlaccid: {
  32625. height: math.unit(6 + 3 / 12, "feet"),
  32626. name: "Front (Flaccid)",
  32627. image: {
  32628. source: "./media/characters/nevan/front-flaccid.svg",
  32629. extra: 704 / 704,
  32630. bottom: 28 / 732
  32631. }
  32632. },
  32633. frontErect: {
  32634. height: math.unit(6 + 3 / 12, "feet"),
  32635. name: "Front (Erect)",
  32636. image: {
  32637. source: "./media/characters/nevan/front-erect.svg",
  32638. extra: 704 / 704,
  32639. bottom: 28 / 732
  32640. }
  32641. },
  32642. backFlaccid: {
  32643. height: math.unit(6 + 3 / 12, "feet"),
  32644. name: "Back (Flaccid)",
  32645. image: {
  32646. source: "./media/characters/nevan/back-flaccid.svg",
  32647. extra: 714 / 714,
  32648. bottom: 21 / 735
  32649. }
  32650. },
  32651. },
  32652. [
  32653. {
  32654. name: "Normal",
  32655. height: math.unit(6 + 3 / 12, "feet"),
  32656. default: true
  32657. },
  32658. ]
  32659. ))
  32660. characterMakers.push(() => makeCharacter(
  32661. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32662. {
  32663. front: {
  32664. height: math.unit(4, "feet"),
  32665. name: "Front",
  32666. image: {
  32667. source: "./media/characters/arhan/front.svg",
  32668. extra: 3368 / 3133,
  32669. bottom: 0 / 3368
  32670. }
  32671. },
  32672. side: {
  32673. height: math.unit(4, "feet"),
  32674. name: "Side",
  32675. image: {
  32676. source: "./media/characters/arhan/side.svg",
  32677. extra: 3347 / 3105,
  32678. bottom: 0 / 3347
  32679. }
  32680. },
  32681. tongue: {
  32682. height: math.unit(1.42, "feet"),
  32683. name: "Tongue",
  32684. image: {
  32685. source: "./media/characters/arhan/tongue.svg"
  32686. }
  32687. },
  32688. head: {
  32689. height: math.unit(0.85, "feet"),
  32690. name: "Head",
  32691. image: {
  32692. source: "./media/characters/arhan/head.svg"
  32693. }
  32694. },
  32695. },
  32696. [
  32697. {
  32698. name: "Normal",
  32699. height: math.unit(4, "feet"),
  32700. default: true
  32701. },
  32702. ]
  32703. ))
  32704. characterMakers.push(() => makeCharacter(
  32705. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32706. {
  32707. front: {
  32708. height: math.unit(5 + 7.5 / 12, "feet"),
  32709. weight: math.unit(120, "lb"),
  32710. name: "Front",
  32711. image: {
  32712. source: "./media/characters/digi-duncan/front.svg",
  32713. extra: 330 / 326,
  32714. bottom: 16 / 346
  32715. }
  32716. },
  32717. side: {
  32718. height: math.unit(5 + 7.5 / 12, "feet"),
  32719. weight: math.unit(120, "lb"),
  32720. name: "Side",
  32721. image: {
  32722. source: "./media/characters/digi-duncan/side.svg",
  32723. extra: 341 / 337,
  32724. bottom: 1 / 342
  32725. }
  32726. },
  32727. back: {
  32728. height: math.unit(5 + 7.5 / 12, "feet"),
  32729. weight: math.unit(120, "lb"),
  32730. name: "Back",
  32731. image: {
  32732. source: "./media/characters/digi-duncan/back.svg",
  32733. extra: 330 / 326,
  32734. bottom: 12 / 342
  32735. }
  32736. },
  32737. },
  32738. [
  32739. {
  32740. name: "Speck",
  32741. height: math.unit(0.25, "mm")
  32742. },
  32743. {
  32744. name: "Micro",
  32745. height: math.unit(5, "mm")
  32746. },
  32747. {
  32748. name: "Tiny",
  32749. height: math.unit(0.5, "inches"),
  32750. default: true
  32751. },
  32752. {
  32753. name: "Human",
  32754. height: math.unit(5 + 7.5 / 12, "feet")
  32755. },
  32756. {
  32757. name: "Minigiant",
  32758. height: math.unit(8 + 5.25, "feet")
  32759. },
  32760. {
  32761. name: "Giant",
  32762. height: math.unit(2000, "feet")
  32763. },
  32764. {
  32765. name: "Mega",
  32766. height: math.unit(371.1, "miles")
  32767. },
  32768. ]
  32769. ))
  32770. characterMakers.push(() => makeCharacter(
  32771. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32772. {
  32773. front: {
  32774. height: math.unit(2, "meters"),
  32775. weight: math.unit(350, "kg"),
  32776. name: "Front",
  32777. image: {
  32778. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32779. extra: 898 / 838,
  32780. bottom: 9 / 907
  32781. }
  32782. },
  32783. },
  32784. [
  32785. {
  32786. name: "Micro",
  32787. height: math.unit(8, "meters")
  32788. },
  32789. {
  32790. name: "Normal",
  32791. height: math.unit(50, "meters"),
  32792. default: true
  32793. },
  32794. {
  32795. name: "Macro",
  32796. height: math.unit(500, "meters")
  32797. },
  32798. ]
  32799. ))
  32800. characterMakers.push(() => makeCharacter(
  32801. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32802. {
  32803. front: {
  32804. height: math.unit(6 + 6 / 12, "feet"),
  32805. name: "Front",
  32806. image: {
  32807. source: "./media/characters/khardesh/front.svg",
  32808. extra: 1788/1596,
  32809. bottom: 66/1854
  32810. }
  32811. },
  32812. back: {
  32813. height: math.unit(6 + 6 / 12, "feet"),
  32814. name: "Back",
  32815. image: {
  32816. source: "./media/characters/khardesh/back.svg",
  32817. extra: 1781/1584,
  32818. bottom: 68/1849
  32819. }
  32820. },
  32821. },
  32822. [
  32823. {
  32824. name: "Normal",
  32825. height: math.unit(6 + 6 / 12, "feet"),
  32826. default: true
  32827. },
  32828. {
  32829. name: "Normal+",
  32830. height: math.unit(4, "meters")
  32831. },
  32832. {
  32833. name: "Macro",
  32834. height: math.unit(50, "meters")
  32835. },
  32836. {
  32837. name: "Macro+",
  32838. height: math.unit(100, "meters")
  32839. },
  32840. {
  32841. name: "Megamacro",
  32842. height: math.unit(20, "km")
  32843. },
  32844. ]
  32845. ))
  32846. characterMakers.push(() => makeCharacter(
  32847. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32848. {
  32849. front: {
  32850. height: math.unit(6, "feet"),
  32851. weight: math.unit(150, "lb"),
  32852. name: "Front",
  32853. image: {
  32854. source: "./media/characters/kosho/front.svg",
  32855. extra: 1847 / 1847,
  32856. bottom: 86 / 1933
  32857. }
  32858. },
  32859. },
  32860. [
  32861. {
  32862. name: "Second-stage micro",
  32863. height: math.unit(0.5, "inches")
  32864. },
  32865. {
  32866. name: "First-stage micro",
  32867. height: math.unit(6, "inches")
  32868. },
  32869. {
  32870. name: "Normal",
  32871. height: math.unit(6, "feet"),
  32872. default: true
  32873. },
  32874. {
  32875. name: "First-stage macro",
  32876. height: math.unit(72, "feet")
  32877. },
  32878. {
  32879. name: "Second-stage macro",
  32880. height: math.unit(864, "feet")
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32886. {
  32887. normal: {
  32888. height: math.unit(4 + 6 / 12, "feet"),
  32889. name: "Normal",
  32890. image: {
  32891. source: "./media/characters/hydra/normal.svg",
  32892. extra: 2833 / 2634,
  32893. bottom: 68 / 2901
  32894. }
  32895. },
  32896. smol: {
  32897. height: math.unit(0.705, "inches"),
  32898. name: "Smol",
  32899. image: {
  32900. source: "./media/characters/hydra/smol.svg",
  32901. extra: 2715 / 2540,
  32902. bottom: 0 / 2715
  32903. }
  32904. },
  32905. },
  32906. [
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(4 + 6 / 12, "feet"),
  32910. default: true
  32911. }
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32916. {
  32917. front: {
  32918. height: math.unit(0.6, "cm"),
  32919. name: "Front",
  32920. image: {
  32921. source: "./media/characters/daz/front.svg",
  32922. extra: 1682 / 1164,
  32923. bottom: 42 / 1724
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(0.6, "cm"),
  32931. default: true
  32932. },
  32933. ]
  32934. ))
  32935. characterMakers.push(() => makeCharacter(
  32936. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32937. {
  32938. front: {
  32939. height: math.unit(6, "feet"),
  32940. weight: math.unit(235, "lb"),
  32941. name: "Front",
  32942. image: {
  32943. source: "./media/characters/theo-pangolin/front.svg",
  32944. extra: 1996 / 1969,
  32945. bottom: 115 / 2111
  32946. }
  32947. },
  32948. back: {
  32949. height: math.unit(6, "feet"),
  32950. weight: math.unit(235, "lb"),
  32951. name: "Back",
  32952. image: {
  32953. source: "./media/characters/theo-pangolin/back.svg",
  32954. extra: 1979 / 1979,
  32955. bottom: 40 / 2019
  32956. }
  32957. },
  32958. feral: {
  32959. height: math.unit(2, "feet"),
  32960. weight: math.unit(30, "lb"),
  32961. name: "Feral",
  32962. image: {
  32963. source: "./media/characters/theo-pangolin/feral.svg",
  32964. extra: 803 / 791,
  32965. bottom: 181 / 984
  32966. }
  32967. },
  32968. footFive: {
  32969. height: math.unit(1.43, "feet"),
  32970. name: "Foot (Five Toes)",
  32971. image: {
  32972. source: "./media/characters/theo-pangolin/foot-five.svg"
  32973. }
  32974. },
  32975. footFour: {
  32976. height: math.unit(1.43, "feet"),
  32977. name: "Foot (Four Toes)",
  32978. image: {
  32979. source: "./media/characters/theo-pangolin/foot-four.svg"
  32980. }
  32981. },
  32982. handFour: {
  32983. height: math.unit(0.81, "feet"),
  32984. name: "Hand (Four Fingers)",
  32985. image: {
  32986. source: "./media/characters/theo-pangolin/hand-four.svg"
  32987. }
  32988. },
  32989. handThree: {
  32990. height: math.unit(0.81, "feet"),
  32991. name: "Hand (Three Fingers)",
  32992. image: {
  32993. source: "./media/characters/theo-pangolin/hand-three.svg"
  32994. }
  32995. },
  32996. headFront: {
  32997. height: math.unit(1.37, "feet"),
  32998. name: "Head (Front)",
  32999. image: {
  33000. source: "./media/characters/theo-pangolin/head-front.svg"
  33001. }
  33002. },
  33003. headSide: {
  33004. height: math.unit(1.43, "feet"),
  33005. name: "Head (Side)",
  33006. image: {
  33007. source: "./media/characters/theo-pangolin/head-side.svg"
  33008. }
  33009. },
  33010. tongue: {
  33011. height: math.unit(2.29, "feet"),
  33012. name: "Tongue",
  33013. image: {
  33014. source: "./media/characters/theo-pangolin/tongue.svg"
  33015. }
  33016. },
  33017. },
  33018. [
  33019. {
  33020. name: "Normal",
  33021. height: math.unit(6, "feet")
  33022. },
  33023. {
  33024. name: "Macro",
  33025. height: math.unit(400, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(6, "inches"),
  33035. weight: math.unit(0.036, "kg"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/renée/front.svg",
  33039. extra: 900 / 886,
  33040. bottom: 8 / 908
  33041. }
  33042. },
  33043. },
  33044. [
  33045. {
  33046. name: "Nano",
  33047. height: math.unit(1, "nm")
  33048. },
  33049. {
  33050. name: "Micro",
  33051. height: math.unit(1, "mm")
  33052. },
  33053. {
  33054. name: "Normal",
  33055. height: math.unit(6, "inches")
  33056. },
  33057. {
  33058. name: "Macro",
  33059. height: math.unit(2000, "feet"),
  33060. default: true
  33061. },
  33062. {
  33063. name: "Megamacro",
  33064. height: math.unit(2, "km")
  33065. },
  33066. {
  33067. name: "Gigamacro",
  33068. height: math.unit(2000, "km")
  33069. },
  33070. {
  33071. name: "Teramacro",
  33072. height: math.unit(250000, "km")
  33073. },
  33074. ]
  33075. ))
  33076. characterMakers.push(() => makeCharacter(
  33077. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33078. {
  33079. front: {
  33080. height: math.unit(4, "meters"),
  33081. weight: math.unit(150, "kg"),
  33082. name: "Front",
  33083. image: {
  33084. source: "./media/characters/caledvwlch/front.svg",
  33085. extra: 1757/1537,
  33086. bottom: 31/1788
  33087. }
  33088. },
  33089. side: {
  33090. height: math.unit(4, "meters"),
  33091. weight: math.unit(150, "kg"),
  33092. name: "Side",
  33093. image: {
  33094. source: "./media/characters/caledvwlch/side.svg",
  33095. extra: 1605 / 1536,
  33096. bottom: 31 / 1636
  33097. }
  33098. },
  33099. back: {
  33100. height: math.unit(4, "meters"),
  33101. weight: math.unit(150, "kg"),
  33102. name: "Back",
  33103. image: {
  33104. source: "./media/characters/caledvwlch/back.svg",
  33105. extra: 1635 / 1565,
  33106. bottom: 27 / 1662
  33107. }
  33108. },
  33109. },
  33110. [
  33111. {
  33112. name: "\"Incognito\"",
  33113. height: math.unit(4, "meters")
  33114. },
  33115. {
  33116. name: "Small rampage",
  33117. height: math.unit(600, "meters")
  33118. },
  33119. {
  33120. name: "Mega",
  33121. height: math.unit(30, "km")
  33122. },
  33123. {
  33124. name: "Home-size",
  33125. height: math.unit(50, "km"),
  33126. default: true
  33127. },
  33128. {
  33129. name: "Giga",
  33130. height: math.unit(300, "km")
  33131. },
  33132. {
  33133. name: "Lounging",
  33134. height: math.unit(11000, "km")
  33135. },
  33136. {
  33137. name: "Planet snacking",
  33138. height: math.unit(2000000, "km")
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33144. {
  33145. front: {
  33146. height: math.unit(6, "feet"),
  33147. weight: math.unit(215, "lb"),
  33148. name: "Front",
  33149. image: {
  33150. source: "./media/characters/sapphire-svell/front.svg",
  33151. extra: 495 / 455,
  33152. bottom: 20 / 515
  33153. }
  33154. },
  33155. back: {
  33156. height: math.unit(6, "feet"),
  33157. weight: math.unit(216, "lb"),
  33158. name: "Back",
  33159. image: {
  33160. source: "./media/characters/sapphire-svell/back.svg",
  33161. extra: 497 / 477,
  33162. bottom: 7 / 504
  33163. }
  33164. },
  33165. maw: {
  33166. height: math.unit(1.57, "feet"),
  33167. name: "Maw",
  33168. image: {
  33169. source: "./media/characters/sapphire-svell/maw.svg"
  33170. }
  33171. },
  33172. foot: {
  33173. height: math.unit(1.07, "feet"),
  33174. name: "Foot",
  33175. image: {
  33176. source: "./media/characters/sapphire-svell/foot.svg"
  33177. }
  33178. },
  33179. toering: {
  33180. height: math.unit(1.7, "inch"),
  33181. name: "Toering",
  33182. image: {
  33183. source: "./media/characters/sapphire-svell/toering.svg"
  33184. }
  33185. },
  33186. },
  33187. [
  33188. {
  33189. name: "Normal",
  33190. height: math.unit(300, "feet"),
  33191. default: true
  33192. },
  33193. {
  33194. name: "Augmented",
  33195. height: math.unit(1250, "feet")
  33196. },
  33197. {
  33198. name: "Unleashed",
  33199. height: math.unit(3000, "feet")
  33200. },
  33201. ]
  33202. ))
  33203. characterMakers.push(() => makeCharacter(
  33204. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33205. {
  33206. side: {
  33207. height: math.unit(2 + 3 / 12, "feet"),
  33208. weight: math.unit(110, "lb"),
  33209. name: "Side",
  33210. image: {
  33211. source: "./media/characters/glitch-flux/side.svg",
  33212. extra: 997 / 805,
  33213. bottom: 20 / 1017
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Normal",
  33220. height: math.unit(2 + 3 / 12, "feet"),
  33221. default: true
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33227. {
  33228. front: {
  33229. height: math.unit(4, "meters"),
  33230. name: "Front",
  33231. image: {
  33232. source: "./media/characters/mid/front.svg",
  33233. extra: 507 / 476,
  33234. bottom: 17 / 524
  33235. }
  33236. },
  33237. back: {
  33238. height: math.unit(4, "meters"),
  33239. name: "Back",
  33240. image: {
  33241. source: "./media/characters/mid/back.svg",
  33242. extra: 519 / 487,
  33243. bottom: 7 / 526
  33244. }
  33245. },
  33246. stuck: {
  33247. height: math.unit(2.2, "meters"),
  33248. name: "Stuck",
  33249. image: {
  33250. source: "./media/characters/mid/stuck.svg",
  33251. extra: 1951 / 1869,
  33252. bottom: 88 / 2039
  33253. }
  33254. }
  33255. },
  33256. [
  33257. {
  33258. name: "Normal",
  33259. height: math.unit(4, "meters"),
  33260. default: true
  33261. },
  33262. {
  33263. name: "Big",
  33264. height: math.unit(10, "meters")
  33265. },
  33266. {
  33267. name: "Macro",
  33268. height: math.unit(800, "meters")
  33269. },
  33270. {
  33271. name: "Megamacro",
  33272. height: math.unit(100, "km")
  33273. },
  33274. {
  33275. name: "Overgrown",
  33276. height: math.unit(1, "parsec")
  33277. },
  33278. ]
  33279. ))
  33280. characterMakers.push(() => makeCharacter(
  33281. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33282. {
  33283. front: {
  33284. height: math.unit(2.5, "meters"),
  33285. weight: math.unit(225, "kg"),
  33286. name: "Front",
  33287. image: {
  33288. source: "./media/characters/iris/front.svg",
  33289. extra: 3348 / 3251,
  33290. bottom: 205 / 3553
  33291. }
  33292. },
  33293. maw: {
  33294. height: math.unit(0.56, "meter"),
  33295. name: "Maw",
  33296. image: {
  33297. source: "./media/characters/iris/maw.svg"
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Mewter cat",
  33304. height: math.unit(1.2, "meters")
  33305. },
  33306. {
  33307. name: "Normal",
  33308. height: math.unit(2.5, "meters"),
  33309. default: true
  33310. },
  33311. {
  33312. name: "Minimacro",
  33313. height: math.unit(18, "feet")
  33314. },
  33315. {
  33316. name: "Macro",
  33317. height: math.unit(140, "feet")
  33318. },
  33319. {
  33320. name: "Macro+",
  33321. height: math.unit(180, "meters")
  33322. },
  33323. {
  33324. name: "Megamacro",
  33325. height: math.unit(2746, "meters")
  33326. },
  33327. ]
  33328. ))
  33329. characterMakers.push(() => makeCharacter(
  33330. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33331. {
  33332. front: {
  33333. height: math.unit(6, "feet"),
  33334. weight: math.unit(135, "lb"),
  33335. name: "Front",
  33336. image: {
  33337. source: "./media/characters/axel/front.svg",
  33338. extra: 908 / 908,
  33339. bottom: 58 / 966
  33340. }
  33341. },
  33342. side: {
  33343. height: math.unit(6, "feet"),
  33344. weight: math.unit(135, "lb"),
  33345. name: "Side",
  33346. image: {
  33347. source: "./media/characters/axel/side.svg",
  33348. extra: 958 / 958,
  33349. bottom: 11 / 969
  33350. }
  33351. },
  33352. back: {
  33353. height: math.unit(6, "feet"),
  33354. weight: math.unit(135, "lb"),
  33355. name: "Back",
  33356. image: {
  33357. source: "./media/characters/axel/back.svg",
  33358. extra: 887 / 887,
  33359. bottom: 34 / 921
  33360. }
  33361. },
  33362. head: {
  33363. height: math.unit(1.07, "feet"),
  33364. name: "Head",
  33365. image: {
  33366. source: "./media/characters/axel/head.svg"
  33367. }
  33368. },
  33369. beak: {
  33370. height: math.unit(1.4, "feet"),
  33371. name: "Beak",
  33372. image: {
  33373. source: "./media/characters/axel/beak.svg"
  33374. }
  33375. },
  33376. beakSide: {
  33377. height: math.unit(1.4, "feet"),
  33378. name: "Beak Side",
  33379. image: {
  33380. source: "./media/characters/axel/beak-side.svg"
  33381. }
  33382. },
  33383. sheath: {
  33384. height: math.unit(0.5, "feet"),
  33385. name: "Sheath",
  33386. image: {
  33387. source: "./media/characters/axel/sheath.svg"
  33388. }
  33389. },
  33390. dick: {
  33391. height: math.unit(0.98, "feet"),
  33392. name: "Dick",
  33393. image: {
  33394. source: "./media/characters/axel/dick.svg"
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Macro",
  33401. height: math.unit(68, "meters"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(3.5, "meters"),
  33411. weight: math.unit(1200, "kg"),
  33412. name: "Front",
  33413. image: {
  33414. source: "./media/characters/joanna/front.svg",
  33415. extra: 1596 / 1488,
  33416. bottom: 29 / 1625
  33417. }
  33418. },
  33419. back: {
  33420. height: math.unit(3.5, "meters"),
  33421. weight: math.unit(1200, "kg"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/joanna/back.svg",
  33425. extra: 1594 / 1495,
  33426. bottom: 26 / 1620
  33427. }
  33428. },
  33429. frontShorts: {
  33430. height: math.unit(3.5, "meters"),
  33431. weight: math.unit(1200, "kg"),
  33432. name: "Front (Shorts)",
  33433. image: {
  33434. source: "./media/characters/joanna/front-shorts.svg",
  33435. extra: 1596 / 1488,
  33436. bottom: 29 / 1625
  33437. }
  33438. },
  33439. frontBiker: {
  33440. height: math.unit(3.5, "meters"),
  33441. weight: math.unit(1200, "kg"),
  33442. name: "Front (Biker)",
  33443. image: {
  33444. source: "./media/characters/joanna/front-biker.svg",
  33445. extra: 1596 / 1488,
  33446. bottom: 29 / 1625
  33447. }
  33448. },
  33449. backBiker: {
  33450. height: math.unit(3.5, "meters"),
  33451. weight: math.unit(1200, "kg"),
  33452. name: "Back (Biker)",
  33453. image: {
  33454. source: "./media/characters/joanna/back-biker.svg",
  33455. extra: 1594 / 1495,
  33456. bottom: 88 / 1682
  33457. }
  33458. },
  33459. bikeLeft: {
  33460. height: math.unit(2.4, "meters"),
  33461. weight: math.unit(1600, "kg"),
  33462. name: "Bike (Left)",
  33463. image: {
  33464. source: "./media/characters/joanna/bike-left.svg",
  33465. extra: 720 / 720,
  33466. bottom: 8 / 728
  33467. }
  33468. },
  33469. bikeRight: {
  33470. height: math.unit(2.4, "meters"),
  33471. weight: math.unit(1600, "kg"),
  33472. name: "Bike (Right)",
  33473. image: {
  33474. source: "./media/characters/joanna/bike-right.svg",
  33475. extra: 720 / 720,
  33476. bottom: 8 / 728
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Incognito",
  33483. height: math.unit(3.5, "meters")
  33484. },
  33485. {
  33486. name: "Casual Big",
  33487. height: math.unit(200, "meters")
  33488. },
  33489. {
  33490. name: "Macro",
  33491. height: math.unit(600, "meters")
  33492. },
  33493. {
  33494. name: "Original",
  33495. height: math.unit(20, "km"),
  33496. default: true
  33497. },
  33498. {
  33499. name: "Giga",
  33500. height: math.unit(400, "km")
  33501. },
  33502. {
  33503. name: "Lounging",
  33504. height: math.unit(1500, "km")
  33505. },
  33506. {
  33507. name: "Planetary",
  33508. height: math.unit(200000, "km")
  33509. },
  33510. ]
  33511. ))
  33512. characterMakers.push(() => makeCharacter(
  33513. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33514. {
  33515. front: {
  33516. height: math.unit(6, "feet"),
  33517. weight: math.unit(150, "lb"),
  33518. name: "Front",
  33519. image: {
  33520. source: "./media/characters/hugo-sigil/front.svg",
  33521. extra: 522 / 500,
  33522. bottom: 2 / 524
  33523. }
  33524. },
  33525. back: {
  33526. height: math.unit(6, "feet"),
  33527. weight: math.unit(150, "lb"),
  33528. name: "Back",
  33529. image: {
  33530. source: "./media/characters/hugo-sigil/back.svg",
  33531. extra: 519 / 495,
  33532. bottom: 5 / 524
  33533. }
  33534. },
  33535. maw: {
  33536. height: math.unit(1.4, "feet"),
  33537. weight: math.unit(150, "lb"),
  33538. name: "Maw",
  33539. image: {
  33540. source: "./media/characters/hugo-sigil/maw.svg"
  33541. }
  33542. },
  33543. feet: {
  33544. height: math.unit(1.56, "feet"),
  33545. weight: math.unit(150, "lb"),
  33546. name: "Feet",
  33547. image: {
  33548. source: "./media/characters/hugo-sigil/feet.svg",
  33549. extra: 177 / 177,
  33550. bottom: 12 / 189
  33551. }
  33552. },
  33553. },
  33554. [
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(6, "feet")
  33558. },
  33559. {
  33560. name: "Macro",
  33561. height: math.unit(200, "feet"),
  33562. default: true
  33563. },
  33564. ]
  33565. ))
  33566. characterMakers.push(() => makeCharacter(
  33567. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33568. {
  33569. front: {
  33570. height: math.unit(6, "feet"),
  33571. weight: math.unit(150, "lb"),
  33572. name: "Front",
  33573. image: {
  33574. source: "./media/characters/peri/front.svg",
  33575. extra: 2354 / 2233,
  33576. bottom: 49 / 2403
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Really Small",
  33583. height: math.unit(1, "nm")
  33584. },
  33585. {
  33586. name: "Micro",
  33587. height: math.unit(4, "inches")
  33588. },
  33589. {
  33590. name: "Normal",
  33591. height: math.unit(7, "inches"),
  33592. default: true
  33593. },
  33594. {
  33595. name: "Macro",
  33596. height: math.unit(400, "feet")
  33597. },
  33598. {
  33599. name: "Megamacro",
  33600. height: math.unit(100, "miles")
  33601. },
  33602. ]
  33603. ))
  33604. characterMakers.push(() => makeCharacter(
  33605. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33606. {
  33607. frontSlim: {
  33608. height: math.unit(7, "feet"),
  33609. name: "Front (Slim)",
  33610. image: {
  33611. source: "./media/characters/issilora/front-slim.svg",
  33612. extra: 529 / 449,
  33613. bottom: 53 / 582
  33614. }
  33615. },
  33616. sideSlim: {
  33617. height: math.unit(7, "feet"),
  33618. name: "Side (Slim)",
  33619. image: {
  33620. source: "./media/characters/issilora/side-slim.svg",
  33621. extra: 570 / 480,
  33622. bottom: 30 / 600
  33623. }
  33624. },
  33625. backSlim: {
  33626. height: math.unit(7, "feet"),
  33627. name: "Back (Slim)",
  33628. image: {
  33629. source: "./media/characters/issilora/back-slim.svg",
  33630. extra: 537 / 455,
  33631. bottom: 46 / 583
  33632. }
  33633. },
  33634. frontBuff: {
  33635. height: math.unit(7, "feet"),
  33636. name: "Front (Buff)",
  33637. image: {
  33638. source: "./media/characters/issilora/front-buff.svg",
  33639. extra: 2310 / 2035,
  33640. bottom: 335 / 2645
  33641. }
  33642. },
  33643. head: {
  33644. height: math.unit(1.94, "feet"),
  33645. name: "Head",
  33646. image: {
  33647. source: "./media/characters/issilora/head.svg"
  33648. }
  33649. },
  33650. },
  33651. [
  33652. {
  33653. name: "Minimum",
  33654. height: math.unit(7, "feet")
  33655. },
  33656. {
  33657. name: "Comfortable",
  33658. height: math.unit(17, "feet")
  33659. },
  33660. {
  33661. name: "Fun Size",
  33662. height: math.unit(47, "feet")
  33663. },
  33664. {
  33665. name: "Natural Macro",
  33666. height: math.unit(137, "feet"),
  33667. default: true
  33668. },
  33669. {
  33670. name: "Maximum Kaiju",
  33671. height: math.unit(397, "feet")
  33672. },
  33673. ]
  33674. ))
  33675. characterMakers.push(() => makeCharacter(
  33676. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33677. {
  33678. front: {
  33679. height: math.unit(50 + 9/12, "feet"),
  33680. weight: math.unit(32.8, "tons"),
  33681. name: "Front",
  33682. image: {
  33683. source: "./media/characters/irb'iiritaahn/front.svg",
  33684. extra: 1878/1826,
  33685. bottom: 326/2204
  33686. }
  33687. },
  33688. back: {
  33689. height: math.unit(50 + 9/12, "feet"),
  33690. weight: math.unit(32.8, "tons"),
  33691. name: "Back",
  33692. image: {
  33693. source: "./media/characters/irb'iiritaahn/back.svg",
  33694. extra: 2052/2018,
  33695. bottom: 152/2204
  33696. }
  33697. },
  33698. head: {
  33699. height: math.unit(12.86, "feet"),
  33700. name: "Head",
  33701. image: {
  33702. source: "./media/characters/irb'iiritaahn/head.svg"
  33703. }
  33704. },
  33705. maw: {
  33706. height: math.unit(9.66, "feet"),
  33707. name: "Maw",
  33708. image: {
  33709. source: "./media/characters/irb'iiritaahn/maw.svg"
  33710. }
  33711. },
  33712. frontDick: {
  33713. height: math.unit(8.78461, "feet"),
  33714. name: "Front Dick",
  33715. image: {
  33716. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33717. }
  33718. },
  33719. rearDick: {
  33720. height: math.unit(8.78461, "feet"),
  33721. name: "Rear Dick",
  33722. image: {
  33723. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33724. }
  33725. },
  33726. rearDickUnfolded: {
  33727. height: math.unit(8.78, "feet"),
  33728. name: "Rear Dick (Unfolded)",
  33729. image: {
  33730. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33731. }
  33732. },
  33733. wings: {
  33734. height: math.unit(43, "feet"),
  33735. name: "Wings",
  33736. image: {
  33737. source: "./media/characters/irb'iiritaahn/wings.svg"
  33738. }
  33739. },
  33740. },
  33741. [
  33742. {
  33743. name: "Macro",
  33744. height: math.unit(50 + 9/12, "feet"),
  33745. default: true
  33746. },
  33747. ]
  33748. ))
  33749. characterMakers.push(() => makeCharacter(
  33750. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33751. {
  33752. front: {
  33753. height: math.unit(205, "cm"),
  33754. weight: math.unit(102, "kg"),
  33755. name: "Front",
  33756. image: {
  33757. source: "./media/characters/irbisgreif/front.svg",
  33758. extra: 785/706,
  33759. bottom: 13/798
  33760. }
  33761. },
  33762. back: {
  33763. height: math.unit(205, "cm"),
  33764. weight: math.unit(102, "kg"),
  33765. name: "Back",
  33766. image: {
  33767. source: "./media/characters/irbisgreif/back.svg",
  33768. extra: 713/701,
  33769. bottom: 26/739
  33770. }
  33771. },
  33772. frontDressed: {
  33773. height: math.unit(216, "cm"),
  33774. weight: math.unit(102, "kg"),
  33775. name: "Front-dressed",
  33776. image: {
  33777. source: "./media/characters/irbisgreif/front-dressed.svg",
  33778. extra: 902/776,
  33779. bottom: 14/916
  33780. }
  33781. },
  33782. sideDressed: {
  33783. height: math.unit(195, "cm"),
  33784. weight: math.unit(102, "kg"),
  33785. name: "Side-dressed",
  33786. image: {
  33787. source: "./media/characters/irbisgreif/side-dressed.svg",
  33788. extra: 788/688,
  33789. bottom: 21/809
  33790. }
  33791. },
  33792. backDressed: {
  33793. height: math.unit(216, "cm"),
  33794. weight: math.unit(102, "kg"),
  33795. name: "Back-dressed",
  33796. image: {
  33797. source: "./media/characters/irbisgreif/back-dressed.svg",
  33798. extra: 901/783,
  33799. bottom: 10/911
  33800. }
  33801. },
  33802. dick: {
  33803. height: math.unit(0.49, "feet"),
  33804. name: "Dick",
  33805. image: {
  33806. source: "./media/characters/irbisgreif/dick.svg"
  33807. }
  33808. },
  33809. wingTop: {
  33810. height: math.unit(1.93 , "feet"),
  33811. name: "Wing-top",
  33812. image: {
  33813. source: "./media/characters/irbisgreif/wing-top.svg"
  33814. }
  33815. },
  33816. wingBottom: {
  33817. height: math.unit(1.93 , "feet"),
  33818. name: "Wing-bottom",
  33819. image: {
  33820. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(216, "cm"),
  33828. default: true
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33834. {
  33835. front: {
  33836. height: math.unit(6, "feet"),
  33837. weight: math.unit(150, "lb"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/pride/front.svg",
  33841. extra: 1299/1230,
  33842. bottom: 18/1317
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(7, "feet")
  33850. },
  33851. {
  33852. name: "Mini-macro",
  33853. height: math.unit(11, "feet")
  33854. },
  33855. {
  33856. name: "Macro",
  33857. height: math.unit(15, "meters"),
  33858. default: true
  33859. },
  33860. {
  33861. name: "Macro+",
  33862. height: math.unit(40, "meters")
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33868. {
  33869. front: {
  33870. height: math.unit(4 + 2 / 12, "feet"),
  33871. weight: math.unit(95, "lb"),
  33872. name: "Front",
  33873. image: {
  33874. source: "./media/characters/vaelophis-nyx/front.svg",
  33875. extra: 2532/2330,
  33876. bottom: 0/2532
  33877. }
  33878. },
  33879. back: {
  33880. height: math.unit(4 + 2 / 12, "feet"),
  33881. weight: math.unit(95, "lb"),
  33882. name: "Back",
  33883. image: {
  33884. source: "./media/characters/vaelophis-nyx/back.svg",
  33885. extra: 2484/2361,
  33886. bottom: 0/2484
  33887. }
  33888. },
  33889. feralSide: {
  33890. height: math.unit(2 + 1/12, "feet"),
  33891. weight: math.unit(20, "lb"),
  33892. name: "Feral (Side)",
  33893. image: {
  33894. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33895. extra: 1721/1581,
  33896. bottom: 70/1791
  33897. }
  33898. },
  33899. feralLazing: {
  33900. height: math.unit(1.08, "feet"),
  33901. weight: math.unit(20, "lb"),
  33902. name: "Feral (Lazing)",
  33903. image: {
  33904. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33905. extra: 822/822,
  33906. bottom: 248/1070
  33907. }
  33908. },
  33909. ear: {
  33910. height: math.unit(0.416, "feet"),
  33911. name: "Ear",
  33912. image: {
  33913. source: "./media/characters/vaelophis-nyx/ear.svg"
  33914. }
  33915. },
  33916. eye: {
  33917. height: math.unit(0.0748, "feet"),
  33918. name: "Eye",
  33919. image: {
  33920. source: "./media/characters/vaelophis-nyx/eye.svg"
  33921. }
  33922. },
  33923. mouth: {
  33924. height: math.unit(0.378, "feet"),
  33925. name: "Mouth",
  33926. image: {
  33927. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33928. }
  33929. },
  33930. spade: {
  33931. height: math.unit(0.55, "feet"),
  33932. name: "Spade",
  33933. image: {
  33934. source: "./media/characters/vaelophis-nyx/spade.svg"
  33935. }
  33936. },
  33937. },
  33938. [
  33939. {
  33940. name: "Normal",
  33941. height: math.unit(4 + 2/12, "feet"),
  33942. default: true
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33948. {
  33949. front: {
  33950. height: math.unit(7, "feet"),
  33951. weight: math.unit(231, "lb"),
  33952. name: "Front",
  33953. image: {
  33954. source: "./media/characters/flux/front.svg",
  33955. extra: 919/871,
  33956. bottom: 0/919
  33957. }
  33958. },
  33959. back: {
  33960. height: math.unit(7, "feet"),
  33961. weight: math.unit(231, "lb"),
  33962. name: "Back",
  33963. image: {
  33964. source: "./media/characters/flux/back.svg",
  33965. extra: 1040/992,
  33966. bottom: 0/1040
  33967. }
  33968. },
  33969. frontDressed: {
  33970. height: math.unit(7, "feet"),
  33971. weight: math.unit(231, "lb"),
  33972. name: "Front (Dressed)",
  33973. image: {
  33974. source: "./media/characters/flux/front-dressed.svg",
  33975. extra: 919/871,
  33976. bottom: 0/919
  33977. }
  33978. },
  33979. feralSide: {
  33980. height: math.unit(5, "feet"),
  33981. weight: math.unit(150, "lb"),
  33982. name: "Feral (Side)",
  33983. image: {
  33984. source: "./media/characters/flux/feral-side.svg",
  33985. extra: 598/528,
  33986. bottom: 28/626
  33987. }
  33988. },
  33989. head: {
  33990. height: math.unit(1.585, "feet"),
  33991. name: "Head",
  33992. image: {
  33993. source: "./media/characters/flux/head.svg"
  33994. }
  33995. },
  33996. headSide: {
  33997. height: math.unit(1.74, "feet"),
  33998. name: "Head (Side)",
  33999. image: {
  34000. source: "./media/characters/flux/head-side.svg"
  34001. }
  34002. },
  34003. headSideFire: {
  34004. height: math.unit(1.76, "feet"),
  34005. name: "Head (Side, Fire)",
  34006. image: {
  34007. source: "./media/characters/flux/head-side-fire.svg"
  34008. }
  34009. },
  34010. },
  34011. [
  34012. {
  34013. name: "Normal",
  34014. height: math.unit(7, "feet"),
  34015. default: true
  34016. },
  34017. ]
  34018. ))
  34019. characterMakers.push(() => makeCharacter(
  34020. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  34021. {
  34022. front: {
  34023. height: math.unit(9, "feet"),
  34024. weight: math.unit(1012, "lb"),
  34025. name: "Front",
  34026. image: {
  34027. source: "./media/characters/ulfra-lupae/front.svg",
  34028. extra: 1083/1011,
  34029. bottom: 67/1150
  34030. }
  34031. },
  34032. },
  34033. [
  34034. {
  34035. name: "Micro",
  34036. height: math.unit(6, "inches")
  34037. },
  34038. {
  34039. name: "Socializing",
  34040. height: math.unit(6 + 5/12, "feet")
  34041. },
  34042. {
  34043. name: "Normal",
  34044. height: math.unit(9, "feet"),
  34045. default: true
  34046. },
  34047. {
  34048. name: "Macro",
  34049. height: math.unit(150, "feet")
  34050. },
  34051. ]
  34052. ))
  34053. characterMakers.push(() => makeCharacter(
  34054. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  34055. {
  34056. front: {
  34057. height: math.unit(5 + 2/12, "feet"),
  34058. weight: math.unit(120, "lb"),
  34059. name: "Front",
  34060. image: {
  34061. source: "./media/characters/timber/front.svg",
  34062. extra: 2814/2705,
  34063. bottom: 181/2995
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Normal",
  34070. height: math.unit(5 + 2/12, "feet"),
  34071. default: true
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(9, "feet"),
  34080. name: "Front",
  34081. image: {
  34082. source: "./media/characters/nicki/front.svg",
  34083. extra: 1240/990,
  34084. bottom: 45/1285
  34085. },
  34086. form: "anthro",
  34087. default: true
  34088. },
  34089. side: {
  34090. height: math.unit(9, "feet"),
  34091. name: "Side",
  34092. image: {
  34093. source: "./media/characters/nicki/side.svg",
  34094. extra: 1047/973,
  34095. bottom: 61/1108
  34096. },
  34097. form: "anthro"
  34098. },
  34099. back: {
  34100. height: math.unit(9, "feet"),
  34101. name: "Back",
  34102. image: {
  34103. source: "./media/characters/nicki/back.svg",
  34104. extra: 1006/965,
  34105. bottom: 39/1045
  34106. },
  34107. form: "anthro"
  34108. },
  34109. taur: {
  34110. height: math.unit(15, "feet"),
  34111. name: "Taur",
  34112. image: {
  34113. source: "./media/characters/nicki/taur.svg",
  34114. extra: 1592/1347,
  34115. bottom: 0/1592
  34116. },
  34117. form: "taur",
  34118. default: true
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(9, "feet"),
  34125. form: "anthro",
  34126. default: true
  34127. },
  34128. {
  34129. name: "Normal",
  34130. height: math.unit(15, "feet"),
  34131. form: "taur",
  34132. default: true
  34133. }
  34134. ],
  34135. {
  34136. "anthro": {
  34137. name: "Anthro",
  34138. default: true
  34139. },
  34140. "taur": {
  34141. name: "Taur"
  34142. }
  34143. }
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34147. {
  34148. front: {
  34149. height: math.unit(7 + 10/12, "feet"),
  34150. weight: math.unit(3.5, "tons"),
  34151. name: "Front",
  34152. image: {
  34153. source: "./media/characters/lee/front.svg",
  34154. extra: 1773/1615,
  34155. bottom: 86/1859
  34156. }
  34157. },
  34158. hand: {
  34159. height: math.unit(1.78, "feet"),
  34160. name: "Hand",
  34161. image: {
  34162. source: "./media/characters/lee/hand.svg"
  34163. }
  34164. },
  34165. maw: {
  34166. height: math.unit(1.18, "feet"),
  34167. name: "Maw",
  34168. image: {
  34169. source: "./media/characters/lee/maw.svg"
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(7 + 10/12, "feet"),
  34177. default: true
  34178. },
  34179. ]
  34180. ))
  34181. characterMakers.push(() => makeCharacter(
  34182. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34183. {
  34184. front: {
  34185. height: math.unit(9, "feet"),
  34186. name: "Front",
  34187. image: {
  34188. source: "./media/characters/guti/front.svg",
  34189. extra: 4551/4355,
  34190. bottom: 123/4674
  34191. }
  34192. },
  34193. tongue: {
  34194. height: math.unit(1, "feet"),
  34195. name: "Tongue",
  34196. image: {
  34197. source: "./media/characters/guti/tongue.svg"
  34198. }
  34199. },
  34200. paw: {
  34201. height: math.unit(1.18, "feet"),
  34202. name: "Paw",
  34203. image: {
  34204. source: "./media/characters/guti/paw.svg"
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(9, "feet"),
  34212. default: true
  34213. },
  34214. ]
  34215. ))
  34216. characterMakers.push(() => makeCharacter(
  34217. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34218. {
  34219. side: {
  34220. height: math.unit(5, "meters"),
  34221. name: "Side",
  34222. image: {
  34223. source: "./media/characters/vesper/side.svg",
  34224. extra: 1605/1518,
  34225. bottom: 0/1605
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Small",
  34232. height: math.unit(5, "meters")
  34233. },
  34234. {
  34235. name: "Sage",
  34236. height: math.unit(100, "meters"),
  34237. default: true
  34238. },
  34239. {
  34240. name: "Fun Size",
  34241. height: math.unit(600, "meters")
  34242. },
  34243. {
  34244. name: "Goddess",
  34245. height: math.unit(20000, "km")
  34246. },
  34247. {
  34248. name: "Maximum",
  34249. height: math.unit(5, "galaxies")
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34255. {
  34256. front: {
  34257. height: math.unit(6 + 3/12, "feet"),
  34258. weight: math.unit(190, "lb"),
  34259. name: "Front",
  34260. image: {
  34261. source: "./media/characters/gawain/front.svg",
  34262. extra: 2222/2139,
  34263. bottom: 90/2312
  34264. }
  34265. },
  34266. back: {
  34267. height: math.unit(6 + 3/12, "feet"),
  34268. weight: math.unit(190, "lb"),
  34269. name: "Back",
  34270. image: {
  34271. source: "./media/characters/gawain/back.svg",
  34272. extra: 2199/2111,
  34273. bottom: 73/2272
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Normal",
  34280. height: math.unit(6 + 3/12, "feet"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34287. {
  34288. side: {
  34289. height: math.unit(3.5, "meters"),
  34290. weight: math.unit(16000, "lb"),
  34291. name: "Side",
  34292. image: {
  34293. source: "./media/characters/dascalti/side.svg",
  34294. extra: 392/273,
  34295. bottom: 47/439
  34296. }
  34297. },
  34298. breath: {
  34299. height: math.unit(7.4, "feet"),
  34300. name: "Breath",
  34301. image: {
  34302. source: "./media/characters/dascalti/breath.svg"
  34303. }
  34304. },
  34305. fed: {
  34306. height: math.unit(3.6, "meters"),
  34307. weight: math.unit(16000, "lb"),
  34308. name: "Fed",
  34309. image: {
  34310. source: "./media/characters/dascalti/fed.svg",
  34311. extra: 1419/820,
  34312. bottom: 95/1514
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(3.5, "meters"),
  34320. default: true
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34326. {
  34327. front: {
  34328. height: math.unit(3 + 5/12, "feet"),
  34329. name: "Front",
  34330. image: {
  34331. source: "./media/characters/mauve/front.svg",
  34332. extra: 1126/1033,
  34333. bottom: 65/1191
  34334. }
  34335. },
  34336. side: {
  34337. height: math.unit(3 + 5/12, "feet"),
  34338. name: "Side",
  34339. image: {
  34340. source: "./media/characters/mauve/side.svg",
  34341. extra: 1089/1001,
  34342. bottom: 29/1118
  34343. }
  34344. },
  34345. back: {
  34346. height: math.unit(3 + 5/12, "feet"),
  34347. name: "Back",
  34348. image: {
  34349. source: "./media/characters/mauve/back.svg",
  34350. extra: 1173/1053,
  34351. bottom: 109/1282
  34352. }
  34353. },
  34354. },
  34355. [
  34356. {
  34357. name: "Normal",
  34358. height: math.unit(3 + 5/12, "feet"),
  34359. default: true
  34360. },
  34361. ]
  34362. ))
  34363. characterMakers.push(() => makeCharacter(
  34364. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34365. {
  34366. front: {
  34367. height: math.unit(6 + 3/12, "feet"),
  34368. weight: math.unit(430, "lb"),
  34369. name: "Front",
  34370. image: {
  34371. source: "./media/characters/carlos/front.svg",
  34372. extra: 1964/1913,
  34373. bottom: 70/2034
  34374. }
  34375. },
  34376. },
  34377. [
  34378. {
  34379. name: "Normal",
  34380. height: math.unit(6 + 3/12, "feet"),
  34381. default: true
  34382. },
  34383. ]
  34384. ))
  34385. characterMakers.push(() => makeCharacter(
  34386. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34387. {
  34388. back: {
  34389. height: math.unit(5 + 10/12, "feet"),
  34390. weight: math.unit(200, "lb"),
  34391. name: "Back",
  34392. image: {
  34393. source: "./media/characters/jax/back.svg",
  34394. extra: 764/739,
  34395. bottom: 25/789
  34396. }
  34397. },
  34398. },
  34399. [
  34400. {
  34401. name: "Normal",
  34402. height: math.unit(5 + 10/12, "feet"),
  34403. default: true
  34404. },
  34405. ]
  34406. ))
  34407. characterMakers.push(() => makeCharacter(
  34408. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34409. {
  34410. front: {
  34411. height: math.unit(8, "feet"),
  34412. weight: math.unit(250, "lb"),
  34413. name: "Front",
  34414. image: {
  34415. source: "./media/characters/eikthynir/front.svg",
  34416. extra: 1332/1166,
  34417. bottom: 82/1414
  34418. }
  34419. },
  34420. back: {
  34421. height: math.unit(8, "feet"),
  34422. weight: math.unit(250, "lb"),
  34423. name: "Back",
  34424. image: {
  34425. source: "./media/characters/eikthynir/back.svg",
  34426. extra: 1342/1190,
  34427. bottom: 19/1361
  34428. }
  34429. },
  34430. dick: {
  34431. height: math.unit(2.35, "feet"),
  34432. name: "Dick",
  34433. image: {
  34434. source: "./media/characters/eikthynir/dick.svg"
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(8, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34448. {
  34449. front: {
  34450. height: math.unit(99, "meters"),
  34451. weight: math.unit(13000, "tons"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/zlmos/front.svg",
  34455. extra: 2202/1992,
  34456. bottom: 315/2517
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Macro",
  34463. height: math.unit(99, "meters"),
  34464. default: true
  34465. },
  34466. ]
  34467. ))
  34468. characterMakers.push(() => makeCharacter(
  34469. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34470. {
  34471. front: {
  34472. height: math.unit(6 + 5/12, "feet"),
  34473. name: "Front",
  34474. image: {
  34475. source: "./media/characters/purri/front.svg",
  34476. extra: 1698/1610,
  34477. bottom: 32/1730
  34478. }
  34479. },
  34480. frontAlt: {
  34481. height: math.unit(6 + 5/12, "feet"),
  34482. name: "Front (Alt)",
  34483. image: {
  34484. source: "./media/characters/purri/front-alt.svg",
  34485. extra: 450/420,
  34486. bottom: 26/476
  34487. }
  34488. },
  34489. boots: {
  34490. height: math.unit(5.5, "feet"),
  34491. name: "Boots",
  34492. image: {
  34493. source: "./media/characters/purri/boots.svg",
  34494. extra: 905/853,
  34495. bottom: 18/923
  34496. },
  34497. extraAttributes: {
  34498. "shoeSize": {
  34499. name: "Shoe Size",
  34500. power: 1,
  34501. type: "length",
  34502. base: math.unit(12, "ShoeSizeMensUS")
  34503. },
  34504. "platformHeight": {
  34505. name: "Platform Height",
  34506. power: 1,
  34507. type: "length",
  34508. base: math.unit(2, "inches")
  34509. },
  34510. }
  34511. },
  34512. lying: {
  34513. height: math.unit(2, "feet"),
  34514. name: "Lying",
  34515. image: {
  34516. source: "./media/characters/purri/lying.svg",
  34517. extra: 940/843,
  34518. bottom: 146/1086
  34519. }
  34520. },
  34521. devious: {
  34522. height: math.unit(1.77, "feet"),
  34523. name: "Devious",
  34524. image: {
  34525. source: "./media/characters/purri/devious.svg",
  34526. extra: 1440/1155,
  34527. bottom: 147/1587
  34528. }
  34529. },
  34530. bean: {
  34531. height: math.unit(1.94, "feet"),
  34532. name: "Bean",
  34533. image: {
  34534. source: "./media/characters/purri/bean.svg"
  34535. }
  34536. },
  34537. },
  34538. [
  34539. {
  34540. name: "Micro",
  34541. height: math.unit(1, "mm")
  34542. },
  34543. {
  34544. name: "Normal",
  34545. height: math.unit(6 + 5/12, "feet"),
  34546. default: true
  34547. },
  34548. {
  34549. name: "Macro :3c",
  34550. height: math.unit(2, "miles")
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34556. {
  34557. front: {
  34558. height: math.unit(6 + 2/12, "feet"),
  34559. weight: math.unit(250, "lb"),
  34560. name: "Front",
  34561. image: {
  34562. source: "./media/characters/moonlight/front.svg",
  34563. extra: 1044/908,
  34564. bottom: 56/1100
  34565. }
  34566. },
  34567. feral: {
  34568. height: math.unit(3 + 1/12, "feet"),
  34569. weight: math.unit(50, "kg"),
  34570. name: "Feral",
  34571. image: {
  34572. source: "./media/characters/moonlight/feral.svg",
  34573. extra: 3705/2791,
  34574. bottom: 145/3850
  34575. }
  34576. },
  34577. paw: {
  34578. height: math.unit(1, "feet"),
  34579. name: "Paw",
  34580. image: {
  34581. source: "./media/characters/moonlight/paw.svg"
  34582. }
  34583. },
  34584. paws: {
  34585. height: math.unit(0.98, "feet"),
  34586. name: "Paws",
  34587. image: {
  34588. source: "./media/characters/moonlight/paws.svg",
  34589. extra: 939/939,
  34590. bottom: 50/989
  34591. }
  34592. },
  34593. mouth: {
  34594. height: math.unit(0.48, "feet"),
  34595. name: "Mouth",
  34596. image: {
  34597. source: "./media/characters/moonlight/mouth.svg"
  34598. }
  34599. },
  34600. dick: {
  34601. height: math.unit(1.46, "feet"),
  34602. name: "Dick",
  34603. image: {
  34604. source: "./media/characters/moonlight/dick.svg"
  34605. }
  34606. },
  34607. },
  34608. [
  34609. {
  34610. name: "Normal",
  34611. height: math.unit(6 + 2/12, "feet"),
  34612. default: true
  34613. },
  34614. {
  34615. name: "Macro",
  34616. height: math.unit(300, "feet")
  34617. },
  34618. {
  34619. name: "Macro+",
  34620. height: math.unit(1, "mile")
  34621. },
  34622. {
  34623. name: "Mt. Moon",
  34624. height: math.unit(5, "miles")
  34625. },
  34626. {
  34627. name: "Megamacro",
  34628. height: math.unit(15, "miles")
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34634. {
  34635. back: {
  34636. height: math.unit(6, "feet"),
  34637. weight: math.unit(150, "lb"),
  34638. name: "Back",
  34639. image: {
  34640. source: "./media/characters/sylen/back.svg",
  34641. extra: 1335/1273,
  34642. bottom: 107/1442
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(5 + 5/12, "feet")
  34650. },
  34651. {
  34652. name: "Megamacro",
  34653. height: math.unit(3, "miles"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(6, "feet"),
  34663. weight: math.unit(190, "lb"),
  34664. name: "Front",
  34665. image: {
  34666. source: "./media/characters/huttser/front.svg",
  34667. extra: 1152/1058,
  34668. bottom: 23/1175
  34669. }
  34670. },
  34671. side: {
  34672. height: math.unit(6, "feet"),
  34673. weight: math.unit(190, "lb"),
  34674. name: "Side",
  34675. image: {
  34676. source: "./media/characters/huttser/side.svg",
  34677. extra: 1174/1065,
  34678. bottom: 18/1192
  34679. }
  34680. },
  34681. back: {
  34682. height: math.unit(6, "feet"),
  34683. weight: math.unit(190, "lb"),
  34684. name: "Back",
  34685. image: {
  34686. source: "./media/characters/huttser/back.svg",
  34687. extra: 1158/1056,
  34688. bottom: 12/1170
  34689. }
  34690. },
  34691. },
  34692. [
  34693. ]
  34694. ))
  34695. characterMakers.push(() => makeCharacter(
  34696. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34697. {
  34698. side: {
  34699. height: math.unit(12 + 9/12, "feet"),
  34700. weight: math.unit(15000, "lb"),
  34701. name: "Side",
  34702. image: {
  34703. source: "./media/characters/faan/side.svg",
  34704. extra: 2747/2697,
  34705. bottom: 0/2747
  34706. }
  34707. },
  34708. front: {
  34709. height: math.unit(12 + 9/12, "feet"),
  34710. weight: math.unit(15000, "lb"),
  34711. name: "Front",
  34712. image: {
  34713. source: "./media/characters/faan/front.svg",
  34714. extra: 607/571,
  34715. bottom: 24/631
  34716. }
  34717. },
  34718. head: {
  34719. height: math.unit(2.85, "feet"),
  34720. name: "Head",
  34721. image: {
  34722. source: "./media/characters/faan/head.svg"
  34723. }
  34724. },
  34725. headAlt: {
  34726. height: math.unit(3.13, "feet"),
  34727. name: "Head-alt",
  34728. image: {
  34729. source: "./media/characters/faan/head-alt.svg"
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(12 + 9/12, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34743. {
  34744. front: {
  34745. height: math.unit(6, "feet"),
  34746. weight: math.unit(300, "lb"),
  34747. name: "Front",
  34748. image: {
  34749. source: "./media/characters/tanio/front.svg",
  34750. extra: 711/673,
  34751. bottom: 25/736
  34752. }
  34753. },
  34754. },
  34755. [
  34756. {
  34757. name: "Normal",
  34758. height: math.unit(6, "feet"),
  34759. default: true
  34760. },
  34761. ]
  34762. ))
  34763. characterMakers.push(() => makeCharacter(
  34764. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34765. {
  34766. front: {
  34767. height: math.unit(3, "inches"),
  34768. name: "Front",
  34769. image: {
  34770. source: "./media/characters/noboru/front.svg",
  34771. extra: 1039/932,
  34772. bottom: 18/1057
  34773. }
  34774. },
  34775. },
  34776. [
  34777. {
  34778. name: "Micro",
  34779. height: math.unit(3, "inches"),
  34780. default: true
  34781. },
  34782. ]
  34783. ))
  34784. characterMakers.push(() => makeCharacter(
  34785. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34786. {
  34787. front: {
  34788. height: math.unit(1.85, "meters"),
  34789. weight: math.unit(80, "kg"),
  34790. name: "Front",
  34791. image: {
  34792. source: "./media/characters/daniel-barrett/front.svg",
  34793. extra: 355/337,
  34794. bottom: 9/364
  34795. }
  34796. },
  34797. },
  34798. [
  34799. {
  34800. name: "Pico",
  34801. height: math.unit(0.0433, "mm")
  34802. },
  34803. {
  34804. name: "Nano",
  34805. height: math.unit(1.5, "mm")
  34806. },
  34807. {
  34808. name: "Micro",
  34809. height: math.unit(5.3, "cm"),
  34810. default: true
  34811. },
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(1.85, "meters")
  34815. },
  34816. {
  34817. name: "Macro",
  34818. height: math.unit(64.7, "meters")
  34819. },
  34820. {
  34821. name: "Megamacro",
  34822. height: math.unit(2.26, "km")
  34823. },
  34824. {
  34825. name: "Gigamacro",
  34826. height: math.unit(79, "km")
  34827. },
  34828. {
  34829. name: "Teramacro",
  34830. height: math.unit(2765, "km")
  34831. },
  34832. {
  34833. name: "Petamacro",
  34834. height: math.unit(96678, "km")
  34835. },
  34836. ]
  34837. ))
  34838. characterMakers.push(() => makeCharacter(
  34839. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34840. {
  34841. front: {
  34842. height: math.unit(30, "meters"),
  34843. weight: math.unit(400, "tons"),
  34844. name: "Front",
  34845. image: {
  34846. source: "./media/characters/zeel/front.svg",
  34847. extra: 2599/2599,
  34848. bottom: 226/2825
  34849. }
  34850. },
  34851. },
  34852. [
  34853. {
  34854. name: "Macro",
  34855. height: math.unit(30, "meters"),
  34856. default: true
  34857. },
  34858. ]
  34859. ))
  34860. characterMakers.push(() => makeCharacter(
  34861. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34862. {
  34863. front: {
  34864. height: math.unit(6 + 7/12, "feet"),
  34865. weight: math.unit(210, "lb"),
  34866. name: "Front",
  34867. image: {
  34868. source: "./media/characters/tarn/front.svg",
  34869. extra: 3517/3220,
  34870. bottom: 91/3608
  34871. }
  34872. },
  34873. back: {
  34874. height: math.unit(6 + 7/12, "feet"),
  34875. weight: math.unit(210, "lb"),
  34876. name: "Back",
  34877. image: {
  34878. source: "./media/characters/tarn/back.svg",
  34879. extra: 3566/3241,
  34880. bottom: 34/3600
  34881. }
  34882. },
  34883. dick: {
  34884. height: math.unit(1.65, "feet"),
  34885. name: "Dick",
  34886. image: {
  34887. source: "./media/characters/tarn/dick.svg"
  34888. }
  34889. },
  34890. paw: {
  34891. height: math.unit(1.80, "feet"),
  34892. name: "Paw",
  34893. image: {
  34894. source: "./media/characters/tarn/paw.svg"
  34895. }
  34896. },
  34897. tongue: {
  34898. height: math.unit(0.97, "feet"),
  34899. name: "Tongue",
  34900. image: {
  34901. source: "./media/characters/tarn/tongue.svg"
  34902. }
  34903. },
  34904. },
  34905. [
  34906. {
  34907. name: "Micro",
  34908. height: math.unit(4, "inches")
  34909. },
  34910. {
  34911. name: "Normal",
  34912. height: math.unit(6 + 7/12, "feet"),
  34913. default: true
  34914. },
  34915. {
  34916. name: "Macro",
  34917. height: math.unit(300, "feet")
  34918. },
  34919. ]
  34920. ))
  34921. characterMakers.push(() => makeCharacter(
  34922. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34923. {
  34924. front: {
  34925. height: math.unit(5 + 7/12, "feet"),
  34926. weight: math.unit(80, "kg"),
  34927. name: "Front",
  34928. image: {
  34929. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34930. extra: 3023/2865,
  34931. bottom: 33/3056
  34932. }
  34933. },
  34934. back: {
  34935. height: math.unit(5 + 7/12, "feet"),
  34936. weight: math.unit(80, "kg"),
  34937. name: "Back",
  34938. image: {
  34939. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34940. extra: 3020/2886,
  34941. bottom: 30/3050
  34942. }
  34943. },
  34944. dick: {
  34945. height: math.unit(0.98, "feet"),
  34946. name: "Dick",
  34947. image: {
  34948. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34949. }
  34950. },
  34951. anatomy: {
  34952. height: math.unit(2.86, "feet"),
  34953. name: "Anatomy",
  34954. image: {
  34955. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34956. }
  34957. },
  34958. },
  34959. [
  34960. {
  34961. name: "Really Small",
  34962. height: math.unit(2, "inches")
  34963. },
  34964. {
  34965. name: "Micro",
  34966. height: math.unit(5.583, "inches")
  34967. },
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(5 + 7/12, "feet"),
  34971. default: true
  34972. },
  34973. {
  34974. name: "Macro",
  34975. height: math.unit(67, "feet")
  34976. },
  34977. {
  34978. name: "Megamacro",
  34979. height: math.unit(134, "feet")
  34980. },
  34981. ]
  34982. ))
  34983. characterMakers.push(() => makeCharacter(
  34984. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34985. {
  34986. front: {
  34987. height: math.unit(9, "feet"),
  34988. weight: math.unit(120, "lb"),
  34989. name: "Front",
  34990. image: {
  34991. source: "./media/characters/sally/front.svg",
  34992. extra: 1506/1349,
  34993. bottom: 66/1572
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(9, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  35007. {
  35008. front: {
  35009. height: math.unit(8, "feet"),
  35010. weight: math.unit(900, "lb"),
  35011. name: "Front",
  35012. image: {
  35013. source: "./media/characters/owen/front.svg",
  35014. extra: 1761/1657,
  35015. bottom: 74/1835
  35016. }
  35017. },
  35018. side: {
  35019. height: math.unit(8, "feet"),
  35020. weight: math.unit(900, "lb"),
  35021. name: "Side",
  35022. image: {
  35023. source: "./media/characters/owen/side.svg",
  35024. extra: 1797/1734,
  35025. bottom: 30/1827
  35026. }
  35027. },
  35028. back: {
  35029. height: math.unit(8, "feet"),
  35030. weight: math.unit(900, "lb"),
  35031. name: "Back",
  35032. image: {
  35033. source: "./media/characters/owen/back.svg",
  35034. extra: 1796/1706,
  35035. bottom: 59/1855
  35036. }
  35037. },
  35038. maw: {
  35039. height: math.unit(1.76, "feet"),
  35040. name: "Maw",
  35041. image: {
  35042. source: "./media/characters/owen/maw.svg"
  35043. }
  35044. },
  35045. },
  35046. [
  35047. {
  35048. name: "Normal",
  35049. height: math.unit(8, "feet"),
  35050. default: true
  35051. },
  35052. ]
  35053. ))
  35054. characterMakers.push(() => makeCharacter(
  35055. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  35056. {
  35057. front: {
  35058. height: math.unit(4, "feet"),
  35059. weight: math.unit(400, "lb"),
  35060. name: "Front",
  35061. image: {
  35062. source: "./media/characters/ryth/front.svg",
  35063. extra: 1920/1748,
  35064. bottom: 42/1962
  35065. }
  35066. },
  35067. back: {
  35068. height: math.unit(4, "feet"),
  35069. weight: math.unit(400, "lb"),
  35070. name: "Back",
  35071. image: {
  35072. source: "./media/characters/ryth/back.svg",
  35073. extra: 1897/1690,
  35074. bottom: 89/1986
  35075. }
  35076. },
  35077. mouth: {
  35078. height: math.unit(1.39, "feet"),
  35079. name: "Mouth",
  35080. image: {
  35081. source: "./media/characters/ryth/mouth.svg"
  35082. }
  35083. },
  35084. tailmaw: {
  35085. height: math.unit(1.23, "feet"),
  35086. name: "Tailmaw",
  35087. image: {
  35088. source: "./media/characters/ryth/tailmaw.svg"
  35089. }
  35090. },
  35091. goia: {
  35092. height: math.unit(4, "meters"),
  35093. weight: math.unit(10800, "lb"),
  35094. name: "Goia",
  35095. image: {
  35096. source: "./media/characters/ryth/goia.svg",
  35097. extra: 745/640,
  35098. bottom: 107/852
  35099. }
  35100. },
  35101. goiaFront: {
  35102. height: math.unit(4, "meters"),
  35103. weight: math.unit(10800, "lb"),
  35104. name: "Goia (Front)",
  35105. image: {
  35106. source: "./media/characters/ryth/goia-front.svg",
  35107. extra: 750/586,
  35108. bottom: 114/864
  35109. }
  35110. },
  35111. goiaMaw: {
  35112. height: math.unit(5.55, "feet"),
  35113. name: "Goia Maw",
  35114. image: {
  35115. source: "./media/characters/ryth/goia-maw.svg"
  35116. }
  35117. },
  35118. goiaForepaw: {
  35119. height: math.unit(3.5, "feet"),
  35120. name: "Goia Forepaw",
  35121. image: {
  35122. source: "./media/characters/ryth/goia-forepaw.svg"
  35123. }
  35124. },
  35125. goiaHindpaw: {
  35126. height: math.unit(5.55, "feet"),
  35127. name: "Goia Hindpaw",
  35128. image: {
  35129. source: "./media/characters/ryth/goia-hindpaw.svg"
  35130. }
  35131. },
  35132. },
  35133. [
  35134. {
  35135. name: "Normal",
  35136. height: math.unit(4, "feet"),
  35137. default: true
  35138. },
  35139. ]
  35140. ))
  35141. characterMakers.push(() => makeCharacter(
  35142. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35143. {
  35144. front: {
  35145. height: math.unit(7, "feet"),
  35146. weight: math.unit(180, "lb"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/necrolance/front.svg",
  35150. extra: 1062/947,
  35151. bottom: 41/1103
  35152. }
  35153. },
  35154. back: {
  35155. height: math.unit(7, "feet"),
  35156. weight: math.unit(180, "lb"),
  35157. name: "Back",
  35158. image: {
  35159. source: "./media/characters/necrolance/back.svg",
  35160. extra: 1045/984,
  35161. bottom: 14/1059
  35162. }
  35163. },
  35164. wing: {
  35165. height: math.unit(2.67, "feet"),
  35166. name: "Wing",
  35167. image: {
  35168. source: "./media/characters/necrolance/wing.svg"
  35169. }
  35170. },
  35171. },
  35172. [
  35173. {
  35174. name: "Normal",
  35175. height: math.unit(7, "feet"),
  35176. default: true
  35177. },
  35178. ]
  35179. ))
  35180. characterMakers.push(() => makeCharacter(
  35181. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35182. {
  35183. front: {
  35184. height: math.unit(76, "meters"),
  35185. weight: math.unit(30000, "tons"),
  35186. name: "Front",
  35187. image: {
  35188. source: "./media/characters/tyler/front.svg",
  35189. extra: 1640/1640,
  35190. bottom: 114/1754
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Macro",
  35197. height: math.unit(76, "meters"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(4 + 11/12, "feet"),
  35207. weight: math.unit(132, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/icey/front.svg",
  35211. extra: 2750/2550,
  35212. bottom: 33/2783
  35213. }
  35214. },
  35215. back: {
  35216. height: math.unit(4 + 11/12, "feet"),
  35217. weight: math.unit(132, "lb"),
  35218. name: "Back",
  35219. image: {
  35220. source: "./media/characters/icey/back.svg",
  35221. extra: 2624/2481,
  35222. bottom: 35/2659
  35223. }
  35224. },
  35225. },
  35226. [
  35227. {
  35228. name: "Normal",
  35229. height: math.unit(4 + 11/12, "feet"),
  35230. default: true
  35231. },
  35232. ]
  35233. ))
  35234. characterMakers.push(() => makeCharacter(
  35235. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35236. {
  35237. front: {
  35238. height: math.unit(100, "feet"),
  35239. weight: math.unit(0, "lb"),
  35240. name: "Front",
  35241. image: {
  35242. source: "./media/characters/smile/front.svg",
  35243. extra: 2983/2912,
  35244. bottom: 162/3145
  35245. }
  35246. },
  35247. back: {
  35248. height: math.unit(100, "feet"),
  35249. weight: math.unit(0, "lb"),
  35250. name: "Back",
  35251. image: {
  35252. source: "./media/characters/smile/back.svg",
  35253. extra: 3143/3031,
  35254. bottom: 91/3234
  35255. }
  35256. },
  35257. head: {
  35258. height: math.unit(26.3, "feet"),
  35259. weight: math.unit(0, "lb"),
  35260. name: "Head",
  35261. image: {
  35262. source: "./media/characters/smile/head.svg"
  35263. }
  35264. },
  35265. collar: {
  35266. height: math.unit(5.3, "feet"),
  35267. weight: math.unit(0, "lb"),
  35268. name: "Collar",
  35269. image: {
  35270. source: "./media/characters/smile/collar.svg"
  35271. }
  35272. },
  35273. },
  35274. [
  35275. {
  35276. name: "Macro",
  35277. height: math.unit(100, "feet"),
  35278. default: true
  35279. },
  35280. ]
  35281. ))
  35282. characterMakers.push(() => makeCharacter(
  35283. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35284. {
  35285. dragon: {
  35286. height: math.unit(26, "feet"),
  35287. weight: math.unit(36, "tons"),
  35288. name: "Dragon",
  35289. image: {
  35290. source: "./media/characters/arimphae/dragon.svg",
  35291. extra: 1574/983,
  35292. bottom: 357/1931
  35293. }
  35294. },
  35295. drake: {
  35296. height: math.unit(9, "feet"),
  35297. weight: math.unit(1.5, "tons"),
  35298. name: "Drake",
  35299. image: {
  35300. source: "./media/characters/arimphae/drake.svg",
  35301. extra: 1120/925,
  35302. bottom: 435/1555
  35303. }
  35304. },
  35305. },
  35306. [
  35307. {
  35308. name: "Small",
  35309. height: math.unit(26*5/9, "feet")
  35310. },
  35311. {
  35312. name: "Normal",
  35313. height: math.unit(26, "feet"),
  35314. default: true
  35315. },
  35316. ]
  35317. ))
  35318. characterMakers.push(() => makeCharacter(
  35319. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35320. {
  35321. front: {
  35322. height: math.unit(8 + 9/12, "feet"),
  35323. name: "Front",
  35324. image: {
  35325. source: "./media/characters/xander/front.svg",
  35326. extra: 1237/974,
  35327. bottom: 94/1331
  35328. }
  35329. },
  35330. },
  35331. [
  35332. {
  35333. name: "Normal",
  35334. height: math.unit(8 + 9/12, "feet"),
  35335. default: true
  35336. },
  35337. {
  35338. name: "Gaze Grabber",
  35339. height: math.unit(13 + 8/12, "feet")
  35340. },
  35341. {
  35342. name: "Jaw Dropper",
  35343. height: math.unit(27, "feet")
  35344. },
  35345. {
  35346. name: "Show Stopper",
  35347. height: math.unit(136, "feet")
  35348. },
  35349. {
  35350. name: "Superstar",
  35351. height: math.unit(1.9e6, "miles")
  35352. },
  35353. ]
  35354. ))
  35355. characterMakers.push(() => makeCharacter(
  35356. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35357. {
  35358. side: {
  35359. height: math.unit(2100, "feet"),
  35360. name: "Side",
  35361. image: {
  35362. source: "./media/characters/osiris/side.svg",
  35363. extra: 1105/939,
  35364. bottom: 167/1272
  35365. }
  35366. },
  35367. },
  35368. [
  35369. {
  35370. name: "Macro",
  35371. height: math.unit(2100, "feet"),
  35372. default: true
  35373. },
  35374. ]
  35375. ))
  35376. characterMakers.push(() => makeCharacter(
  35377. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35378. {
  35379. front: {
  35380. height: math.unit(6 + 8/12, "feet"),
  35381. weight: math.unit(225, "lb"),
  35382. name: "Front",
  35383. image: {
  35384. source: "./media/characters/rhys-londe/front.svg",
  35385. extra: 2258/2141,
  35386. bottom: 188/2446
  35387. }
  35388. },
  35389. back: {
  35390. height: math.unit(6 + 8/12, "feet"),
  35391. weight: math.unit(225, "lb"),
  35392. name: "Back",
  35393. image: {
  35394. source: "./media/characters/rhys-londe/back.svg",
  35395. extra: 2237/2137,
  35396. bottom: 63/2300
  35397. }
  35398. },
  35399. frontNsfw: {
  35400. height: math.unit(6 + 8/12, "feet"),
  35401. weight: math.unit(225, "lb"),
  35402. name: "Front (NSFW)",
  35403. image: {
  35404. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35405. extra: 2258/2141,
  35406. bottom: 188/2446
  35407. }
  35408. },
  35409. backNsfw: {
  35410. height: math.unit(6 + 8/12, "feet"),
  35411. weight: math.unit(225, "lb"),
  35412. name: "Back (NSFW)",
  35413. image: {
  35414. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35415. extra: 2237/2137,
  35416. bottom: 63/2300
  35417. }
  35418. },
  35419. dick: {
  35420. height: math.unit(30, "inches"),
  35421. name: "Dick",
  35422. image: {
  35423. source: "./media/characters/rhys-londe/dick.svg"
  35424. }
  35425. },
  35426. maw: {
  35427. height: math.unit(1.6, "feet"),
  35428. name: "Maw",
  35429. image: {
  35430. source: "./media/characters/rhys-londe/maw.svg"
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(6 + 8/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(3 + 10/12, "feet"),
  35447. weight: math.unit(90, "lb"),
  35448. name: "Front",
  35449. image: {
  35450. source: "./media/characters/taivas-ensim/front.svg",
  35451. extra: 1327/1216,
  35452. bottom: 96/1423
  35453. }
  35454. },
  35455. back: {
  35456. height: math.unit(3 + 10/12, "feet"),
  35457. weight: math.unit(90, "lb"),
  35458. name: "Back",
  35459. image: {
  35460. source: "./media/characters/taivas-ensim/back.svg",
  35461. extra: 1355/1247,
  35462. bottom: 11/1366
  35463. }
  35464. },
  35465. frontNsfw: {
  35466. height: math.unit(3 + 10/12, "feet"),
  35467. weight: math.unit(90, "lb"),
  35468. name: "Front (NSFW)",
  35469. image: {
  35470. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35471. extra: 1327/1216,
  35472. bottom: 96/1423
  35473. }
  35474. },
  35475. backNsfw: {
  35476. height: math.unit(3 + 10/12, "feet"),
  35477. weight: math.unit(90, "lb"),
  35478. name: "Back (NSFW)",
  35479. image: {
  35480. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35481. extra: 1355/1247,
  35482. bottom: 11/1366
  35483. }
  35484. },
  35485. },
  35486. [
  35487. {
  35488. name: "Normal",
  35489. height: math.unit(3 + 10/12, "feet"),
  35490. default: true
  35491. },
  35492. ]
  35493. ))
  35494. characterMakers.push(() => makeCharacter(
  35495. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35496. {
  35497. front: {
  35498. height: math.unit(9 + 6/12, "feet"),
  35499. weight: math.unit(940, "lb"),
  35500. name: "Front",
  35501. image: {
  35502. source: "./media/characters/byliss/front.svg",
  35503. extra: 1327/1290,
  35504. bottom: 82/1409
  35505. }
  35506. },
  35507. back: {
  35508. height: math.unit(9 + 6/12, "feet"),
  35509. weight: math.unit(940, "lb"),
  35510. name: "Back",
  35511. image: {
  35512. source: "./media/characters/byliss/back.svg",
  35513. extra: 1376/1349,
  35514. bottom: 9/1385
  35515. }
  35516. },
  35517. frontNsfw: {
  35518. height: math.unit(9 + 6/12, "feet"),
  35519. weight: math.unit(940, "lb"),
  35520. name: "Front (NSFW)",
  35521. image: {
  35522. source: "./media/characters/byliss/front-nsfw.svg",
  35523. extra: 1327/1290,
  35524. bottom: 82/1409
  35525. }
  35526. },
  35527. backNsfw: {
  35528. height: math.unit(9 + 6/12, "feet"),
  35529. weight: math.unit(940, "lb"),
  35530. name: "Back (NSFW)",
  35531. image: {
  35532. source: "./media/characters/byliss/back-nsfw.svg",
  35533. extra: 1376/1349,
  35534. bottom: 9/1385
  35535. }
  35536. },
  35537. },
  35538. [
  35539. {
  35540. name: "Normal",
  35541. height: math.unit(9 + 6/12, "feet"),
  35542. default: true
  35543. },
  35544. ]
  35545. ))
  35546. characterMakers.push(() => makeCharacter(
  35547. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35548. {
  35549. front: {
  35550. height: math.unit(5 + 2/12, "feet"),
  35551. weight: math.unit(200, "lb"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/noraly/front.svg",
  35555. extra: 4985/4773,
  35556. bottom: 150/5135
  35557. }
  35558. },
  35559. full: {
  35560. height: math.unit(5 + 2/12, "feet"),
  35561. weight: math.unit(164, "lb"),
  35562. name: "Full",
  35563. image: {
  35564. source: "./media/characters/noraly/full.svg",
  35565. extra: 1114/1059,
  35566. bottom: 35/1149
  35567. }
  35568. },
  35569. fuller: {
  35570. height: math.unit(5 + 2/12, "feet"),
  35571. weight: math.unit(230, "lb"),
  35572. name: "Fuller",
  35573. image: {
  35574. source: "./media/characters/noraly/fuller.svg",
  35575. extra: 1114/1059,
  35576. bottom: 35/1149
  35577. }
  35578. },
  35579. fullest: {
  35580. height: math.unit(5 + 2/12, "feet"),
  35581. weight: math.unit(300, "lb"),
  35582. name: "Fullest",
  35583. image: {
  35584. source: "./media/characters/noraly/fullest.svg",
  35585. extra: 1114/1059,
  35586. bottom: 35/1149
  35587. }
  35588. },
  35589. },
  35590. [
  35591. {
  35592. name: "Normal",
  35593. height: math.unit(5 + 2/12, "feet"),
  35594. default: true
  35595. },
  35596. ]
  35597. ))
  35598. characterMakers.push(() => makeCharacter(
  35599. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35600. {
  35601. front: {
  35602. height: math.unit(5 + 2/12, "feet"),
  35603. weight: math.unit(210, "lb"),
  35604. name: "Front",
  35605. image: {
  35606. source: "./media/characters/pera/front.svg",
  35607. extra: 1560/1531,
  35608. bottom: 165/1725
  35609. }
  35610. },
  35611. back: {
  35612. height: math.unit(5 + 2/12, "feet"),
  35613. weight: math.unit(210, "lb"),
  35614. name: "Back",
  35615. image: {
  35616. source: "./media/characters/pera/back.svg",
  35617. extra: 1523/1493,
  35618. bottom: 152/1675
  35619. }
  35620. },
  35621. dick: {
  35622. height: math.unit(2.4, "feet"),
  35623. name: "Dick",
  35624. image: {
  35625. source: "./media/characters/pera/dick.svg"
  35626. }
  35627. },
  35628. },
  35629. [
  35630. {
  35631. name: "Normal",
  35632. height: math.unit(5 + 2/12, "feet"),
  35633. default: true
  35634. },
  35635. ]
  35636. ))
  35637. characterMakers.push(() => makeCharacter(
  35638. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35639. {
  35640. front: {
  35641. height: math.unit(12, "feet"),
  35642. weight: math.unit(3200, "lb"),
  35643. name: "Front",
  35644. image: {
  35645. source: "./media/characters/julian/front.svg",
  35646. extra: 2962/2701,
  35647. bottom: 184/3146
  35648. }
  35649. },
  35650. maw: {
  35651. height: math.unit(5.35, "feet"),
  35652. name: "Maw",
  35653. image: {
  35654. source: "./media/characters/julian/maw.svg"
  35655. }
  35656. },
  35657. paw: {
  35658. height: math.unit(3.07, "feet"),
  35659. name: "Paw",
  35660. image: {
  35661. source: "./media/characters/julian/paw.svg"
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Default",
  35668. height: math.unit(12, "feet"),
  35669. default: true
  35670. },
  35671. {
  35672. name: "Big",
  35673. height: math.unit(50, "feet")
  35674. },
  35675. {
  35676. name: "Really Big",
  35677. height: math.unit(1, "mile")
  35678. },
  35679. {
  35680. name: "Extremely Big",
  35681. height: math.unit(100, "miles")
  35682. },
  35683. {
  35684. name: "Planet Hugger",
  35685. height: math.unit(200, "megameters")
  35686. },
  35687. {
  35688. name: "Unreasonably Big",
  35689. height: math.unit(1e300, "meters")
  35690. },
  35691. ]
  35692. ))
  35693. characterMakers.push(() => makeCharacter(
  35694. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35695. {
  35696. solgooleo: {
  35697. height: math.unit(4, "meters"),
  35698. weight: math.unit(6000*1.5, "kg"),
  35699. volume: math.unit(6000, "liters"),
  35700. name: "Solgooleo",
  35701. image: {
  35702. source: "./media/characters/pi/solgooleo.svg",
  35703. extra: 388/331,
  35704. bottom: 29/417
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(4, "meters"),
  35712. default: true
  35713. },
  35714. ]
  35715. ))
  35716. characterMakers.push(() => makeCharacter(
  35717. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35718. {
  35719. front: {
  35720. height: math.unit(8, "feet"),
  35721. weight: math.unit(4, "tons"),
  35722. name: "Front",
  35723. image: {
  35724. source: "./media/characters/shaun/front.svg",
  35725. extra: 503/495,
  35726. bottom: 20/523
  35727. }
  35728. },
  35729. back: {
  35730. height: math.unit(8, "feet"),
  35731. weight: math.unit(4, "tons"),
  35732. name: "Back",
  35733. image: {
  35734. source: "./media/characters/shaun/back.svg",
  35735. extra: 487/480,
  35736. bottom: 20/507
  35737. }
  35738. },
  35739. },
  35740. [
  35741. {
  35742. name: "Lorg",
  35743. height: math.unit(8, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35750. {
  35751. frontAnthro: {
  35752. height: math.unit(7, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/sini/front-anthro.svg",
  35756. extra: 726/678,
  35757. bottom: 35/761
  35758. },
  35759. form: "anthro",
  35760. default: true
  35761. },
  35762. backAnthro: {
  35763. height: math.unit(7, "feet"),
  35764. name: "Back",
  35765. image: {
  35766. source: "./media/characters/sini/back-anthro.svg",
  35767. extra: 743/701,
  35768. bottom: 12/755
  35769. },
  35770. form: "anthro",
  35771. },
  35772. frontAnthroNsfw: {
  35773. height: math.unit(7, "feet"),
  35774. name: "Front (NSFW)",
  35775. image: {
  35776. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35777. extra: 726/678,
  35778. bottom: 35/761
  35779. },
  35780. form: "anthro"
  35781. },
  35782. backAnthroNsfw: {
  35783. height: math.unit(7, "feet"),
  35784. name: "Back (NSFW)",
  35785. image: {
  35786. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35787. extra: 743/701,
  35788. bottom: 12/755
  35789. },
  35790. form: "anthro",
  35791. },
  35792. mawAnthro: {
  35793. height: math.unit(2.14, "feet"),
  35794. name: "Maw",
  35795. image: {
  35796. source: "./media/characters/sini/maw-anthro.svg"
  35797. },
  35798. form: "anthro"
  35799. },
  35800. dick: {
  35801. height: math.unit(1.45, "feet"),
  35802. name: "Dick",
  35803. image: {
  35804. source: "./media/characters/sini/dick-anthro.svg"
  35805. },
  35806. form: "anthro"
  35807. },
  35808. feral: {
  35809. height: math.unit(16, "feet"),
  35810. name: "Feral",
  35811. image: {
  35812. source: "./media/characters/sini/feral.svg",
  35813. extra: 814/605,
  35814. bottom: 11/825
  35815. },
  35816. form: "feral",
  35817. default: true
  35818. },
  35819. feralNsfw: {
  35820. height: math.unit(16, "feet"),
  35821. name: "Feral (NSFW)",
  35822. image: {
  35823. source: "./media/characters/sini/feral-nsfw.svg",
  35824. extra: 814/605,
  35825. bottom: 11/825
  35826. },
  35827. form: "feral"
  35828. },
  35829. mawFeral: {
  35830. height: math.unit(5.66, "feet"),
  35831. name: "Maw",
  35832. image: {
  35833. source: "./media/characters/sini/maw-feral.svg"
  35834. },
  35835. form: "feral",
  35836. },
  35837. pawFeral: {
  35838. height: math.unit(5.17, "feet"),
  35839. name: "Paw",
  35840. image: {
  35841. source: "./media/characters/sini/paw-feral.svg"
  35842. },
  35843. form: "feral",
  35844. },
  35845. rumpFeral: {
  35846. height: math.unit(13.11, "feet"),
  35847. name: "Rump",
  35848. image: {
  35849. source: "./media/characters/sini/rump-feral.svg"
  35850. },
  35851. form: "feral",
  35852. },
  35853. dickFeral: {
  35854. height: math.unit(1, "feet"),
  35855. name: "Dick",
  35856. image: {
  35857. source: "./media/characters/sini/dick-feral.svg"
  35858. },
  35859. form: "feral",
  35860. },
  35861. eyeFeral: {
  35862. height: math.unit(1.23, "feet"),
  35863. name: "Eye",
  35864. image: {
  35865. source: "./media/characters/sini/eye-feral.svg"
  35866. },
  35867. form: "feral",
  35868. },
  35869. },
  35870. [
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(7, "feet"),
  35874. default: true,
  35875. form: "anthro"
  35876. },
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(16, "feet"),
  35880. default: true,
  35881. form: "feral"
  35882. },
  35883. ],
  35884. {
  35885. "anthro": {
  35886. name: "Anthro",
  35887. default: true
  35888. },
  35889. "feral": {
  35890. name: "Feral",
  35891. }
  35892. }
  35893. ))
  35894. characterMakers.push(() => makeCharacter(
  35895. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35896. {
  35897. side: {
  35898. height: math.unit(47.2, "meters"),
  35899. weight: math.unit(10000, "tons"),
  35900. name: "Side",
  35901. image: {
  35902. source: "./media/characters/raylldo/side.svg",
  35903. extra: 2363/642,
  35904. bottom: 221/2584
  35905. }
  35906. },
  35907. top: {
  35908. height: math.unit(240, "meters"),
  35909. weight: math.unit(10000, "tons"),
  35910. name: "Top",
  35911. image: {
  35912. source: "./media/characters/raylldo/top.svg"
  35913. }
  35914. },
  35915. bottom: {
  35916. height: math.unit(240, "meters"),
  35917. weight: math.unit(10000, "tons"),
  35918. name: "Bottom",
  35919. image: {
  35920. source: "./media/characters/raylldo/bottom.svg"
  35921. }
  35922. },
  35923. head: {
  35924. height: math.unit(38.6, "meters"),
  35925. name: "Head",
  35926. image: {
  35927. source: "./media/characters/raylldo/head.svg",
  35928. extra: 1335/1112,
  35929. bottom: 0/1335
  35930. }
  35931. },
  35932. maw: {
  35933. height: math.unit(16.37, "meters"),
  35934. name: "Maw",
  35935. image: {
  35936. source: "./media/characters/raylldo/maw.svg",
  35937. extra: 883/660,
  35938. bottom: 0/883
  35939. },
  35940. extraAttributes: {
  35941. preyCapacity: {
  35942. name: "Capacity",
  35943. power: 3,
  35944. type: "volume",
  35945. base: math.unit(1000, "people")
  35946. },
  35947. tongueSize: {
  35948. name: "Tongue Size",
  35949. power: 2,
  35950. type: "area",
  35951. base: math.unit(21, "m^2")
  35952. }
  35953. }
  35954. },
  35955. forepaw: {
  35956. height: math.unit(18, "meters"),
  35957. name: "Forepaw",
  35958. image: {
  35959. source: "./media/characters/raylldo/forepaw.svg"
  35960. }
  35961. },
  35962. hindpaw: {
  35963. height: math.unit(23, "meters"),
  35964. name: "Hindpaw",
  35965. image: {
  35966. source: "./media/characters/raylldo/hindpaw.svg"
  35967. }
  35968. },
  35969. genitals: {
  35970. height: math.unit(42, "meters"),
  35971. name: "Genitals",
  35972. image: {
  35973. source: "./media/characters/raylldo/genitals.svg"
  35974. }
  35975. },
  35976. },
  35977. [
  35978. {
  35979. name: "Normal",
  35980. height: math.unit(47.2, "meters"),
  35981. default: true
  35982. },
  35983. ]
  35984. ))
  35985. characterMakers.push(() => makeCharacter(
  35986. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35987. {
  35988. anthroFront: {
  35989. height: math.unit(9, "feet"),
  35990. weight: math.unit(600, "lb"),
  35991. name: "Anthro (Front)",
  35992. image: {
  35993. source: "./media/characters/glint/anthro-front.svg",
  35994. extra: 1097/1018,
  35995. bottom: 28/1125
  35996. }
  35997. },
  35998. anthroBack: {
  35999. height: math.unit(9, "feet"),
  36000. weight: math.unit(600, "lb"),
  36001. name: "Anthro (Back)",
  36002. image: {
  36003. source: "./media/characters/glint/anthro-back.svg",
  36004. extra: 1154/997,
  36005. bottom: 36/1190
  36006. }
  36007. },
  36008. feral: {
  36009. height: math.unit(11, "feet"),
  36010. weight: math.unit(50000, "lb"),
  36011. name: "Feral",
  36012. image: {
  36013. source: "./media/characters/glint/feral.svg",
  36014. extra: 3035/1585,
  36015. bottom: 1169/4204
  36016. }
  36017. },
  36018. dickAnthro: {
  36019. height: math.unit(0.7, "meters"),
  36020. name: "Dick (Anthro)",
  36021. image: {
  36022. source: "./media/characters/glint/dick-anthro.svg"
  36023. }
  36024. },
  36025. dickFeral: {
  36026. height: math.unit(2.65, "meters"),
  36027. name: "Dick (Feral)",
  36028. image: {
  36029. source: "./media/characters/glint/dick-feral.svg"
  36030. }
  36031. },
  36032. slitHidden: {
  36033. height: math.unit(5.85, "meters"),
  36034. name: "Slit (Hidden)",
  36035. image: {
  36036. source: "./media/characters/glint/slit-hidden.svg"
  36037. }
  36038. },
  36039. slitErect: {
  36040. height: math.unit(5.85, "meters"),
  36041. name: "Slit (Erect)",
  36042. image: {
  36043. source: "./media/characters/glint/slit-erect.svg"
  36044. }
  36045. },
  36046. mawAnthro: {
  36047. height: math.unit(0.63, "meters"),
  36048. name: "Maw (Anthro)",
  36049. image: {
  36050. source: "./media/characters/glint/maw.svg"
  36051. }
  36052. },
  36053. mawFeral: {
  36054. height: math.unit(2.89, "meters"),
  36055. name: "Maw (Feral)",
  36056. image: {
  36057. source: "./media/characters/glint/maw.svg"
  36058. }
  36059. },
  36060. },
  36061. [
  36062. {
  36063. name: "Normal",
  36064. height: math.unit(9, "feet"),
  36065. default: true
  36066. },
  36067. ]
  36068. ))
  36069. characterMakers.push(() => makeCharacter(
  36070. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36071. {
  36072. side: {
  36073. height: math.unit(15, "feet"),
  36074. weight: math.unit(5000, "kg"),
  36075. name: "Side",
  36076. image: {
  36077. source: "./media/characters/kairne/side.svg",
  36078. extra: 979/811,
  36079. bottom: 13/992
  36080. }
  36081. },
  36082. front: {
  36083. height: math.unit(15, "feet"),
  36084. weight: math.unit(5000, "kg"),
  36085. name: "Front",
  36086. image: {
  36087. source: "./media/characters/kairne/front.svg",
  36088. extra: 908/814,
  36089. bottom: 26/934
  36090. }
  36091. },
  36092. sideNsfw: {
  36093. height: math.unit(15, "feet"),
  36094. weight: math.unit(5000, "kg"),
  36095. name: "Side (NSFW)",
  36096. image: {
  36097. source: "./media/characters/kairne/side-nsfw.svg",
  36098. extra: 979/811,
  36099. bottom: 13/992
  36100. }
  36101. },
  36102. frontNsfw: {
  36103. height: math.unit(15, "feet"),
  36104. weight: math.unit(5000, "kg"),
  36105. name: "Front (NSFW)",
  36106. image: {
  36107. source: "./media/characters/kairne/front-nsfw.svg",
  36108. extra: 908/814,
  36109. bottom: 26/934
  36110. }
  36111. },
  36112. dickCaged: {
  36113. height: math.unit(0.65, "meters"),
  36114. name: "Dick-caged",
  36115. image: {
  36116. source: "./media/characters/kairne/dick-caged.svg"
  36117. }
  36118. },
  36119. dick: {
  36120. height: math.unit(0.79, "meters"),
  36121. name: "Dick",
  36122. image: {
  36123. source: "./media/characters/kairne/dick.svg"
  36124. }
  36125. },
  36126. genitals: {
  36127. height: math.unit(1.29, "meters"),
  36128. name: "Genitals",
  36129. image: {
  36130. source: "./media/characters/kairne/genitals.svg"
  36131. }
  36132. },
  36133. maw: {
  36134. height: math.unit(1.73, "meters"),
  36135. name: "Maw",
  36136. image: {
  36137. source: "./media/characters/kairne/maw.svg"
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(15, "feet"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(5 + 8/12, "feet"),
  36154. weight: math.unit(139, "lb"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/biscuit-jackal/front.svg",
  36158. extra: 2106/1961,
  36159. bottom: 58/2164
  36160. }
  36161. },
  36162. back: {
  36163. height: math.unit(5 + 8/12, "feet"),
  36164. weight: math.unit(139, "lb"),
  36165. name: "Back",
  36166. image: {
  36167. source: "./media/characters/biscuit-jackal/back.svg",
  36168. extra: 2132/1976,
  36169. bottom: 57/2189
  36170. }
  36171. },
  36172. werejackal: {
  36173. height: math.unit(6 + 3/12, "feet"),
  36174. weight: math.unit(188, "lb"),
  36175. name: "Werejackal",
  36176. image: {
  36177. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36178. extra: 2373/2178,
  36179. bottom: 53/2426
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(5 + 8/12, "feet"),
  36187. default: true
  36188. },
  36189. ]
  36190. ))
  36191. characterMakers.push(() => makeCharacter(
  36192. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36193. {
  36194. front: {
  36195. height: math.unit(140, "cm"),
  36196. weight: math.unit(45, "kg"),
  36197. name: "Front",
  36198. image: {
  36199. source: "./media/characters/tayra-white/front.svg",
  36200. extra: 2229/2192,
  36201. bottom: 75/2304
  36202. }
  36203. },
  36204. },
  36205. [
  36206. {
  36207. name: "Normal",
  36208. height: math.unit(140, "cm"),
  36209. default: true
  36210. },
  36211. ]
  36212. ))
  36213. characterMakers.push(() => makeCharacter(
  36214. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36215. {
  36216. front: {
  36217. height: math.unit(4 + 5/12, "feet"),
  36218. name: "Front",
  36219. image: {
  36220. source: "./media/characters/scoop/front.svg",
  36221. extra: 1257/1136,
  36222. bottom: 69/1326
  36223. }
  36224. },
  36225. back: {
  36226. height: math.unit(4 + 5/12, "feet"),
  36227. name: "Back",
  36228. image: {
  36229. source: "./media/characters/scoop/back.svg",
  36230. extra: 1321/1152,
  36231. bottom: 32/1353
  36232. }
  36233. },
  36234. maw: {
  36235. height: math.unit(0.68, "feet"),
  36236. name: "Maw",
  36237. image: {
  36238. source: "./media/characters/scoop/maw.svg"
  36239. }
  36240. },
  36241. },
  36242. [
  36243. {
  36244. name: "Really Small",
  36245. height: math.unit(1, "mm")
  36246. },
  36247. {
  36248. name: "Micro",
  36249. height: math.unit(1, "inch")
  36250. },
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(4 + 5/12, "feet"),
  36254. default: true
  36255. },
  36256. {
  36257. name: "Macro",
  36258. height: math.unit(200, "feet")
  36259. },
  36260. {
  36261. name: "Megamacro",
  36262. height: math.unit(3240, "feet")
  36263. },
  36264. {
  36265. name: "Teramacro",
  36266. height: math.unit(2500, "miles")
  36267. },
  36268. ]
  36269. ))
  36270. characterMakers.push(() => makeCharacter(
  36271. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36272. {
  36273. front: {
  36274. height: math.unit(15 + 7/12, "feet"),
  36275. weight: math.unit(1150, "tons"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/saphinara/front.svg",
  36279. extra: 1837/1643,
  36280. bottom: 84/1921
  36281. },
  36282. form: "normal",
  36283. default: true
  36284. },
  36285. side: {
  36286. height: math.unit(15 + 7/12, "feet"),
  36287. weight: math.unit(1150, "tons"),
  36288. name: "Side",
  36289. image: {
  36290. source: "./media/characters/saphinara/side.svg",
  36291. extra: 605/547,
  36292. bottom: 6/611
  36293. },
  36294. form: "normal"
  36295. },
  36296. back: {
  36297. height: math.unit(15 + 7/12, "feet"),
  36298. weight: math.unit(1150, "tons"),
  36299. name: "Back",
  36300. image: {
  36301. source: "./media/characters/saphinara/back.svg",
  36302. extra: 591/531,
  36303. bottom: 13/604
  36304. },
  36305. form: "normal"
  36306. },
  36307. frontTail: {
  36308. height: math.unit(15 + 7/12, "feet"),
  36309. weight: math.unit(1150, "tons"),
  36310. name: "Front (Full Tail)",
  36311. image: {
  36312. source: "./media/characters/saphinara/front-tail.svg",
  36313. extra: 2256/1630,
  36314. bottom: 261/2517
  36315. },
  36316. form: "normal"
  36317. },
  36318. insides: {
  36319. height: math.unit(11.92, "feet"),
  36320. name: "Insides",
  36321. image: {
  36322. source: "./media/characters/saphinara/insides.svg"
  36323. },
  36324. form: "normal"
  36325. },
  36326. head: {
  36327. height: math.unit(4.17, "feet"),
  36328. name: "Head",
  36329. image: {
  36330. source: "./media/characters/saphinara/head.svg"
  36331. },
  36332. form: "normal"
  36333. },
  36334. tongue: {
  36335. height: math.unit(4.60, "feet"),
  36336. name: "Tongue",
  36337. image: {
  36338. source: "./media/characters/saphinara/tongue.svg"
  36339. },
  36340. form: "normal"
  36341. },
  36342. headEnraged: {
  36343. height: math.unit(5.55, "feet"),
  36344. name: "Head (Enraged)",
  36345. image: {
  36346. source: "./media/characters/saphinara/head-enraged.svg"
  36347. },
  36348. form: "normal"
  36349. },
  36350. wings: {
  36351. height: math.unit(11.95, "feet"),
  36352. name: "Wings",
  36353. image: {
  36354. source: "./media/characters/saphinara/wings.svg"
  36355. },
  36356. form: "normal"
  36357. },
  36358. feathers: {
  36359. height: math.unit(8.92, "feet"),
  36360. name: "Feathers",
  36361. image: {
  36362. source: "./media/characters/saphinara/feathers.svg"
  36363. },
  36364. form: "normal"
  36365. },
  36366. shackles: {
  36367. height: math.unit(2, "feet"),
  36368. name: "Shackles",
  36369. image: {
  36370. source: "./media/characters/saphinara/shackles.svg"
  36371. },
  36372. form: "normal"
  36373. },
  36374. eyes: {
  36375. height: math.unit(1.331, "feet"),
  36376. name: "Eyes",
  36377. image: {
  36378. source: "./media/characters/saphinara/eyes.svg"
  36379. },
  36380. form: "normal"
  36381. },
  36382. eyesEnraged: {
  36383. height: math.unit(1.331, "feet"),
  36384. name: "Eyes (Enraged)",
  36385. image: {
  36386. source: "./media/characters/saphinara/eyes-enraged.svg"
  36387. },
  36388. form: "normal"
  36389. },
  36390. trueFormSide: {
  36391. height: math.unit(200, "feet"),
  36392. weight: math.unit(1e7, "tons"),
  36393. name: "Side",
  36394. image: {
  36395. source: "./media/characters/saphinara/true-form-side.svg",
  36396. extra: 1399/770,
  36397. bottom: 97/1496
  36398. },
  36399. form: "true-form",
  36400. default: true
  36401. },
  36402. trueFormMaw: {
  36403. height: math.unit(71.5, "feet"),
  36404. name: "Maw",
  36405. image: {
  36406. source: "./media/characters/saphinara/true-form-maw.svg",
  36407. extra: 2302/1453,
  36408. bottom: 0/2302
  36409. },
  36410. form: "true-form"
  36411. },
  36412. meowberusSide: {
  36413. height: math.unit(75, "feet"),
  36414. weight: math.unit(180000, "kg"),
  36415. preyCapacity: math.unit(50000, "people"),
  36416. name: "Side",
  36417. image: {
  36418. source: "./media/characters/saphinara/meowberus-side.svg",
  36419. extra: 1400/711,
  36420. bottom: 126/1526
  36421. },
  36422. form: "meowberus",
  36423. extraAttributes: {
  36424. "pawArea": {
  36425. name: "Paw Size",
  36426. power: 2,
  36427. type: "area",
  36428. base: math.unit(35, "m^2")
  36429. }
  36430. }
  36431. },
  36432. },
  36433. [
  36434. {
  36435. name: "Normal",
  36436. height: math.unit(15 + 7/12, "feet"),
  36437. default: true,
  36438. form: "normal"
  36439. },
  36440. {
  36441. name: "Angry",
  36442. height: math.unit(30 + 6/12, "feet"),
  36443. form: "normal"
  36444. },
  36445. {
  36446. name: "Enraged",
  36447. height: math.unit(102 + 1/12, "feet"),
  36448. form: "normal"
  36449. },
  36450. {
  36451. name: "True",
  36452. height: math.unit(200, "feet"),
  36453. default: true,
  36454. form: "true-form"
  36455. },
  36456. {
  36457. name: "Normal",
  36458. height: math.unit(75, "feet"),
  36459. default: true,
  36460. form: "meowberus"
  36461. },
  36462. ],
  36463. {
  36464. "normal": {
  36465. name: "Normal",
  36466. default: true
  36467. },
  36468. "true-form": {
  36469. name: "True Form"
  36470. },
  36471. "meowberus": {
  36472. name: "Meowberus",
  36473. },
  36474. }
  36475. ))
  36476. characterMakers.push(() => makeCharacter(
  36477. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36478. {
  36479. front: {
  36480. height: math.unit(6 + 8/12, "feet"),
  36481. weight: math.unit(300, "lb"),
  36482. name: "Front",
  36483. image: {
  36484. source: "./media/characters/jrain/front.svg",
  36485. extra: 3039/2865,
  36486. bottom: 399/3438
  36487. }
  36488. },
  36489. back: {
  36490. height: math.unit(6 + 8/12, "feet"),
  36491. weight: math.unit(300, "lb"),
  36492. name: "Back",
  36493. image: {
  36494. source: "./media/characters/jrain/back.svg",
  36495. extra: 3089/2938,
  36496. bottom: 172/3261
  36497. }
  36498. },
  36499. head: {
  36500. height: math.unit(2.14, "feet"),
  36501. name: "Head",
  36502. image: {
  36503. source: "./media/characters/jrain/head.svg"
  36504. }
  36505. },
  36506. maw: {
  36507. height: math.unit(1.77, "feet"),
  36508. name: "Maw",
  36509. image: {
  36510. source: "./media/characters/jrain/maw.svg"
  36511. }
  36512. },
  36513. leftHand: {
  36514. height: math.unit(1.1, "feet"),
  36515. name: "Left Hand",
  36516. image: {
  36517. source: "./media/characters/jrain/left-hand.svg"
  36518. }
  36519. },
  36520. rightHand: {
  36521. height: math.unit(1.1, "feet"),
  36522. name: "Right Hand",
  36523. image: {
  36524. source: "./media/characters/jrain/right-hand.svg"
  36525. }
  36526. },
  36527. eye: {
  36528. height: math.unit(0.35, "feet"),
  36529. name: "Eye",
  36530. image: {
  36531. source: "./media/characters/jrain/eye.svg"
  36532. }
  36533. },
  36534. },
  36535. [
  36536. {
  36537. name: "Normal",
  36538. height: math.unit(6 + 8/12, "feet"),
  36539. default: true
  36540. },
  36541. {
  36542. name: "Casually Large",
  36543. height: math.unit(25, "feet")
  36544. },
  36545. {
  36546. name: "Giant",
  36547. height: math.unit(100, "feet")
  36548. },
  36549. {
  36550. name: "Kaiju",
  36551. height: math.unit(300, "feet")
  36552. },
  36553. ]
  36554. ))
  36555. characterMakers.push(() => makeCharacter(
  36556. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36557. {
  36558. dragon: {
  36559. height: math.unit(5, "meters"),
  36560. name: "Dragon",
  36561. image: {
  36562. source: "./media/characters/sabrina/dragon.svg",
  36563. extra: 3670 / 2365,
  36564. bottom: 333 / 4003
  36565. }
  36566. },
  36567. gryphon: {
  36568. height: math.unit(3, "meters"),
  36569. name: "Gryphon",
  36570. image: {
  36571. source: "./media/characters/sabrina/gryphon.svg",
  36572. extra: 1576 / 945,
  36573. bottom: 71 / 1647
  36574. }
  36575. },
  36576. snake: {
  36577. height: math.unit(12, "meters"),
  36578. name: "Snake",
  36579. image: {
  36580. source: "./media/characters/sabrina/snake.svg",
  36581. extra: 1758 / 1320,
  36582. bottom: 186 / 1944
  36583. }
  36584. },
  36585. collar: {
  36586. height: math.unit(1.86, "meters"),
  36587. name: "Collar",
  36588. image: {
  36589. source: "./media/characters/sabrina/collar.svg"
  36590. }
  36591. },
  36592. eye: {
  36593. height: math.unit(0.53, "meters"),
  36594. name: "Eye",
  36595. image: {
  36596. source: "./media/characters/sabrina/eye.svg"
  36597. }
  36598. },
  36599. foot: {
  36600. height: math.unit(1.86, "meters"),
  36601. name: "Foot",
  36602. image: {
  36603. source: "./media/characters/sabrina/foot.svg"
  36604. }
  36605. },
  36606. hand: {
  36607. height: math.unit(1.32, "meters"),
  36608. name: "Hand",
  36609. image: {
  36610. source: "./media/characters/sabrina/hand.svg"
  36611. }
  36612. },
  36613. head: {
  36614. height: math.unit(2.44, "meters"),
  36615. name: "Head",
  36616. image: {
  36617. source: "./media/characters/sabrina/head.svg"
  36618. }
  36619. },
  36620. headAngry: {
  36621. height: math.unit(2.44, "meters"),
  36622. name: "Head (Angry))",
  36623. image: {
  36624. source: "./media/characters/sabrina/head-angry.svg"
  36625. }
  36626. },
  36627. maw: {
  36628. height: math.unit(1.65, "meters"),
  36629. name: "Maw",
  36630. image: {
  36631. source: "./media/characters/sabrina/maw.svg"
  36632. }
  36633. },
  36634. spikes: {
  36635. height: math.unit(1.69, "meters"),
  36636. name: "Spikes",
  36637. image: {
  36638. source: "./media/characters/sabrina/spikes.svg"
  36639. }
  36640. },
  36641. stomach: {
  36642. height: math.unit(1.15, "meters"),
  36643. name: "Stomach",
  36644. image: {
  36645. source: "./media/characters/sabrina/stomach.svg"
  36646. }
  36647. },
  36648. tongue: {
  36649. height: math.unit(1.27, "meters"),
  36650. name: "Tongue",
  36651. image: {
  36652. source: "./media/characters/sabrina/tongue.svg"
  36653. }
  36654. },
  36655. wingDorsal: {
  36656. height: math.unit(4.85, "meters"),
  36657. name: "Wing (Dorsal)",
  36658. image: {
  36659. source: "./media/characters/sabrina/wing-dorsal.svg"
  36660. }
  36661. },
  36662. wingVentral: {
  36663. height: math.unit(4.85, "meters"),
  36664. name: "Wing (Ventral)",
  36665. image: {
  36666. source: "./media/characters/sabrina/wing-ventral.svg"
  36667. }
  36668. },
  36669. },
  36670. [
  36671. {
  36672. name: "Normal",
  36673. height: math.unit(5, "meters"),
  36674. default: true
  36675. },
  36676. ]
  36677. ))
  36678. characterMakers.push(() => makeCharacter(
  36679. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36680. {
  36681. frontMaid: {
  36682. height: math.unit(5 + 5/12, "feet"),
  36683. weight: math.unit(130, "lb"),
  36684. name: "Front (Maid)",
  36685. image: {
  36686. source: "./media/characters/midnight-tales/front-maid.svg",
  36687. extra: 489/454,
  36688. bottom: 61/550
  36689. }
  36690. },
  36691. frontFormal: {
  36692. height: math.unit(5 + 5/12, "feet"),
  36693. weight: math.unit(130, "lb"),
  36694. name: "Front (Formal)",
  36695. image: {
  36696. source: "./media/characters/midnight-tales/front-formal.svg",
  36697. extra: 489/454,
  36698. bottom: 61/550
  36699. }
  36700. },
  36701. back: {
  36702. height: math.unit(5 + 5/12, "feet"),
  36703. weight: math.unit(130, "lb"),
  36704. name: "Back",
  36705. image: {
  36706. source: "./media/characters/midnight-tales/back.svg",
  36707. extra: 498/456,
  36708. bottom: 33/531
  36709. }
  36710. },
  36711. frontBeast: {
  36712. height: math.unit(40, "feet"),
  36713. weight: math.unit(64000, "lb"),
  36714. name: "Front (Beast)",
  36715. image: {
  36716. source: "./media/characters/midnight-tales/front-beast.svg",
  36717. extra: 927/860,
  36718. bottom: 53/980
  36719. }
  36720. },
  36721. backBeast: {
  36722. height: math.unit(40, "feet"),
  36723. weight: math.unit(64000, "lb"),
  36724. name: "Back (Beast)",
  36725. image: {
  36726. source: "./media/characters/midnight-tales/back-beast.svg",
  36727. extra: 929/855,
  36728. bottom: 16/945
  36729. }
  36730. },
  36731. footBeast: {
  36732. height: math.unit(6.7, "feet"),
  36733. name: "Foot (Beast)",
  36734. image: {
  36735. source: "./media/characters/midnight-tales/foot-beast.svg"
  36736. }
  36737. },
  36738. headBeast: {
  36739. height: math.unit(8, "feet"),
  36740. name: "Head (Beast)",
  36741. image: {
  36742. source: "./media/characters/midnight-tales/head-beast.svg"
  36743. }
  36744. },
  36745. },
  36746. [
  36747. {
  36748. name: "Normal",
  36749. height: math.unit(5 + 5 / 12, "feet"),
  36750. default: true
  36751. },
  36752. {
  36753. name: "Macro",
  36754. height: math.unit(25, "feet")
  36755. },
  36756. ]
  36757. ))
  36758. characterMakers.push(() => makeCharacter(
  36759. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36760. {
  36761. front: {
  36762. height: math.unit(5 + 10/12, "feet"),
  36763. name: "Front",
  36764. image: {
  36765. source: "./media/characters/argon/front.svg",
  36766. extra: 2009/1935,
  36767. bottom: 118/2127
  36768. }
  36769. },
  36770. back: {
  36771. height: math.unit(5 + 10/12, "feet"),
  36772. name: "Back",
  36773. image: {
  36774. source: "./media/characters/argon/back.svg",
  36775. extra: 2047/1992,
  36776. bottom: 20/2067
  36777. }
  36778. },
  36779. frontDressed: {
  36780. height: math.unit(5 + 10/12, "feet"),
  36781. name: "Front (Dressed)",
  36782. image: {
  36783. source: "./media/characters/argon/front-dressed.svg",
  36784. extra: 2009/1935,
  36785. bottom: 118/2127
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(5 + 10/12, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(8 + 6/12, "feet"),
  36802. weight: math.unit(1150, "lb"),
  36803. name: "Front",
  36804. image: {
  36805. source: "./media/characters/kichi/front.svg",
  36806. extra: 1267/1164,
  36807. bottom: 61/1328
  36808. }
  36809. },
  36810. back: {
  36811. height: math.unit(8 + 6/12, "feet"),
  36812. weight: math.unit(1150, "lb"),
  36813. name: "Back",
  36814. image: {
  36815. source: "./media/characters/kichi/back.svg",
  36816. extra: 1273/1166,
  36817. bottom: 33/1306
  36818. }
  36819. },
  36820. },
  36821. [
  36822. {
  36823. name: "Normal",
  36824. height: math.unit(8 + 6/12, "feet"),
  36825. default: true
  36826. },
  36827. ]
  36828. ))
  36829. characterMakers.push(() => makeCharacter(
  36830. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36831. {
  36832. front: {
  36833. height: math.unit(6, "feet"),
  36834. weight: math.unit(210, "lb"),
  36835. name: "Front",
  36836. image: {
  36837. source: "./media/characters/manetel-greyscale/front.svg",
  36838. extra: 350/312,
  36839. bottom: 8/358
  36840. }
  36841. },
  36842. },
  36843. [
  36844. {
  36845. name: "Micro",
  36846. height: math.unit(2, "inches")
  36847. },
  36848. {
  36849. name: "Normal",
  36850. height: math.unit(6, "feet"),
  36851. default: true
  36852. },
  36853. {
  36854. name: "Minimacro",
  36855. height: math.unit(17, "feet")
  36856. },
  36857. {
  36858. name: "Macro",
  36859. height: math.unit(117, "feet")
  36860. },
  36861. ]
  36862. ))
  36863. characterMakers.push(() => makeCharacter(
  36864. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36865. {
  36866. side: {
  36867. height: math.unit(5 + 1/12, "feet"),
  36868. weight: math.unit(418, "lb"),
  36869. name: "Side",
  36870. image: {
  36871. source: "./media/characters/softpurr/side.svg",
  36872. extra: 1993/1945,
  36873. bottom: 134/2127
  36874. }
  36875. },
  36876. front: {
  36877. height: math.unit(5 + 1/12, "feet"),
  36878. weight: math.unit(418, "lb"),
  36879. name: "Front",
  36880. image: {
  36881. source: "./media/characters/softpurr/front.svg",
  36882. extra: 1950/1856,
  36883. bottom: 174/2124
  36884. }
  36885. },
  36886. paw: {
  36887. height: math.unit(1, "feet"),
  36888. name: "Paw",
  36889. image: {
  36890. source: "./media/characters/softpurr/paw.svg"
  36891. }
  36892. },
  36893. },
  36894. [
  36895. {
  36896. name: "Normal",
  36897. height: math.unit(5 + 1/12, "feet"),
  36898. default: true
  36899. },
  36900. ]
  36901. ))
  36902. characterMakers.push(() => makeCharacter(
  36903. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36904. {
  36905. front: {
  36906. height: math.unit(260, "meters"),
  36907. name: "Front",
  36908. image: {
  36909. source: "./media/characters/anahita/front.svg",
  36910. extra: 665/635,
  36911. bottom: 89/754
  36912. }
  36913. },
  36914. },
  36915. [
  36916. {
  36917. name: "Macro",
  36918. height: math.unit(260, "meters"),
  36919. default: true
  36920. },
  36921. ]
  36922. ))
  36923. characterMakers.push(() => makeCharacter(
  36924. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36925. {
  36926. front: {
  36927. height: math.unit(4 + 10/12, "feet"),
  36928. weight: math.unit(160, "lb"),
  36929. name: "Front",
  36930. image: {
  36931. source: "./media/characters/chip-mouse/front.svg",
  36932. extra: 3528/3408,
  36933. bottom: 0/3528
  36934. }
  36935. },
  36936. frontNsfw: {
  36937. height: math.unit(4 + 10/12, "feet"),
  36938. weight: math.unit(160, "lb"),
  36939. name: "Front (NSFW)",
  36940. image: {
  36941. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36942. extra: 3528/3408,
  36943. bottom: 0/3528
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(4 + 10/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36957. {
  36958. side: {
  36959. height: math.unit(10, "feet"),
  36960. weight: math.unit(14000, "lb"),
  36961. name: "Side",
  36962. image: {
  36963. source: "./media/characters/kremm/side.svg",
  36964. extra: 1390/1053,
  36965. bottom: 90/1480
  36966. }
  36967. },
  36968. gut: {
  36969. height: math.unit(5.8, "feet"),
  36970. name: "Gut",
  36971. image: {
  36972. source: "./media/characters/kremm/gut.svg"
  36973. }
  36974. },
  36975. ass: {
  36976. height: math.unit(6.1, "feet"),
  36977. name: "Ass",
  36978. image: {
  36979. source: "./media/characters/kremm/ass.svg"
  36980. }
  36981. },
  36982. jaws: {
  36983. height: math.unit(2.2, "feet"),
  36984. name: "Jaws",
  36985. image: {
  36986. source: "./media/characters/kremm/jaws.svg"
  36987. }
  36988. },
  36989. dick: {
  36990. height: math.unit(4.26, "feet"),
  36991. name: "Dick",
  36992. image: {
  36993. source: "./media/characters/kremm/dick.svg"
  36994. }
  36995. },
  36996. },
  36997. [
  36998. {
  36999. name: "Normal",
  37000. height: math.unit(10, "feet"),
  37001. default: true
  37002. },
  37003. ]
  37004. ))
  37005. characterMakers.push(() => makeCharacter(
  37006. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  37007. {
  37008. front: {
  37009. height: math.unit(30, "stories"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/kai/front.svg",
  37013. extra: 1892/1718,
  37014. bottom: 162/2054
  37015. }
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(30, "stories"),
  37022. default: true
  37023. },
  37024. ]
  37025. ))
  37026. characterMakers.push(() => makeCharacter(
  37027. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  37028. {
  37029. front: {
  37030. height: math.unit(6 + 4/12, "feet"),
  37031. weight: math.unit(145, "lb"),
  37032. name: "Front",
  37033. image: {
  37034. source: "./media/characters/sykes/front.svg",
  37035. extra: 1321 / 1187,
  37036. bottom: 66 / 1387
  37037. }
  37038. },
  37039. back: {
  37040. height: math.unit(6 + 4/12, "feet"),
  37041. weight: math.unit(145, "lb"),
  37042. name: "Back",
  37043. image: {
  37044. source: "./media/characters/sykes/back.svg",
  37045. extra: 1326/1181,
  37046. bottom: 31/1357
  37047. }
  37048. },
  37049. traditionalOutfit: {
  37050. height: math.unit(6 + 4/12, "feet"),
  37051. weight: math.unit(145, "lb"),
  37052. name: "Traditional Outfit",
  37053. image: {
  37054. source: "./media/characters/sykes/traditional-outfit.svg",
  37055. extra: 1321 / 1187,
  37056. bottom: 66 / 1387
  37057. }
  37058. },
  37059. adventureOutfit: {
  37060. height: math.unit(6 + 4/12, "feet"),
  37061. weight: math.unit(145, "lb"),
  37062. name: "Adventure Outfit",
  37063. image: {
  37064. source: "./media/characters/sykes/adventure-outfit.svg",
  37065. extra: 1321 / 1187,
  37066. bottom: 66 / 1387
  37067. }
  37068. },
  37069. handLeft: {
  37070. height: math.unit(0.9, "feet"),
  37071. name: "Hand (Left)",
  37072. image: {
  37073. source: "./media/characters/sykes/hand-left.svg"
  37074. }
  37075. },
  37076. handRight: {
  37077. height: math.unit(0.839, "feet"),
  37078. name: "Hand (Right)",
  37079. image: {
  37080. source: "./media/characters/sykes/hand-right.svg"
  37081. }
  37082. },
  37083. leftFoot: {
  37084. height: math.unit(1.2, "feet"),
  37085. name: "Foot (Left)",
  37086. image: {
  37087. source: "./media/characters/sykes/foot-left.svg"
  37088. }
  37089. },
  37090. rightFoot: {
  37091. height: math.unit(1.2, "feet"),
  37092. name: "Foot (Right)",
  37093. image: {
  37094. source: "./media/characters/sykes/foot-right.svg"
  37095. }
  37096. },
  37097. maw: {
  37098. height: math.unit(1.93, "feet"),
  37099. name: "Maw",
  37100. image: {
  37101. source: "./media/characters/sykes/maw.svg"
  37102. }
  37103. },
  37104. teeth: {
  37105. height: math.unit(0.51, "feet"),
  37106. name: "Teeth",
  37107. image: {
  37108. source: "./media/characters/sykes/teeth.svg"
  37109. }
  37110. },
  37111. tongue: {
  37112. height: math.unit(2.13, "feet"),
  37113. name: "Tongue",
  37114. image: {
  37115. source: "./media/characters/sykes/tongue.svg"
  37116. }
  37117. },
  37118. uvula: {
  37119. height: math.unit(0.16, "feet"),
  37120. name: "Uvula",
  37121. image: {
  37122. source: "./media/characters/sykes/uvula.svg"
  37123. }
  37124. },
  37125. collar: {
  37126. height: math.unit(0.287, "feet"),
  37127. name: "Collar",
  37128. image: {
  37129. source: "./media/characters/sykes/collar.svg"
  37130. }
  37131. },
  37132. tail: {
  37133. height: math.unit(3.8, "feet"),
  37134. name: "Tail",
  37135. image: {
  37136. source: "./media/characters/sykes/tail.svg"
  37137. }
  37138. },
  37139. },
  37140. [
  37141. {
  37142. name: "Shrunken",
  37143. height: math.unit(5, "inches")
  37144. },
  37145. {
  37146. name: "Normal",
  37147. height: math.unit(6 + 4 / 12, "feet"),
  37148. default: true
  37149. },
  37150. {
  37151. name: "Big",
  37152. height: math.unit(15, "feet")
  37153. },
  37154. ]
  37155. ))
  37156. characterMakers.push(() => makeCharacter(
  37157. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37158. {
  37159. front: {
  37160. height: math.unit(5 + 8/12, "feet"),
  37161. weight: math.unit(190, "lb"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/oven-otter/front.svg",
  37165. extra: 1809/1740,
  37166. bottom: 181/1990
  37167. }
  37168. },
  37169. back: {
  37170. height: math.unit(5 + 8/12, "feet"),
  37171. weight: math.unit(190, "lb"),
  37172. name: "Back",
  37173. image: {
  37174. source: "./media/characters/oven-otter/back.svg",
  37175. extra: 1709/1635,
  37176. bottom: 118/1827
  37177. }
  37178. },
  37179. hand: {
  37180. height: math.unit(1.07, "feet"),
  37181. name: "Hand",
  37182. image: {
  37183. source: "./media/characters/oven-otter/hand.svg"
  37184. }
  37185. },
  37186. beans: {
  37187. height: math.unit(1.74, "feet"),
  37188. name: "Beans",
  37189. image: {
  37190. source: "./media/characters/oven-otter/beans.svg"
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Micro",
  37197. height: math.unit(0.5, "inches")
  37198. },
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(5 + 8/12, "feet"),
  37202. default: true
  37203. },
  37204. {
  37205. name: "Macro",
  37206. height: math.unit(250, "feet")
  37207. },
  37208. {
  37209. name: "Really High",
  37210. height: math.unit(420, "feet")
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37216. {
  37217. front: {
  37218. height: math.unit(5, "meters"),
  37219. weight: math.unit(292000000000000, "kg"),
  37220. name: "Front",
  37221. image: {
  37222. source: "./media/characters/devourer/front.svg",
  37223. extra: 1800/1733,
  37224. bottom: 211/2011
  37225. }
  37226. },
  37227. maw: {
  37228. height: math.unit(1.1, "meter"),
  37229. name: "Maw",
  37230. image: {
  37231. source: "./media/characters/devourer/maw.svg"
  37232. }
  37233. },
  37234. },
  37235. [
  37236. {
  37237. name: "Small",
  37238. height: math.unit(3, "meters")
  37239. },
  37240. {
  37241. name: "Large",
  37242. height: math.unit(5, "meters"),
  37243. default: true
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37249. {
  37250. front: {
  37251. height: math.unit(6, "feet"),
  37252. weight: math.unit(400, "lb"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/ellarby/front.svg",
  37256. extra: 1909/1763,
  37257. bottom: 80/1989
  37258. }
  37259. },
  37260. back: {
  37261. height: math.unit(6, "feet"),
  37262. weight: math.unit(400, "lb"),
  37263. name: "Back",
  37264. image: {
  37265. source: "./media/characters/ellarby/back.svg",
  37266. extra: 1914/1784,
  37267. bottom: 172/2086
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Mischief",
  37274. height: math.unit(18, "inches")
  37275. },
  37276. {
  37277. name: "Trouble",
  37278. height: math.unit(12, "feet")
  37279. },
  37280. {
  37281. name: "Havoc",
  37282. height: math.unit(200, "feet"),
  37283. default: true
  37284. },
  37285. {
  37286. name: "Pandemonium",
  37287. height: math.unit(1, "mile")
  37288. },
  37289. {
  37290. name: "Catastrophe",
  37291. height: math.unit(100, "miles")
  37292. },
  37293. ]
  37294. ))
  37295. characterMakers.push(() => makeCharacter(
  37296. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37297. {
  37298. front: {
  37299. height: math.unit(4.7, "meters"),
  37300. weight: math.unit(6500, "kg"),
  37301. name: "Front",
  37302. image: {
  37303. source: "./media/characters/vex/front.svg",
  37304. extra: 1288/1140,
  37305. bottom: 100/1388
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(4.7, "meters"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37319. {
  37320. normal: {
  37321. height: math.unit(6, "feet"),
  37322. weight: math.unit(350, "lb"),
  37323. name: "Normal",
  37324. image: {
  37325. source: "./media/characters/teshy/normal.svg",
  37326. extra: 1795/1735,
  37327. bottom: 16/1811
  37328. }
  37329. },
  37330. monsterFront: {
  37331. height: math.unit(12, "feet"),
  37332. weight: math.unit(4700, "lb"),
  37333. name: "Monster (Front)",
  37334. image: {
  37335. source: "./media/characters/teshy/monster-front.svg",
  37336. extra: 2042/2034,
  37337. bottom: 128/2170
  37338. }
  37339. },
  37340. monsterSide: {
  37341. height: math.unit(12, "feet"),
  37342. weight: math.unit(4700, "lb"),
  37343. name: "Monster (Side)",
  37344. image: {
  37345. source: "./media/characters/teshy/monster-side.svg",
  37346. extra: 2067/2056,
  37347. bottom: 70/2137
  37348. }
  37349. },
  37350. monsterBack: {
  37351. height: math.unit(12, "feet"),
  37352. weight: math.unit(4700, "lb"),
  37353. name: "Monster (Back)",
  37354. image: {
  37355. source: "./media/characters/teshy/monster-back.svg",
  37356. extra: 1921/1914,
  37357. bottom: 171/2092
  37358. }
  37359. },
  37360. },
  37361. [
  37362. {
  37363. name: "Normal",
  37364. height: math.unit(6, "feet"),
  37365. default: true
  37366. },
  37367. ]
  37368. ))
  37369. characterMakers.push(() => makeCharacter(
  37370. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37371. {
  37372. front: {
  37373. height: math.unit(6, "feet"),
  37374. name: "Front",
  37375. image: {
  37376. source: "./media/characters/ramey/front.svg",
  37377. extra: 790/787,
  37378. bottom: 27/817
  37379. }
  37380. },
  37381. },
  37382. [
  37383. {
  37384. name: "Normal",
  37385. height: math.unit(6, "feet"),
  37386. default: true
  37387. },
  37388. ]
  37389. ))
  37390. characterMakers.push(() => makeCharacter(
  37391. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37392. {
  37393. front: {
  37394. height: math.unit(5 + 5/12, "feet"),
  37395. weight: math.unit(120, "lb"),
  37396. name: "Front",
  37397. image: {
  37398. source: "./media/characters/phirae/front.svg",
  37399. extra: 2491/2436,
  37400. bottom: 38/2529
  37401. }
  37402. },
  37403. },
  37404. [
  37405. {
  37406. name: "Normal",
  37407. height: math.unit(5 + 5/12, "feet"),
  37408. default: true
  37409. },
  37410. ]
  37411. ))
  37412. characterMakers.push(() => makeCharacter(
  37413. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37414. {
  37415. front: {
  37416. height: math.unit(5 + 3/12, "feet"),
  37417. name: "Front",
  37418. image: {
  37419. source: "./media/characters/stagglas/front.svg",
  37420. extra: 962/882,
  37421. bottom: 53/1015
  37422. }
  37423. },
  37424. feral: {
  37425. height: math.unit(335, "cm"),
  37426. name: "Feral",
  37427. image: {
  37428. source: "./media/characters/stagglas/feral.svg",
  37429. extra: 1732/1090,
  37430. bottom: 48/1780
  37431. }
  37432. },
  37433. },
  37434. [
  37435. {
  37436. name: "Normal",
  37437. height: math.unit(5 + 3/12, "feet"),
  37438. default: true
  37439. },
  37440. ]
  37441. ))
  37442. characterMakers.push(() => makeCharacter(
  37443. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37444. {
  37445. front: {
  37446. height: math.unit(5 + 4/12, "feet"),
  37447. weight: math.unit(145, "lb"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/starra/front.svg",
  37451. extra: 1790/1691,
  37452. bottom: 91/1881
  37453. }
  37454. },
  37455. },
  37456. [
  37457. {
  37458. name: "Normal",
  37459. height: math.unit(5 + 4/12, "feet"),
  37460. default: true
  37461. },
  37462. ]
  37463. ))
  37464. characterMakers.push(() => makeCharacter(
  37465. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37466. {
  37467. front: {
  37468. height: math.unit(3.5, "meters"),
  37469. name: "Front",
  37470. image: {
  37471. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37472. extra: 1248/972,
  37473. bottom: 38/1286
  37474. }
  37475. },
  37476. },
  37477. [
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(3.5, "meters"),
  37481. default: true
  37482. },
  37483. ]
  37484. ))
  37485. characterMakers.push(() => makeCharacter(
  37486. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37487. {
  37488. side: {
  37489. height: math.unit(8 + 2/12, "feet"),
  37490. weight: math.unit(1240, "lb"),
  37491. name: "Side",
  37492. image: {
  37493. source: "./media/characters/mika-valentine/side.svg",
  37494. extra: 2670/2501,
  37495. bottom: 250/2920
  37496. }
  37497. },
  37498. },
  37499. [
  37500. {
  37501. name: "Normal",
  37502. height: math.unit(8 + 2/12, "feet"),
  37503. default: true
  37504. },
  37505. ]
  37506. ))
  37507. characterMakers.push(() => makeCharacter(
  37508. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37509. {
  37510. front: {
  37511. height: math.unit(7 + 2/12, "feet"),
  37512. name: "Front",
  37513. image: {
  37514. source: "./media/characters/xoltol/front.svg",
  37515. extra: 2212/2124,
  37516. bottom: 84/2296
  37517. }
  37518. },
  37519. side: {
  37520. height: math.unit(7 + 2/12, "feet"),
  37521. name: "Side",
  37522. image: {
  37523. source: "./media/characters/xoltol/side.svg",
  37524. extra: 2273/2197,
  37525. bottom: 26/2299
  37526. }
  37527. },
  37528. hand: {
  37529. height: math.unit(2.5, "feet"),
  37530. name: "Hand",
  37531. image: {
  37532. source: "./media/characters/xoltol/hand.svg"
  37533. }
  37534. },
  37535. },
  37536. [
  37537. {
  37538. name: "Small-ish",
  37539. height: math.unit(5 + 11/12, "feet")
  37540. },
  37541. {
  37542. name: "Normal",
  37543. height: math.unit(7 + 2/12, "feet")
  37544. },
  37545. {
  37546. name: "\"Macro\"",
  37547. height: math.unit(14 + 9/12, "feet"),
  37548. default: true
  37549. },
  37550. {
  37551. name: "Alternate Height",
  37552. height: math.unit(20, "feet")
  37553. },
  37554. {
  37555. name: "Actually Macro",
  37556. height: math.unit(100, "feet")
  37557. },
  37558. ]
  37559. ))
  37560. characterMakers.push(() => makeCharacter(
  37561. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37562. {
  37563. front: {
  37564. height: math.unit(5 + 2/12, "feet"),
  37565. weight: math.unit(75, "kg"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/kotetsu-redwood/front.svg",
  37569. extra: 1053/942,
  37570. bottom: 60/1113
  37571. }
  37572. },
  37573. },
  37574. [
  37575. {
  37576. name: "Normal",
  37577. height: math.unit(5 + 2/12, "feet"),
  37578. default: true
  37579. },
  37580. ]
  37581. ))
  37582. characterMakers.push(() => makeCharacter(
  37583. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37584. {
  37585. front: {
  37586. height: math.unit(2.4, "meters"),
  37587. weight: math.unit(125, "kg"),
  37588. name: "Front",
  37589. image: {
  37590. source: "./media/characters/lilith/front.svg",
  37591. extra: 1590/1513,
  37592. bottom: 203/1793
  37593. }
  37594. },
  37595. },
  37596. [
  37597. {
  37598. name: "Humanoid",
  37599. height: math.unit(2.4, "meters")
  37600. },
  37601. {
  37602. name: "Normal",
  37603. height: math.unit(6, "meters"),
  37604. default: true
  37605. },
  37606. {
  37607. name: "Largest",
  37608. height: math.unit(55, "meters")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(8 + 4/12, "feet"),
  37617. weight: math.unit(535, "lb"),
  37618. name: "Front",
  37619. image: {
  37620. source: "./media/characters/beh'kah-bolger/front.svg",
  37621. extra: 1660/1603,
  37622. bottom: 37/1697
  37623. }
  37624. },
  37625. },
  37626. [
  37627. {
  37628. name: "Normal",
  37629. height: math.unit(8 + 4/12, "feet"),
  37630. default: true
  37631. },
  37632. {
  37633. name: "Kaiju",
  37634. height: math.unit(250, "feet")
  37635. },
  37636. {
  37637. name: "Still Growing",
  37638. height: math.unit(10, "miles")
  37639. },
  37640. {
  37641. name: "Continental",
  37642. height: math.unit(5000, "miles")
  37643. },
  37644. {
  37645. name: "Final Form",
  37646. height: math.unit(2500000, "miles")
  37647. },
  37648. ]
  37649. ))
  37650. characterMakers.push(() => makeCharacter(
  37651. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37652. {
  37653. front: {
  37654. height: math.unit(7 + 2/12, "feet"),
  37655. weight: math.unit(230, "kg"),
  37656. name: "Front",
  37657. image: {
  37658. source: "./media/characters/tatyana-milewska/front.svg",
  37659. extra: 1199/1150,
  37660. bottom: 86/1285
  37661. }
  37662. },
  37663. },
  37664. [
  37665. {
  37666. name: "Normal",
  37667. height: math.unit(7 + 2/12, "feet"),
  37668. default: true
  37669. },
  37670. {
  37671. name: "Big",
  37672. height: math.unit(12, "feet")
  37673. },
  37674. {
  37675. name: "Minimacro",
  37676. height: math.unit(20, "feet")
  37677. },
  37678. {
  37679. name: "Macro",
  37680. height: math.unit(120, "feet")
  37681. },
  37682. ]
  37683. ))
  37684. characterMakers.push(() => makeCharacter(
  37685. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37686. {
  37687. front: {
  37688. height: math.unit(7 + 8/12, "feet"),
  37689. weight: math.unit(152, "kg"),
  37690. name: "Front",
  37691. image: {
  37692. source: "./media/characters/helen-arri/front.svg",
  37693. extra: 440/423,
  37694. bottom: 14/454
  37695. }
  37696. },
  37697. back: {
  37698. height: math.unit(7 + 8/12, "feet"),
  37699. weight: math.unit(152, "kg"),
  37700. name: "Back",
  37701. image: {
  37702. source: "./media/characters/helen-arri/back.svg",
  37703. extra: 443/426,
  37704. bottom: 8/451
  37705. }
  37706. },
  37707. },
  37708. [
  37709. {
  37710. name: "Normal",
  37711. height: math.unit(7 + 8/12, "feet"),
  37712. default: true
  37713. },
  37714. {
  37715. name: "Big",
  37716. height: math.unit(14, "feet")
  37717. },
  37718. {
  37719. name: "Minimacro",
  37720. height: math.unit(24, "feet")
  37721. },
  37722. {
  37723. name: "Macro",
  37724. height: math.unit(140, "feet")
  37725. },
  37726. ]
  37727. ))
  37728. characterMakers.push(() => makeCharacter(
  37729. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37730. {
  37731. front: {
  37732. height: math.unit(6, "meters"),
  37733. name: "Front",
  37734. image: {
  37735. source: "./media/characters/ehanu-rehu/front.svg",
  37736. extra: 1800/1800,
  37737. bottom: 59/1859
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(6, "meters"),
  37745. default: true
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(7 + 3/12, "feet"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/renholder/front.svg",
  37757. extra: 3096/2960,
  37758. bottom: 250/3346
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal Bat",
  37765. height: math.unit(7 + 3/12, "feet"),
  37766. default: true
  37767. },
  37768. {
  37769. name: "Slightly Tall Bat",
  37770. height: math.unit(100, "feet")
  37771. },
  37772. {
  37773. name: "Big Bat",
  37774. height: math.unit(1000, "feet")
  37775. },
  37776. {
  37777. name: "City-Sized Bat",
  37778. height: math.unit(200000, "feet")
  37779. },
  37780. {
  37781. name: "Bigger Bat",
  37782. height: math.unit(10000, "miles")
  37783. },
  37784. {
  37785. name: "Solar Sized Bat",
  37786. height: math.unit(100, "AU")
  37787. },
  37788. {
  37789. name: "Galactic Bat",
  37790. height: math.unit(200000, "lightyears")
  37791. },
  37792. {
  37793. name: "Universally Known Bat",
  37794. height: math.unit(1, "universe")
  37795. },
  37796. ]
  37797. ))
  37798. characterMakers.push(() => makeCharacter(
  37799. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37800. {
  37801. front: {
  37802. height: math.unit(6 + 11/12, "feet"),
  37803. weight: math.unit(250, "lb"),
  37804. name: "Front",
  37805. image: {
  37806. source: "./media/characters/cookiecat/front.svg",
  37807. extra: 893/827,
  37808. bottom: 14/907
  37809. }
  37810. },
  37811. },
  37812. [
  37813. {
  37814. name: "Micro",
  37815. height: math.unit(3, "inches")
  37816. },
  37817. {
  37818. name: "Normal",
  37819. height: math.unit(6 + 11/12, "feet"),
  37820. default: true
  37821. },
  37822. {
  37823. name: "Macro",
  37824. height: math.unit(100, "feet")
  37825. },
  37826. {
  37827. name: "Macro+",
  37828. height: math.unit(404, "feet")
  37829. },
  37830. {
  37831. name: "Megamacro",
  37832. height: math.unit(165, "miles")
  37833. },
  37834. {
  37835. name: "Planetary",
  37836. height: math.unit(4600, "miles")
  37837. },
  37838. ]
  37839. ))
  37840. characterMakers.push(() => makeCharacter(
  37841. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37842. {
  37843. front: {
  37844. height: math.unit(10 + 3/12, "feet"),
  37845. weight: math.unit(1500, "lb"),
  37846. name: "Front",
  37847. image: {
  37848. source: "./media/characters/tux-kusanagi/front.svg",
  37849. extra: 944/840,
  37850. bottom: 39/983
  37851. }
  37852. },
  37853. back: {
  37854. height: math.unit(10 + 3/12, "feet"),
  37855. weight: math.unit(1500, "lb"),
  37856. name: "Back",
  37857. image: {
  37858. source: "./media/characters/tux-kusanagi/back.svg",
  37859. extra: 941/842,
  37860. bottom: 28/969
  37861. }
  37862. },
  37863. rump: {
  37864. height: math.unit(5.25, "feet"),
  37865. name: "Rump",
  37866. image: {
  37867. source: "./media/characters/tux-kusanagi/rump.svg"
  37868. }
  37869. },
  37870. beak: {
  37871. height: math.unit(1.54, "feet"),
  37872. name: "Beak",
  37873. image: {
  37874. source: "./media/characters/tux-kusanagi/beak.svg"
  37875. }
  37876. },
  37877. },
  37878. [
  37879. {
  37880. name: "Normal",
  37881. height: math.unit(10 + 3/12, "feet"),
  37882. default: true
  37883. },
  37884. ]
  37885. ))
  37886. characterMakers.push(() => makeCharacter(
  37887. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37888. {
  37889. front: {
  37890. height: math.unit(58, "feet"),
  37891. weight: math.unit(200, "tons"),
  37892. name: "Front",
  37893. image: {
  37894. source: "./media/characters/uzarmazari/front.svg",
  37895. extra: 1575/1455,
  37896. bottom: 152/1727
  37897. }
  37898. },
  37899. back: {
  37900. height: math.unit(58, "feet"),
  37901. weight: math.unit(200, "tons"),
  37902. name: "Back",
  37903. image: {
  37904. source: "./media/characters/uzarmazari/back.svg",
  37905. extra: 1585/1510,
  37906. bottom: 157/1742
  37907. }
  37908. },
  37909. head: {
  37910. height: math.unit(26, "feet"),
  37911. name: "Head",
  37912. image: {
  37913. source: "./media/characters/uzarmazari/head.svg"
  37914. }
  37915. },
  37916. },
  37917. [
  37918. {
  37919. name: "Normal",
  37920. height: math.unit(58, "feet"),
  37921. default: true
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37927. {
  37928. side: {
  37929. height: math.unit(15, "feet"),
  37930. name: "Side",
  37931. image: {
  37932. source: "./media/characters/akitu/side.svg",
  37933. extra: 1421/1321,
  37934. bottom: 157/1578
  37935. }
  37936. },
  37937. front: {
  37938. height: math.unit(15, "feet"),
  37939. name: "Front",
  37940. image: {
  37941. source: "./media/characters/akitu/front.svg",
  37942. extra: 1435/1326,
  37943. bottom: 232/1667
  37944. }
  37945. },
  37946. },
  37947. [
  37948. {
  37949. name: "Normal",
  37950. height: math.unit(15, "feet"),
  37951. default: true
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37957. {
  37958. front: {
  37959. height: math.unit(10 + 8/12, "feet"),
  37960. name: "Front",
  37961. image: {
  37962. source: "./media/characters/azalie-croixland/front.svg",
  37963. extra: 1972/1856,
  37964. bottom: 31/2003
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Original Height",
  37971. height: math.unit(5 + 4/12, "feet")
  37972. },
  37973. {
  37974. name: "Normal Height",
  37975. height: math.unit(10 + 8/12, "feet"),
  37976. default: true
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37982. {
  37983. side: {
  37984. height: math.unit(7 + 1/12, "feet"),
  37985. weight: math.unit(245, "lb"),
  37986. name: "Side",
  37987. image: {
  37988. source: "./media/characters/kavus-kazian/side.svg",
  37989. extra: 349/342,
  37990. bottom: 15/364
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(7 + 1/12, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  38004. {
  38005. normalFront: {
  38006. height: math.unit(5 + 11/12, "feet"),
  38007. name: "Front",
  38008. image: {
  38009. source: "./media/characters/moonlight-rose/normal-front.svg",
  38010. extra: 1980/1825,
  38011. bottom: 18/1998
  38012. },
  38013. form: "normal",
  38014. default: true
  38015. },
  38016. normalBack: {
  38017. height: math.unit(5 + 11/12, "feet"),
  38018. name: "Back",
  38019. image: {
  38020. source: "./media/characters/moonlight-rose/normal-back.svg",
  38021. extra: 2010/1839,
  38022. bottom: 10/2020
  38023. },
  38024. form: "normal"
  38025. },
  38026. demonFront: {
  38027. height: math.unit(1.5, "earths"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/moonlight-rose/demon.svg",
  38031. extra: 1400/1294,
  38032. bottom: 45/1445
  38033. },
  38034. form: "demon",
  38035. default: true
  38036. },
  38037. terraFront: {
  38038. height: math.unit(1.5, "earths"),
  38039. name: "Front",
  38040. image: {
  38041. source: "./media/characters/moonlight-rose/terra.svg"
  38042. },
  38043. form: "terra",
  38044. default: true
  38045. },
  38046. jupiterFront: {
  38047. height: math.unit(69911*2, "km"),
  38048. name: "Front",
  38049. image: {
  38050. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  38051. extra: 1367/1286,
  38052. bottom: 55/1422
  38053. },
  38054. form: "jupiter",
  38055. default: true
  38056. },
  38057. neptuneFront: {
  38058. height: math.unit(24622*2, "feet"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/moonlight-rose/neptune-front.svg",
  38062. extra: 1851/1712,
  38063. bottom: 0/1851
  38064. },
  38065. form: "neptune",
  38066. default: true
  38067. },
  38068. },
  38069. [
  38070. {
  38071. name: "\"Natural\" Height",
  38072. height: math.unit(5 + 11/12, "feet"),
  38073. form: "normal"
  38074. },
  38075. {
  38076. name: "Smallest comfortable size",
  38077. height: math.unit(40, "meters"),
  38078. form: "normal"
  38079. },
  38080. {
  38081. name: "Common size",
  38082. height: math.unit(50, "km"),
  38083. form: "normal",
  38084. default: true
  38085. },
  38086. {
  38087. name: "Normal",
  38088. height: math.unit(1.5, "earths"),
  38089. form: "demon",
  38090. default: true
  38091. },
  38092. {
  38093. name: "Universal",
  38094. height: math.unit(15, "universes"),
  38095. form: "demon"
  38096. },
  38097. {
  38098. name: "Earth",
  38099. height: math.unit(1.5, "earths"),
  38100. form: "terra",
  38101. default: true
  38102. },
  38103. {
  38104. name: "Super Earth",
  38105. height: math.unit(67.5, "earths"),
  38106. form: "terra"
  38107. },
  38108. {
  38109. name: "Doesn't fit in a solar system...",
  38110. height: math.unit(1, "galaxy"),
  38111. form: "terra"
  38112. },
  38113. {
  38114. name: "Saturn",
  38115. height: math.unit(58232*2, "km"),
  38116. form: "jupiter"
  38117. },
  38118. {
  38119. name: "Jupiter",
  38120. height: math.unit(69911*2, "km"),
  38121. form: "jupiter",
  38122. default: true
  38123. },
  38124. {
  38125. name: "HD 100546 b",
  38126. height: math.unit(482938, "km"),
  38127. form: "jupiter"
  38128. },
  38129. {
  38130. name: "Enceladus",
  38131. height: math.unit(513*2, "km"),
  38132. form: "neptune"
  38133. },
  38134. {
  38135. name: "Europe",
  38136. height: math.unit(1560*2, "km"),
  38137. form: "neptune"
  38138. },
  38139. {
  38140. name: "Neptune",
  38141. height: math.unit(24622*2, "km"),
  38142. form: "neptune",
  38143. default: true
  38144. },
  38145. {
  38146. name: "CoRoT-9b",
  38147. height: math.unit(75067*2, "km"),
  38148. form: "neptune"
  38149. },
  38150. ],
  38151. {
  38152. "normal": {
  38153. name: "Normal",
  38154. default: true
  38155. },
  38156. "demon": {
  38157. name: "Demon"
  38158. },
  38159. "terra": {
  38160. name: "Terra"
  38161. },
  38162. "jupiter": {
  38163. name: "Jupiter"
  38164. },
  38165. "neptune": {
  38166. name: "Neptune"
  38167. }
  38168. }
  38169. ))
  38170. characterMakers.push(() => makeCharacter(
  38171. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38172. {
  38173. front: {
  38174. height: math.unit(16, "feet"),
  38175. weight: math.unit(610, "kg"),
  38176. name: "Front",
  38177. image: {
  38178. source: "./media/characters/huckle/front.svg",
  38179. extra: 1731/1625,
  38180. bottom: 33/1764
  38181. }
  38182. },
  38183. back: {
  38184. height: math.unit(16, "feet"),
  38185. weight: math.unit(610, "kg"),
  38186. name: "Back",
  38187. image: {
  38188. source: "./media/characters/huckle/back.svg",
  38189. extra: 1738/1651,
  38190. bottom: 37/1775
  38191. }
  38192. },
  38193. laughing: {
  38194. height: math.unit(3.75, "feet"),
  38195. name: "Laughing",
  38196. image: {
  38197. source: "./media/characters/huckle/laughing.svg"
  38198. }
  38199. },
  38200. angry: {
  38201. height: math.unit(4.15, "feet"),
  38202. name: "Angry",
  38203. image: {
  38204. source: "./media/characters/huckle/angry.svg"
  38205. }
  38206. },
  38207. },
  38208. [
  38209. {
  38210. name: "Normal",
  38211. height: math.unit(16, "feet"),
  38212. default: true
  38213. },
  38214. {
  38215. name: "Mini Macro",
  38216. height: math.unit(463, "feet")
  38217. },
  38218. {
  38219. name: "Macro",
  38220. height: math.unit(1680, "meters")
  38221. },
  38222. {
  38223. name: "Mega Macro",
  38224. height: math.unit(175, "km")
  38225. },
  38226. {
  38227. name: "Terra Macro",
  38228. height: math.unit(32, "gigameters")
  38229. },
  38230. {
  38231. name: "Multiverse+",
  38232. height: math.unit(2.56e23, "yottameters")
  38233. },
  38234. ]
  38235. ))
  38236. characterMakers.push(() => makeCharacter(
  38237. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38238. {
  38239. front: {
  38240. height: math.unit(6 + 9/12, "feet"),
  38241. weight: math.unit(280, "lb"),
  38242. name: "Front",
  38243. image: {
  38244. source: "./media/characters/candy/front.svg",
  38245. extra: 234/217,
  38246. bottom: 11/245
  38247. }
  38248. },
  38249. },
  38250. [
  38251. {
  38252. name: "Really Small",
  38253. height: math.unit(0.1, "nm")
  38254. },
  38255. {
  38256. name: "Micro",
  38257. height: math.unit(2, "inches")
  38258. },
  38259. {
  38260. name: "Normal",
  38261. height: math.unit(6 + 9/12, "feet"),
  38262. default: true
  38263. },
  38264. {
  38265. name: "Small Macro",
  38266. height: math.unit(69, "feet")
  38267. },
  38268. {
  38269. name: "Macro",
  38270. height: math.unit(160, "feet")
  38271. },
  38272. {
  38273. name: "Megamacro",
  38274. height: math.unit(22000, "miles")
  38275. },
  38276. {
  38277. name: "Gigamacro",
  38278. height: math.unit(50000, "miles")
  38279. },
  38280. ]
  38281. ))
  38282. characterMakers.push(() => makeCharacter(
  38283. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38284. {
  38285. front: {
  38286. height: math.unit(4, "feet"),
  38287. weight: math.unit(90, "lb"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/joey-mcdonald/front.svg",
  38291. extra: 1059/852,
  38292. bottom: 33/1092
  38293. }
  38294. },
  38295. back: {
  38296. height: math.unit(4, "feet"),
  38297. weight: math.unit(90, "lb"),
  38298. name: "Back",
  38299. image: {
  38300. source: "./media/characters/joey-mcdonald/back.svg",
  38301. extra: 1077/879,
  38302. bottom: 5/1082
  38303. }
  38304. },
  38305. frontKobold: {
  38306. height: math.unit(4, "feet"),
  38307. weight: math.unit(100, "lb"),
  38308. name: "Front-kobold",
  38309. image: {
  38310. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38311. extra: 1480/1367,
  38312. bottom: 0/1480
  38313. }
  38314. },
  38315. backKobold: {
  38316. height: math.unit(4, "feet"),
  38317. weight: math.unit(100, "lb"),
  38318. name: "Back-kobold",
  38319. image: {
  38320. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38321. extra: 1449/1361,
  38322. bottom: 0/1449
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Normal",
  38329. height: math.unit(4, "feet"),
  38330. default: true
  38331. },
  38332. ]
  38333. ))
  38334. characterMakers.push(() => makeCharacter(
  38335. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38336. {
  38337. front: {
  38338. height: math.unit(12 + 6/12, "feet"),
  38339. name: "Front",
  38340. image: {
  38341. source: "./media/characters/kass-lockheed/front.svg",
  38342. extra: 354/343,
  38343. bottom: 9/363
  38344. }
  38345. },
  38346. back: {
  38347. height: math.unit(12 + 6/12, "feet"),
  38348. name: "Back",
  38349. image: {
  38350. source: "./media/characters/kass-lockheed/back.svg",
  38351. extra: 364/352,
  38352. bottom: 3/367
  38353. }
  38354. },
  38355. dick: {
  38356. height: math.unit(3.12, "feet"),
  38357. name: "Dick",
  38358. image: {
  38359. source: "./media/characters/kass-lockheed/dick.svg"
  38360. }
  38361. },
  38362. head: {
  38363. height: math.unit(2.6, "feet"),
  38364. name: "Head",
  38365. image: {
  38366. source: "./media/characters/kass-lockheed/head.svg"
  38367. }
  38368. },
  38369. bleh: {
  38370. height: math.unit(2.85, "feet"),
  38371. name: "Bleh",
  38372. image: {
  38373. source: "./media/characters/kass-lockheed/bleh.svg"
  38374. }
  38375. },
  38376. smug: {
  38377. height: math.unit(2.85, "feet"),
  38378. name: "Smug",
  38379. image: {
  38380. source: "./media/characters/kass-lockheed/smug.svg"
  38381. }
  38382. },
  38383. },
  38384. [
  38385. {
  38386. name: "Normal",
  38387. height: math.unit(12 + 6/12, "feet"),
  38388. default: true
  38389. },
  38390. ]
  38391. ))
  38392. characterMakers.push(() => makeCharacter(
  38393. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38394. {
  38395. front: {
  38396. height: math.unit(6 + 2/12, "feet"),
  38397. name: "Front",
  38398. image: {
  38399. source: "./media/characters/taylor/front.svg",
  38400. extra: 639/495,
  38401. bottom: 12/651
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Normal",
  38408. height: math.unit(6 + 2/12, "feet"),
  38409. default: true
  38410. },
  38411. {
  38412. name: "Big",
  38413. height: math.unit(15, "feet")
  38414. },
  38415. {
  38416. name: "Lorg",
  38417. height: math.unit(80, "feet")
  38418. },
  38419. {
  38420. name: "Too Lorg",
  38421. height: math.unit(120, "feet")
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(15, "feet"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/kaizer/front.svg",
  38433. extra: 1612/1436,
  38434. bottom: 43/1655
  38435. }
  38436. },
  38437. },
  38438. [
  38439. {
  38440. name: "Normal",
  38441. height: math.unit(15, "feet"),
  38442. default: true
  38443. },
  38444. ]
  38445. ))
  38446. characterMakers.push(() => makeCharacter(
  38447. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38448. {
  38449. front: {
  38450. height: math.unit(2, "feet"),
  38451. weight: math.unit(30, "lb"),
  38452. name: "Front",
  38453. image: {
  38454. source: "./media/characters/sandy/front.svg",
  38455. extra: 1439/1307,
  38456. bottom: 194/1633
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(2, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(3, "feet"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/mellvi/front.svg",
  38476. extra: 1831/1630,
  38477. bottom: 58/1889
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(3, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(5 + 11/12, "feet"),
  38494. weight: math.unit(200, "lb"),
  38495. name: "Front",
  38496. image: {
  38497. source: "./media/characters/shirou/front.svg",
  38498. extra: 2491/2383,
  38499. bottom: 189/2680
  38500. }
  38501. },
  38502. back: {
  38503. height: math.unit(5 + 11/12, "feet"),
  38504. weight: math.unit(200, "lb"),
  38505. name: "Back",
  38506. image: {
  38507. source: "./media/characters/shirou/back.svg",
  38508. extra: 2554/2450,
  38509. bottom: 76/2630
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(5 + 11/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38523. {
  38524. front: {
  38525. height: math.unit(6 + 3/12, "feet"),
  38526. weight: math.unit(177, "lb"),
  38527. name: "Front",
  38528. image: {
  38529. source: "./media/characters/noryu/front.svg",
  38530. extra: 973/885,
  38531. bottom: 10/983
  38532. }
  38533. },
  38534. },
  38535. [
  38536. {
  38537. name: "Normal",
  38538. height: math.unit(6 + 3/12, "feet"),
  38539. default: true
  38540. },
  38541. ]
  38542. ))
  38543. characterMakers.push(() => makeCharacter(
  38544. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38545. {
  38546. front: {
  38547. height: math.unit(5 + 6/12, "feet"),
  38548. weight: math.unit(170, "lb"),
  38549. name: "Front",
  38550. image: {
  38551. source: "./media/characters/mevolas-rubenido/front.svg",
  38552. extra: 2109/1901,
  38553. bottom: 96/2205
  38554. }
  38555. },
  38556. },
  38557. [
  38558. {
  38559. name: "Normal",
  38560. height: math.unit(5 + 6/12, "feet"),
  38561. default: true
  38562. },
  38563. ]
  38564. ))
  38565. characterMakers.push(() => makeCharacter(
  38566. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38567. {
  38568. front: {
  38569. height: math.unit(100, "feet"),
  38570. name: "Front",
  38571. image: {
  38572. source: "./media/characters/dee/front.svg",
  38573. extra: 2153/2036,
  38574. bottom: 59/2212
  38575. }
  38576. },
  38577. back: {
  38578. height: math.unit(100, "feet"),
  38579. name: "Back",
  38580. image: {
  38581. source: "./media/characters/dee/back.svg",
  38582. extra: 2183/2058,
  38583. bottom: 75/2258
  38584. }
  38585. },
  38586. foot: {
  38587. height: math.unit(19.43, "feet"),
  38588. name: "Foot",
  38589. image: {
  38590. source: "./media/characters/dee/foot.svg"
  38591. }
  38592. },
  38593. hoof: {
  38594. height: math.unit(20.6, "feet"),
  38595. name: "Hoof",
  38596. image: {
  38597. source: "./media/characters/dee/hoof.svg"
  38598. }
  38599. },
  38600. },
  38601. [
  38602. {
  38603. name: "Macro",
  38604. height: math.unit(100, "feet"),
  38605. default: true
  38606. },
  38607. ]
  38608. ))
  38609. characterMakers.push(() => makeCharacter(
  38610. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38611. {
  38612. front: {
  38613. height: math.unit(5 + 6/12, "feet"),
  38614. name: "Front",
  38615. image: {
  38616. source: "./media/characters/teh/front.svg",
  38617. extra: 1002/847,
  38618. bottom: 62/1064
  38619. }
  38620. },
  38621. },
  38622. [
  38623. {
  38624. name: "Normal",
  38625. height: math.unit(5 + 6/12, "feet"),
  38626. default: true
  38627. },
  38628. ]
  38629. ))
  38630. characterMakers.push(() => makeCharacter(
  38631. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38632. {
  38633. side: {
  38634. height: math.unit(6 + 1/12, "feet"),
  38635. weight: math.unit(204, "lb"),
  38636. name: "Side",
  38637. image: {
  38638. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38639. extra: 974/775,
  38640. bottom: 169/1143
  38641. }
  38642. },
  38643. sitting: {
  38644. height: math.unit(6 + 2/12, "feet"),
  38645. weight: math.unit(204, "lb"),
  38646. name: "Sitting",
  38647. image: {
  38648. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38649. extra: 1175/964,
  38650. bottom: 378/1553
  38651. }
  38652. },
  38653. },
  38654. [
  38655. {
  38656. name: "Normal",
  38657. height: math.unit(6 + 1/12, "feet"),
  38658. default: true
  38659. },
  38660. ]
  38661. ))
  38662. characterMakers.push(() => makeCharacter(
  38663. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38664. {
  38665. front: {
  38666. height: math.unit(6, "inches"),
  38667. name: "Front",
  38668. image: {
  38669. source: "./media/characters/tululi/front.svg",
  38670. extra: 1997/1876,
  38671. bottom: 20/2017
  38672. }
  38673. },
  38674. },
  38675. [
  38676. {
  38677. name: "Normal",
  38678. height: math.unit(6, "inches"),
  38679. default: true
  38680. },
  38681. ]
  38682. ))
  38683. characterMakers.push(() => makeCharacter(
  38684. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38685. {
  38686. front: {
  38687. height: math.unit(4 + 1/12, "feet"),
  38688. name: "Front",
  38689. image: {
  38690. source: "./media/characters/star/front.svg",
  38691. extra: 1493/1189,
  38692. bottom: 48/1541
  38693. }
  38694. },
  38695. },
  38696. [
  38697. {
  38698. name: "Normal",
  38699. height: math.unit(4 + 1/12, "feet"),
  38700. default: true
  38701. },
  38702. ]
  38703. ))
  38704. characterMakers.push(() => makeCharacter(
  38705. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38706. {
  38707. front: {
  38708. height: math.unit(6 + 3/12, "feet"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/comet/front.svg",
  38712. extra: 1681/1462,
  38713. bottom: 26/1707
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(6 + 3/12, "feet"),
  38721. default: true
  38722. },
  38723. ]
  38724. ))
  38725. characterMakers.push(() => makeCharacter(
  38726. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38727. {
  38728. front: {
  38729. height: math.unit(950, "feet"),
  38730. name: "Front",
  38731. image: {
  38732. source: "./media/characters/vortex/front.svg",
  38733. extra: 1497/1434,
  38734. bottom: 56/1553
  38735. }
  38736. },
  38737. maw: {
  38738. height: math.unit(285, "feet"),
  38739. name: "Maw",
  38740. image: {
  38741. source: "./media/characters/vortex/maw.svg"
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Macro",
  38748. height: math.unit(950, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(600, "feet"),
  38758. weight: math.unit(0.02, "grams"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/doodle/front.svg",
  38762. extra: 1578/1413,
  38763. bottom: 37/1615
  38764. }
  38765. },
  38766. },
  38767. [
  38768. {
  38769. name: "Macro",
  38770. height: math.unit(600, "feet"),
  38771. default: true
  38772. },
  38773. ]
  38774. ))
  38775. characterMakers.push(() => makeCharacter(
  38776. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38777. {
  38778. front: {
  38779. height: math.unit(6 + 6/12, "feet"),
  38780. name: "Front",
  38781. image: {
  38782. source: "./media/characters/jai/front.svg",
  38783. extra: 1645/1534,
  38784. bottom: 115/1760
  38785. }
  38786. },
  38787. },
  38788. [
  38789. {
  38790. name: "Normal",
  38791. height: math.unit(6 + 6/12, "feet"),
  38792. default: true
  38793. },
  38794. ]
  38795. ))
  38796. characterMakers.push(() => makeCharacter(
  38797. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38798. {
  38799. front: {
  38800. height: math.unit(6 + 8/12, "feet"),
  38801. name: "Front",
  38802. image: {
  38803. source: "./media/characters/pixel/front.svg",
  38804. extra: 1900/1735,
  38805. bottom: 63/1963
  38806. }
  38807. },
  38808. },
  38809. [
  38810. {
  38811. name: "Normal",
  38812. height: math.unit(6 + 8/12, "feet"),
  38813. default: true
  38814. },
  38815. ]
  38816. ))
  38817. characterMakers.push(() => makeCharacter(
  38818. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38819. {
  38820. back: {
  38821. height: math.unit(4 + 1/12, "feet"),
  38822. weight: math.unit(75, "lb"),
  38823. name: "Back",
  38824. image: {
  38825. source: "./media/characters/rhett/back.svg",
  38826. extra: 930/878,
  38827. bottom: 25/955
  38828. }
  38829. },
  38830. front: {
  38831. height: math.unit(4 + 1/12, "feet"),
  38832. weight: math.unit(75, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/rhett/front.svg",
  38836. extra: 1682/1586,
  38837. bottom: 92/1774
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Micro",
  38844. height: math.unit(8, "inches")
  38845. },
  38846. {
  38847. name: "Tiny",
  38848. height: math.unit(2, "feet")
  38849. },
  38850. {
  38851. name: "Normal",
  38852. height: math.unit(4 + 1/12, "feet"),
  38853. default: true
  38854. },
  38855. ]
  38856. ))
  38857. characterMakers.push(() => makeCharacter(
  38858. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38859. {
  38860. front: {
  38861. height: math.unit(3 + 3/12, "feet"),
  38862. name: "Front",
  38863. image: {
  38864. source: "./media/characters/penny/front.svg",
  38865. extra: 1406/1311,
  38866. bottom: 26/1432
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Normal",
  38873. height: math.unit(3 + 3/12, "feet"),
  38874. default: true
  38875. },
  38876. ]
  38877. ))
  38878. characterMakers.push(() => makeCharacter(
  38879. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38880. {
  38881. front: {
  38882. height: math.unit(4 + 11/12, "feet"),
  38883. name: "Front",
  38884. image: {
  38885. source: "./media/characters/monty/front.svg",
  38886. extra: 1479/1209,
  38887. bottom: 0/1479
  38888. }
  38889. },
  38890. },
  38891. [
  38892. {
  38893. name: "Normal",
  38894. height: math.unit(4 + 11/12, "feet"),
  38895. default: true
  38896. },
  38897. ]
  38898. ))
  38899. characterMakers.push(() => makeCharacter(
  38900. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38901. {
  38902. front: {
  38903. height: math.unit(8 + 4/12, "feet"),
  38904. name: "Front",
  38905. image: {
  38906. source: "./media/characters/sterling/front.svg",
  38907. extra: 1420/1236,
  38908. bottom: 27/1447
  38909. }
  38910. },
  38911. },
  38912. [
  38913. {
  38914. name: "Normal",
  38915. height: math.unit(8 + 4/12, "feet"),
  38916. default: true
  38917. },
  38918. ]
  38919. ))
  38920. characterMakers.push(() => makeCharacter(
  38921. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38922. {
  38923. front: {
  38924. height: math.unit(15, "feet"),
  38925. name: "Front",
  38926. image: {
  38927. source: "./media/characters/marble/front.svg",
  38928. extra: 973/937,
  38929. bottom: 32/1005
  38930. }
  38931. },
  38932. },
  38933. [
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(15, "feet"),
  38937. default: true
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38943. {
  38944. front: {
  38945. height: math.unit(3, "inches"),
  38946. name: "Front",
  38947. image: {
  38948. source: "./media/characters/powder/front.svg",
  38949. extra: 1504/1334,
  38950. bottom: 518/2022
  38951. }
  38952. },
  38953. },
  38954. [
  38955. {
  38956. name: "Normal",
  38957. height: math.unit(3, "inches"),
  38958. default: true
  38959. },
  38960. ]
  38961. ))
  38962. characterMakers.push(() => makeCharacter(
  38963. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38964. {
  38965. front: {
  38966. height: math.unit(4 + 5/12, "feet"),
  38967. name: "Front",
  38968. image: {
  38969. source: "./media/characters/joey-raccoon/front.svg",
  38970. extra: 1273/1197,
  38971. bottom: 0/1273
  38972. }
  38973. },
  38974. },
  38975. [
  38976. {
  38977. name: "Normal",
  38978. height: math.unit(4 + 5/12, "feet"),
  38979. default: true
  38980. },
  38981. ]
  38982. ))
  38983. characterMakers.push(() => makeCharacter(
  38984. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38985. {
  38986. front: {
  38987. height: math.unit(8 + 4/12, "feet"),
  38988. name: "Front",
  38989. image: {
  38990. source: "./media/characters/vick/front.svg",
  38991. extra: 2187/2118,
  38992. bottom: 47/2234
  38993. }
  38994. },
  38995. },
  38996. [
  38997. {
  38998. name: "Normal",
  38999. height: math.unit(8 + 4/12, "feet"),
  39000. default: true
  39001. },
  39002. ]
  39003. ))
  39004. characterMakers.push(() => makeCharacter(
  39005. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  39006. {
  39007. front: {
  39008. height: math.unit(5 + 5/12, "feet"),
  39009. name: "Front",
  39010. image: {
  39011. source: "./media/characters/mitsy/front.svg",
  39012. extra: 1842/1695,
  39013. bottom: 0/1842
  39014. }
  39015. },
  39016. },
  39017. [
  39018. {
  39019. name: "Normal",
  39020. height: math.unit(5 + 5/12, "feet"),
  39021. default: true
  39022. },
  39023. ]
  39024. ))
  39025. characterMakers.push(() => makeCharacter(
  39026. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  39027. {
  39028. front: {
  39029. height: math.unit(6 + 3/12, "feet"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/silvy/front.svg",
  39033. extra: 1995/1836,
  39034. bottom: 225/2220
  39035. }
  39036. },
  39037. },
  39038. [
  39039. {
  39040. name: "Normal",
  39041. height: math.unit(6 + 3/12, "feet"),
  39042. default: true
  39043. },
  39044. ]
  39045. ))
  39046. characterMakers.push(() => makeCharacter(
  39047. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  39048. {
  39049. front: {
  39050. height: math.unit(3 + 8/12, "feet"),
  39051. name: "Front",
  39052. image: {
  39053. source: "./media/characters/rodney/front.svg",
  39054. extra: 1956/1747,
  39055. bottom: 31/1987
  39056. }
  39057. },
  39058. frontDressed: {
  39059. height: math.unit(2.9, "feet"),
  39060. name: "Front (Dressed)",
  39061. image: {
  39062. source: "./media/characters/rodney/front-dressed.svg",
  39063. extra: 1382/1241,
  39064. bottom: 385/1767
  39065. }
  39066. },
  39067. },
  39068. [
  39069. {
  39070. name: "Normal",
  39071. height: math.unit(3 + 8/12, "feet"),
  39072. default: true
  39073. },
  39074. ]
  39075. ))
  39076. characterMakers.push(() => makeCharacter(
  39077. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39078. {
  39079. front: {
  39080. height: math.unit(5 + 9/12, "feet"),
  39081. weight: math.unit(194, "lbs"),
  39082. name: "Front",
  39083. image: {
  39084. source: "./media/characters/zakail-sudekai/front.svg",
  39085. extra: 2696/2533,
  39086. bottom: 248/2944
  39087. }
  39088. },
  39089. maw: {
  39090. height: math.unit(1.35, "feet"),
  39091. name: "Maw",
  39092. image: {
  39093. source: "./media/characters/zakail-sudekai/maw.svg"
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(5 + 9/12, "feet"),
  39101. default: true
  39102. },
  39103. ]
  39104. ))
  39105. characterMakers.push(() => makeCharacter(
  39106. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39107. {
  39108. front: {
  39109. height: math.unit(8 + 4/12, "feet"),
  39110. weight: math.unit(1200, "lb"),
  39111. name: "Front",
  39112. image: {
  39113. source: "./media/characters/eleanor/front.svg",
  39114. extra: 1226/1192,
  39115. bottom: 52/1278
  39116. }
  39117. },
  39118. back: {
  39119. height: math.unit(8 + 4/12, "feet"),
  39120. weight: math.unit(1200, "lb"),
  39121. name: "Back",
  39122. image: {
  39123. source: "./media/characters/eleanor/back.svg",
  39124. extra: 1242/1184,
  39125. bottom: 60/1302
  39126. }
  39127. },
  39128. head: {
  39129. height: math.unit(2.62, "feet"),
  39130. name: "Head",
  39131. image: {
  39132. source: "./media/characters/eleanor/head.svg"
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(8 + 4/12, "feet"),
  39140. default: true
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(8 + 4/12, "feet"),
  39149. weight: math.unit(750, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/tanya/front.svg",
  39153. extra: 1749/1615,
  39154. bottom: 33/1782
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(8 + 4/12, "feet"),
  39162. default: true
  39163. },
  39164. ]
  39165. ))
  39166. characterMakers.push(() => makeCharacter(
  39167. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39168. {
  39169. front: {
  39170. height: math.unit(5, "feet"),
  39171. weight: math.unit(225, "lb"),
  39172. name: "Front",
  39173. image: {
  39174. source: "./media/characters/cindy/front.svg",
  39175. extra: 1320/1250,
  39176. bottom: 42/1362
  39177. }
  39178. },
  39179. frontDressed: {
  39180. height: math.unit(5, "feet"),
  39181. weight: math.unit(225, "lb"),
  39182. name: "Front (Dressed)",
  39183. image: {
  39184. source: "./media/characters/cindy/front-dressed.svg",
  39185. extra: 1320/1250,
  39186. bottom: 42/1362
  39187. }
  39188. },
  39189. back: {
  39190. height: math.unit(5, "feet"),
  39191. weight: math.unit(225, "lb"),
  39192. name: "Back",
  39193. image: {
  39194. source: "./media/characters/cindy/back.svg",
  39195. extra: 1384/1346,
  39196. bottom: 14/1398
  39197. }
  39198. },
  39199. },
  39200. [
  39201. {
  39202. name: "Normal",
  39203. height: math.unit(5, "feet"),
  39204. default: true
  39205. },
  39206. ]
  39207. ))
  39208. characterMakers.push(() => makeCharacter(
  39209. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39210. {
  39211. front: {
  39212. height: math.unit(6 + 9/12, "feet"),
  39213. weight: math.unit(440, "lb"),
  39214. name: "Front",
  39215. image: {
  39216. source: "./media/characters/wilbur-owen/front.svg",
  39217. extra: 1575/1448,
  39218. bottom: 72/1647
  39219. }
  39220. },
  39221. back: {
  39222. height: math.unit(6 + 9/12, "feet"),
  39223. weight: math.unit(440, "lb"),
  39224. name: "Back",
  39225. image: {
  39226. source: "./media/characters/wilbur-owen/back.svg",
  39227. extra: 1578/1445,
  39228. bottom: 36/1614
  39229. }
  39230. },
  39231. },
  39232. [
  39233. {
  39234. name: "Normal",
  39235. height: math.unit(6 + 9/12, "feet"),
  39236. default: true
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39242. {
  39243. front: {
  39244. height: math.unit(6 + 5/12, "feet"),
  39245. weight: math.unit(650, "lb"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/keegan/front.svg",
  39249. extra: 2387/2198,
  39250. bottom: 33/2420
  39251. }
  39252. },
  39253. side: {
  39254. height: math.unit(6 + 5/12, "feet"),
  39255. weight: math.unit(650, "lb"),
  39256. name: "Side",
  39257. image: {
  39258. source: "./media/characters/keegan/side.svg",
  39259. extra: 2390/2202,
  39260. bottom: 47/2437
  39261. }
  39262. },
  39263. back: {
  39264. height: math.unit(6 + 5/12, "feet"),
  39265. weight: math.unit(650, "lb"),
  39266. name: "Back",
  39267. image: {
  39268. source: "./media/characters/keegan/back.svg",
  39269. extra: 2418/2268,
  39270. bottom: 15/2433
  39271. }
  39272. },
  39273. frontSfw: {
  39274. height: math.unit(6 + 5/12, "feet"),
  39275. weight: math.unit(650, "lb"),
  39276. name: "Front (SFW)",
  39277. image: {
  39278. source: "./media/characters/keegan/front-sfw.svg",
  39279. extra: 2387/2198,
  39280. bottom: 33/2420
  39281. }
  39282. },
  39283. beans: {
  39284. height: math.unit(1.85, "feet"),
  39285. name: "Beans",
  39286. image: {
  39287. source: "./media/characters/keegan/beans.svg"
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(6 + 5/12, "feet"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. characterMakers.push(() => makeCharacter(
  39300. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39301. {
  39302. front: {
  39303. height: math.unit(9, "feet"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/colton/front.svg",
  39307. extra: 1589/1326,
  39308. bottom: 139/1728
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(9, "feet"),
  39316. default: true
  39317. },
  39318. ]
  39319. ))
  39320. characterMakers.push(() => makeCharacter(
  39321. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39322. {
  39323. front: {
  39324. height: math.unit(2 + 9/12, "feet"),
  39325. name: "Front",
  39326. image: {
  39327. source: "./media/characters/bora/front.svg",
  39328. extra: 1265/1250,
  39329. bottom: 24/1289
  39330. }
  39331. },
  39332. },
  39333. [
  39334. {
  39335. name: "Normal",
  39336. height: math.unit(2 + 9/12, "feet"),
  39337. default: true
  39338. },
  39339. ]
  39340. ))
  39341. characterMakers.push(() => makeCharacter(
  39342. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39343. {
  39344. front: {
  39345. height: math.unit(8, "feet"),
  39346. name: "Front",
  39347. image: {
  39348. source: "./media/characters/myu-myu/front.svg",
  39349. extra: 1949/1857,
  39350. bottom: 90/2039
  39351. }
  39352. },
  39353. },
  39354. [
  39355. {
  39356. name: "Normal",
  39357. height: math.unit(8, "feet"),
  39358. default: true
  39359. },
  39360. {
  39361. name: "Big",
  39362. height: math.unit(15, "feet")
  39363. },
  39364. {
  39365. name: "BIG",
  39366. height: math.unit(25, "feet")
  39367. },
  39368. ]
  39369. ))
  39370. characterMakers.push(() => makeCharacter(
  39371. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39372. {
  39373. side: {
  39374. height: math.unit(7 + 5/12, "feet"),
  39375. weight: math.unit(2800, "lb"),
  39376. name: "Side",
  39377. image: {
  39378. source: "./media/characters/haloren/side.svg",
  39379. extra: 1793/409,
  39380. bottom: 59/1852
  39381. }
  39382. },
  39383. frontPaw: {
  39384. height: math.unit(2.36, "feet"),
  39385. name: "Front paw",
  39386. image: {
  39387. source: "./media/characters/haloren/front-paw.svg"
  39388. }
  39389. },
  39390. hindPaw: {
  39391. height: math.unit(3.18, "feet"),
  39392. name: "Hind paw",
  39393. image: {
  39394. source: "./media/characters/haloren/hind-paw.svg"
  39395. }
  39396. },
  39397. maw: {
  39398. height: math.unit(5.05, "feet"),
  39399. name: "Maw",
  39400. image: {
  39401. source: "./media/characters/haloren/maw.svg"
  39402. }
  39403. },
  39404. dick: {
  39405. height: math.unit(2.90, "feet"),
  39406. name: "Dick",
  39407. image: {
  39408. source: "./media/characters/haloren/dick.svg"
  39409. }
  39410. },
  39411. },
  39412. [
  39413. {
  39414. name: "Normal",
  39415. height: math.unit(7 + 5/12, "feet"),
  39416. default: true
  39417. },
  39418. {
  39419. name: "Enhanced",
  39420. height: math.unit(14 + 3/12, "feet")
  39421. },
  39422. ]
  39423. ))
  39424. characterMakers.push(() => makeCharacter(
  39425. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39426. {
  39427. front: {
  39428. height: math.unit(171, "cm"),
  39429. name: "Front",
  39430. image: {
  39431. source: "./media/characters/kimmy/front.svg",
  39432. extra: 1491/1435,
  39433. bottom: 53/1544
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Small",
  39440. height: math.unit(9, "cm")
  39441. },
  39442. {
  39443. name: "Normal",
  39444. height: math.unit(171, "cm"),
  39445. default: true
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(8, "feet"),
  39454. weight: math.unit(300, "lb"),
  39455. name: "Front",
  39456. image: {
  39457. source: "./media/characters/galeboomer/front.svg",
  39458. extra: 4651/4415,
  39459. bottom: 162/4813
  39460. }
  39461. },
  39462. back: {
  39463. height: math.unit(8, "feet"),
  39464. weight: math.unit(300, "lb"),
  39465. name: "Back",
  39466. image: {
  39467. source: "./media/characters/galeboomer/back.svg",
  39468. extra: 4544/4314,
  39469. bottom: 16/4560
  39470. }
  39471. },
  39472. frontAlt: {
  39473. height: math.unit(8, "feet"),
  39474. weight: math.unit(300, "lb"),
  39475. name: "Front (Alt)",
  39476. image: {
  39477. source: "./media/characters/galeboomer/front-alt.svg",
  39478. extra: 4458/4228,
  39479. bottom: 68/4526
  39480. }
  39481. },
  39482. maw: {
  39483. height: math.unit(1.2, "feet"),
  39484. name: "Maw",
  39485. image: {
  39486. source: "./media/characters/galeboomer/maw.svg"
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(8, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(5 + 9/12, "feet"),
  39503. weight: math.unit(120, "lb"),
  39504. name: "Front",
  39505. image: {
  39506. source: "./media/characters/chyr/front.svg",
  39507. extra: 1323/1254,
  39508. bottom: 63/1386
  39509. }
  39510. },
  39511. back: {
  39512. height: math.unit(5 + 9/12, "feet"),
  39513. weight: math.unit(120, "lb"),
  39514. name: "Back",
  39515. image: {
  39516. source: "./media/characters/chyr/back.svg",
  39517. extra: 1323/1252,
  39518. bottom: 48/1371
  39519. }
  39520. },
  39521. },
  39522. [
  39523. {
  39524. name: "Normal",
  39525. height: math.unit(5 + 9/12, "feet"),
  39526. default: true
  39527. },
  39528. ]
  39529. ))
  39530. characterMakers.push(() => makeCharacter(
  39531. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39532. {
  39533. front: {
  39534. height: math.unit(7, "feet"),
  39535. weight: math.unit(310, "lb"),
  39536. name: "Front",
  39537. image: {
  39538. source: "./media/characters/solarus/front.svg",
  39539. extra: 2415/2021,
  39540. bottom: 103/2518
  39541. }
  39542. },
  39543. back: {
  39544. height: math.unit(7, "feet"),
  39545. weight: math.unit(310, "lb"),
  39546. name: "Back",
  39547. image: {
  39548. source: "./media/characters/solarus/back.svg",
  39549. extra: 2463/2089,
  39550. bottom: 79/2542
  39551. }
  39552. },
  39553. },
  39554. [
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(7, "feet"),
  39558. default: true
  39559. },
  39560. ]
  39561. ))
  39562. characterMakers.push(() => makeCharacter(
  39563. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39564. {
  39565. front: {
  39566. height: math.unit(16, "feet"),
  39567. name: "Front",
  39568. image: {
  39569. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39570. extra: 1844/1780,
  39571. bottom: 58/1902
  39572. }
  39573. },
  39574. winterCoat: {
  39575. height: math.unit(16, "feet"),
  39576. name: "Winter Coat",
  39577. image: {
  39578. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39579. extra: 1807/1775,
  39580. bottom: 69/1876
  39581. }
  39582. },
  39583. },
  39584. [
  39585. {
  39586. name: "Normal",
  39587. height: math.unit(16, "feet"),
  39588. default: true
  39589. },
  39590. {
  39591. name: "Chicago Size",
  39592. height: math.unit(560, "feet")
  39593. },
  39594. ]
  39595. ))
  39596. characterMakers.push(() => makeCharacter(
  39597. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39598. {
  39599. front: {
  39600. height: math.unit(11 + 6/12, "feet"),
  39601. weight: math.unit(1366, "lb"),
  39602. name: "Front",
  39603. image: {
  39604. source: "./media/characters/lexor/front.svg",
  39605. extra: 1560/1481,
  39606. bottom: 211/1771
  39607. }
  39608. },
  39609. back: {
  39610. height: math.unit(11 + 6/12, "feet"),
  39611. weight: math.unit(1366, "lb"),
  39612. name: "Back",
  39613. image: {
  39614. source: "./media/characters/lexor/back.svg",
  39615. extra: 1614/1533,
  39616. bottom: 76/1690
  39617. }
  39618. },
  39619. maw: {
  39620. height: math.unit(3, "feet"),
  39621. name: "Maw",
  39622. image: {
  39623. source: "./media/characters/lexor/maw.svg"
  39624. }
  39625. },
  39626. dick: {
  39627. height: math.unit(2.59, "feet"),
  39628. name: "Dick",
  39629. image: {
  39630. source: "./media/characters/lexor/dick.svg"
  39631. }
  39632. },
  39633. },
  39634. [
  39635. {
  39636. name: "Normal",
  39637. height: math.unit(11 + 6/12, "feet"),
  39638. default: true
  39639. },
  39640. ]
  39641. ))
  39642. characterMakers.push(() => makeCharacter(
  39643. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39644. {
  39645. front: {
  39646. height: math.unit(5 + 8/12, "feet"),
  39647. name: "Front",
  39648. image: {
  39649. source: "./media/characters/magnum/front.svg",
  39650. extra: 942/855,
  39651. bottom: 26/968
  39652. }
  39653. },
  39654. },
  39655. [
  39656. {
  39657. name: "Normal",
  39658. height: math.unit(5 + 8/12, "feet"),
  39659. default: true
  39660. },
  39661. ]
  39662. ))
  39663. characterMakers.push(() => makeCharacter(
  39664. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39665. {
  39666. front: {
  39667. height: math.unit(18 + 4/12, "feet"),
  39668. weight: math.unit(1500, "kg"),
  39669. name: "Front",
  39670. image: {
  39671. source: "./media/characters/solas-sharpsman/front.svg",
  39672. extra: 1698/1589,
  39673. bottom: 0/1698
  39674. }
  39675. },
  39676. },
  39677. [
  39678. {
  39679. name: "Normal",
  39680. height: math.unit(18 + 4/12, "feet"),
  39681. default: true
  39682. },
  39683. ]
  39684. ))
  39685. characterMakers.push(() => makeCharacter(
  39686. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39687. {
  39688. front: {
  39689. height: math.unit(5 + 5/12, "feet"),
  39690. weight: math.unit(180, "lb"),
  39691. name: "Front",
  39692. image: {
  39693. source: "./media/characters/october/front.svg",
  39694. extra: 1800/1650,
  39695. bottom: 0/1800
  39696. }
  39697. },
  39698. frontNsfw: {
  39699. height: math.unit(5 + 5/12, "feet"),
  39700. weight: math.unit(180, "lb"),
  39701. name: "Front (NSFW)",
  39702. image: {
  39703. source: "./media/characters/october/front-nsfw.svg",
  39704. extra: 1392/1307,
  39705. bottom: 42/1434
  39706. }
  39707. },
  39708. },
  39709. [
  39710. {
  39711. name: "Normal",
  39712. height: math.unit(5 + 5/12, "feet"),
  39713. default: true
  39714. },
  39715. ]
  39716. ))
  39717. characterMakers.push(() => makeCharacter(
  39718. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39719. {
  39720. front: {
  39721. height: math.unit(8 + 6/12, "feet"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/essynkardi/front.svg",
  39725. extra: 1541/1457,
  39726. bottom: 47/1588
  39727. }
  39728. },
  39729. },
  39730. [
  39731. {
  39732. name: "Normal",
  39733. height: math.unit(8 + 6/12, "feet"),
  39734. default: true
  39735. },
  39736. ]
  39737. ))
  39738. characterMakers.push(() => makeCharacter(
  39739. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39740. {
  39741. front: {
  39742. height: math.unit(6 + 6/12, "feet"),
  39743. weight: math.unit(7, "lb"),
  39744. name: "Front",
  39745. image: {
  39746. source: "./media/characters/icky/front.svg",
  39747. extra: 813/782,
  39748. bottom: 66/879
  39749. }
  39750. },
  39751. back: {
  39752. height: math.unit(6 + 6/12, "feet"),
  39753. weight: math.unit(7, "lb"),
  39754. name: "Back",
  39755. image: {
  39756. source: "./media/characters/icky/back.svg",
  39757. extra: 754/735,
  39758. bottom: 56/810
  39759. }
  39760. },
  39761. },
  39762. [
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(6 + 6/12, "feet"),
  39766. default: true
  39767. },
  39768. ]
  39769. ))
  39770. characterMakers.push(() => makeCharacter(
  39771. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39772. {
  39773. front: {
  39774. height: math.unit(15, "feet"),
  39775. name: "Front",
  39776. image: {
  39777. source: "./media/characters/rojas/front.svg",
  39778. extra: 1462/1408,
  39779. bottom: 95/1557
  39780. }
  39781. },
  39782. back: {
  39783. height: math.unit(15, "feet"),
  39784. name: "Back",
  39785. image: {
  39786. source: "./media/characters/rojas/back.svg",
  39787. extra: 1023/954,
  39788. bottom: 28/1051
  39789. }
  39790. },
  39791. },
  39792. [
  39793. {
  39794. name: "Normal",
  39795. height: math.unit(15, "feet"),
  39796. default: true
  39797. },
  39798. ]
  39799. ))
  39800. characterMakers.push(() => makeCharacter(
  39801. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39802. {
  39803. frontHuman: {
  39804. height: math.unit(5 + 7/12, "feet"),
  39805. name: "Front (Human)",
  39806. image: {
  39807. source: "./media/characters/alek-dryagan/front-human.svg",
  39808. extra: 1687/1667,
  39809. bottom: 69/1756
  39810. }
  39811. },
  39812. backHuman: {
  39813. height: math.unit(5 + 7/12, "feet"),
  39814. name: "Back (Human)",
  39815. image: {
  39816. source: "./media/characters/alek-dryagan/back-human.svg",
  39817. extra: 1670/1649,
  39818. bottom: 65/1735
  39819. }
  39820. },
  39821. frontDemi: {
  39822. height: math.unit(65, "feet"),
  39823. name: "Front (Demi)",
  39824. image: {
  39825. source: "./media/characters/alek-dryagan/front-demi.svg",
  39826. extra: 1669/1642,
  39827. bottom: 49/1718
  39828. }
  39829. },
  39830. backDemi: {
  39831. height: math.unit(65, "feet"),
  39832. name: "Back (Demi)",
  39833. image: {
  39834. source: "./media/characters/alek-dryagan/back-demi.svg",
  39835. extra: 1658/1637,
  39836. bottom: 40/1698
  39837. }
  39838. },
  39839. mawHuman: {
  39840. height: math.unit(0.3, "feet"),
  39841. name: "Maw (Human)",
  39842. image: {
  39843. source: "./media/characters/alek-dryagan/maw-human.svg"
  39844. }
  39845. },
  39846. mawDemi: {
  39847. height: math.unit(3.8, "feet"),
  39848. name: "Maw (Demi)",
  39849. image: {
  39850. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39851. }
  39852. },
  39853. },
  39854. [
  39855. {
  39856. name: "Normal",
  39857. height: math.unit(5 + 7/12, "feet"),
  39858. default: true
  39859. },
  39860. ]
  39861. ))
  39862. characterMakers.push(() => makeCharacter(
  39863. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39864. {
  39865. frontHuman: {
  39866. height: math.unit(5 + 2/12, "feet"),
  39867. name: "Front (Human)",
  39868. image: {
  39869. source: "./media/characters/gen/front-human.svg",
  39870. extra: 1627/1538,
  39871. bottom: 71/1698
  39872. }
  39873. },
  39874. backHuman: {
  39875. height: math.unit(5 + 2/12, "feet"),
  39876. name: "Back (Human)",
  39877. image: {
  39878. source: "./media/characters/gen/back-human.svg",
  39879. extra: 1638/1548,
  39880. bottom: 69/1707
  39881. }
  39882. },
  39883. frontDemi: {
  39884. height: math.unit(5 + 2/12, "feet"),
  39885. name: "Front (Demi)",
  39886. image: {
  39887. source: "./media/characters/gen/front-demi.svg",
  39888. extra: 1627/1538,
  39889. bottom: 71/1698
  39890. }
  39891. },
  39892. backDemi: {
  39893. height: math.unit(5 + 2/12, "feet"),
  39894. name: "Back (Demi)",
  39895. image: {
  39896. source: "./media/characters/gen/back-demi.svg",
  39897. extra: 1638/1548,
  39898. bottom: 69/1707
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(5 + 2/12, "feet"),
  39906. default: true
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39912. {
  39913. frontImp: {
  39914. height: math.unit(1 + 11/12, "feet"),
  39915. name: "Front (Imp)",
  39916. image: {
  39917. source: "./media/characters/max-kobold/front-imp.svg",
  39918. extra: 1238/1134,
  39919. bottom: 81/1319
  39920. }
  39921. },
  39922. backImp: {
  39923. height: math.unit(1 + 11/12, "feet"),
  39924. name: "Back (Imp)",
  39925. image: {
  39926. source: "./media/characters/max-kobold/back-imp.svg",
  39927. extra: 1334/1175,
  39928. bottom: 34/1368
  39929. }
  39930. },
  39931. frontDemi: {
  39932. height: math.unit(5 + 9/12, "feet"),
  39933. name: "Front (Demi)",
  39934. image: {
  39935. source: "./media/characters/max-kobold/front-demi.svg",
  39936. extra: 1715/1685,
  39937. bottom: 54/1769
  39938. }
  39939. },
  39940. backDemi: {
  39941. height: math.unit(5 + 9/12, "feet"),
  39942. name: "Back (Demi)",
  39943. image: {
  39944. source: "./media/characters/max-kobold/back-demi.svg",
  39945. extra: 1752/1729,
  39946. bottom: 41/1793
  39947. }
  39948. },
  39949. handImp: {
  39950. height: math.unit(0.45, "feet"),
  39951. name: "Hand (Imp)",
  39952. image: {
  39953. source: "./media/characters/max-kobold/hand.svg"
  39954. }
  39955. },
  39956. pawImp: {
  39957. height: math.unit(0.46, "feet"),
  39958. name: "Paw (Imp)",
  39959. image: {
  39960. source: "./media/characters/max-kobold/paw.svg"
  39961. }
  39962. },
  39963. handDemi: {
  39964. height: math.unit(0.80, "feet"),
  39965. name: "Hand (Demi)",
  39966. image: {
  39967. source: "./media/characters/max-kobold/hand.svg"
  39968. }
  39969. },
  39970. pawDemi: {
  39971. height: math.unit(1.1, "feet"),
  39972. name: "Paw (Demi)",
  39973. image: {
  39974. source: "./media/characters/max-kobold/paw.svg"
  39975. }
  39976. },
  39977. headImp: {
  39978. height: math.unit(1.33, "feet"),
  39979. name: "Head (Imp)",
  39980. image: {
  39981. source: "./media/characters/max-kobold/head-imp.svg"
  39982. }
  39983. },
  39984. mawImp: {
  39985. height: math.unit(0.75, "feet"),
  39986. name: "Maw (Imp)",
  39987. image: {
  39988. source: "./media/characters/max-kobold/maw-imp.svg"
  39989. }
  39990. },
  39991. mawDemi: {
  39992. height: math.unit(0.42, "feet"),
  39993. name: "Maw (Demi)",
  39994. image: {
  39995. source: "./media/characters/max-kobold/maw-demi.svg"
  39996. }
  39997. },
  39998. },
  39999. [
  40000. {
  40001. name: "Normal",
  40002. height: math.unit(1 + 11/12, "feet"),
  40003. default: true
  40004. },
  40005. ]
  40006. ))
  40007. characterMakers.push(() => makeCharacter(
  40008. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  40009. {
  40010. front: {
  40011. height: math.unit(7 + 5/12, "feet"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/carbon/front.svg",
  40015. extra: 1754/1689,
  40016. bottom: 65/1819
  40017. }
  40018. },
  40019. back: {
  40020. height: math.unit(7 + 5/12, "feet"),
  40021. name: "Back",
  40022. image: {
  40023. source: "./media/characters/carbon/back.svg",
  40024. extra: 1762/1695,
  40025. bottom: 24/1786
  40026. }
  40027. },
  40028. frontGigantamax: {
  40029. height: math.unit(150, "feet"),
  40030. name: "Front (Gigantamax)",
  40031. image: {
  40032. source: "./media/characters/carbon/front-gigantamax.svg",
  40033. extra: 1826/1669,
  40034. bottom: 59/1885
  40035. }
  40036. },
  40037. backGigantamax: {
  40038. height: math.unit(150, "feet"),
  40039. name: "Back (Gigantamax)",
  40040. image: {
  40041. source: "./media/characters/carbon/back-gigantamax.svg",
  40042. extra: 1796/1653,
  40043. bottom: 53/1849
  40044. }
  40045. },
  40046. maw: {
  40047. height: math.unit(0.48, "feet"),
  40048. name: "Maw",
  40049. image: {
  40050. source: "./media/characters/carbon/maw.svg"
  40051. }
  40052. },
  40053. mawGigantamax: {
  40054. height: math.unit(7.5, "feet"),
  40055. name: "Maw (Gigantamax)",
  40056. image: {
  40057. source: "./media/characters/carbon/maw-gigantamax.svg"
  40058. }
  40059. },
  40060. },
  40061. [
  40062. {
  40063. name: "Normal",
  40064. height: math.unit(7 + 5/12, "feet"),
  40065. default: true
  40066. },
  40067. ]
  40068. ))
  40069. characterMakers.push(() => makeCharacter(
  40070. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40071. {
  40072. front: {
  40073. height: math.unit(6, "feet"),
  40074. name: "Front",
  40075. image: {
  40076. source: "./media/characters/maverick/front.svg",
  40077. extra: 1672/1661,
  40078. bottom: 85/1757
  40079. }
  40080. },
  40081. back: {
  40082. height: math.unit(6, "feet"),
  40083. name: "Back",
  40084. image: {
  40085. source: "./media/characters/maverick/back.svg",
  40086. extra: 1642/1631,
  40087. bottom: 38/1680
  40088. }
  40089. },
  40090. },
  40091. [
  40092. {
  40093. name: "Normal",
  40094. height: math.unit(6, "feet"),
  40095. default: true
  40096. },
  40097. ]
  40098. ))
  40099. characterMakers.push(() => makeCharacter(
  40100. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40101. {
  40102. front: {
  40103. height: math.unit(15, "feet"),
  40104. weight: math.unit(615, "lb"),
  40105. name: "Front",
  40106. image: {
  40107. source: "./media/characters/grockle/front.svg",
  40108. extra: 1535/1427,
  40109. bottom: 56/1591
  40110. }
  40111. },
  40112. },
  40113. [
  40114. {
  40115. name: "Normal",
  40116. height: math.unit(15, "feet"),
  40117. default: true
  40118. },
  40119. {
  40120. name: "Large",
  40121. height: math.unit(150, "feet")
  40122. },
  40123. {
  40124. name: "Macro",
  40125. height: math.unit(1876, "feet")
  40126. },
  40127. {
  40128. name: "Mega Macro",
  40129. height: math.unit(121940, "feet")
  40130. },
  40131. {
  40132. name: "Giga Macro",
  40133. height: math.unit(750, "km")
  40134. },
  40135. {
  40136. name: "Tera Macro",
  40137. height: math.unit(750000, "km")
  40138. },
  40139. {
  40140. name: "Galactic",
  40141. height: math.unit(1.4e5, "km")
  40142. },
  40143. {
  40144. name: "Godlike",
  40145. height: math.unit(9.8e280, "galaxies")
  40146. },
  40147. ]
  40148. ))
  40149. characterMakers.push(() => makeCharacter(
  40150. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40151. {
  40152. front: {
  40153. height: math.unit(11, "meters"),
  40154. weight: math.unit(20, "tonnes"),
  40155. name: "Front",
  40156. image: {
  40157. source: "./media/characters/alistair/front.svg",
  40158. extra: 1265/1009,
  40159. bottom: 93/1358
  40160. }
  40161. },
  40162. },
  40163. [
  40164. {
  40165. name: "Normal",
  40166. height: math.unit(11, "meters"),
  40167. default: true
  40168. },
  40169. ]
  40170. ))
  40171. characterMakers.push(() => makeCharacter(
  40172. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40173. {
  40174. front: {
  40175. height: math.unit(5 + 8/12, "feet"),
  40176. name: "Front",
  40177. image: {
  40178. source: "./media/characters/haruka/front.svg",
  40179. extra: 2012/1952,
  40180. bottom: 0/2012
  40181. }
  40182. },
  40183. },
  40184. [
  40185. {
  40186. name: "Normal",
  40187. height: math.unit(5 + 8/12, "feet"),
  40188. default: true
  40189. },
  40190. ]
  40191. ))
  40192. characterMakers.push(() => makeCharacter(
  40193. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40194. {
  40195. back: {
  40196. height: math.unit(9, "feet"),
  40197. name: "Back",
  40198. image: {
  40199. source: "./media/characters/vivian-sylveon/back.svg",
  40200. extra: 1853/1714,
  40201. bottom: 0/1853
  40202. }
  40203. },
  40204. hyper: {
  40205. height: math.unit(5.58, "feet"),
  40206. name: "Hyper",
  40207. preyCapacity: math.unit(2.80616218797, "m^3"),
  40208. image: {
  40209. source: "./media/characters/vivian-sylveon/hyper.svg",
  40210. extra: 999/676,
  40211. bottom: 697/1696
  40212. },
  40213. },
  40214. paw: {
  40215. height: math.unit(1.8, "feet"),
  40216. name: "Paw",
  40217. image: {
  40218. source: "./media/characters/vivian-sylveon/paw.svg"
  40219. }
  40220. },
  40221. danger: {
  40222. height: math.unit(7.5, "feet"),
  40223. name: "DANGER",
  40224. image: {
  40225. source: "./media/characters/vivian-sylveon/danger.svg"
  40226. }
  40227. },
  40228. },
  40229. [
  40230. {
  40231. name: "Normal",
  40232. height: math.unit(9, "feet"),
  40233. default: true
  40234. },
  40235. {
  40236. name: "Macro",
  40237. height: math.unit(500, "feet")
  40238. },
  40239. {
  40240. name: "Megamacro",
  40241. height: math.unit(600, "miles")
  40242. },
  40243. {
  40244. name: "Gigamacro",
  40245. height: math.unit(30000, "miles")
  40246. },
  40247. ]
  40248. ))
  40249. characterMakers.push(() => makeCharacter(
  40250. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40251. {
  40252. anthro: {
  40253. height: math.unit(5 + 10/12, "feet"),
  40254. weight: math.unit(100, "lb"),
  40255. name: "Anthro",
  40256. image: {
  40257. source: "./media/characters/daiki/anthro.svg",
  40258. extra: 1115/1027,
  40259. bottom: 69/1184
  40260. }
  40261. },
  40262. feral: {
  40263. height: math.unit(200, "feet"),
  40264. name: "Feral",
  40265. image: {
  40266. source: "./media/characters/daiki/feral.svg",
  40267. extra: 1256/313,
  40268. bottom: 39/1295
  40269. }
  40270. },
  40271. feralHead: {
  40272. height: math.unit(171, "feet"),
  40273. name: "Feral Head",
  40274. image: {
  40275. source: "./media/characters/daiki/feral-head.svg"
  40276. }
  40277. },
  40278. manaDragon: {
  40279. height: math.unit(170, "meters"),
  40280. name: "Mana-dragon",
  40281. image: {
  40282. source: "./media/characters/daiki/mana-dragon.svg",
  40283. extra: 763/420,
  40284. bottom: 97/860
  40285. }
  40286. },
  40287. },
  40288. [
  40289. {
  40290. name: "Normal",
  40291. height: math.unit(5 + 10/12, "feet"),
  40292. default: true
  40293. },
  40294. ]
  40295. ))
  40296. characterMakers.push(() => makeCharacter(
  40297. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40298. {
  40299. fullyEquippedFront: {
  40300. height: math.unit(3 + 1/12, "feet"),
  40301. weight: math.unit(24, "lb"),
  40302. name: "Fully Equipped (Front)",
  40303. image: {
  40304. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40305. extra: 687/605,
  40306. bottom: 18/705
  40307. }
  40308. },
  40309. fullyEquippedBack: {
  40310. height: math.unit(3 + 1/12, "feet"),
  40311. weight: math.unit(24, "lb"),
  40312. name: "Fully Equipped (Back)",
  40313. image: {
  40314. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40315. extra: 689/590,
  40316. bottom: 18/707
  40317. }
  40318. },
  40319. dailyWear: {
  40320. height: math.unit(3 + 1/12, "feet"),
  40321. weight: math.unit(24, "lb"),
  40322. name: "Daily Wear",
  40323. image: {
  40324. source: "./media/characters/tea-spot/daily-wear.svg",
  40325. extra: 701/620,
  40326. bottom: 21/722
  40327. }
  40328. },
  40329. maidWork: {
  40330. height: math.unit(3 + 1/12, "feet"),
  40331. weight: math.unit(24, "lb"),
  40332. name: "Maid Work",
  40333. image: {
  40334. source: "./media/characters/tea-spot/maid-work.svg",
  40335. extra: 693/609,
  40336. bottom: 15/708
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(3 + 1/12, "feet"),
  40344. default: true
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(175, "cm"),
  40353. weight: math.unit(75, "kg"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/chee/front.svg",
  40357. extra: 1796/1740,
  40358. bottom: 40/1836
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Micro-Micro",
  40365. height: math.unit(1, "nm")
  40366. },
  40367. {
  40368. name: "Micro-erst",
  40369. height: math.unit(1, "micrometer")
  40370. },
  40371. {
  40372. name: "Micro-er",
  40373. height: math.unit(1, "cm")
  40374. },
  40375. {
  40376. name: "Normal",
  40377. height: math.unit(175, "cm"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Macro",
  40382. height: math.unit(100, "m")
  40383. },
  40384. {
  40385. name: "Macro-er",
  40386. height: math.unit(1, "km")
  40387. },
  40388. {
  40389. name: "Macro-erst",
  40390. height: math.unit(10, "km")
  40391. },
  40392. {
  40393. name: "Macro-Macro",
  40394. height: math.unit(100, "km")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(11 + 9/12, "feet"),
  40403. weight: math.unit(935, "lb"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/kingsley/front.svg",
  40407. extra: 1803/1674,
  40408. bottom: 127/1930
  40409. }
  40410. },
  40411. frontNude: {
  40412. height: math.unit(11 + 9/12, "feet"),
  40413. weight: math.unit(935, "lb"),
  40414. name: "Front (Nude)",
  40415. image: {
  40416. source: "./media/characters/kingsley/front-nude.svg",
  40417. extra: 1803/1674,
  40418. bottom: 127/1930
  40419. }
  40420. },
  40421. },
  40422. [
  40423. {
  40424. name: "Normal",
  40425. height: math.unit(11 + 9/12, "feet"),
  40426. default: true
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40432. {
  40433. side: {
  40434. height: math.unit(9, "feet"),
  40435. name: "Side",
  40436. image: {
  40437. source: "./media/characters/rymel/side.svg",
  40438. extra: 792/469,
  40439. bottom: 121/913
  40440. }
  40441. },
  40442. maw: {
  40443. height: math.unit(2.4, "meters"),
  40444. name: "Maw",
  40445. image: {
  40446. source: "./media/characters/rymel/maw.svg"
  40447. }
  40448. },
  40449. },
  40450. [
  40451. {
  40452. name: "House Drake",
  40453. height: math.unit(2, "feet")
  40454. },
  40455. {
  40456. name: "Reduced",
  40457. height: math.unit(4.5, "feet")
  40458. },
  40459. {
  40460. name: "Normal",
  40461. height: math.unit(9, "feet"),
  40462. default: true
  40463. },
  40464. ]
  40465. ))
  40466. characterMakers.push(() => makeCharacter(
  40467. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40468. {
  40469. front: {
  40470. height: math.unit(1.74, "meters"),
  40471. weight: math.unit(55, "kg"),
  40472. name: "Front",
  40473. image: {
  40474. source: "./media/characters/rubus/front.svg",
  40475. extra: 1894/1742,
  40476. bottom: 44/1938
  40477. }
  40478. },
  40479. },
  40480. [
  40481. {
  40482. name: "Normal",
  40483. height: math.unit(1.74, "meters"),
  40484. default: true
  40485. },
  40486. ]
  40487. ))
  40488. characterMakers.push(() => makeCharacter(
  40489. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40490. {
  40491. front: {
  40492. height: math.unit(5 + 2/12, "feet"),
  40493. weight: math.unit(112, "lb"),
  40494. name: "Front",
  40495. image: {
  40496. source: "./media/characters/cassie-kingston/front.svg",
  40497. extra: 1438/1390,
  40498. bottom: 47/1485
  40499. }
  40500. },
  40501. },
  40502. [
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(5 + 2/12, "feet"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Macro",
  40510. height: math.unit(128, "feet")
  40511. },
  40512. {
  40513. name: "Megamacro",
  40514. height: math.unit(2.56, "miles")
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(7, "feet"),
  40523. name: "Front",
  40524. image: {
  40525. source: "./media/characters/fox/front.svg",
  40526. extra: 1798/1703,
  40527. bottom: 55/1853
  40528. }
  40529. },
  40530. back: {
  40531. height: math.unit(7, "feet"),
  40532. name: "Back",
  40533. image: {
  40534. source: "./media/characters/fox/back.svg",
  40535. extra: 1748/1649,
  40536. bottom: 32/1780
  40537. }
  40538. },
  40539. head: {
  40540. height: math.unit(1.95, "feet"),
  40541. name: "Head",
  40542. image: {
  40543. source: "./media/characters/fox/head.svg"
  40544. }
  40545. },
  40546. dick: {
  40547. height: math.unit(1.33, "feet"),
  40548. name: "Dick",
  40549. image: {
  40550. source: "./media/characters/fox/dick.svg"
  40551. }
  40552. },
  40553. foot: {
  40554. height: math.unit(1, "feet"),
  40555. name: "Foot",
  40556. image: {
  40557. source: "./media/characters/fox/foot.svg"
  40558. }
  40559. },
  40560. paw: {
  40561. height: math.unit(0.92, "feet"),
  40562. name: "Paw",
  40563. image: {
  40564. source: "./media/characters/fox/paw.svg"
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Small",
  40571. height: math.unit(3, "inches")
  40572. },
  40573. {
  40574. name: "\"Realistic\"",
  40575. height: math.unit(7, "feet")
  40576. },
  40577. {
  40578. name: "Normal",
  40579. height: math.unit(150, "feet"),
  40580. default: true
  40581. },
  40582. {
  40583. name: "BIG",
  40584. height: math.unit(1200, "feet")
  40585. },
  40586. {
  40587. name: "👀",
  40588. height: math.unit(5, "miles")
  40589. },
  40590. {
  40591. name: "👀👀👀",
  40592. height: math.unit(64, "miles")
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40598. {
  40599. front: {
  40600. height: math.unit(625, "feet"),
  40601. name: "Front",
  40602. image: {
  40603. source: "./media/characters/asonja-rossa/front.svg",
  40604. extra: 1833/1686,
  40605. bottom: 24/1857
  40606. }
  40607. },
  40608. back: {
  40609. height: math.unit(625, "feet"),
  40610. name: "Back",
  40611. image: {
  40612. source: "./media/characters/asonja-rossa/back.svg",
  40613. extra: 1852/1753,
  40614. bottom: 26/1878
  40615. }
  40616. },
  40617. },
  40618. [
  40619. {
  40620. name: "Macro",
  40621. height: math.unit(625, "feet"),
  40622. default: true
  40623. },
  40624. ]
  40625. ))
  40626. characterMakers.push(() => makeCharacter(
  40627. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40628. {
  40629. side: {
  40630. height: math.unit(8, "feet"),
  40631. name: "Side",
  40632. image: {
  40633. source: "./media/characters/rezukii/side.svg",
  40634. extra: 979/542,
  40635. bottom: 87/1066
  40636. }
  40637. },
  40638. sitting: {
  40639. height: math.unit(14.6, "feet"),
  40640. name: "Sitting",
  40641. image: {
  40642. source: "./media/characters/rezukii/sitting.svg",
  40643. extra: 1023/813,
  40644. bottom: 45/1068
  40645. }
  40646. },
  40647. },
  40648. [
  40649. {
  40650. name: "Tiny",
  40651. height: math.unit(2, "feet")
  40652. },
  40653. {
  40654. name: "Smol",
  40655. height: math.unit(4, "feet")
  40656. },
  40657. {
  40658. name: "Normal",
  40659. height: math.unit(8, "feet"),
  40660. default: true
  40661. },
  40662. {
  40663. name: "Big",
  40664. height: math.unit(12, "feet")
  40665. },
  40666. {
  40667. name: "Macro",
  40668. height: math.unit(30, "feet")
  40669. },
  40670. ]
  40671. ))
  40672. characterMakers.push(() => makeCharacter(
  40673. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40674. {
  40675. front: {
  40676. height: math.unit(14, "feet"),
  40677. weight: math.unit(9.5, "tonnes"),
  40678. name: "Front",
  40679. image: {
  40680. source: "./media/characters/dawnheart/front.svg",
  40681. extra: 2792/2675,
  40682. bottom: 64/2856
  40683. }
  40684. },
  40685. },
  40686. [
  40687. {
  40688. name: "Normal",
  40689. height: math.unit(14, "feet"),
  40690. default: true
  40691. },
  40692. ]
  40693. ))
  40694. characterMakers.push(() => makeCharacter(
  40695. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40696. {
  40697. front: {
  40698. height: math.unit(1.7, "m"),
  40699. name: "Front",
  40700. image: {
  40701. source: "./media/characters/gladi/front.svg",
  40702. extra: 1460/1362,
  40703. bottom: 19/1479
  40704. }
  40705. },
  40706. back: {
  40707. height: math.unit(1.7, "m"),
  40708. name: "Back",
  40709. image: {
  40710. source: "./media/characters/gladi/back.svg",
  40711. extra: 1459/1357,
  40712. bottom: 12/1471
  40713. }
  40714. },
  40715. feral: {
  40716. height: math.unit(2.05, "m"),
  40717. name: "Feral",
  40718. image: {
  40719. source: "./media/characters/gladi/feral.svg",
  40720. extra: 821/557,
  40721. bottom: 91/912
  40722. }
  40723. },
  40724. },
  40725. [
  40726. {
  40727. name: "Shortest",
  40728. height: math.unit(70, "cm")
  40729. },
  40730. {
  40731. name: "Normal",
  40732. height: math.unit(1.7, "m")
  40733. },
  40734. {
  40735. name: "Macro",
  40736. height: math.unit(10, "m"),
  40737. default: true
  40738. },
  40739. {
  40740. name: "Tallest",
  40741. height: math.unit(200, "m")
  40742. },
  40743. ]
  40744. ))
  40745. characterMakers.push(() => makeCharacter(
  40746. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40747. {
  40748. front: {
  40749. height: math.unit(5 + 7/12, "feet"),
  40750. weight: math.unit(2, "tons"),
  40751. name: "Front",
  40752. image: {
  40753. source: "./media/characters/erdno/front.svg",
  40754. extra: 1234/1129,
  40755. bottom: 35/1269
  40756. }
  40757. },
  40758. angled: {
  40759. height: math.unit(5 + 7/12, "feet"),
  40760. weight: math.unit(2, "tons"),
  40761. name: "Angled",
  40762. image: {
  40763. source: "./media/characters/erdno/angled.svg",
  40764. extra: 1185/1139,
  40765. bottom: 36/1221
  40766. }
  40767. },
  40768. side: {
  40769. height: math.unit(5 + 7/12, "feet"),
  40770. weight: math.unit(2, "tons"),
  40771. name: "Side",
  40772. image: {
  40773. source: "./media/characters/erdno/side.svg",
  40774. extra: 1191/1144,
  40775. bottom: 40/1231
  40776. }
  40777. },
  40778. back: {
  40779. height: math.unit(5 + 7/12, "feet"),
  40780. weight: math.unit(2, "tons"),
  40781. name: "Back",
  40782. image: {
  40783. source: "./media/characters/erdno/back.svg",
  40784. extra: 1202/1146,
  40785. bottom: 17/1219
  40786. }
  40787. },
  40788. frontNsfw: {
  40789. height: math.unit(5 + 7/12, "feet"),
  40790. weight: math.unit(2, "tons"),
  40791. name: "Front (NSFW)",
  40792. image: {
  40793. source: "./media/characters/erdno/front-nsfw.svg",
  40794. extra: 1234/1129,
  40795. bottom: 35/1269
  40796. }
  40797. },
  40798. angledNsfw: {
  40799. height: math.unit(5 + 7/12, "feet"),
  40800. weight: math.unit(2, "tons"),
  40801. name: "Angled (NSFW)",
  40802. image: {
  40803. source: "./media/characters/erdno/angled-nsfw.svg",
  40804. extra: 1185/1139,
  40805. bottom: 36/1221
  40806. }
  40807. },
  40808. sideNsfw: {
  40809. height: math.unit(5 + 7/12, "feet"),
  40810. weight: math.unit(2, "tons"),
  40811. name: "Side (NSFW)",
  40812. image: {
  40813. source: "./media/characters/erdno/side-nsfw.svg",
  40814. extra: 1191/1144,
  40815. bottom: 40/1231
  40816. }
  40817. },
  40818. backNsfw: {
  40819. height: math.unit(5 + 7/12, "feet"),
  40820. weight: math.unit(2, "tons"),
  40821. name: "Back (NSFW)",
  40822. image: {
  40823. source: "./media/characters/erdno/back-nsfw.svg",
  40824. extra: 1202/1146,
  40825. bottom: 17/1219
  40826. }
  40827. },
  40828. frontHyper: {
  40829. height: math.unit(5 + 7/12, "feet"),
  40830. weight: math.unit(2, "tons"),
  40831. name: "Front (Hyper)",
  40832. image: {
  40833. source: "./media/characters/erdno/front-hyper.svg",
  40834. extra: 1298/1136,
  40835. bottom: 35/1333
  40836. }
  40837. },
  40838. },
  40839. [
  40840. {
  40841. name: "Normal",
  40842. height: math.unit(5 + 7/12, "feet"),
  40843. default: true
  40844. },
  40845. {
  40846. name: "Big",
  40847. height: math.unit(5.7, "meters")
  40848. },
  40849. {
  40850. name: "Macro",
  40851. height: math.unit(5.7, "kilometers")
  40852. },
  40853. {
  40854. name: "Megamacro",
  40855. height: math.unit(5.7, "earths")
  40856. },
  40857. ]
  40858. ))
  40859. characterMakers.push(() => makeCharacter(
  40860. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40861. {
  40862. front: {
  40863. height: math.unit(5 + 10/12, "feet"),
  40864. weight: math.unit(150, "lb"),
  40865. name: "Front",
  40866. image: {
  40867. source: "./media/characters/jamie/front.svg",
  40868. extra: 1908/1768,
  40869. bottom: 19/1927
  40870. }
  40871. },
  40872. },
  40873. [
  40874. {
  40875. name: "Minimum",
  40876. height: math.unit(2, "cm")
  40877. },
  40878. {
  40879. name: "Micro",
  40880. height: math.unit(3, "inches")
  40881. },
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(5 + 10/12, "feet"),
  40885. default: true
  40886. },
  40887. {
  40888. name: "Macro",
  40889. height: math.unit(150, "feet")
  40890. },
  40891. {
  40892. name: "Megamacro",
  40893. height: math.unit(10000, "m")
  40894. },
  40895. ]
  40896. ))
  40897. characterMakers.push(() => makeCharacter(
  40898. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40899. {
  40900. front: {
  40901. height: math.unit(2, "meters"),
  40902. weight: math.unit(100, "kg"),
  40903. name: "Front",
  40904. image: {
  40905. source: "./media/characters/shiron/front.svg",
  40906. extra: 2103/1985,
  40907. bottom: 98/2201
  40908. }
  40909. },
  40910. back: {
  40911. height: math.unit(2, "meters"),
  40912. weight: math.unit(100, "kg"),
  40913. name: "Back",
  40914. image: {
  40915. source: "./media/characters/shiron/back.svg",
  40916. extra: 2110/2015,
  40917. bottom: 89/2199
  40918. }
  40919. },
  40920. hand: {
  40921. height: math.unit(0.96, "feet"),
  40922. name: "Hand",
  40923. image: {
  40924. source: "./media/characters/shiron/hand.svg"
  40925. }
  40926. },
  40927. foot: {
  40928. height: math.unit(1.464, "feet"),
  40929. name: "Foot",
  40930. image: {
  40931. source: "./media/characters/shiron/foot.svg"
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Normal",
  40938. height: math.unit(2, "meters")
  40939. },
  40940. {
  40941. name: "Macro",
  40942. height: math.unit(500, "meters"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Megamacro",
  40947. height: math.unit(20, "km")
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40953. {
  40954. front: {
  40955. height: math.unit(6, "feet"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/sam/front.svg",
  40959. extra: 849/826,
  40960. bottom: 19/868
  40961. }
  40962. },
  40963. },
  40964. [
  40965. {
  40966. name: "Normal",
  40967. height: math.unit(6, "feet"),
  40968. default: true
  40969. },
  40970. ]
  40971. ))
  40972. characterMakers.push(() => makeCharacter(
  40973. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40974. {
  40975. front: {
  40976. height: math.unit(8 + 4/12, "feet"),
  40977. weight: math.unit(122, "kg"),
  40978. name: "Front",
  40979. image: {
  40980. source: "./media/characters/namori-kurogawa/front.svg",
  40981. extra: 1894/1576,
  40982. bottom: 34/1928
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(8 + 4/12, "feet"),
  40990. default: true
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(9, "feet"),
  40999. weight: math.unit(621, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/unmru/front.svg",
  41003. extra: 1853/1747,
  41004. bottom: 73/1926
  41005. }
  41006. },
  41007. side: {
  41008. height: math.unit(9, "feet"),
  41009. weight: math.unit(621, "lb"),
  41010. name: "Side",
  41011. image: {
  41012. source: "./media/characters/unmru/side.svg",
  41013. extra: 1781/1671,
  41014. bottom: 127/1908
  41015. }
  41016. },
  41017. back: {
  41018. height: math.unit(9, "feet"),
  41019. weight: math.unit(621, "lb"),
  41020. name: "Back",
  41021. image: {
  41022. source: "./media/characters/unmru/back.svg",
  41023. extra: 1894/1765,
  41024. bottom: 75/1969
  41025. }
  41026. },
  41027. dick: {
  41028. height: math.unit(3, "feet"),
  41029. weight: math.unit(35, "lb"),
  41030. name: "Dick",
  41031. image: {
  41032. source: "./media/characters/unmru/dick.svg"
  41033. }
  41034. },
  41035. },
  41036. [
  41037. {
  41038. name: "Normal",
  41039. height: math.unit(9, "feet")
  41040. },
  41041. {
  41042. name: "Natural",
  41043. height: math.unit(27, "feet"),
  41044. default: true
  41045. },
  41046. {
  41047. name: "Giant",
  41048. height: math.unit(90, "feet")
  41049. },
  41050. {
  41051. name: "Kaiju",
  41052. height: math.unit(270, "feet")
  41053. },
  41054. {
  41055. name: "Macro",
  41056. height: math.unit(900, "feet")
  41057. },
  41058. {
  41059. name: "Macro+",
  41060. height: math.unit(2700, "feet")
  41061. },
  41062. {
  41063. name: "Megamacro",
  41064. height: math.unit(9000, "feet")
  41065. },
  41066. {
  41067. name: "City-Crushing",
  41068. height: math.unit(27000, "feet")
  41069. },
  41070. {
  41071. name: "Mountain-Mashing",
  41072. height: math.unit(90000, "feet")
  41073. },
  41074. {
  41075. name: "Earth-Eclipsing",
  41076. height: math.unit(2.7e8, "feet")
  41077. },
  41078. {
  41079. name: "Sol-Swallowing",
  41080. height: math.unit(9e10, "feet")
  41081. },
  41082. {
  41083. name: "Majoris-Munching",
  41084. height: math.unit(2.7e13, "feet")
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41090. {
  41091. front: {
  41092. height: math.unit(1, "inch"),
  41093. name: "Front",
  41094. image: {
  41095. source: "./media/characters/squeaks-mouse/front.svg",
  41096. extra: 352/308,
  41097. bottom: 25/377
  41098. }
  41099. },
  41100. },
  41101. [
  41102. {
  41103. name: "Micro",
  41104. height: math.unit(1, "inch"),
  41105. default: true
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41111. {
  41112. side: {
  41113. height: math.unit(35, "feet"),
  41114. name: "Side",
  41115. image: {
  41116. source: "./media/characters/sayko/side.svg",
  41117. extra: 1697/1021,
  41118. bottom: 82/1779
  41119. }
  41120. },
  41121. head: {
  41122. height: math.unit(16, "feet"),
  41123. name: "Head",
  41124. image: {
  41125. source: "./media/characters/sayko/head.svg"
  41126. }
  41127. },
  41128. forepaw: {
  41129. height: math.unit(7.85, "feet"),
  41130. name: "Forepaw",
  41131. image: {
  41132. source: "./media/characters/sayko/forepaw.svg"
  41133. }
  41134. },
  41135. hindpaw: {
  41136. height: math.unit(8.8, "feet"),
  41137. name: "Hindpaw",
  41138. image: {
  41139. source: "./media/characters/sayko/hindpaw.svg"
  41140. }
  41141. },
  41142. },
  41143. [
  41144. {
  41145. name: "Normal",
  41146. height: math.unit(35, "feet"),
  41147. default: true
  41148. },
  41149. {
  41150. name: "Colossus",
  41151. height: math.unit(100, "meters")
  41152. },
  41153. {
  41154. name: "\"Small\" Deity",
  41155. height: math.unit(1, "km")
  41156. },
  41157. {
  41158. name: "\"Large\" Deity",
  41159. height: math.unit(15, "km")
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(6, "feet"),
  41168. weight: math.unit(250, "lb"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/mukiro/front.svg",
  41172. extra: 1368/1310,
  41173. bottom: 34/1402
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Normal",
  41180. height: math.unit(6, "feet"),
  41181. default: true
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41187. {
  41188. front: {
  41189. height: math.unit(12 + 4/12, "feet"),
  41190. name: "Front",
  41191. image: {
  41192. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41193. extra: 1346/1311,
  41194. bottom: 65/1411
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Base",
  41201. height: math.unit(12 + 4/12, "feet"),
  41202. default: true
  41203. },
  41204. {
  41205. name: "Macro",
  41206. height: math.unit(150, "feet")
  41207. },
  41208. {
  41209. name: "Mega",
  41210. height: math.unit(2, "miles")
  41211. },
  41212. {
  41213. name: "Demi God",
  41214. height: math.unit(4, "AU")
  41215. },
  41216. {
  41217. name: "God Size",
  41218. height: math.unit(1, "universe")
  41219. },
  41220. ]
  41221. ))
  41222. characterMakers.push(() => makeCharacter(
  41223. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41224. {
  41225. front: {
  41226. height: math.unit(3 + 3/12, "feet"),
  41227. weight: math.unit(88, "lb"),
  41228. name: "Front",
  41229. image: {
  41230. source: "./media/characters/trey/front.svg",
  41231. extra: 1815/1509,
  41232. bottom: 60/1875
  41233. }
  41234. },
  41235. },
  41236. [
  41237. {
  41238. name: "Normal",
  41239. height: math.unit(3 + 3/12, "feet"),
  41240. default: true
  41241. },
  41242. ]
  41243. ))
  41244. characterMakers.push(() => makeCharacter(
  41245. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41246. {
  41247. front: {
  41248. height: math.unit(4, "meters"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/adelonda/front.svg",
  41252. extra: 1077/982,
  41253. bottom: 39/1116
  41254. }
  41255. },
  41256. back: {
  41257. height: math.unit(4, "meters"),
  41258. name: "Back",
  41259. image: {
  41260. source: "./media/characters/adelonda/back.svg",
  41261. extra: 1105/1003,
  41262. bottom: 25/1130
  41263. }
  41264. },
  41265. feral: {
  41266. height: math.unit(40/1.5, "meters"),
  41267. name: "Feral",
  41268. image: {
  41269. source: "./media/characters/adelonda/feral.svg",
  41270. extra: 597/271,
  41271. bottom: 387/984
  41272. }
  41273. },
  41274. },
  41275. [
  41276. {
  41277. name: "Normal",
  41278. height: math.unit(4, "meters"),
  41279. default: true
  41280. },
  41281. ]
  41282. ))
  41283. characterMakers.push(() => makeCharacter(
  41284. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41285. {
  41286. front: {
  41287. height: math.unit(8 + 4/12, "feet"),
  41288. weight: math.unit(670, "lb"),
  41289. name: "Front",
  41290. image: {
  41291. source: "./media/characters/acadiel/front.svg",
  41292. extra: 1901/1595,
  41293. bottom: 142/2043
  41294. }
  41295. },
  41296. },
  41297. [
  41298. {
  41299. name: "Normal",
  41300. height: math.unit(8 + 4/12, "feet"),
  41301. default: true
  41302. },
  41303. {
  41304. name: "Macro",
  41305. height: math.unit(200, "feet")
  41306. },
  41307. ]
  41308. ))
  41309. characterMakers.push(() => makeCharacter(
  41310. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41311. {
  41312. front: {
  41313. height: math.unit(6 + 2/12, "feet"),
  41314. weight: math.unit(185, "lb"),
  41315. name: "Front",
  41316. image: {
  41317. source: "./media/characters/kayne-ein/front.svg",
  41318. extra: 1780/1560,
  41319. bottom: 81/1861
  41320. }
  41321. },
  41322. },
  41323. [
  41324. {
  41325. name: "Normal",
  41326. height: math.unit(6 + 2/12, "feet"),
  41327. default: true
  41328. },
  41329. {
  41330. name: "Transformation Stage",
  41331. height: math.unit(15, "feet")
  41332. },
  41333. {
  41334. name: "Macro",
  41335. height: math.unit(150, "feet")
  41336. },
  41337. {
  41338. name: "Earth's Shadow",
  41339. height: math.unit(6200, "miles")
  41340. },
  41341. {
  41342. name: "Universal Demon",
  41343. height: math.unit(28e9, "parsecs")
  41344. },
  41345. {
  41346. name: "Multiverse God",
  41347. height: math.unit(3, "multiverses")
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41353. {
  41354. front: {
  41355. height: math.unit(5 + 5/12, "feet"),
  41356. name: "Front",
  41357. image: {
  41358. source: "./media/characters/fawn/front.svg",
  41359. extra: 1873/1731,
  41360. bottom: 95/1968
  41361. }
  41362. },
  41363. back: {
  41364. height: math.unit(5 + 5/12, "feet"),
  41365. name: "Back",
  41366. image: {
  41367. source: "./media/characters/fawn/back.svg",
  41368. extra: 1813/1700,
  41369. bottom: 14/1827
  41370. }
  41371. },
  41372. hoof: {
  41373. height: math.unit(1.45, "feet"),
  41374. name: "Hoof",
  41375. image: {
  41376. source: "./media/characters/fawn/hoof.svg"
  41377. }
  41378. },
  41379. },
  41380. [
  41381. {
  41382. name: "Normal",
  41383. height: math.unit(5 + 5/12, "feet"),
  41384. default: true
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(2 + 5/12, "feet"),
  41393. name: "Front",
  41394. image: {
  41395. source: "./media/characters/orion/front.svg",
  41396. extra: 1366/1304,
  41397. bottom: 43/1409
  41398. }
  41399. },
  41400. paw: {
  41401. height: math.unit(0.52, "feet"),
  41402. name: "Paw",
  41403. image: {
  41404. source: "./media/characters/orion/paw.svg"
  41405. }
  41406. },
  41407. },
  41408. [
  41409. {
  41410. name: "Normal",
  41411. height: math.unit(2 + 5/12, "feet"),
  41412. default: true
  41413. },
  41414. ]
  41415. ))
  41416. characterMakers.push(() => makeCharacter(
  41417. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41418. {
  41419. front: {
  41420. height: math.unit(5 + 10/12, "feet"),
  41421. name: "Front",
  41422. image: {
  41423. source: "./media/characters/vera/front.svg",
  41424. extra: 1680/1575,
  41425. bottom: 49/1729
  41426. }
  41427. },
  41428. back: {
  41429. height: math.unit(5 + 10/12, "feet"),
  41430. name: "Back",
  41431. image: {
  41432. source: "./media/characters/vera/back.svg",
  41433. extra: 1700/1588,
  41434. bottom: 18/1718
  41435. }
  41436. },
  41437. arcanine: {
  41438. height: math.unit(6 + 8/12, "feet"),
  41439. name: "Arcanine",
  41440. image: {
  41441. source: "./media/characters/vera/arcanine.svg",
  41442. extra: 1590/1511,
  41443. bottom: 71/1661
  41444. }
  41445. },
  41446. maw: {
  41447. height: math.unit(0.82, "feet"),
  41448. name: "Maw",
  41449. image: {
  41450. source: "./media/characters/vera/maw.svg"
  41451. }
  41452. },
  41453. mawArcanine: {
  41454. height: math.unit(0.97, "feet"),
  41455. name: "Maw (Arcanine)",
  41456. image: {
  41457. source: "./media/characters/vera/maw-arcanine.svg"
  41458. }
  41459. },
  41460. paw: {
  41461. height: math.unit(0.75, "feet"),
  41462. name: "Paw",
  41463. image: {
  41464. source: "./media/characters/vera/paw.svg"
  41465. }
  41466. },
  41467. pawprint: {
  41468. height: math.unit(0.52, "feet"),
  41469. name: "Pawprint",
  41470. image: {
  41471. source: "./media/characters/vera/pawprint.svg"
  41472. }
  41473. },
  41474. },
  41475. [
  41476. {
  41477. name: "Normal",
  41478. height: math.unit(5 + 10/12, "feet"),
  41479. default: true
  41480. },
  41481. {
  41482. name: "Macro",
  41483. height: math.unit(75, "feet")
  41484. },
  41485. ]
  41486. ))
  41487. characterMakers.push(() => makeCharacter(
  41488. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41489. {
  41490. front: {
  41491. height: math.unit(4, "feet"),
  41492. weight: math.unit(40, "lb"),
  41493. name: "Front",
  41494. image: {
  41495. source: "./media/characters/orvan-rabbit/front.svg",
  41496. extra: 1896/1642,
  41497. bottom: 29/1925
  41498. }
  41499. },
  41500. },
  41501. [
  41502. {
  41503. name: "Normal",
  41504. height: math.unit(4, "feet"),
  41505. default: true
  41506. },
  41507. ]
  41508. ))
  41509. characterMakers.push(() => makeCharacter(
  41510. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41511. {
  41512. front: {
  41513. height: math.unit(6, "feet"),
  41514. weight: math.unit(168, "lb"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/lisa/front.svg",
  41518. extra: 2065/1867,
  41519. bottom: 46/2111
  41520. }
  41521. },
  41522. back: {
  41523. height: math.unit(6, "feet"),
  41524. weight: math.unit(168, "lb"),
  41525. name: "Back",
  41526. image: {
  41527. source: "./media/characters/lisa/back.svg",
  41528. extra: 1982/1838,
  41529. bottom: 29/2011
  41530. }
  41531. },
  41532. maw: {
  41533. height: math.unit(0.81, "feet"),
  41534. name: "Maw",
  41535. image: {
  41536. source: "./media/characters/lisa/maw.svg"
  41537. }
  41538. },
  41539. paw: {
  41540. height: math.unit(0.9, "feet"),
  41541. name: "Paw",
  41542. image: {
  41543. source: "./media/characters/lisa/paw.svg"
  41544. }
  41545. },
  41546. caribousune: {
  41547. height: math.unit(7 + 2/12, "feet"),
  41548. weight: math.unit(268, "lb"),
  41549. name: "Caribousune",
  41550. image: {
  41551. source: "./media/characters/lisa/caribousune.svg",
  41552. extra: 1843/1633,
  41553. bottom: 29/1872
  41554. }
  41555. },
  41556. frontCaribousune: {
  41557. height: math.unit(7 + 2/12, "feet"),
  41558. weight: math.unit(268, "lb"),
  41559. name: "Front (Caribousune)",
  41560. image: {
  41561. source: "./media/characters/lisa/front-caribousune.svg",
  41562. extra: 1818/1638,
  41563. bottom: 52/1870
  41564. }
  41565. },
  41566. sideCaribousune: {
  41567. height: math.unit(7 + 2/12, "feet"),
  41568. weight: math.unit(268, "lb"),
  41569. name: "Side (Caribousune)",
  41570. image: {
  41571. source: "./media/characters/lisa/side-caribousune.svg",
  41572. extra: 1851/1635,
  41573. bottom: 16/1867
  41574. }
  41575. },
  41576. backCaribousune: {
  41577. height: math.unit(7 + 2/12, "feet"),
  41578. weight: math.unit(268, "lb"),
  41579. name: "Back (Caribousune)",
  41580. image: {
  41581. source: "./media/characters/lisa/back-caribousune.svg",
  41582. extra: 1801/1604,
  41583. bottom: 44/1845
  41584. }
  41585. },
  41586. caribou: {
  41587. height: math.unit(7 + 2/12, "feet"),
  41588. weight: math.unit(268, "lb"),
  41589. name: "Caribou",
  41590. image: {
  41591. source: "./media/characters/lisa/caribou.svg",
  41592. extra: 1843/1633,
  41593. bottom: 29/1872
  41594. }
  41595. },
  41596. frontCaribou: {
  41597. height: math.unit(7 + 2/12, "feet"),
  41598. weight: math.unit(268, "lb"),
  41599. name: "Front (Caribou)",
  41600. image: {
  41601. source: "./media/characters/lisa/front-caribou.svg",
  41602. extra: 1818/1638,
  41603. bottom: 52/1870
  41604. }
  41605. },
  41606. sideCaribou: {
  41607. height: math.unit(7 + 2/12, "feet"),
  41608. weight: math.unit(268, "lb"),
  41609. name: "Side (Caribou)",
  41610. image: {
  41611. source: "./media/characters/lisa/side-caribou.svg",
  41612. extra: 1851/1635,
  41613. bottom: 16/1867
  41614. }
  41615. },
  41616. backCaribou: {
  41617. height: math.unit(7 + 2/12, "feet"),
  41618. weight: math.unit(268, "lb"),
  41619. name: "Back (Caribou)",
  41620. image: {
  41621. source: "./media/characters/lisa/back-caribou.svg",
  41622. extra: 1801/1604,
  41623. bottom: 44/1845
  41624. }
  41625. },
  41626. mawCaribou: {
  41627. height: math.unit(1.45, "feet"),
  41628. name: "Maw (Caribou)",
  41629. image: {
  41630. source: "./media/characters/lisa/maw-caribou.svg"
  41631. }
  41632. },
  41633. mawCaribousune: {
  41634. height: math.unit(1.45, "feet"),
  41635. name: "Maw (Caribousune)",
  41636. image: {
  41637. source: "./media/characters/lisa/maw-caribousune.svg"
  41638. }
  41639. },
  41640. pawCaribousune: {
  41641. height: math.unit(1.61, "feet"),
  41642. name: "Paw (Caribou)",
  41643. image: {
  41644. source: "./media/characters/lisa/paw-caribousune.svg"
  41645. }
  41646. },
  41647. },
  41648. [
  41649. {
  41650. name: "Normal",
  41651. height: math.unit(6, "feet")
  41652. },
  41653. {
  41654. name: "God Size",
  41655. height: math.unit(72, "feet"),
  41656. default: true
  41657. },
  41658. {
  41659. name: "Towering",
  41660. height: math.unit(288, "feet")
  41661. },
  41662. {
  41663. name: "City Size",
  41664. height: math.unit(48384, "feet")
  41665. },
  41666. {
  41667. name: "Continental",
  41668. height: math.unit(4200, "miles")
  41669. },
  41670. {
  41671. name: "Planet Eater",
  41672. height: math.unit(42, "earths")
  41673. },
  41674. {
  41675. name: "Star Swallower",
  41676. height: math.unit(42, "solarradii")
  41677. },
  41678. {
  41679. name: "System Swallower",
  41680. height: math.unit(84000, "AU")
  41681. },
  41682. {
  41683. name: "Galaxy Gobbler",
  41684. height: math.unit(42, "galaxies")
  41685. },
  41686. {
  41687. name: "Universe Devourer",
  41688. height: math.unit(42, "universes")
  41689. },
  41690. {
  41691. name: "Multiverse Muncher",
  41692. height: math.unit(42, "multiverses")
  41693. },
  41694. ]
  41695. ))
  41696. characterMakers.push(() => makeCharacter(
  41697. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41698. {
  41699. front: {
  41700. height: math.unit(36, "feet"),
  41701. name: "Front",
  41702. image: {
  41703. source: "./media/characters/shadow-rat/front.svg",
  41704. extra: 1845/1758,
  41705. bottom: 83/1928
  41706. }
  41707. },
  41708. },
  41709. [
  41710. {
  41711. name: "Macro",
  41712. height: math.unit(36, "feet"),
  41713. default: true
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41719. {
  41720. side: {
  41721. height: math.unit(8, "feet"),
  41722. weight: math.unit(2630, "lb"),
  41723. name: "Side",
  41724. image: {
  41725. source: "./media/characters/torallia/side.svg",
  41726. extra: 2164/2021,
  41727. bottom: 371/2535
  41728. }
  41729. },
  41730. },
  41731. [
  41732. {
  41733. name: "Mortal Interaction",
  41734. height: math.unit(8, "feet")
  41735. },
  41736. {
  41737. name: "Natural",
  41738. height: math.unit(24, "feet"),
  41739. default: true
  41740. },
  41741. {
  41742. name: "Giant",
  41743. height: math.unit(80, "feet")
  41744. },
  41745. {
  41746. name: "Kaiju",
  41747. height: math.unit(240, "feet")
  41748. },
  41749. {
  41750. name: "Macro",
  41751. height: math.unit(800, "feet")
  41752. },
  41753. {
  41754. name: "Macro+",
  41755. height: math.unit(2400, "feet")
  41756. },
  41757. {
  41758. name: "Macro++",
  41759. height: math.unit(8000, "feet")
  41760. },
  41761. {
  41762. name: "City-Crushing",
  41763. height: math.unit(24000, "feet")
  41764. },
  41765. {
  41766. name: "Mountain-Mashing",
  41767. height: math.unit(80000, "feet")
  41768. },
  41769. {
  41770. name: "District Demolisher",
  41771. height: math.unit(240000, "feet")
  41772. },
  41773. {
  41774. name: "Tri-County Terror",
  41775. height: math.unit(800000, "feet")
  41776. },
  41777. {
  41778. name: "State Smasher",
  41779. height: math.unit(2.4e6, "feet")
  41780. },
  41781. {
  41782. name: "Nation Nemesis",
  41783. height: math.unit(8e6, "feet")
  41784. },
  41785. {
  41786. name: "Continent Cracker",
  41787. height: math.unit(2.4e7, "feet")
  41788. },
  41789. {
  41790. name: "Planet-Pillaging",
  41791. height: math.unit(8e7, "feet")
  41792. },
  41793. {
  41794. name: "Earth-Eclipsing",
  41795. height: math.unit(2.4e8, "feet")
  41796. },
  41797. {
  41798. name: "Jovian-Jostling",
  41799. height: math.unit(8e8, "feet")
  41800. },
  41801. {
  41802. name: "Gas Giant Gulper",
  41803. height: math.unit(2.4e9, "feet")
  41804. },
  41805. {
  41806. name: "Astral Annihilator",
  41807. height: math.unit(8e9, "feet")
  41808. },
  41809. {
  41810. name: "Celestial Conqueror",
  41811. height: math.unit(2.4e10, "feet")
  41812. },
  41813. {
  41814. name: "Sol-Swallowing",
  41815. height: math.unit(8e10, "feet")
  41816. },
  41817. {
  41818. name: "Hunter of the Heavens",
  41819. height: math.unit(2.4e13, "feet")
  41820. },
  41821. ]
  41822. ))
  41823. characterMakers.push(() => makeCharacter(
  41824. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41825. {
  41826. front: {
  41827. height: math.unit(10, "feet"),
  41828. weight: math.unit(844, "kilograms"),
  41829. name: "Front",
  41830. image: {
  41831. source: "./media/characters/rebecca-pawlson/front.svg",
  41832. extra: 1196/1099,
  41833. bottom: 81/1277
  41834. },
  41835. extraAttributes: {
  41836. "pawSize": {
  41837. name: "Paw Size",
  41838. power: 2,
  41839. type: "area",
  41840. base: math.unit(0.2 * 0.375, "meters^2")
  41841. },
  41842. "handSize": {
  41843. name: "Hand Size",
  41844. power: 2,
  41845. type: "area",
  41846. base: math.unit(0.2 * 0.35, "meters^2")
  41847. },
  41848. "breastDiameter": {
  41849. name: "Breast Diameter",
  41850. power: 1,
  41851. type: "length",
  41852. base: math.unit(0.5, "meters")
  41853. },
  41854. "breastVolume": {
  41855. name: "Breast Volume",
  41856. power: 3,
  41857. type: "volume",
  41858. base: math.unit(0.065, "m^3")
  41859. },
  41860. "breastMass": {
  41861. name: "Breast Mass",
  41862. power: 3,
  41863. type: "mass",
  41864. base: math.unit(65, "kg")
  41865. },
  41866. "nippleDiameter": {
  41867. name: "Nipple Diameter",
  41868. power: 1,
  41869. type: "length",
  41870. base: math.unit(0.1, "meters")
  41871. },
  41872. }
  41873. },
  41874. back: {
  41875. height: math.unit(10, "feet"),
  41876. weight: math.unit(844, "kilograms"),
  41877. name: "Back",
  41878. image: {
  41879. source: "./media/characters/rebecca-pawlson/back.svg",
  41880. extra: 879/776,
  41881. bottom: 43/922
  41882. },
  41883. extraAttributes: {
  41884. "pawSize": {
  41885. name: "Paw Size",
  41886. power: 2,
  41887. type: "area",
  41888. base: math.unit(0.2 * 0.375, "meters^2")
  41889. },
  41890. "handSize": {
  41891. name: "Hand Size",
  41892. power: 2,
  41893. type: "area",
  41894. base: math.unit(0.2 * 0.35, "meters^2")
  41895. },
  41896. "breastDiameter": {
  41897. name: "Breast Diameter",
  41898. power: 1,
  41899. type: "length",
  41900. base: math.unit(0.5, "meters")
  41901. },
  41902. "breastVolume": {
  41903. name: "Breast Volume",
  41904. power: 3,
  41905. type: "volume",
  41906. base: math.unit(0.065, "m^3")
  41907. },
  41908. "breastMass": {
  41909. name: "Breast Mass",
  41910. power: 3,
  41911. type: "mass",
  41912. base: math.unit(65, "kg")
  41913. },
  41914. "nippleDiameter": {
  41915. name: "Nipple Diameter",
  41916. power: 1,
  41917. type: "length",
  41918. base: math.unit(0.1, "meters")
  41919. },
  41920. }
  41921. },
  41922. },
  41923. [
  41924. {
  41925. name: "Normal",
  41926. height: math.unit(6 + 8/12, "feet")
  41927. },
  41928. {
  41929. name: "Mini Macro",
  41930. height: math.unit(10, "feet"),
  41931. default: true
  41932. },
  41933. {
  41934. name: "Macro",
  41935. height: math.unit(100, "feet")
  41936. },
  41937. {
  41938. name: "Mega Macro",
  41939. height: math.unit(2500, "feet")
  41940. },
  41941. {
  41942. name: "Giga Macro",
  41943. height: math.unit(50, "miles")
  41944. },
  41945. ]
  41946. ))
  41947. characterMakers.push(() => makeCharacter(
  41948. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41949. {
  41950. front: {
  41951. height: math.unit(7 + 6/12, "feet"),
  41952. weight: math.unit(600, "lb"),
  41953. name: "Front",
  41954. image: {
  41955. source: "./media/characters/moxie-nova/front.svg",
  41956. extra: 1734/1652,
  41957. bottom: 41/1775
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Normal",
  41964. height: math.unit(7 + 6/12, "feet"),
  41965. default: true
  41966. },
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41971. {
  41972. goat: {
  41973. height: math.unit(4, "feet"),
  41974. weight: math.unit(180, "lb"),
  41975. name: "Goat",
  41976. image: {
  41977. source: "./media/characters/tiffany/goat.svg",
  41978. extra: 1845/1595,
  41979. bottom: 106/1951
  41980. }
  41981. },
  41982. front: {
  41983. height: math.unit(5, "feet"),
  41984. weight: math.unit(150, "lb"),
  41985. name: "Foxcoon",
  41986. image: {
  41987. source: "./media/characters/tiffany/foxcoon.svg",
  41988. extra: 1941/1845,
  41989. bottom: 58/1999
  41990. }
  41991. },
  41992. },
  41993. [
  41994. {
  41995. name: "Normal",
  41996. height: math.unit(5, "feet"),
  41997. default: true
  41998. },
  41999. ]
  42000. ))
  42001. characterMakers.push(() => makeCharacter(
  42002. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  42003. {
  42004. front: {
  42005. height: math.unit(8, "feet"),
  42006. weight: math.unit(300, "lb"),
  42007. name: "Front",
  42008. image: {
  42009. source: "./media/characters/raxinath/front.svg",
  42010. extra: 1407/1309,
  42011. bottom: 39/1446
  42012. }
  42013. },
  42014. back: {
  42015. height: math.unit(8, "feet"),
  42016. weight: math.unit(300, "lb"),
  42017. name: "Back",
  42018. image: {
  42019. source: "./media/characters/raxinath/back.svg",
  42020. extra: 1405/1315,
  42021. bottom: 9/1414
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Speck",
  42028. height: math.unit(0.5, "nm")
  42029. },
  42030. {
  42031. name: "Micro",
  42032. height: math.unit(3, "inches")
  42033. },
  42034. {
  42035. name: "Kobold",
  42036. height: math.unit(3, "feet")
  42037. },
  42038. {
  42039. name: "Normal",
  42040. height: math.unit(8, "feet"),
  42041. default: true
  42042. },
  42043. {
  42044. name: "Giant",
  42045. height: math.unit(50, "feet")
  42046. },
  42047. {
  42048. name: "Macro",
  42049. height: math.unit(1000, "feet")
  42050. },
  42051. {
  42052. name: "Megamacro",
  42053. height: math.unit(1, "mile")
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(10, "feet"),
  42062. weight: math.unit(1442, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/mal-dragon/front.svg",
  42066. extra: 1515/1444,
  42067. bottom: 113/1628
  42068. }
  42069. },
  42070. back: {
  42071. height: math.unit(10, "feet"),
  42072. weight: math.unit(1442, "lb"),
  42073. name: "Back",
  42074. image: {
  42075. source: "./media/characters/mal-dragon/back.svg",
  42076. extra: 1527/1434,
  42077. bottom: 25/1552
  42078. }
  42079. },
  42080. },
  42081. [
  42082. {
  42083. name: "Mortal Interaction",
  42084. height: math.unit(10, "feet"),
  42085. default: true
  42086. },
  42087. {
  42088. name: "Large",
  42089. height: math.unit(30, "feet")
  42090. },
  42091. {
  42092. name: "Kaiju",
  42093. height: math.unit(300, "feet")
  42094. },
  42095. {
  42096. name: "Megamacro",
  42097. height: math.unit(10000, "feet")
  42098. },
  42099. {
  42100. name: "Continent Cracker",
  42101. height: math.unit(30000000, "feet")
  42102. },
  42103. {
  42104. name: "Sol-Swallowing",
  42105. height: math.unit(1e11, "feet")
  42106. },
  42107. {
  42108. name: "Light Universal",
  42109. height: math.unit(5, "universes")
  42110. },
  42111. {
  42112. name: "Universe Atoms",
  42113. height: math.unit(1.829e9, "universes")
  42114. },
  42115. {
  42116. name: "Light Multiversal",
  42117. height: math.unit(5, "multiverses")
  42118. },
  42119. {
  42120. name: "Multiverse Atoms",
  42121. height: math.unit(1.829e9, "multiverses")
  42122. },
  42123. {
  42124. name: "Fabric of Time",
  42125. height: math.unit(1e262, "multiverses")
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42131. {
  42132. front: {
  42133. height: math.unit(9, "feet"),
  42134. weight: math.unit(1050, "lb"),
  42135. name: "Front",
  42136. image: {
  42137. source: "./media/characters/tabitha/front.svg",
  42138. extra: 2083/1994,
  42139. bottom: 68/2151
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Baseline",
  42146. height: math.unit(9, "feet"),
  42147. default: true
  42148. },
  42149. {
  42150. name: "Giant",
  42151. height: math.unit(90, "feet")
  42152. },
  42153. {
  42154. name: "Macro",
  42155. height: math.unit(900, "feet")
  42156. },
  42157. {
  42158. name: "Megamacro",
  42159. height: math.unit(9000, "feet")
  42160. },
  42161. {
  42162. name: "City-Crushing",
  42163. height: math.unit(27000, "feet")
  42164. },
  42165. {
  42166. name: "Mountain-Mashing",
  42167. height: math.unit(90000, "feet")
  42168. },
  42169. {
  42170. name: "Nation Nemesis",
  42171. height: math.unit(9e6, "feet")
  42172. },
  42173. {
  42174. name: "Continent Cracker",
  42175. height: math.unit(27e6, "feet")
  42176. },
  42177. {
  42178. name: "Earth-Eclipsing",
  42179. height: math.unit(2.7e8, "feet")
  42180. },
  42181. {
  42182. name: "Gas Giant Gulper",
  42183. height: math.unit(2.7e9, "feet")
  42184. },
  42185. {
  42186. name: "Sol-Swallowing",
  42187. height: math.unit(9e10, "feet")
  42188. },
  42189. {
  42190. name: "Galaxy Gulper",
  42191. height: math.unit(9, "galaxies")
  42192. },
  42193. {
  42194. name: "Cosmos Churner",
  42195. height: math.unit(9, "universes")
  42196. },
  42197. ]
  42198. ))
  42199. characterMakers.push(() => makeCharacter(
  42200. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42201. {
  42202. front: {
  42203. height: math.unit(160, "cm"),
  42204. weight: math.unit(55, "kg"),
  42205. name: "Front",
  42206. image: {
  42207. source: "./media/characters/tow/front.svg",
  42208. extra: 1751/1722,
  42209. bottom: 74/1825
  42210. }
  42211. },
  42212. },
  42213. [
  42214. {
  42215. name: "Norm",
  42216. height: math.unit(160, "cm")
  42217. },
  42218. {
  42219. name: "Casual",
  42220. height: math.unit(3200, "m"),
  42221. default: true
  42222. },
  42223. {
  42224. name: "Show-Off",
  42225. height: math.unit(160, "km")
  42226. },
  42227. ]
  42228. ))
  42229. characterMakers.push(() => makeCharacter(
  42230. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42231. {
  42232. front: {
  42233. height: math.unit(7 + 11/12, "feet"),
  42234. weight: math.unit(342.8, "lb"),
  42235. name: "Front",
  42236. image: {
  42237. source: "./media/characters/vivian-orca-dragon/front.svg",
  42238. extra: 1890/1865,
  42239. bottom: 28/1918
  42240. }
  42241. },
  42242. },
  42243. [
  42244. {
  42245. name: "Micro",
  42246. height: math.unit(5, "inches")
  42247. },
  42248. {
  42249. name: "Normal",
  42250. height: math.unit(7 + 11/12, "feet"),
  42251. default: true
  42252. },
  42253. {
  42254. name: "Macro",
  42255. height: math.unit(395 + 7/12, "feet")
  42256. },
  42257. ]
  42258. ))
  42259. characterMakers.push(() => makeCharacter(
  42260. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42261. {
  42262. side: {
  42263. height: math.unit(10, "feet"),
  42264. weight: math.unit(1442, "lb"),
  42265. name: "Side",
  42266. image: {
  42267. source: "./media/characters/lotherakon/side.svg",
  42268. extra: 1604/1497,
  42269. bottom: 89/1693
  42270. }
  42271. },
  42272. },
  42273. [
  42274. {
  42275. name: "Mortal Interaction",
  42276. height: math.unit(10, "feet")
  42277. },
  42278. {
  42279. name: "Large",
  42280. height: math.unit(30, "feet"),
  42281. default: true
  42282. },
  42283. {
  42284. name: "Giant",
  42285. height: math.unit(100, "feet")
  42286. },
  42287. {
  42288. name: "Kaiju",
  42289. height: math.unit(300, "feet")
  42290. },
  42291. {
  42292. name: "Macro",
  42293. height: math.unit(1000, "feet")
  42294. },
  42295. {
  42296. name: "Macro+",
  42297. height: math.unit(3000, "feet")
  42298. },
  42299. {
  42300. name: "Megamacro",
  42301. height: math.unit(10000, "feet")
  42302. },
  42303. {
  42304. name: "City-Crushing",
  42305. height: math.unit(30000, "feet")
  42306. },
  42307. {
  42308. name: "Continent Cracker",
  42309. height: math.unit(30e6, "feet")
  42310. },
  42311. {
  42312. name: "Earth Eclipsing",
  42313. height: math.unit(3e8, "feet")
  42314. },
  42315. {
  42316. name: "Gas Giant Gulper",
  42317. height: math.unit(3e9, "feet")
  42318. },
  42319. {
  42320. name: "Sol-Swallowing",
  42321. height: math.unit(1e11, "feet")
  42322. },
  42323. {
  42324. name: "System Swallower",
  42325. height: math.unit(3e14, "feet")
  42326. },
  42327. {
  42328. name: "Galaxy Gulper",
  42329. height: math.unit(10, "galaxies")
  42330. },
  42331. {
  42332. name: "Light Universal",
  42333. height: math.unit(5, "universes")
  42334. },
  42335. {
  42336. name: "Universe Palm",
  42337. height: math.unit(20, "universes")
  42338. },
  42339. {
  42340. name: "Light Multiversal",
  42341. height: math.unit(5, "multiverses")
  42342. },
  42343. {
  42344. name: "Multiverse Palm",
  42345. height: math.unit(20, "multiverses")
  42346. },
  42347. {
  42348. name: "Inferno Incarnate",
  42349. height: math.unit(1e7, "multiverses")
  42350. },
  42351. ]
  42352. ))
  42353. characterMakers.push(() => makeCharacter(
  42354. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42355. {
  42356. front: {
  42357. height: math.unit(8, "feet"),
  42358. weight: math.unit(1200, "lb"),
  42359. name: "Front",
  42360. image: {
  42361. source: "./media/characters/malithee/front.svg",
  42362. extra: 1675/1640,
  42363. bottom: 162/1837
  42364. }
  42365. },
  42366. },
  42367. [
  42368. {
  42369. name: "Mortal Interaction",
  42370. height: math.unit(8, "feet"),
  42371. default: true
  42372. },
  42373. {
  42374. name: "Large",
  42375. height: math.unit(24, "feet")
  42376. },
  42377. {
  42378. name: "Kaiju",
  42379. height: math.unit(240, "feet")
  42380. },
  42381. {
  42382. name: "Megamacro",
  42383. height: math.unit(8000, "feet")
  42384. },
  42385. {
  42386. name: "Continent Cracker",
  42387. height: math.unit(24e6, "feet")
  42388. },
  42389. {
  42390. name: "Earth-Eclipsing",
  42391. height: math.unit(2.4e8, "feet")
  42392. },
  42393. {
  42394. name: "Sol-Swallowing",
  42395. height: math.unit(8e10, "feet")
  42396. },
  42397. {
  42398. name: "Galaxy Gulper",
  42399. height: math.unit(8, "galaxies")
  42400. },
  42401. {
  42402. name: "Light Universal",
  42403. height: math.unit(4, "universes")
  42404. },
  42405. {
  42406. name: "Universe Atoms",
  42407. height: math.unit(1.829e9, "universes")
  42408. },
  42409. {
  42410. name: "Light Multiversal",
  42411. height: math.unit(4, "multiverses")
  42412. },
  42413. {
  42414. name: "Multiverse Atoms",
  42415. height: math.unit(1.829e9, "multiverses")
  42416. },
  42417. {
  42418. name: "Nigh-Omnipresence",
  42419. height: math.unit(8e261, "multiverses")
  42420. },
  42421. ]
  42422. ))
  42423. characterMakers.push(() => makeCharacter(
  42424. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42425. {
  42426. front: {
  42427. height: math.unit(10, "feet"),
  42428. weight: math.unit(1500, "lb"),
  42429. name: "Front",
  42430. image: {
  42431. source: "./media/characters/miles-thestia/front.svg",
  42432. extra: 1812/1727,
  42433. bottom: 86/1898
  42434. }
  42435. },
  42436. back: {
  42437. height: math.unit(10, "feet"),
  42438. weight: math.unit(1500, "lb"),
  42439. name: "Back",
  42440. image: {
  42441. source: "./media/characters/miles-thestia/back.svg",
  42442. extra: 1799/1690,
  42443. bottom: 47/1846
  42444. }
  42445. },
  42446. frontNsfw: {
  42447. height: math.unit(10, "feet"),
  42448. weight: math.unit(1500, "lb"),
  42449. name: "Front (NSFW)",
  42450. image: {
  42451. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42452. extra: 1812/1727,
  42453. bottom: 86/1898
  42454. }
  42455. },
  42456. },
  42457. [
  42458. {
  42459. name: "Mini-Macro",
  42460. height: math.unit(10, "feet"),
  42461. default: true
  42462. },
  42463. ]
  42464. ))
  42465. characterMakers.push(() => makeCharacter(
  42466. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42467. {
  42468. front: {
  42469. height: math.unit(25, "feet"),
  42470. name: "Front",
  42471. image: {
  42472. source: "./media/characters/titan-s-wulf/front.svg",
  42473. extra: 1560/1484,
  42474. bottom: 76/1636
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Smallest",
  42481. height: math.unit(25, "feet"),
  42482. default: true
  42483. },
  42484. {
  42485. name: "Normal",
  42486. height: math.unit(200, "feet")
  42487. },
  42488. {
  42489. name: "Macro",
  42490. height: math.unit(200000, "feet")
  42491. },
  42492. {
  42493. name: "Multiversal Original",
  42494. height: math.unit(10000, "multiverses")
  42495. },
  42496. ]
  42497. ))
  42498. characterMakers.push(() => makeCharacter(
  42499. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42500. {
  42501. front: {
  42502. height: math.unit(8, "feet"),
  42503. weight: math.unit(553, "lb"),
  42504. name: "Front",
  42505. image: {
  42506. source: "./media/characters/tawendeh/front.svg",
  42507. extra: 2365/2268,
  42508. bottom: 83/2448
  42509. }
  42510. },
  42511. frontClothed: {
  42512. height: math.unit(8, "feet"),
  42513. weight: math.unit(553, "lb"),
  42514. name: "Front (Clothed)",
  42515. image: {
  42516. source: "./media/characters/tawendeh/front-clothed.svg",
  42517. extra: 2365/2268,
  42518. bottom: 83/2448
  42519. }
  42520. },
  42521. back: {
  42522. height: math.unit(8, "feet"),
  42523. weight: math.unit(553, "lb"),
  42524. name: "Back",
  42525. image: {
  42526. source: "./media/characters/tawendeh/back.svg",
  42527. extra: 2397/2294,
  42528. bottom: 42/2439
  42529. }
  42530. },
  42531. },
  42532. [
  42533. {
  42534. name: "Mortal Interaction",
  42535. height: math.unit(8, "feet"),
  42536. default: true
  42537. },
  42538. {
  42539. name: "Giant",
  42540. height: math.unit(80, "feet")
  42541. },
  42542. {
  42543. name: "Macro",
  42544. height: math.unit(800, "feet")
  42545. },
  42546. {
  42547. name: "Megamacro",
  42548. height: math.unit(8000, "feet")
  42549. },
  42550. {
  42551. name: "City-Crushing",
  42552. height: math.unit(24000, "feet")
  42553. },
  42554. {
  42555. name: "Mountain-Mashing",
  42556. height: math.unit(80000, "feet")
  42557. },
  42558. {
  42559. name: "Nation Nemesis",
  42560. height: math.unit(8e6, "feet")
  42561. },
  42562. {
  42563. name: "Continent Cracker",
  42564. height: math.unit(24e6, "feet")
  42565. },
  42566. {
  42567. name: "Earth-Eclipsing",
  42568. height: math.unit(2.4e8, "feet")
  42569. },
  42570. {
  42571. name: "Gas Giant Gulper",
  42572. height: math.unit(2.4e9, "feet")
  42573. },
  42574. {
  42575. name: "Sol-Swallowing",
  42576. height: math.unit(8e10, "feet")
  42577. },
  42578. {
  42579. name: "Galaxy Gulper",
  42580. height: math.unit(8, "galaxies")
  42581. },
  42582. {
  42583. name: "Cosmos Churner",
  42584. height: math.unit(8, "universes")
  42585. },
  42586. {
  42587. name: "Omnipotent Otter",
  42588. height: math.unit(80, "universes")
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(2.6, "meters"),
  42597. weight: math.unit(900, "kg"),
  42598. name: "Front",
  42599. image: {
  42600. source: "./media/characters/neesha/front.svg",
  42601. extra: 1803/1653,
  42602. bottom: 128/1931
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(2.6, "meters"),
  42610. default: true
  42611. },
  42612. {
  42613. name: "Macro",
  42614. height: math.unit(50, "meters")
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42620. {
  42621. front: {
  42622. height: math.unit(5, "feet"),
  42623. weight: math.unit(185, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/kyera/front.svg",
  42627. extra: 1875/1790,
  42628. bottom: 96/1971
  42629. }
  42630. },
  42631. },
  42632. [
  42633. {
  42634. name: "Normal",
  42635. height: math.unit(5, "feet"),
  42636. default: true
  42637. },
  42638. ]
  42639. ))
  42640. characterMakers.push(() => makeCharacter(
  42641. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42642. {
  42643. front: {
  42644. height: math.unit(7 + 6/12, "feet"),
  42645. weight: math.unit(540, "lb"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/yuko/front.svg",
  42649. extra: 1282/1222,
  42650. bottom: 101/1383
  42651. }
  42652. },
  42653. frontClothed: {
  42654. height: math.unit(7 + 6/12, "feet"),
  42655. weight: math.unit(540, "lb"),
  42656. name: "Front (Clothed)",
  42657. image: {
  42658. source: "./media/characters/yuko/front-clothed.svg",
  42659. extra: 1282/1222,
  42660. bottom: 101/1383
  42661. }
  42662. },
  42663. },
  42664. [
  42665. {
  42666. name: "Normal",
  42667. height: math.unit(7 + 6/12, "feet"),
  42668. default: true
  42669. },
  42670. {
  42671. name: "Macro",
  42672. height: math.unit(26 + 9/12, "feet")
  42673. },
  42674. {
  42675. name: "Megamacro",
  42676. height: math.unit(300, "feet")
  42677. },
  42678. {
  42679. name: "Gigamacro",
  42680. height: math.unit(5000, "feet")
  42681. },
  42682. {
  42683. name: "Planetary",
  42684. height: math.unit(10000, "miles")
  42685. },
  42686. ]
  42687. ))
  42688. characterMakers.push(() => makeCharacter(
  42689. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42690. {
  42691. front: {
  42692. height: math.unit(8 + 2/12, "feet"),
  42693. weight: math.unit(600, "lb"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/deam-nitrel/front.svg",
  42697. extra: 1308/1234,
  42698. bottom: 125/1433
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Normal",
  42705. height: math.unit(8 + 2/12, "feet"),
  42706. default: true
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(6.1, "feet"),
  42715. weight: math.unit(180, "lb"),
  42716. name: "Front",
  42717. image: {
  42718. source: "./media/characters/skyress/front.svg",
  42719. extra: 1045/915,
  42720. bottom: 28/1073
  42721. }
  42722. },
  42723. maw: {
  42724. height: math.unit(1, "feet"),
  42725. name: "Maw",
  42726. image: {
  42727. source: "./media/characters/skyress/maw.svg"
  42728. }
  42729. },
  42730. },
  42731. [
  42732. {
  42733. name: "Normal",
  42734. height: math.unit(6.1, "feet"),
  42735. default: true
  42736. },
  42737. {
  42738. name: "Macro",
  42739. height: math.unit(200, "feet")
  42740. },
  42741. ]
  42742. ))
  42743. characterMakers.push(() => makeCharacter(
  42744. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42745. {
  42746. front: {
  42747. height: math.unit(4 + 2/12, "feet"),
  42748. weight: math.unit(40, "kg"),
  42749. name: "Front",
  42750. image: {
  42751. source: "./media/characters/amethyst-jones/front.svg",
  42752. extra: 1220/1150,
  42753. bottom: 101/1321
  42754. }
  42755. },
  42756. },
  42757. [
  42758. {
  42759. name: "Normal",
  42760. height: math.unit(4 + 2/12, "feet"),
  42761. default: true
  42762. },
  42763. ]
  42764. ))
  42765. characterMakers.push(() => makeCharacter(
  42766. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42767. {
  42768. front: {
  42769. height: math.unit(1.7, "m"),
  42770. weight: math.unit(135, "lb"),
  42771. name: "Front",
  42772. image: {
  42773. source: "./media/characters/jade/front.svg",
  42774. extra: 1818/1767,
  42775. bottom: 32/1850
  42776. }
  42777. },
  42778. back: {
  42779. height: math.unit(1.7, "m"),
  42780. weight: math.unit(135, "lb"),
  42781. name: "Back",
  42782. image: {
  42783. source: "./media/characters/jade/back.svg",
  42784. extra: 1869/1809,
  42785. bottom: 35/1904
  42786. }
  42787. },
  42788. hand: {
  42789. height: math.unit(0.24, "m"),
  42790. name: "Hand",
  42791. image: {
  42792. source: "./media/characters/jade/hand.svg"
  42793. }
  42794. },
  42795. foot: {
  42796. height: math.unit(0.263, "m"),
  42797. name: "Foot",
  42798. image: {
  42799. source: "./media/characters/jade/foot.svg"
  42800. }
  42801. },
  42802. dick: {
  42803. height: math.unit(0.47, "m"),
  42804. name: "Dick",
  42805. image: {
  42806. source: "./media/characters/jade/dick.svg"
  42807. }
  42808. },
  42809. },
  42810. [
  42811. {
  42812. name: "Micro",
  42813. height: math.unit(22, "cm")
  42814. },
  42815. {
  42816. name: "Normal",
  42817. height: math.unit(1.7, "m"),
  42818. default: true
  42819. },
  42820. {
  42821. name: "Macro",
  42822. height: math.unit(152, "m")
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(100, "miles"),
  42831. weight: math.unit(20000, "tons"),
  42832. name: "Front",
  42833. image: {
  42834. source: "./media/characters/cookie/front.svg",
  42835. extra: 1125/1070,
  42836. bottom: 30/1155
  42837. }
  42838. },
  42839. },
  42840. [
  42841. {
  42842. name: "Big",
  42843. height: math.unit(50, "feet")
  42844. },
  42845. {
  42846. name: "Macro",
  42847. height: math.unit(100, "miles"),
  42848. default: true
  42849. },
  42850. {
  42851. name: "Megamacro",
  42852. height: math.unit(90000, "miles")
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42858. {
  42859. front: {
  42860. height: math.unit(6, "feet"),
  42861. weight: math.unit(145, "lb"),
  42862. name: "Front",
  42863. image: {
  42864. source: "./media/characters/farzian/front.svg",
  42865. extra: 1902/1693,
  42866. bottom: 108/2010
  42867. }
  42868. },
  42869. },
  42870. [
  42871. {
  42872. name: "Macro",
  42873. height: math.unit(500, "feet"),
  42874. default: true
  42875. },
  42876. ]
  42877. ))
  42878. characterMakers.push(() => makeCharacter(
  42879. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42880. {
  42881. front: {
  42882. height: math.unit(3 + 6/12, "feet"),
  42883. weight: math.unit(50, "lb"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/kimberly-tilson/front.svg",
  42887. extra: 1400/1322,
  42888. bottom: 36/1436
  42889. }
  42890. },
  42891. back: {
  42892. height: math.unit(3 + 6/12, "feet"),
  42893. weight: math.unit(50, "lb"),
  42894. name: "Back",
  42895. image: {
  42896. source: "./media/characters/kimberly-tilson/back.svg",
  42897. extra: 1370/1307,
  42898. bottom: 20/1390
  42899. }
  42900. },
  42901. },
  42902. [
  42903. {
  42904. name: "Normal",
  42905. height: math.unit(3 + 6/12, "feet"),
  42906. default: true
  42907. },
  42908. ]
  42909. ))
  42910. characterMakers.push(() => makeCharacter(
  42911. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42912. {
  42913. front: {
  42914. height: math.unit(350, "meters"),
  42915. weight: math.unit(7.57059e+8, "lb"),
  42916. name: "Front",
  42917. image: {
  42918. source: "./media/characters/harthos/front.svg",
  42919. extra: 455/446,
  42920. bottom: 15/470
  42921. },
  42922. form: "peacekeeper",
  42923. default: true
  42924. },
  42925. allusus_front: {
  42926. height: math.unit(270, "meters"),
  42927. weight: math.unit(3.47550e+8, "lb"),
  42928. name: "Front",
  42929. image: {
  42930. source: "./media/characters/harthos/allusus-front.svg",
  42931. extra: 455/446,
  42932. bottom: 15/470
  42933. },
  42934. form: "allusus",
  42935. },
  42936. },
  42937. [
  42938. {
  42939. name: "Macro",
  42940. height: math.unit(350, "meters"),
  42941. default: true,
  42942. form: "peacekeeper"
  42943. },
  42944. {
  42945. name: "Macro",
  42946. height: math.unit(270, "meters"),
  42947. default: true,
  42948. form: "allusus"
  42949. },
  42950. ],
  42951. {
  42952. "peacekeeper": {
  42953. name: "Peacekeeper",
  42954. default: true
  42955. },
  42956. "allusus": {
  42957. name: "Allusus",
  42958. },
  42959. }
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42963. {
  42964. front: {
  42965. height: math.unit(15, "feet"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/hypatia/front.svg",
  42969. extra: 1653/1591,
  42970. bottom: 79/1732
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Normal",
  42977. height: math.unit(15, "feet")
  42978. },
  42979. {
  42980. name: "Small",
  42981. height: math.unit(300, "feet")
  42982. },
  42983. {
  42984. name: "Macro",
  42985. height: math.unit(2500, "feet"),
  42986. default: true
  42987. },
  42988. {
  42989. name: "Mega Macro",
  42990. height: math.unit(1500, "miles")
  42991. },
  42992. {
  42993. name: "Giga Macro",
  42994. height: math.unit(1.5e6, "miles")
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  43000. {
  43001. front: {
  43002. height: math.unit(6, "feet"),
  43003. weight: math.unit(200, "lb"),
  43004. name: "Front",
  43005. image: {
  43006. source: "./media/characters/wulver/front.svg",
  43007. extra: 1724/1632,
  43008. bottom: 130/1854
  43009. }
  43010. },
  43011. frontNsfw: {
  43012. height: math.unit(6, "feet"),
  43013. weight: math.unit(200, "lb"),
  43014. name: "Front (NSFW)",
  43015. image: {
  43016. source: "./media/characters/wulver/front-nsfw.svg",
  43017. extra: 1724/1632,
  43018. bottom: 130/1854
  43019. }
  43020. },
  43021. },
  43022. [
  43023. {
  43024. name: "Human-Sized",
  43025. height: math.unit(6, "feet")
  43026. },
  43027. {
  43028. name: "Normal",
  43029. height: math.unit(4, "meters"),
  43030. default: true
  43031. },
  43032. {
  43033. name: "Large",
  43034. height: math.unit(6, "m")
  43035. },
  43036. ]
  43037. ))
  43038. characterMakers.push(() => makeCharacter(
  43039. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  43040. {
  43041. front: {
  43042. height: math.unit(7, "feet"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/maru/front.svg",
  43046. extra: 1595/1570,
  43047. bottom: 0/1595
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(7, "feet"),
  43055. default: true
  43056. },
  43057. {
  43058. name: "Macro",
  43059. height: math.unit(700, "feet")
  43060. },
  43061. {
  43062. name: "Mega Macro",
  43063. height: math.unit(25, "miles")
  43064. },
  43065. ]
  43066. ))
  43067. characterMakers.push(() => makeCharacter(
  43068. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43069. {
  43070. front: {
  43071. height: math.unit(6, "feet"),
  43072. weight: math.unit(170, "lb"),
  43073. name: "Front",
  43074. image: {
  43075. source: "./media/characters/xenon/front.svg",
  43076. extra: 1376/1305,
  43077. bottom: 56/1432
  43078. }
  43079. },
  43080. back: {
  43081. height: math.unit(6, "feet"),
  43082. weight: math.unit(170, "lb"),
  43083. name: "Back",
  43084. image: {
  43085. source: "./media/characters/xenon/back.svg",
  43086. extra: 1328/1259,
  43087. bottom: 95/1423
  43088. }
  43089. },
  43090. maw: {
  43091. height: math.unit(0.52, "feet"),
  43092. name: "Maw",
  43093. image: {
  43094. source: "./media/characters/xenon/maw.svg"
  43095. }
  43096. },
  43097. handLeft: {
  43098. height: math.unit(0.82 * 169 / 153, "feet"),
  43099. name: "Hand (Left)",
  43100. image: {
  43101. source: "./media/characters/xenon/hand-left.svg"
  43102. }
  43103. },
  43104. handRight: {
  43105. height: math.unit(0.82, "feet"),
  43106. name: "Hand (Right)",
  43107. image: {
  43108. source: "./media/characters/xenon/hand-right.svg"
  43109. }
  43110. },
  43111. footLeft: {
  43112. height: math.unit(1.13, "feet"),
  43113. name: "Foot (Left)",
  43114. image: {
  43115. source: "./media/characters/xenon/foot-left.svg"
  43116. }
  43117. },
  43118. footRight: {
  43119. height: math.unit(1.13 * 194 / 196, "feet"),
  43120. name: "Foot (Right)",
  43121. image: {
  43122. source: "./media/characters/xenon/foot-right.svg"
  43123. }
  43124. },
  43125. },
  43126. [
  43127. {
  43128. name: "Micro",
  43129. height: math.unit(0.8, "inches")
  43130. },
  43131. {
  43132. name: "Normal",
  43133. height: math.unit(6, "feet")
  43134. },
  43135. {
  43136. name: "Macro",
  43137. height: math.unit(50, "feet"),
  43138. default: true
  43139. },
  43140. {
  43141. name: "Macro+",
  43142. height: math.unit(250, "feet")
  43143. },
  43144. {
  43145. name: "Megamacro",
  43146. height: math.unit(1500, "feet")
  43147. },
  43148. ]
  43149. ))
  43150. characterMakers.push(() => makeCharacter(
  43151. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43152. {
  43153. front: {
  43154. height: math.unit(7 + 5/12, "feet"),
  43155. name: "Front",
  43156. image: {
  43157. source: "./media/characters/zane/front.svg",
  43158. extra: 1260/1203,
  43159. bottom: 94/1354
  43160. }
  43161. },
  43162. back: {
  43163. height: math.unit(5.05, "feet"),
  43164. name: "Back",
  43165. image: {
  43166. source: "./media/characters/zane/back.svg",
  43167. extra: 893/829,
  43168. bottom: 30/923
  43169. }
  43170. },
  43171. werewolf: {
  43172. height: math.unit(11, "feet"),
  43173. name: "Werewolf",
  43174. image: {
  43175. source: "./media/characters/zane/werewolf.svg",
  43176. extra: 1383/1323,
  43177. bottom: 89/1472
  43178. }
  43179. },
  43180. foot: {
  43181. height: math.unit(1.46, "feet"),
  43182. name: "Foot",
  43183. image: {
  43184. source: "./media/characters/zane/foot.svg"
  43185. }
  43186. },
  43187. footFront: {
  43188. height: math.unit(0.784, "feet"),
  43189. name: "Foot (Front)",
  43190. image: {
  43191. source: "./media/characters/zane/foot-front.svg"
  43192. }
  43193. },
  43194. dick: {
  43195. height: math.unit(1.95, "feet"),
  43196. name: "Dick",
  43197. image: {
  43198. source: "./media/characters/zane/dick.svg"
  43199. }
  43200. },
  43201. dickWerewolf: {
  43202. height: math.unit(3.77, "feet"),
  43203. name: "Dick (Werewolf)",
  43204. image: {
  43205. source: "./media/characters/zane/dick.svg"
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Normal",
  43212. height: math.unit(7 + 5/12, "feet"),
  43213. default: true
  43214. },
  43215. ]
  43216. ))
  43217. characterMakers.push(() => makeCharacter(
  43218. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43219. {
  43220. front: {
  43221. height: math.unit(6 + 2/12, "feet"),
  43222. weight: math.unit(284, "lb"),
  43223. name: "Front",
  43224. image: {
  43225. source: "./media/characters/benni-desparque/front.svg",
  43226. extra: 878/729,
  43227. bottom: 58/936
  43228. }
  43229. },
  43230. back: {
  43231. height: math.unit(6 + 2/12, "feet"),
  43232. weight: math.unit(284, "lb"),
  43233. name: "Back",
  43234. image: {
  43235. source: "./media/characters/benni-desparque/back.svg",
  43236. extra: 901/756,
  43237. bottom: 51/952
  43238. }
  43239. },
  43240. dressed: {
  43241. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43242. weight: math.unit(284, "lb"),
  43243. name: "Dressed",
  43244. image: {
  43245. source: "./media/characters/benni-desparque/dressed.svg",
  43246. extra: 1514/1276,
  43247. bottom: 65/1579
  43248. }
  43249. },
  43250. hand: {
  43251. height: math.unit(1.28, "feet"),
  43252. name: "Hand",
  43253. image: {
  43254. source: "./media/characters/benni-desparque/hand.svg"
  43255. }
  43256. },
  43257. foot: {
  43258. height: math.unit(1.53, "feet"),
  43259. name: "Foot",
  43260. image: {
  43261. source: "./media/characters/benni-desparque/foot.svg"
  43262. }
  43263. },
  43264. aiControlUnit: {
  43265. height: math.unit(0.175, "feet"),
  43266. name: "AI Control Unit",
  43267. image: {
  43268. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43269. }
  43270. },
  43271. },
  43272. [
  43273. {
  43274. name: "Civilian",
  43275. height: math.unit(6 + 2/12, "feet")
  43276. },
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(98, "feet"),
  43280. default: true
  43281. },
  43282. {
  43283. name: "Kaiju Fighter",
  43284. height: math.unit(268, "feet")
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43290. {
  43291. front: {
  43292. height: math.unit(5, "feet"),
  43293. weight: math.unit(105, "lb"),
  43294. name: "Front",
  43295. image: {
  43296. source: "./media/characters/maxine/front.svg",
  43297. extra: 1386/1250,
  43298. bottom: 71/1457
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(5, "feet"),
  43306. default: true
  43307. },
  43308. ]
  43309. ))
  43310. characterMakers.push(() => makeCharacter(
  43311. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43312. {
  43313. front: {
  43314. height: math.unit(11 + 7/12, "feet"),
  43315. weight: math.unit(9576, "lb"),
  43316. name: "Front",
  43317. image: {
  43318. source: "./media/characters/scaly/front.svg",
  43319. extra: 888/867,
  43320. bottom: 36/924
  43321. }
  43322. },
  43323. },
  43324. [
  43325. {
  43326. name: "Normal",
  43327. height: math.unit(11 + 7/12, "feet"),
  43328. default: true
  43329. },
  43330. ]
  43331. ))
  43332. characterMakers.push(() => makeCharacter(
  43333. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43334. {
  43335. front: {
  43336. height: math.unit(6 + 3/12, "feet"),
  43337. name: "Front",
  43338. image: {
  43339. source: "./media/characters/saelria/front.svg",
  43340. extra: 1243/1138,
  43341. bottom: 46/1289
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Micro",
  43348. height: math.unit(6, "inches"),
  43349. },
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(6 + 3/12, "feet"),
  43353. default: true
  43354. },
  43355. {
  43356. name: "Macro",
  43357. height: math.unit(25, "feet")
  43358. },
  43359. ]
  43360. ))
  43361. characterMakers.push(() => makeCharacter(
  43362. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43363. {
  43364. front: {
  43365. height: math.unit(80, "meters"),
  43366. weight: math.unit(7000, "tonnes"),
  43367. name: "Front",
  43368. image: {
  43369. source: "./media/characters/tef/front.svg",
  43370. extra: 2036/1991,
  43371. bottom: 54/2090
  43372. }
  43373. },
  43374. back: {
  43375. height: math.unit(80, "meters"),
  43376. weight: math.unit(7000, "tonnes"),
  43377. name: "Back",
  43378. image: {
  43379. source: "./media/characters/tef/back.svg",
  43380. extra: 2036/1991,
  43381. bottom: 54/2090
  43382. }
  43383. },
  43384. },
  43385. [
  43386. {
  43387. name: "Macro",
  43388. height: math.unit(80, "meters"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(13, "feet"),
  43398. weight: math.unit(6, "tons"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/rover/front.svg",
  43402. extra: 1233/1156,
  43403. bottom: 50/1283
  43404. }
  43405. },
  43406. back: {
  43407. height: math.unit(13, "feet"),
  43408. weight: math.unit(6, "tons"),
  43409. name: "Back",
  43410. image: {
  43411. source: "./media/characters/rover/back.svg",
  43412. extra: 1327/1258,
  43413. bottom: 39/1366
  43414. }
  43415. },
  43416. },
  43417. [
  43418. {
  43419. name: "Normal",
  43420. height: math.unit(13, "feet"),
  43421. default: true
  43422. },
  43423. {
  43424. name: "Macro",
  43425. height: math.unit(1300, "feet")
  43426. },
  43427. {
  43428. name: "Megamacro",
  43429. height: math.unit(1300, "miles")
  43430. },
  43431. {
  43432. name: "Gigamacro",
  43433. height: math.unit(1300000, "miles")
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(10, "feet"),
  43442. weight: math.unit(500, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/ariz/front.svg",
  43446. extra: 461/450,
  43447. bottom: 16/477
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "MiniMacro",
  43454. height: math.unit(10, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(6, "feet"),
  43464. weight: math.unit(140, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/sigrun/front.svg",
  43468. extra: 1418/1359,
  43469. bottom: 27/1445
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Macro",
  43476. height: math.unit(35, "feet"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43483. {
  43484. front: {
  43485. height: math.unit(6, "feet"),
  43486. weight: math.unit(150, "lb"),
  43487. name: "Front",
  43488. image: {
  43489. source: "./media/characters/numin/front.svg",
  43490. extra: 1433/1388,
  43491. bottom: 12/1445
  43492. }
  43493. },
  43494. },
  43495. [
  43496. {
  43497. name: "Macro",
  43498. height: math.unit(21.5, "km"),
  43499. default: true
  43500. },
  43501. ]
  43502. ))
  43503. characterMakers.push(() => makeCharacter(
  43504. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43505. {
  43506. front: {
  43507. height: math.unit(6, "feet"),
  43508. weight: math.unit(463, "lb"),
  43509. name: "Front",
  43510. image: {
  43511. source: "./media/characters/melwa/front.svg",
  43512. extra: 1307/1248,
  43513. bottom: 93/1400
  43514. }
  43515. },
  43516. },
  43517. [
  43518. {
  43519. name: "Macro",
  43520. height: math.unit(50, "meters"),
  43521. default: true
  43522. },
  43523. ]
  43524. ))
  43525. characterMakers.push(() => makeCharacter(
  43526. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43527. {
  43528. front: {
  43529. height: math.unit(325, "feet"),
  43530. name: "Front",
  43531. image: {
  43532. source: "./media/characters/zorkaiju/front.svg",
  43533. extra: 1955/1814,
  43534. bottom: 40/1995
  43535. }
  43536. },
  43537. frontExtended: {
  43538. height: math.unit(325, "feet"),
  43539. name: "Front (Extended)",
  43540. image: {
  43541. source: "./media/characters/zorkaiju/front-extended.svg",
  43542. extra: 1955/1814,
  43543. bottom: 40/1995
  43544. }
  43545. },
  43546. side: {
  43547. height: math.unit(325, "feet"),
  43548. name: "Side",
  43549. image: {
  43550. source: "./media/characters/zorkaiju/side.svg",
  43551. extra: 1495/1396,
  43552. bottom: 17/1512
  43553. }
  43554. },
  43555. sideExtended: {
  43556. height: math.unit(325, "feet"),
  43557. name: "Side (Extended)",
  43558. image: {
  43559. source: "./media/characters/zorkaiju/side-extended.svg",
  43560. extra: 1495/1396,
  43561. bottom: 17/1512
  43562. }
  43563. },
  43564. back: {
  43565. height: math.unit(325, "feet"),
  43566. name: "Back",
  43567. image: {
  43568. source: "./media/characters/zorkaiju/back.svg",
  43569. extra: 1959/1821,
  43570. bottom: 31/1990
  43571. }
  43572. },
  43573. backExtended: {
  43574. height: math.unit(325, "feet"),
  43575. name: "Back (Extended)",
  43576. image: {
  43577. source: "./media/characters/zorkaiju/back-extended.svg",
  43578. extra: 1959/1821,
  43579. bottom: 31/1990
  43580. }
  43581. },
  43582. hand: {
  43583. height: math.unit(58.4, "feet"),
  43584. name: "Hand",
  43585. image: {
  43586. source: "./media/characters/zorkaiju/hand.svg"
  43587. }
  43588. },
  43589. handExtended: {
  43590. height: math.unit(61.4, "feet"),
  43591. name: "Hand (Extended)",
  43592. image: {
  43593. source: "./media/characters/zorkaiju/hand-extended.svg"
  43594. }
  43595. },
  43596. foot: {
  43597. height: math.unit(95, "feet"),
  43598. name: "Foot",
  43599. image: {
  43600. source: "./media/characters/zorkaiju/foot.svg"
  43601. }
  43602. },
  43603. leftArm: {
  43604. height: math.unit(59, "feet"),
  43605. name: "Left Arm",
  43606. image: {
  43607. source: "./media/characters/zorkaiju/left-arm.svg"
  43608. }
  43609. },
  43610. rightArm: {
  43611. height: math.unit(59, "feet"),
  43612. name: "Right Arm",
  43613. image: {
  43614. source: "./media/characters/zorkaiju/right-arm.svg"
  43615. }
  43616. },
  43617. leftArmExtended: {
  43618. height: math.unit(59 * 1.033546, "feet"),
  43619. name: "Left Arm (Extended)",
  43620. image: {
  43621. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43622. }
  43623. },
  43624. rightArmExtended: {
  43625. height: math.unit(59 * 1.0496, "feet"),
  43626. name: "Right Arm (Extended)",
  43627. image: {
  43628. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43629. }
  43630. },
  43631. tail: {
  43632. height: math.unit(104, "feet"),
  43633. name: "Tail",
  43634. image: {
  43635. source: "./media/characters/zorkaiju/tail.svg"
  43636. }
  43637. },
  43638. tailExtended: {
  43639. height: math.unit(104, "feet"),
  43640. name: "Tail (Extended)",
  43641. image: {
  43642. source: "./media/characters/zorkaiju/tail-extended.svg"
  43643. }
  43644. },
  43645. tailBottom: {
  43646. height: math.unit(104, "feet"),
  43647. name: "Tail Bottom",
  43648. image: {
  43649. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43650. }
  43651. },
  43652. crystal: {
  43653. height: math.unit(27.54, "feet"),
  43654. name: "Crystal",
  43655. image: {
  43656. source: "./media/characters/zorkaiju/crystal.svg"
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Kaiju",
  43663. height: math.unit(325, "feet"),
  43664. default: true
  43665. },
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43670. {
  43671. front: {
  43672. height: math.unit(6 + 1/12, "feet"),
  43673. weight: math.unit(115, "lb"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/bailey-belfry/front.svg",
  43677. extra: 1240/1121,
  43678. bottom: 101/1341
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Normal",
  43685. height: math.unit(6 + 1/12, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43692. {
  43693. side: {
  43694. height: math.unit(4, "meters"),
  43695. weight: math.unit(250, "kg"),
  43696. name: "Side",
  43697. image: {
  43698. source: "./media/characters/blacky/side.svg",
  43699. extra: 1027/919,
  43700. bottom: 43/1070
  43701. }
  43702. },
  43703. maw: {
  43704. height: math.unit(1, "meters"),
  43705. name: "Maw",
  43706. image: {
  43707. source: "./media/characters/blacky/maw.svg"
  43708. }
  43709. },
  43710. paw: {
  43711. height: math.unit(1, "meters"),
  43712. name: "Paw",
  43713. image: {
  43714. source: "./media/characters/blacky/paw.svg"
  43715. }
  43716. },
  43717. },
  43718. [
  43719. {
  43720. name: "Normal",
  43721. height: math.unit(4, "meters"),
  43722. default: true
  43723. },
  43724. ]
  43725. ))
  43726. characterMakers.push(() => makeCharacter(
  43727. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43728. {
  43729. front: {
  43730. height: math.unit(170, "cm"),
  43731. weight: math.unit(66, "kg"),
  43732. name: "Front",
  43733. image: {
  43734. source: "./media/characters/thux-ei/front.svg",
  43735. extra: 1109/1011,
  43736. bottom: 8/1117
  43737. }
  43738. },
  43739. },
  43740. [
  43741. {
  43742. name: "Normal",
  43743. height: math.unit(170, "cm"),
  43744. default: true
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(5, "feet"),
  43753. weight: math.unit(120, "lb"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/roxanne-voltaire/front.svg",
  43757. extra: 1901/1779,
  43758. bottom: 53/1954
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Normal",
  43765. height: math.unit(5, "feet"),
  43766. default: true
  43767. },
  43768. {
  43769. name: "Giant",
  43770. height: math.unit(50, "feet")
  43771. },
  43772. {
  43773. name: "Titan",
  43774. height: math.unit(500, "feet")
  43775. },
  43776. {
  43777. name: "Macro",
  43778. height: math.unit(5000, "feet")
  43779. },
  43780. {
  43781. name: "Megamacro",
  43782. height: math.unit(50000, "feet")
  43783. },
  43784. {
  43785. name: "Gigamacro",
  43786. height: math.unit(500000, "feet")
  43787. },
  43788. {
  43789. name: "Teramacro",
  43790. height: math.unit(5e6, "feet")
  43791. },
  43792. ]
  43793. ))
  43794. characterMakers.push(() => makeCharacter(
  43795. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43796. {
  43797. front: {
  43798. height: math.unit(6 + 2/12, "feet"),
  43799. name: "Front",
  43800. image: {
  43801. source: "./media/characters/squeaks/front.svg",
  43802. extra: 1823/1768,
  43803. bottom: 138/1961
  43804. }
  43805. },
  43806. },
  43807. [
  43808. {
  43809. name: "Micro",
  43810. height: math.unit(0.5, "inches")
  43811. },
  43812. {
  43813. name: "Normal",
  43814. height: math.unit(6 + 2/12, "feet"),
  43815. default: true
  43816. },
  43817. {
  43818. name: "Macro",
  43819. height: math.unit(600, "feet")
  43820. },
  43821. ]
  43822. ))
  43823. characterMakers.push(() => makeCharacter(
  43824. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43825. {
  43826. front: {
  43827. height: math.unit(1.72, "meters"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/archinger/front.svg",
  43831. extra: 1861/1675,
  43832. bottom: 125/1986
  43833. }
  43834. },
  43835. back: {
  43836. height: math.unit(1.72, "meters"),
  43837. name: "Back",
  43838. image: {
  43839. source: "./media/characters/archinger/back.svg",
  43840. extra: 1844/1701,
  43841. bottom: 104/1948
  43842. }
  43843. },
  43844. cock: {
  43845. height: math.unit(0.59, "feet"),
  43846. name: "Cock",
  43847. image: {
  43848. source: "./media/characters/archinger/cock.svg"
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(1.72, "meters"),
  43856. default: true
  43857. },
  43858. {
  43859. name: "Macro",
  43860. height: math.unit(84, "meters")
  43861. },
  43862. {
  43863. name: "Macro+",
  43864. height: math.unit(112, "meters")
  43865. },
  43866. {
  43867. name: "Macro++",
  43868. height: math.unit(960, "meters")
  43869. },
  43870. {
  43871. name: "Macro+++",
  43872. height: math.unit(4, "km")
  43873. },
  43874. {
  43875. name: "Macro++++",
  43876. height: math.unit(48, "km")
  43877. },
  43878. {
  43879. name: "Macro+++++",
  43880. height: math.unit(4500, "km")
  43881. },
  43882. ]
  43883. ))
  43884. characterMakers.push(() => makeCharacter(
  43885. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43886. {
  43887. front: {
  43888. height: math.unit(5 + 5/12, "feet"),
  43889. name: "Front",
  43890. image: {
  43891. source: "./media/characters/alsnapz/front.svg",
  43892. extra: 1157/1065,
  43893. bottom: 42/1199
  43894. }
  43895. },
  43896. },
  43897. [
  43898. {
  43899. name: "Normal",
  43900. height: math.unit(5 + 5/12, "feet"),
  43901. default: true
  43902. },
  43903. ]
  43904. ))
  43905. characterMakers.push(() => makeCharacter(
  43906. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43907. {
  43908. side: {
  43909. height: math.unit(3.2, "earths"),
  43910. name: "Side",
  43911. image: {
  43912. source: "./media/characters/mag/side.svg",
  43913. extra: 1331/1008,
  43914. bottom: 52/1383
  43915. }
  43916. },
  43917. wing: {
  43918. height: math.unit(1.94, "earths"),
  43919. name: "Wing",
  43920. image: {
  43921. source: "./media/characters/mag/wing.svg"
  43922. }
  43923. },
  43924. dick: {
  43925. height: math.unit(1.8, "earths"),
  43926. name: "Dick",
  43927. image: {
  43928. source: "./media/characters/mag/dick.svg"
  43929. }
  43930. },
  43931. ass: {
  43932. height: math.unit(1.33, "earths"),
  43933. name: "Ass",
  43934. image: {
  43935. source: "./media/characters/mag/ass.svg"
  43936. }
  43937. },
  43938. head: {
  43939. height: math.unit(1.1, "earths"),
  43940. name: "Head",
  43941. image: {
  43942. source: "./media/characters/mag/head.svg"
  43943. }
  43944. },
  43945. maw: {
  43946. height: math.unit(1.62, "earths"),
  43947. name: "Maw",
  43948. image: {
  43949. source: "./media/characters/mag/maw.svg"
  43950. }
  43951. },
  43952. },
  43953. [
  43954. {
  43955. name: "Small",
  43956. height: math.unit(162, "feet")
  43957. },
  43958. {
  43959. name: "Normal",
  43960. height: math.unit(3.2, "earths"),
  43961. default: true
  43962. },
  43963. ]
  43964. ))
  43965. characterMakers.push(() => makeCharacter(
  43966. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43967. {
  43968. front: {
  43969. height: math.unit(512, "feet"),
  43970. weight: math.unit(63509, "tonnes"),
  43971. name: "Front",
  43972. image: {
  43973. source: "./media/characters/vorrel-harroc/front.svg",
  43974. extra: 1075/1063,
  43975. bottom: 62/1137
  43976. }
  43977. },
  43978. },
  43979. [
  43980. {
  43981. name: "Normal",
  43982. height: math.unit(10, "feet")
  43983. },
  43984. {
  43985. name: "Macro",
  43986. height: math.unit(512, "feet"),
  43987. default: true
  43988. },
  43989. {
  43990. name: "Megamacro",
  43991. height: math.unit(256, "miles")
  43992. },
  43993. {
  43994. name: "Gigamacro",
  43995. height: math.unit(4096, "miles")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  44001. {
  44002. side: {
  44003. height: math.unit(50, "feet"),
  44004. name: "Side",
  44005. image: {
  44006. source: "./media/characters/froimar/side.svg",
  44007. extra: 855/638,
  44008. bottom: 99/954
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Macro",
  44015. height: math.unit(50, "feet"),
  44016. default: true
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(210, "miles"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/timothy/front.svg",
  44028. extra: 1007/943,
  44029. bottom: 62/1069
  44030. }
  44031. },
  44032. frontSkirt: {
  44033. height: math.unit(210, "miles"),
  44034. name: "Front (Skirt)",
  44035. image: {
  44036. source: "./media/characters/timothy/front-skirt.svg",
  44037. extra: 1007/943,
  44038. bottom: 62/1069
  44039. }
  44040. },
  44041. frontCoat: {
  44042. height: math.unit(210, "miles"),
  44043. name: "Front (Coat)",
  44044. image: {
  44045. source: "./media/characters/timothy/front-coat.svg",
  44046. extra: 1007/943,
  44047. bottom: 62/1069
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Macro",
  44054. height: math.unit(210, "miles"),
  44055. default: true
  44056. },
  44057. {
  44058. name: "Megamacro",
  44059. height: math.unit(210000, "miles")
  44060. },
  44061. ]
  44062. ))
  44063. characterMakers.push(() => makeCharacter(
  44064. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44065. {
  44066. front: {
  44067. height: math.unit(188, "feet"),
  44068. name: "Front",
  44069. image: {
  44070. source: "./media/characters/pyotr/front.svg",
  44071. extra: 1912/1826,
  44072. bottom: 18/1930
  44073. }
  44074. },
  44075. },
  44076. [
  44077. {
  44078. name: "Macro",
  44079. height: math.unit(188, "feet"),
  44080. default: true
  44081. },
  44082. {
  44083. name: "Megamacro",
  44084. height: math.unit(8, "miles")
  44085. },
  44086. ]
  44087. ))
  44088. characterMakers.push(() => makeCharacter(
  44089. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44090. {
  44091. side: {
  44092. height: math.unit(10, "feet"),
  44093. weight: math.unit(4500, "lb"),
  44094. name: "Side",
  44095. image: {
  44096. source: "./media/characters/ackart/side.svg",
  44097. extra: 1776/1668,
  44098. bottom: 116/1892
  44099. }
  44100. },
  44101. },
  44102. [
  44103. {
  44104. name: "Normal",
  44105. height: math.unit(10, "feet"),
  44106. default: true
  44107. },
  44108. ]
  44109. ))
  44110. characterMakers.push(() => makeCharacter(
  44111. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44112. {
  44113. side: {
  44114. height: math.unit(21, "feet"),
  44115. name: "Side",
  44116. image: {
  44117. source: "./media/characters/nolow/side.svg",
  44118. extra: 1484/1434,
  44119. bottom: 85/1569
  44120. }
  44121. },
  44122. sideErect: {
  44123. height: math.unit(21, "feet"),
  44124. name: "Side-erect",
  44125. image: {
  44126. source: "./media/characters/nolow/side-erect.svg",
  44127. extra: 1484/1434,
  44128. bottom: 85/1569
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Regular",
  44135. height: math.unit(12, "feet")
  44136. },
  44137. {
  44138. name: "Big Chee",
  44139. height: math.unit(21, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44146. {
  44147. front: {
  44148. height: math.unit(7, "feet"),
  44149. weight: math.unit(250, "lb"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/nines/front.svg",
  44153. extra: 1741/1607,
  44154. bottom: 41/1782
  44155. }
  44156. },
  44157. side: {
  44158. height: math.unit(7, "feet"),
  44159. weight: math.unit(250, "lb"),
  44160. name: "Side",
  44161. image: {
  44162. source: "./media/characters/nines/side.svg",
  44163. extra: 1854/1735,
  44164. bottom: 93/1947
  44165. }
  44166. },
  44167. back: {
  44168. height: math.unit(7, "feet"),
  44169. weight: math.unit(250, "lb"),
  44170. name: "Back",
  44171. image: {
  44172. source: "./media/characters/nines/back.svg",
  44173. extra: 1748/1615,
  44174. bottom: 20/1768
  44175. }
  44176. },
  44177. },
  44178. [
  44179. {
  44180. name: "Megamacro",
  44181. height: math.unit(99, "km"),
  44182. default: true
  44183. },
  44184. ]
  44185. ))
  44186. characterMakers.push(() => makeCharacter(
  44187. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44188. {
  44189. front: {
  44190. height: math.unit(5 + 10/12, "feet"),
  44191. weight: math.unit(210, "lb"),
  44192. name: "Front",
  44193. image: {
  44194. source: "./media/characters/zenith/front.svg",
  44195. extra: 1531/1452,
  44196. bottom: 198/1729
  44197. }
  44198. },
  44199. back: {
  44200. height: math.unit(5 + 10/12, "feet"),
  44201. weight: math.unit(210, "lb"),
  44202. name: "Back",
  44203. image: {
  44204. source: "./media/characters/zenith/back.svg",
  44205. extra: 1571/1487,
  44206. bottom: 75/1646
  44207. }
  44208. },
  44209. },
  44210. [
  44211. {
  44212. name: "Normal",
  44213. height: math.unit(5 + 10/12, "feet"),
  44214. default: true
  44215. }
  44216. ]
  44217. ))
  44218. characterMakers.push(() => makeCharacter(
  44219. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44220. {
  44221. front: {
  44222. height: math.unit(4, "feet"),
  44223. weight: math.unit(60, "lb"),
  44224. name: "Front",
  44225. image: {
  44226. source: "./media/characters/jasper/front.svg",
  44227. extra: 1450/1379,
  44228. bottom: 19/1469
  44229. }
  44230. },
  44231. },
  44232. [
  44233. {
  44234. name: "Normal",
  44235. height: math.unit(4, "feet"),
  44236. default: true
  44237. },
  44238. ]
  44239. ))
  44240. characterMakers.push(() => makeCharacter(
  44241. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44242. {
  44243. front: {
  44244. height: math.unit(6 + 5/12, "feet"),
  44245. weight: math.unit(290, "lb"),
  44246. name: "Front",
  44247. image: {
  44248. source: "./media/characters/tiberius-thyben/front.svg",
  44249. extra: 757/739,
  44250. bottom: 39/796
  44251. }
  44252. },
  44253. },
  44254. [
  44255. {
  44256. name: "Micro",
  44257. height: math.unit(1.5, "inches")
  44258. },
  44259. {
  44260. name: "Normal",
  44261. height: math.unit(6 + 5/12, "feet"),
  44262. default: true
  44263. },
  44264. {
  44265. name: "Macro",
  44266. height: math.unit(300, "feet")
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44272. {
  44273. front: {
  44274. height: math.unit(5 + 6/12, "feet"),
  44275. weight: math.unit(60, "kg"),
  44276. name: "Front",
  44277. image: {
  44278. source: "./media/characters/sabre/front.svg",
  44279. extra: 738/671,
  44280. bottom: 27/765
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Teeny",
  44287. height: math.unit(2, "inches")
  44288. },
  44289. {
  44290. name: "Smol",
  44291. height: math.unit(8, "inches")
  44292. },
  44293. {
  44294. name: "Normal",
  44295. height: math.unit(5 + 6/12, "feet"),
  44296. default: true
  44297. },
  44298. {
  44299. name: "Mini-Macro",
  44300. height: math.unit(15, "feet")
  44301. },
  44302. {
  44303. name: "Macro",
  44304. height: math.unit(50, "feet")
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44310. {
  44311. front: {
  44312. height: math.unit(6 + 4/12, "feet"),
  44313. weight: math.unit(170, "lb"),
  44314. name: "Front",
  44315. image: {
  44316. source: "./media/characters/charlie/front.svg",
  44317. extra: 1348/1228,
  44318. bottom: 15/1363
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Macro",
  44325. height: math.unit(1700, "meters"),
  44326. default: true
  44327. },
  44328. {
  44329. name: "MegaMacro",
  44330. height: math.unit(20400, "meters")
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44336. {
  44337. front: {
  44338. height: math.unit(1.96, "meters"),
  44339. weight: math.unit(220, "lb"),
  44340. name: "Front",
  44341. image: {
  44342. source: "./media/characters/susan-grant/front.svg",
  44343. extra: 482/478,
  44344. bottom: 7/489
  44345. }
  44346. },
  44347. },
  44348. [
  44349. {
  44350. name: "Normal",
  44351. height: math.unit(1.96, "meters"),
  44352. default: true
  44353. },
  44354. {
  44355. name: "Macro",
  44356. height: math.unit(76.2, "meters")
  44357. },
  44358. {
  44359. name: "MegaMacro",
  44360. height: math.unit(305, "meters")
  44361. },
  44362. {
  44363. name: "GigaMacro",
  44364. height: math.unit(1220, "meters")
  44365. },
  44366. {
  44367. name: "SuperMacro",
  44368. height: math.unit(4878, "meters")
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(5 + 4/12, "feet"),
  44377. weight: math.unit(110, "lb"),
  44378. name: "Front",
  44379. image: {
  44380. source: "./media/characters/axel-isanov/front.svg",
  44381. extra: 1096/1065,
  44382. bottom: 13/1109
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(5 + 4/12, "feet"),
  44390. default: true
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44396. {
  44397. front: {
  44398. height: math.unit(9, "feet"),
  44399. weight: math.unit(467, "lb"),
  44400. name: "Front",
  44401. image: {
  44402. source: "./media/characters/necahual/front.svg",
  44403. extra: 920/873,
  44404. bottom: 26/946
  44405. }
  44406. },
  44407. back: {
  44408. height: math.unit(9, "feet"),
  44409. weight: math.unit(467, "lb"),
  44410. name: "Back",
  44411. image: {
  44412. source: "./media/characters/necahual/back.svg",
  44413. extra: 930/884,
  44414. bottom: 16/946
  44415. }
  44416. },
  44417. frontUnderwear: {
  44418. height: math.unit(9, "feet"),
  44419. weight: math.unit(467, "lb"),
  44420. name: "Front (Underwear)",
  44421. image: {
  44422. source: "./media/characters/necahual/front-underwear.svg",
  44423. extra: 920/873,
  44424. bottom: 26/946
  44425. }
  44426. },
  44427. frontDressed: {
  44428. height: math.unit(9, "feet"),
  44429. weight: math.unit(467, "lb"),
  44430. name: "Front (Dressed)",
  44431. image: {
  44432. source: "./media/characters/necahual/front-dressed.svg",
  44433. extra: 920/873,
  44434. bottom: 26/946
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Comprsesed",
  44441. height: math.unit(9, "feet")
  44442. },
  44443. {
  44444. name: "Natural",
  44445. height: math.unit(15, "feet"),
  44446. default: true
  44447. },
  44448. {
  44449. name: "Boosted",
  44450. height: math.unit(50, "feet")
  44451. },
  44452. {
  44453. name: "Boosted+",
  44454. height: math.unit(150, "feet")
  44455. },
  44456. {
  44457. name: "Max",
  44458. height: math.unit(500, "feet")
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44464. {
  44465. front: {
  44466. height: math.unit(22 + 1/12, "feet"),
  44467. weight: math.unit(3200, "lb"),
  44468. name: "Front",
  44469. image: {
  44470. source: "./media/characters/theo-acacia/front.svg",
  44471. extra: 1796/1741,
  44472. bottom: 83/1879
  44473. }
  44474. },
  44475. frontUnderwear: {
  44476. height: math.unit(22 + 1/12, "feet"),
  44477. weight: math.unit(3200, "lb"),
  44478. name: "Front (Underwear)",
  44479. image: {
  44480. source: "./media/characters/theo-acacia/front-underwear.svg",
  44481. extra: 1796/1741,
  44482. bottom: 83/1879
  44483. }
  44484. },
  44485. frontNude: {
  44486. height: math.unit(22 + 1/12, "feet"),
  44487. weight: math.unit(3200, "lb"),
  44488. name: "Front (Nude)",
  44489. image: {
  44490. source: "./media/characters/theo-acacia/front-nude.svg",
  44491. extra: 1796/1741,
  44492. bottom: 83/1879
  44493. }
  44494. },
  44495. },
  44496. [
  44497. {
  44498. name: "Normal",
  44499. height: math.unit(22 + 1/12, "feet"),
  44500. default: true
  44501. },
  44502. ]
  44503. ))
  44504. characterMakers.push(() => makeCharacter(
  44505. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44506. {
  44507. front: {
  44508. height: math.unit(20, "feet"),
  44509. name: "Front",
  44510. image: {
  44511. source: "./media/characters/astra/front.svg",
  44512. extra: 1850/1714,
  44513. bottom: 106/1956
  44514. }
  44515. },
  44516. frontUndressed: {
  44517. height: math.unit(20, "feet"),
  44518. name: "Front (Undressed)",
  44519. image: {
  44520. source: "./media/characters/astra/front-undressed.svg",
  44521. extra: 1926/1749,
  44522. bottom: 0/1926
  44523. }
  44524. },
  44525. hand: {
  44526. height: math.unit(1.53, "feet"),
  44527. name: "Hand",
  44528. image: {
  44529. source: "./media/characters/astra/hand.svg"
  44530. }
  44531. },
  44532. paw: {
  44533. height: math.unit(1.53, "feet"),
  44534. name: "Paw",
  44535. image: {
  44536. source: "./media/characters/astra/paw.svg"
  44537. }
  44538. },
  44539. },
  44540. [
  44541. {
  44542. name: "Smallest",
  44543. height: math.unit(20, "feet")
  44544. },
  44545. {
  44546. name: "Normal",
  44547. height: math.unit(1e9, "miles"),
  44548. default: true
  44549. },
  44550. {
  44551. name: "Larger",
  44552. height: math.unit(5, "multiverses")
  44553. },
  44554. {
  44555. name: "Largest",
  44556. height: math.unit(1e9, "multiverses")
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44562. {
  44563. front: {
  44564. height: math.unit(8, "feet"),
  44565. name: "Front",
  44566. image: {
  44567. source: "./media/characters/breanna/front.svg",
  44568. extra: 1912/1632,
  44569. bottom: 33/1945
  44570. }
  44571. },
  44572. },
  44573. [
  44574. {
  44575. name: "Smallest",
  44576. height: math.unit(8, "feet")
  44577. },
  44578. {
  44579. name: "Normal",
  44580. height: math.unit(1, "mile"),
  44581. default: true
  44582. },
  44583. {
  44584. name: "Maximum",
  44585. height: math.unit(1500000000000, "lightyears")
  44586. },
  44587. ]
  44588. ))
  44589. characterMakers.push(() => makeCharacter(
  44590. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44591. {
  44592. front: {
  44593. height: math.unit(5 + 11/12, "feet"),
  44594. weight: math.unit(155, "lb"),
  44595. name: "Front",
  44596. image: {
  44597. source: "./media/characters/cai/front.svg",
  44598. extra: 1823/1702,
  44599. bottom: 32/1855
  44600. }
  44601. },
  44602. back: {
  44603. height: math.unit(5 + 11/12, "feet"),
  44604. weight: math.unit(155, "lb"),
  44605. name: "Back",
  44606. image: {
  44607. source: "./media/characters/cai/back.svg",
  44608. extra: 1809/1708,
  44609. bottom: 31/1840
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(5 + 11/12, "feet"),
  44617. default: true
  44618. },
  44619. {
  44620. name: "Big",
  44621. height: math.unit(15, "feet")
  44622. },
  44623. {
  44624. name: "Macro",
  44625. height: math.unit(200, "feet")
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44631. {
  44632. front: {
  44633. height: math.unit(5 + 6/12, "feet"),
  44634. weight: math.unit(160, "lb"),
  44635. name: "Front",
  44636. image: {
  44637. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44638. extra: 1227/1174,
  44639. bottom: 37/1264
  44640. }
  44641. },
  44642. },
  44643. [
  44644. {
  44645. name: "Macro",
  44646. height: math.unit(444, "meters"),
  44647. default: true
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44653. {
  44654. front: {
  44655. height: math.unit(18 + 7/12, "feet"),
  44656. name: "Front",
  44657. image: {
  44658. source: "./media/characters/rex/front.svg",
  44659. extra: 1941/1807,
  44660. bottom: 66/2007
  44661. }
  44662. },
  44663. back: {
  44664. height: math.unit(18 + 7/12, "feet"),
  44665. name: "Back",
  44666. image: {
  44667. source: "./media/characters/rex/back.svg",
  44668. extra: 1937/1822,
  44669. bottom: 42/1979
  44670. }
  44671. },
  44672. boot: {
  44673. height: math.unit(3.45, "feet"),
  44674. name: "Boot",
  44675. image: {
  44676. source: "./media/characters/rex/boot.svg"
  44677. }
  44678. },
  44679. paw: {
  44680. height: math.unit(4.17, "feet"),
  44681. name: "Paw",
  44682. image: {
  44683. source: "./media/characters/rex/paw.svg"
  44684. }
  44685. },
  44686. head: {
  44687. height: math.unit(6.728, "feet"),
  44688. name: "Head",
  44689. image: {
  44690. source: "./media/characters/rex/head.svg"
  44691. }
  44692. },
  44693. },
  44694. [
  44695. {
  44696. name: "Nano",
  44697. height: math.unit(18 + 7/12, "feet")
  44698. },
  44699. {
  44700. name: "Micro",
  44701. height: math.unit(1.5, "megameters")
  44702. },
  44703. {
  44704. name: "Normal",
  44705. height: math.unit(440, "megameters"),
  44706. default: true
  44707. },
  44708. {
  44709. name: "Macro",
  44710. height: math.unit(2.5, "gigameters")
  44711. },
  44712. {
  44713. name: "Gigamacro",
  44714. height: math.unit(2, "galaxies")
  44715. },
  44716. ]
  44717. ))
  44718. characterMakers.push(() => makeCharacter(
  44719. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44720. {
  44721. side: {
  44722. height: math.unit(32, "feet"),
  44723. weight: math.unit(250000, "lb"),
  44724. name: "Side",
  44725. image: {
  44726. source: "./media/characters/silverwing/side.svg",
  44727. extra: 1100/1019,
  44728. bottom: 204/1304
  44729. }
  44730. },
  44731. },
  44732. [
  44733. {
  44734. name: "Normal",
  44735. height: math.unit(32, "feet"),
  44736. default: true
  44737. },
  44738. ]
  44739. ))
  44740. characterMakers.push(() => makeCharacter(
  44741. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44742. {
  44743. front: {
  44744. height: math.unit(6 + 6/12, "feet"),
  44745. weight: math.unit(350, "lb"),
  44746. name: "Front",
  44747. image: {
  44748. source: "./media/characters/tristan-hawthorne/front.svg",
  44749. extra: 1159/1124,
  44750. bottom: 37/1196
  44751. },
  44752. form: "labrador",
  44753. default: true
  44754. },
  44755. skunkFront: {
  44756. height: math.unit(4 + 6/12, "feet"),
  44757. weight: math.unit(120, "lb"),
  44758. name: "Front",
  44759. image: {
  44760. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44761. extra: 1609/1551,
  44762. bottom: 169/1778
  44763. },
  44764. form: "skunk",
  44765. default: true
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Normal",
  44771. height: math.unit(6 + 6/12, "feet"),
  44772. form: "labrador",
  44773. default: true
  44774. },
  44775. {
  44776. name: "Normal",
  44777. height: math.unit(4 + 6/12, "feet"),
  44778. form: "skunk",
  44779. default: true
  44780. },
  44781. ],
  44782. {
  44783. "labrador": {
  44784. name: "Labrador",
  44785. default: true
  44786. },
  44787. "skunk": {
  44788. name: "Skunk"
  44789. }
  44790. }
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44794. {
  44795. front: {
  44796. height: math.unit(5 + 11/12, "feet"),
  44797. weight: math.unit(190, "lb"),
  44798. name: "Front",
  44799. image: {
  44800. source: "./media/characters/mizu/front.svg",
  44801. extra: 1988/1788,
  44802. bottom: 14/2002
  44803. }
  44804. },
  44805. },
  44806. [
  44807. {
  44808. name: "Normal",
  44809. height: math.unit(5 + 11/12, "feet"),
  44810. default: true
  44811. },
  44812. ]
  44813. ))
  44814. characterMakers.push(() => makeCharacter(
  44815. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44816. {
  44817. front: {
  44818. height: math.unit(1.7, "feet"),
  44819. weight: math.unit(50, "lb"),
  44820. name: "Front",
  44821. image: {
  44822. source: "./media/characters/dechroma/front.svg",
  44823. extra: 1095/859,
  44824. bottom: 64/1159
  44825. }
  44826. },
  44827. },
  44828. [
  44829. {
  44830. name: "Normal",
  44831. height: math.unit(1.7, "feet"),
  44832. default: true
  44833. },
  44834. ]
  44835. ))
  44836. characterMakers.push(() => makeCharacter(
  44837. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44838. {
  44839. side: {
  44840. height: math.unit(30, "feet"),
  44841. name: "Side",
  44842. image: {
  44843. source: "./media/characters/veluren-thanazel/side.svg",
  44844. extra: 1611/633,
  44845. bottom: 118/1729
  44846. }
  44847. },
  44848. front: {
  44849. height: math.unit(30, "feet"),
  44850. name: "Front",
  44851. image: {
  44852. source: "./media/characters/veluren-thanazel/front.svg",
  44853. extra: 1486/636,
  44854. bottom: 238/1724
  44855. }
  44856. },
  44857. head: {
  44858. height: math.unit(21.4, "feet"),
  44859. name: "Head",
  44860. image: {
  44861. source: "./media/characters/veluren-thanazel/head.svg"
  44862. }
  44863. },
  44864. genitals: {
  44865. height: math.unit(19.4, "feet"),
  44866. name: "Genitals",
  44867. image: {
  44868. source: "./media/characters/veluren-thanazel/genitals.svg"
  44869. }
  44870. },
  44871. },
  44872. [
  44873. {
  44874. name: "Social",
  44875. height: math.unit(6, "feet")
  44876. },
  44877. {
  44878. name: "Play",
  44879. height: math.unit(12, "feet")
  44880. },
  44881. {
  44882. name: "True",
  44883. height: math.unit(30, "feet"),
  44884. default: true
  44885. },
  44886. ]
  44887. ))
  44888. characterMakers.push(() => makeCharacter(
  44889. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44890. {
  44891. front: {
  44892. height: math.unit(7 + 6/12, "feet"),
  44893. weight: math.unit(500, "kg"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/arcturas/front.svg",
  44897. extra: 1700/1500,
  44898. bottom: 145/1845
  44899. }
  44900. },
  44901. },
  44902. [
  44903. {
  44904. name: "Normal",
  44905. height: math.unit(7 + 6/12, "feet"),
  44906. default: true
  44907. },
  44908. ]
  44909. ))
  44910. characterMakers.push(() => makeCharacter(
  44911. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44912. {
  44913. side: {
  44914. height: math.unit(6, "feet"),
  44915. weight: math.unit(2, "tons"),
  44916. name: "Side",
  44917. image: {
  44918. source: "./media/characters/vitaen/side.svg",
  44919. extra: 1157/617,
  44920. bottom: 122/1279
  44921. }
  44922. },
  44923. },
  44924. [
  44925. {
  44926. name: "Normal",
  44927. height: math.unit(6, "feet"),
  44928. default: true
  44929. },
  44930. ]
  44931. ))
  44932. characterMakers.push(() => makeCharacter(
  44933. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44934. {
  44935. front: {
  44936. height: math.unit(19, "feet"),
  44937. name: "Front",
  44938. image: {
  44939. source: "./media/characters/fia-dreamweaver/front.svg",
  44940. extra: 1630/1504,
  44941. bottom: 25/1655
  44942. }
  44943. },
  44944. },
  44945. [
  44946. {
  44947. name: "Normal",
  44948. height: math.unit(19, "feet"),
  44949. default: true
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44955. {
  44956. front: {
  44957. height: math.unit(5 + 4/12, "feet"),
  44958. name: "Front",
  44959. image: {
  44960. source: "./media/characters/artan/front.svg",
  44961. extra: 1618/1535,
  44962. bottom: 46/1664
  44963. }
  44964. },
  44965. back: {
  44966. height: math.unit(5 + 4/12, "feet"),
  44967. name: "Back",
  44968. image: {
  44969. source: "./media/characters/artan/back.svg",
  44970. extra: 1618/1543,
  44971. bottom: 31/1649
  44972. }
  44973. },
  44974. },
  44975. [
  44976. {
  44977. name: "Normal",
  44978. height: math.unit(5 + 4/12, "feet"),
  44979. default: true
  44980. },
  44981. ]
  44982. ))
  44983. characterMakers.push(() => makeCharacter(
  44984. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44985. {
  44986. side: {
  44987. height: math.unit(182, "cm"),
  44988. weight: math.unit(1000, "lb"),
  44989. name: "Side",
  44990. image: {
  44991. source: "./media/characters/silver-dragon/side.svg",
  44992. extra: 710/287,
  44993. bottom: 88/798
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(182, "cm"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  45007. {
  45008. side: {
  45009. height: math.unit(6 + 6/12, "feet"),
  45010. weight: math.unit(1.5, "tons"),
  45011. name: "Side",
  45012. image: {
  45013. source: "./media/characters/zephyr/side.svg",
  45014. extra: 1433/586,
  45015. bottom: 109/1542
  45016. }
  45017. },
  45018. },
  45019. [
  45020. {
  45021. name: "Normal",
  45022. height: math.unit(6 + 6/12, "feet"),
  45023. default: true
  45024. },
  45025. ]
  45026. ))
  45027. characterMakers.push(() => makeCharacter(
  45028. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  45029. {
  45030. side: {
  45031. height: math.unit(1, "feet"),
  45032. name: "Side",
  45033. image: {
  45034. source: "./media/characters/vixye/side.svg",
  45035. extra: 632/541,
  45036. bottom: 0/632
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(1, "feet"),
  45044. default: true
  45045. },
  45046. {
  45047. name: "True",
  45048. height: math.unit(1e15, "multiverses")
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  45054. {
  45055. front: {
  45056. height: math.unit(8 + 2/12, "feet"),
  45057. weight: math.unit(650, "lb"),
  45058. name: "Front",
  45059. image: {
  45060. source: "./media/characters/darla-mac-lochlainn/front.svg",
  45061. extra: 1174/1137,
  45062. bottom: 82/1256
  45063. }
  45064. },
  45065. back: {
  45066. height: math.unit(8 + 2/12, "feet"),
  45067. weight: math.unit(650, "lb"),
  45068. name: "Back",
  45069. image: {
  45070. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45071. extra: 1204/1157,
  45072. bottom: 46/1250
  45073. }
  45074. },
  45075. },
  45076. [
  45077. {
  45078. name: "Wildform",
  45079. height: math.unit(8 + 2/12, "feet"),
  45080. default: true
  45081. },
  45082. ]
  45083. ))
  45084. characterMakers.push(() => makeCharacter(
  45085. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45086. {
  45087. front: {
  45088. height: math.unit(18, "feet"),
  45089. name: "Front",
  45090. image: {
  45091. source: "./media/characters/cyphin/front.svg",
  45092. extra: 970/886,
  45093. bottom: 42/1012
  45094. }
  45095. },
  45096. back: {
  45097. height: math.unit(18, "feet"),
  45098. name: "Back",
  45099. image: {
  45100. source: "./media/characters/cyphin/back.svg",
  45101. extra: 1009/894,
  45102. bottom: 24/1033
  45103. }
  45104. },
  45105. head: {
  45106. height: math.unit(5.05, "feet"),
  45107. name: "Head",
  45108. image: {
  45109. source: "./media/characters/cyphin/head.svg"
  45110. }
  45111. },
  45112. tailbud: {
  45113. height: math.unit(5, "feet"),
  45114. name: "Tailbud",
  45115. image: {
  45116. source: "./media/characters/cyphin/tailbud.svg"
  45117. }
  45118. },
  45119. },
  45120. [
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45125. {
  45126. side: {
  45127. height: math.unit(10, "feet"),
  45128. weight: math.unit(6, "tons"),
  45129. name: "Side",
  45130. image: {
  45131. source: "./media/characters/raijin/side.svg",
  45132. extra: 1529/613,
  45133. bottom: 337/1866
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(10, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45147. {
  45148. side: {
  45149. height: math.unit(9, "feet"),
  45150. name: "Side",
  45151. image: {
  45152. source: "./media/characters/nilghais/side.svg",
  45153. extra: 1047/744,
  45154. bottom: 91/1138
  45155. }
  45156. },
  45157. head: {
  45158. height: math.unit(3.14, "feet"),
  45159. name: "Head",
  45160. image: {
  45161. source: "./media/characters/nilghais/head.svg"
  45162. }
  45163. },
  45164. mouth: {
  45165. height: math.unit(4.6, "feet"),
  45166. name: "Mouth",
  45167. image: {
  45168. source: "./media/characters/nilghais/mouth.svg"
  45169. }
  45170. },
  45171. wings: {
  45172. height: math.unit(24, "feet"),
  45173. name: "Wings",
  45174. image: {
  45175. source: "./media/characters/nilghais/wings.svg"
  45176. }
  45177. },
  45178. ass: {
  45179. height: math.unit(6.12, "feet"),
  45180. name: "Ass",
  45181. image: {
  45182. source: "./media/characters/nilghais/ass.svg"
  45183. }
  45184. },
  45185. },
  45186. [
  45187. {
  45188. name: "Normal",
  45189. height: math.unit(9, "feet"),
  45190. default: true
  45191. },
  45192. ]
  45193. ))
  45194. characterMakers.push(() => makeCharacter(
  45195. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45196. {
  45197. regular: {
  45198. height: math.unit(16 + 2/12, "feet"),
  45199. weight: math.unit(2300, "lb"),
  45200. name: "Regular",
  45201. image: {
  45202. source: "./media/characters/zolgar/regular.svg",
  45203. extra: 1246/1004,
  45204. bottom: 124/1370
  45205. }
  45206. },
  45207. boxers: {
  45208. height: math.unit(16 + 2/12, "feet"),
  45209. weight: math.unit(2300, "lb"),
  45210. name: "Boxers",
  45211. image: {
  45212. source: "./media/characters/zolgar/boxers.svg",
  45213. extra: 1246/1004,
  45214. bottom: 124/1370
  45215. }
  45216. },
  45217. armored: {
  45218. height: math.unit(16 + 2/12, "feet"),
  45219. weight: math.unit(2300, "lb"),
  45220. name: "Armored",
  45221. image: {
  45222. source: "./media/characters/zolgar/armored.svg",
  45223. extra: 1246/1004,
  45224. bottom: 124/1370
  45225. }
  45226. },
  45227. goth: {
  45228. height: math.unit(16 + 2/12, "feet"),
  45229. weight: math.unit(2300, "lb"),
  45230. name: "Goth",
  45231. image: {
  45232. source: "./media/characters/zolgar/goth.svg",
  45233. extra: 1246/1004,
  45234. bottom: 124/1370
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Shrunken Down",
  45241. height: math.unit(9 + 2/12, "feet")
  45242. },
  45243. {
  45244. name: "Normal",
  45245. height: math.unit(16 + 2/12, "feet"),
  45246. default: true
  45247. },
  45248. ]
  45249. ))
  45250. characterMakers.push(() => makeCharacter(
  45251. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45252. {
  45253. front: {
  45254. height: math.unit(6, "feet"),
  45255. weight: math.unit(168, "lb"),
  45256. name: "Front",
  45257. image: {
  45258. source: "./media/characters/luca/front.svg",
  45259. extra: 841/667,
  45260. bottom: 102/943
  45261. }
  45262. },
  45263. },
  45264. [
  45265. {
  45266. name: "Normal",
  45267. height: math.unit(6, "feet"),
  45268. default: true
  45269. },
  45270. ]
  45271. ))
  45272. characterMakers.push(() => makeCharacter(
  45273. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45274. {
  45275. side: {
  45276. height: math.unit(7 + 3/12, "feet"),
  45277. weight: math.unit(312, "lb"),
  45278. name: "Side",
  45279. image: {
  45280. source: "./media/characters/zezo/side.svg",
  45281. extra: 1192/1067,
  45282. bottom: 63/1255
  45283. }
  45284. },
  45285. },
  45286. [
  45287. {
  45288. name: "Normal",
  45289. height: math.unit(7 + 3/12, "feet"),
  45290. default: true
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45296. {
  45297. front: {
  45298. height: math.unit(5 + 5/12, "feet"),
  45299. weight: math.unit(170, "lb"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/mayso/front.svg",
  45303. extra: 1215/1108,
  45304. bottom: 16/1231
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(5 + 5/12, "feet"),
  45312. default: true
  45313. },
  45314. ]
  45315. ))
  45316. characterMakers.push(() => makeCharacter(
  45317. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45318. {
  45319. front: {
  45320. height: math.unit(4 + 3/12, "feet"),
  45321. weight: math.unit(80, "lb"),
  45322. name: "Front",
  45323. image: {
  45324. source: "./media/characters/hess/front.svg",
  45325. extra: 1200/1123,
  45326. bottom: 16/1216
  45327. }
  45328. },
  45329. },
  45330. [
  45331. {
  45332. name: "Normal",
  45333. height: math.unit(4 + 3/12, "feet"),
  45334. default: true
  45335. },
  45336. ]
  45337. ))
  45338. characterMakers.push(() => makeCharacter(
  45339. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45340. {
  45341. front: {
  45342. height: math.unit(1.9, "meters"),
  45343. name: "Front",
  45344. image: {
  45345. source: "./media/characters/ashgar/front.svg",
  45346. extra: 1177/1146,
  45347. bottom: 99/1276
  45348. }
  45349. },
  45350. back: {
  45351. height: math.unit(1.9, "meters"),
  45352. name: "Back",
  45353. image: {
  45354. source: "./media/characters/ashgar/back.svg",
  45355. extra: 1201/1183,
  45356. bottom: 53/1254
  45357. }
  45358. },
  45359. feral: {
  45360. height: math.unit(1.4, "meters"),
  45361. name: "Feral",
  45362. image: {
  45363. source: "./media/characters/ashgar/feral.svg",
  45364. extra: 370/345,
  45365. bottom: 45/415
  45366. }
  45367. },
  45368. },
  45369. [
  45370. {
  45371. name: "Normal",
  45372. height: math.unit(1.9, "meters"),
  45373. default: true
  45374. },
  45375. ]
  45376. ))
  45377. characterMakers.push(() => makeCharacter(
  45378. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45379. {
  45380. regular: {
  45381. height: math.unit(6, "feet"),
  45382. weight: math.unit(220, "lb"),
  45383. name: "Regular",
  45384. image: {
  45385. source: "./media/characters/phillip/regular.svg",
  45386. extra: 1373/1277,
  45387. bottom: 75/1448
  45388. }
  45389. },
  45390. dressed: {
  45391. height: math.unit(6, "feet"),
  45392. weight: math.unit(220, "lb"),
  45393. name: "Dressed",
  45394. image: {
  45395. source: "./media/characters/phillip/dressed.svg",
  45396. extra: 1373/1277,
  45397. bottom: 75/1448
  45398. }
  45399. },
  45400. paw: {
  45401. height: math.unit(1.44, "feet"),
  45402. name: "Paw",
  45403. image: {
  45404. source: "./media/characters/phillip/paw.svg"
  45405. }
  45406. },
  45407. },
  45408. [
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(6, "feet"),
  45412. default: true
  45413. },
  45414. ]
  45415. ))
  45416. characterMakers.push(() => makeCharacter(
  45417. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45418. {
  45419. side: {
  45420. height: math.unit(42, "feet"),
  45421. name: "Side",
  45422. image: {
  45423. source: "./media/characters/uvula/side.svg",
  45424. extra: 683/586,
  45425. bottom: 60/743
  45426. }
  45427. },
  45428. front: {
  45429. height: math.unit(42, "feet"),
  45430. name: "Front",
  45431. image: {
  45432. source: "./media/characters/uvula/front.svg",
  45433. extra: 705/613,
  45434. bottom: 54/759
  45435. }
  45436. },
  45437. maw: {
  45438. height: math.unit(23.5, "feet"),
  45439. name: "Maw",
  45440. image: {
  45441. source: "./media/characters/uvula/maw.svg"
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Original Size",
  45448. height: math.unit(14, "inches")
  45449. },
  45450. {
  45451. name: "Human Size",
  45452. height: math.unit(6, "feet")
  45453. },
  45454. {
  45455. name: "Big",
  45456. height: math.unit(42, "feet"),
  45457. default: true
  45458. },
  45459. {
  45460. name: "Bigger",
  45461. height: math.unit(100, "feet")
  45462. },
  45463. ]
  45464. ))
  45465. characterMakers.push(() => makeCharacter(
  45466. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45467. {
  45468. front: {
  45469. height: math.unit(5 + 11/12, "feet"),
  45470. name: "Front",
  45471. image: {
  45472. source: "./media/characters/lannah/front.svg",
  45473. extra: 1208/1113,
  45474. bottom: 97/1305
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(5 + 11/12, "feet"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45488. {
  45489. front: {
  45490. height: math.unit(6 + 3/12, "feet"),
  45491. weight: math.unit(3.5, "tons"),
  45492. name: "Front",
  45493. image: {
  45494. source: "./media/characters/emberflame/front.svg",
  45495. extra: 1198/672,
  45496. bottom: 82/1280
  45497. }
  45498. },
  45499. side: {
  45500. height: math.unit(6 + 3/12, "feet"),
  45501. weight: math.unit(3.5, "tons"),
  45502. name: "Side",
  45503. image: {
  45504. source: "./media/characters/emberflame/side.svg",
  45505. extra: 938/527,
  45506. bottom: 56/994
  45507. }
  45508. },
  45509. },
  45510. [
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(6 + 3/12, "feet"),
  45514. default: true
  45515. },
  45516. ]
  45517. ))
  45518. characterMakers.push(() => makeCharacter(
  45519. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45520. {
  45521. side: {
  45522. height: math.unit(17.5, "feet"),
  45523. weight: math.unit(35, "tons"),
  45524. name: "Side",
  45525. image: {
  45526. source: "./media/characters/sophie-ambrose/side.svg",
  45527. extra: 1573/1242,
  45528. bottom: 71/1644
  45529. }
  45530. },
  45531. maw: {
  45532. height: math.unit(7.4, "feet"),
  45533. name: "Maw",
  45534. image: {
  45535. source: "./media/characters/sophie-ambrose/maw.svg"
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Normal",
  45542. height: math.unit(17.5, "feet"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(280, "feet"),
  45552. weight: math.unit(550, "tons"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/king-mugi/front.svg",
  45556. extra: 1102/947,
  45557. bottom: 104/1206
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "King Mugi",
  45564. height: math.unit(280, "feet"),
  45565. default: true
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45571. {
  45572. female: {
  45573. height: math.unit(300, "meters"),
  45574. name: "Front",
  45575. image: {
  45576. source: "./media/characters/nova-fox/female.svg",
  45577. extra: 664/632,
  45578. bottom: 51/715
  45579. },
  45580. form: "female",
  45581. default: true
  45582. },
  45583. male: {
  45584. height: math.unit(300, "meters"),
  45585. name: "Front",
  45586. image: {
  45587. source: "./media/characters/nova-fox/male.svg",
  45588. extra: 663/631,
  45589. bottom: 30/693
  45590. },
  45591. form: "male",
  45592. default: true
  45593. },
  45594. },
  45595. [
  45596. {
  45597. name: "Macro",
  45598. height: math.unit(300, "meters"),
  45599. default: true,
  45600. allForms: true
  45601. },
  45602. ],
  45603. {
  45604. "female": {
  45605. name: "Female",
  45606. default: true
  45607. },
  45608. "male": {
  45609. name: "Male",
  45610. },
  45611. }
  45612. ))
  45613. characterMakers.push(() => makeCharacter(
  45614. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45615. {
  45616. front: {
  45617. height: math.unit(6 + 3/12, "feet"),
  45618. weight: math.unit(170, "lb"),
  45619. name: "Front",
  45620. image: {
  45621. source: "./media/characters/sam-bat/front.svg",
  45622. extra: 1601/1411,
  45623. bottom: 125/1726
  45624. }
  45625. },
  45626. back: {
  45627. height: math.unit(6 + 3/12, "feet"),
  45628. weight: math.unit(170, "lb"),
  45629. name: "Back",
  45630. image: {
  45631. source: "./media/characters/sam-bat/back.svg",
  45632. extra: 1577/1405,
  45633. bottom: 58/1635
  45634. }
  45635. },
  45636. },
  45637. [
  45638. {
  45639. name: "Normal",
  45640. height: math.unit(6 + 3/12, "feet"),
  45641. default: true
  45642. },
  45643. ]
  45644. ))
  45645. characterMakers.push(() => makeCharacter(
  45646. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45647. {
  45648. front: {
  45649. height: math.unit(59, "feet"),
  45650. weight: math.unit(40000, "lb"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/inari/front.svg",
  45654. extra: 1884/1350,
  45655. bottom: 95/1979
  45656. }
  45657. },
  45658. },
  45659. [
  45660. {
  45661. name: "Gigantamax",
  45662. height: math.unit(59, "feet"),
  45663. default: true
  45664. },
  45665. ]
  45666. ))
  45667. characterMakers.push(() => makeCharacter(
  45668. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45669. {
  45670. front: {
  45671. height: math.unit(5 + 8/12, "feet"),
  45672. name: "Front",
  45673. image: {
  45674. source: "./media/characters/elizabeth/front.svg",
  45675. extra: 1395/1298,
  45676. bottom: 54/1449
  45677. }
  45678. },
  45679. mouth: {
  45680. height: math.unit(1.97, "feet"),
  45681. name: "Mouth",
  45682. image: {
  45683. source: "./media/characters/elizabeth/mouth.svg"
  45684. }
  45685. },
  45686. foot: {
  45687. height: math.unit(1.17, "feet"),
  45688. name: "Foot",
  45689. image: {
  45690. source: "./media/characters/elizabeth/foot.svg"
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(5 + 8/12, "feet"),
  45698. default: true
  45699. },
  45700. {
  45701. name: "Minimacro",
  45702. height: math.unit(18, "feet")
  45703. },
  45704. {
  45705. name: "Macro",
  45706. height: math.unit(180, "feet")
  45707. },
  45708. ]
  45709. ))
  45710. characterMakers.push(() => makeCharacter(
  45711. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45712. {
  45713. front: {
  45714. height: math.unit(5 + 2/12, "feet"),
  45715. name: "Front",
  45716. image: {
  45717. source: "./media/characters/october-gossamer/front.svg",
  45718. extra: 505/454,
  45719. bottom: 7/512
  45720. }
  45721. },
  45722. back: {
  45723. height: math.unit(5 + 2/12, "feet"),
  45724. name: "Back",
  45725. image: {
  45726. source: "./media/characters/october-gossamer/back.svg",
  45727. extra: 501/454,
  45728. bottom: 11/512
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(5 + 2/12, "feet"),
  45736. default: true
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45742. {
  45743. front: {
  45744. height: math.unit(5, "feet"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/epiglottis/front.svg",
  45748. extra: 923/849,
  45749. bottom: 17/940
  45750. }
  45751. },
  45752. },
  45753. [
  45754. {
  45755. name: "Original Size",
  45756. height: math.unit(10, "inches")
  45757. },
  45758. {
  45759. name: "Human Size",
  45760. height: math.unit(5, "feet"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Big",
  45765. height: math.unit(25, "feet")
  45766. },
  45767. {
  45768. name: "Bigger",
  45769. height: math.unit(50, "feet")
  45770. },
  45771. {
  45772. name: "oh lawd",
  45773. height: math.unit(75, "feet")
  45774. },
  45775. ]
  45776. ))
  45777. characterMakers.push(() => makeCharacter(
  45778. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45779. {
  45780. front: {
  45781. height: math.unit(2 + 4/12, "feet"),
  45782. weight: math.unit(60, "lb"),
  45783. name: "Front",
  45784. image: {
  45785. source: "./media/characters/lerm/front.svg",
  45786. extra: 796/790,
  45787. bottom: 79/875
  45788. }
  45789. },
  45790. },
  45791. [
  45792. {
  45793. name: "Normal",
  45794. height: math.unit(2 + 4/12, "feet"),
  45795. default: true
  45796. },
  45797. ]
  45798. ))
  45799. characterMakers.push(() => makeCharacter(
  45800. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45801. {
  45802. front: {
  45803. height: math.unit(5.5, "feet"),
  45804. weight: math.unit(130, "lb"),
  45805. name: "Front",
  45806. image: {
  45807. source: "./media/characters/xena-nebadon/front.svg",
  45808. extra: 1828/1730,
  45809. bottom: 79/1907
  45810. }
  45811. },
  45812. },
  45813. [
  45814. {
  45815. name: "Tiny Puppy",
  45816. height: math.unit(3, "inches")
  45817. },
  45818. {
  45819. name: "Normal",
  45820. height: math.unit(5.5, "feet"),
  45821. default: true
  45822. },
  45823. {
  45824. name: "Lotta Lady",
  45825. height: math.unit(12, "feet")
  45826. },
  45827. {
  45828. name: "Pretty Big",
  45829. height: math.unit(100, "feet")
  45830. },
  45831. {
  45832. name: "Big",
  45833. height: math.unit(500, "feet")
  45834. },
  45835. {
  45836. name: "Skyscraper Toys",
  45837. height: math.unit(2500, "feet")
  45838. },
  45839. {
  45840. name: "Plane Catcher",
  45841. height: math.unit(8, "miles")
  45842. },
  45843. {
  45844. name: "Planet Toys",
  45845. height: math.unit(15, "earths")
  45846. },
  45847. {
  45848. name: "Stardust",
  45849. height: math.unit(0.25, "galaxies")
  45850. },
  45851. {
  45852. name: "Snacks",
  45853. height: math.unit(70, "universes")
  45854. },
  45855. ]
  45856. ))
  45857. characterMakers.push(() => makeCharacter(
  45858. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45859. {
  45860. front: {
  45861. height: math.unit(1.6, "meters"),
  45862. weight: math.unit(60, "kg"),
  45863. name: "Front",
  45864. image: {
  45865. source: "./media/characters/bounty/front.svg",
  45866. extra: 1426/1308,
  45867. bottom: 15/1441
  45868. }
  45869. },
  45870. back: {
  45871. height: math.unit(1.6, "meters"),
  45872. weight: math.unit(60, "kg"),
  45873. name: "Back",
  45874. image: {
  45875. source: "./media/characters/bounty/back.svg",
  45876. extra: 1417/1307,
  45877. bottom: 8/1425
  45878. }
  45879. },
  45880. },
  45881. [
  45882. {
  45883. name: "Normal",
  45884. height: math.unit(1.6, "meters"),
  45885. default: true
  45886. },
  45887. {
  45888. name: "Macro",
  45889. height: math.unit(300, "meters")
  45890. },
  45891. ]
  45892. ))
  45893. characterMakers.push(() => makeCharacter(
  45894. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45895. {
  45896. front: {
  45897. height: math.unit(2 + 8/12, "feet"),
  45898. weight: math.unit(15, "lb"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/mochi/front.svg",
  45902. extra: 1022/852,
  45903. bottom: 435/1457
  45904. }
  45905. },
  45906. back: {
  45907. height: math.unit(2 + 8/12, "feet"),
  45908. weight: math.unit(15, "lb"),
  45909. name: "Back",
  45910. image: {
  45911. source: "./media/characters/mochi/back.svg",
  45912. extra: 1335/1119,
  45913. bottom: 39/1374
  45914. }
  45915. },
  45916. bird: {
  45917. height: math.unit(2 + 8/12, "feet"),
  45918. weight: math.unit(15, "lb"),
  45919. name: "Bird",
  45920. image: {
  45921. source: "./media/characters/mochi/bird.svg",
  45922. extra: 1251/1113,
  45923. bottom: 178/1429
  45924. }
  45925. },
  45926. kaiju: {
  45927. height: math.unit(154, "feet"),
  45928. weight: math.unit(1e7, "lb"),
  45929. name: "Kaiju",
  45930. image: {
  45931. source: "./media/characters/mochi/kaiju.svg",
  45932. extra: 460/324,
  45933. bottom: 40/500
  45934. }
  45935. },
  45936. head: {
  45937. height: math.unit(1.21, "feet"),
  45938. name: "Head",
  45939. image: {
  45940. source: "./media/characters/mochi/head.svg"
  45941. }
  45942. },
  45943. alternateTail: {
  45944. height: math.unit(2 + 8/12, "feet"),
  45945. weight: math.unit(45, "lb"),
  45946. name: "Alternate Tail",
  45947. image: {
  45948. source: "./media/characters/mochi/alternate-tail.svg",
  45949. extra: 139/76,
  45950. bottom: 45/184
  45951. }
  45952. },
  45953. },
  45954. [
  45955. {
  45956. name: "Micro",
  45957. height: math.unit(2, "inches")
  45958. },
  45959. {
  45960. name: "Normal",
  45961. height: math.unit(2 + 8/12, "feet"),
  45962. default: true
  45963. },
  45964. {
  45965. name: "Macro",
  45966. height: math.unit(106, "feet")
  45967. },
  45968. ]
  45969. ))
  45970. characterMakers.push(() => makeCharacter(
  45971. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45972. {
  45973. front: {
  45974. height: math.unit(5.67, "feet"),
  45975. weight: math.unit(135, "lb"),
  45976. name: "Front",
  45977. image: {
  45978. source: "./media/characters/sarel/front.svg",
  45979. extra: 865/788,
  45980. bottom: 97/962
  45981. }
  45982. },
  45983. back: {
  45984. height: math.unit(5.67, "feet"),
  45985. weight: math.unit(135, "lb"),
  45986. name: "Back",
  45987. image: {
  45988. source: "./media/characters/sarel/back.svg",
  45989. extra: 857/777,
  45990. bottom: 32/889
  45991. }
  45992. },
  45993. chozoan: {
  45994. height: math.unit(5.67, "feet"),
  45995. weight: math.unit(135, "lb"),
  45996. name: "Chozoan",
  45997. image: {
  45998. source: "./media/characters/sarel/chozoan.svg",
  45999. extra: 865/788,
  46000. bottom: 97/962
  46001. }
  46002. },
  46003. current: {
  46004. height: math.unit(5.67, "feet"),
  46005. weight: math.unit(135, "lb"),
  46006. name: "Current",
  46007. image: {
  46008. source: "./media/characters/sarel/current.svg",
  46009. extra: 865/788,
  46010. bottom: 97/962
  46011. }
  46012. },
  46013. head: {
  46014. height: math.unit(1.77, "feet"),
  46015. name: "Head",
  46016. image: {
  46017. source: "./media/characters/sarel/head.svg"
  46018. }
  46019. },
  46020. claws: {
  46021. height: math.unit(1.8, "feet"),
  46022. name: "Claws",
  46023. image: {
  46024. source: "./media/characters/sarel/claws.svg"
  46025. }
  46026. },
  46027. clawsAlt: {
  46028. height: math.unit(1.8, "feet"),
  46029. name: "Claws-alt",
  46030. image: {
  46031. source: "./media/characters/sarel/claws-alt.svg"
  46032. }
  46033. },
  46034. },
  46035. [
  46036. {
  46037. name: "Normal",
  46038. height: math.unit(5.67, "feet"),
  46039. default: true
  46040. },
  46041. ]
  46042. ))
  46043. characterMakers.push(() => makeCharacter(
  46044. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  46045. {
  46046. front: {
  46047. height: math.unit(5500, "feet"),
  46048. name: "Front",
  46049. image: {
  46050. source: "./media/characters/alyonia/front.svg",
  46051. extra: 1200/1135,
  46052. bottom: 29/1229
  46053. }
  46054. },
  46055. back: {
  46056. height: math.unit(5500, "feet"),
  46057. name: "Back",
  46058. image: {
  46059. source: "./media/characters/alyonia/back.svg",
  46060. extra: 1205/1138,
  46061. bottom: 10/1215
  46062. }
  46063. },
  46064. },
  46065. [
  46066. {
  46067. name: "Small",
  46068. height: math.unit(10, "feet")
  46069. },
  46070. {
  46071. name: "Macro",
  46072. height: math.unit(500, "feet")
  46073. },
  46074. {
  46075. name: "Mega Macro",
  46076. height: math.unit(5500, "feet"),
  46077. default: true
  46078. },
  46079. {
  46080. name: "Mega Macro+",
  46081. height: math.unit(500000, "feet")
  46082. },
  46083. {
  46084. name: "Giga Macro",
  46085. height: math.unit(3000, "miles")
  46086. },
  46087. {
  46088. name: "Tera Macro",
  46089. height: math.unit(2.8e6, "miles")
  46090. },
  46091. {
  46092. name: "Galactic",
  46093. height: math.unit(120000, "lightyears")
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46099. {
  46100. werewolf: {
  46101. height: math.unit(8, "feet"),
  46102. weight: math.unit(425, "lb"),
  46103. name: "Werewolf",
  46104. image: {
  46105. source: "./media/characters/autumn/werewolf.svg",
  46106. extra: 2154/2031,
  46107. bottom: 160/2314
  46108. }
  46109. },
  46110. human: {
  46111. height: math.unit(5 + 8/12, "feet"),
  46112. weight: math.unit(150, "lb"),
  46113. name: "Human",
  46114. image: {
  46115. source: "./media/characters/autumn/human.svg",
  46116. extra: 1200/1149,
  46117. bottom: 30/1230
  46118. }
  46119. },
  46120. },
  46121. [
  46122. {
  46123. name: "Normal",
  46124. height: math.unit(8, "feet"),
  46125. default: true
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46131. {
  46132. front: {
  46133. height: math.unit(8 + 5/12, "feet"),
  46134. weight: math.unit(825, "lb"),
  46135. name: "Front",
  46136. image: {
  46137. source: "./media/characters/cobalt-charizard/front.svg",
  46138. extra: 1268/1155,
  46139. bottom: 122/1390
  46140. }
  46141. },
  46142. side: {
  46143. height: math.unit(8 + 5/12, "feet"),
  46144. weight: math.unit(825, "lb"),
  46145. name: "Side",
  46146. image: {
  46147. source: "./media/characters/cobalt-charizard/side.svg",
  46148. extra: 1348/1257,
  46149. bottom: 58/1406
  46150. }
  46151. },
  46152. gMax: {
  46153. height: math.unit(134 + 11/12, "feet"),
  46154. name: "G-Max",
  46155. image: {
  46156. source: "./media/characters/cobalt-charizard/g-max.svg",
  46157. extra: 1835/1541,
  46158. bottom: 151/1986
  46159. }
  46160. },
  46161. },
  46162. [
  46163. {
  46164. name: "Normal",
  46165. height: math.unit(8 + 5/12, "feet"),
  46166. default: true
  46167. },
  46168. ]
  46169. ))
  46170. characterMakers.push(() => makeCharacter(
  46171. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46172. {
  46173. front: {
  46174. height: math.unit(6 + 3/12, "feet"),
  46175. weight: math.unit(210, "lb"),
  46176. name: "Front",
  46177. image: {
  46178. source: "./media/characters/stella/front.svg",
  46179. extra: 3549/3335,
  46180. bottom: 51/3600
  46181. }
  46182. },
  46183. },
  46184. [
  46185. {
  46186. name: "Normal",
  46187. height: math.unit(6 + 3/12, "feet"),
  46188. default: true
  46189. },
  46190. ]
  46191. ))
  46192. characterMakers.push(() => makeCharacter(
  46193. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46194. {
  46195. front: {
  46196. height: math.unit(5, "feet"),
  46197. weight: math.unit(90, "lb"),
  46198. name: "Front",
  46199. image: {
  46200. source: "./media/characters/riley-bishop/front.svg",
  46201. extra: 1450/1428,
  46202. bottom: 152/1602
  46203. }
  46204. },
  46205. },
  46206. [
  46207. {
  46208. name: "Normal",
  46209. height: math.unit(5, "feet"),
  46210. default: true
  46211. },
  46212. ]
  46213. ))
  46214. characterMakers.push(() => makeCharacter(
  46215. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46216. {
  46217. side: {
  46218. height: math.unit(8 + 2/12, "feet"),
  46219. weight: math.unit(500, "kg"),
  46220. name: "Side",
  46221. image: {
  46222. source: "./media/characters/theo-arcanine/side.svg",
  46223. extra: 1342/1074,
  46224. bottom: 111/1453
  46225. }
  46226. },
  46227. },
  46228. [
  46229. {
  46230. name: "Normal",
  46231. height: math.unit(8 + 2/12, "feet"),
  46232. default: true
  46233. },
  46234. ]
  46235. ))
  46236. characterMakers.push(() => makeCharacter(
  46237. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46238. {
  46239. front: {
  46240. height: math.unit(4, "feet"),
  46241. name: "Front",
  46242. image: {
  46243. source: "./media/characters/kali/front.svg",
  46244. extra: 1074/867,
  46245. bottom: 34/1108
  46246. }
  46247. },
  46248. back: {
  46249. height: math.unit(4, "feet"),
  46250. name: "Back",
  46251. image: {
  46252. source: "./media/characters/kali/back.svg",
  46253. extra: 1068/863,
  46254. bottom: 26/1094
  46255. }
  46256. },
  46257. frontAlt: {
  46258. height: math.unit(4, "feet"),
  46259. name: "Front (Alt)",
  46260. image: {
  46261. source: "./media/characters/kali/front-alt.svg",
  46262. extra: 1921/1357,
  46263. bottom: 70/1991
  46264. }
  46265. },
  46266. },
  46267. [
  46268. {
  46269. name: "Normal",
  46270. height: math.unit(4, "feet"),
  46271. default: true
  46272. },
  46273. {
  46274. name: "Big'vali",
  46275. height: math.unit(11, "feet")
  46276. },
  46277. {
  46278. name: "Macro",
  46279. height: math.unit(32, "meters")
  46280. },
  46281. {
  46282. name: "Macro+",
  46283. height: math.unit(150, "meters")
  46284. },
  46285. {
  46286. name: "Megamacro",
  46287. height: math.unit(7500, "meters")
  46288. },
  46289. {
  46290. name: "Megamacro+",
  46291. height: math.unit(80, "kilometers")
  46292. },
  46293. ]
  46294. ))
  46295. characterMakers.push(() => makeCharacter(
  46296. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46297. {
  46298. side: {
  46299. height: math.unit(5 + 11/12, "feet"),
  46300. weight: math.unit(236, "lb"),
  46301. name: "Side",
  46302. image: {
  46303. source: "./media/characters/gapp/side.svg",
  46304. extra: 775/340,
  46305. bottom: 58/833
  46306. }
  46307. },
  46308. mouth: {
  46309. height: math.unit(2.98, "feet"),
  46310. name: "Mouth",
  46311. image: {
  46312. source: "./media/characters/gapp/mouth.svg"
  46313. }
  46314. },
  46315. },
  46316. [
  46317. {
  46318. name: "Normal",
  46319. height: math.unit(5 + 1/12, "feet"),
  46320. default: true
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(6, "feet"),
  46329. name: "Front",
  46330. image: {
  46331. source: "./media/characters/persephone/front.svg",
  46332. extra: 1895/1717,
  46333. bottom: 96/1991
  46334. }
  46335. },
  46336. back: {
  46337. height: math.unit(6, "feet"),
  46338. name: "Back",
  46339. image: {
  46340. source: "./media/characters/persephone/back.svg",
  46341. extra: 1868/1679,
  46342. bottom: 26/1894
  46343. }
  46344. },
  46345. casual: {
  46346. height: math.unit(6, "feet"),
  46347. name: "Casual",
  46348. image: {
  46349. source: "./media/characters/persephone/casual.svg",
  46350. extra: 1713/1541,
  46351. bottom: 76/1789
  46352. }
  46353. },
  46354. gaming: {
  46355. height: math.unit(3.55, "feet"),
  46356. name: "Gaming",
  46357. image: {
  46358. source: "./media/characters/persephone/gaming.svg",
  46359. extra: 1242/1038,
  46360. bottom: 66/1308
  46361. }
  46362. },
  46363. head: {
  46364. height: math.unit(2.15, "feet"),
  46365. name: "😐",
  46366. image: {
  46367. source: "./media/characters/persephone/head.svg"
  46368. }
  46369. },
  46370. talking: {
  46371. height: math.unit(2.5, "feet"),
  46372. name: "💬",
  46373. image: {
  46374. source: "./media/characters/persephone/talking.svg"
  46375. }
  46376. },
  46377. hmm: {
  46378. height: math.unit(2.28, "feet"),
  46379. name: "🤨",
  46380. image: {
  46381. source: "./media/characters/persephone/hmm.svg"
  46382. }
  46383. },
  46384. },
  46385. [
  46386. {
  46387. name: "Human Size",
  46388. height: math.unit(6, "feet")
  46389. },
  46390. {
  46391. name: "Big Steppy",
  46392. height: math.unit(600, "meters"),
  46393. default: true
  46394. },
  46395. {
  46396. name: "Galaxy Brain",
  46397. height: math.unit(1, "zettameter")
  46398. },
  46399. ]
  46400. ))
  46401. characterMakers.push(() => makeCharacter(
  46402. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46403. {
  46404. front: {
  46405. height: math.unit(1.85, "meters"),
  46406. name: "Front",
  46407. image: {
  46408. source: "./media/characters/riley-foxthing/front.svg",
  46409. extra: 1495/1354,
  46410. bottom: 122/1617
  46411. }
  46412. },
  46413. frontAlt: {
  46414. height: math.unit(1.85, "meters"),
  46415. name: "Front (Alt)",
  46416. image: {
  46417. source: "./media/characters/riley-foxthing/front-alt.svg",
  46418. extra: 1572/1389,
  46419. bottom: 116/1688
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal Sized",
  46426. height: math.unit(1.85, "meters"),
  46427. default: true
  46428. },
  46429. {
  46430. name: "Quite Sizable",
  46431. height: math.unit(5, "meters")
  46432. },
  46433. {
  46434. name: "Rather Large",
  46435. height: math.unit(20, "meters")
  46436. },
  46437. {
  46438. name: "Macro",
  46439. height: math.unit(450, "meters")
  46440. },
  46441. {
  46442. name: "Giga",
  46443. height: math.unit(5, "km")
  46444. },
  46445. ]
  46446. ))
  46447. characterMakers.push(() => makeCharacter(
  46448. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46449. {
  46450. front: {
  46451. height: math.unit(6, "feet"),
  46452. weight: math.unit(200, "lb"),
  46453. name: "Front",
  46454. image: {
  46455. source: "./media/characters/blizzard/front.svg",
  46456. extra: 1136/990,
  46457. bottom: 136/1272
  46458. }
  46459. },
  46460. back: {
  46461. height: math.unit(6, "feet"),
  46462. weight: math.unit(200, "lb"),
  46463. name: "Back",
  46464. image: {
  46465. source: "./media/characters/blizzard/back.svg",
  46466. extra: 1175/1034,
  46467. bottom: 97/1272
  46468. }
  46469. },
  46470. sitting: {
  46471. height: math.unit(3.725, "feet"),
  46472. weight: math.unit(200, "lb"),
  46473. name: "Sitting",
  46474. image: {
  46475. source: "./media/characters/blizzard/sitting.svg",
  46476. extra: 581/485,
  46477. bottom: 90/671
  46478. }
  46479. },
  46480. frontWizard: {
  46481. height: math.unit(7.9, "feet"),
  46482. weight: math.unit(200, "lb"),
  46483. name: "Front (Wizard)",
  46484. image: {
  46485. source: "./media/characters/blizzard/front-wizard.svg"
  46486. }
  46487. },
  46488. backWizard: {
  46489. height: math.unit(7.9, "feet"),
  46490. weight: math.unit(200, "lb"),
  46491. name: "Back (Wizard)",
  46492. image: {
  46493. source: "./media/characters/blizzard/back-wizard.svg"
  46494. }
  46495. },
  46496. frontNsfw: {
  46497. height: math.unit(6, "feet"),
  46498. weight: math.unit(200, "lb"),
  46499. name: "Front (NSFW)",
  46500. image: {
  46501. source: "./media/characters/blizzard/front-nsfw.svg",
  46502. extra: 1136/990,
  46503. bottom: 136/1272
  46504. }
  46505. },
  46506. backNsfw: {
  46507. height: math.unit(6, "feet"),
  46508. weight: math.unit(200, "lb"),
  46509. name: "Back (NSFW)",
  46510. image: {
  46511. source: "./media/characters/blizzard/back-nsfw.svg",
  46512. extra: 1175/1034,
  46513. bottom: 97/1272
  46514. }
  46515. },
  46516. sittingNsfw: {
  46517. height: math.unit(3.725, "feet"),
  46518. weight: math.unit(200, "lb"),
  46519. name: "Sitting (NSFW)",
  46520. image: {
  46521. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46522. extra: 581/485,
  46523. bottom: 90/671
  46524. }
  46525. },
  46526. wizardFrontNsfw: {
  46527. height: math.unit(7.9, "feet"),
  46528. weight: math.unit(200, "lb"),
  46529. name: "Wizard (Front, NSFW)",
  46530. image: {
  46531. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46532. }
  46533. },
  46534. },
  46535. [
  46536. {
  46537. name: "Normal",
  46538. height: math.unit(6, "feet"),
  46539. default: true
  46540. },
  46541. ]
  46542. ))
  46543. characterMakers.push(() => makeCharacter(
  46544. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46545. {
  46546. front: {
  46547. height: math.unit(5 + 2/12, "feet"),
  46548. name: "Front",
  46549. image: {
  46550. source: "./media/characters/lumi/front.svg",
  46551. extra: 1328/1268,
  46552. bottom: 103/1431
  46553. }
  46554. },
  46555. back: {
  46556. height: math.unit(5 + 2/12, "feet"),
  46557. name: "Back",
  46558. image: {
  46559. source: "./media/characters/lumi/back.svg",
  46560. extra: 1381/1327,
  46561. bottom: 43/1424
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(5 + 2/12, "feet"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46575. {
  46576. front: {
  46577. height: math.unit(5 + 9/12, "feet"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/aliya-cotton/front.svg",
  46581. extra: 577/564,
  46582. bottom: 29/606
  46583. }
  46584. },
  46585. },
  46586. [
  46587. {
  46588. name: "Normal",
  46589. height: math.unit(5 + 9/12, "feet"),
  46590. default: true
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46596. {
  46597. front: {
  46598. height: math.unit(2.7, "meters"),
  46599. weight: math.unit(25000, "lb"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/noah-luxray/front.svg",
  46603. extra: 1644/825,
  46604. bottom: 339/1983
  46605. }
  46606. },
  46607. side: {
  46608. height: math.unit(2.97, "meters"),
  46609. weight: math.unit(25000, "lb"),
  46610. name: "Side",
  46611. image: {
  46612. source: "./media/characters/noah-luxray/side.svg",
  46613. extra: 1319/650,
  46614. bottom: 163/1482
  46615. }
  46616. },
  46617. dick: {
  46618. height: math.unit(7.4, "feet"),
  46619. weight: math.unit(2500, "lb"),
  46620. name: "Dick",
  46621. image: {
  46622. source: "./media/characters/noah-luxray/dick.svg"
  46623. }
  46624. },
  46625. dickAlt: {
  46626. height: math.unit(10.83, "feet"),
  46627. weight: math.unit(2500, "lb"),
  46628. name: "Dick-alt",
  46629. image: {
  46630. source: "./media/characters/noah-luxray/dick-alt.svg"
  46631. }
  46632. },
  46633. },
  46634. [
  46635. {
  46636. name: "BIG",
  46637. height: math.unit(2.7, "meters"),
  46638. default: true
  46639. },
  46640. ]
  46641. ))
  46642. characterMakers.push(() => makeCharacter(
  46643. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46644. {
  46645. standing: {
  46646. height: math.unit(183, "cm"),
  46647. weight: math.unit(68, "kg"),
  46648. name: "Standing",
  46649. image: {
  46650. source: "./media/characters/arion/standing.svg",
  46651. extra: 1869/1807,
  46652. bottom: 93/1962
  46653. }
  46654. },
  46655. reclining: {
  46656. height: math.unit(70.5, "cm"),
  46657. weight: math.unit(68, "lb"),
  46658. name: "Reclining",
  46659. image: {
  46660. source: "./media/characters/arion/reclining.svg",
  46661. extra: 937/870,
  46662. bottom: 63/1000
  46663. }
  46664. },
  46665. },
  46666. [
  46667. {
  46668. name: "Colossus Size, Low",
  46669. height: math.unit(33, "meters"),
  46670. default: true
  46671. },
  46672. {
  46673. name: "Colossus Size, Mid",
  46674. height: math.unit(52, "meters")
  46675. },
  46676. {
  46677. name: "Colossus Size, High",
  46678. height: math.unit(60, "meters")
  46679. },
  46680. {
  46681. name: "Titan Size, Low",
  46682. height: math.unit(91, "meters"),
  46683. },
  46684. {
  46685. name: "Titan Size, Mid",
  46686. height: math.unit(122, "meters")
  46687. },
  46688. {
  46689. name: "Titan Size, High",
  46690. height: math.unit(162, "meters")
  46691. },
  46692. ]
  46693. ))
  46694. characterMakers.push(() => makeCharacter(
  46695. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46696. {
  46697. front: {
  46698. height: math.unit(53, "meters"),
  46699. name: "Front",
  46700. image: {
  46701. source: "./media/characters/stellar-marbey/front.svg",
  46702. extra: 1913/1805,
  46703. bottom: 92/2005
  46704. }
  46705. },
  46706. back: {
  46707. height: math.unit(53, "meters"),
  46708. name: "Back",
  46709. image: {
  46710. source: "./media/characters/stellar-marbey/back.svg",
  46711. extra: 1960/1851,
  46712. bottom: 28/1988
  46713. }
  46714. },
  46715. mouth: {
  46716. height: math.unit(3.5, "meters"),
  46717. name: "Mouth",
  46718. image: {
  46719. source: "./media/characters/stellar-marbey/mouth.svg"
  46720. }
  46721. },
  46722. },
  46723. [
  46724. {
  46725. name: "Macro",
  46726. height: math.unit(53, "meters"),
  46727. default: true
  46728. },
  46729. ]
  46730. ))
  46731. characterMakers.push(() => makeCharacter(
  46732. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46733. {
  46734. front: {
  46735. height: math.unit(8 + 1/12, "feet"),
  46736. weight: math.unit(233, "lb"),
  46737. name: "Front",
  46738. image: {
  46739. source: "./media/characters/matsu/front.svg",
  46740. extra: 832/772,
  46741. bottom: 40/872
  46742. }
  46743. },
  46744. back: {
  46745. height: math.unit(8 + 1/12, "feet"),
  46746. weight: math.unit(233, "lb"),
  46747. name: "Back",
  46748. image: {
  46749. source: "./media/characters/matsu/back.svg",
  46750. extra: 839/780,
  46751. bottom: 47/886
  46752. }
  46753. },
  46754. },
  46755. [
  46756. {
  46757. name: "Normal",
  46758. height: math.unit(8 + 1/12, "feet"),
  46759. default: true
  46760. },
  46761. ]
  46762. ))
  46763. characterMakers.push(() => makeCharacter(
  46764. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46765. {
  46766. front: {
  46767. height: math.unit(4, "feet"),
  46768. weight: math.unit(148, "lb"),
  46769. name: "Front",
  46770. image: {
  46771. source: "./media/characters/thiz/front.svg",
  46772. extra: 1913/1748,
  46773. bottom: 62/1975
  46774. }
  46775. },
  46776. },
  46777. [
  46778. {
  46779. name: "Normal",
  46780. height: math.unit(4, "feet"),
  46781. default: true
  46782. },
  46783. ]
  46784. ))
  46785. characterMakers.push(() => makeCharacter(
  46786. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46787. {
  46788. front: {
  46789. height: math.unit(7 + 6/12, "feet"),
  46790. weight: math.unit(267, "lb"),
  46791. name: "Front",
  46792. image: {
  46793. source: "./media/characters/marcel/front.svg",
  46794. extra: 1221/1096,
  46795. bottom: 76/1297
  46796. }
  46797. },
  46798. },
  46799. [
  46800. {
  46801. name: "Normal",
  46802. height: math.unit(7 + 6/12, "feet"),
  46803. default: true
  46804. },
  46805. ]
  46806. ))
  46807. characterMakers.push(() => makeCharacter(
  46808. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46809. {
  46810. side: {
  46811. height: math.unit(42, "meters"),
  46812. name: "Side",
  46813. image: {
  46814. source: "./media/characters/flake/side.svg",
  46815. extra: 1525/1306,
  46816. bottom: 209/1734
  46817. }
  46818. },
  46819. },
  46820. [
  46821. {
  46822. name: "Normal",
  46823. height: math.unit(42, "meters"),
  46824. default: true
  46825. },
  46826. ]
  46827. ))
  46828. characterMakers.push(() => makeCharacter(
  46829. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46830. {
  46831. dressed: {
  46832. height: math.unit(6 + 4/12, "feet"),
  46833. weight: math.unit(520, "lb"),
  46834. name: "Dressed",
  46835. image: {
  46836. source: "./media/characters/someonne/dressed.svg",
  46837. extra: 1020/1010,
  46838. bottom: 178/1198
  46839. }
  46840. },
  46841. undressed: {
  46842. height: math.unit(6 + 4/12, "feet"),
  46843. weight: math.unit(520, "lb"),
  46844. name: "Undressed",
  46845. image: {
  46846. source: "./media/characters/someonne/undressed.svg",
  46847. extra: 1019/1014,
  46848. bottom: 169/1188
  46849. }
  46850. },
  46851. },
  46852. [
  46853. {
  46854. name: "Normal",
  46855. height: math.unit(6 + 4/12, "feet"),
  46856. default: true
  46857. },
  46858. ]
  46859. ))
  46860. characterMakers.push(() => makeCharacter(
  46861. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46862. {
  46863. front: {
  46864. height: math.unit(3, "feet"),
  46865. weight: math.unit(30, "lb"),
  46866. name: "Front",
  46867. image: {
  46868. source: "./media/characters/till/front.svg",
  46869. extra: 892/823,
  46870. bottom: 55/947
  46871. }
  46872. },
  46873. },
  46874. [
  46875. {
  46876. name: "Normal",
  46877. height: math.unit(3, "feet"),
  46878. default: true
  46879. },
  46880. ]
  46881. ))
  46882. characterMakers.push(() => makeCharacter(
  46883. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46884. {
  46885. front: {
  46886. height: math.unit(9 + 8/12, "feet"),
  46887. weight: math.unit(800, "lb"),
  46888. name: "Front",
  46889. image: {
  46890. source: "./media/characters/sydney-heki/front.svg",
  46891. extra: 1360/1300,
  46892. bottom: 22/1382
  46893. }
  46894. },
  46895. back: {
  46896. height: math.unit(9 + 8/12, "feet"),
  46897. weight: math.unit(800, "lb"),
  46898. name: "Back",
  46899. image: {
  46900. source: "./media/characters/sydney-heki/back.svg",
  46901. extra: 1356/1293,
  46902. bottom: 12/1368
  46903. }
  46904. },
  46905. frontDressed: {
  46906. height: math.unit(9 + 8/12, "feet"),
  46907. weight: math.unit(800, "lb"),
  46908. name: "Front-dressed",
  46909. image: {
  46910. source: "./media/characters/sydney-heki/front-dressed.svg",
  46911. extra: 1360/1300,
  46912. bottom: 22/1382
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Normal",
  46919. height: math.unit(9 + 8/12, "feet"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Macro",
  46924. height: math.unit(500, "feet")
  46925. },
  46926. {
  46927. name: "Megamacro",
  46928. height: math.unit(3.6, "miles")
  46929. },
  46930. ]
  46931. ))
  46932. characterMakers.push(() => makeCharacter(
  46933. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46934. {
  46935. front: {
  46936. height: math.unit(200, "cm"),
  46937. weight: math.unit(250, "lb"),
  46938. name: "Front",
  46939. image: {
  46940. source: "./media/characters/fowler-karlsson/front.svg",
  46941. extra: 897/845,
  46942. bottom: 123/1020
  46943. }
  46944. },
  46945. back: {
  46946. height: math.unit(200, "cm"),
  46947. weight: math.unit(250, "lb"),
  46948. name: "Back",
  46949. image: {
  46950. source: "./media/characters/fowler-karlsson/back.svg",
  46951. extra: 999/944,
  46952. bottom: 26/1025
  46953. }
  46954. },
  46955. dick: {
  46956. height: math.unit(1.92, "feet"),
  46957. weight: math.unit(150, "lb"),
  46958. name: "Dick",
  46959. image: {
  46960. source: "./media/characters/fowler-karlsson/dick.svg"
  46961. }
  46962. },
  46963. },
  46964. [
  46965. {
  46966. name: "Normal",
  46967. height: math.unit(200, "cm"),
  46968. default: true
  46969. },
  46970. {
  46971. name: "Smaller Macro",
  46972. height: math.unit(90, "m")
  46973. },
  46974. {
  46975. name: "Macro",
  46976. height: math.unit(150, "m")
  46977. },
  46978. {
  46979. name: "Bigger Macro",
  46980. height: math.unit(300, "m")
  46981. },
  46982. ]
  46983. ))
  46984. characterMakers.push(() => makeCharacter(
  46985. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46986. {
  46987. side: {
  46988. height: math.unit(8 + 2/12, "feet"),
  46989. weight: math.unit(1, "tonne"),
  46990. name: "Side",
  46991. image: {
  46992. source: "./media/characters/rylide/side.svg",
  46993. extra: 1318/1034,
  46994. bottom: 106/1424
  46995. }
  46996. },
  46997. sitting: {
  46998. height: math.unit(303, "cm"),
  46999. weight: math.unit(1, "tonne"),
  47000. name: "Sitting",
  47001. image: {
  47002. source: "./media/characters/rylide/sitting.svg",
  47003. extra: 1303/1103,
  47004. bottom: 36/1339
  47005. }
  47006. },
  47007. },
  47008. [
  47009. {
  47010. name: "Normal",
  47011. height: math.unit(8 + 2/12, "feet"),
  47012. default: true
  47013. },
  47014. ]
  47015. ))
  47016. characterMakers.push(() => makeCharacter(
  47017. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  47018. {
  47019. front: {
  47020. height: math.unit(5 + 10/12, "feet"),
  47021. weight: math.unit(160, "lb"),
  47022. name: "Front",
  47023. image: {
  47024. source: "./media/characters/pudask/front.svg",
  47025. extra: 1616/1590,
  47026. bottom: 161/1777
  47027. }
  47028. },
  47029. },
  47030. [
  47031. {
  47032. name: "Ferret Height",
  47033. height: math.unit(2 + 5/12, "feet")
  47034. },
  47035. {
  47036. name: "Canon Height",
  47037. height: math.unit(5 + 10/12, "feet"),
  47038. default: true
  47039. },
  47040. ]
  47041. ))
  47042. characterMakers.push(() => makeCharacter(
  47043. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  47044. {
  47045. front: {
  47046. height: math.unit(3 + 6/12, "feet"),
  47047. weight: math.unit(60, "lb"),
  47048. name: "Front",
  47049. image: {
  47050. source: "./media/characters/ramita/front.svg",
  47051. extra: 1402/1232,
  47052. bottom: 62/1464
  47053. }
  47054. },
  47055. dressed: {
  47056. height: math.unit(3 + 6/12, "feet"),
  47057. weight: math.unit(60, "lb"),
  47058. name: "Dressed",
  47059. image: {
  47060. source: "./media/characters/ramita/dressed.svg",
  47061. extra: 1534/1249,
  47062. bottom: 50/1584
  47063. }
  47064. },
  47065. },
  47066. [
  47067. {
  47068. name: "Normal",
  47069. height: math.unit(3 + 6/12, "feet"),
  47070. default: true
  47071. },
  47072. ]
  47073. ))
  47074. characterMakers.push(() => makeCharacter(
  47075. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47076. {
  47077. front: {
  47078. height: math.unit(8, "feet"),
  47079. name: "Front",
  47080. image: {
  47081. source: "./media/characters/ark/front.svg",
  47082. extra: 772/693,
  47083. bottom: 45/817
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Normal",
  47090. height: math.unit(8, "feet"),
  47091. default: true
  47092. },
  47093. ]
  47094. ))
  47095. characterMakers.push(() => makeCharacter(
  47096. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47097. {
  47098. front: {
  47099. height: math.unit(6, "feet"),
  47100. weight: math.unit(250, "lb"),
  47101. volume: math.unit(5/8, "gallons"),
  47102. name: "Front",
  47103. image: {
  47104. source: "./media/characters/ludwig-horn/front.svg",
  47105. extra: 1782/1635,
  47106. bottom: 96/1878
  47107. }
  47108. },
  47109. back: {
  47110. height: math.unit(6, "feet"),
  47111. weight: math.unit(250, "lb"),
  47112. volume: math.unit(5/8, "gallons"),
  47113. name: "Back",
  47114. image: {
  47115. source: "./media/characters/ludwig-horn/back.svg",
  47116. extra: 1874/1729,
  47117. bottom: 27/1901
  47118. }
  47119. },
  47120. dick: {
  47121. height: math.unit(1.05, "feet"),
  47122. weight: math.unit(15, "lb"),
  47123. volume: math.unit(5/8, "gallons"),
  47124. name: "Dick",
  47125. image: {
  47126. source: "./media/characters/ludwig-horn/dick.svg"
  47127. }
  47128. },
  47129. },
  47130. [
  47131. {
  47132. name: "Small",
  47133. height: math.unit(6, "feet")
  47134. },
  47135. {
  47136. name: "Typical",
  47137. height: math.unit(12, "feet"),
  47138. default: true
  47139. },
  47140. {
  47141. name: "Building",
  47142. height: math.unit(80, "feet")
  47143. },
  47144. {
  47145. name: "Town",
  47146. height: math.unit(800, "feet")
  47147. },
  47148. {
  47149. name: "Kingdom",
  47150. height: math.unit(80000, "feet")
  47151. },
  47152. {
  47153. name: "Planet",
  47154. height: math.unit(8000000, "feet")
  47155. },
  47156. {
  47157. name: "Universe",
  47158. height: math.unit(8000000000, "feet")
  47159. },
  47160. {
  47161. name: "Transcended",
  47162. height: math.unit(8e27, "feet")
  47163. },
  47164. ]
  47165. ))
  47166. characterMakers.push(() => makeCharacter(
  47167. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47168. {
  47169. front: {
  47170. height: math.unit(5, "feet"),
  47171. weight: math.unit(50, "kg"),
  47172. name: "Front",
  47173. image: {
  47174. source: "./media/characters/biot-avery/front.svg",
  47175. extra: 1295/1232,
  47176. bottom: 86/1381
  47177. }
  47178. },
  47179. },
  47180. [
  47181. {
  47182. name: "Normal",
  47183. height: math.unit(5, "feet"),
  47184. default: true
  47185. },
  47186. ]
  47187. ))
  47188. characterMakers.push(() => makeCharacter(
  47189. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47190. {
  47191. front: {
  47192. height: math.unit(6, "feet"),
  47193. name: "Front",
  47194. image: {
  47195. source: "./media/characters/kitsune-kiro/front.svg",
  47196. extra: 1270/1158,
  47197. bottom: 42/1312
  47198. }
  47199. },
  47200. frontAlt: {
  47201. height: math.unit(6, "feet"),
  47202. name: "Front-alt",
  47203. image: {
  47204. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47205. extra: 1130/1081,
  47206. bottom: 36/1166
  47207. }
  47208. },
  47209. },
  47210. [
  47211. {
  47212. name: "Smol",
  47213. height: math.unit(3, "feet")
  47214. },
  47215. {
  47216. name: "Normal",
  47217. height: math.unit(6, "feet"),
  47218. default: true
  47219. },
  47220. ]
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47224. {
  47225. front: {
  47226. height: math.unit(6, "feet"),
  47227. weight: math.unit(125, "lb"),
  47228. name: "Front",
  47229. image: {
  47230. source: "./media/characters/jack-thatcher/front.svg",
  47231. extra: 1474/1370,
  47232. bottom: 26/1500
  47233. }
  47234. },
  47235. back: {
  47236. height: math.unit(6, "feet"),
  47237. weight: math.unit(125, "lb"),
  47238. name: "Back",
  47239. image: {
  47240. source: "./media/characters/jack-thatcher/back.svg",
  47241. extra: 1489/1384,
  47242. bottom: 18/1507
  47243. }
  47244. },
  47245. },
  47246. [
  47247. {
  47248. name: "Normal",
  47249. height: math.unit(6, "feet"),
  47250. default: true
  47251. },
  47252. {
  47253. name: "Macro",
  47254. height: math.unit(75, "feet")
  47255. },
  47256. {
  47257. name: "Macro-er",
  47258. height: math.unit(250, "feet")
  47259. },
  47260. ]
  47261. ))
  47262. characterMakers.push(() => makeCharacter(
  47263. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47264. {
  47265. front: {
  47266. height: math.unit(7, "feet"),
  47267. weight: math.unit(110, "kg"),
  47268. name: "Front",
  47269. image: {
  47270. source: "./media/characters/max-hyper/front.svg",
  47271. extra: 1969/1881,
  47272. bottom: 49/2018
  47273. }
  47274. },
  47275. },
  47276. [
  47277. {
  47278. name: "Normal",
  47279. height: math.unit(7, "feet"),
  47280. default: true
  47281. },
  47282. ]
  47283. ))
  47284. characterMakers.push(() => makeCharacter(
  47285. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47286. {
  47287. front: {
  47288. height: math.unit(5 + 5/12, "feet"),
  47289. weight: math.unit(160, "lb"),
  47290. name: "Front",
  47291. image: {
  47292. source: "./media/characters/spook/front.svg",
  47293. extra: 794/791,
  47294. bottom: 54/848
  47295. }
  47296. },
  47297. back: {
  47298. height: math.unit(5 + 5/12, "feet"),
  47299. weight: math.unit(160, "lb"),
  47300. name: "Back",
  47301. image: {
  47302. source: "./media/characters/spook/back.svg",
  47303. extra: 812/798,
  47304. bottom: 32/844
  47305. }
  47306. },
  47307. },
  47308. [
  47309. {
  47310. name: "Normal",
  47311. height: math.unit(5 + 5/12, "feet"),
  47312. default: true
  47313. },
  47314. ]
  47315. ))
  47316. characterMakers.push(() => makeCharacter(
  47317. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47318. {
  47319. front: {
  47320. height: math.unit(18, "feet"),
  47321. name: "Front",
  47322. image: {
  47323. source: "./media/characters/xeaduulix/front.svg",
  47324. extra: 1380/1166,
  47325. bottom: 110/1490
  47326. }
  47327. },
  47328. back: {
  47329. height: math.unit(18, "feet"),
  47330. name: "Back",
  47331. image: {
  47332. source: "./media/characters/xeaduulix/back.svg",
  47333. extra: 1592/1170,
  47334. bottom: 128/1720
  47335. }
  47336. },
  47337. frontNsfw: {
  47338. height: math.unit(18, "feet"),
  47339. name: "Front (NSFW)",
  47340. image: {
  47341. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47342. extra: 1380/1166,
  47343. bottom: 110/1490
  47344. }
  47345. },
  47346. backNsfw: {
  47347. height: math.unit(18, "feet"),
  47348. name: "Back (NSFW)",
  47349. image: {
  47350. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47351. extra: 1592/1170,
  47352. bottom: 128/1720
  47353. }
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(18, "feet"),
  47360. default: true
  47361. },
  47362. ]
  47363. ))
  47364. characterMakers.push(() => makeCharacter(
  47365. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47366. {
  47367. spreadWings: {
  47368. height: math.unit(20, "feet"),
  47369. name: "Spread Wings",
  47370. image: {
  47371. source: "./media/characters/fledge/spread-wings.svg",
  47372. extra: 693/635,
  47373. bottom: 26/719
  47374. }
  47375. },
  47376. front: {
  47377. height: math.unit(20, "feet"),
  47378. name: "Front",
  47379. image: {
  47380. source: "./media/characters/fledge/front.svg",
  47381. extra: 684/637,
  47382. bottom: 18/702
  47383. }
  47384. },
  47385. frontAlt: {
  47386. height: math.unit(20, "feet"),
  47387. name: "Front (Alt)",
  47388. image: {
  47389. source: "./media/characters/fledge/front-alt.svg",
  47390. extra: 708/664,
  47391. bottom: 13/721
  47392. }
  47393. },
  47394. back: {
  47395. height: math.unit(20, "feet"),
  47396. name: "Back",
  47397. image: {
  47398. source: "./media/characters/fledge/back.svg",
  47399. extra: 718/634,
  47400. bottom: 22/740
  47401. }
  47402. },
  47403. head: {
  47404. height: math.unit(5.55, "feet"),
  47405. name: "Head",
  47406. image: {
  47407. source: "./media/characters/fledge/head.svg"
  47408. }
  47409. },
  47410. headAlt: {
  47411. height: math.unit(5.1, "feet"),
  47412. name: "Head (Alt)",
  47413. image: {
  47414. source: "./media/characters/fledge/head-alt.svg"
  47415. }
  47416. },
  47417. },
  47418. [
  47419. {
  47420. name: "Small",
  47421. height: math.unit(6 + 2/12, "feet")
  47422. },
  47423. {
  47424. name: "Big",
  47425. height: math.unit(20, "feet"),
  47426. default: true
  47427. },
  47428. {
  47429. name: "Giant",
  47430. height: math.unit(100, "feet")
  47431. },
  47432. {
  47433. name: "Macro",
  47434. height: math.unit(200, "feet")
  47435. },
  47436. ]
  47437. ))
  47438. characterMakers.push(() => makeCharacter(
  47439. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47440. {
  47441. front: {
  47442. height: math.unit(1, "meter"),
  47443. name: "Front",
  47444. image: {
  47445. source: "./media/characters/atlas-morenai/front.svg",
  47446. extra: 1275/1043,
  47447. bottom: 19/1294
  47448. }
  47449. },
  47450. back: {
  47451. height: math.unit(1, "meter"),
  47452. name: "Back",
  47453. image: {
  47454. source: "./media/characters/atlas-morenai/back.svg",
  47455. extra: 1141/1001,
  47456. bottom: 25/1166
  47457. }
  47458. },
  47459. },
  47460. [
  47461. {
  47462. name: "Normal",
  47463. height: math.unit(1, "meter"),
  47464. default: true
  47465. },
  47466. {
  47467. name: "Magic-Infused",
  47468. height: math.unit(5, "meters")
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47474. {
  47475. front: {
  47476. height: math.unit(5, "meters"),
  47477. name: "Front",
  47478. image: {
  47479. source: "./media/characters/cintia/front.svg",
  47480. extra: 1312/1228,
  47481. bottom: 38/1350
  47482. }
  47483. },
  47484. back: {
  47485. height: math.unit(5, "meters"),
  47486. name: "Back",
  47487. image: {
  47488. source: "./media/characters/cintia/back.svg",
  47489. extra: 1260/1166,
  47490. bottom: 98/1358
  47491. }
  47492. },
  47493. frontDick: {
  47494. height: math.unit(5, "meters"),
  47495. name: "Front (Dick)",
  47496. image: {
  47497. source: "./media/characters/cintia/front-dick.svg",
  47498. extra: 1312/1228,
  47499. bottom: 38/1350
  47500. }
  47501. },
  47502. backDick: {
  47503. height: math.unit(5, "meters"),
  47504. name: "Back (Dick)",
  47505. image: {
  47506. source: "./media/characters/cintia/back-dick.svg",
  47507. extra: 1260/1166,
  47508. bottom: 98/1358
  47509. }
  47510. },
  47511. bust: {
  47512. height: math.unit(1.97, "meters"),
  47513. name: "Bust",
  47514. image: {
  47515. source: "./media/characters/cintia/bust.svg",
  47516. extra: 617/565,
  47517. bottom: 0/617
  47518. }
  47519. },
  47520. },
  47521. [
  47522. {
  47523. name: "Normal",
  47524. height: math.unit(5, "meters"),
  47525. default: true
  47526. },
  47527. ]
  47528. ))
  47529. characterMakers.push(() => makeCharacter(
  47530. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47531. {
  47532. side: {
  47533. height: math.unit(100, "feet"),
  47534. name: "Side",
  47535. image: {
  47536. source: "./media/characters/denora/side.svg",
  47537. extra: 875/803,
  47538. bottom: 9/884
  47539. }
  47540. },
  47541. },
  47542. [
  47543. {
  47544. name: "Standard",
  47545. height: math.unit(100, "feet"),
  47546. default: true
  47547. },
  47548. {
  47549. name: "Grand",
  47550. height: math.unit(1000, "feet")
  47551. },
  47552. {
  47553. name: "Conquering",
  47554. height: math.unit(10000, "feet")
  47555. },
  47556. ]
  47557. ))
  47558. characterMakers.push(() => makeCharacter(
  47559. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47560. {
  47561. dressed: {
  47562. height: math.unit(8 + 5/12, "feet"),
  47563. weight: math.unit(700, "lb"),
  47564. name: "Dressed",
  47565. image: {
  47566. source: "./media/characters/kiva/dressed.svg",
  47567. extra: 1102/1055,
  47568. bottom: 60/1162
  47569. }
  47570. },
  47571. nude: {
  47572. height: math.unit(8 + 5/12, "feet"),
  47573. weight: math.unit(700, "lb"),
  47574. name: "Nude",
  47575. image: {
  47576. source: "./media/characters/kiva/nude.svg",
  47577. extra: 1102/1055,
  47578. bottom: 60/1162
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Base Height",
  47585. height: math.unit(8 + 5/12, "feet"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Macro",
  47590. height: math.unit(100, "feet")
  47591. },
  47592. {
  47593. name: "Max",
  47594. height: math.unit(3280, "feet")
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(6 + 8/12, "feet"),
  47603. weight: math.unit(250, "lb"),
  47604. name: "Front",
  47605. image: {
  47606. source: "./media/characters/ztragon/front.svg",
  47607. extra: 1825/1684,
  47608. bottom: 98/1923
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(6 + 8/12, "feet"),
  47616. default: true
  47617. },
  47618. {
  47619. name: "Macro",
  47620. height: math.unit(80, "feet")
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47626. {
  47627. front: {
  47628. height: math.unit(10.4, "feet"),
  47629. weight: math.unit(2, "tons"),
  47630. name: "Front",
  47631. image: {
  47632. source: "./media/characters/yesenia/front.svg",
  47633. extra: 1479/1474,
  47634. bottom: 233/1712
  47635. }
  47636. },
  47637. },
  47638. [
  47639. {
  47640. name: "Normal",
  47641. height: math.unit(10.4, "feet"),
  47642. default: true
  47643. },
  47644. ]
  47645. ))
  47646. characterMakers.push(() => makeCharacter(
  47647. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47648. {
  47649. normal: {
  47650. height: math.unit(6 + 1/12, "feet"),
  47651. weight: math.unit(180, "lb"),
  47652. name: "Normal",
  47653. image: {
  47654. source: "./media/characters/leanne-lycheborne/normal.svg",
  47655. extra: 1748/1660,
  47656. bottom: 98/1846
  47657. }
  47658. },
  47659. were: {
  47660. height: math.unit(12, "feet"),
  47661. weight: math.unit(1600, "lb"),
  47662. name: "Were",
  47663. image: {
  47664. source: "./media/characters/leanne-lycheborne/were.svg",
  47665. extra: 1485/1432,
  47666. bottom: 66/1551
  47667. }
  47668. },
  47669. },
  47670. [
  47671. {
  47672. name: "Normal",
  47673. height: math.unit(6 + 1/12, "feet"),
  47674. default: true
  47675. },
  47676. ]
  47677. ))
  47678. characterMakers.push(() => makeCharacter(
  47679. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47680. {
  47681. side: {
  47682. height: math.unit(13, "feet"),
  47683. name: "Side",
  47684. image: {
  47685. source: "./media/characters/kira-tyler/side.svg",
  47686. extra: 693/393,
  47687. bottom: 58/751
  47688. }
  47689. },
  47690. },
  47691. [
  47692. {
  47693. name: "Normal",
  47694. height: math.unit(13, "feet"),
  47695. default: true
  47696. },
  47697. ]
  47698. ))
  47699. characterMakers.push(() => makeCharacter(
  47700. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47701. {
  47702. front: {
  47703. height: math.unit(10.3, "feet"),
  47704. weight: math.unit(150, "lb"),
  47705. name: "Front",
  47706. image: {
  47707. source: "./media/characters/blaze/front.svg",
  47708. extra: 1378/1286,
  47709. bottom: 172/1550
  47710. }
  47711. },
  47712. },
  47713. [
  47714. {
  47715. name: "Normal",
  47716. height: math.unit(10.3, "feet"),
  47717. default: true
  47718. },
  47719. ]
  47720. ))
  47721. characterMakers.push(() => makeCharacter(
  47722. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47723. {
  47724. side: {
  47725. height: math.unit(2, "meters"),
  47726. weight: math.unit(400, "kg"),
  47727. name: "Side",
  47728. image: {
  47729. source: "./media/characters/anu/side.svg",
  47730. extra: 506/394,
  47731. bottom: 18/524
  47732. }
  47733. },
  47734. },
  47735. [
  47736. {
  47737. name: "Humanoid",
  47738. height: math.unit(2, "meters")
  47739. },
  47740. {
  47741. name: "Normal",
  47742. height: math.unit(5, "meters"),
  47743. default: true
  47744. },
  47745. ]
  47746. ))
  47747. characterMakers.push(() => makeCharacter(
  47748. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47749. {
  47750. front: {
  47751. height: math.unit(5 + 5/12, "feet"),
  47752. weight: math.unit(170, "lb"),
  47753. name: "Front",
  47754. image: {
  47755. source: "./media/characters/synx-the-lynx/front.svg",
  47756. extra: 1893/1745,
  47757. bottom: 17/1910
  47758. }
  47759. },
  47760. side: {
  47761. height: math.unit(5 + 5/12, "feet"),
  47762. weight: math.unit(170, "lb"),
  47763. name: "Side",
  47764. image: {
  47765. source: "./media/characters/synx-the-lynx/side.svg",
  47766. extra: 1884/1740,
  47767. bottom: 39/1923
  47768. }
  47769. },
  47770. back: {
  47771. height: math.unit(5 + 5/12, "feet"),
  47772. weight: math.unit(170, "lb"),
  47773. name: "Back",
  47774. image: {
  47775. source: "./media/characters/synx-the-lynx/back.svg",
  47776. extra: 1903/1755,
  47777. bottom: 14/1917
  47778. }
  47779. },
  47780. },
  47781. [
  47782. {
  47783. name: "Normal",
  47784. height: math.unit(5 + 5/12, "feet"),
  47785. default: true
  47786. },
  47787. ]
  47788. ))
  47789. characterMakers.push(() => makeCharacter(
  47790. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47791. {
  47792. back: {
  47793. height: math.unit(15, "feet"),
  47794. name: "Back",
  47795. image: {
  47796. source: "./media/characters/nadezda-fex/back.svg",
  47797. extra: 1695/1481,
  47798. bottom: 25/1720
  47799. }
  47800. },
  47801. },
  47802. [
  47803. {
  47804. name: "Normal",
  47805. height: math.unit(15, "feet"),
  47806. default: true
  47807. },
  47808. {
  47809. name: "Macro",
  47810. height: math.unit(2.5, "miles")
  47811. },
  47812. {
  47813. name: "Goddess",
  47814. height: math.unit(2, "multiverses")
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(216, "cm"),
  47823. name: "Front",
  47824. image: {
  47825. source: "./media/characters/lev/front.svg",
  47826. extra: 1728/1670,
  47827. bottom: 82/1810
  47828. }
  47829. },
  47830. back: {
  47831. height: math.unit(216, "cm"),
  47832. name: "Back",
  47833. image: {
  47834. source: "./media/characters/lev/back.svg",
  47835. extra: 1738/1675,
  47836. bottom: 24/1762
  47837. }
  47838. },
  47839. dressed: {
  47840. height: math.unit(216, "cm"),
  47841. name: "Dressed",
  47842. image: {
  47843. source: "./media/characters/lev/dressed.svg",
  47844. extra: 1397/1351,
  47845. bottom: 73/1470
  47846. }
  47847. },
  47848. head: {
  47849. height: math.unit(0.51, "meter"),
  47850. name: "Head",
  47851. image: {
  47852. source: "./media/characters/lev/head.svg"
  47853. }
  47854. },
  47855. },
  47856. [
  47857. {
  47858. name: "Normal",
  47859. height: math.unit(216, "cm"),
  47860. default: true
  47861. },
  47862. {
  47863. name: "Relatively Macro",
  47864. height: math.unit(80, "meters")
  47865. },
  47866. {
  47867. name: "Megamacro",
  47868. height: math.unit(21600, "meters")
  47869. },
  47870. {
  47871. name: "Megamacro+",
  47872. height: math.unit(64800, "meters")
  47873. },
  47874. ]
  47875. ))
  47876. characterMakers.push(() => makeCharacter(
  47877. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47878. {
  47879. front: {
  47880. height: math.unit(2, "meters"),
  47881. weight: math.unit(80, "kg"),
  47882. name: "Front",
  47883. image: {
  47884. source: "./media/characters/moka/front.svg",
  47885. extra: 1337/1255,
  47886. bottom: 58/1395
  47887. }
  47888. },
  47889. },
  47890. [
  47891. {
  47892. name: "Micro",
  47893. height: math.unit(15, "cm")
  47894. },
  47895. {
  47896. name: "Normal",
  47897. height: math.unit(2, "meters"),
  47898. default: true
  47899. },
  47900. {
  47901. name: "Macro",
  47902. height: math.unit(20, "meters"),
  47903. },
  47904. ]
  47905. ))
  47906. characterMakers.push(() => makeCharacter(
  47907. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47908. {
  47909. front: {
  47910. height: math.unit(9, "feet"),
  47911. weight: math.unit(240, "lb"),
  47912. name: "Front",
  47913. image: {
  47914. source: "./media/characters/kuzco/front.svg",
  47915. extra: 1593/1487,
  47916. bottom: 32/1625
  47917. }
  47918. },
  47919. side: {
  47920. height: math.unit(9, "feet"),
  47921. weight: math.unit(240, "lb"),
  47922. name: "Side",
  47923. image: {
  47924. source: "./media/characters/kuzco/side.svg",
  47925. extra: 1575/1485,
  47926. bottom: 30/1605
  47927. }
  47928. },
  47929. back: {
  47930. height: math.unit(9, "feet"),
  47931. weight: math.unit(240, "lb"),
  47932. name: "Back",
  47933. image: {
  47934. source: "./media/characters/kuzco/back.svg",
  47935. extra: 1603/1514,
  47936. bottom: 14/1617
  47937. }
  47938. },
  47939. },
  47940. [
  47941. {
  47942. name: "Normal",
  47943. height: math.unit(9, "feet"),
  47944. default: true
  47945. },
  47946. ]
  47947. ))
  47948. characterMakers.push(() => makeCharacter(
  47949. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47950. {
  47951. side: {
  47952. height: math.unit(2, "meters"),
  47953. weight: math.unit(300, "kg"),
  47954. name: "Side",
  47955. image: {
  47956. source: "./media/characters/ceruleus/side.svg",
  47957. extra: 1068/974,
  47958. bottom: 126/1194
  47959. }
  47960. },
  47961. maw: {
  47962. height: math.unit(0.8125, "meter"),
  47963. name: "Maw",
  47964. image: {
  47965. source: "./media/characters/ceruleus/maw.svg"
  47966. }
  47967. },
  47968. },
  47969. [
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(16, "meters"),
  47973. default: true
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47979. {
  47980. front: {
  47981. height: math.unit(9, "feet"),
  47982. weight: math.unit(500, "kg"),
  47983. name: "Front",
  47984. image: {
  47985. source: "./media/characters/acouya/front.svg",
  47986. extra: 1660/1473,
  47987. bottom: 28/1688
  47988. }
  47989. },
  47990. },
  47991. [
  47992. {
  47993. name: "Normal",
  47994. height: math.unit(9, "feet"),
  47995. default: true
  47996. },
  47997. ]
  47998. ))
  47999. characterMakers.push(() => makeCharacter(
  48000. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  48001. {
  48002. front: {
  48003. height: math.unit(5 + 6/12, "feet"),
  48004. weight: math.unit(195, "lb"),
  48005. name: "Front",
  48006. image: {
  48007. source: "./media/characters/vant/front.svg",
  48008. extra: 1396/1320,
  48009. bottom: 20/1416
  48010. }
  48011. },
  48012. back: {
  48013. height: math.unit(5 + 6/12, "feet"),
  48014. weight: math.unit(195, "lb"),
  48015. name: "Back",
  48016. image: {
  48017. source: "./media/characters/vant/back.svg",
  48018. extra: 1396/1320,
  48019. bottom: 20/1416
  48020. }
  48021. },
  48022. maw: {
  48023. height: math.unit(0.75, "feet"),
  48024. name: "Maw",
  48025. image: {
  48026. source: "./media/characters/vant/maw.svg"
  48027. }
  48028. },
  48029. paw: {
  48030. height: math.unit(1.07, "feet"),
  48031. name: "Paw",
  48032. image: {
  48033. source: "./media/characters/vant/paw.svg"
  48034. }
  48035. },
  48036. },
  48037. [
  48038. {
  48039. name: "Micro",
  48040. height: math.unit(0.25, "inches")
  48041. },
  48042. {
  48043. name: "Normal",
  48044. height: math.unit(5 + 6/12, "feet"),
  48045. default: true
  48046. },
  48047. {
  48048. name: "Macro",
  48049. height: math.unit(75, "feet")
  48050. },
  48051. ]
  48052. ))
  48053. characterMakers.push(() => makeCharacter(
  48054. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  48055. {
  48056. front: {
  48057. height: math.unit(30, "meters"),
  48058. weight: math.unit(363, "tons"),
  48059. name: "Front",
  48060. image: {
  48061. source: "./media/characters/ahra/front.svg",
  48062. extra: 1914/1814,
  48063. bottom: 46/1960
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Macro",
  48070. height: math.unit(30, "meters"),
  48071. default: true
  48072. },
  48073. ]
  48074. ))
  48075. characterMakers.push(() => makeCharacter(
  48076. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48077. {
  48078. undressed: {
  48079. height: math.unit(2, "m"),
  48080. weight: math.unit(250, "kg"),
  48081. name: "Undressed",
  48082. image: {
  48083. source: "./media/characters/coriander/undressed.svg",
  48084. extra: 1757/1606,
  48085. bottom: 107/1864
  48086. }
  48087. },
  48088. dressed: {
  48089. height: math.unit(2, "m"),
  48090. weight: math.unit(250, "kg"),
  48091. name: "Dressed",
  48092. image: {
  48093. source: "./media/characters/coriander/dressed.svg",
  48094. extra: 1757/1606,
  48095. bottom: 107/1864
  48096. }
  48097. },
  48098. },
  48099. [
  48100. {
  48101. name: "Normal",
  48102. height: math.unit(4, "meters"),
  48103. default: true
  48104. },
  48105. {
  48106. name: "XL",
  48107. height: math.unit(6, "meters")
  48108. },
  48109. {
  48110. name: "XXL",
  48111. height: math.unit(8, "meters")
  48112. },
  48113. ]
  48114. ))
  48115. characterMakers.push(() => makeCharacter(
  48116. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48117. {
  48118. front: {
  48119. height: math.unit(6, "feet"),
  48120. name: "Front",
  48121. image: {
  48122. source: "./media/characters/syrinx/front.svg",
  48123. extra: 1557/1259,
  48124. bottom: 171/1728
  48125. }
  48126. },
  48127. },
  48128. [
  48129. {
  48130. name: "Normal",
  48131. height: math.unit(6 + 3/12, "feet"),
  48132. default: true
  48133. },
  48134. ]
  48135. ))
  48136. characterMakers.push(() => makeCharacter(
  48137. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48138. {
  48139. front: {
  48140. height: math.unit(11 + 6/12, "feet"),
  48141. weight: math.unit(1.5, "tons"),
  48142. name: "Front",
  48143. image: {
  48144. source: "./media/characters/bor/front.svg",
  48145. extra: 1189/1109,
  48146. bottom: 170/1359
  48147. }
  48148. },
  48149. },
  48150. [
  48151. {
  48152. name: "Normal",
  48153. height: math.unit(11 + 6/12, "feet"),
  48154. default: true
  48155. },
  48156. {
  48157. name: "Macro",
  48158. height: math.unit(32 + 9/12, "feet")
  48159. },
  48160. ]
  48161. ))
  48162. characterMakers.push(() => makeCharacter(
  48163. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48164. {
  48165. anthro: {
  48166. height: math.unit(9, "feet"),
  48167. weight: math.unit(2076, "lb"),
  48168. name: "Anthro",
  48169. image: {
  48170. source: "./media/characters/abacus/anthro.svg",
  48171. extra: 1540/1494,
  48172. bottom: 233/1773
  48173. }
  48174. },
  48175. pigeon: {
  48176. height: math.unit(1, "feet"),
  48177. name: "Pigeon",
  48178. image: {
  48179. source: "./media/characters/abacus/pigeon.svg",
  48180. extra: 528/525,
  48181. bottom: 46/574
  48182. }
  48183. },
  48184. },
  48185. [
  48186. {
  48187. name: "Normal",
  48188. height: math.unit(9, "feet"),
  48189. default: true
  48190. },
  48191. ]
  48192. ))
  48193. characterMakers.push(() => makeCharacter(
  48194. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48195. {
  48196. side: {
  48197. height: math.unit(6, "feet"),
  48198. name: "Side",
  48199. image: {
  48200. source: "./media/characters/delkhan/side.svg",
  48201. extra: 1884/1786,
  48202. bottom: 308/2192
  48203. }
  48204. },
  48205. head: {
  48206. height: math.unit(3.38, "feet"),
  48207. name: "Head",
  48208. image: {
  48209. source: "./media/characters/delkhan/head.svg"
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(72, "feet"),
  48217. default: true
  48218. },
  48219. {
  48220. name: "Giant",
  48221. height: math.unit(172, "feet")
  48222. },
  48223. ]
  48224. ))
  48225. characterMakers.push(() => makeCharacter(
  48226. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48227. {
  48228. standing: {
  48229. height: math.unit(6, "feet"),
  48230. name: "Standing",
  48231. image: {
  48232. source: "./media/characters/euchidat/standing.svg",
  48233. extra: 1612/1553,
  48234. bottom: 116/1728
  48235. }
  48236. },
  48237. leaning: {
  48238. height: math.unit(6, "feet"),
  48239. name: "Leaning",
  48240. image: {
  48241. source: "./media/characters/euchidat/leaning.svg",
  48242. extra: 1719/1674,
  48243. bottom: 27/1746
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(175, "feet"),
  48251. default: true
  48252. },
  48253. {
  48254. name: "Megamacro",
  48255. height: math.unit(190, "miles")
  48256. },
  48257. {
  48258. name: "Gigamacro",
  48259. height: math.unit(190000, "miles")
  48260. },
  48261. ]
  48262. ))
  48263. characterMakers.push(() => makeCharacter(
  48264. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48265. {
  48266. front: {
  48267. height: math.unit(6, "feet"),
  48268. weight: math.unit(150, "lb"),
  48269. name: "Front",
  48270. image: {
  48271. source: "./media/characters/rebecca-stack/front.svg",
  48272. extra: 1256/1201,
  48273. bottom: 18/1274
  48274. }
  48275. },
  48276. },
  48277. [
  48278. {
  48279. name: "Normal",
  48280. height: math.unit(5 + 8/12, "feet"),
  48281. default: true
  48282. },
  48283. {
  48284. name: "Demolitionist",
  48285. height: math.unit(200, "feet")
  48286. },
  48287. {
  48288. name: "Out of Control",
  48289. height: math.unit(2, "miles")
  48290. },
  48291. {
  48292. name: "Giga",
  48293. height: math.unit(7200, "miles")
  48294. },
  48295. ]
  48296. ))
  48297. characterMakers.push(() => makeCharacter(
  48298. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48299. {
  48300. front: {
  48301. height: math.unit(6, "feet"),
  48302. weight: math.unit(150, "lb"),
  48303. name: "Front",
  48304. image: {
  48305. source: "./media/characters/jenny-cartwright/front.svg",
  48306. extra: 1384/1376,
  48307. bottom: 58/1442
  48308. }
  48309. },
  48310. },
  48311. [
  48312. {
  48313. name: "Normal",
  48314. height: math.unit(6 + 7/12, "feet"),
  48315. default: true
  48316. },
  48317. {
  48318. name: "Librarian",
  48319. height: math.unit(55, "feet")
  48320. },
  48321. {
  48322. name: "Sightseer",
  48323. height: math.unit(50, "miles")
  48324. },
  48325. {
  48326. name: "Giga",
  48327. height: math.unit(30000, "miles")
  48328. },
  48329. ]
  48330. ))
  48331. characterMakers.push(() => makeCharacter(
  48332. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48333. {
  48334. nude: {
  48335. height: math.unit(8, "feet"),
  48336. weight: math.unit(225, "lb"),
  48337. name: "Nude",
  48338. image: {
  48339. source: "./media/characters/marvy/nude.svg",
  48340. extra: 1900/1683,
  48341. bottom: 89/1989
  48342. }
  48343. },
  48344. dressed: {
  48345. height: math.unit(8, "feet"),
  48346. weight: math.unit(225, "lb"),
  48347. name: "Dressed",
  48348. image: {
  48349. source: "./media/characters/marvy/dressed.svg",
  48350. extra: 1900/1683,
  48351. bottom: 89/1989
  48352. }
  48353. },
  48354. head: {
  48355. height: math.unit(2.85, "feet"),
  48356. name: "Head",
  48357. image: {
  48358. source: "./media/characters/marvy/head.svg"
  48359. }
  48360. },
  48361. },
  48362. [
  48363. {
  48364. name: "Normal",
  48365. height: math.unit(8, "feet"),
  48366. default: true
  48367. },
  48368. ]
  48369. ))
  48370. characterMakers.push(() => makeCharacter(
  48371. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48372. {
  48373. front: {
  48374. height: math.unit(8, "feet"),
  48375. weight: math.unit(250, "lb"),
  48376. name: "Front",
  48377. image: {
  48378. source: "./media/characters/leah/front.svg",
  48379. extra: 1257/1149,
  48380. bottom: 109/1366
  48381. }
  48382. },
  48383. },
  48384. [
  48385. {
  48386. name: "Normal",
  48387. height: math.unit(8, "feet"),
  48388. default: true
  48389. },
  48390. {
  48391. name: "Minimacro",
  48392. height: math.unit(40, "feet")
  48393. },
  48394. {
  48395. name: "Macro",
  48396. height: math.unit(124, "feet")
  48397. },
  48398. {
  48399. name: "Megamacro",
  48400. height: math.unit(850, "feet")
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48406. {
  48407. side: {
  48408. height: math.unit(13 + 6/12, "feet"),
  48409. weight: math.unit(3200, "lb"),
  48410. name: "Side",
  48411. image: {
  48412. source: "./media/characters/alvir/side.svg",
  48413. extra: 896/589,
  48414. bottom: 26/922
  48415. }
  48416. },
  48417. },
  48418. [
  48419. {
  48420. name: "Normal",
  48421. height: math.unit(13 + 6/12, "feet"),
  48422. default: true
  48423. },
  48424. ]
  48425. ))
  48426. characterMakers.push(() => makeCharacter(
  48427. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48428. {
  48429. front: {
  48430. height: math.unit(5 + 4/12, "feet"),
  48431. weight: math.unit(236, "lb"),
  48432. name: "Front",
  48433. image: {
  48434. source: "./media/characters/zaina-khalil/front.svg",
  48435. extra: 1533/1485,
  48436. bottom: 94/1627
  48437. }
  48438. },
  48439. side: {
  48440. height: math.unit(5 + 4/12, "feet"),
  48441. weight: math.unit(236, "lb"),
  48442. name: "Side",
  48443. image: {
  48444. source: "./media/characters/zaina-khalil/side.svg",
  48445. extra: 1537/1498,
  48446. bottom: 66/1603
  48447. }
  48448. },
  48449. back: {
  48450. height: math.unit(5 + 4/12, "feet"),
  48451. weight: math.unit(236, "lb"),
  48452. name: "Back",
  48453. image: {
  48454. source: "./media/characters/zaina-khalil/back.svg",
  48455. extra: 1546/1494,
  48456. bottom: 89/1635
  48457. }
  48458. },
  48459. },
  48460. [
  48461. {
  48462. name: "Normal",
  48463. height: math.unit(5 + 4/12, "feet"),
  48464. default: true
  48465. },
  48466. ]
  48467. ))
  48468. characterMakers.push(() => makeCharacter(
  48469. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48470. {
  48471. side: {
  48472. height: math.unit(12, "feet"),
  48473. weight: math.unit(4000, "lb"),
  48474. name: "Side",
  48475. image: {
  48476. source: "./media/characters/terry/side.svg",
  48477. extra: 1518/1439,
  48478. bottom: 149/1667
  48479. }
  48480. },
  48481. },
  48482. [
  48483. {
  48484. name: "Normal",
  48485. height: math.unit(12, "feet"),
  48486. default: true
  48487. },
  48488. ]
  48489. ))
  48490. characterMakers.push(() => makeCharacter(
  48491. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48492. {
  48493. front: {
  48494. height: math.unit(12, "feet"),
  48495. weight: math.unit(1500, "lb"),
  48496. name: "Front",
  48497. image: {
  48498. source: "./media/characters/kahea/front.svg",
  48499. extra: 1722/1617,
  48500. bottom: 179/1901
  48501. }
  48502. },
  48503. },
  48504. [
  48505. {
  48506. name: "Normal",
  48507. height: math.unit(12, "feet"),
  48508. default: true
  48509. },
  48510. ]
  48511. ))
  48512. characterMakers.push(() => makeCharacter(
  48513. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48514. {
  48515. demonFront: {
  48516. height: math.unit(36, "feet"),
  48517. name: "Front",
  48518. image: {
  48519. source: "./media/characters/alex-xuria/demon-front.svg",
  48520. extra: 1705/1673,
  48521. bottom: 198/1903
  48522. },
  48523. form: "demon",
  48524. default: true
  48525. },
  48526. demonBack: {
  48527. height: math.unit(36, "feet"),
  48528. name: "Back",
  48529. image: {
  48530. source: "./media/characters/alex-xuria/demon-back.svg",
  48531. extra: 1725/1693,
  48532. bottom: 70/1795
  48533. },
  48534. form: "demon"
  48535. },
  48536. demonHead: {
  48537. height: math.unit(2.14, "meters"),
  48538. name: "Head",
  48539. image: {
  48540. source: "./media/characters/alex-xuria/demon-head.svg"
  48541. },
  48542. form: "demon"
  48543. },
  48544. demonHand: {
  48545. height: math.unit(1.61, "meters"),
  48546. name: "Hand",
  48547. image: {
  48548. source: "./media/characters/alex-xuria/demon-hand.svg"
  48549. },
  48550. form: "demon"
  48551. },
  48552. demonPaw: {
  48553. height: math.unit(1.35, "meters"),
  48554. name: "Paw",
  48555. image: {
  48556. source: "./media/characters/alex-xuria/demon-paw.svg"
  48557. },
  48558. form: "demon"
  48559. },
  48560. demonFoot: {
  48561. height: math.unit(2.2, "meters"),
  48562. name: "Foot",
  48563. image: {
  48564. source: "./media/characters/alex-xuria/demon-foot.svg"
  48565. },
  48566. form: "demon"
  48567. },
  48568. demonCock: {
  48569. height: math.unit(1.74, "meters"),
  48570. name: "Cock",
  48571. image: {
  48572. source: "./media/characters/alex-xuria/demon-cock.svg"
  48573. },
  48574. form: "demon"
  48575. },
  48576. demonTailClosed: {
  48577. height: math.unit(1.47, "meters"),
  48578. name: "Tail (Closed)",
  48579. image: {
  48580. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48581. },
  48582. form: "demon"
  48583. },
  48584. demonTailOpen: {
  48585. height: math.unit(2.85, "meters"),
  48586. name: "Tail (Open)",
  48587. image: {
  48588. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48589. },
  48590. form: "demon"
  48591. },
  48592. incubusFront: {
  48593. height: math.unit(12, "feet"),
  48594. name: "Front",
  48595. image: {
  48596. source: "./media/characters/alex-xuria/incubus-front.svg",
  48597. extra: 1754/1677,
  48598. bottom: 125/1879
  48599. },
  48600. form: "incubus",
  48601. default: true
  48602. },
  48603. incubusBack: {
  48604. height: math.unit(12, "feet"),
  48605. name: "Back",
  48606. image: {
  48607. source: "./media/characters/alex-xuria/incubus-back.svg",
  48608. extra: 1702/1647,
  48609. bottom: 30/1732
  48610. },
  48611. form: "incubus"
  48612. },
  48613. incubusHead: {
  48614. height: math.unit(3.45, "feet"),
  48615. name: "Head",
  48616. image: {
  48617. source: "./media/characters/alex-xuria/incubus-head.svg"
  48618. },
  48619. form: "incubus"
  48620. },
  48621. rabbitFront: {
  48622. height: math.unit(6, "feet"),
  48623. name: "Front",
  48624. image: {
  48625. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48626. extra: 1369/1349,
  48627. bottom: 45/1414
  48628. },
  48629. form: "rabbit",
  48630. default: true
  48631. },
  48632. rabbitSide: {
  48633. height: math.unit(6, "feet"),
  48634. name: "Side",
  48635. image: {
  48636. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48637. extra: 1370/1356,
  48638. bottom: 37/1407
  48639. },
  48640. form: "rabbit"
  48641. },
  48642. rabbitBack: {
  48643. height: math.unit(6, "feet"),
  48644. name: "Back",
  48645. image: {
  48646. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48647. extra: 1375/1358,
  48648. bottom: 43/1418
  48649. },
  48650. form: "rabbit"
  48651. },
  48652. },
  48653. [
  48654. {
  48655. name: "Normal",
  48656. height: math.unit(6, "feet"),
  48657. default: true,
  48658. form: "rabbit"
  48659. },
  48660. {
  48661. name: "Incubus",
  48662. height: math.unit(12, "feet"),
  48663. default: true,
  48664. form: "incubus"
  48665. },
  48666. {
  48667. name: "Demon",
  48668. height: math.unit(36, "feet"),
  48669. default: true,
  48670. form: "demon"
  48671. }
  48672. ],
  48673. {
  48674. "demon": {
  48675. name: "Demon",
  48676. default: true
  48677. },
  48678. "incubus": {
  48679. name: "Incubus",
  48680. },
  48681. "rabbit": {
  48682. name: "Rabbit"
  48683. }
  48684. }
  48685. ))
  48686. characterMakers.push(() => makeCharacter(
  48687. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48688. {
  48689. front: {
  48690. height: math.unit(7 + 5/12, "feet"),
  48691. weight: math.unit(510, "lb"),
  48692. name: "Front",
  48693. image: {
  48694. source: "./media/characters/syrup/front.svg",
  48695. extra: 932/916,
  48696. bottom: 26/958
  48697. }
  48698. },
  48699. },
  48700. [
  48701. {
  48702. name: "Normal",
  48703. height: math.unit(7 + 5/12, "feet"),
  48704. default: true
  48705. },
  48706. {
  48707. name: "Big",
  48708. height: math.unit(50, "feet")
  48709. },
  48710. {
  48711. name: "Macro",
  48712. height: math.unit(300, "feet")
  48713. },
  48714. {
  48715. name: "Megamacro",
  48716. height: math.unit(1, "mile")
  48717. },
  48718. ]
  48719. ))
  48720. characterMakers.push(() => makeCharacter(
  48721. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48722. {
  48723. front: {
  48724. height: math.unit(6 + 9/12, "feet"),
  48725. name: "Front",
  48726. image: {
  48727. source: "./media/characters/zeimne/front.svg",
  48728. extra: 1969/1806,
  48729. bottom: 53/2022
  48730. }
  48731. },
  48732. },
  48733. [
  48734. {
  48735. name: "Normal",
  48736. height: math.unit(6 + 9/12, "feet"),
  48737. default: true
  48738. },
  48739. {
  48740. name: "Giant",
  48741. height: math.unit(550, "feet")
  48742. },
  48743. {
  48744. name: "Mega",
  48745. height: math.unit(3, "miles")
  48746. },
  48747. {
  48748. name: "Giga",
  48749. height: math.unit(250, "miles")
  48750. },
  48751. {
  48752. name: "Tera",
  48753. height: math.unit(1, "AU")
  48754. },
  48755. ]
  48756. ))
  48757. characterMakers.push(() => makeCharacter(
  48758. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48759. {
  48760. front: {
  48761. height: math.unit(5 + 2/12, "feet"),
  48762. name: "Front",
  48763. image: {
  48764. source: "./media/characters/grar/front.svg",
  48765. extra: 1331/1119,
  48766. bottom: 60/1391
  48767. }
  48768. },
  48769. back: {
  48770. height: math.unit(5 + 2/12, "feet"),
  48771. name: "Back",
  48772. image: {
  48773. source: "./media/characters/grar/back.svg",
  48774. extra: 1385/1169,
  48775. bottom: 23/1408
  48776. }
  48777. },
  48778. },
  48779. [
  48780. {
  48781. name: "Normal",
  48782. height: math.unit(5 + 2/12, "feet"),
  48783. default: true
  48784. },
  48785. ]
  48786. ))
  48787. characterMakers.push(() => makeCharacter(
  48788. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48789. {
  48790. front: {
  48791. height: math.unit(13 + 7/12, "feet"),
  48792. weight: math.unit(2200, "lb"),
  48793. name: "Front",
  48794. image: {
  48795. source: "./media/characters/endraya/front.svg",
  48796. extra: 1289/1215,
  48797. bottom: 50/1339
  48798. }
  48799. },
  48800. nude: {
  48801. height: math.unit(13 + 7/12, "feet"),
  48802. weight: math.unit(2200, "lb"),
  48803. name: "Nude",
  48804. image: {
  48805. source: "./media/characters/endraya/nude.svg",
  48806. extra: 1247/1171,
  48807. bottom: 40/1287
  48808. }
  48809. },
  48810. head: {
  48811. height: math.unit(2.6, "feet"),
  48812. name: "Head",
  48813. image: {
  48814. source: "./media/characters/endraya/head.svg"
  48815. }
  48816. },
  48817. slit: {
  48818. height: math.unit(3.4, "feet"),
  48819. name: "Slit",
  48820. image: {
  48821. source: "./media/characters/endraya/slit.svg"
  48822. }
  48823. },
  48824. },
  48825. [
  48826. {
  48827. name: "Normal",
  48828. height: math.unit(13 + 7/12, "feet"),
  48829. default: true
  48830. },
  48831. {
  48832. name: "Macro",
  48833. height: math.unit(200, "feet")
  48834. },
  48835. ]
  48836. ))
  48837. characterMakers.push(() => makeCharacter(
  48838. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48839. {
  48840. front: {
  48841. height: math.unit(1.81, "meters"),
  48842. weight: math.unit(69, "kg"),
  48843. name: "Front",
  48844. image: {
  48845. source: "./media/characters/rodryana/front.svg",
  48846. extra: 2002/1921,
  48847. bottom: 53/2055
  48848. }
  48849. },
  48850. back: {
  48851. height: math.unit(1.81, "meters"),
  48852. weight: math.unit(69, "kg"),
  48853. name: "Back",
  48854. image: {
  48855. source: "./media/characters/rodryana/back.svg",
  48856. extra: 1993/1926,
  48857. bottom: 48/2041
  48858. }
  48859. },
  48860. maw: {
  48861. height: math.unit(0.19769417475, "meters"),
  48862. name: "Maw",
  48863. image: {
  48864. source: "./media/characters/rodryana/maw.svg"
  48865. }
  48866. },
  48867. slit: {
  48868. height: math.unit(0.31631067961, "meters"),
  48869. name: "Slit",
  48870. image: {
  48871. source: "./media/characters/rodryana/slit.svg"
  48872. }
  48873. },
  48874. },
  48875. [
  48876. {
  48877. name: "Normal",
  48878. height: math.unit(1.81, "meters")
  48879. },
  48880. {
  48881. name: "Mini Macro",
  48882. height: math.unit(181, "meters")
  48883. },
  48884. {
  48885. name: "Macro",
  48886. height: math.unit(452, "meters"),
  48887. default: true
  48888. },
  48889. {
  48890. name: "Mega Macro",
  48891. height: math.unit(1.375, "km")
  48892. },
  48893. {
  48894. name: "Giga Macro",
  48895. height: math.unit(13.575, "km")
  48896. },
  48897. ]
  48898. ))
  48899. characterMakers.push(() => makeCharacter(
  48900. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48901. {
  48902. front: {
  48903. height: math.unit(6, "feet"),
  48904. weight: math.unit(1000, "lb"),
  48905. name: "Front",
  48906. image: {
  48907. source: "./media/characters/asaya/front.svg",
  48908. extra: 1460/1200,
  48909. bottom: 71/1531
  48910. }
  48911. },
  48912. },
  48913. [
  48914. {
  48915. name: "Normal",
  48916. height: math.unit(8, "km"),
  48917. default: true
  48918. },
  48919. ]
  48920. ))
  48921. characterMakers.push(() => makeCharacter(
  48922. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48923. {
  48924. front: {
  48925. height: math.unit(3.5, "meters"),
  48926. name: "Front",
  48927. image: {
  48928. source: "./media/characters/sarzu-and-israz/front.svg",
  48929. extra: 1570/1558,
  48930. bottom: 150/1720
  48931. },
  48932. },
  48933. back: {
  48934. height: math.unit(3.5, "meters"),
  48935. name: "Back",
  48936. image: {
  48937. source: "./media/characters/sarzu-and-israz/back.svg",
  48938. extra: 1523/1509,
  48939. bottom: 132/1655
  48940. },
  48941. },
  48942. frontFemale: {
  48943. height: math.unit(3.5, "meters"),
  48944. name: "Front (Female)",
  48945. image: {
  48946. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48947. extra: 1570/1558,
  48948. bottom: 150/1720
  48949. },
  48950. },
  48951. frontHerm: {
  48952. height: math.unit(3.5, "meters"),
  48953. name: "Front (Herm)",
  48954. image: {
  48955. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48956. extra: 1570/1558,
  48957. bottom: 150/1720
  48958. },
  48959. },
  48960. },
  48961. [
  48962. {
  48963. name: "Normal",
  48964. height: math.unit(3.5, "meters"),
  48965. default: true,
  48966. },
  48967. {
  48968. name: "Macro",
  48969. height: math.unit(65.5, "meters"),
  48970. },
  48971. ],
  48972. ))
  48973. characterMakers.push(() => makeCharacter(
  48974. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48975. {
  48976. front: {
  48977. height: math.unit(6, "feet"),
  48978. weight: math.unit(250, "lb"),
  48979. name: "Front",
  48980. image: {
  48981. source: "./media/characters/zenimma/front.svg",
  48982. extra: 1346/1320,
  48983. bottom: 58/1404
  48984. }
  48985. },
  48986. back: {
  48987. height: math.unit(6, "feet"),
  48988. weight: math.unit(250, "lb"),
  48989. name: "Back",
  48990. image: {
  48991. source: "./media/characters/zenimma/back.svg",
  48992. extra: 1324/1308,
  48993. bottom: 44/1368
  48994. }
  48995. },
  48996. dick: {
  48997. height: math.unit(1.44, "feet"),
  48998. name: "Dick",
  48999. image: {
  49000. source: "./media/characters/zenimma/dick.svg"
  49001. }
  49002. },
  49003. },
  49004. [
  49005. {
  49006. name: "Canon Height",
  49007. height: math.unit(66, "miles"),
  49008. default: true
  49009. },
  49010. ]
  49011. ))
  49012. characterMakers.push(() => makeCharacter(
  49013. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  49014. {
  49015. nude: {
  49016. height: math.unit(6, "feet"),
  49017. weight: math.unit(150, "lb"),
  49018. name: "Nude",
  49019. image: {
  49020. source: "./media/characters/shavon/nude.svg",
  49021. extra: 1242/1096,
  49022. bottom: 98/1340
  49023. }
  49024. },
  49025. dressed: {
  49026. height: math.unit(6, "feet"),
  49027. weight: math.unit(150, "lb"),
  49028. name: "Dressed",
  49029. image: {
  49030. source: "./media/characters/shavon/dressed.svg",
  49031. extra: 1242/1096,
  49032. bottom: 98/1340
  49033. }
  49034. },
  49035. },
  49036. [
  49037. {
  49038. name: "Macro",
  49039. height: math.unit(255, "feet"),
  49040. default: true
  49041. },
  49042. ]
  49043. ))
  49044. characterMakers.push(() => makeCharacter(
  49045. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  49046. {
  49047. front: {
  49048. height: math.unit(6, "feet"),
  49049. name: "Front",
  49050. image: {
  49051. source: "./media/characters/steph/front.svg",
  49052. extra: 1430/1330,
  49053. bottom: 54/1484
  49054. }
  49055. },
  49056. },
  49057. [
  49058. {
  49059. name: "Normal",
  49060. height: math.unit(6, "feet"),
  49061. default: true
  49062. },
  49063. ]
  49064. ))
  49065. characterMakers.push(() => makeCharacter(
  49066. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49067. {
  49068. front: {
  49069. height: math.unit(9, "feet"),
  49070. weight: math.unit(400, "lb"),
  49071. name: "Front",
  49072. image: {
  49073. source: "./media/characters/kil'aman/front.svg",
  49074. extra: 1210/1159,
  49075. bottom: 109/1319
  49076. }
  49077. },
  49078. head: {
  49079. height: math.unit(2.14, "feet"),
  49080. name: "Head",
  49081. image: {
  49082. source: "./media/characters/kil'aman/head.svg"
  49083. }
  49084. },
  49085. maw: {
  49086. height: math.unit(1.21, "feet"),
  49087. name: "Maw",
  49088. image: {
  49089. source: "./media/characters/kil'aman/maw.svg"
  49090. }
  49091. },
  49092. foot: {
  49093. height: math.unit(1.7, "feet"),
  49094. name: "Foot",
  49095. image: {
  49096. source: "./media/characters/kil'aman/foot.svg"
  49097. }
  49098. },
  49099. dick: {
  49100. height: math.unit(2.1, "feet"),
  49101. name: "Dick",
  49102. image: {
  49103. source: "./media/characters/kil'aman/dick.svg"
  49104. }
  49105. },
  49106. },
  49107. [
  49108. {
  49109. name: "Normal",
  49110. height: math.unit(9, "feet")
  49111. },
  49112. {
  49113. name: "Canon Height",
  49114. height: math.unit(10, "miles"),
  49115. default: true
  49116. },
  49117. {
  49118. name: "Maximum",
  49119. height: math.unit(6e9, "miles")
  49120. },
  49121. ]
  49122. ))
  49123. characterMakers.push(() => makeCharacter(
  49124. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49125. {
  49126. front: {
  49127. height: math.unit(90, "feet"),
  49128. weight: math.unit(675000, "lb"),
  49129. name: "Front",
  49130. image: {
  49131. source: "./media/characters/qadan/front.svg",
  49132. extra: 1012/1004,
  49133. bottom: 78/1090
  49134. }
  49135. },
  49136. back: {
  49137. height: math.unit(90, "feet"),
  49138. weight: math.unit(675000, "lb"),
  49139. name: "Back",
  49140. image: {
  49141. source: "./media/characters/qadan/back.svg",
  49142. extra: 1042/1031,
  49143. bottom: 55/1097
  49144. }
  49145. },
  49146. armored: {
  49147. height: math.unit(90, "feet"),
  49148. weight: math.unit(675000, "lb"),
  49149. name: "Armored",
  49150. image: {
  49151. source: "./media/characters/qadan/armored.svg",
  49152. extra: 1047/1037,
  49153. bottom: 48/1095
  49154. }
  49155. },
  49156. },
  49157. [
  49158. {
  49159. name: "Normal",
  49160. height: math.unit(90, "feet"),
  49161. default: true
  49162. },
  49163. ]
  49164. ))
  49165. characterMakers.push(() => makeCharacter(
  49166. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49167. {
  49168. front: {
  49169. height: math.unit(6, "feet"),
  49170. weight: math.unit(225, "lb"),
  49171. name: "Front",
  49172. image: {
  49173. source: "./media/characters/brooke/front.svg",
  49174. extra: 1050/1010,
  49175. bottom: 66/1116
  49176. }
  49177. },
  49178. back: {
  49179. height: math.unit(6, "feet"),
  49180. weight: math.unit(225, "lb"),
  49181. name: "Back",
  49182. image: {
  49183. source: "./media/characters/brooke/back.svg",
  49184. extra: 1053/1013,
  49185. bottom: 41/1094
  49186. }
  49187. },
  49188. dressed: {
  49189. height: math.unit(6, "feet"),
  49190. weight: math.unit(225, "lb"),
  49191. name: "Dressed",
  49192. image: {
  49193. source: "./media/characters/brooke/dressed.svg",
  49194. extra: 1050/1010,
  49195. bottom: 66/1116
  49196. }
  49197. },
  49198. },
  49199. [
  49200. {
  49201. name: "Canon Height",
  49202. height: math.unit(500, "miles"),
  49203. default: true
  49204. },
  49205. ]
  49206. ))
  49207. characterMakers.push(() => makeCharacter(
  49208. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49209. {
  49210. front: {
  49211. height: math.unit(6 + 2/12, "feet"),
  49212. weight: math.unit(210, "lb"),
  49213. name: "Front",
  49214. image: {
  49215. source: "./media/characters/wubs/front.svg",
  49216. extra: 1345/1325,
  49217. bottom: 70/1415
  49218. }
  49219. },
  49220. back: {
  49221. height: math.unit(6 + 2/12, "feet"),
  49222. weight: math.unit(210, "lb"),
  49223. name: "Back",
  49224. image: {
  49225. source: "./media/characters/wubs/back.svg",
  49226. extra: 1296/1275,
  49227. bottom: 58/1354
  49228. }
  49229. },
  49230. },
  49231. [
  49232. {
  49233. name: "Normal",
  49234. height: math.unit(6 + 2/12, "feet"),
  49235. default: true
  49236. },
  49237. {
  49238. name: "Macro",
  49239. height: math.unit(1000, "feet")
  49240. },
  49241. {
  49242. name: "Megamacro",
  49243. height: math.unit(1, "mile")
  49244. },
  49245. ]
  49246. ))
  49247. characterMakers.push(() => makeCharacter(
  49248. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49249. {
  49250. front: {
  49251. height: math.unit(4, "feet"),
  49252. weight: math.unit(120, "lb"),
  49253. name: "Front",
  49254. image: {
  49255. source: "./media/characters/blue/front.svg",
  49256. extra: 1636/1525,
  49257. bottom: 43/1679
  49258. }
  49259. },
  49260. back: {
  49261. height: math.unit(4, "feet"),
  49262. weight: math.unit(120, "lb"),
  49263. name: "Back",
  49264. image: {
  49265. source: "./media/characters/blue/back.svg",
  49266. extra: 1660/1560,
  49267. bottom: 57/1717
  49268. }
  49269. },
  49270. paws: {
  49271. height: math.unit(0.826, "feet"),
  49272. name: "Paws",
  49273. image: {
  49274. source: "./media/characters/blue/paws.svg"
  49275. }
  49276. },
  49277. },
  49278. [
  49279. {
  49280. name: "Micro",
  49281. height: math.unit(3, "inches")
  49282. },
  49283. {
  49284. name: "Normal",
  49285. height: math.unit(4, "feet"),
  49286. default: true
  49287. },
  49288. {
  49289. name: "Femenine Form",
  49290. height: math.unit(14, "feet")
  49291. },
  49292. {
  49293. name: "Werebat Form",
  49294. height: math.unit(18, "feet")
  49295. },
  49296. ]
  49297. ))
  49298. characterMakers.push(() => makeCharacter(
  49299. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49300. {
  49301. female: {
  49302. height: math.unit(7 + 4/12, "feet"),
  49303. weight: math.unit(243, "lb"),
  49304. name: "Female",
  49305. image: {
  49306. source: "./media/characters/kaya/female.svg",
  49307. extra: 975/898,
  49308. bottom: 34/1009
  49309. }
  49310. },
  49311. herm: {
  49312. height: math.unit(7 + 4/12, "feet"),
  49313. weight: math.unit(243, "lb"),
  49314. name: "Herm",
  49315. image: {
  49316. source: "./media/characters/kaya/herm.svg",
  49317. extra: 975/898,
  49318. bottom: 34/1009
  49319. }
  49320. },
  49321. },
  49322. [
  49323. {
  49324. name: "Normal",
  49325. height: math.unit(7 + 4/12, "feet"),
  49326. default: true
  49327. },
  49328. ]
  49329. ))
  49330. characterMakers.push(() => makeCharacter(
  49331. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49332. {
  49333. female: {
  49334. height: math.unit(9 + 4/12, "feet"),
  49335. weight: math.unit(398, "lb"),
  49336. name: "Female",
  49337. image: {
  49338. source: "./media/characters/kassandra/female.svg",
  49339. extra: 908/839,
  49340. bottom: 61/969
  49341. }
  49342. },
  49343. intersex: {
  49344. height: math.unit(9 + 4/12, "feet"),
  49345. weight: math.unit(398, "lb"),
  49346. name: "Intersex",
  49347. image: {
  49348. source: "./media/characters/kassandra/intersex.svg",
  49349. extra: 908/839,
  49350. bottom: 61/969
  49351. }
  49352. },
  49353. },
  49354. [
  49355. {
  49356. name: "Normal",
  49357. height: math.unit(9 + 4/12, "feet"),
  49358. default: true
  49359. },
  49360. ]
  49361. ))
  49362. characterMakers.push(() => makeCharacter(
  49363. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49364. {
  49365. front: {
  49366. height: math.unit(3, "meters"),
  49367. name: "Front",
  49368. image: {
  49369. source: "./media/characters/amy/front.svg",
  49370. extra: 1380/1343,
  49371. bottom: 70/1450
  49372. }
  49373. },
  49374. back: {
  49375. height: math.unit(3, "meters"),
  49376. name: "Back",
  49377. image: {
  49378. source: "./media/characters/amy/back.svg",
  49379. extra: 1380/1347,
  49380. bottom: 66/1446
  49381. }
  49382. },
  49383. },
  49384. [
  49385. {
  49386. name: "Normal",
  49387. height: math.unit(3, "meters"),
  49388. default: true
  49389. },
  49390. ]
  49391. ))
  49392. characterMakers.push(() => makeCharacter(
  49393. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49394. {
  49395. side: {
  49396. height: math.unit(47, "cm"),
  49397. weight: math.unit(10.8, "kg"),
  49398. name: "Side",
  49399. image: {
  49400. source: "./media/characters/alphaschakal/side.svg",
  49401. extra: 1058/568,
  49402. bottom: 62/1120
  49403. }
  49404. },
  49405. back: {
  49406. height: math.unit(78, "cm"),
  49407. weight: math.unit(10.8, "kg"),
  49408. name: "Back",
  49409. image: {
  49410. source: "./media/characters/alphaschakal/back.svg",
  49411. extra: 1102/942,
  49412. bottom: 185/1287
  49413. }
  49414. },
  49415. head: {
  49416. height: math.unit(28, "cm"),
  49417. name: "Head",
  49418. image: {
  49419. source: "./media/characters/alphaschakal/head.svg",
  49420. extra: 696/508,
  49421. bottom: 0/696
  49422. }
  49423. },
  49424. paw: {
  49425. height: math.unit(16, "cm"),
  49426. name: "Paw",
  49427. image: {
  49428. source: "./media/characters/alphaschakal/paw.svg"
  49429. }
  49430. },
  49431. },
  49432. [
  49433. {
  49434. name: "Normal",
  49435. height: math.unit(47, "cm"),
  49436. default: true
  49437. },
  49438. {
  49439. name: "Macro",
  49440. height: math.unit(340, "cm")
  49441. },
  49442. ]
  49443. ))
  49444. characterMakers.push(() => makeCharacter(
  49445. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49446. {
  49447. front: {
  49448. height: math.unit(36, "earths"),
  49449. name: "Front",
  49450. image: {
  49451. source: "./media/characters/ecobyss/front.svg",
  49452. extra: 1282/1215,
  49453. bottom: 11/1293
  49454. }
  49455. },
  49456. back: {
  49457. height: math.unit(36, "earths"),
  49458. name: "Back",
  49459. image: {
  49460. source: "./media/characters/ecobyss/back.svg",
  49461. extra: 1291/1222,
  49462. bottom: 8/1299
  49463. }
  49464. },
  49465. },
  49466. [
  49467. {
  49468. name: "Normal",
  49469. height: math.unit(36, "earths"),
  49470. default: true
  49471. },
  49472. ]
  49473. ))
  49474. characterMakers.push(() => makeCharacter(
  49475. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49476. {
  49477. front: {
  49478. height: math.unit(12, "feet"),
  49479. name: "Front",
  49480. image: {
  49481. source: "./media/characters/vasuk/front.svg",
  49482. extra: 1326/1207,
  49483. bottom: 64/1390
  49484. }
  49485. },
  49486. },
  49487. [
  49488. {
  49489. name: "Normal",
  49490. height: math.unit(12, "feet"),
  49491. default: true
  49492. },
  49493. ]
  49494. ))
  49495. characterMakers.push(() => makeCharacter(
  49496. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49497. {
  49498. side: {
  49499. height: math.unit(100, "feet"),
  49500. name: "Side",
  49501. image: {
  49502. source: "./media/characters/linneaus/side.svg",
  49503. extra: 987/807,
  49504. bottom: 47/1034
  49505. }
  49506. },
  49507. },
  49508. [
  49509. {
  49510. name: "Macro",
  49511. height: math.unit(100, "feet"),
  49512. default: true
  49513. },
  49514. ]
  49515. ))
  49516. characterMakers.push(() => makeCharacter(
  49517. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49518. {
  49519. front: {
  49520. height: math.unit(8, "feet"),
  49521. weight: math.unit(1200, "lb"),
  49522. name: "Front",
  49523. image: {
  49524. source: "./media/characters/nyterious-daligdig/front.svg",
  49525. extra: 1284/1094,
  49526. bottom: 84/1368
  49527. }
  49528. },
  49529. back: {
  49530. height: math.unit(8, "feet"),
  49531. weight: math.unit(1200, "lb"),
  49532. name: "Back",
  49533. image: {
  49534. source: "./media/characters/nyterious-daligdig/back.svg",
  49535. extra: 1301/1121,
  49536. bottom: 129/1430
  49537. }
  49538. },
  49539. mouth: {
  49540. height: math.unit(1.464, "feet"),
  49541. name: "Mouth",
  49542. image: {
  49543. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49544. }
  49545. },
  49546. },
  49547. [
  49548. {
  49549. name: "Small",
  49550. height: math.unit(8, "feet"),
  49551. default: true
  49552. },
  49553. {
  49554. name: "Normal",
  49555. height: math.unit(15, "feet")
  49556. },
  49557. {
  49558. name: "Macro",
  49559. height: math.unit(90, "feet")
  49560. },
  49561. ]
  49562. ))
  49563. characterMakers.push(() => makeCharacter(
  49564. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49565. {
  49566. front: {
  49567. height: math.unit(7 + 4/12, "feet"),
  49568. weight: math.unit(252, "lb"),
  49569. name: "Front",
  49570. image: {
  49571. source: "./media/characters/bandel/front.svg",
  49572. extra: 1946/1775,
  49573. bottom: 26/1972
  49574. }
  49575. },
  49576. back: {
  49577. height: math.unit(7 + 4/12, "feet"),
  49578. weight: math.unit(252, "lb"),
  49579. name: "Back",
  49580. image: {
  49581. source: "./media/characters/bandel/back.svg",
  49582. extra: 1940/1770,
  49583. bottom: 25/1965
  49584. }
  49585. },
  49586. maw: {
  49587. height: math.unit(2.15, "feet"),
  49588. name: "Maw",
  49589. image: {
  49590. source: "./media/characters/bandel/maw.svg"
  49591. }
  49592. },
  49593. stomach: {
  49594. height: math.unit(1.95, "feet"),
  49595. name: "Stomach",
  49596. image: {
  49597. source: "./media/characters/bandel/stomach.svg"
  49598. }
  49599. },
  49600. },
  49601. [
  49602. {
  49603. name: "Normal",
  49604. height: math.unit(7 + 4/12, "feet"),
  49605. default: true
  49606. },
  49607. ]
  49608. ))
  49609. characterMakers.push(() => makeCharacter(
  49610. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49611. {
  49612. front: {
  49613. height: math.unit(10 + 5/12, "feet"),
  49614. weight: math.unit(773.5, "kg"),
  49615. name: "Front",
  49616. image: {
  49617. source: "./media/characters/zed/front.svg",
  49618. extra: 987/941,
  49619. bottom: 52/1039
  49620. }
  49621. },
  49622. },
  49623. [
  49624. {
  49625. name: "Short",
  49626. height: math.unit(5 + 4/12, "feet")
  49627. },
  49628. {
  49629. name: "Average",
  49630. height: math.unit(10 + 5/12, "feet"),
  49631. default: true
  49632. },
  49633. {
  49634. name: "Mini-Macro",
  49635. height: math.unit(24 + 9/12, "feet")
  49636. },
  49637. {
  49638. name: "Macro",
  49639. height: math.unit(249, "feet")
  49640. },
  49641. {
  49642. name: "Mega-Macro",
  49643. height: math.unit(12490, "feet")
  49644. },
  49645. {
  49646. name: "Giga-Macro",
  49647. height: math.unit(24.9, "miles")
  49648. },
  49649. {
  49650. name: "Tera-Macro",
  49651. height: math.unit(24900, "miles")
  49652. },
  49653. {
  49654. name: "Cosmic Scale",
  49655. height: math.unit(38.9, "lightyears")
  49656. },
  49657. {
  49658. name: "Universal Scale",
  49659. height: math.unit(138e12, "lightyears")
  49660. },
  49661. ]
  49662. ))
  49663. characterMakers.push(() => makeCharacter(
  49664. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49665. {
  49666. front: {
  49667. height: math.unit(1561, "inches"),
  49668. name: "Front",
  49669. image: {
  49670. source: "./media/characters/ivan/front.svg",
  49671. extra: 1126/1071,
  49672. bottom: 26/1152
  49673. }
  49674. },
  49675. back: {
  49676. height: math.unit(1561, "inches"),
  49677. name: "Back",
  49678. image: {
  49679. source: "./media/characters/ivan/back.svg",
  49680. extra: 1134/1079,
  49681. bottom: 30/1164
  49682. }
  49683. },
  49684. },
  49685. [
  49686. {
  49687. name: "Normal",
  49688. height: math.unit(1561, "inches"),
  49689. default: true
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49695. {
  49696. front: {
  49697. height: math.unit(5 + 7/12, "feet"),
  49698. weight: math.unit(150, "lb"),
  49699. name: "Front",
  49700. image: {
  49701. source: "./media/characters/robin-arctic-hare/front.svg",
  49702. extra: 1148/974,
  49703. bottom: 20/1168
  49704. }
  49705. },
  49706. },
  49707. [
  49708. {
  49709. name: "Normal",
  49710. height: math.unit(5 + 7/12, "feet"),
  49711. default: true
  49712. },
  49713. ]
  49714. ))
  49715. characterMakers.push(() => makeCharacter(
  49716. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49717. {
  49718. side: {
  49719. height: math.unit(5, "feet"),
  49720. name: "Side",
  49721. image: {
  49722. source: "./media/characters/birch/side.svg",
  49723. extra: 985/796,
  49724. bottom: 111/1096
  49725. }
  49726. },
  49727. },
  49728. [
  49729. {
  49730. name: "Normal",
  49731. height: math.unit(5, "feet"),
  49732. default: true
  49733. },
  49734. ]
  49735. ))
  49736. characterMakers.push(() => makeCharacter(
  49737. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49738. {
  49739. front: {
  49740. height: math.unit(4, "feet"),
  49741. name: "Front",
  49742. image: {
  49743. source: "./media/characters/rasp/front.svg",
  49744. extra: 561/478,
  49745. bottom: 74/635
  49746. }
  49747. },
  49748. },
  49749. [
  49750. {
  49751. name: "Normal",
  49752. height: math.unit(4, "feet"),
  49753. default: true
  49754. },
  49755. ]
  49756. ))
  49757. characterMakers.push(() => makeCharacter(
  49758. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49759. {
  49760. front: {
  49761. height: math.unit(4 + 6/12, "feet"),
  49762. name: "Front",
  49763. image: {
  49764. source: "./media/characters/agatha/front.svg",
  49765. extra: 947/933,
  49766. bottom: 42/989
  49767. }
  49768. },
  49769. back: {
  49770. height: math.unit(4 + 6/12, "feet"),
  49771. name: "Back",
  49772. image: {
  49773. source: "./media/characters/agatha/back.svg",
  49774. extra: 935/922,
  49775. bottom: 48/983
  49776. }
  49777. },
  49778. },
  49779. [
  49780. {
  49781. name: "Normal",
  49782. height: math.unit(4 + 6 /12, "feet"),
  49783. default: true
  49784. },
  49785. {
  49786. name: "Max Size",
  49787. height: math.unit(500, "feet")
  49788. },
  49789. ]
  49790. ))
  49791. characterMakers.push(() => makeCharacter(
  49792. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49793. {
  49794. side: {
  49795. height: math.unit(30, "feet"),
  49796. name: "Side",
  49797. image: {
  49798. source: "./media/characters/roggy/side.svg",
  49799. extra: 909/643,
  49800. bottom: 63/972
  49801. }
  49802. },
  49803. lounging: {
  49804. height: math.unit(20, "feet"),
  49805. name: "Lounging",
  49806. image: {
  49807. source: "./media/characters/roggy/lounging.svg",
  49808. extra: 643/479,
  49809. bottom: 145/788
  49810. }
  49811. },
  49812. handpaw: {
  49813. height: math.unit(13.1, "feet"),
  49814. name: "Handpaw",
  49815. image: {
  49816. source: "./media/characters/roggy/handpaw.svg"
  49817. }
  49818. },
  49819. footpaw: {
  49820. height: math.unit(15.8, "feet"),
  49821. name: "Footpaw",
  49822. image: {
  49823. source: "./media/characters/roggy/footpaw.svg"
  49824. }
  49825. },
  49826. },
  49827. [
  49828. {
  49829. name: "Menacing",
  49830. height: math.unit(30, "feet"),
  49831. default: true
  49832. },
  49833. ]
  49834. ))
  49835. characterMakers.push(() => makeCharacter(
  49836. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49837. {
  49838. front: {
  49839. height: math.unit(5 + 7/12, "feet"),
  49840. weight: math.unit(135, "lb"),
  49841. name: "Front",
  49842. image: {
  49843. source: "./media/characters/naomi/front.svg",
  49844. extra: 1209/1154,
  49845. bottom: 129/1338
  49846. }
  49847. },
  49848. back: {
  49849. height: math.unit(5 + 7/12, "feet"),
  49850. weight: math.unit(135, "lb"),
  49851. name: "Back",
  49852. image: {
  49853. source: "./media/characters/naomi/back.svg",
  49854. extra: 1252/1190,
  49855. bottom: 23/1275
  49856. }
  49857. },
  49858. },
  49859. [
  49860. {
  49861. name: "Normal",
  49862. height: math.unit(5 + 7 /12, "feet"),
  49863. default: true
  49864. },
  49865. ]
  49866. ))
  49867. characterMakers.push(() => makeCharacter(
  49868. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49869. {
  49870. side: {
  49871. height: math.unit(35, "meters"),
  49872. name: "Side",
  49873. image: {
  49874. source: "./media/characters/kimpi/side.svg",
  49875. extra: 419/382,
  49876. bottom: 63/482
  49877. }
  49878. },
  49879. hand: {
  49880. height: math.unit(8.96, "meters"),
  49881. name: "Hand",
  49882. image: {
  49883. source: "./media/characters/kimpi/hand.svg"
  49884. }
  49885. },
  49886. },
  49887. [
  49888. {
  49889. name: "Normal",
  49890. height: math.unit(35, "meters"),
  49891. default: true
  49892. },
  49893. ]
  49894. ))
  49895. characterMakers.push(() => makeCharacter(
  49896. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49897. {
  49898. front: {
  49899. height: math.unit(4 + 4/12, "feet"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/pepper-purrloin/front.svg",
  49903. extra: 1141/1024,
  49904. bottom: 21/1162
  49905. }
  49906. },
  49907. },
  49908. [
  49909. {
  49910. name: "Normal",
  49911. height: math.unit(4 + 4/12, "feet"),
  49912. default: true
  49913. },
  49914. ]
  49915. ))
  49916. characterMakers.push(() => makeCharacter(
  49917. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49918. {
  49919. front: {
  49920. height: math.unit(6 + 2/12, "feet"),
  49921. name: "Front",
  49922. image: {
  49923. source: "./media/characters/raphael/front.svg",
  49924. extra: 1101/962,
  49925. bottom: 59/1160
  49926. }
  49927. },
  49928. },
  49929. [
  49930. {
  49931. name: "Normal",
  49932. height: math.unit(6 + 2/12, "feet"),
  49933. default: true
  49934. },
  49935. ]
  49936. ))
  49937. characterMakers.push(() => makeCharacter(
  49938. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49939. {
  49940. front: {
  49941. height: math.unit(6, "feet"),
  49942. weight: math.unit(150, "lb"),
  49943. name: "Front",
  49944. image: {
  49945. source: "./media/characters/victor-williams/front.svg",
  49946. extra: 1894/1825,
  49947. bottom: 67/1961
  49948. }
  49949. },
  49950. },
  49951. [
  49952. {
  49953. name: "Normal",
  49954. height: math.unit(6, "feet"),
  49955. default: true
  49956. },
  49957. ]
  49958. ))
  49959. characterMakers.push(() => makeCharacter(
  49960. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49961. {
  49962. front: {
  49963. height: math.unit(5 + 8/12, "feet"),
  49964. weight: math.unit(150, "lb"),
  49965. name: "Front",
  49966. image: {
  49967. source: "./media/characters/rachel/front.svg",
  49968. extra: 1902/1787,
  49969. bottom: 46/1948
  49970. }
  49971. },
  49972. },
  49973. [
  49974. {
  49975. name: "Base Height",
  49976. height: math.unit(5 + 8/12, "feet"),
  49977. default: true
  49978. },
  49979. {
  49980. name: "Macro",
  49981. height: math.unit(200, "feet")
  49982. },
  49983. {
  49984. name: "Mega Macro",
  49985. height: math.unit(1, "mile")
  49986. },
  49987. {
  49988. name: "Giga Macro",
  49989. height: math.unit(1500, "miles")
  49990. },
  49991. {
  49992. name: "Tera Macro",
  49993. height: math.unit(8000, "miles")
  49994. },
  49995. {
  49996. name: "Tera Macro+",
  49997. height: math.unit(2e5, "miles")
  49998. },
  49999. ]
  50000. ))
  50001. characterMakers.push(() => makeCharacter(
  50002. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  50003. {
  50004. front: {
  50005. height: math.unit(6.5, "feet"),
  50006. name: "Front",
  50007. image: {
  50008. source: "./media/characters/svetlana-rozovskaya/front.svg",
  50009. extra: 860/819,
  50010. bottom: 307/1167
  50011. }
  50012. },
  50013. back: {
  50014. height: math.unit(6.5, "feet"),
  50015. name: "Back",
  50016. image: {
  50017. source: "./media/characters/svetlana-rozovskaya/back.svg",
  50018. extra: 880/837,
  50019. bottom: 395/1275
  50020. }
  50021. },
  50022. sleeping: {
  50023. height: math.unit(2.79, "feet"),
  50024. name: "Sleeping",
  50025. image: {
  50026. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  50027. extra: 465/383,
  50028. bottom: 263/728
  50029. }
  50030. },
  50031. maw: {
  50032. height: math.unit(2.52, "feet"),
  50033. name: "Maw",
  50034. image: {
  50035. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  50036. }
  50037. },
  50038. },
  50039. [
  50040. {
  50041. name: "Normal",
  50042. height: math.unit(6.5, "feet"),
  50043. default: true
  50044. },
  50045. ]
  50046. ))
  50047. characterMakers.push(() => makeCharacter(
  50048. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  50049. {
  50050. front: {
  50051. height: math.unit(5, "feet"),
  50052. name: "Front",
  50053. image: {
  50054. source: "./media/characters/nova-nerium/front.svg",
  50055. extra: 1548/1392,
  50056. bottom: 374/1922
  50057. }
  50058. },
  50059. back: {
  50060. height: math.unit(5, "feet"),
  50061. name: "Back",
  50062. image: {
  50063. source: "./media/characters/nova-nerium/back.svg",
  50064. extra: 1658/1468,
  50065. bottom: 257/1915
  50066. }
  50067. },
  50068. },
  50069. [
  50070. {
  50071. name: "Normal",
  50072. height: math.unit(5, "feet"),
  50073. default: true
  50074. },
  50075. ]
  50076. ))
  50077. characterMakers.push(() => makeCharacter(
  50078. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50079. {
  50080. front: {
  50081. height: math.unit(5 + 4/12, "feet"),
  50082. name: "Front",
  50083. image: {
  50084. source: "./media/characters/ashe-pyriph/front.svg",
  50085. extra: 1935/1747,
  50086. bottom: 60/1995
  50087. }
  50088. },
  50089. },
  50090. [
  50091. {
  50092. name: "Normal",
  50093. height: math.unit(5 + 4/12, "feet"),
  50094. default: true
  50095. },
  50096. ]
  50097. ))
  50098. characterMakers.push(() => makeCharacter(
  50099. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50100. {
  50101. front: {
  50102. height: math.unit(8.7, "feet"),
  50103. name: "Front",
  50104. image: {
  50105. source: "./media/characters/flicker-wisp/front.svg",
  50106. extra: 1835/1613,
  50107. bottom: 449/2284
  50108. }
  50109. },
  50110. side: {
  50111. height: math.unit(8.7, "feet"),
  50112. name: "Side",
  50113. image: {
  50114. source: "./media/characters/flicker-wisp/side.svg",
  50115. extra: 1841/1642,
  50116. bottom: 336/2177
  50117. },
  50118. default: true
  50119. },
  50120. maw: {
  50121. height: math.unit(3.35, "feet"),
  50122. name: "Maw",
  50123. image: {
  50124. source: "./media/characters/flicker-wisp/maw.svg",
  50125. extra: 2338/1506,
  50126. bottom: 0/2338
  50127. }
  50128. },
  50129. ovipositor: {
  50130. height: math.unit(4.95, "feet"),
  50131. name: "Ovipositor",
  50132. image: {
  50133. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50134. }
  50135. },
  50136. egg: {
  50137. height: math.unit(0.385, "feet"),
  50138. weight: math.unit(2, "lb"),
  50139. name: "Egg",
  50140. image: {
  50141. source: "./media/characters/flicker-wisp/egg.svg"
  50142. }
  50143. },
  50144. },
  50145. [
  50146. {
  50147. name: "Normal",
  50148. height: math.unit(8.7, "feet"),
  50149. default: true
  50150. },
  50151. ]
  50152. ))
  50153. characterMakers.push(() => makeCharacter(
  50154. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50155. {
  50156. side: {
  50157. height: math.unit(11, "feet"),
  50158. name: "Side",
  50159. image: {
  50160. source: "./media/characters/faefnul/side.svg",
  50161. extra: 1100/1007,
  50162. bottom: 0/1100
  50163. }
  50164. },
  50165. },
  50166. [
  50167. {
  50168. name: "Normal",
  50169. height: math.unit(11, "feet"),
  50170. default: true
  50171. },
  50172. ]
  50173. ))
  50174. characterMakers.push(() => makeCharacter(
  50175. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50176. {
  50177. front: {
  50178. height: math.unit(6 + 2/12, "feet"),
  50179. name: "Front",
  50180. image: {
  50181. source: "./media/characters/shady/front.svg",
  50182. extra: 502/461,
  50183. bottom: 9/511
  50184. }
  50185. },
  50186. kneeling: {
  50187. height: math.unit(4.6, "feet"),
  50188. name: "Kneeling",
  50189. image: {
  50190. source: "./media/characters/shady/kneeling.svg",
  50191. extra: 1328/1219,
  50192. bottom: 117/1445
  50193. }
  50194. },
  50195. maw: {
  50196. height: math.unit(2, "feet"),
  50197. name: "Maw",
  50198. image: {
  50199. source: "./media/characters/shady/maw.svg"
  50200. }
  50201. },
  50202. },
  50203. [
  50204. {
  50205. name: "Nano",
  50206. height: math.unit(1, "mm")
  50207. },
  50208. {
  50209. name: "Micro",
  50210. height: math.unit(12, "mm")
  50211. },
  50212. {
  50213. name: "Tiny",
  50214. height: math.unit(3, "inches")
  50215. },
  50216. {
  50217. name: "Normal",
  50218. height: math.unit(6 + 2/12, "feet"),
  50219. default: true
  50220. },
  50221. {
  50222. name: "Big",
  50223. height: math.unit(15, "feet")
  50224. },
  50225. {
  50226. name: "Macro",
  50227. height: math.unit(150, "feet")
  50228. },
  50229. {
  50230. name: "Titanic",
  50231. height: math.unit(500, "feet")
  50232. },
  50233. ]
  50234. ))
  50235. characterMakers.push(() => makeCharacter(
  50236. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50237. {
  50238. front: {
  50239. height: math.unit(12, "feet"),
  50240. name: "Front",
  50241. image: {
  50242. source: "./media/characters/fenrir/front.svg",
  50243. extra: 968/875,
  50244. bottom: 22/990
  50245. }
  50246. },
  50247. },
  50248. [
  50249. {
  50250. name: "Big",
  50251. height: math.unit(12, "feet"),
  50252. default: true
  50253. },
  50254. ]
  50255. ))
  50256. characterMakers.push(() => makeCharacter(
  50257. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50258. {
  50259. front: {
  50260. height: math.unit(5 + 4/12, "feet"),
  50261. name: "Front",
  50262. image: {
  50263. source: "./media/characters/makar/front.svg",
  50264. extra: 1181/1112,
  50265. bottom: 78/1259
  50266. }
  50267. },
  50268. },
  50269. [
  50270. {
  50271. name: "Normal",
  50272. height: math.unit(5 + 4/12, "feet"),
  50273. default: true
  50274. },
  50275. ]
  50276. ))
  50277. characterMakers.push(() => makeCharacter(
  50278. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50279. {
  50280. front: {
  50281. height: math.unit(5 + 7/12, "feet"),
  50282. name: "Front",
  50283. image: {
  50284. source: "./media/characters/callow/front.svg",
  50285. extra: 1482/1304,
  50286. bottom: 23/1505
  50287. }
  50288. },
  50289. back: {
  50290. height: math.unit(5 + 7/12, "feet"),
  50291. name: "Back",
  50292. image: {
  50293. source: "./media/characters/callow/back.svg",
  50294. extra: 1484/1296,
  50295. bottom: 25/1509
  50296. }
  50297. },
  50298. },
  50299. [
  50300. {
  50301. name: "Micro",
  50302. height: math.unit(3, "inches"),
  50303. default: true
  50304. },
  50305. {
  50306. name: "Normal",
  50307. height: math.unit(5 + 7/12, "feet")
  50308. },
  50309. ]
  50310. ))
  50311. characterMakers.push(() => makeCharacter(
  50312. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50313. {
  50314. front: {
  50315. height: math.unit(6 + 2/12, "feet"),
  50316. name: "Front",
  50317. image: {
  50318. source: "./media/characters/natel/front.svg",
  50319. extra: 1833/1692,
  50320. bottom: 166/1999
  50321. }
  50322. },
  50323. },
  50324. [
  50325. {
  50326. name: "Normal",
  50327. height: math.unit(6 + 2/12, "feet"),
  50328. default: true
  50329. },
  50330. ]
  50331. ))
  50332. characterMakers.push(() => makeCharacter(
  50333. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50334. {
  50335. front: {
  50336. height: math.unit(1.75, "meters"),
  50337. name: "Front",
  50338. image: {
  50339. source: "./media/characters/misu/front.svg",
  50340. extra: 1690/1558,
  50341. bottom: 234/1924
  50342. }
  50343. },
  50344. back: {
  50345. height: math.unit(1.75, "meters"),
  50346. name: "Back",
  50347. image: {
  50348. source: "./media/characters/misu/back.svg",
  50349. extra: 1762/1618,
  50350. bottom: 146/1908
  50351. }
  50352. },
  50353. frontNude: {
  50354. height: math.unit(1.75, "meters"),
  50355. name: "Front (Nude)",
  50356. image: {
  50357. source: "./media/characters/misu/front-nude.svg",
  50358. extra: 1690/1558,
  50359. bottom: 234/1924
  50360. }
  50361. },
  50362. backNude: {
  50363. height: math.unit(1.75, "meters"),
  50364. name: "Back (Nude)",
  50365. image: {
  50366. source: "./media/characters/misu/back-nude.svg",
  50367. extra: 1762/1618,
  50368. bottom: 146/1908
  50369. }
  50370. },
  50371. frontErect: {
  50372. height: math.unit(1.75, "meters"),
  50373. name: "Front (Erect)",
  50374. image: {
  50375. source: "./media/characters/misu/front-erect.svg",
  50376. extra: 1690/1558,
  50377. bottom: 234/1924
  50378. }
  50379. },
  50380. maw: {
  50381. height: math.unit(0.47, "meters"),
  50382. name: "Maw",
  50383. image: {
  50384. source: "./media/characters/misu/maw.svg"
  50385. }
  50386. },
  50387. head: {
  50388. height: math.unit(0.35, "meters"),
  50389. name: "Head",
  50390. image: {
  50391. source: "./media/characters/misu/head.svg"
  50392. }
  50393. },
  50394. rear: {
  50395. height: math.unit(0.47, "meters"),
  50396. name: "Rear",
  50397. image: {
  50398. source: "./media/characters/misu/rear.svg"
  50399. }
  50400. },
  50401. },
  50402. [
  50403. {
  50404. name: "Normal",
  50405. height: math.unit(1.75, "meters")
  50406. },
  50407. {
  50408. name: "Not good for the people",
  50409. height: math.unit(42, "meters")
  50410. },
  50411. {
  50412. name: "Not good for the neighborhood",
  50413. height: math.unit(135, "meters")
  50414. },
  50415. {
  50416. name: "Bit bigger problem",
  50417. height: math.unit(380, "meters"),
  50418. default: true
  50419. },
  50420. {
  50421. name: "Not good for the city",
  50422. height: math.unit(1.5, "km")
  50423. },
  50424. {
  50425. name: "Not good for the county",
  50426. height: math.unit(5.5, "km")
  50427. },
  50428. {
  50429. name: "Not good for the state",
  50430. height: math.unit(25, "km")
  50431. },
  50432. {
  50433. name: "Not good for the country",
  50434. height: math.unit(125, "km")
  50435. },
  50436. {
  50437. name: "Not good for the continent",
  50438. height: math.unit(2100, "km")
  50439. },
  50440. {
  50441. name: "Not good for the planet",
  50442. height: math.unit(35000, "km")
  50443. },
  50444. {
  50445. name: "Just no",
  50446. height: math.unit(8.5e18, "km")
  50447. },
  50448. ]
  50449. ))
  50450. characterMakers.push(() => makeCharacter(
  50451. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50452. {
  50453. front: {
  50454. height: math.unit(6.5, "feet"),
  50455. name: "Front",
  50456. image: {
  50457. source: "./media/characters/poppy/front.svg",
  50458. extra: 1878/1812,
  50459. bottom: 43/1921
  50460. }
  50461. },
  50462. feet: {
  50463. height: math.unit(1.06, "feet"),
  50464. name: "Feet",
  50465. image: {
  50466. source: "./media/characters/poppy/feet.svg",
  50467. extra: 1083/1083,
  50468. bottom: 87/1170
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Human",
  50475. height: math.unit(6.5, "feet")
  50476. },
  50477. {
  50478. name: "Default",
  50479. height: math.unit(300, "feet"),
  50480. default: true
  50481. },
  50482. {
  50483. name: "Huge",
  50484. height: math.unit(850, "feet")
  50485. },
  50486. {
  50487. name: "Mega",
  50488. height: math.unit(8000, "feet")
  50489. },
  50490. {
  50491. name: "Giga",
  50492. height: math.unit(300, "miles")
  50493. },
  50494. ]
  50495. ))
  50496. characterMakers.push(() => makeCharacter(
  50497. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50498. {
  50499. bipedal: {
  50500. height: math.unit(7, "feet"),
  50501. name: "Bipedal",
  50502. image: {
  50503. source: "./media/characters/zener/bipedal.svg",
  50504. extra: 874/805,
  50505. bottom: 109/983
  50506. }
  50507. },
  50508. quadrupedal: {
  50509. height: math.unit(4.64, "feet"),
  50510. name: "Quadrupedal",
  50511. image: {
  50512. source: "./media/characters/zener/quadrupedal.svg",
  50513. extra: 638/507,
  50514. bottom: 190/828
  50515. }
  50516. },
  50517. cock: {
  50518. height: math.unit(18, "inches"),
  50519. name: "Cock",
  50520. image: {
  50521. source: "./media/characters/zener/cock.svg"
  50522. }
  50523. },
  50524. },
  50525. [
  50526. {
  50527. name: "Normal",
  50528. height: math.unit(7, "feet"),
  50529. default: true
  50530. },
  50531. ]
  50532. ))
  50533. characterMakers.push(() => makeCharacter(
  50534. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50535. {
  50536. nude: {
  50537. height: math.unit(5 + 6/12, "feet"),
  50538. name: "Nude",
  50539. image: {
  50540. source: "./media/characters/charlie-dog/nude.svg",
  50541. extra: 768/734,
  50542. bottom: 26/794
  50543. }
  50544. },
  50545. dressed: {
  50546. height: math.unit(5 + 6/12, "feet"),
  50547. name: "Dressed",
  50548. image: {
  50549. source: "./media/characters/charlie-dog/dressed.svg",
  50550. extra: 768/734,
  50551. bottom: 26/794
  50552. }
  50553. },
  50554. },
  50555. [
  50556. {
  50557. name: "Normal",
  50558. height: math.unit(5 + 6/12, "feet"),
  50559. default: true
  50560. },
  50561. ]
  50562. ))
  50563. characterMakers.push(() => makeCharacter(
  50564. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50565. {
  50566. front: {
  50567. height: math.unit(6 + 4/12, "feet"),
  50568. name: "Front",
  50569. image: {
  50570. source: "./media/characters/ir'istrasz/front.svg",
  50571. extra: 1014/977,
  50572. bottom: 65/1079
  50573. }
  50574. },
  50575. back: {
  50576. height: math.unit(6 + 4/12, "feet"),
  50577. name: "Back",
  50578. image: {
  50579. source: "./media/characters/ir'istrasz/back.svg",
  50580. extra: 1024/992,
  50581. bottom: 34/1058
  50582. }
  50583. },
  50584. },
  50585. [
  50586. {
  50587. name: "Normal",
  50588. height: math.unit(6 + 4/12, "feet"),
  50589. default: true
  50590. },
  50591. ]
  50592. ))
  50593. characterMakers.push(() => makeCharacter(
  50594. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50595. {
  50596. front: {
  50597. height: math.unit(5 + 8/12, "feet"),
  50598. name: "Front",
  50599. image: {
  50600. source: "./media/characters/dee-ditto/front.svg",
  50601. extra: 1874/1785,
  50602. bottom: 68/1942
  50603. }
  50604. },
  50605. back: {
  50606. height: math.unit(5 + 8/12, "feet"),
  50607. name: "Back",
  50608. image: {
  50609. source: "./media/characters/dee-ditto/back.svg",
  50610. extra: 1870/1783,
  50611. bottom: 77/1947
  50612. }
  50613. },
  50614. },
  50615. [
  50616. {
  50617. name: "Normal",
  50618. height: math.unit(5 + 8/12, "feet"),
  50619. default: true
  50620. },
  50621. ]
  50622. ))
  50623. characterMakers.push(() => makeCharacter(
  50624. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50625. {
  50626. front: {
  50627. height: math.unit(7 + 6/12, "feet"),
  50628. name: "Front",
  50629. image: {
  50630. source: "./media/characters/fey/front.svg",
  50631. extra: 995/979,
  50632. bottom: 30/1025
  50633. }
  50634. },
  50635. back: {
  50636. height: math.unit(7 + 6/12, "feet"),
  50637. name: "Back",
  50638. image: {
  50639. source: "./media/characters/fey/back.svg",
  50640. extra: 1079/1008,
  50641. bottom: 5/1084
  50642. }
  50643. },
  50644. dressed: {
  50645. height: math.unit(7 + 6/12, "feet"),
  50646. name: "Dressed",
  50647. image: {
  50648. source: "./media/characters/fey/dressed.svg",
  50649. extra: 995/979,
  50650. bottom: 30/1025
  50651. }
  50652. },
  50653. },
  50654. [
  50655. {
  50656. name: "Normal",
  50657. height: math.unit(7 + 6/12, "feet"),
  50658. default: true
  50659. },
  50660. ]
  50661. ))
  50662. characterMakers.push(() => makeCharacter(
  50663. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50664. {
  50665. standing: {
  50666. height: math.unit(17, "feet"),
  50667. name: "Standing",
  50668. image: {
  50669. source: "./media/characters/aster/standing.svg",
  50670. extra: 1798/1598,
  50671. bottom: 117/1915
  50672. }
  50673. },
  50674. },
  50675. [
  50676. {
  50677. name: "Normal",
  50678. height: math.unit(17, "feet"),
  50679. default: true
  50680. },
  50681. {
  50682. name: "Homewrecker",
  50683. height: math.unit(95, "feet")
  50684. },
  50685. {
  50686. name: "Planet Devourer",
  50687. height: math.unit(1008000, "miles")
  50688. },
  50689. ]
  50690. ))
  50691. characterMakers.push(() => makeCharacter(
  50692. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50693. {
  50694. front: {
  50695. height: math.unit(6 + 5/12, "feet"),
  50696. weight: math.unit(265, "lb"),
  50697. name: "Front",
  50698. image: {
  50699. source: "./media/characters/devon-childs/front.svg",
  50700. extra: 1795/1721,
  50701. bottom: 41/1836
  50702. }
  50703. },
  50704. side: {
  50705. height: math.unit(6 + 5/12, "feet"),
  50706. weight: math.unit(265, "lb"),
  50707. name: "Side",
  50708. image: {
  50709. source: "./media/characters/devon-childs/side.svg",
  50710. extra: 1812/1738,
  50711. bottom: 30/1842
  50712. }
  50713. },
  50714. back: {
  50715. height: math.unit(6 + 5/12, "feet"),
  50716. weight: math.unit(265, "lb"),
  50717. name: "Back",
  50718. image: {
  50719. source: "./media/characters/devon-childs/back.svg",
  50720. extra: 1808/1735,
  50721. bottom: 23/1831
  50722. }
  50723. },
  50724. hand: {
  50725. height: math.unit(1.464, "feet"),
  50726. name: "Hand",
  50727. image: {
  50728. source: "./media/characters/devon-childs/hand.svg"
  50729. }
  50730. },
  50731. foot: {
  50732. height: math.unit(1.6, "feet"),
  50733. name: "Foot",
  50734. image: {
  50735. source: "./media/characters/devon-childs/foot.svg"
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Micro",
  50742. height: math.unit(7, "cm")
  50743. },
  50744. {
  50745. name: "Normal",
  50746. height: math.unit(6 + 5/12, "feet"),
  50747. default: true
  50748. },
  50749. {
  50750. name: "Macro",
  50751. height: math.unit(154, "feet")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50757. {
  50758. front: {
  50759. height: math.unit(6, "feet"),
  50760. weight: math.unit(180, "lb"),
  50761. name: "Front",
  50762. image: {
  50763. source: "./media/characters/lydemox-vir/front.svg",
  50764. extra: 1632/1435,
  50765. bottom: 58/1690
  50766. }
  50767. },
  50768. frontSFW: {
  50769. height: math.unit(6, "feet"),
  50770. weight: math.unit(180, "lb"),
  50771. name: "Front (SFW)",
  50772. image: {
  50773. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50774. extra: 1632/1435,
  50775. bottom: 58/1690
  50776. }
  50777. },
  50778. back: {
  50779. height: math.unit(6, "feet"),
  50780. weight: math.unit(180, "lb"),
  50781. name: "Back",
  50782. image: {
  50783. source: "./media/characters/lydemox-vir/back.svg",
  50784. extra: 1593/1408,
  50785. bottom: 31/1624
  50786. }
  50787. },
  50788. paw: {
  50789. height: math.unit(1.85, "feet"),
  50790. name: "Paw",
  50791. image: {
  50792. source: "./media/characters/lydemox-vir/paw.svg"
  50793. }
  50794. },
  50795. dick: {
  50796. height: math.unit(1.8, "feet"),
  50797. name: "Dick",
  50798. image: {
  50799. source: "./media/characters/lydemox-vir/dick.svg"
  50800. }
  50801. },
  50802. },
  50803. [
  50804. {
  50805. name: "Macro",
  50806. height: math.unit(100, "feet"),
  50807. default: true
  50808. },
  50809. {
  50810. name: "Teramacro",
  50811. height: math.unit(1, "earth")
  50812. },
  50813. {
  50814. name: "Planetary",
  50815. height: math.unit(20, "earths")
  50816. },
  50817. ]
  50818. ))
  50819. characterMakers.push(() => makeCharacter(
  50820. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50821. {
  50822. front: {
  50823. height: math.unit(15 + 8/12, "feet"),
  50824. weight: math.unit(1237, "kg"),
  50825. name: "Front",
  50826. image: {
  50827. source: "./media/characters/mia/front.svg",
  50828. extra: 1573/1446,
  50829. bottom: 58/1631
  50830. }
  50831. },
  50832. },
  50833. [
  50834. {
  50835. name: "Small",
  50836. height: math.unit(9 + 5/12, "feet")
  50837. },
  50838. {
  50839. name: "Normal",
  50840. height: math.unit(15 + 8/12, "feet"),
  50841. default: true
  50842. },
  50843. ]
  50844. ))
  50845. characterMakers.push(() => makeCharacter(
  50846. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50847. {
  50848. front: {
  50849. height: math.unit(10 + 6/12, "feet"),
  50850. weight: math.unit(1.3, "tons"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/mr-graves/front.svg",
  50854. extra: 1779/1695,
  50855. bottom: 198/1977
  50856. }
  50857. },
  50858. },
  50859. [
  50860. {
  50861. name: "Normal",
  50862. height: math.unit(10 + 6 /12, "feet"),
  50863. default: true
  50864. },
  50865. ]
  50866. ))
  50867. characterMakers.push(() => makeCharacter(
  50868. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50869. {
  50870. dressedFront: {
  50871. height: math.unit(5 + 8/12, "feet"),
  50872. weight: math.unit(125, "lb"),
  50873. name: "Dressed (Front)",
  50874. image: {
  50875. source: "./media/characters/jess/dressed-front.svg",
  50876. extra: 1176/1152,
  50877. bottom: 42/1218
  50878. }
  50879. },
  50880. dressedSide: {
  50881. height: math.unit(5 + 8/12, "feet"),
  50882. weight: math.unit(125, "lb"),
  50883. name: "Dressed (Side)",
  50884. image: {
  50885. source: "./media/characters/jess/dressed-side.svg",
  50886. extra: 1204/1190,
  50887. bottom: 6/1210
  50888. }
  50889. },
  50890. nudeFront: {
  50891. height: math.unit(5 + 8/12, "feet"),
  50892. weight: math.unit(125, "lb"),
  50893. name: "Nude (Front)",
  50894. image: {
  50895. source: "./media/characters/jess/nude-front.svg",
  50896. extra: 1176/1152,
  50897. bottom: 42/1218
  50898. }
  50899. },
  50900. nudeSide: {
  50901. height: math.unit(5 + 8/12, "feet"),
  50902. weight: math.unit(125, "lb"),
  50903. name: "Nude (Side)",
  50904. image: {
  50905. source: "./media/characters/jess/nude-side.svg",
  50906. extra: 1204/1190,
  50907. bottom: 6/1210
  50908. }
  50909. },
  50910. organsFront: {
  50911. height: math.unit(2.83799342105, "feet"),
  50912. name: "Organs (Front)",
  50913. image: {
  50914. source: "./media/characters/jess/organs-front.svg"
  50915. }
  50916. },
  50917. organsSide: {
  50918. height: math.unit(2.64225290474, "feet"),
  50919. name: "Organs (Side)",
  50920. image: {
  50921. source: "./media/characters/jess/organs-side.svg"
  50922. }
  50923. },
  50924. digestiveTractFront: {
  50925. height: math.unit(2.8106580871, "feet"),
  50926. name: "Digestive Tract (Front)",
  50927. image: {
  50928. source: "./media/characters/jess/digestive-tract-front.svg"
  50929. }
  50930. },
  50931. digestiveTractSide: {
  50932. height: math.unit(2.54365045014, "feet"),
  50933. name: "Digestive Tract (Side)",
  50934. image: {
  50935. source: "./media/characters/jess/digestive-tract-side.svg"
  50936. }
  50937. },
  50938. respiratorySystemFront: {
  50939. height: math.unit(1.11196233456, "feet"),
  50940. name: "Respiratory System (Front)",
  50941. image: {
  50942. source: "./media/characters/jess/respiratory-system-front.svg"
  50943. }
  50944. },
  50945. respiratorySystemSide: {
  50946. height: math.unit(0.89327966297, "feet"),
  50947. name: "Respiratory System (Side)",
  50948. image: {
  50949. source: "./media/characters/jess/respiratory-system-side.svg"
  50950. }
  50951. },
  50952. urinaryTractFront: {
  50953. height: math.unit(1.16126356186, "feet"),
  50954. name: "Urinary Tract (Front)",
  50955. image: {
  50956. source: "./media/characters/jess/urinary-tract-front.svg"
  50957. }
  50958. },
  50959. urinaryTractSide: {
  50960. height: math.unit(1.20910039627, "feet"),
  50961. name: "Urinary Tract (Side)",
  50962. image: {
  50963. source: "./media/characters/jess/urinary-tract-side.svg"
  50964. }
  50965. },
  50966. reproductiveOrgansFront: {
  50967. height: math.unit(0.48422591566, "feet"),
  50968. name: "Reproductive Organs (Front)",
  50969. image: {
  50970. source: "./media/characters/jess/reproductive-organs-front.svg"
  50971. }
  50972. },
  50973. reproductiveOrgansSide: {
  50974. height: math.unit(0.61553314481, "feet"),
  50975. name: "Reproductive Organs (Side)",
  50976. image: {
  50977. source: "./media/characters/jess/reproductive-organs-side.svg"
  50978. }
  50979. },
  50980. breastsFront: {
  50981. height: math.unit(0.47690395121, "feet"),
  50982. name: "Breasts (Front)",
  50983. image: {
  50984. source: "./media/characters/jess/breasts-front.svg"
  50985. }
  50986. },
  50987. breastsSide: {
  50988. height: math.unit(0.30556998307, "feet"),
  50989. name: "Breasts (Side)",
  50990. image: {
  50991. source: "./media/characters/jess/breasts-side.svg"
  50992. }
  50993. },
  50994. heartFront: {
  50995. height: math.unit(0.53011022622, "feet"),
  50996. name: "Heart (Front)",
  50997. image: {
  50998. source: "./media/characters/jess/heart-front.svg"
  50999. }
  51000. },
  51001. heartSide: {
  51002. height: math.unit(0.51790695213, "feet"),
  51003. name: "Heart (Side)",
  51004. image: {
  51005. source: "./media/characters/jess/heart-side.svg"
  51006. }
  51007. },
  51008. earsAndNoseFront: {
  51009. height: math.unit(0.29385483995, "feet"),
  51010. name: "Ears and Nose (Front)",
  51011. image: {
  51012. source: "./media/characters/jess/ears-and-nose-front.svg"
  51013. }
  51014. },
  51015. earsAndNoseSide: {
  51016. height: math.unit(0.18109658741, "feet"),
  51017. name: "Ears and Nose (Side)",
  51018. image: {
  51019. source: "./media/characters/jess/ears-and-nose-side.svg"
  51020. }
  51021. },
  51022. },
  51023. [
  51024. {
  51025. name: "Normal",
  51026. height: math.unit(5 + 8/12, "feet"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  51033. {
  51034. front: {
  51035. height: math.unit(6, "feet"),
  51036. weight: math.unit(6.64467e-7, "grams"),
  51037. name: "Front",
  51038. image: {
  51039. source: "./media/characters/wimpering/front.svg",
  51040. extra: 597/587,
  51041. bottom: 34/631
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Micro",
  51048. height: math.unit(0.4, "mm"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(5 + 2/12, "feet"),
  51058. weight: math.unit(110, "lb"),
  51059. name: "Front",
  51060. image: {
  51061. source: "./media/characters/keltre/front.svg",
  51062. extra: 1099/1057,
  51063. bottom: 22/1121
  51064. }
  51065. },
  51066. back: {
  51067. height: math.unit(5 + 2/12, "feet"),
  51068. weight: math.unit(110, "lb"),
  51069. name: "Back",
  51070. image: {
  51071. source: "./media/characters/keltre/back.svg",
  51072. extra: 1095/1053,
  51073. bottom: 17/1112
  51074. }
  51075. },
  51076. dressed: {
  51077. height: math.unit(5 + 2/12, "feet"),
  51078. weight: math.unit(110, "lb"),
  51079. name: "Dressed",
  51080. image: {
  51081. source: "./media/characters/keltre/dressed.svg",
  51082. extra: 1099/1057,
  51083. bottom: 22/1121
  51084. }
  51085. },
  51086. winter: {
  51087. height: math.unit(5 + 2/12, "feet"),
  51088. weight: math.unit(110, "lb"),
  51089. name: "Winter",
  51090. image: {
  51091. source: "./media/characters/keltre/winter.svg",
  51092. extra: 1099/1057,
  51093. bottom: 22/1121
  51094. }
  51095. },
  51096. head: {
  51097. height: math.unit(1.61 * 0.86, "feet"),
  51098. name: "Head",
  51099. image: {
  51100. source: "./media/characters/keltre/head.svg",
  51101. extra: 534/421,
  51102. bottom: 0/534
  51103. }
  51104. },
  51105. hand: {
  51106. height: math.unit(1.3 * 0.86, "feet"),
  51107. name: "Hand",
  51108. image: {
  51109. source: "./media/characters/keltre/hand.svg"
  51110. }
  51111. },
  51112. foot: {
  51113. height: math.unit(1.8 * 0.86, "feet"),
  51114. name: "Foot",
  51115. image: {
  51116. source: "./media/characters/keltre/foot.svg"
  51117. }
  51118. },
  51119. },
  51120. [
  51121. {
  51122. name: "Fine",
  51123. height: math.unit(1, "inch")
  51124. },
  51125. {
  51126. name: "Dimnutive",
  51127. height: math.unit(4, "inches")
  51128. },
  51129. {
  51130. name: "Tiny",
  51131. height: math.unit(1, "foot")
  51132. },
  51133. {
  51134. name: "Small",
  51135. height: math.unit(3, "feet")
  51136. },
  51137. {
  51138. name: "Normal",
  51139. height: math.unit(5 + 2/12, "feet"),
  51140. default: true
  51141. },
  51142. ]
  51143. ))
  51144. characterMakers.push(() => makeCharacter(
  51145. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51146. {
  51147. front: {
  51148. height: math.unit(6 + 2/12, "feet"),
  51149. name: "Front",
  51150. image: {
  51151. source: "./media/characters/nox/front.svg",
  51152. extra: 1917/1830,
  51153. bottom: 74/1991
  51154. }
  51155. },
  51156. back: {
  51157. height: math.unit(6 + 2/12, "feet"),
  51158. name: "Back",
  51159. image: {
  51160. source: "./media/characters/nox/back.svg",
  51161. extra: 1896/1815,
  51162. bottom: 21/1917
  51163. }
  51164. },
  51165. head: {
  51166. height: math.unit(1.1, "feet"),
  51167. name: "Head",
  51168. image: {
  51169. source: "./media/characters/nox/head.svg",
  51170. extra: 874/704,
  51171. bottom: 0/874
  51172. }
  51173. },
  51174. tattoo: {
  51175. height: math.unit(0.729, "feet"),
  51176. name: "Tattoo",
  51177. image: {
  51178. source: "./media/characters/nox/tattoo.svg"
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(6 + 2/12, "feet")
  51186. },
  51187. {
  51188. name: "Gigamacro",
  51189. height: math.unit(2, "earths"),
  51190. default: true
  51191. },
  51192. {
  51193. name: "Cosmic",
  51194. height: math.unit(867, "yottameters")
  51195. },
  51196. ]
  51197. ))
  51198. characterMakers.push(() => makeCharacter(
  51199. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51200. {
  51201. front: {
  51202. height: math.unit(6, "feet"),
  51203. weight: math.unit(150, "lb"),
  51204. name: "Front",
  51205. image: {
  51206. source: "./media/characters/caspian/front.svg",
  51207. extra: 1443/1359,
  51208. bottom: 0/1443
  51209. }
  51210. },
  51211. back: {
  51212. height: math.unit(6, "feet"),
  51213. weight: math.unit(150, "lb"),
  51214. name: "Back",
  51215. image: {
  51216. source: "./media/characters/caspian/back.svg",
  51217. extra: 1379/1309,
  51218. bottom: 0/1379
  51219. }
  51220. },
  51221. head: {
  51222. height: math.unit(0.9, "feet"),
  51223. name: "Head",
  51224. image: {
  51225. source: "./media/characters/caspian/head.svg",
  51226. extra: 692/492,
  51227. bottom: 0/692
  51228. }
  51229. },
  51230. headAlt: {
  51231. height: math.unit(0.95, "feet"),
  51232. name: "Head (Alt)",
  51233. image: {
  51234. source: "./media/characters/caspian/head-alt.svg",
  51235. extra: 668/508,
  51236. bottom: 0/668
  51237. }
  51238. },
  51239. hand: {
  51240. height: math.unit(0.8, "feet"),
  51241. name: "Hand",
  51242. image: {
  51243. source: "./media/characters/caspian/hand.svg"
  51244. }
  51245. },
  51246. paw: {
  51247. height: math.unit(0.95, "feet"),
  51248. name: "Paw",
  51249. image: {
  51250. source: "./media/characters/caspian/paw.svg"
  51251. }
  51252. },
  51253. },
  51254. [
  51255. {
  51256. name: "Normal",
  51257. height: math.unit(162, "feet"),
  51258. default: true
  51259. },
  51260. ]
  51261. ))
  51262. characterMakers.push(() => makeCharacter(
  51263. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51264. {
  51265. front: {
  51266. height: math.unit(6, "feet"),
  51267. name: "Front",
  51268. image: {
  51269. source: "./media/characters/myra-aisling/front.svg",
  51270. extra: 1268/1166,
  51271. bottom: 73/1341
  51272. }
  51273. },
  51274. back: {
  51275. height: math.unit(6, "feet"),
  51276. name: "Back",
  51277. image: {
  51278. source: "./media/characters/myra-aisling/back.svg",
  51279. extra: 1249/1149,
  51280. bottom: 79/1328
  51281. }
  51282. },
  51283. dressed: {
  51284. height: math.unit(6, "feet"),
  51285. name: "Dressed",
  51286. image: {
  51287. source: "./media/characters/myra-aisling/dressed.svg",
  51288. extra: 1290/1189,
  51289. bottom: 47/1337
  51290. }
  51291. },
  51292. hand: {
  51293. height: math.unit(1.1, "feet"),
  51294. name: "Hand",
  51295. image: {
  51296. source: "./media/characters/myra-aisling/hand.svg"
  51297. }
  51298. },
  51299. paw: {
  51300. height: math.unit(1.23, "feet"),
  51301. name: "Paw",
  51302. image: {
  51303. source: "./media/characters/myra-aisling/paw.svg"
  51304. }
  51305. },
  51306. },
  51307. [
  51308. {
  51309. name: "Normal",
  51310. height: math.unit(160, "feet"),
  51311. default: true
  51312. },
  51313. ]
  51314. ))
  51315. characterMakers.push(() => makeCharacter(
  51316. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51317. {
  51318. front: {
  51319. height: math.unit(6, "feet"),
  51320. name: "Front",
  51321. image: {
  51322. source: "./media/characters/tenley-sidero/front.svg",
  51323. extra: 1365/1276,
  51324. bottom: 47/1412
  51325. }
  51326. },
  51327. back: {
  51328. height: math.unit(6, "feet"),
  51329. name: "Back",
  51330. image: {
  51331. source: "./media/characters/tenley-sidero/back.svg",
  51332. extra: 1383/1283,
  51333. bottom: 35/1418
  51334. }
  51335. },
  51336. dressed: {
  51337. height: math.unit(6, "feet"),
  51338. name: "Dressed",
  51339. image: {
  51340. source: "./media/characters/tenley-sidero/dressed.svg",
  51341. extra: 1364/1275,
  51342. bottom: 42/1406
  51343. }
  51344. },
  51345. head: {
  51346. height: math.unit(1.47, "feet"),
  51347. name: "Head",
  51348. image: {
  51349. source: "./media/characters/tenley-sidero/head.svg",
  51350. extra: 610/490,
  51351. bottom: 0/610
  51352. }
  51353. },
  51354. },
  51355. [
  51356. {
  51357. name: "Normal",
  51358. height: math.unit(154, "feet"),
  51359. default: true
  51360. },
  51361. ]
  51362. ))
  51363. characterMakers.push(() => makeCharacter(
  51364. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51365. {
  51366. front: {
  51367. height: math.unit(5, "inches"),
  51368. name: "Front",
  51369. image: {
  51370. source: "./media/characters/mallory/front.svg",
  51371. extra: 1919/1678,
  51372. bottom: 29/1948
  51373. }
  51374. },
  51375. hand: {
  51376. height: math.unit(0.73, "inches"),
  51377. name: "Hand",
  51378. image: {
  51379. source: "./media/characters/mallory/hand.svg"
  51380. }
  51381. },
  51382. paw: {
  51383. height: math.unit(0.68, "inches"),
  51384. name: "Paw",
  51385. image: {
  51386. source: "./media/characters/mallory/paw.svg"
  51387. }
  51388. },
  51389. },
  51390. [
  51391. {
  51392. name: "Small",
  51393. height: math.unit(5, "inches"),
  51394. default: true
  51395. },
  51396. ]
  51397. ))
  51398. characterMakers.push(() => makeCharacter(
  51399. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51400. {
  51401. naked: {
  51402. height: math.unit(6, "feet"),
  51403. name: "Naked",
  51404. image: {
  51405. source: "./media/characters/mab/naked.svg",
  51406. extra: 1855/1757,
  51407. bottom: 208/2063
  51408. }
  51409. },
  51410. outside: {
  51411. height: math.unit(6, "feet"),
  51412. name: "Outside",
  51413. image: {
  51414. source: "./media/characters/mab/outside.svg",
  51415. extra: 1855/1757,
  51416. bottom: 208/2063
  51417. }
  51418. },
  51419. party: {
  51420. height: math.unit(6, "feet"),
  51421. name: "Party",
  51422. image: {
  51423. source: "./media/characters/mab/party.svg",
  51424. extra: 1855/1757,
  51425. bottom: 208/2063
  51426. }
  51427. },
  51428. },
  51429. [
  51430. {
  51431. name: "Normal",
  51432. height: math.unit(165, "feet"),
  51433. default: true
  51434. },
  51435. ]
  51436. ))
  51437. characterMakers.push(() => makeCharacter(
  51438. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51439. {
  51440. feral: {
  51441. height: math.unit(12, "feet"),
  51442. weight: math.unit(20000, "lb"),
  51443. name: "Side",
  51444. image: {
  51445. source: "./media/characters/winter/feral.svg",
  51446. extra: 1286/943,
  51447. bottom: 112/1398
  51448. },
  51449. form: "feral",
  51450. default: true
  51451. },
  51452. feralNsfw: {
  51453. height: math.unit(12, "feet"),
  51454. weight: math.unit(20000, "lb"),
  51455. name: "Side (NSFW)",
  51456. image: {
  51457. source: "./media/characters/winter/feral-nsfw.svg",
  51458. extra: 1286/943,
  51459. bottom: 112/1398
  51460. },
  51461. form: "feral"
  51462. },
  51463. dick: {
  51464. height: math.unit(3.79, "feet"),
  51465. name: "Dick",
  51466. image: {
  51467. source: "./media/characters/winter/dick.svg"
  51468. },
  51469. form: "feral"
  51470. },
  51471. anthro: {
  51472. height: math.unit(12, "feet"),
  51473. weight: math.unit(10, "tons"),
  51474. name: "Anthro",
  51475. image: {
  51476. source: "./media/characters/winter/anthro.svg",
  51477. extra: 1701/1553,
  51478. bottom: 64/1765
  51479. },
  51480. form: "anthro",
  51481. default: true
  51482. },
  51483. },
  51484. [
  51485. {
  51486. name: "Big",
  51487. height: math.unit(12, "feet"),
  51488. default: true,
  51489. form: "feral"
  51490. },
  51491. {
  51492. name: "Big",
  51493. height: math.unit(12, "feet"),
  51494. default: true,
  51495. form: "anthro"
  51496. },
  51497. ],
  51498. {
  51499. "feral": {
  51500. name: "Feral",
  51501. default: true
  51502. },
  51503. "anthro": {
  51504. name: "Anthro"
  51505. }
  51506. }
  51507. ))
  51508. characterMakers.push(() => makeCharacter(
  51509. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51510. {
  51511. front: {
  51512. height: math.unit(4.1, "inches"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/alto/front.svg",
  51516. extra: 736/627,
  51517. bottom: 90/826
  51518. }
  51519. },
  51520. },
  51521. [
  51522. {
  51523. name: "Normal",
  51524. height: math.unit(4.1, "inches"),
  51525. default: true
  51526. },
  51527. ]
  51528. ))
  51529. characterMakers.push(() => makeCharacter(
  51530. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51531. {
  51532. sitting: {
  51533. height: math.unit(3, "feet"),
  51534. name: "Sitting",
  51535. image: {
  51536. source: "./media/characters/ratstrid-v/sitting.svg",
  51537. extra: 355/310,
  51538. bottom: 136/491
  51539. }
  51540. },
  51541. },
  51542. [
  51543. {
  51544. name: "Normal",
  51545. height: math.unit(3, "feet"),
  51546. default: true
  51547. },
  51548. ]
  51549. ))
  51550. characterMakers.push(() => makeCharacter(
  51551. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51552. {
  51553. back: {
  51554. height: math.unit(6, "feet"),
  51555. weight: math.unit(450, "lb"),
  51556. name: "Back",
  51557. image: {
  51558. source: "./media/characters/siz/back.svg",
  51559. extra: 1449/1274,
  51560. bottom: 13/1462
  51561. }
  51562. },
  51563. },
  51564. [
  51565. {
  51566. name: "Smallest",
  51567. height: math.unit(18 + 3/12, "feet")
  51568. },
  51569. {
  51570. name: "Modest",
  51571. height: math.unit(56 + 8/12, "feet"),
  51572. default: true
  51573. },
  51574. {
  51575. name: "Largest",
  51576. height: math.unit(3590, "feet")
  51577. },
  51578. ]
  51579. ))
  51580. characterMakers.push(() => makeCharacter(
  51581. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51582. {
  51583. front: {
  51584. height: math.unit(5 + 9/12, "feet"),
  51585. weight: math.unit(150, "lb"),
  51586. name: "Front",
  51587. image: {
  51588. source: "./media/characters/ven/front.svg",
  51589. extra: 1372/1320,
  51590. bottom: 73/1445
  51591. }
  51592. },
  51593. side: {
  51594. height: math.unit(5 + 9/12, "feet"),
  51595. weight: math.unit(1150, "lb"),
  51596. name: "Side",
  51597. image: {
  51598. source: "./media/characters/ven/side.svg",
  51599. extra: 1119/1070,
  51600. bottom: 42/1161
  51601. },
  51602. default: true
  51603. },
  51604. },
  51605. [
  51606. {
  51607. name: "Normal",
  51608. height: math.unit(5 + 9/12, "feet"),
  51609. default: true
  51610. },
  51611. ]
  51612. ))
  51613. characterMakers.push(() => makeCharacter(
  51614. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51615. {
  51616. front: {
  51617. height: math.unit(12, "feet"),
  51618. weight: math.unit(1000, "kg"),
  51619. name: "Front",
  51620. image: {
  51621. source: "./media/characters/maple/front.svg",
  51622. extra: 1193/1081,
  51623. bottom: 22/1215
  51624. }
  51625. },
  51626. },
  51627. [
  51628. {
  51629. name: "Compressed",
  51630. height: math.unit(7, "feet")
  51631. },
  51632. {
  51633. name: "Normal",
  51634. height: math.unit(12, "feet"),
  51635. default: true
  51636. },
  51637. ]
  51638. ))
  51639. characterMakers.push(() => makeCharacter(
  51640. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51641. {
  51642. front: {
  51643. height: math.unit(9, "feet"),
  51644. weight: math.unit(1500, "lb"),
  51645. name: "Front",
  51646. image: {
  51647. source: "./media/characters/nora/front.svg",
  51648. extra: 1348/1286,
  51649. bottom: 218/1566
  51650. }
  51651. },
  51652. erect: {
  51653. height: math.unit(9, "feet"),
  51654. weight: math.unit(11500, "lb"),
  51655. name: "Erect",
  51656. image: {
  51657. source: "./media/characters/nora/erect.svg",
  51658. extra: 1488/1433,
  51659. bottom: 133/1621
  51660. }
  51661. },
  51662. },
  51663. [
  51664. {
  51665. name: "Normal",
  51666. height: math.unit(9, "feet"),
  51667. default: true
  51668. },
  51669. ]
  51670. ))
  51671. characterMakers.push(() => makeCharacter(
  51672. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51673. {
  51674. front: {
  51675. height: math.unit(25, "feet"),
  51676. weight: math.unit(27500, "lb"),
  51677. name: "Front",
  51678. image: {
  51679. source: "./media/characters/north-caudin/front.svg",
  51680. extra: 1184/1082,
  51681. bottom: 23/1207
  51682. }
  51683. },
  51684. },
  51685. [
  51686. {
  51687. name: "Compressed",
  51688. height: math.unit(10, "feet")
  51689. },
  51690. {
  51691. name: "Normal",
  51692. height: math.unit(25, "feet"),
  51693. default: true
  51694. },
  51695. ]
  51696. ))
  51697. characterMakers.push(() => makeCharacter(
  51698. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51699. {
  51700. front: {
  51701. height: math.unit(9, "feet"),
  51702. weight: math.unit(1250, "lb"),
  51703. name: "Front",
  51704. image: {
  51705. source: "./media/characters/merrian/front.svg",
  51706. extra: 2393/2304,
  51707. bottom: 40/2433
  51708. }
  51709. },
  51710. },
  51711. [
  51712. {
  51713. name: "Normal",
  51714. height: math.unit(9, "feet"),
  51715. default: true
  51716. },
  51717. ]
  51718. ))
  51719. characterMakers.push(() => makeCharacter(
  51720. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51721. {
  51722. front: {
  51723. height: math.unit(9, "feet"),
  51724. weight: math.unit(1000, "lb"),
  51725. name: "Front",
  51726. image: {
  51727. source: "./media/characters/hazel/front.svg",
  51728. extra: 2351/2298,
  51729. bottom: 38/2389
  51730. }
  51731. },
  51732. },
  51733. [
  51734. {
  51735. name: "Normal",
  51736. height: math.unit(9, "feet"),
  51737. default: true
  51738. },
  51739. ]
  51740. ))
  51741. characterMakers.push(() => makeCharacter(
  51742. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51743. {
  51744. front: {
  51745. height: math.unit(13, "feet"),
  51746. weight: math.unit(3200, "lb"),
  51747. name: "Front",
  51748. image: {
  51749. source: "./media/characters/emma/front.svg",
  51750. extra: 2263/2029,
  51751. bottom: 68/2331
  51752. }
  51753. },
  51754. },
  51755. [
  51756. {
  51757. name: "Normal",
  51758. height: math.unit(13, "feet"),
  51759. default: true
  51760. },
  51761. ]
  51762. ))
  51763. characterMakers.push(() => makeCharacter(
  51764. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51765. {
  51766. front: {
  51767. height: math.unit(11 + 9/12, "feet"),
  51768. weight: math.unit(2500, "lb"),
  51769. name: "Front",
  51770. image: {
  51771. source: "./media/characters/ilumina/front.svg",
  51772. extra: 2248/2209,
  51773. bottom: 164/2412
  51774. }
  51775. },
  51776. },
  51777. [
  51778. {
  51779. name: "Normal",
  51780. height: math.unit(11 + 9/12, "feet"),
  51781. default: true
  51782. },
  51783. ]
  51784. ))
  51785. characterMakers.push(() => makeCharacter(
  51786. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51787. {
  51788. front: {
  51789. height: math.unit(8 + 10/12, "feet"),
  51790. weight: math.unit(1350, "lb"),
  51791. name: "Front",
  51792. image: {
  51793. source: "./media/characters/moonshine/front.svg",
  51794. extra: 2395/2288,
  51795. bottom: 40/2435
  51796. }
  51797. },
  51798. },
  51799. [
  51800. {
  51801. name: "Normal",
  51802. height: math.unit(8 + 10/12, "feet"),
  51803. default: true
  51804. },
  51805. ]
  51806. ))
  51807. characterMakers.push(() => makeCharacter(
  51808. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51809. {
  51810. front: {
  51811. height: math.unit(14, "feet"),
  51812. weight: math.unit(3400, "lb"),
  51813. name: "Front",
  51814. image: {
  51815. source: "./media/characters/aletia/front.svg",
  51816. extra: 1185/1052,
  51817. bottom: 21/1206
  51818. }
  51819. },
  51820. },
  51821. [
  51822. {
  51823. name: "Compressed",
  51824. height: math.unit(8, "feet")
  51825. },
  51826. {
  51827. name: "Normal",
  51828. height: math.unit(14, "feet"),
  51829. default: true
  51830. },
  51831. ]
  51832. ))
  51833. characterMakers.push(() => makeCharacter(
  51834. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51835. {
  51836. front: {
  51837. height: math.unit(17, "feet"),
  51838. weight: math.unit(6500, "lb"),
  51839. name: "Front",
  51840. image: {
  51841. source: "./media/characters/deidra/front.svg",
  51842. extra: 1201/1081,
  51843. bottom: 16/1217
  51844. }
  51845. },
  51846. },
  51847. [
  51848. {
  51849. name: "Compressed",
  51850. height: math.unit(9 + 6/12, "feet")
  51851. },
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(17, "feet"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51861. {
  51862. front: {
  51863. height: math.unit(7 + 4/12, "feet"),
  51864. weight: math.unit(280, "lb"),
  51865. name: "Front",
  51866. image: {
  51867. source: "./media/characters/freki-yrmori/front.svg",
  51868. extra: 1286/1182,
  51869. bottom: 29/1315
  51870. }
  51871. },
  51872. maw: {
  51873. height: math.unit(0.9, "feet"),
  51874. name: "Maw",
  51875. image: {
  51876. source: "./media/characters/freki-yrmori/maw.svg"
  51877. }
  51878. },
  51879. },
  51880. [
  51881. {
  51882. name: "Normal",
  51883. height: math.unit(7 + 4/12, "feet"),
  51884. default: true
  51885. },
  51886. {
  51887. name: "Macro",
  51888. height: math.unit(38.5, "meters")
  51889. },
  51890. ]
  51891. ))
  51892. characterMakers.push(() => makeCharacter(
  51893. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51894. {
  51895. side: {
  51896. height: math.unit(47.2, "meters"),
  51897. weight: math.unit(10000, "tons"),
  51898. name: "Side",
  51899. image: {
  51900. source: "./media/characters/aetherios/side.svg",
  51901. extra: 2363/642,
  51902. bottom: 221/2584
  51903. }
  51904. },
  51905. top: {
  51906. height: math.unit(240, "meters"),
  51907. weight: math.unit(10000, "tons"),
  51908. name: "Top",
  51909. image: {
  51910. source: "./media/characters/aetherios/top.svg"
  51911. }
  51912. },
  51913. bottom: {
  51914. height: math.unit(240, "meters"),
  51915. weight: math.unit(10000, "tons"),
  51916. name: "Bottom",
  51917. image: {
  51918. source: "./media/characters/aetherios/bottom.svg"
  51919. }
  51920. },
  51921. head: {
  51922. height: math.unit(38.6, "meters"),
  51923. name: "Head",
  51924. image: {
  51925. source: "./media/characters/aetherios/head.svg",
  51926. extra: 1335/1112,
  51927. bottom: 0/1335
  51928. }
  51929. },
  51930. front: {
  51931. height: math.unit(29, "meters"),
  51932. name: "Front",
  51933. image: {
  51934. source: "./media/characters/aetherios/front.svg",
  51935. extra: 1266/953,
  51936. bottom: 158/1424
  51937. }
  51938. },
  51939. maw: {
  51940. height: math.unit(16.37, "meters"),
  51941. name: "Maw",
  51942. image: {
  51943. source: "./media/characters/aetherios/maw.svg",
  51944. extra: 748/637,
  51945. bottom: 0/748
  51946. },
  51947. extraAttributes: {
  51948. preyCapacity: {
  51949. name: "Capacity",
  51950. power: 3,
  51951. type: "volume",
  51952. base: math.unit(1000, "people")
  51953. },
  51954. tongueSize: {
  51955. name: "Tongue Size",
  51956. power: 2,
  51957. type: "area",
  51958. base: math.unit(21, "m^2")
  51959. }
  51960. }
  51961. },
  51962. forepaw: {
  51963. height: math.unit(18, "meters"),
  51964. name: "Forepaw",
  51965. image: {
  51966. source: "./media/characters/aetherios/forepaw.svg"
  51967. }
  51968. },
  51969. hindpaw: {
  51970. height: math.unit(23, "meters"),
  51971. name: "Hindpaw",
  51972. image: {
  51973. source: "./media/characters/aetherios/hindpaw.svg"
  51974. }
  51975. },
  51976. genitals: {
  51977. height: math.unit(42, "meters"),
  51978. name: "Genitals",
  51979. image: {
  51980. source: "./media/characters/aetherios/genitals.svg"
  51981. }
  51982. },
  51983. },
  51984. [
  51985. {
  51986. name: "Normal",
  51987. height: math.unit(47.2, "meters"),
  51988. default: true
  51989. },
  51990. {
  51991. name: "Macro",
  51992. height: math.unit(160, "meters")
  51993. },
  51994. {
  51995. name: "Mega",
  51996. height: math.unit(1.87, "km")
  51997. },
  51998. {
  51999. name: "Giga",
  52000. height: math.unit(40000, "km")
  52001. },
  52002. {
  52003. name: "Stellar",
  52004. height: math.unit(158000000, "km")
  52005. },
  52006. {
  52007. name: "Cosmic",
  52008. height: math.unit(9.46e12, "km")
  52009. },
  52010. ]
  52011. ))
  52012. characterMakers.push(() => makeCharacter(
  52013. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  52014. {
  52015. front: {
  52016. height: math.unit(5 + 4/12, "feet"),
  52017. weight: math.unit(80, "lb"),
  52018. name: "Front",
  52019. image: {
  52020. source: "./media/characters/mizu-gieeg/front.svg",
  52021. extra: 850/709,
  52022. bottom: 52/902
  52023. }
  52024. },
  52025. back: {
  52026. height: math.unit(5 + 4/12, "feet"),
  52027. weight: math.unit(80, "lb"),
  52028. name: "Back",
  52029. image: {
  52030. source: "./media/characters/mizu-gieeg/back.svg",
  52031. extra: 882/745,
  52032. bottom: 25/907
  52033. }
  52034. },
  52035. },
  52036. [
  52037. {
  52038. name: "Normal",
  52039. height: math.unit(5 + 4/12, "feet"),
  52040. default: true
  52041. },
  52042. ]
  52043. ))
  52044. characterMakers.push(() => makeCharacter(
  52045. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  52046. {
  52047. front: {
  52048. height: math.unit(6, "feet"),
  52049. name: "Front",
  52050. image: {
  52051. source: "./media/characters/roselle-st-papier/front.svg",
  52052. extra: 1430/1280,
  52053. bottom: 37/1467
  52054. }
  52055. },
  52056. back: {
  52057. height: math.unit(6, "feet"),
  52058. name: "Back",
  52059. image: {
  52060. source: "./media/characters/roselle-st-papier/back.svg",
  52061. extra: 1491/1296,
  52062. bottom: 23/1514
  52063. }
  52064. },
  52065. ear: {
  52066. height: math.unit(1.26, "feet"),
  52067. name: "Ear",
  52068. image: {
  52069. source: "./media/characters/roselle-st-papier/ear.svg"
  52070. }
  52071. },
  52072. },
  52073. [
  52074. {
  52075. name: "Normal",
  52076. height: math.unit(150, "feet"),
  52077. default: true
  52078. },
  52079. ]
  52080. ))
  52081. characterMakers.push(() => makeCharacter(
  52082. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52083. {
  52084. front: {
  52085. height: math.unit(1, "inches"),
  52086. name: "Front",
  52087. image: {
  52088. source: "./media/characters/valargent/front.svg",
  52089. extra: 1825/1694,
  52090. bottom: 62/1887
  52091. }
  52092. },
  52093. back: {
  52094. height: math.unit(1, "inches"),
  52095. name: "Back",
  52096. image: {
  52097. source: "./media/characters/valargent/back.svg",
  52098. extra: 1775/1682,
  52099. bottom: 88/1863
  52100. }
  52101. },
  52102. },
  52103. [
  52104. {
  52105. name: "Micro",
  52106. height: math.unit(1, "inch"),
  52107. default: true
  52108. },
  52109. ]
  52110. ))
  52111. characterMakers.push(() => makeCharacter(
  52112. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52113. {
  52114. front: {
  52115. height: math.unit(3.4, "meters"),
  52116. name: "Front",
  52117. image: {
  52118. source: "./media/characters/zarina/front.svg",
  52119. extra: 1733/1425,
  52120. bottom: 93/1826
  52121. }
  52122. },
  52123. squatting: {
  52124. height: math.unit(2.14, "meters"),
  52125. name: "Squatting",
  52126. image: {
  52127. source: "./media/characters/zarina/squatting.svg",
  52128. extra: 1073/788,
  52129. bottom: 63/1136
  52130. }
  52131. },
  52132. back: {
  52133. height: math.unit(2.14, "meters"),
  52134. name: "Back",
  52135. image: {
  52136. source: "./media/characters/zarina/back.svg",
  52137. extra: 1128/885,
  52138. bottom: 0/1128
  52139. }
  52140. },
  52141. },
  52142. [
  52143. {
  52144. name: "Normal",
  52145. height: math.unit(3.4, "meters"),
  52146. default: true
  52147. },
  52148. {
  52149. name: "Big",
  52150. height: math.unit(5, "meters")
  52151. },
  52152. {
  52153. name: "Macro",
  52154. height: math.unit(110, "meters")
  52155. },
  52156. ]
  52157. ))
  52158. characterMakers.push(() => makeCharacter(
  52159. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52160. {
  52161. front: {
  52162. height: math.unit(7, "feet"),
  52163. name: "Front",
  52164. image: {
  52165. source: "./media/characters/ventus-astro-fox/front.svg",
  52166. extra: 1792/1623,
  52167. bottom: 28/1820
  52168. }
  52169. },
  52170. back: {
  52171. height: math.unit(7, "feet"),
  52172. name: "Back",
  52173. image: {
  52174. source: "./media/characters/ventus-astro-fox/back.svg",
  52175. extra: 1789/1620,
  52176. bottom: 31/1820
  52177. }
  52178. },
  52179. outfit: {
  52180. height: math.unit(7, "feet"),
  52181. name: "Outfit",
  52182. image: {
  52183. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52184. extra: 1054/925,
  52185. bottom: 15/1069
  52186. }
  52187. },
  52188. head: {
  52189. height: math.unit(1.12, "feet"),
  52190. name: "Head",
  52191. image: {
  52192. source: "./media/characters/ventus-astro-fox/head.svg",
  52193. extra: 866/504,
  52194. bottom: 0/866
  52195. }
  52196. },
  52197. hand: {
  52198. height: math.unit(1, "feet"),
  52199. name: "Hand",
  52200. image: {
  52201. source: "./media/characters/ventus-astro-fox/hand.svg"
  52202. }
  52203. },
  52204. paw: {
  52205. height: math.unit(1.5, "feet"),
  52206. name: "Paw",
  52207. image: {
  52208. source: "./media/characters/ventus-astro-fox/paw.svg"
  52209. }
  52210. },
  52211. },
  52212. [
  52213. {
  52214. name: "Normal",
  52215. height: math.unit(7, "feet"),
  52216. default: true
  52217. },
  52218. {
  52219. name: "Macro",
  52220. height: math.unit(200, "feet")
  52221. },
  52222. {
  52223. name: "Cosmic",
  52224. height: math.unit(3, "universes")
  52225. },
  52226. ]
  52227. ))
  52228. characterMakers.push(() => makeCharacter(
  52229. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52230. {
  52231. front: {
  52232. height: math.unit(3, "meters"),
  52233. weight: math.unit(7000, "lb"),
  52234. name: "Front",
  52235. image: {
  52236. source: "./media/characters/core-t/front.svg",
  52237. extra: 5729/4941,
  52238. bottom: 1129/6858
  52239. }
  52240. },
  52241. },
  52242. [
  52243. {
  52244. name: "Big",
  52245. height: math.unit(3, "meters"),
  52246. default: true
  52247. },
  52248. ]
  52249. ))
  52250. characterMakers.push(() => makeCharacter(
  52251. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52252. {
  52253. normal: {
  52254. height: math.unit(6 + 6/12, "feet"),
  52255. weight: math.unit(275, "lb"),
  52256. name: "Front",
  52257. image: {
  52258. source: "./media/characters/cadbunny/normal.svg",
  52259. extra: 1129/947,
  52260. bottom: 93/1222
  52261. },
  52262. default: true,
  52263. form: "normal"
  52264. },
  52265. gigantamax: {
  52266. height: math.unit(26, "feet"),
  52267. weight: math.unit(16000, "lb"),
  52268. name: "Front",
  52269. image: {
  52270. source: "./media/characters/cadbunny/gigantamax.svg",
  52271. extra: 1133/944,
  52272. bottom: 90/1223
  52273. },
  52274. default: true,
  52275. form: "gigantamax"
  52276. },
  52277. },
  52278. [
  52279. {
  52280. name: "Normal",
  52281. height: math.unit(6 + 6/12, "feet"),
  52282. default: true,
  52283. form: "normal"
  52284. },
  52285. {
  52286. name: "Small",
  52287. height: math.unit(26, "feet"),
  52288. default: true,
  52289. form: "gigantamax"
  52290. },
  52291. {
  52292. name: "Large",
  52293. height: math.unit(78, "feet"),
  52294. form: "gigantamax"
  52295. },
  52296. ],
  52297. {
  52298. "normal": {
  52299. name: "Normal",
  52300. default: true
  52301. },
  52302. "gigantamax": {
  52303. name: "Gigantamax"
  52304. }
  52305. }
  52306. ))
  52307. characterMakers.push(() => makeCharacter(
  52308. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52309. {
  52310. anthroFront: {
  52311. height: math.unit(8, "feet"),
  52312. weight: math.unit(300, "lb"),
  52313. name: "Front",
  52314. image: {
  52315. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52316. extra: 1272/1176,
  52317. bottom: 53/1325
  52318. },
  52319. form: "anthro",
  52320. default: true
  52321. },
  52322. feralSide: {
  52323. height: math.unit(4, "feet"),
  52324. weight: math.unit(250, "lb"),
  52325. name: "Side",
  52326. image: {
  52327. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52328. extra: 731/621,
  52329. bottom: 0/731
  52330. },
  52331. form: "feral",
  52332. default: true
  52333. },
  52334. },
  52335. [
  52336. {
  52337. name: "Regular",
  52338. height: math.unit(8, "feet"),
  52339. form: "anthro"
  52340. },
  52341. {
  52342. name: "Macro",
  52343. height: math.unit(250, "feet"),
  52344. form: "anthro",
  52345. default: true
  52346. },
  52347. {
  52348. name: "Regular",
  52349. height: math.unit(4, "feet"),
  52350. form: "feral"
  52351. },
  52352. {
  52353. name: "Macro",
  52354. height: math.unit(125, "feet"),
  52355. form: "feral",
  52356. default: true
  52357. },
  52358. ],
  52359. {
  52360. "anthro": {
  52361. name: "Anthro",
  52362. default: true
  52363. },
  52364. "feral": {
  52365. name: "Feral",
  52366. },
  52367. }
  52368. ))
  52369. characterMakers.push(() => makeCharacter(
  52370. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52371. {
  52372. front: {
  52373. height: math.unit(11 + 10/12, "feet"),
  52374. weight: math.unit(1587, "kg"),
  52375. name: "Front",
  52376. image: {
  52377. source: "./media/characters/maple-javira-dragon/front.svg",
  52378. extra: 1136/744,
  52379. bottom: 73/1209
  52380. }
  52381. },
  52382. side: {
  52383. height: math.unit(11 + 10/12, "feet"),
  52384. weight: math.unit(1587, "kg"),
  52385. name: "Side",
  52386. image: {
  52387. source: "./media/characters/maple-javira-dragon/side.svg",
  52388. extra: 712/505,
  52389. bottom: 17/729
  52390. }
  52391. },
  52392. head: {
  52393. height: math.unit(8.05, "feet"),
  52394. name: "Head",
  52395. image: {
  52396. source: "./media/characters/maple-javira-dragon/head.svg",
  52397. extra: 1420/1344,
  52398. bottom: 0/1420
  52399. }
  52400. },
  52401. },
  52402. [
  52403. {
  52404. name: "Normal",
  52405. height: math.unit(11 + 10/12, "feet"),
  52406. default: true
  52407. },
  52408. ]
  52409. ))
  52410. characterMakers.push(() => makeCharacter(
  52411. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52412. {
  52413. front: {
  52414. height: math.unit(117, "cm"),
  52415. weight: math.unit(50, "kg"),
  52416. name: "Front",
  52417. image: {
  52418. source: "./media/characters/sonia-wyverntail/front.svg",
  52419. extra: 708/592,
  52420. bottom: 25/733
  52421. }
  52422. },
  52423. },
  52424. [
  52425. {
  52426. name: "Normal",
  52427. height: math.unit(117, "cm"),
  52428. default: true
  52429. },
  52430. ]
  52431. ))
  52432. characterMakers.push(() => makeCharacter(
  52433. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52434. {
  52435. front: {
  52436. height: math.unit(6 + 5/12, "feet"),
  52437. name: "Front",
  52438. image: {
  52439. source: "./media/characters/micah/front.svg",
  52440. extra: 1758/1546,
  52441. bottom: 214/1972
  52442. }
  52443. },
  52444. },
  52445. [
  52446. {
  52447. name: "Normal",
  52448. height: math.unit(6 + 5/12, "feet"),
  52449. default: true
  52450. },
  52451. ]
  52452. ))
  52453. characterMakers.push(() => makeCharacter(
  52454. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52455. {
  52456. front: {
  52457. height: math.unit(1.75, "meters"),
  52458. weight: math.unit(100, "kg"),
  52459. name: "Front",
  52460. image: {
  52461. source: "./media/characters/zarya/front.svg",
  52462. extra: 741/735,
  52463. bottom: 44/785
  52464. },
  52465. extraAttributes: {
  52466. "tailLength": {
  52467. name: "Tail Length",
  52468. power: 1,
  52469. type: "length",
  52470. base: math.unit(180, "cm")
  52471. },
  52472. "pawLength": {
  52473. name: "Paw Length",
  52474. power: 1,
  52475. type: "length",
  52476. base: math.unit(31, "cm")
  52477. },
  52478. }
  52479. },
  52480. side: {
  52481. height: math.unit(1.75, "meters"),
  52482. weight: math.unit(100, "kg"),
  52483. name: "Side",
  52484. image: {
  52485. source: "./media/characters/zarya/side.svg",
  52486. extra: 776/770,
  52487. bottom: 17/793
  52488. },
  52489. extraAttributes: {
  52490. "tailLength": {
  52491. name: "Tail Length",
  52492. power: 1,
  52493. type: "length",
  52494. base: math.unit(180, "cm")
  52495. },
  52496. "pawLength": {
  52497. name: "Paw Length",
  52498. power: 1,
  52499. type: "length",
  52500. base: math.unit(31, "cm")
  52501. },
  52502. }
  52503. },
  52504. back: {
  52505. height: math.unit(1.75, "meters"),
  52506. weight: math.unit(100, "kg"),
  52507. name: "Back",
  52508. image: {
  52509. source: "./media/characters/zarya/back.svg",
  52510. extra: 741/735,
  52511. bottom: 44/785
  52512. },
  52513. extraAttributes: {
  52514. "tailLength": {
  52515. name: "Tail Length",
  52516. power: 1,
  52517. type: "length",
  52518. base: math.unit(180, "cm")
  52519. },
  52520. "pawLength": {
  52521. name: "Paw Length",
  52522. power: 1,
  52523. type: "length",
  52524. base: math.unit(31, "cm")
  52525. },
  52526. }
  52527. },
  52528. frontNoTail: {
  52529. height: math.unit(1.75, "meters"),
  52530. weight: math.unit(100, "kg"),
  52531. name: "Front (No Tail)",
  52532. image: {
  52533. source: "./media/characters/zarya/front-no-tail.svg",
  52534. extra: 741/735,
  52535. bottom: 44/785
  52536. },
  52537. extraAttributes: {
  52538. "tailLength": {
  52539. name: "Tail Length",
  52540. power: 1,
  52541. type: "length",
  52542. base: math.unit(180, "cm")
  52543. },
  52544. "pawLength": {
  52545. name: "Paw Length",
  52546. power: 1,
  52547. type: "length",
  52548. base: math.unit(31, "cm")
  52549. },
  52550. }
  52551. },
  52552. dressed: {
  52553. height: math.unit(1.75, "meters"),
  52554. weight: math.unit(100, "kg"),
  52555. name: "Dressed",
  52556. image: {
  52557. source: "./media/characters/zarya/dressed.svg",
  52558. extra: 683/672,
  52559. bottom: 79/762
  52560. },
  52561. extraAttributes: {
  52562. "tailLength": {
  52563. name: "Tail Length",
  52564. power: 1,
  52565. type: "length",
  52566. base: math.unit(180, "cm")
  52567. },
  52568. "pawLength": {
  52569. name: "Paw Length",
  52570. power: 1,
  52571. type: "length",
  52572. base: math.unit(31, "cm")
  52573. },
  52574. }
  52575. },
  52576. },
  52577. [
  52578. {
  52579. name: "Micro",
  52580. height: math.unit(5, "cm")
  52581. },
  52582. {
  52583. name: "Normal",
  52584. height: math.unit(1.75, "meters"),
  52585. default: true
  52586. },
  52587. {
  52588. name: "Macro",
  52589. height: math.unit(122, "meters")
  52590. },
  52591. ]
  52592. ))
  52593. characterMakers.push(() => makeCharacter(
  52594. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52595. {
  52596. front: {
  52597. height: math.unit(7.5, "feet"),
  52598. name: "Front",
  52599. image: {
  52600. source: "./media/characters/sven-hatisson/front.svg",
  52601. extra: 917/857,
  52602. bottom: 42/959
  52603. }
  52604. },
  52605. back: {
  52606. height: math.unit(7.5, "feet"),
  52607. name: "Back",
  52608. image: {
  52609. source: "./media/characters/sven-hatisson/back.svg",
  52610. extra: 903/856,
  52611. bottom: 15/918
  52612. }
  52613. },
  52614. },
  52615. [
  52616. {
  52617. name: "Base Height",
  52618. height: math.unit(7.5, "feet")
  52619. },
  52620. {
  52621. name: "Usual Height",
  52622. height: math.unit(13.5, "feet"),
  52623. default: true
  52624. },
  52625. {
  52626. name: "Smaller Macro",
  52627. height: math.unit(85, "feet")
  52628. },
  52629. {
  52630. name: "Moderate Macro",
  52631. height: math.unit(320, "feet")
  52632. },
  52633. {
  52634. name: "Large Macro",
  52635. height: math.unit(1000, "feet")
  52636. },
  52637. {
  52638. name: "Largest Size",
  52639. height: math.unit(2, "miles")
  52640. },
  52641. ]
  52642. ))
  52643. characterMakers.push(() => makeCharacter(
  52644. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52645. {
  52646. side: {
  52647. height: math.unit(1.8, "meters"),
  52648. weight: math.unit(275, "kg"),
  52649. name: "Side",
  52650. image: {
  52651. source: "./media/characters/terra/side.svg",
  52652. extra: 1273/1147,
  52653. bottom: 0/1273
  52654. }
  52655. },
  52656. },
  52657. [
  52658. {
  52659. name: "Normal",
  52660. height: math.unit(16.2, "meters"),
  52661. default: true
  52662. },
  52663. ]
  52664. ))
  52665. characterMakers.push(() => makeCharacter(
  52666. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52667. {
  52668. borzoiFront: {
  52669. height: math.unit(6 + 9/12, "feet"),
  52670. name: "Front",
  52671. image: {
  52672. source: "./media/characters/rae/borzoi-front.svg",
  52673. extra: 1161/1098,
  52674. bottom: 31/1192
  52675. },
  52676. form: "borzoi",
  52677. default: true
  52678. },
  52679. werewolfFront: {
  52680. height: math.unit(8 + 7/12, "feet"),
  52681. name: "Front",
  52682. image: {
  52683. source: "./media/characters/rae/werewolf-front.svg",
  52684. extra: 1411/1334,
  52685. bottom: 127/1538
  52686. },
  52687. form: "werewolf",
  52688. default: true
  52689. },
  52690. },
  52691. [
  52692. {
  52693. name: "Normal",
  52694. height: math.unit(6 + 9/12, "feet"),
  52695. default: true,
  52696. form: "borzoi"
  52697. },
  52698. {
  52699. name: "Normal",
  52700. height: math.unit(8 + 7/12, "feet"),
  52701. default: true,
  52702. form: "werewolf"
  52703. },
  52704. ],
  52705. {
  52706. "borzoi": {
  52707. name: "Borzoi",
  52708. default: true
  52709. },
  52710. "werewolf": {
  52711. name: "Werewolf",
  52712. },
  52713. }
  52714. ))
  52715. characterMakers.push(() => makeCharacter(
  52716. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52717. {
  52718. front: {
  52719. height: math.unit(8 + 7/12, "feet"),
  52720. weight: math.unit(482, "lb"),
  52721. name: "Front",
  52722. image: {
  52723. source: "./media/characters/kit/front.svg",
  52724. extra: 1247/1103,
  52725. bottom: 41/1288
  52726. }
  52727. },
  52728. back: {
  52729. height: math.unit(8 + 7/12, "feet"),
  52730. weight: math.unit(482, "lb"),
  52731. name: "Back",
  52732. image: {
  52733. source: "./media/characters/kit/back.svg",
  52734. extra: 1252/1123,
  52735. bottom: 21/1273
  52736. }
  52737. },
  52738. paw: {
  52739. height: math.unit(1.46, "feet"),
  52740. name: "Paw",
  52741. image: {
  52742. source: "./media/characters/kit/paw.svg"
  52743. }
  52744. },
  52745. },
  52746. [
  52747. {
  52748. name: "Normal",
  52749. height: math.unit(2.61, "meters"),
  52750. default: true
  52751. },
  52752. {
  52753. name: "\"Tall\"",
  52754. height: math.unit(8.21, "meters")
  52755. },
  52756. {
  52757. name: "Tall",
  52758. height: math.unit(19.6, "meters")
  52759. },
  52760. {
  52761. name: "Very Tall",
  52762. height: math.unit(57.91, "meters")
  52763. },
  52764. {
  52765. name: "Semi-Macro",
  52766. height: math.unit(138.64, "meters")
  52767. },
  52768. {
  52769. name: "Macro",
  52770. height: math.unit(831.99, "meters")
  52771. },
  52772. {
  52773. name: "EX-Macro",
  52774. height: math.unit(96451121, "meters")
  52775. },
  52776. {
  52777. name: "S1-Omnipotent",
  52778. height: math.unit(4.42074e+9, "meters")
  52779. },
  52780. {
  52781. name: "S2-Omnipotent",
  52782. height: math.unit(9.42074e+17, "meters")
  52783. },
  52784. {
  52785. name: "Omnipotent",
  52786. height: math.unit(4.23112e+24, "meters")
  52787. },
  52788. {
  52789. name: "Hypergod",
  52790. height: math.unit(5.05176e+27, "meters")
  52791. },
  52792. {
  52793. name: "Hypergod-EX",
  52794. height: math.unit(9.45532e+49, "meters")
  52795. },
  52796. {
  52797. name: "Hypergod-SP",
  52798. height: math.unit(9.45532e+195, "meters")
  52799. },
  52800. ]
  52801. ))
  52802. characterMakers.push(() => makeCharacter(
  52803. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52804. {
  52805. side: {
  52806. height: math.unit(0.6, "meters"),
  52807. weight: math.unit(24, "kg"),
  52808. name: "Side",
  52809. image: {
  52810. source: "./media/characters/celeste/side.svg",
  52811. extra: 810/517,
  52812. bottom: 53/863
  52813. }
  52814. },
  52815. },
  52816. [
  52817. {
  52818. name: "Velociraptor",
  52819. height: math.unit(0.6, "meters"),
  52820. default: true
  52821. },
  52822. {
  52823. name: "Utahraptor",
  52824. height: math.unit(1.8, "meters")
  52825. },
  52826. {
  52827. name: "Gallimimus",
  52828. height: math.unit(4.0, "meters")
  52829. },
  52830. {
  52831. name: "Large",
  52832. height: math.unit(20, "meters")
  52833. },
  52834. {
  52835. name: "Planetary",
  52836. height: math.unit(50, "megameters")
  52837. },
  52838. {
  52839. name: "Stellar",
  52840. height: math.unit(1.5, "gigameters")
  52841. },
  52842. {
  52843. name: "Galactic",
  52844. height: math.unit(100, "exameters")
  52845. },
  52846. ]
  52847. ))
  52848. characterMakers.push(() => makeCharacter(
  52849. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52850. {
  52851. front: {
  52852. height: math.unit(6, "feet"),
  52853. weight: math.unit(210, "lb"),
  52854. name: "Front",
  52855. image: {
  52856. source: "./media/characters/glacia/front.svg",
  52857. extra: 958/901,
  52858. bottom: 45/1003
  52859. }
  52860. },
  52861. },
  52862. [
  52863. {
  52864. name: "Macro",
  52865. height: math.unit(1000, "meters"),
  52866. default: true
  52867. },
  52868. ]
  52869. ))
  52870. characterMakers.push(() => makeCharacter(
  52871. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52872. {
  52873. front: {
  52874. height: math.unit(4, "meters"),
  52875. name: "Front",
  52876. image: {
  52877. source: "./media/characters/giri/front.svg",
  52878. extra: 966/894,
  52879. bottom: 21/987
  52880. }
  52881. },
  52882. },
  52883. [
  52884. {
  52885. name: "Normal",
  52886. height: math.unit(4, "meters"),
  52887. default: true
  52888. },
  52889. ]
  52890. ))
  52891. characterMakers.push(() => makeCharacter(
  52892. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52893. {
  52894. back: {
  52895. height: math.unit(4, "feet"),
  52896. weight: math.unit(37, "lb"),
  52897. name: "Back",
  52898. image: {
  52899. source: "./media/characters/tin/back.svg",
  52900. extra: 845/780,
  52901. bottom: 28/873
  52902. }
  52903. },
  52904. },
  52905. [
  52906. {
  52907. name: "Normal",
  52908. height: math.unit(4, "feet"),
  52909. default: true
  52910. },
  52911. ]
  52912. ))
  52913. characterMakers.push(() => makeCharacter(
  52914. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52915. {
  52916. front: {
  52917. height: math.unit(25, "feet"),
  52918. name: "Front",
  52919. image: {
  52920. source: "./media/characters/cadenza-vivace/front.svg",
  52921. extra: 1842/1578,
  52922. bottom: 30/1872
  52923. }
  52924. },
  52925. },
  52926. [
  52927. {
  52928. name: "Macro",
  52929. height: math.unit(25, "feet"),
  52930. default: true
  52931. },
  52932. ]
  52933. ))
  52934. characterMakers.push(() => makeCharacter(
  52935. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52936. {
  52937. front: {
  52938. height: math.unit(10, "feet"),
  52939. weight: math.unit(625, "kg"),
  52940. name: "Front",
  52941. image: {
  52942. source: "./media/characters/zain/front.svg",
  52943. extra: 1682/1498,
  52944. bottom: 223/1905
  52945. }
  52946. },
  52947. back: {
  52948. height: math.unit(10, "feet"),
  52949. weight: math.unit(625, "kg"),
  52950. name: "Back",
  52951. image: {
  52952. source: "./media/characters/zain/back.svg",
  52953. extra: 1814/1657,
  52954. bottom: 152/1966
  52955. }
  52956. },
  52957. head: {
  52958. height: math.unit(10, "feet"),
  52959. weight: math.unit(625, "kg"),
  52960. name: "Head",
  52961. image: {
  52962. source: "./media/characters/zain/head.svg",
  52963. extra: 1059/762,
  52964. bottom: 0/1059
  52965. }
  52966. },
  52967. },
  52968. [
  52969. {
  52970. name: "Normal",
  52971. height: math.unit(10, "feet"),
  52972. default: true
  52973. },
  52974. ]
  52975. ))
  52976. characterMakers.push(() => makeCharacter(
  52977. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52978. {
  52979. front: {
  52980. height: math.unit(6 + 5/12, "feet"),
  52981. weight: math.unit(750, "lb"),
  52982. name: "Front",
  52983. image: {
  52984. source: "./media/characters/ruchex/front.svg",
  52985. extra: 877/820,
  52986. bottom: 17/894
  52987. },
  52988. extraAttributes: {
  52989. "width": {
  52990. name: "Width",
  52991. power: 1,
  52992. type: "length",
  52993. base: math.unit(4.757, "feet")
  52994. },
  52995. }
  52996. },
  52997. },
  52998. [
  52999. {
  53000. name: "Normal",
  53001. height: math.unit(6 + 5/12, "feet"),
  53002. default: true
  53003. },
  53004. ]
  53005. ))
  53006. characterMakers.push(() => makeCharacter(
  53007. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  53008. {
  53009. dressedFront: {
  53010. height: math.unit(191, "cm"),
  53011. weight: math.unit(80, "kg"),
  53012. name: "Front",
  53013. image: {
  53014. source: "./media/characters/buster/dressed-front.svg",
  53015. extra: 1022/973,
  53016. bottom: 69/1091
  53017. }
  53018. },
  53019. dressedBack: {
  53020. height: math.unit(191, "cm"),
  53021. weight: math.unit(80, "kg"),
  53022. name: "Back",
  53023. image: {
  53024. source: "./media/characters/buster/dressed-back.svg",
  53025. extra: 1018/970,
  53026. bottom: 55/1073
  53027. }
  53028. },
  53029. nudeFront: {
  53030. height: math.unit(191, "cm"),
  53031. weight: math.unit(80, "kg"),
  53032. name: "Front (Nude)",
  53033. image: {
  53034. source: "./media/characters/buster/nude-front.svg",
  53035. extra: 1022/973,
  53036. bottom: 69/1091
  53037. }
  53038. },
  53039. nudeBack: {
  53040. height: math.unit(191, "cm"),
  53041. weight: math.unit(80, "kg"),
  53042. name: "Back (Nude)",
  53043. image: {
  53044. source: "./media/characters/buster/nude-back.svg",
  53045. extra: 1018/970,
  53046. bottom: 55/1073
  53047. }
  53048. },
  53049. dick: {
  53050. height: math.unit(2.59, "feet"),
  53051. name: "Dick",
  53052. image: {
  53053. source: "./media/characters/buster/dick.svg"
  53054. }
  53055. },
  53056. ass: {
  53057. height: math.unit(1.2, "feet"),
  53058. name: "Ass",
  53059. image: {
  53060. source: "./media/characters/buster/ass.svg"
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Normal",
  53067. height: math.unit(191, "cm"),
  53068. default: true
  53069. },
  53070. ]
  53071. ))
  53072. characterMakers.push(() => makeCharacter(
  53073. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53074. {
  53075. side: {
  53076. height: math.unit(8.1, "feet"),
  53077. weight: math.unit(3500, "lb"),
  53078. name: "Side",
  53079. image: {
  53080. source: "./media/characters/sonya/side.svg",
  53081. extra: 1730/1317,
  53082. bottom: 86/1816
  53083. }
  53084. },
  53085. },
  53086. [
  53087. {
  53088. name: "Normal",
  53089. height: math.unit(8.1, "feet"),
  53090. default: true
  53091. },
  53092. ]
  53093. ))
  53094. characterMakers.push(() => makeCharacter(
  53095. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53096. {
  53097. front: {
  53098. height: math.unit(6, "feet"),
  53099. weight: math.unit(150, "lb"),
  53100. name: "Front",
  53101. image: {
  53102. source: "./media/characters/cadence-andrysiak/front.svg",
  53103. extra: 1164/1121,
  53104. bottom: 60/1224
  53105. }
  53106. },
  53107. back: {
  53108. height: math.unit(6, "feet"),
  53109. weight: math.unit(150, "lb"),
  53110. name: "Back",
  53111. image: {
  53112. source: "./media/characters/cadence-andrysiak/back.svg",
  53113. extra: 1200/1165,
  53114. bottom: 9/1209
  53115. }
  53116. },
  53117. dressed: {
  53118. height: math.unit(6, "feet"),
  53119. weight: math.unit(150, "lb"),
  53120. name: "Dressed",
  53121. image: {
  53122. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53123. extra: 1164/1121,
  53124. bottom: 60/1224
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Micro",
  53131. height: math.unit(1, "mm")
  53132. },
  53133. {
  53134. name: "Normal",
  53135. height: math.unit(6, "feet"),
  53136. default: true
  53137. },
  53138. ]
  53139. ))
  53140. characterMakers.push(() => makeCharacter(
  53141. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53142. {
  53143. front: {
  53144. height: math.unit(60, "inches"),
  53145. weight: math.unit(16, "lb"),
  53146. preyCapacity: math.unit(80, "liters"),
  53147. name: "Front",
  53148. image: {
  53149. source: "./media/characters/penny-lynx/front.svg",
  53150. extra: 1959/1769,
  53151. bottom: 49/2008
  53152. }
  53153. },
  53154. },
  53155. [
  53156. {
  53157. name: "Nokia",
  53158. height: math.unit(2, "inches")
  53159. },
  53160. {
  53161. name: "Desktop",
  53162. height: math.unit(24, "inches")
  53163. },
  53164. {
  53165. name: "TV",
  53166. height: math.unit(60, "inches")
  53167. },
  53168. {
  53169. name: "Jumbotron",
  53170. height: math.unit(12, "feet")
  53171. },
  53172. {
  53173. name: "Billboard",
  53174. height: math.unit(48, "feet"),
  53175. default: true
  53176. },
  53177. {
  53178. name: "IMAX",
  53179. height: math.unit(96, "feet")
  53180. },
  53181. {
  53182. name: "SINGULARITY",
  53183. height: math.unit(864938, "miles")
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(5 + 4/12, "feet"),
  53192. weight: math.unit(230, "lb"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/sukebe/front.svg",
  53196. extra: 2130/2038,
  53197. bottom: 90/2220
  53198. }
  53199. },
  53200. back: {
  53201. height: math.unit(3.48, "feet"),
  53202. weight: math.unit(230, "lb"),
  53203. name: "Back",
  53204. image: {
  53205. source: "./media/characters/sukebe/back.svg",
  53206. extra: 1670/1604,
  53207. bottom: 0/1670
  53208. }
  53209. },
  53210. },
  53211. [
  53212. {
  53213. name: "Normal",
  53214. height: math.unit(5 + 4/12, "feet"),
  53215. default: true
  53216. },
  53217. ]
  53218. ))
  53219. characterMakers.push(() => makeCharacter(
  53220. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53221. {
  53222. front: {
  53223. height: math.unit(6, "feet"),
  53224. name: "Front",
  53225. image: {
  53226. source: "./media/characters/nylla/front.svg",
  53227. extra: 1868/1699,
  53228. bottom: 97/1965
  53229. }
  53230. },
  53231. back: {
  53232. height: math.unit(6, "feet"),
  53233. name: "Back",
  53234. image: {
  53235. source: "./media/characters/nylla/back.svg",
  53236. extra: 1889/1712,
  53237. bottom: 93/1982
  53238. }
  53239. },
  53240. frontNsfw: {
  53241. height: math.unit(6, "feet"),
  53242. name: "Front (NSFW)",
  53243. image: {
  53244. source: "./media/characters/nylla/front-nsfw.svg",
  53245. extra: 1868/1699,
  53246. bottom: 97/1965
  53247. },
  53248. extraAttributes: {
  53249. "dickLength": {
  53250. name: "Dick Length",
  53251. power: 1,
  53252. type: "length",
  53253. base: math.unit(1.4, "feet")
  53254. },
  53255. "cumVolume": {
  53256. name: "Cum Volume",
  53257. power: 3,
  53258. type: "volume",
  53259. base: math.unit(100, "mL")
  53260. },
  53261. }
  53262. },
  53263. backNsfw: {
  53264. height: math.unit(6, "feet"),
  53265. name: "Back (NSFW)",
  53266. image: {
  53267. source: "./media/characters/nylla/back-nsfw.svg",
  53268. extra: 1889/1712,
  53269. bottom: 93/1982
  53270. }
  53271. },
  53272. maw: {
  53273. height: math.unit(2.10, "feet"),
  53274. name: "Maw",
  53275. image: {
  53276. source: "./media/characters/nylla/maw.svg"
  53277. }
  53278. },
  53279. paws: {
  53280. height: math.unit(2.06, "feet"),
  53281. name: "Paws",
  53282. image: {
  53283. source: "./media/characters/nylla/paws.svg"
  53284. }
  53285. },
  53286. muzzle: {
  53287. height: math.unit(0.61, "feet"),
  53288. name: "Muzzle",
  53289. image: {
  53290. source: "./media/characters/nylla/muzzle.svg"
  53291. }
  53292. },
  53293. sheath: {
  53294. height: math.unit(1.305, "feet"),
  53295. name: "Sheath",
  53296. image: {
  53297. source: "./media/characters/nylla/sheath.svg"
  53298. }
  53299. },
  53300. },
  53301. [
  53302. {
  53303. name: "Micro",
  53304. height: math.unit(7.5, "inches")
  53305. },
  53306. {
  53307. name: "Normal",
  53308. height: math.unit(7, "feet"),
  53309. default: true
  53310. },
  53311. {
  53312. name: "Macro",
  53313. height: math.unit(60, "feet")
  53314. },
  53315. {
  53316. name: "Mega",
  53317. height: math.unit(200, "feet")
  53318. },
  53319. ]
  53320. ))
  53321. characterMakers.push(() => makeCharacter(
  53322. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53323. {
  53324. front: {
  53325. height: math.unit(10, "feet"),
  53326. weight: math.unit(2300, "lb"),
  53327. name: "Front",
  53328. image: {
  53329. source: "./media/characters/hunt3r/front.svg",
  53330. extra: 1909/1742,
  53331. bottom: 46/1955
  53332. }
  53333. },
  53334. },
  53335. [
  53336. {
  53337. name: "Normal",
  53338. height: math.unit(10, "feet"),
  53339. default: true
  53340. },
  53341. ]
  53342. ))
  53343. characterMakers.push(() => makeCharacter(
  53344. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53345. {
  53346. dressed: {
  53347. height: math.unit(11, "feet"),
  53348. weight: math.unit(18500, "lb"),
  53349. preyCapacity: math.unit(9, "people"),
  53350. name: "Dressed",
  53351. image: {
  53352. source: "./media/characters/cylphis/dressed.svg",
  53353. extra: 1028/1003,
  53354. bottom: 75/1103
  53355. },
  53356. },
  53357. undressed: {
  53358. height: math.unit(11, "feet"),
  53359. weight: math.unit(18500, "lb"),
  53360. preyCapacity: math.unit(9, "people"),
  53361. name: "Undressed",
  53362. image: {
  53363. source: "./media/characters/cylphis/undressed.svg",
  53364. extra: 1028/1003,
  53365. bottom: 75/1103
  53366. }
  53367. },
  53368. full: {
  53369. height: math.unit(11, "feet"),
  53370. weight: math.unit(18500 + 150*9, "lb"),
  53371. preyCapacity: math.unit(9, "people"),
  53372. name: "Full",
  53373. image: {
  53374. source: "./media/characters/cylphis/full.svg",
  53375. extra: 1028/1003,
  53376. bottom: 75/1103
  53377. }
  53378. },
  53379. },
  53380. [
  53381. {
  53382. name: "Small",
  53383. height: math.unit(8, "feet")
  53384. },
  53385. {
  53386. name: "Normal",
  53387. height: math.unit(11, "feet"),
  53388. default: true
  53389. },
  53390. ]
  53391. ))
  53392. characterMakers.push(() => makeCharacter(
  53393. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53394. {
  53395. front: {
  53396. height: math.unit(2 + 7/12, "feet"),
  53397. name: "Front",
  53398. image: {
  53399. source: "./media/characters/orishan/front.svg",
  53400. extra: 1058/1023,
  53401. bottom: 23/1081
  53402. }
  53403. },
  53404. back: {
  53405. height: math.unit(2 + 7/12, "feet"),
  53406. name: "Back",
  53407. image: {
  53408. source: "./media/characters/orishan/back.svg",
  53409. extra: 1058/1023,
  53410. bottom: 23/1081
  53411. }
  53412. },
  53413. },
  53414. [
  53415. {
  53416. name: "Micro",
  53417. height: math.unit(2, "cm")
  53418. },
  53419. {
  53420. name: "Normal",
  53421. height: math.unit(2 + 7/12, "feet"),
  53422. default: true
  53423. },
  53424. ]
  53425. ))
  53426. characterMakers.push(() => makeCharacter(
  53427. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53428. {
  53429. front: {
  53430. height: math.unit(3, "meters"),
  53431. weight: math.unit(508, "kg"),
  53432. name: "Front",
  53433. image: {
  53434. source: "./media/characters/seranis/front.svg",
  53435. extra: 1478/1454,
  53436. bottom: 41/1519
  53437. }
  53438. },
  53439. },
  53440. [
  53441. {
  53442. name: "Normal",
  53443. height: math.unit(3, "meters"),
  53444. default: true
  53445. },
  53446. {
  53447. name: "Macro",
  53448. height: math.unit(108, "meters")
  53449. },
  53450. {
  53451. name: "Megamacro",
  53452. height: math.unit(1250, "meters")
  53453. },
  53454. ]
  53455. ))
  53456. characterMakers.push(() => makeCharacter(
  53457. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53458. {
  53459. undressed: {
  53460. height: math.unit(5 + 3/12, "feet"),
  53461. name: "Undressed",
  53462. image: {
  53463. source: "./media/characters/ankou/undressed.svg",
  53464. extra: 1301/1213,
  53465. bottom: 87/1388
  53466. }
  53467. },
  53468. dressed: {
  53469. height: math.unit(5 + 3/12, "feet"),
  53470. name: "Dressed",
  53471. image: {
  53472. source: "./media/characters/ankou/dressed.svg",
  53473. extra: 1301/1213,
  53474. bottom: 87/1388
  53475. }
  53476. },
  53477. head: {
  53478. height: math.unit(1.61, "feet"),
  53479. name: "Head",
  53480. image: {
  53481. source: "./media/characters/ankou/head.svg"
  53482. }
  53483. },
  53484. },
  53485. [
  53486. {
  53487. name: "Normal",
  53488. height: math.unit(5 + 3/12, "feet"),
  53489. default: true
  53490. },
  53491. ]
  53492. ))
  53493. characterMakers.push(() => makeCharacter(
  53494. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53495. {
  53496. side: {
  53497. height: math.unit(6 + 3/12, "feet"),
  53498. weight: math.unit(200, "kg"),
  53499. name: "Side",
  53500. image: {
  53501. source: "./media/characters/juniper-skunktaur/side.svg",
  53502. extra: 1574/1229,
  53503. bottom: 38/1612
  53504. }
  53505. },
  53506. front: {
  53507. height: math.unit(6 + 3/12, "feet"),
  53508. weight: math.unit(200, "kg"),
  53509. name: "Front",
  53510. image: {
  53511. source: "./media/characters/juniper-skunktaur/front.svg",
  53512. extra: 1337/1278,
  53513. bottom: 22/1359
  53514. }
  53515. },
  53516. back: {
  53517. height: math.unit(6 + 3/12, "feet"),
  53518. weight: math.unit(200, "kg"),
  53519. name: "Back",
  53520. image: {
  53521. source: "./media/characters/juniper-skunktaur/back.svg",
  53522. extra: 1618/1273,
  53523. bottom: 13/1631
  53524. }
  53525. },
  53526. top: {
  53527. height: math.unit(2.62, "feet"),
  53528. weight: math.unit(200, "kg"),
  53529. name: "Top",
  53530. image: {
  53531. source: "./media/characters/juniper-skunktaur/top.svg"
  53532. }
  53533. },
  53534. },
  53535. [
  53536. {
  53537. name: "Normal",
  53538. height: math.unit(6 + 3/12, "feet"),
  53539. default: true
  53540. },
  53541. ]
  53542. ))
  53543. characterMakers.push(() => makeCharacter(
  53544. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53545. {
  53546. front: {
  53547. height: math.unit(20.5, "feet"),
  53548. name: "Front",
  53549. image: {
  53550. source: "./media/characters/rei/front.svg",
  53551. extra: 1349/1195,
  53552. bottom: 31/1380
  53553. }
  53554. },
  53555. back: {
  53556. height: math.unit(20.5, "feet"),
  53557. name: "Back",
  53558. image: {
  53559. source: "./media/characters/rei/back.svg",
  53560. extra: 1358/1204,
  53561. bottom: 22/1380
  53562. }
  53563. },
  53564. pawsDigi: {
  53565. height: math.unit(3.45, "feet"),
  53566. name: "Paws (Digi)",
  53567. image: {
  53568. source: "./media/characters/rei/paws-digi.svg"
  53569. }
  53570. },
  53571. pawsPlanti: {
  53572. height: math.unit(3.45, "feet"),
  53573. name: "Paws (Planti)",
  53574. image: {
  53575. source: "./media/characters/rei/paws-planti.svg"
  53576. }
  53577. },
  53578. },
  53579. [
  53580. {
  53581. name: "Normal",
  53582. height: math.unit(20.5, "feet"),
  53583. default: true
  53584. },
  53585. ]
  53586. ))
  53587. characterMakers.push(() => makeCharacter(
  53588. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53589. {
  53590. front: {
  53591. height: math.unit(5 + 11/12, "feet"),
  53592. name: "Front",
  53593. image: {
  53594. source: "./media/characters/carina/front.svg",
  53595. extra: 1720/1449,
  53596. bottom: 14/1734
  53597. }
  53598. },
  53599. back: {
  53600. height: math.unit(5 + 11/12, "feet"),
  53601. name: "Back",
  53602. image: {
  53603. source: "./media/characters/carina/back.svg",
  53604. extra: 1493/1445,
  53605. bottom: 17/1510
  53606. }
  53607. },
  53608. paw: {
  53609. height: math.unit(0.92, "feet"),
  53610. name: "Paw",
  53611. image: {
  53612. source: "./media/characters/carina/paw.svg"
  53613. }
  53614. },
  53615. },
  53616. [
  53617. {
  53618. name: "Normal",
  53619. height: math.unit(5 + 11/12, "feet"),
  53620. default: true
  53621. },
  53622. ]
  53623. ))
  53624. characterMakers.push(() => makeCharacter(
  53625. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53626. {
  53627. normal_front: {
  53628. height: math.unit(4.88, "meters"),
  53629. name: "Front",
  53630. image: {
  53631. source: "./media/characters/maya/normal-front.svg",
  53632. extra: 1222/1145,
  53633. bottom: 57/1279
  53634. },
  53635. form: "normal",
  53636. default: true
  53637. },
  53638. monstrous_front: {
  53639. height: math.unit(10, "meters"),
  53640. name: "Front",
  53641. image: {
  53642. source: "./media/characters/maya/monstrous-front.svg",
  53643. extra: 1523/1109,
  53644. bottom: 113/1636
  53645. },
  53646. form: "monstrous",
  53647. extraAttributes: {
  53648. "swallowSize": {
  53649. name: "Tailmaw Bite Size",
  53650. power: 3,
  53651. type: "volume",
  53652. base: math.unit(43000, "liters")
  53653. },
  53654. }
  53655. },
  53656. taur_front: {
  53657. height: math.unit(10, "meters"),
  53658. name: "Front",
  53659. image: {
  53660. source: "./media/characters/maya/taur-front.svg",
  53661. extra: 743/506,
  53662. bottom: 101/844
  53663. },
  53664. form: "taur",
  53665. },
  53666. },
  53667. [
  53668. {
  53669. name: "Normal",
  53670. height: math.unit(4.88, "meters"),
  53671. default: true,
  53672. form: "normal"
  53673. },
  53674. {
  53675. name: "Macro",
  53676. height: math.unit(38.1, "meters"),
  53677. form: "normal"
  53678. },
  53679. {
  53680. name: "Macro+",
  53681. height: math.unit(152.4, "meters"),
  53682. form: "normal"
  53683. },
  53684. {
  53685. name: "Macro++",
  53686. height: math.unit(16.09, "km"),
  53687. form: "normal"
  53688. },
  53689. {
  53690. name: "Mega-macro",
  53691. height: math.unit(700, "megameters"),
  53692. form: "normal"
  53693. },
  53694. {
  53695. name: "Satiated",
  53696. height: math.unit(10, "meters"),
  53697. default: true,
  53698. form: "monstrous"
  53699. },
  53700. {
  53701. name: "Hungry",
  53702. height: math.unit(75, "meters"),
  53703. form: "monstrous"
  53704. },
  53705. {
  53706. name: "Ravenous",
  53707. height: math.unit(500, "meters"),
  53708. form: "monstrous"
  53709. },
  53710. {
  53711. name: "\"Normal\"",
  53712. height: math.unit(10, "meters"),
  53713. form: "taur"
  53714. },
  53715. {
  53716. name: "Macro",
  53717. height: math.unit(50, "meters"),
  53718. form: "taur"
  53719. },
  53720. ],
  53721. {
  53722. "normal": {
  53723. name: "Normal",
  53724. default: true
  53725. },
  53726. "monstrous": {
  53727. name: "Monstrous",
  53728. },
  53729. "taur": {
  53730. name: "Taur",
  53731. },
  53732. }
  53733. ))
  53734. characterMakers.push(() => makeCharacter(
  53735. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53736. {
  53737. front: {
  53738. height: math.unit(6 + 2/12, "feet"),
  53739. weight: math.unit(500, "lb"),
  53740. preyCapacity: math.unit(4, "people"),
  53741. name: "Front",
  53742. image: {
  53743. source: "./media/characters/yepir/front.svg"
  53744. }
  53745. },
  53746. side: {
  53747. height: math.unit(6 + 2/12, "feet"),
  53748. weight: math.unit(500, "lb"),
  53749. preyCapacity: math.unit(4, "people"),
  53750. name: "Side",
  53751. image: {
  53752. source: "./media/characters/yepir/side.svg"
  53753. }
  53754. },
  53755. paw: {
  53756. height: math.unit(1.05, "feet"),
  53757. name: "Paw",
  53758. image: {
  53759. source: "./media/characters/yepir/paw.svg"
  53760. }
  53761. },
  53762. },
  53763. [
  53764. {
  53765. name: "Normal",
  53766. height: math.unit(6 + 2/12, "feet"),
  53767. default: true
  53768. },
  53769. ]
  53770. ))
  53771. characterMakers.push(() => makeCharacter(
  53772. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53773. {
  53774. front: {
  53775. height: math.unit(5 + 4/12, "feet"),
  53776. name: "Front",
  53777. image: {
  53778. source: "./media/characters/russec/front.svg",
  53779. extra: 1926/1626,
  53780. bottom: 72/1998
  53781. }
  53782. },
  53783. back: {
  53784. height: math.unit(5 + 4/12, "feet"),
  53785. name: "Back",
  53786. image: {
  53787. source: "./media/characters/russec/back.svg",
  53788. extra: 1910/1591,
  53789. bottom: 48/1958
  53790. }
  53791. },
  53792. },
  53793. [
  53794. {
  53795. name: "Small",
  53796. height: math.unit(5 + 4/12, "feet")
  53797. },
  53798. {
  53799. name: "Normal",
  53800. height: math.unit(72, "feet"),
  53801. default: true
  53802. },
  53803. ]
  53804. ))
  53805. characterMakers.push(() => makeCharacter(
  53806. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53807. {
  53808. side: {
  53809. height: math.unit(12, "feet"),
  53810. name: "Side",
  53811. image: {
  53812. source: "./media/characters/cianus/side.svg",
  53813. extra: 808/526,
  53814. bottom: 61/869
  53815. }
  53816. },
  53817. },
  53818. [
  53819. {
  53820. name: "Normal",
  53821. height: math.unit(12, "feet"),
  53822. default: true
  53823. },
  53824. ]
  53825. ))
  53826. characterMakers.push(() => makeCharacter(
  53827. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53828. {
  53829. front: {
  53830. height: math.unit(9 + 6/12, "feet"),
  53831. weight: math.unit(300, "lb"),
  53832. name: "Front",
  53833. image: {
  53834. source: "./media/characters/ahab/front.svg",
  53835. extra: 1897/1868,
  53836. bottom: 121/2018
  53837. }
  53838. },
  53839. frontNsfw: {
  53840. height: math.unit(9 + 6/12, "feet"),
  53841. weight: math.unit(300, "lb"),
  53842. name: "Front-nsfw",
  53843. image: {
  53844. source: "./media/characters/ahab/front-nsfw.svg",
  53845. extra: 1897/1868,
  53846. bottom: 121/2018
  53847. }
  53848. },
  53849. },
  53850. [
  53851. {
  53852. name: "Normal",
  53853. height: math.unit(9 + 6/12, "feet")
  53854. },
  53855. {
  53856. name: "Macro",
  53857. height: math.unit(657, "feet"),
  53858. default: true
  53859. },
  53860. ]
  53861. ))
  53862. characterMakers.push(() => makeCharacter(
  53863. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53864. {
  53865. front: {
  53866. height: math.unit(2.69, "meters"),
  53867. weight: math.unit(132, "kg"),
  53868. name: "Front",
  53869. image: {
  53870. source: "./media/characters/aarkus/front.svg",
  53871. extra: 1400/1231,
  53872. bottom: 34/1434
  53873. }
  53874. },
  53875. back: {
  53876. height: math.unit(2.69, "meters"),
  53877. weight: math.unit(132, "kg"),
  53878. name: "Back",
  53879. image: {
  53880. source: "./media/characters/aarkus/back.svg",
  53881. extra: 1381/1218,
  53882. bottom: 30/1411
  53883. }
  53884. },
  53885. frontNsfw: {
  53886. height: math.unit(2.69, "meters"),
  53887. weight: math.unit(132, "kg"),
  53888. name: "Front (NSFW)",
  53889. image: {
  53890. source: "./media/characters/aarkus/front-nsfw.svg",
  53891. extra: 1400/1231,
  53892. bottom: 34/1434
  53893. }
  53894. },
  53895. foot: {
  53896. height: math.unit(1.45, "feet"),
  53897. name: "Foot",
  53898. image: {
  53899. source: "./media/characters/aarkus/foot.svg"
  53900. }
  53901. },
  53902. head: {
  53903. height: math.unit(2.85, "feet"),
  53904. name: "Head",
  53905. image: {
  53906. source: "./media/characters/aarkus/head.svg"
  53907. }
  53908. },
  53909. headAlt: {
  53910. height: math.unit(3.07, "feet"),
  53911. name: "Head (Alt)",
  53912. image: {
  53913. source: "./media/characters/aarkus/head-alt.svg"
  53914. }
  53915. },
  53916. mouth: {
  53917. height: math.unit(1.25, "feet"),
  53918. name: "Mouth",
  53919. image: {
  53920. source: "./media/characters/aarkus/mouth.svg"
  53921. }
  53922. },
  53923. dick: {
  53924. height: math.unit(1.77, "feet"),
  53925. name: "Dick",
  53926. image: {
  53927. source: "./media/characters/aarkus/dick.svg"
  53928. }
  53929. },
  53930. },
  53931. [
  53932. {
  53933. name: "Normal",
  53934. height: math.unit(2.69, "meters"),
  53935. default: true
  53936. },
  53937. {
  53938. name: "Macro",
  53939. height: math.unit(269, "meters")
  53940. },
  53941. {
  53942. name: "Macro+",
  53943. height: math.unit(672.5, "meters")
  53944. },
  53945. {
  53946. name: "Megamacro",
  53947. height: math.unit(2.017, "km")
  53948. },
  53949. ]
  53950. ))
  53951. characterMakers.push(() => makeCharacter(
  53952. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53953. {
  53954. front: {
  53955. height: math.unit(23.47, "cm"),
  53956. weight: math.unit(600, "grams"),
  53957. name: "Front",
  53958. image: {
  53959. source: "./media/characters/diode/front.svg",
  53960. extra: 1778/1396,
  53961. bottom: 95/1873
  53962. }
  53963. },
  53964. side: {
  53965. height: math.unit(23.47, "cm"),
  53966. weight: math.unit(600, "grams"),
  53967. name: "Side",
  53968. image: {
  53969. source: "./media/characters/diode/side.svg",
  53970. extra: 1831/1404,
  53971. bottom: 86/1917
  53972. }
  53973. },
  53974. wings: {
  53975. height: math.unit(0.683, "feet"),
  53976. name: "Wings",
  53977. image: {
  53978. source: "./media/characters/diode/wings.svg"
  53979. }
  53980. },
  53981. },
  53982. [
  53983. {
  53984. name: "Normal",
  53985. height: math.unit(23.47, "cm"),
  53986. default: true
  53987. },
  53988. ]
  53989. ))
  53990. characterMakers.push(() => makeCharacter(
  53991. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53992. {
  53993. front: {
  53994. height: math.unit(6 + 3/12, "feet"),
  53995. weight: math.unit(250, "lb"),
  53996. name: "Front",
  53997. image: {
  53998. source: "./media/characters/reika/front.svg",
  53999. extra: 1120/1078,
  54000. bottom: 86/1206
  54001. }
  54002. },
  54003. },
  54004. [
  54005. {
  54006. name: "Normal",
  54007. height: math.unit(6 + 3/12, "feet"),
  54008. default: true
  54009. },
  54010. ]
  54011. ))
  54012. characterMakers.push(() => makeCharacter(
  54013. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  54014. {
  54015. front: {
  54016. height: math.unit(16 + 8/12, "feet"),
  54017. weight: math.unit(9000, "lb"),
  54018. name: "Front",
  54019. image: {
  54020. source: "./media/characters/lokuto-takama/front.svg",
  54021. extra: 1774/1632,
  54022. bottom: 147/1921
  54023. },
  54024. extraAttributes: {
  54025. "bustWidth": {
  54026. name: "Bust Width",
  54027. power: 1,
  54028. type: "length",
  54029. base: math.unit(2.4, "meters")
  54030. },
  54031. "breastWeight": {
  54032. name: "Breast Weight",
  54033. power: 3,
  54034. type: "mass",
  54035. base: math.unit(1000, "kg")
  54036. },
  54037. }
  54038. },
  54039. },
  54040. [
  54041. {
  54042. name: "Normal",
  54043. height: math.unit(16 + 8/12, "feet"),
  54044. default: true
  54045. },
  54046. ]
  54047. ))
  54048. characterMakers.push(() => makeCharacter(
  54049. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  54050. {
  54051. front: {
  54052. height: math.unit(10, "cm"),
  54053. weight: math.unit(850, "grams"),
  54054. name: "Front",
  54055. image: {
  54056. source: "./media/characters/owak-bone/front.svg",
  54057. extra: 1965/1801,
  54058. bottom: 31/1996
  54059. }
  54060. },
  54061. },
  54062. [
  54063. {
  54064. name: "Normal",
  54065. height: math.unit(10, "cm"),
  54066. default: true
  54067. },
  54068. ]
  54069. ))
  54070. characterMakers.push(() => makeCharacter(
  54071. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54072. {
  54073. front: {
  54074. height: math.unit(2 + 6/12, "feet"),
  54075. weight: math.unit(9, "lb"),
  54076. name: "Front",
  54077. image: {
  54078. source: "./media/characters/muffin/front.svg",
  54079. extra: 1220/1195,
  54080. bottom: 84/1304
  54081. }
  54082. },
  54083. },
  54084. [
  54085. {
  54086. name: "Normal",
  54087. height: math.unit(2 + 6/12, "feet"),
  54088. default: true
  54089. },
  54090. ]
  54091. ))
  54092. characterMakers.push(() => makeCharacter(
  54093. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54094. {
  54095. front: {
  54096. height: math.unit(7, "feet"),
  54097. name: "Front",
  54098. image: {
  54099. source: "./media/characters/chimera/front.svg",
  54100. extra: 1752/1614,
  54101. bottom: 68/1820
  54102. }
  54103. },
  54104. },
  54105. [
  54106. {
  54107. name: "Normal",
  54108. height: math.unit(7, "feet")
  54109. },
  54110. {
  54111. name: "Gigamacro",
  54112. height: math.unit(2.9, "gigameters"),
  54113. default: true
  54114. },
  54115. {
  54116. name: "Universal",
  54117. height: math.unit(1.56e26, "yottameters")
  54118. },
  54119. ]
  54120. ))
  54121. characterMakers.push(() => makeCharacter(
  54122. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54123. {
  54124. front: {
  54125. height: math.unit(3, "feet"),
  54126. weight: math.unit(20, "lb"),
  54127. name: "Front",
  54128. image: {
  54129. source: "./media/characters/kit-fennec-fox/front.svg",
  54130. extra: 1027/932,
  54131. bottom: 16/1043
  54132. }
  54133. },
  54134. back: {
  54135. height: math.unit(3, "feet"),
  54136. weight: math.unit(20, "lb"),
  54137. name: "Back",
  54138. image: {
  54139. source: "./media/characters/kit-fennec-fox/back.svg",
  54140. extra: 1027/932,
  54141. bottom: 16/1043
  54142. }
  54143. },
  54144. },
  54145. [
  54146. {
  54147. name: "Normal",
  54148. height: math.unit(3, "feet"),
  54149. default: true
  54150. },
  54151. ]
  54152. ))
  54153. characterMakers.push(() => makeCharacter(
  54154. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54155. {
  54156. front: {
  54157. height: math.unit(167, "cm"),
  54158. name: "Front",
  54159. image: {
  54160. source: "./media/characters/blue-otter/front.svg",
  54161. extra: 1951/1920,
  54162. bottom: 31/1982
  54163. }
  54164. },
  54165. },
  54166. [
  54167. {
  54168. name: "Otter-Sized",
  54169. height: math.unit(100, "cm")
  54170. },
  54171. {
  54172. name: "Normal",
  54173. height: math.unit(167, "cm"),
  54174. default: true
  54175. },
  54176. ]
  54177. ))
  54178. characterMakers.push(() => makeCharacter(
  54179. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54180. {
  54181. front: {
  54182. height: math.unit(4 + 4/12, "feet"),
  54183. name: "Front",
  54184. image: {
  54185. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54186. extra: 1072/1067,
  54187. bottom: 117/1189
  54188. }
  54189. },
  54190. back: {
  54191. height: math.unit(4 + 4/12, "feet"),
  54192. name: "Back",
  54193. image: {
  54194. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54195. extra: 1135/1129,
  54196. bottom: 57/1192
  54197. }
  54198. },
  54199. head: {
  54200. height: math.unit(1.77, "feet"),
  54201. name: "Head",
  54202. image: {
  54203. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54204. }
  54205. },
  54206. },
  54207. [
  54208. {
  54209. name: "Normal",
  54210. height: math.unit(4 + 4/12, "feet"),
  54211. default: true
  54212. },
  54213. ]
  54214. ))
  54215. characterMakers.push(() => makeCharacter(
  54216. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54217. {
  54218. front: {
  54219. height: math.unit(2, "inches"),
  54220. name: "Front",
  54221. image: {
  54222. source: "./media/characters/carley-hartford/front.svg",
  54223. extra: 1035/988,
  54224. bottom: 23/1058
  54225. }
  54226. },
  54227. back: {
  54228. height: math.unit(2, "inches"),
  54229. name: "Back",
  54230. image: {
  54231. source: "./media/characters/carley-hartford/back.svg",
  54232. extra: 1035/988,
  54233. bottom: 23/1058
  54234. }
  54235. },
  54236. dressed: {
  54237. height: math.unit(2, "inches"),
  54238. name: "Dressed",
  54239. image: {
  54240. source: "./media/characters/carley-hartford/dressed.svg",
  54241. extra: 651/620,
  54242. bottom: 0/651
  54243. }
  54244. },
  54245. },
  54246. [
  54247. {
  54248. name: "Micro",
  54249. height: math.unit(2, "inches"),
  54250. default: true
  54251. },
  54252. {
  54253. name: "Macro",
  54254. height: math.unit(6 + 3/12, "feet")
  54255. },
  54256. ]
  54257. ))
  54258. characterMakers.push(() => makeCharacter(
  54259. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54260. {
  54261. front: {
  54262. height: math.unit(2 + 3/12, "feet"),
  54263. weight: math.unit(15 + 7/16, "lb"),
  54264. name: "Front",
  54265. image: {
  54266. source: "./media/characters/duke/front.svg",
  54267. extra: 910/815,
  54268. bottom: 30/940
  54269. }
  54270. },
  54271. },
  54272. [
  54273. {
  54274. name: "Normal",
  54275. height: math.unit(2 + 3/12, "feet"),
  54276. default: true
  54277. },
  54278. ]
  54279. ))
  54280. characterMakers.push(() => makeCharacter(
  54281. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54282. {
  54283. front: {
  54284. height: math.unit(5 + 4/12, "feet"),
  54285. weight: math.unit(156, "lb"),
  54286. name: "Front",
  54287. image: {
  54288. source: "./media/characters/dein/front.svg",
  54289. extra: 855/815,
  54290. bottom: 48/903
  54291. }
  54292. },
  54293. side: {
  54294. height: math.unit(5 + 4/12, "feet"),
  54295. weight: math.unit(156, "lb"),
  54296. name: "side",
  54297. image: {
  54298. source: "./media/characters/dein/side.svg",
  54299. extra: 846/803,
  54300. bottom: 25/871
  54301. }
  54302. },
  54303. maw: {
  54304. height: math.unit(1.45, "feet"),
  54305. name: "Maw",
  54306. image: {
  54307. source: "./media/characters/dein/maw.svg"
  54308. }
  54309. },
  54310. },
  54311. [
  54312. {
  54313. name: "Ferret Sized",
  54314. height: math.unit(2 + 5/12, "feet")
  54315. },
  54316. {
  54317. name: "Normal",
  54318. height: math.unit(5 + 4/12, "feet"),
  54319. default: true
  54320. },
  54321. ]
  54322. ))
  54323. characterMakers.push(() => makeCharacter(
  54324. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54325. {
  54326. front: {
  54327. height: math.unit(84 + 8/12, "feet"),
  54328. weight: math.unit(942180, "lb"),
  54329. name: "Front",
  54330. image: {
  54331. source: "./media/characters/daurine-arima/front.svg",
  54332. extra: 1989/1782,
  54333. bottom: 37/2026
  54334. }
  54335. },
  54336. side: {
  54337. height: math.unit(84 + 8/12, "feet"),
  54338. weight: math.unit(942180, "lb"),
  54339. name: "Side",
  54340. image: {
  54341. source: "./media/characters/daurine-arima/side.svg",
  54342. extra: 1997/1790,
  54343. bottom: 21/2018
  54344. }
  54345. },
  54346. back: {
  54347. height: math.unit(84 + 8/12, "feet"),
  54348. weight: math.unit(942180, "lb"),
  54349. name: "Back",
  54350. image: {
  54351. source: "./media/characters/daurine-arima/back.svg",
  54352. extra: 1992/1800,
  54353. bottom: 12/2004
  54354. }
  54355. },
  54356. head: {
  54357. height: math.unit(15.5, "feet"),
  54358. name: "Head",
  54359. image: {
  54360. source: "./media/characters/daurine-arima/head.svg"
  54361. }
  54362. },
  54363. headAlt: {
  54364. height: math.unit(19.19, "feet"),
  54365. name: "Head (Alt)",
  54366. image: {
  54367. source: "./media/characters/daurine-arima/head-alt.svg"
  54368. }
  54369. },
  54370. },
  54371. [
  54372. {
  54373. name: "Minimum height",
  54374. height: math.unit(8 + 10/12, "feet")
  54375. },
  54376. {
  54377. name: "Comfort height",
  54378. height: math.unit(19 + 6 /12, "feet")
  54379. },
  54380. {
  54381. name: "\"Normal\" height",
  54382. height: math.unit(28 + 10/12, "feet")
  54383. },
  54384. {
  54385. name: "Base height",
  54386. height: math.unit(84 + 8/12, "feet"),
  54387. default: true
  54388. },
  54389. {
  54390. name: "Mini-macro",
  54391. height: math.unit(2360, "feet")
  54392. },
  54393. {
  54394. name: "Macro",
  54395. height: math.unit(10, "miles")
  54396. },
  54397. {
  54398. name: "Goddess",
  54399. height: math.unit(9.99e40, "yottameters")
  54400. },
  54401. ]
  54402. ))
  54403. characterMakers.push(() => makeCharacter(
  54404. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54405. {
  54406. front: {
  54407. height: math.unit(2.3, "meters"),
  54408. name: "Front",
  54409. image: {
  54410. source: "./media/characters/cilenomon/front.svg",
  54411. extra: 1963/1778,
  54412. bottom: 54/2017
  54413. }
  54414. },
  54415. },
  54416. [
  54417. {
  54418. name: "Normal",
  54419. height: math.unit(2.3, "meters"),
  54420. default: true
  54421. },
  54422. {
  54423. name: "Big",
  54424. height: math.unit(5, "meters")
  54425. },
  54426. {
  54427. name: "Macro",
  54428. height: math.unit(30, "meters")
  54429. },
  54430. {
  54431. name: "True",
  54432. height: math.unit(1, "universe")
  54433. },
  54434. ]
  54435. ))
  54436. characterMakers.push(() => makeCharacter(
  54437. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54438. {
  54439. front: {
  54440. height: math.unit(5, "feet"),
  54441. name: "Front",
  54442. image: {
  54443. source: "./media/characters/sen-mink/front.svg",
  54444. extra: 1727/1675,
  54445. bottom: 35/1762
  54446. }
  54447. },
  54448. },
  54449. [
  54450. {
  54451. name: "Normal",
  54452. height: math.unit(5, "feet"),
  54453. default: true
  54454. },
  54455. ]
  54456. ))
  54457. characterMakers.push(() => makeCharacter(
  54458. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54459. {
  54460. front: {
  54461. height: math.unit(5.42999, "feet"),
  54462. weight: math.unit(100, "lb"),
  54463. name: "Front",
  54464. image: {
  54465. source: "./media/characters/ophois/front.svg",
  54466. extra: 1429/1286,
  54467. bottom: 60/1489
  54468. }
  54469. },
  54470. },
  54471. [
  54472. {
  54473. name: "Normal",
  54474. height: math.unit(5.42999, "feet"),
  54475. default: true
  54476. },
  54477. ]
  54478. ))
  54479. characterMakers.push(() => makeCharacter(
  54480. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54481. {
  54482. front: {
  54483. height: math.unit(2, "meters"),
  54484. name: "Front",
  54485. image: {
  54486. source: "./media/characters/riley/front.svg",
  54487. extra: 1779/1754,
  54488. bottom: 139/1918
  54489. }
  54490. },
  54491. },
  54492. [
  54493. {
  54494. name: "Normal",
  54495. height: math.unit(2, "meters"),
  54496. default: true
  54497. },
  54498. ]
  54499. ))
  54500. characterMakers.push(() => makeCharacter(
  54501. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54502. {
  54503. front: {
  54504. height: math.unit(6 + 2/12, "feet"),
  54505. weight: math.unit(195, "lb"),
  54506. preyCapacity: math.unit(6, "people"),
  54507. name: "Front",
  54508. image: {
  54509. source: "./media/characters/shuken-flash/front.svg",
  54510. extra: 1905/1739,
  54511. bottom: 65/1970
  54512. }
  54513. },
  54514. back: {
  54515. height: math.unit(6 + 2/12, "feet"),
  54516. weight: math.unit(195, "lb"),
  54517. preyCapacity: math.unit(6, "people"),
  54518. name: "Back",
  54519. image: {
  54520. source: "./media/characters/shuken-flash/back.svg",
  54521. extra: 1912/1751,
  54522. bottom: 13/1925
  54523. }
  54524. },
  54525. },
  54526. [
  54527. {
  54528. name: "Normal",
  54529. height: math.unit(6 + 2/12, "feet"),
  54530. default: true
  54531. },
  54532. ]
  54533. ))
  54534. characterMakers.push(() => makeCharacter(
  54535. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54536. {
  54537. front: {
  54538. height: math.unit(5 + 9/12, "feet"),
  54539. weight: math.unit(150, "lb"),
  54540. name: "Front",
  54541. image: {
  54542. source: "./media/characters/plat/front.svg",
  54543. extra: 1816/1703,
  54544. bottom: 43/1859
  54545. }
  54546. },
  54547. side: {
  54548. height: math.unit(5 + 9/12, "feet"),
  54549. weight: math.unit(300, "lb"),
  54550. name: "Side",
  54551. image: {
  54552. source: "./media/characters/plat/side.svg",
  54553. extra: 1824/1699,
  54554. bottom: 18/1842
  54555. }
  54556. },
  54557. },
  54558. [
  54559. {
  54560. name: "Normal",
  54561. height: math.unit(5 + 9/12, "feet"),
  54562. default: true
  54563. },
  54564. ]
  54565. ))
  54566. characterMakers.push(() => makeCharacter(
  54567. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54568. {
  54569. front: {
  54570. height: math.unit(9, "feet"),
  54571. weight: math.unit(1800, "lb"),
  54572. name: "Front",
  54573. image: {
  54574. source: "./media/characters/elaine/front.svg",
  54575. extra: 1833/1354,
  54576. bottom: 25/1858
  54577. }
  54578. },
  54579. back: {
  54580. height: math.unit(8.8, "feet"),
  54581. weight: math.unit(1800, "lb"),
  54582. name: "Back",
  54583. image: {
  54584. source: "./media/characters/elaine/back.svg",
  54585. extra: 1641/1233,
  54586. bottom: 53/1694
  54587. }
  54588. },
  54589. },
  54590. [
  54591. {
  54592. name: "Normal",
  54593. height: math.unit(9, "feet"),
  54594. default: true
  54595. },
  54596. ]
  54597. ))
  54598. characterMakers.push(() => makeCharacter(
  54599. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54600. {
  54601. front: {
  54602. height: math.unit(17 + 9/12, "feet"),
  54603. weight: math.unit(8000, "lb"),
  54604. name: "Front",
  54605. image: {
  54606. source: "./media/characters/vera-raven/front.svg",
  54607. extra: 1457/1412,
  54608. bottom: 121/1578
  54609. }
  54610. },
  54611. side: {
  54612. height: math.unit(17 + 9/12, "feet"),
  54613. weight: math.unit(8000, "lb"),
  54614. name: "Side",
  54615. image: {
  54616. source: "./media/characters/vera-raven/side.svg",
  54617. extra: 1510/1464,
  54618. bottom: 54/1564
  54619. }
  54620. },
  54621. },
  54622. [
  54623. {
  54624. name: "Normal",
  54625. height: math.unit(17 + 9/12, "feet"),
  54626. default: true
  54627. },
  54628. ]
  54629. ))
  54630. characterMakers.push(() => makeCharacter(
  54631. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54632. {
  54633. dressed: {
  54634. height: math.unit(6 + 9/12, "feet"),
  54635. name: "Dressed",
  54636. image: {
  54637. source: "./media/characters/nakisha/dressed.svg",
  54638. extra: 1909/1757,
  54639. bottom: 48/1957
  54640. }
  54641. },
  54642. nude: {
  54643. height: math.unit(6 + 9/12, "feet"),
  54644. name: "Nude",
  54645. image: {
  54646. source: "./media/characters/nakisha/nude.svg",
  54647. extra: 1917/1765,
  54648. bottom: 34/1951
  54649. }
  54650. },
  54651. },
  54652. [
  54653. {
  54654. name: "Normal",
  54655. height: math.unit(6 + 9/12, "feet"),
  54656. default: true
  54657. },
  54658. ]
  54659. ))
  54660. characterMakers.push(() => makeCharacter(
  54661. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54662. {
  54663. front: {
  54664. height: math.unit(87, "meters"),
  54665. name: "Front",
  54666. image: {
  54667. source: "./media/characters/serafin/front.svg",
  54668. extra: 1919/1776,
  54669. bottom: 65/1984
  54670. }
  54671. },
  54672. },
  54673. [
  54674. {
  54675. name: "Normal",
  54676. height: math.unit(87, "meters"),
  54677. default: true
  54678. },
  54679. ]
  54680. ))
  54681. characterMakers.push(() => makeCharacter(
  54682. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54683. {
  54684. front: {
  54685. height: math.unit(6, "feet"),
  54686. weight: math.unit(200, "lb"),
  54687. name: "Front",
  54688. image: {
  54689. source: "./media/characters/poptart/front.svg",
  54690. extra: 615/583,
  54691. bottom: 23/638
  54692. }
  54693. },
  54694. back: {
  54695. height: math.unit(6, "feet"),
  54696. weight: math.unit(200, "lb"),
  54697. name: "Back",
  54698. image: {
  54699. source: "./media/characters/poptart/back.svg",
  54700. extra: 617/584,
  54701. bottom: 22/639
  54702. }
  54703. },
  54704. frontNsfw: {
  54705. height: math.unit(6, "feet"),
  54706. weight: math.unit(200, "lb"),
  54707. name: "Front (NSFW)",
  54708. image: {
  54709. source: "./media/characters/poptart/front-nsfw.svg",
  54710. extra: 615/583,
  54711. bottom: 23/638
  54712. }
  54713. },
  54714. backNsfw: {
  54715. height: math.unit(6, "feet"),
  54716. weight: math.unit(200, "lb"),
  54717. name: "Back (NSFW)",
  54718. image: {
  54719. source: "./media/characters/poptart/back-nsfw.svg",
  54720. extra: 617/584,
  54721. bottom: 22/639
  54722. }
  54723. },
  54724. hand: {
  54725. height: math.unit(1.14, "feet"),
  54726. name: "Hand",
  54727. image: {
  54728. source: "./media/characters/poptart/hand.svg"
  54729. }
  54730. },
  54731. foot: {
  54732. height: math.unit(1.5, "feet"),
  54733. name: "Foot",
  54734. image: {
  54735. source: "./media/characters/poptart/foot.svg"
  54736. }
  54737. },
  54738. },
  54739. [
  54740. {
  54741. name: "Normal",
  54742. height: math.unit(6, "feet"),
  54743. default: true
  54744. },
  54745. {
  54746. name: "Grande",
  54747. height: math.unit(350, "feet")
  54748. },
  54749. {
  54750. name: "Massif",
  54751. height: math.unit(967, "feet")
  54752. },
  54753. ]
  54754. ))
  54755. characterMakers.push(() => makeCharacter(
  54756. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54757. {
  54758. hyenaSide: {
  54759. height: math.unit(120, "cm"),
  54760. weight: math.unit(120, "lb"),
  54761. name: "Side",
  54762. image: {
  54763. source: "./media/characters/trance/hyena-side.svg",
  54764. extra: 998/904,
  54765. bottom: 76/1074
  54766. }
  54767. },
  54768. },
  54769. [
  54770. {
  54771. name: "Normal",
  54772. height: math.unit(120, "cm"),
  54773. default: true
  54774. },
  54775. {
  54776. name: "Dire",
  54777. height: math.unit(230, "cm")
  54778. },
  54779. {
  54780. name: "Macro",
  54781. height: math.unit(37, "feet")
  54782. },
  54783. ]
  54784. ))
  54785. characterMakers.push(() => makeCharacter(
  54786. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54787. {
  54788. front: {
  54789. height: math.unit(6 + 3/12, "feet"),
  54790. name: "Front",
  54791. image: {
  54792. source: "./media/characters/michael-berretta/front.svg",
  54793. extra: 515/494,
  54794. bottom: 20/535
  54795. }
  54796. },
  54797. back: {
  54798. height: math.unit(6 + 3/12, "feet"),
  54799. name: "Back",
  54800. image: {
  54801. source: "./media/characters/michael-berretta/back.svg",
  54802. extra: 520/497,
  54803. bottom: 21/541
  54804. }
  54805. },
  54806. frontNsfw: {
  54807. height: math.unit(6 + 3/12, "feet"),
  54808. name: "Front (NSFW)",
  54809. image: {
  54810. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54811. extra: 515/494,
  54812. bottom: 20/535
  54813. }
  54814. },
  54815. dick: {
  54816. height: math.unit(1, "feet"),
  54817. name: "Dick",
  54818. image: {
  54819. source: "./media/characters/michael-berretta/dick.svg"
  54820. }
  54821. },
  54822. },
  54823. [
  54824. {
  54825. name: "Normal",
  54826. height: math.unit(6 + 3/12, "feet"),
  54827. default: true
  54828. },
  54829. {
  54830. name: "Big",
  54831. height: math.unit(12, "feet")
  54832. },
  54833. {
  54834. name: "Macro",
  54835. height: math.unit(187.5, "feet")
  54836. },
  54837. ]
  54838. ))
  54839. characterMakers.push(() => makeCharacter(
  54840. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54841. {
  54842. front: {
  54843. height: math.unit(9 + 9/12, "feet"),
  54844. weight: math.unit(1244, "lb"),
  54845. name: "Front",
  54846. image: {
  54847. source: "./media/characters/stella-edgecomb/front.svg",
  54848. extra: 1835/1706,
  54849. bottom: 49/1884
  54850. }
  54851. },
  54852. pen: {
  54853. height: math.unit(0.95, "feet"),
  54854. name: "Pen",
  54855. image: {
  54856. source: "./media/characters/stella-edgecomb/pen.svg"
  54857. }
  54858. },
  54859. },
  54860. [
  54861. {
  54862. name: "Cozy Bear",
  54863. height: math.unit(0.5, "inches")
  54864. },
  54865. {
  54866. name: "Normal",
  54867. height: math.unit(9 + 9/12, "feet"),
  54868. default: true
  54869. },
  54870. {
  54871. name: "Giga Bear",
  54872. height: math.unit(1, "mile")
  54873. },
  54874. {
  54875. name: "Great Bear",
  54876. height: math.unit(53, "miles")
  54877. },
  54878. {
  54879. name: "Goddess Bear",
  54880. height: math.unit(40000, "miles")
  54881. },
  54882. {
  54883. name: "Sun Bear",
  54884. height: math.unit(900000, "miles")
  54885. },
  54886. ]
  54887. ))
  54888. characterMakers.push(() => makeCharacter(
  54889. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54890. {
  54891. anthroFront: {
  54892. height: math.unit(556, "cm"),
  54893. weight: math.unit(2650, "kg"),
  54894. preyCapacity: math.unit(3, "people"),
  54895. name: "Front",
  54896. image: {
  54897. source: "./media/characters/ash´iika/front.svg",
  54898. extra: 710/673,
  54899. bottom: 15/725
  54900. },
  54901. form: "anthro",
  54902. default: true
  54903. },
  54904. anthroSide: {
  54905. height: math.unit(556, "cm"),
  54906. weight: math.unit(2650, "kg"),
  54907. preyCapacity: math.unit(3, "people"),
  54908. name: "Side",
  54909. image: {
  54910. source: "./media/characters/ash´iika/side.svg",
  54911. extra: 696/676,
  54912. bottom: 13/709
  54913. },
  54914. form: "anthro"
  54915. },
  54916. anthroDressed: {
  54917. height: math.unit(556, "cm"),
  54918. weight: math.unit(2650, "kg"),
  54919. preyCapacity: math.unit(3, "people"),
  54920. name: "Dressed",
  54921. image: {
  54922. source: "./media/characters/ash´iika/dressed.svg",
  54923. extra: 710/673,
  54924. bottom: 15/725
  54925. },
  54926. form: "anthro"
  54927. },
  54928. anthroHead: {
  54929. height: math.unit(3.5, "feet"),
  54930. name: "Head",
  54931. image: {
  54932. source: "./media/characters/ash´iika/head.svg",
  54933. extra: 348/291,
  54934. bottom: 45/393
  54935. },
  54936. form: "anthro"
  54937. },
  54938. feralSide: {
  54939. height: math.unit(870, "cm"),
  54940. weight: math.unit(17500, "kg"),
  54941. preyCapacity: math.unit(15, "people"),
  54942. name: "Side",
  54943. image: {
  54944. source: "./media/characters/ash´iika/feral.svg",
  54945. extra: 595/199,
  54946. bottom: 7/602
  54947. },
  54948. form: "feral",
  54949. default: true,
  54950. },
  54951. },
  54952. [
  54953. {
  54954. name: "Normal",
  54955. height: math.unit(556, "cm"),
  54956. default: true,
  54957. form: "anthro"
  54958. },
  54959. {
  54960. name: "Macro",
  54961. height: math.unit(88, "meters"),
  54962. form: "anthro"
  54963. },
  54964. {
  54965. name: "Normal",
  54966. height: math.unit(870, "cm"),
  54967. default: true,
  54968. form: "feral"
  54969. },
  54970. {
  54971. name: "Large",
  54972. height: math.unit(25, "meters"),
  54973. form: "feral"
  54974. },
  54975. ],
  54976. {
  54977. "anthro": {
  54978. name: "Anthro",
  54979. default: true
  54980. },
  54981. "feral": {
  54982. name: "Feral",
  54983. },
  54984. }
  54985. ))
  54986. characterMakers.push(() => makeCharacter(
  54987. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54988. {
  54989. front: {
  54990. height: math.unit(10, "feet"),
  54991. weight: math.unit(800, "lb"),
  54992. name: "Front",
  54993. image: {
  54994. source: "./media/characters/yen/front.svg",
  54995. extra: 443/411,
  54996. bottom: 6/449
  54997. }
  54998. },
  54999. sleeping: {
  55000. height: math.unit(10, "feet"),
  55001. weight: math.unit(800, "lb"),
  55002. name: "Sleeping",
  55003. image: {
  55004. source: "./media/characters/yen/sleeping.svg",
  55005. extra: 470/422,
  55006. bottom: 0/470
  55007. }
  55008. },
  55009. head: {
  55010. height: math.unit(2.2, "feet"),
  55011. name: "Head",
  55012. image: {
  55013. source: "./media/characters/yen/head.svg"
  55014. }
  55015. },
  55016. headAlt: {
  55017. height: math.unit(2.1, "feet"),
  55018. name: "Head (Alt)",
  55019. image: {
  55020. source: "./media/characters/yen/head-alt.svg"
  55021. }
  55022. },
  55023. },
  55024. [
  55025. {
  55026. name: "Normal",
  55027. height: math.unit(10, "feet"),
  55028. default: true
  55029. },
  55030. ]
  55031. ))
  55032. characterMakers.push(() => makeCharacter(
  55033. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  55034. {
  55035. front: {
  55036. height: math.unit(12, "feet"),
  55037. name: "Front",
  55038. image: {
  55039. source: "./media/characters/citra/front.svg",
  55040. extra: 1950/1710,
  55041. bottom: 47/1997
  55042. }
  55043. },
  55044. },
  55045. [
  55046. {
  55047. name: "Normal",
  55048. height: math.unit(12, "feet"),
  55049. default: true
  55050. },
  55051. ]
  55052. ))
  55053. characterMakers.push(() => makeCharacter(
  55054. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  55055. {
  55056. side: {
  55057. height: math.unit(7 + 10/12, "feet"),
  55058. name: "Side",
  55059. image: {
  55060. source: "./media/characters/sholstim/side.svg",
  55061. extra: 786/682,
  55062. bottom: 40/826
  55063. }
  55064. },
  55065. },
  55066. [
  55067. {
  55068. name: "Normal",
  55069. height: math.unit(7 + 10/12, "feet"),
  55070. default: true
  55071. },
  55072. ]
  55073. ))
  55074. characterMakers.push(() => makeCharacter(
  55075. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55076. {
  55077. front: {
  55078. height: math.unit(3.10, "meters"),
  55079. name: "Front",
  55080. image: {
  55081. source: "./media/characters/aggyn/front.svg",
  55082. extra: 1188/963,
  55083. bottom: 24/1212
  55084. }
  55085. },
  55086. },
  55087. [
  55088. {
  55089. name: "Normal",
  55090. height: math.unit(3.10, "meters"),
  55091. default: true
  55092. },
  55093. ]
  55094. ))
  55095. characterMakers.push(() => makeCharacter(
  55096. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55097. {
  55098. front: {
  55099. height: math.unit(7 + 5/12, "feet"),
  55100. weight: math.unit(687, "lb"),
  55101. name: "Front",
  55102. image: {
  55103. source: "./media/characters/alsandair-hergenroether/front.svg",
  55104. extra: 1251/1186,
  55105. bottom: 75/1326
  55106. }
  55107. },
  55108. back: {
  55109. height: math.unit(7 + 5/12, "feet"),
  55110. weight: math.unit(687, "lb"),
  55111. name: "Back",
  55112. image: {
  55113. source: "./media/characters/alsandair-hergenroether/back.svg",
  55114. extra: 1290/1229,
  55115. bottom: 17/1307
  55116. }
  55117. },
  55118. },
  55119. [
  55120. {
  55121. name: "Max Compression",
  55122. height: math.unit(7 + 5/12, "feet"),
  55123. default: true
  55124. },
  55125. {
  55126. name: "\"Normal\"",
  55127. height: math.unit(2, "universes")
  55128. },
  55129. ]
  55130. ))
  55131. characterMakers.push(() => makeCharacter(
  55132. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55133. {
  55134. front: {
  55135. height: math.unit(4 + 1/12, "feet"),
  55136. weight: math.unit(92, "lb"),
  55137. name: "Front",
  55138. image: {
  55139. source: "./media/characters/ie/front.svg",
  55140. extra: 1585/1352,
  55141. bottom: 91/1676
  55142. }
  55143. },
  55144. },
  55145. [
  55146. {
  55147. name: "Normal",
  55148. height: math.unit(4 + 1/12, "feet"),
  55149. default: true
  55150. },
  55151. ]
  55152. ))
  55153. characterMakers.push(() => makeCharacter(
  55154. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55155. {
  55156. anthro: {
  55157. height: math.unit(6, "feet"),
  55158. weight: math.unit(150, "lb"),
  55159. name: "Front",
  55160. image: {
  55161. source: "./media/characters/willow/anthro.svg",
  55162. extra: 1073/986,
  55163. bottom: 34/1107
  55164. },
  55165. form: "anthro",
  55166. default: true
  55167. },
  55168. taur: {
  55169. height: math.unit(6, "feet"),
  55170. weight: math.unit(150, "lb"),
  55171. name: "Side",
  55172. image: {
  55173. source: "./media/characters/willow/taur.svg",
  55174. extra: 647/512,
  55175. bottom: 136/783
  55176. },
  55177. form: "taur",
  55178. default: true
  55179. },
  55180. },
  55181. [
  55182. {
  55183. name: "Humanoid",
  55184. height: math.unit(2.7, "meters"),
  55185. form: "anthro"
  55186. },
  55187. {
  55188. name: "Normal",
  55189. height: math.unit(9, "meters"),
  55190. form: "anthro",
  55191. default: true
  55192. },
  55193. {
  55194. name: "Humanoid",
  55195. height: math.unit(2.1, "meters"),
  55196. form: "taur"
  55197. },
  55198. {
  55199. name: "Normal",
  55200. height: math.unit(7, "meters"),
  55201. form: "taur",
  55202. default: true
  55203. },
  55204. ],
  55205. {
  55206. "anthro": {
  55207. name: "Anthro",
  55208. default: true
  55209. },
  55210. "taur": {
  55211. name: "Taur",
  55212. },
  55213. }
  55214. ))
  55215. characterMakers.push(() => makeCharacter(
  55216. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55217. {
  55218. front: {
  55219. height: math.unit(2 + 5/12, "feet"),
  55220. name: "Front",
  55221. image: {
  55222. source: "./media/characters/kyan/front.svg",
  55223. extra: 460/334,
  55224. bottom: 23/483
  55225. },
  55226. extraAttributes: {
  55227. "toeLength": {
  55228. name: "Toe Length",
  55229. power: 1,
  55230. type: "length",
  55231. base: math.unit(7, "cm")
  55232. },
  55233. "toeclawLength": {
  55234. name: "Toeclaw Length",
  55235. power: 1,
  55236. type: "length",
  55237. base: math.unit(4.7, "cm")
  55238. },
  55239. "earHeight": {
  55240. name: "Ear Height",
  55241. power: 1,
  55242. type: "length",
  55243. base: math.unit(14.1, "cm")
  55244. },
  55245. }
  55246. },
  55247. paws: {
  55248. height: math.unit(0.45, "feet"),
  55249. name: "Paws",
  55250. image: {
  55251. source: "./media/characters/kyan/paws.svg",
  55252. extra: 581/581,
  55253. bottom: 114/695
  55254. }
  55255. },
  55256. },
  55257. [
  55258. {
  55259. name: "Normal",
  55260. height: math.unit(2 + 5/12, "feet"),
  55261. default: true
  55262. },
  55263. ]
  55264. ))
  55265. characterMakers.push(() => makeCharacter(
  55266. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55267. {
  55268. front: {
  55269. height: math.unit(2 + 2/3, "feet"),
  55270. name: "Front",
  55271. image: {
  55272. source: "./media/characters/xazzon/front.svg",
  55273. extra: 1109/984,
  55274. bottom: 42/1151
  55275. }
  55276. },
  55277. back: {
  55278. height: math.unit(2 + 2/3, "feet"),
  55279. name: "Back",
  55280. image: {
  55281. source: "./media/characters/xazzon/back.svg",
  55282. extra: 1095/971,
  55283. bottom: 23/1118
  55284. }
  55285. },
  55286. },
  55287. [
  55288. {
  55289. name: "Normal",
  55290. height: math.unit(2 + 2/3, "feet"),
  55291. default: true
  55292. },
  55293. ]
  55294. ))
  55295. characterMakers.push(() => makeCharacter(
  55296. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55297. {
  55298. front: {
  55299. height: math.unit(8, "feet"),
  55300. weight: math.unit(300, "lb"),
  55301. name: "Front",
  55302. image: {
  55303. source: "./media/characters/khyla-shadowsong/front.svg",
  55304. extra: 861/798,
  55305. bottom: 32/893
  55306. }
  55307. },
  55308. side: {
  55309. height: math.unit(8, "feet"),
  55310. weight: math.unit(300, "lb"),
  55311. name: "Side",
  55312. image: {
  55313. source: "./media/characters/khyla-shadowsong/side.svg",
  55314. extra: 790/750,
  55315. bottom: 87/877
  55316. }
  55317. },
  55318. back: {
  55319. height: math.unit(8, "feet"),
  55320. weight: math.unit(300, "lb"),
  55321. name: "Back",
  55322. image: {
  55323. source: "./media/characters/khyla-shadowsong/back.svg",
  55324. extra: 855/808,
  55325. bottom: 14/869
  55326. }
  55327. },
  55328. head: {
  55329. height: math.unit(2.7, "feet"),
  55330. name: "Head",
  55331. image: {
  55332. source: "./media/characters/khyla-shadowsong/head.svg"
  55333. }
  55334. },
  55335. },
  55336. [
  55337. {
  55338. name: "Micro",
  55339. height: math.unit(6, "inches")
  55340. },
  55341. {
  55342. name: "Normal",
  55343. height: math.unit(8, "feet"),
  55344. default: true
  55345. },
  55346. ]
  55347. ))
  55348. characterMakers.push(() => makeCharacter(
  55349. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55350. {
  55351. hyperFront: {
  55352. height: math.unit(9 + 4/12, "feet"),
  55353. weight: math.unit(2000, "lb"),
  55354. name: "Front",
  55355. image: {
  55356. source: "./media/characters/tiden/hyper-front.svg",
  55357. extra: 400/382,
  55358. bottom: 6/406
  55359. },
  55360. form: "hyper",
  55361. },
  55362. regularFront: {
  55363. height: math.unit(7 + 10/12, "feet"),
  55364. weight: math.unit(470, "lb"),
  55365. name: "Front",
  55366. image: {
  55367. source: "./media/characters/tiden/regular-front.svg",
  55368. extra: 468/442,
  55369. bottom: 6/474
  55370. },
  55371. form: "regular",
  55372. },
  55373. },
  55374. [
  55375. {
  55376. name: "Normal",
  55377. height: math.unit(9 + 4/12, "feet"),
  55378. default: true,
  55379. form: "hyper"
  55380. },
  55381. {
  55382. name: "Normal",
  55383. height: math.unit(7 + 10/12, "feet"),
  55384. default: true,
  55385. form: "regular"
  55386. },
  55387. ],
  55388. {
  55389. "hyper": {
  55390. name: "Hyper",
  55391. default: true
  55392. },
  55393. "regular": {
  55394. name: "Regular",
  55395. },
  55396. }
  55397. ))
  55398. characterMakers.push(() => makeCharacter(
  55399. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55400. {
  55401. side: {
  55402. height: math.unit(6, "feet"),
  55403. weight: math.unit(150, "lb"),
  55404. name: "Side",
  55405. image: {
  55406. source: "./media/characters/jason-crowe/side.svg",
  55407. extra: 1771/766,
  55408. bottom: 219/1990
  55409. }
  55410. },
  55411. },
  55412. [
  55413. {
  55414. name: "Pocket Gryphon",
  55415. height: math.unit(6, "cm")
  55416. },
  55417. {
  55418. name: "Raven",
  55419. height: math.unit(60, "cm")
  55420. },
  55421. {
  55422. name: "Normal",
  55423. height: math.unit(1, "meter"),
  55424. default: true
  55425. },
  55426. ]
  55427. ))
  55428. characterMakers.push(() => makeCharacter(
  55429. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55430. {
  55431. front: {
  55432. height: math.unit(9 + 6/12, "feet"),
  55433. weight: math.unit(1100, "lb"),
  55434. name: "Front",
  55435. image: {
  55436. source: "./media/characters/django/front.svg",
  55437. extra: 1231/1136,
  55438. bottom: 34/1265
  55439. }
  55440. },
  55441. side: {
  55442. height: math.unit(9 + 6/12, "feet"),
  55443. weight: math.unit(1100, "lb"),
  55444. name: "Side",
  55445. image: {
  55446. source: "./media/characters/django/side.svg",
  55447. extra: 1267/1174,
  55448. bottom: 9/1276
  55449. }
  55450. },
  55451. },
  55452. [
  55453. {
  55454. name: "Normal",
  55455. height: math.unit(9 + 6/12, "feet"),
  55456. default: true
  55457. },
  55458. {
  55459. name: "Macro 1",
  55460. height: math.unit(50, "feet")
  55461. },
  55462. {
  55463. name: "Macro 2",
  55464. height: math.unit(500, "feet")
  55465. },
  55466. {
  55467. name: "Mega Macro",
  55468. height: math.unit(5300, "feet")
  55469. },
  55470. ]
  55471. ))
  55472. characterMakers.push(() => makeCharacter(
  55473. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55474. {
  55475. frontSfw: {
  55476. height: math.unit(120, "cm"),
  55477. weight: math.unit(15, "kg"),
  55478. name: "Front (SFW)",
  55479. image: {
  55480. source: "./media/characters/eri/front-sfw.svg",
  55481. extra: 1014/939,
  55482. bottom: 37/1051
  55483. },
  55484. form: "moth",
  55485. },
  55486. frontNsfw: {
  55487. height: math.unit(120, "cm"),
  55488. weight: math.unit(15, "kg"),
  55489. name: "Front (NSFW)",
  55490. image: {
  55491. source: "./media/characters/eri/front-nsfw.svg",
  55492. extra: 1014/939,
  55493. bottom: 37/1051
  55494. },
  55495. form: "moth",
  55496. default: true
  55497. },
  55498. egg: {
  55499. height: math.unit(10, "cm"),
  55500. name: "Egg",
  55501. image: {
  55502. source: "./media/characters/eri/egg.svg"
  55503. },
  55504. form: "egg",
  55505. default: true
  55506. },
  55507. },
  55508. [
  55509. {
  55510. name: "Normal",
  55511. height: math.unit(120, "cm"),
  55512. default: true,
  55513. form: "moth"
  55514. },
  55515. {
  55516. name: "Normal",
  55517. height: math.unit(10, "cm"),
  55518. default: true,
  55519. form: "egg"
  55520. },
  55521. ],
  55522. {
  55523. "moth": {
  55524. name: "Moth",
  55525. default: true
  55526. },
  55527. "egg": {
  55528. name: "Egg",
  55529. },
  55530. }
  55531. ))
  55532. characterMakers.push(() => makeCharacter(
  55533. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55534. {
  55535. front: {
  55536. height: math.unit(200, "feet"),
  55537. name: "Front",
  55538. image: {
  55539. source: "./media/characters/bishop-dowser/front.svg",
  55540. extra: 933/868,
  55541. bottom: 106/1039
  55542. }
  55543. },
  55544. },
  55545. [
  55546. {
  55547. name: "Giant",
  55548. height: math.unit(200, "feet"),
  55549. default: true
  55550. },
  55551. ]
  55552. ))
  55553. characterMakers.push(() => makeCharacter(
  55554. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55555. {
  55556. front: {
  55557. height: math.unit(2, "meters"),
  55558. preyCapacity: math.unit(3, "people"),
  55559. name: "Front",
  55560. image: {
  55561. source: "./media/characters/fryra/front.svg",
  55562. extra: 1025/948,
  55563. bottom: 30/1055
  55564. },
  55565. extraAttributes: {
  55566. "breastVolume": {
  55567. name: "Breast Volume",
  55568. power: 3,
  55569. type: "volume",
  55570. base: math.unit(8, "liters")
  55571. },
  55572. }
  55573. },
  55574. back: {
  55575. height: math.unit(2, "meters"),
  55576. preyCapacity: math.unit(3, "people"),
  55577. name: "Back",
  55578. image: {
  55579. source: "./media/characters/fryra/back.svg",
  55580. extra: 993/938,
  55581. bottom: 38/1031
  55582. },
  55583. extraAttributes: {
  55584. "breastVolume": {
  55585. name: "Breast Volume",
  55586. power: 3,
  55587. type: "volume",
  55588. base: math.unit(8, "liters")
  55589. },
  55590. }
  55591. },
  55592. head: {
  55593. height: math.unit(1.33, "feet"),
  55594. name: "Head",
  55595. image: {
  55596. source: "./media/characters/fryra/head.svg"
  55597. }
  55598. },
  55599. maw: {
  55600. height: math.unit(0.56, "feet"),
  55601. name: "Maw",
  55602. image: {
  55603. source: "./media/characters/fryra/maw.svg"
  55604. }
  55605. },
  55606. },
  55607. [
  55608. {
  55609. name: "Micro",
  55610. height: math.unit(5, "cm")
  55611. },
  55612. {
  55613. name: "Normal",
  55614. height: math.unit(2, "meters"),
  55615. default: true
  55616. },
  55617. {
  55618. name: "Small Macro",
  55619. height: math.unit(8, "meters")
  55620. },
  55621. {
  55622. name: "Macro",
  55623. height: math.unit(50, "meters")
  55624. },
  55625. {
  55626. name: "Megamacro",
  55627. height: math.unit(1, "km")
  55628. },
  55629. {
  55630. name: "Planetary",
  55631. height: math.unit(300000, "km")
  55632. },
  55633. {
  55634. name: "Universal",
  55635. height: math.unit(250, "lightyears")
  55636. },
  55637. {
  55638. name: "Fabric of Reality",
  55639. height: math.unit(1000, "multiverses")
  55640. },
  55641. ]
  55642. ))
  55643. characterMakers.push(() => makeCharacter(
  55644. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55645. {
  55646. frontDressed: {
  55647. height: math.unit(6 + 2/12, "feet"),
  55648. name: "Front (Dressed)",
  55649. image: {
  55650. source: "./media/characters/fiera/front-dressed.svg",
  55651. extra: 1883/1793,
  55652. bottom: 70/1953
  55653. }
  55654. },
  55655. backDressed: {
  55656. height: math.unit(6 + 2/12, "feet"),
  55657. name: "Back (Dressed)",
  55658. image: {
  55659. source: "./media/characters/fiera/back-dressed.svg",
  55660. extra: 1847/1780,
  55661. bottom: 70/1917
  55662. }
  55663. },
  55664. frontNude: {
  55665. height: math.unit(6 + 2/12, "feet"),
  55666. name: "Front (Nude)",
  55667. image: {
  55668. source: "./media/characters/fiera/front-nude.svg",
  55669. extra: 1875/1785,
  55670. bottom: 66/1941
  55671. }
  55672. },
  55673. backNude: {
  55674. height: math.unit(6 + 2/12, "feet"),
  55675. name: "Back (Nude)",
  55676. image: {
  55677. source: "./media/characters/fiera/back-nude.svg",
  55678. extra: 1855/1788,
  55679. bottom: 44/1899
  55680. }
  55681. },
  55682. maw: {
  55683. height: math.unit(1.3, "feet"),
  55684. name: "Maw",
  55685. image: {
  55686. source: "./media/characters/fiera/maw.svg"
  55687. }
  55688. },
  55689. paw: {
  55690. height: math.unit(1, "feet"),
  55691. name: "Paw",
  55692. image: {
  55693. source: "./media/characters/fiera/paw.svg"
  55694. }
  55695. },
  55696. shoe: {
  55697. height: math.unit(1.05, "feet"),
  55698. name: "Shoe",
  55699. image: {
  55700. source: "./media/characters/fiera/shoe.svg"
  55701. }
  55702. },
  55703. },
  55704. [
  55705. {
  55706. name: "Normal",
  55707. height: math.unit(6 + 2/12, "feet"),
  55708. default: true
  55709. },
  55710. {
  55711. name: "Size Difference",
  55712. height: math.unit(13, "feet")
  55713. },
  55714. {
  55715. name: "Macro",
  55716. height: math.unit(60, "feet")
  55717. },
  55718. {
  55719. name: "Mega Macro",
  55720. height: math.unit(200, "feet")
  55721. },
  55722. ]
  55723. ))
  55724. characterMakers.push(() => makeCharacter(
  55725. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55726. {
  55727. back: {
  55728. height: math.unit(6, "feet"),
  55729. name: "Back",
  55730. image: {
  55731. source: "./media/characters/flare/back.svg",
  55732. extra: 1883/1765,
  55733. bottom: 32/1915
  55734. }
  55735. },
  55736. },
  55737. [
  55738. {
  55739. name: "Normal",
  55740. height: math.unit(6 + 2/12, "feet"),
  55741. default: true
  55742. },
  55743. {
  55744. name: "Size Difference",
  55745. height: math.unit(13, "feet")
  55746. },
  55747. {
  55748. name: "Macro",
  55749. height: math.unit(60, "feet")
  55750. },
  55751. {
  55752. name: "Macro 2",
  55753. height: math.unit(100, "feet")
  55754. },
  55755. {
  55756. name: "Mega Macro",
  55757. height: math.unit(200, "feet")
  55758. },
  55759. ]
  55760. ))
  55761. characterMakers.push(() => makeCharacter(
  55762. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55763. {
  55764. front: {
  55765. height: math.unit(2.2, "m"),
  55766. weight: math.unit(300, "kg"),
  55767. name: "Front",
  55768. image: {
  55769. source: "./media/characters/hanna/front.svg",
  55770. extra: 1696/1502,
  55771. bottom: 206/1902
  55772. }
  55773. },
  55774. },
  55775. [
  55776. {
  55777. name: "Humanoid",
  55778. height: math.unit(2.2, "meters")
  55779. },
  55780. {
  55781. name: "Normal",
  55782. height: math.unit(4.8, "meters"),
  55783. default: true
  55784. },
  55785. ]
  55786. ))
  55787. characterMakers.push(() => makeCharacter(
  55788. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55789. {
  55790. front: {
  55791. height: math.unit(2.8, "meters"),
  55792. name: "Front",
  55793. image: {
  55794. source: "./media/characters/argo/front.svg",
  55795. extra: 731/518,
  55796. bottom: 84/815
  55797. }
  55798. },
  55799. },
  55800. [
  55801. {
  55802. name: "Normal",
  55803. height: math.unit(3, "meters"),
  55804. default: true
  55805. },
  55806. ]
  55807. ))
  55808. characterMakers.push(() => makeCharacter(
  55809. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55810. {
  55811. side: {
  55812. height: math.unit(3.8, "meters"),
  55813. name: "Side",
  55814. image: {
  55815. source: "./media/characters/sybil/side.svg",
  55816. extra: 382/361,
  55817. bottom: 25/407
  55818. }
  55819. },
  55820. },
  55821. [
  55822. {
  55823. name: "Normal",
  55824. height: math.unit(3.8, "meters"),
  55825. default: true
  55826. },
  55827. ]
  55828. ))
  55829. characterMakers.push(() => makeCharacter(
  55830. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55831. {
  55832. side: {
  55833. height: math.unit(6, "meters"),
  55834. name: "Side",
  55835. image: {
  55836. source: "./media/characters/plum/side.svg",
  55837. extra: 858/755,
  55838. bottom: 45/903
  55839. },
  55840. form: "taur",
  55841. default: true
  55842. },
  55843. back: {
  55844. height: math.unit(6.3, "meters"),
  55845. name: "Back",
  55846. image: {
  55847. source: "./media/characters/plum/back.svg",
  55848. extra: 887/813,
  55849. bottom: 32/919
  55850. },
  55851. form: "taur",
  55852. },
  55853. feral: {
  55854. height: math.unit(5.5, "meter"),
  55855. name: "Front",
  55856. image: {
  55857. source: "./media/characters/plum/feral.svg",
  55858. extra: 568/403,
  55859. bottom: 51/619
  55860. },
  55861. form: "feral",
  55862. default: true
  55863. },
  55864. head: {
  55865. height: math.unit(1.46, "meter"),
  55866. name: "Head",
  55867. image: {
  55868. source: "./media/characters/plum/head.svg"
  55869. },
  55870. form: "taur"
  55871. },
  55872. tailTop: {
  55873. height: math.unit(5.6, "meter"),
  55874. name: "Tail (Top)",
  55875. image: {
  55876. source: "./media/characters/plum/tail-top.svg"
  55877. },
  55878. form: "taur",
  55879. },
  55880. tailBottom: {
  55881. height: math.unit(5.6, "meter"),
  55882. name: "Tail (Bottom)",
  55883. image: {
  55884. source: "./media/characters/plum/tail-bottom.svg"
  55885. },
  55886. form: "taur",
  55887. },
  55888. feralHead: {
  55889. height: math.unit(2.56549521, "meter"),
  55890. name: "Head",
  55891. image: {
  55892. source: "./media/characters/plum/head.svg"
  55893. },
  55894. form: "feral"
  55895. },
  55896. feralTailTop: {
  55897. height: math.unit(5.44728435, "meter"),
  55898. name: "Tail (Top)",
  55899. image: {
  55900. source: "./media/characters/plum/tail-top.svg"
  55901. },
  55902. form: "feral",
  55903. },
  55904. feralTailBottom: {
  55905. height: math.unit(5.44728435, "meter"),
  55906. name: "Tail (Bottom)",
  55907. image: {
  55908. source: "./media/characters/plum/tail-bottom.svg"
  55909. },
  55910. form: "feral",
  55911. },
  55912. },
  55913. [
  55914. {
  55915. name: "Normal",
  55916. height: math.unit(6, "meters"),
  55917. default: true,
  55918. form: "taur"
  55919. },
  55920. {
  55921. name: "Normal",
  55922. height: math.unit(5.5, "meters"),
  55923. default: true,
  55924. form: "feral"
  55925. },
  55926. ],
  55927. {
  55928. "taur": {
  55929. name: "Taur",
  55930. default: true
  55931. },
  55932. "feral": {
  55933. name: "Feral",
  55934. },
  55935. }
  55936. ))
  55937. characterMakers.push(() => makeCharacter(
  55938. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55939. {
  55940. front: {
  55941. height: math.unit(6, "feet"),
  55942. weight: math.unit(115, "lb"),
  55943. name: "Front",
  55944. image: {
  55945. source: "./media/characters/celeste-kitsune/front.svg",
  55946. extra: 393/366,
  55947. bottom: 7/400
  55948. }
  55949. },
  55950. side: {
  55951. height: math.unit(6, "feet"),
  55952. weight: math.unit(115, "lb"),
  55953. name: "Side",
  55954. image: {
  55955. source: "./media/characters/celeste-kitsune/side.svg",
  55956. extra: 818/765,
  55957. bottom: 40/858
  55958. }
  55959. },
  55960. },
  55961. [
  55962. {
  55963. name: "Megamacro",
  55964. height: math.unit(1500, "miles"),
  55965. default: true
  55966. },
  55967. ]
  55968. ))
  55969. characterMakers.push(() => makeCharacter(
  55970. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55971. {
  55972. front: {
  55973. height: math.unit(8, "meters"),
  55974. name: "Front",
  55975. image: {
  55976. source: "./media/characters/io/front.svg",
  55977. extra: 865/722,
  55978. bottom: 58/923
  55979. }
  55980. },
  55981. back: {
  55982. height: math.unit(8, "meters"),
  55983. name: "Back",
  55984. image: {
  55985. source: "./media/characters/io/back.svg",
  55986. extra: 920/776,
  55987. bottom: 42/962
  55988. }
  55989. },
  55990. head: {
  55991. height: math.unit(5.09, "meters"),
  55992. name: "Head",
  55993. image: {
  55994. source: "./media/characters/io/head.svg"
  55995. }
  55996. },
  55997. hand: {
  55998. height: math.unit(1.6, "meters"),
  55999. name: "Hand",
  56000. image: {
  56001. source: "./media/characters/io/hand.svg"
  56002. }
  56003. },
  56004. foot: {
  56005. height: math.unit(2.4, "meters"),
  56006. name: "Foot",
  56007. image: {
  56008. source: "./media/characters/io/foot.svg"
  56009. }
  56010. },
  56011. },
  56012. [
  56013. {
  56014. name: "Normal",
  56015. height: math.unit(8, "meters"),
  56016. default: true
  56017. },
  56018. ]
  56019. ))
  56020. characterMakers.push(() => makeCharacter(
  56021. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  56022. {
  56023. side: {
  56024. height: math.unit(6 + 3/12, "feet"),
  56025. weight: math.unit(225, "lb"),
  56026. name: "Side",
  56027. image: {
  56028. source: "./media/characters/silas/side.svg",
  56029. extra: 703/653,
  56030. bottom: 23/726
  56031. },
  56032. extraAttributes: {
  56033. "pawLength": {
  56034. name: "Paw Length",
  56035. power: 1,
  56036. type: "length",
  56037. base: math.unit(12, "inches")
  56038. },
  56039. "pawWidth": {
  56040. name: "Paw Width",
  56041. power: 1,
  56042. type: "length",
  56043. base: math.unit(4.5, "inches")
  56044. },
  56045. "pawArea": {
  56046. name: "Paw Area",
  56047. power: 2,
  56048. type: "area",
  56049. base: math.unit(12 * 4.5, "inches^2")
  56050. },
  56051. }
  56052. },
  56053. },
  56054. [
  56055. {
  56056. name: "Normal",
  56057. height: math.unit(6 + 3/12, "feet"),
  56058. default: true
  56059. },
  56060. ]
  56061. ))
  56062. characterMakers.push(() => makeCharacter(
  56063. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56064. {
  56065. back: {
  56066. height: math.unit(1.6, "meters"),
  56067. weight: math.unit(150, "lb"),
  56068. name: "Back",
  56069. image: {
  56070. source: "./media/characters/zari/back.svg",
  56071. extra: 424/411,
  56072. bottom: 32/456
  56073. },
  56074. extraAttributes: {
  56075. "bladderCapacity": {
  56076. name: "Bladder Size",
  56077. power: 3,
  56078. type: "volume",
  56079. base: math.unit(500, "mL")
  56080. },
  56081. "bladderFlow": {
  56082. name: "Flow Rate",
  56083. power: 3,
  56084. type: "volume",
  56085. base: math.unit(25, "mL")
  56086. },
  56087. }
  56088. },
  56089. },
  56090. [
  56091. {
  56092. name: "Normal",
  56093. height: math.unit(1.6, "meters"),
  56094. default: true
  56095. },
  56096. ]
  56097. ))
  56098. characterMakers.push(() => makeCharacter(
  56099. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56100. {
  56101. front: {
  56102. height: math.unit(25, "feet"),
  56103. weight: math.unit(5, "tons"),
  56104. name: "Front",
  56105. image: {
  56106. source: "./media/characters/charlie-human/front.svg",
  56107. extra: 1870/1740,
  56108. bottom: 102/1972
  56109. },
  56110. extraAttributes: {
  56111. "dickLength": {
  56112. name: "Dick Length",
  56113. power: 1,
  56114. type: "length",
  56115. base: math.unit(9, "feet")
  56116. },
  56117. }
  56118. },
  56119. back: {
  56120. height: math.unit(25, "feet"),
  56121. weight: math.unit(5, "tons"),
  56122. name: "Back",
  56123. image: {
  56124. source: "./media/characters/charlie-human/back.svg",
  56125. extra: 1858/1733,
  56126. bottom: 105/1963
  56127. },
  56128. extraAttributes: {
  56129. "dickLength": {
  56130. name: "Dick Length",
  56131. power: 1,
  56132. type: "length",
  56133. base: math.unit(9, "feet")
  56134. },
  56135. }
  56136. },
  56137. },
  56138. [
  56139. {
  56140. name: "\"Normal\"",
  56141. height: math.unit(6 + 4/12, "feet")
  56142. },
  56143. {
  56144. name: "Big",
  56145. height: math.unit(25, "feet"),
  56146. default: true
  56147. },
  56148. ]
  56149. ))
  56150. characterMakers.push(() => makeCharacter(
  56151. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56152. {
  56153. front: {
  56154. height: math.unit(6 + 4/12, "feet"),
  56155. weight: math.unit(320, "lb"),
  56156. name: "Front",
  56157. image: {
  56158. source: "./media/characters/ookitsu/front.svg",
  56159. extra: 1160/976,
  56160. bottom: 38/1198
  56161. }
  56162. },
  56163. frontNsfw: {
  56164. height: math.unit(6 + 4/12, "feet"),
  56165. weight: math.unit(320, "lb"),
  56166. name: "Front (NSFW)",
  56167. image: {
  56168. source: "./media/characters/ookitsu/front-nsfw.svg",
  56169. extra: 1160/976,
  56170. bottom: 38/1198
  56171. }
  56172. },
  56173. back: {
  56174. height: math.unit(6 + 4/12, "feet"),
  56175. weight: math.unit(320, "lb"),
  56176. name: "Back",
  56177. image: {
  56178. source: "./media/characters/ookitsu/back.svg",
  56179. extra: 1030/975,
  56180. bottom: 70/1100
  56181. }
  56182. },
  56183. head: {
  56184. height: math.unit(1.79, "feet"),
  56185. name: "Head",
  56186. image: {
  56187. source: "./media/characters/ookitsu/head.svg"
  56188. }
  56189. },
  56190. hand: {
  56191. height: math.unit(0.92, "feet"),
  56192. name: "Hand",
  56193. image: {
  56194. source: "./media/characters/ookitsu/hand.svg"
  56195. }
  56196. },
  56197. tails: {
  56198. height: math.unit(3.3, "feet"),
  56199. name: "Tails",
  56200. image: {
  56201. source: "./media/characters/ookitsu/tails.svg"
  56202. }
  56203. },
  56204. dick: {
  56205. height: math.unit(1.10833, "feet"),
  56206. name: "Dick",
  56207. image: {
  56208. source: "./media/characters/ookitsu/dick.svg"
  56209. }
  56210. },
  56211. },
  56212. [
  56213. {
  56214. name: "Normal",
  56215. height: math.unit(6 + 4/12, "feet"),
  56216. default: true
  56217. },
  56218. {
  56219. name: "Macro",
  56220. height: math.unit(30, "feet")
  56221. },
  56222. ]
  56223. ))
  56224. characterMakers.push(() => makeCharacter(
  56225. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56226. {
  56227. anthroFront: {
  56228. height: math.unit(6, "feet"),
  56229. weight: math.unit(250, "lb"),
  56230. name: "Front",
  56231. image: {
  56232. source: "./media/characters/jhusky/anthro-front.svg",
  56233. extra: 474/439,
  56234. bottom: 7/481
  56235. },
  56236. form: "anthro",
  56237. default: true
  56238. },
  56239. taurSideSfw: {
  56240. height: math.unit(6 + 4/12, "feet"),
  56241. weight: math.unit(500, "lb"),
  56242. name: "Side (SFW)",
  56243. image: {
  56244. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56245. extra: 1741/1629,
  56246. bottom: 196/1937
  56247. },
  56248. form: "taur",
  56249. default: true
  56250. },
  56251. taurSideNsfw: {
  56252. height: math.unit(6 + 4/12, "feet"),
  56253. weight: math.unit(500, "lb"),
  56254. name: "Taur (NSFW)",
  56255. image: {
  56256. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56257. extra: 1741/1629,
  56258. bottom: 196/1937
  56259. },
  56260. form: "taur",
  56261. },
  56262. },
  56263. [
  56264. {
  56265. name: "Huge",
  56266. height: math.unit(500, "feet"),
  56267. form: "anthro"
  56268. },
  56269. {
  56270. name: "Macro",
  56271. height: math.unit(1000, "feet"),
  56272. default: true,
  56273. form: "anthro"
  56274. },
  56275. {
  56276. name: "Megamacro",
  56277. height: math.unit(10000, "feet"),
  56278. form: "anthro"
  56279. },
  56280. {
  56281. name: "Huge",
  56282. height: math.unit(528, "feet"),
  56283. form: "taur"
  56284. },
  56285. {
  56286. name: "Macro",
  56287. height: math.unit(1056, "feet"),
  56288. default: true,
  56289. form: "taur"
  56290. },
  56291. {
  56292. name: "Megamacro",
  56293. height: math.unit(10556, "feet"),
  56294. form: "taur"
  56295. },
  56296. ],
  56297. {
  56298. "anthro": {
  56299. name: "Anthro",
  56300. default: true
  56301. },
  56302. "taur": {
  56303. name: "Taur",
  56304. },
  56305. }
  56306. ))
  56307. characterMakers.push(() => makeCharacter(
  56308. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56309. {
  56310. front: {
  56311. height: math.unit(8, "feet"),
  56312. weight: math.unit(500, "lb"),
  56313. name: "Front",
  56314. image: {
  56315. source: "./media/characters/armail/front.svg",
  56316. extra: 1753/1669,
  56317. bottom: 155/1908
  56318. }
  56319. },
  56320. back: {
  56321. height: math.unit(8, "feet"),
  56322. weight: math.unit(500, "lb"),
  56323. name: "Back",
  56324. image: {
  56325. source: "./media/characters/armail/back.svg",
  56326. extra: 1872/1803,
  56327. bottom: 63/1935
  56328. }
  56329. },
  56330. },
  56331. [
  56332. {
  56333. name: "Micro",
  56334. height: math.unit(0.25, "feet")
  56335. },
  56336. {
  56337. name: "Normal",
  56338. height: math.unit(8, "feet"),
  56339. default: true
  56340. },
  56341. {
  56342. name: "Mini-macro",
  56343. height: math.unit(30, "feet")
  56344. },
  56345. {
  56346. name: "Macro",
  56347. height: math.unit(400, "feet")
  56348. },
  56349. {
  56350. name: "Mega-macro",
  56351. height: math.unit(6000, "feet")
  56352. },
  56353. ]
  56354. ))
  56355. characterMakers.push(() => makeCharacter(
  56356. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56357. {
  56358. front: {
  56359. height: math.unit(6 + 7/12, "feet"),
  56360. weight: math.unit(210, "lb"),
  56361. name: "Front",
  56362. image: {
  56363. source: "./media/characters/wilfred-t-buxton/front.svg",
  56364. extra: 1068/882,
  56365. bottom: 28/1096
  56366. }
  56367. },
  56368. },
  56369. [
  56370. {
  56371. name: "Normal",
  56372. height: math.unit(6 + 7/12, "feet"),
  56373. default: true
  56374. },
  56375. ]
  56376. ))
  56377. characterMakers.push(() => makeCharacter(
  56378. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56379. {
  56380. front: {
  56381. height: math.unit(5 + 2/12, "feet"),
  56382. weight: math.unit(120, "lb"),
  56383. name: "Front",
  56384. image: {
  56385. source: "./media/characters/leighton-marrow/front.svg",
  56386. extra: 441/409,
  56387. bottom: 37/478
  56388. }
  56389. },
  56390. },
  56391. [
  56392. {
  56393. name: "Normal",
  56394. height: math.unit(5 + 2/12, "feet"),
  56395. default: true
  56396. },
  56397. ]
  56398. ))
  56399. characterMakers.push(() => makeCharacter(
  56400. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56401. {
  56402. front: {
  56403. height: math.unit(4, "meters"),
  56404. weight: math.unit(1200, "kg"),
  56405. name: "Front",
  56406. image: {
  56407. source: "./media/characters/licos/front.svg",
  56408. extra: 1727/1604,
  56409. bottom: 101/1828
  56410. },
  56411. form: "anthro",
  56412. default: true
  56413. },
  56414. taur_side: {
  56415. height: math.unit(20, "meters"),
  56416. weight: math.unit(1100000, "kg"),
  56417. name: "Side",
  56418. image: {
  56419. source: "./media/characters/licos/taur.svg",
  56420. extra: 1158/1091,
  56421. bottom: 80/1238
  56422. },
  56423. form: "taur",
  56424. default: true
  56425. },
  56426. },
  56427. [
  56428. {
  56429. name: "Normal",
  56430. height: math.unit(4, "meters"),
  56431. default: true,
  56432. form: "anthro"
  56433. },
  56434. {
  56435. name: "Normal",
  56436. height: math.unit(20, "meters"),
  56437. default: true,
  56438. form: "taur"
  56439. },
  56440. ],
  56441. {
  56442. "anthro": {
  56443. name: "Anthro",
  56444. default: true
  56445. },
  56446. "taur": {
  56447. name: "Taur",
  56448. },
  56449. }
  56450. ))
  56451. characterMakers.push(() => makeCharacter(
  56452. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56453. {
  56454. front: {
  56455. height: math.unit(10 + 3/12, "feet"),
  56456. name: "Front",
  56457. image: {
  56458. source: "./media/characters/theo-monkey/front.svg",
  56459. extra: 1735/1658,
  56460. bottom: 73/1808
  56461. }
  56462. },
  56463. back: {
  56464. height: math.unit(10 + 3/12, "feet"),
  56465. name: "Back",
  56466. image: {
  56467. source: "./media/characters/theo-monkey/back.svg",
  56468. extra: 1742/1664,
  56469. bottom: 33/1775
  56470. }
  56471. },
  56472. head: {
  56473. height: math.unit(2.29, "feet"),
  56474. name: "Head",
  56475. image: {
  56476. source: "./media/characters/theo-monkey/head.svg"
  56477. }
  56478. },
  56479. handPalm: {
  56480. height: math.unit(1.73, "feet"),
  56481. name: "Hand (Palm)",
  56482. image: {
  56483. source: "./media/characters/theo-monkey/hand-palm.svg"
  56484. }
  56485. },
  56486. handBack: {
  56487. height: math.unit(1.63, "feet"),
  56488. name: "Hand (Back)",
  56489. image: {
  56490. source: "./media/characters/theo-monkey/hand-back.svg"
  56491. }
  56492. },
  56493. footSole: {
  56494. height: math.unit(2.15, "feet"),
  56495. name: "Foot (Sole)",
  56496. image: {
  56497. source: "./media/characters/theo-monkey/foot-sole.svg"
  56498. }
  56499. },
  56500. footSide: {
  56501. height: math.unit(1.6, "feet"),
  56502. name: "Foot (Side)",
  56503. image: {
  56504. source: "./media/characters/theo-monkey/foot-side.svg"
  56505. }
  56506. },
  56507. },
  56508. [
  56509. {
  56510. name: "Normal",
  56511. height: math.unit(10 + 3/12, "feet"),
  56512. default: true
  56513. },
  56514. ]
  56515. ))
  56516. characterMakers.push(() => makeCharacter(
  56517. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56518. {
  56519. front: {
  56520. height: math.unit(11, "feet"),
  56521. weight: math.unit(3000, "lb"),
  56522. preyCapacity: math.unit(10, "people"),
  56523. name: "Front",
  56524. image: {
  56525. source: "./media/characters/brook/front.svg",
  56526. extra: 909/835,
  56527. bottom: 108/1017
  56528. }
  56529. },
  56530. back: {
  56531. height: math.unit(11, "feet"),
  56532. weight: math.unit(3000, "lb"),
  56533. preyCapacity: math.unit(10, "people"),
  56534. name: "Back",
  56535. image: {
  56536. source: "./media/characters/brook/back.svg",
  56537. extra: 976/916,
  56538. bottom: 34/1010
  56539. }
  56540. },
  56541. backAlt: {
  56542. height: math.unit(11, "feet"),
  56543. weight: math.unit(3000, "lb"),
  56544. preyCapacity: math.unit(10, "people"),
  56545. name: "Back (Alt)",
  56546. image: {
  56547. source: "./media/characters/brook/back-alt.svg",
  56548. extra: 1283/1213,
  56549. bottom: 35/1318
  56550. }
  56551. },
  56552. bust: {
  56553. height: math.unit(9.0859030837, "feet"),
  56554. weight: math.unit(3000, "lb"),
  56555. preyCapacity: math.unit(10, "people"),
  56556. name: "Bust",
  56557. image: {
  56558. source: "./media/characters/brook/bust.svg",
  56559. extra: 2043/1923,
  56560. bottom: 0/2043
  56561. }
  56562. },
  56563. },
  56564. [
  56565. {
  56566. name: "Small",
  56567. height: math.unit(11, "feet"),
  56568. default: true
  56569. },
  56570. {
  56571. name: "Towering",
  56572. height: math.unit(5, "km")
  56573. },
  56574. {
  56575. name: "Enormous",
  56576. height: math.unit(25, "earths")
  56577. },
  56578. ]
  56579. ))
  56580. characterMakers.push(() => makeCharacter(
  56581. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56582. {
  56583. front: {
  56584. height: math.unit(4, "feet"),
  56585. weight: math.unit(150, "lb"),
  56586. name: "Front",
  56587. image: {
  56588. source: "./media/characters/squishi/front.svg",
  56589. extra: 1428/1271,
  56590. bottom: 30/1458
  56591. },
  56592. extraAttributes: {
  56593. "pawSize": {
  56594. name: "Paw Size",
  56595. power: 1,
  56596. type: "length",
  56597. base: math.unit(14, "ShoeSizeMensUS"),
  56598. defaultUnit: "ShoeSizeMensUS"
  56599. },
  56600. }
  56601. },
  56602. side: {
  56603. height: math.unit(4, "feet"),
  56604. weight: math.unit(150, "lb"),
  56605. name: "Side",
  56606. image: {
  56607. source: "./media/characters/squishi/side.svg",
  56608. extra: 1428/1271,
  56609. bottom: 30/1458
  56610. },
  56611. extraAttributes: {
  56612. "pawSize": {
  56613. name: "Paw Size",
  56614. power: 1,
  56615. type: "length",
  56616. base: math.unit(14, "ShoeSizeMensUS"),
  56617. defaultUnit: "ShoeSizeMensUS"
  56618. },
  56619. }
  56620. },
  56621. back: {
  56622. height: math.unit(4, "feet"),
  56623. weight: math.unit(150, "lb"),
  56624. name: "Back",
  56625. image: {
  56626. source: "./media/characters/squishi/back.svg",
  56627. extra: 1428/1271,
  56628. bottom: 30/1458
  56629. },
  56630. extraAttributes: {
  56631. "pawSize": {
  56632. name: "Paw Size",
  56633. power: 1,
  56634. type: "length",
  56635. base: math.unit(14, "ShoeSizeMensUS"),
  56636. defaultUnit: "ShoeSizeMensUS"
  56637. },
  56638. }
  56639. },
  56640. },
  56641. [
  56642. {
  56643. name: "Normal",
  56644. height: math.unit(4, "feet"),
  56645. default: true
  56646. },
  56647. ]
  56648. ))
  56649. characterMakers.push(() => makeCharacter(
  56650. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56651. {
  56652. front: {
  56653. height: math.unit(7 + 8/12, "feet"),
  56654. weight: math.unit(333, "lb"),
  56655. name: "Front",
  56656. image: {
  56657. source: "./media/characters/vincent-vasroc/front.svg",
  56658. extra: 1962/1860,
  56659. bottom: 41/2003
  56660. }
  56661. },
  56662. back: {
  56663. height: math.unit(7 + 8/12, "feet"),
  56664. weight: math.unit(333, "lb"),
  56665. name: "Back",
  56666. image: {
  56667. source: "./media/characters/vincent-vasroc/back.svg",
  56668. extra: 1952/1815,
  56669. bottom: 33/1985
  56670. }
  56671. },
  56672. paw: {
  56673. height: math.unit(1.24, "feet"),
  56674. name: "Paw",
  56675. image: {
  56676. source: "./media/characters/vincent-vasroc/paw.svg"
  56677. }
  56678. },
  56679. ear: {
  56680. height: math.unit(0.75, "feet"),
  56681. name: "Ear",
  56682. image: {
  56683. source: "./media/characters/vincent-vasroc/ear.svg"
  56684. }
  56685. },
  56686. },
  56687. [
  56688. {
  56689. name: "Nano",
  56690. height: math.unit(92, "micrometers")
  56691. },
  56692. {
  56693. name: "Normal",
  56694. height: math.unit(7 + 8/12, "feet"),
  56695. default: true
  56696. },
  56697. ]
  56698. ))
  56699. characterMakers.push(() => makeCharacter(
  56700. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56701. {
  56702. frontNsfw: {
  56703. height: math.unit(40, "feet"),
  56704. weight: math.unit(58, "tons"),
  56705. name: "Front (NSFW)",
  56706. image: {
  56707. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56708. extra: 1265/965,
  56709. bottom: 155/1420
  56710. }
  56711. },
  56712. frontSfw: {
  56713. height: math.unit(40, "feet"),
  56714. weight: math.unit(58, "tons"),
  56715. name: "Front (SFW)",
  56716. image: {
  56717. source: "./media/characters/ru-kahn/front-sfw.svg",
  56718. extra: 1265/965,
  56719. bottom: 80/1345
  56720. }
  56721. },
  56722. },
  56723. [
  56724. {
  56725. name: "Small",
  56726. height: math.unit(4, "feet")
  56727. },
  56728. {
  56729. name: "Normal",
  56730. height: math.unit(40, "feet"),
  56731. default: true
  56732. },
  56733. {
  56734. name: "Macro",
  56735. height: math.unit(400, "feet")
  56736. },
  56737. ]
  56738. ))
  56739. characterMakers.push(() => makeCharacter(
  56740. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56741. {
  56742. frontNude: {
  56743. height: math.unit(6 + 5/12, "feet"),
  56744. name: "Front (Nude)",
  56745. image: {
  56746. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56747. extra: 1369/1366,
  56748. bottom: 68/1437
  56749. }
  56750. },
  56751. frontDressed: {
  56752. height: math.unit(6 + 5/12, "feet"),
  56753. name: "Front (Dressed)",
  56754. image: {
  56755. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56756. extra: 1369/1366,
  56757. bottom: 68/1437
  56758. }
  56759. },
  56760. },
  56761. [
  56762. {
  56763. name: "Normal",
  56764. height: math.unit(6 + 5/12, "feet"),
  56765. default: true
  56766. },
  56767. {
  56768. name: "Maximum",
  56769. height: math.unit(1930, "feet")
  56770. },
  56771. ]
  56772. ))
  56773. characterMakers.push(() => makeCharacter(
  56774. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56775. {
  56776. front: {
  56777. height: math.unit(5 + 6/12, "feet"),
  56778. name: "Front",
  56779. image: {
  56780. source: "./media/characters/kaja/front.svg",
  56781. extra: 1874/1514,
  56782. bottom: 117/1991
  56783. }
  56784. },
  56785. },
  56786. [
  56787. {
  56788. name: "Normal",
  56789. height: math.unit(5 + 6/12, "feet"),
  56790. default: true
  56791. },
  56792. ]
  56793. ))
  56794. characterMakers.push(() => makeCharacter(
  56795. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56796. {
  56797. front: {
  56798. height: math.unit(5 + 9/12, "feet"),
  56799. weight: math.unit(200, "lb"),
  56800. name: "Front",
  56801. image: {
  56802. source: "./media/characters/mark-smith/front.svg",
  56803. extra: 1004/943,
  56804. bottom: 58/1062
  56805. }
  56806. },
  56807. back: {
  56808. height: math.unit(5 + 9/12, "feet"),
  56809. weight: math.unit(200, "lb"),
  56810. name: "Back",
  56811. image: {
  56812. source: "./media/characters/mark-smith/back.svg",
  56813. extra: 1023/953,
  56814. bottom: 24/1047
  56815. }
  56816. },
  56817. head: {
  56818. height: math.unit(1.82, "feet"),
  56819. name: "Head",
  56820. image: {
  56821. source: "./media/characters/mark-smith/head.svg"
  56822. }
  56823. },
  56824. hand: {
  56825. height: math.unit(1.4, "feet"),
  56826. name: "Hand",
  56827. image: {
  56828. source: "./media/characters/mark-smith/hand.svg"
  56829. }
  56830. },
  56831. paw: {
  56832. height: math.unit(1.69, "feet"),
  56833. name: "Paw",
  56834. image: {
  56835. source: "./media/characters/mark-smith/paw.svg"
  56836. }
  56837. },
  56838. },
  56839. [
  56840. {
  56841. name: "Micro",
  56842. height: math.unit(0.25, "inches")
  56843. },
  56844. {
  56845. name: "Normal",
  56846. height: math.unit(5 + 9/12, "feet"),
  56847. default: true
  56848. },
  56849. {
  56850. name: "Macro",
  56851. height: math.unit(500, "feet")
  56852. },
  56853. ]
  56854. ))
  56855. characterMakers.push(() => makeCharacter(
  56856. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56857. {
  56858. frontNude: {
  56859. height: math.unit(6, "feet"),
  56860. name: "Front (Nude)",
  56861. image: {
  56862. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56863. extra: 1384/1321,
  56864. bottom: 57/1441
  56865. }
  56866. },
  56867. frontDressed: {
  56868. height: math.unit(6, "feet"),
  56869. name: "Front (Dressed)",
  56870. image: {
  56871. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56872. extra: 1384/1321,
  56873. bottom: 57/1441
  56874. }
  56875. },
  56876. },
  56877. [
  56878. {
  56879. name: "Normal",
  56880. height: math.unit(6, "feet"),
  56881. default: true
  56882. },
  56883. {
  56884. name: "Maximum",
  56885. height: math.unit(1776, "feet")
  56886. },
  56887. ]
  56888. ))
  56889. characterMakers.push(() => makeCharacter(
  56890. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56891. {
  56892. front: {
  56893. height: math.unit(2 + 4/12, "feet"),
  56894. weight: math.unit(350, "lb"),
  56895. name: "Front",
  56896. image: {
  56897. source: "./media/characters/devos/front.svg",
  56898. extra: 958/852,
  56899. bottom: 143/1101
  56900. }
  56901. },
  56902. },
  56903. [
  56904. {
  56905. name: "Base",
  56906. height: math.unit(2 + 4/12, "feet"),
  56907. default: true
  56908. },
  56909. ]
  56910. ))
  56911. characterMakers.push(() => makeCharacter(
  56912. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56913. {
  56914. front: {
  56915. height: math.unit(9 + 2/12, "feet"),
  56916. name: "Front",
  56917. image: {
  56918. source: "./media/characters/hiveheart/front.svg",
  56919. extra: 394/364,
  56920. bottom: 65/459
  56921. }
  56922. },
  56923. back: {
  56924. height: math.unit(9 + 2/12, "feet"),
  56925. name: "Back",
  56926. image: {
  56927. source: "./media/characters/hiveheart/back.svg",
  56928. extra: 374/357,
  56929. bottom: 63/437
  56930. }
  56931. },
  56932. },
  56933. [
  56934. {
  56935. name: "Base",
  56936. height: math.unit(9 + 2/12, "feet"),
  56937. default: true
  56938. },
  56939. ]
  56940. ))
  56941. characterMakers.push(() => makeCharacter(
  56942. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56943. {
  56944. front: {
  56945. height: math.unit(2.5, "inches"),
  56946. weight: math.unit(0.6, "oz"),
  56947. name: "Front",
  56948. image: {
  56949. source: "./media/characters/bryn/front.svg",
  56950. extra: 1484/1119,
  56951. bottom: 66/1550
  56952. }
  56953. },
  56954. back: {
  56955. height: math.unit(2.5, "inches"),
  56956. weight: math.unit(0.6, "oz"),
  56957. name: "Back",
  56958. image: {
  56959. source: "./media/characters/bryn/back.svg",
  56960. extra: 1472/1170,
  56961. bottom: 32/1504
  56962. }
  56963. },
  56964. wings: {
  56965. height: math.unit(2.5, "inches"),
  56966. weight: math.unit(0.6, "oz"),
  56967. name: "Wings",
  56968. image: {
  56969. source: "./media/characters/bryn/wings.svg",
  56970. extra: 567/448,
  56971. bottom: 10/577
  56972. }
  56973. },
  56974. dressed: {
  56975. height: math.unit(2.5, "inches"),
  56976. weight: math.unit(0.6, "oz"),
  56977. name: "Dressed",
  56978. image: {
  56979. source: "./media/characters/bryn/dressed.svg",
  56980. extra: 719/589,
  56981. bottom: 54/773
  56982. }
  56983. },
  56984. head: {
  56985. height: math.unit(1.75, "inches"),
  56986. name: "Head",
  56987. image: {
  56988. source: "./media/characters/bryn/head.svg"
  56989. }
  56990. },
  56991. foot: {
  56992. height: math.unit(0.4, "inches"),
  56993. name: "Foot",
  56994. image: {
  56995. source: "./media/characters/bryn/foot.svg"
  56996. }
  56997. },
  56998. },
  56999. [
  57000. {
  57001. name: "Normal",
  57002. height: math.unit(2.5, "inches"),
  57003. default: true
  57004. },
  57005. ]
  57006. ))
  57007. characterMakers.push(() => makeCharacter(
  57008. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  57009. {
  57010. side: {
  57011. height: math.unit(7, "feet"),
  57012. weight: math.unit(657, "kg"),
  57013. name: "Side",
  57014. image: {
  57015. source: "./media/characters/delta/side.svg",
  57016. extra: 781/212,
  57017. bottom: 7/788
  57018. },
  57019. extraAttributes: {
  57020. "wingspan": {
  57021. name: "Wingspan",
  57022. power: 1,
  57023. type: "length",
  57024. base: math.unit(48, "feet")
  57025. },
  57026. "length": {
  57027. name: "Length",
  57028. power: 1,
  57029. type: "length",
  57030. base: math.unit(21, "feet")
  57031. },
  57032. "pawSize": {
  57033. name: "Paw Size",
  57034. power: 2,
  57035. type: "area",
  57036. base: math.unit(1.5*1.4, "feet^2")
  57037. },
  57038. }
  57039. },
  57040. },
  57041. [
  57042. {
  57043. name: "Normal",
  57044. height: math.unit(6, "feet"),
  57045. default: true
  57046. },
  57047. ]
  57048. ))
  57049. characterMakers.push(() => makeCharacter(
  57050. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  57051. {
  57052. front: {
  57053. height: math.unit(6, "feet"),
  57054. name: "Front",
  57055. image: {
  57056. source: "./media/characters/pyrow/front.svg",
  57057. extra: 513/486,
  57058. bottom: 14/527
  57059. }
  57060. },
  57061. frontWing: {
  57062. height: math.unit(6, "feet"),
  57063. name: "Front (Wing)",
  57064. image: {
  57065. source: "./media/characters/pyrow/front-wing.svg",
  57066. extra: 539/383,
  57067. bottom: 20/559
  57068. }
  57069. },
  57070. back: {
  57071. height: math.unit(6, "feet"),
  57072. name: "Back",
  57073. image: {
  57074. source: "./media/characters/pyrow/back.svg",
  57075. extra: 500/473,
  57076. bottom: 9/509
  57077. }
  57078. },
  57079. },
  57080. [
  57081. {
  57082. name: "Normal",
  57083. height: math.unit(6, "feet"),
  57084. default: true
  57085. },
  57086. ]
  57087. ))
  57088. characterMakers.push(() => makeCharacter(
  57089. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57090. {
  57091. front: {
  57092. height: math.unit(5, "meters"),
  57093. weight: math.unit(3, "tonnes"),
  57094. name: "Front",
  57095. image: {
  57096. source: "./media/characters/velikan/front.svg",
  57097. extra: 867/744,
  57098. bottom: 71/938
  57099. },
  57100. extraAttributes: {
  57101. "shoeSize": {
  57102. name: "Shoe Size",
  57103. power: 1,
  57104. type: "length",
  57105. base: math.unit(135, "ShoeSizeUK"),
  57106. defaultUnit: "ShoeSizeUK"
  57107. },
  57108. }
  57109. },
  57110. },
  57111. [
  57112. {
  57113. name: "Normal",
  57114. height: math.unit(5, "meters"),
  57115. default: true
  57116. },
  57117. {
  57118. name: "Macro",
  57119. height: math.unit(1, "km")
  57120. },
  57121. {
  57122. name: "Mega Macro",
  57123. height: math.unit(100, "km")
  57124. },
  57125. {
  57126. name: "Giga Macro",
  57127. height: math.unit(2, "megameters")
  57128. },
  57129. {
  57130. name: "Planetary",
  57131. height: math.unit(22, "megameters")
  57132. },
  57133. {
  57134. name: "Solar",
  57135. height: math.unit(8, "gigameters")
  57136. },
  57137. {
  57138. name: "Cosmic",
  57139. height: math.unit(10, "zettameters")
  57140. },
  57141. {
  57142. name: "Omni",
  57143. height: math.unit(9e260, "multiverses")
  57144. },
  57145. ]
  57146. ))
  57147. characterMakers.push(() => makeCharacter(
  57148. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57149. {
  57150. front: {
  57151. height: math.unit(4 + 3/12, "feet"),
  57152. weight: math.unit(90, "lb"),
  57153. name: "Front",
  57154. image: {
  57155. source: "./media/characters/sabiki/front.svg",
  57156. extra: 1662/1423,
  57157. bottom: 65/1727
  57158. }
  57159. },
  57160. },
  57161. [
  57162. {
  57163. name: "Normal",
  57164. height: math.unit(4 + 3/12, "feet"),
  57165. default: true
  57166. },
  57167. ]
  57168. ))
  57169. characterMakers.push(() => makeCharacter(
  57170. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57171. {
  57172. frontSfw: {
  57173. height: math.unit(2, "mm"),
  57174. name: "Front (SFW)",
  57175. image: {
  57176. source: "./media/characters/carmel/front-sfw.svg",
  57177. extra: 1131/1006,
  57178. bottom: 66/1197
  57179. }
  57180. },
  57181. frontNsfw: {
  57182. height: math.unit(2, "mm"),
  57183. name: "Front (NSFW)",
  57184. image: {
  57185. source: "./media/characters/carmel/front-nsfw.svg",
  57186. extra: 1131/1006,
  57187. bottom: 66/1197
  57188. }
  57189. },
  57190. foot: {
  57191. height: math.unit(0.3, "mm"),
  57192. name: "Foot",
  57193. image: {
  57194. source: "./media/characters/carmel/foot.svg"
  57195. }
  57196. },
  57197. tongue: {
  57198. height: math.unit(0.71, "mm"),
  57199. name: "Tongue",
  57200. image: {
  57201. source: "./media/characters/carmel/tongue.svg"
  57202. }
  57203. },
  57204. dick: {
  57205. height: math.unit(0.085, "mm"),
  57206. name: "Dick",
  57207. image: {
  57208. source: "./media/characters/carmel/dick.svg"
  57209. }
  57210. },
  57211. },
  57212. [
  57213. {
  57214. name: "Micro",
  57215. height: math.unit(2, "mm"),
  57216. default: true
  57217. },
  57218. {
  57219. name: "Normal",
  57220. height: math.unit(4 + 8/12, "feet")
  57221. },
  57222. {
  57223. name: "Mega Macro",
  57224. height: math.unit(250, "feet")
  57225. },
  57226. {
  57227. name: "BIGGER",
  57228. height: math.unit(1000, "feet")
  57229. },
  57230. {
  57231. name: "BIGGEST",
  57232. height: math.unit(2, "miles")
  57233. },
  57234. ]
  57235. ))
  57236. characterMakers.push(() => makeCharacter(
  57237. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57238. {
  57239. front: {
  57240. height: math.unit(6.5, "feet"),
  57241. weight: math.unit(198, "lb"),
  57242. name: "Front",
  57243. image: {
  57244. source: "./media/characters/tamani/anthro.svg",
  57245. extra: 930/890,
  57246. bottom: 34/964
  57247. },
  57248. form: "anthro",
  57249. default: true
  57250. },
  57251. side: {
  57252. height: math.unit(6, "feet"),
  57253. weight: math.unit(198*2, "lb"),
  57254. name: "Side",
  57255. image: {
  57256. source: "./media/characters/tamani/feral.svg",
  57257. extra: 559/519,
  57258. bottom: 43/602
  57259. },
  57260. form: "feral"
  57261. },
  57262. },
  57263. [
  57264. {
  57265. name: "Normal",
  57266. height: math.unit(6.5, "feet"),
  57267. default: true,
  57268. form: "anthro"
  57269. },
  57270. {
  57271. name: "Normal",
  57272. height: math.unit(6, "feet"),
  57273. default: true,
  57274. form: "feral"
  57275. },
  57276. ],
  57277. {
  57278. "anthro": {
  57279. name: "Anthro",
  57280. default: true
  57281. },
  57282. "feral": {
  57283. name: "Feral",
  57284. },
  57285. }
  57286. ))
  57287. characterMakers.push(() => makeCharacter(
  57288. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57289. {
  57290. front: {
  57291. height: math.unit(4 + 1/12, "feet"),
  57292. weight: math.unit(114, "lb"),
  57293. name: "Front",
  57294. image: {
  57295. source: "./media/characters/dex/front.svg",
  57296. extra: 787/680,
  57297. bottom: 18/805
  57298. }
  57299. },
  57300. side: {
  57301. height: math.unit(4 + 1/12, "feet"),
  57302. weight: math.unit(114, "lb"),
  57303. name: "Side",
  57304. image: {
  57305. source: "./media/characters/dex/side.svg",
  57306. extra: 785/680,
  57307. bottom: 12/797
  57308. }
  57309. },
  57310. back: {
  57311. height: math.unit(4 + 1/12, "feet"),
  57312. weight: math.unit(114, "lb"),
  57313. name: "Back",
  57314. image: {
  57315. source: "./media/characters/dex/back.svg",
  57316. extra: 785/681,
  57317. bottom: 17/802
  57318. }
  57319. },
  57320. loungewear: {
  57321. height: math.unit(4 + 1/12, "feet"),
  57322. weight: math.unit(114, "lb"),
  57323. name: "Loungewear",
  57324. image: {
  57325. source: "./media/characters/dex/loungewear.svg",
  57326. extra: 787/680,
  57327. bottom: 18/805
  57328. }
  57329. },
  57330. workout: {
  57331. height: math.unit(4 + 1/12, "feet"),
  57332. weight: math.unit(114, "lb"),
  57333. name: "Workout",
  57334. image: {
  57335. source: "./media/characters/dex/workout.svg",
  57336. extra: 787/680,
  57337. bottom: 18/805
  57338. }
  57339. },
  57340. schoolUniform: {
  57341. height: math.unit(4 + 1/12, "feet"),
  57342. weight: math.unit(114, "lb"),
  57343. name: "School-uniform",
  57344. image: {
  57345. source: "./media/characters/dex/school-uniform.svg",
  57346. extra: 787/680,
  57347. bottom: 18/805
  57348. }
  57349. },
  57350. maw: {
  57351. height: math.unit(0.55, "feet"),
  57352. name: "Maw",
  57353. image: {
  57354. source: "./media/characters/dex/maw.svg"
  57355. }
  57356. },
  57357. paw: {
  57358. height: math.unit(0.87, "feet"),
  57359. name: "Paw",
  57360. image: {
  57361. source: "./media/characters/dex/paw.svg"
  57362. }
  57363. },
  57364. bust: {
  57365. height: math.unit(1.67, "feet"),
  57366. name: "Bust",
  57367. image: {
  57368. source: "./media/characters/dex/bust.svg"
  57369. }
  57370. },
  57371. },
  57372. [
  57373. {
  57374. name: "Normal",
  57375. height: math.unit(4 + 1/12, "feet"),
  57376. default: true
  57377. },
  57378. ]
  57379. ))
  57380. characterMakers.push(() => makeCharacter(
  57381. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57382. {
  57383. front: {
  57384. height: math.unit(4 + 3/12, "feet"),
  57385. weight: math.unit(60, "lb"),
  57386. name: "Front",
  57387. image: {
  57388. source: "./media/characters/silke/front.svg",
  57389. extra: 1334/1122,
  57390. bottom: 21/1355
  57391. }
  57392. },
  57393. back: {
  57394. height: math.unit(4 + 3/12, "feet"),
  57395. weight: math.unit(60, "lb"),
  57396. name: "Back",
  57397. image: {
  57398. source: "./media/characters/silke/back.svg",
  57399. extra: 1328/1092,
  57400. bottom: 16/1344
  57401. }
  57402. },
  57403. dressed: {
  57404. height: math.unit(4 + 3/12, "feet"),
  57405. weight: math.unit(60, "lb"),
  57406. name: "Dressed",
  57407. image: {
  57408. source: "./media/characters/silke/dressed.svg",
  57409. extra: 1334/1122,
  57410. bottom: 43/1377
  57411. }
  57412. },
  57413. },
  57414. [
  57415. {
  57416. name: "Normal",
  57417. height: math.unit(4 + 3/12, "feet"),
  57418. default: true
  57419. },
  57420. ]
  57421. ))
  57422. characterMakers.push(() => makeCharacter(
  57423. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57424. {
  57425. front: {
  57426. height: math.unit(1.58, "meters"),
  57427. weight: math.unit(47, "kg"),
  57428. name: "Front",
  57429. image: {
  57430. source: "./media/characters/wireshark/front.svg",
  57431. extra: 883/838,
  57432. bottom: 66/949
  57433. }
  57434. },
  57435. },
  57436. [
  57437. {
  57438. name: "Normal",
  57439. height: math.unit(1.58, "meters"),
  57440. default: true
  57441. },
  57442. ]
  57443. ))
  57444. characterMakers.push(() => makeCharacter(
  57445. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57446. {
  57447. front: {
  57448. height: math.unit(6, "meters"),
  57449. weight: math.unit(15000, "kg"),
  57450. name: "Front",
  57451. image: {
  57452. source: "./media/characters/gallagher/front.svg",
  57453. extra: 532/493,
  57454. bottom: 0/532
  57455. }
  57456. },
  57457. },
  57458. [
  57459. {
  57460. name: "Normal",
  57461. height: math.unit(6, "meters"),
  57462. default: true
  57463. },
  57464. ]
  57465. ))
  57466. characterMakers.push(() => makeCharacter(
  57467. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57468. {
  57469. front: {
  57470. height: math.unit(2.4, "meters"),
  57471. weight: math.unit(270, "kg"),
  57472. name: "Front",
  57473. image: {
  57474. source: "./media/characters/alice/front.svg",
  57475. extra: 950/900,
  57476. bottom: 36/986
  57477. }
  57478. },
  57479. side: {
  57480. height: math.unit(2.4, "meters"),
  57481. weight: math.unit(270, "kg"),
  57482. name: "Side",
  57483. image: {
  57484. source: "./media/characters/alice/side.svg",
  57485. extra: 921/876,
  57486. bottom: 19/940
  57487. }
  57488. },
  57489. dressed: {
  57490. height: math.unit(2.4, "meters"),
  57491. weight: math.unit(270, "kg"),
  57492. name: "Dressed",
  57493. image: {
  57494. source: "./media/characters/alice/dressed.svg",
  57495. extra: 905/850,
  57496. bottom: 81/986
  57497. }
  57498. },
  57499. fishnet: {
  57500. height: math.unit(2.4, "meters"),
  57501. weight: math.unit(270, "kg"),
  57502. name: "Fishnet",
  57503. image: {
  57504. source: "./media/characters/alice/fishnet.svg",
  57505. extra: 905/850,
  57506. bottom: 81/986
  57507. }
  57508. },
  57509. },
  57510. [
  57511. {
  57512. name: "Normal",
  57513. height: math.unit(2.4, "meters"),
  57514. default: true
  57515. },
  57516. ]
  57517. ))
  57518. characterMakers.push(() => makeCharacter(
  57519. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57520. {
  57521. front: {
  57522. height: math.unit(175.25, "feet"),
  57523. name: "Front",
  57524. image: {
  57525. source: "./media/characters/fio/front.svg",
  57526. extra: 1883/1591,
  57527. bottom: 34/1917
  57528. }
  57529. },
  57530. },
  57531. [
  57532. {
  57533. name: "Normal",
  57534. height: math.unit(175.25, "cm"),
  57535. default: true
  57536. },
  57537. ]
  57538. ))
  57539. characterMakers.push(() => makeCharacter(
  57540. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57541. {
  57542. side: {
  57543. height: math.unit(6, "meters"),
  57544. weight: math.unit(3400, "kg"),
  57545. preyCapacity: math.unit(1700, "liters"),
  57546. name: "Side",
  57547. image: {
  57548. source: "./media/characters/hass/side.svg",
  57549. extra: 1058/997,
  57550. bottom: 177/1235
  57551. }
  57552. },
  57553. feeding: {
  57554. height: math.unit(6*0.63, "meters"),
  57555. weight: math.unit(3400, "kg"),
  57556. preyCapacity: math.unit(1700, "liters"),
  57557. name: "Feeding",
  57558. image: {
  57559. source: "./media/characters/hass/feeding.svg",
  57560. extra: 689/579,
  57561. bottom: 146/835
  57562. }
  57563. },
  57564. guts: {
  57565. height: math.unit(6, "meters"),
  57566. weight: math.unit(3400, "kg"),
  57567. name: "Guts",
  57568. image: {
  57569. source: "./media/characters/hass/guts.svg",
  57570. extra: 1223/1198,
  57571. bottom: 182/1405
  57572. }
  57573. },
  57574. dickFront: {
  57575. height: math.unit(1.4, "meters"),
  57576. name: "Dick (Front)",
  57577. image: {
  57578. source: "./media/characters/hass/dick-front.svg"
  57579. }
  57580. },
  57581. dickSide: {
  57582. height: math.unit(1.3, "meters"),
  57583. name: "Dick (Side)",
  57584. image: {
  57585. source: "./media/characters/hass/dick-side.svg"
  57586. }
  57587. },
  57588. dickBack: {
  57589. height: math.unit(1.4, "meters"),
  57590. name: "Dick (Back)",
  57591. image: {
  57592. source: "./media/characters/hass/dick-back.svg"
  57593. }
  57594. },
  57595. },
  57596. [
  57597. {
  57598. name: "Normal",
  57599. height: math.unit(6, "meters"),
  57600. default: true
  57601. },
  57602. ]
  57603. ))
  57604. characterMakers.push(() => makeCharacter(
  57605. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57606. {
  57607. front: {
  57608. height: math.unit(4, "feet"),
  57609. weight: math.unit(60, "lb"),
  57610. name: "Front",
  57611. image: {
  57612. source: "./media/characters/hickory-finnegan/front.svg",
  57613. extra: 444/411,
  57614. bottom: 10/454
  57615. }
  57616. },
  57617. side: {
  57618. height: math.unit(4, "feet"),
  57619. weight: math.unit(60, "lb"),
  57620. name: "Side",
  57621. image: {
  57622. source: "./media/characters/hickory-finnegan/side.svg",
  57623. extra: 444/411,
  57624. bottom: 10/454
  57625. }
  57626. },
  57627. back: {
  57628. height: math.unit(4, "feet"),
  57629. weight: math.unit(60, "lb"),
  57630. name: "Back",
  57631. image: {
  57632. source: "./media/characters/hickory-finnegan/back.svg",
  57633. extra: 444/411,
  57634. bottom: 10/454
  57635. }
  57636. },
  57637. },
  57638. [
  57639. {
  57640. name: "Normal",
  57641. height: math.unit(4, "feet"),
  57642. default: true
  57643. },
  57644. ]
  57645. ))
  57646. characterMakers.push(() => makeCharacter(
  57647. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57648. {
  57649. snivy_front: {
  57650. height: math.unit(2, "feet"),
  57651. weight: math.unit(17.9, "lb"),
  57652. name: "Front",
  57653. image: {
  57654. source: "./media/characters/robin-phox/snivy-front.svg",
  57655. extra: 569/504,
  57656. bottom: 33/602
  57657. },
  57658. form: "snivy",
  57659. default: true
  57660. },
  57661. snivy_frontNsfw: {
  57662. height: math.unit(2, "feet"),
  57663. weight: math.unit(17.9, "lb"),
  57664. name: "Front (NSFW)",
  57665. image: {
  57666. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57667. extra: 569/504,
  57668. bottom: 33/602
  57669. },
  57670. form: "snivy",
  57671. },
  57672. snivy_back: {
  57673. height: math.unit(2, "feet"),
  57674. weight: math.unit(17.9, "lb"),
  57675. name: "Back",
  57676. image: {
  57677. source: "./media/characters/robin-phox/snivy-back.svg",
  57678. extra: 577/508,
  57679. bottom: 21/598
  57680. },
  57681. form: "snivy",
  57682. },
  57683. snivy_foot: {
  57684. height: math.unit(0.68, "feet"),
  57685. name: "Foot",
  57686. image: {
  57687. source: "./media/characters/robin-phox/snivy-foot.svg"
  57688. },
  57689. form: "snivy",
  57690. },
  57691. snivy_sole: {
  57692. height: math.unit(0.68, "feet"),
  57693. name: "Sole",
  57694. image: {
  57695. source: "./media/characters/robin-phox/snivy-sole.svg"
  57696. },
  57697. form: "snivy",
  57698. },
  57699. yoshi_front: {
  57700. height: math.unit(6, "feet"),
  57701. weight: math.unit(150, "lb"),
  57702. name: "Front",
  57703. image: {
  57704. source: "./media/characters/robin-phox/yoshi-front.svg",
  57705. extra: 890/792,
  57706. bottom: 29/919
  57707. },
  57708. form: "yoshi",
  57709. default: true
  57710. },
  57711. yoshi_frontNsfw: {
  57712. height: math.unit(6, "feet"),
  57713. weight: math.unit(150, "lb"),
  57714. name: "Front (NSFW)",
  57715. image: {
  57716. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57717. extra: 890/792,
  57718. bottom: 29/919
  57719. },
  57720. form: "yoshi",
  57721. },
  57722. yoshi_back: {
  57723. height: math.unit(6, "feet"),
  57724. weight: math.unit(150, "lb"),
  57725. name: "Back",
  57726. image: {
  57727. source: "./media/characters/robin-phox/yoshi-back.svg",
  57728. extra: 890/792,
  57729. bottom: 29/919
  57730. },
  57731. form: "yoshi",
  57732. },
  57733. yoshi_foot: {
  57734. height: math.unit(1.5, "feet"),
  57735. name: "Foot",
  57736. image: {
  57737. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57738. },
  57739. form: "yoshi",
  57740. },
  57741. delphox_front: {
  57742. height: math.unit(4 + 11/12, "feet"),
  57743. weight: math.unit(86, "lb"),
  57744. name: "Front",
  57745. image: {
  57746. source: "./media/characters/robin-phox/delphox-front.svg",
  57747. extra: 1266/1069,
  57748. bottom: 32/1298
  57749. },
  57750. form: "delphox",
  57751. default: true
  57752. },
  57753. delphox_frontNsfw: {
  57754. height: math.unit(4 + 11/12, "feet"),
  57755. weight: math.unit(86, "lb"),
  57756. name: "Front (NSFW)",
  57757. image: {
  57758. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57759. extra: 1266/1069,
  57760. bottom: 32/1298
  57761. },
  57762. form: "delphox",
  57763. },
  57764. delphox_back: {
  57765. height: math.unit(4 + 11/12, "feet"),
  57766. weight: math.unit(86, "lb"),
  57767. name: "Back",
  57768. image: {
  57769. source: "./media/characters/robin-phox/delphox-back.svg",
  57770. extra: 1269/1083,
  57771. bottom: 15/1284
  57772. },
  57773. form: "delphox",
  57774. },
  57775. mienshao_front: {
  57776. height: math.unit(4 + 7/12, "feet"),
  57777. weight: math.unit(78.3, "lb"),
  57778. name: "Front",
  57779. image: {
  57780. source: "./media/characters/robin-phox/mienshao-front.svg",
  57781. extra: 1052/970,
  57782. bottom: 108/1160
  57783. },
  57784. form: "mienshao",
  57785. default: true
  57786. },
  57787. mienshao_frontNsfw: {
  57788. height: math.unit(4 + 7/12, "feet"),
  57789. weight: math.unit(78.3, "lb"),
  57790. name: "Front (NSFW)",
  57791. image: {
  57792. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57793. extra: 1052/970,
  57794. bottom: 108/1160
  57795. },
  57796. form: "mienshao",
  57797. },
  57798. mienshao_back: {
  57799. height: math.unit(4 + 7/12, "feet"),
  57800. weight: math.unit(78.3, "lb"),
  57801. name: "Back",
  57802. image: {
  57803. source: "./media/characters/robin-phox/mienshao-back.svg",
  57804. extra: 1102/982,
  57805. bottom: 32/1134
  57806. },
  57807. form: "mienshao",
  57808. },
  57809. inteleon_front: {
  57810. height: math.unit(6 + 3/12, "feet"),
  57811. weight: math.unit(99.6, "lb"),
  57812. name: "Front",
  57813. image: {
  57814. source: "./media/characters/robin-phox/inteleon-front.svg",
  57815. extra: 910/799,
  57816. bottom: 76/986
  57817. },
  57818. form: "inteleon",
  57819. default: true
  57820. },
  57821. inteleon_frontNsfw: {
  57822. height: math.unit(6 + 3/12, "feet"),
  57823. weight: math.unit(99.6, "lb"),
  57824. name: "Front (NSFW)",
  57825. image: {
  57826. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57827. extra: 910/799,
  57828. bottom: 76/986
  57829. },
  57830. form: "inteleon",
  57831. },
  57832. inteleon_back: {
  57833. height: math.unit(6 + 3/12, "feet"),
  57834. weight: math.unit(99.6, "lb"),
  57835. name: "Back",
  57836. image: {
  57837. source: "./media/characters/robin-phox/inteleon-back.svg",
  57838. extra: 907/796,
  57839. bottom: 25/932
  57840. },
  57841. form: "inteleon",
  57842. },
  57843. reshiram_front: {
  57844. height: math.unit(10 + 6/12, "feet"),
  57845. weight: math.unit(727.5, "lb"),
  57846. name: "Front",
  57847. image: {
  57848. source: "./media/characters/robin-phox/reshiram-front.svg",
  57849. extra: 1198/940,
  57850. bottom: 123/1321
  57851. },
  57852. form: "reshiram",
  57853. },
  57854. reshiram_frontNsfw: {
  57855. height: math.unit(10 + 6/12, "feet"),
  57856. weight: math.unit(727.5, "lb"),
  57857. name: "Front-nsfw",
  57858. image: {
  57859. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57860. extra: 1198/940,
  57861. bottom: 123/1321
  57862. },
  57863. form: "reshiram",
  57864. },
  57865. reshiram_back: {
  57866. height: math.unit(10 + 6/12, "feet"),
  57867. weight: math.unit(727.5, "lb"),
  57868. name: "Back",
  57869. image: {
  57870. source: "./media/characters/robin-phox/reshiram-back.svg",
  57871. extra: 1024/904,
  57872. bottom: 85/1109
  57873. },
  57874. form: "reshiram",
  57875. },
  57876. samurott_front: {
  57877. height: math.unit(8, "feet"),
  57878. weight: math.unit(208.6, "lb"),
  57879. name: "Front",
  57880. image: {
  57881. source: "./media/characters/robin-phox/samurott-front.svg",
  57882. extra: 1048/984,
  57883. bottom: 100/1148
  57884. },
  57885. form: "samurott",
  57886. },
  57887. samurott_frontNsfw: {
  57888. height: math.unit(8, "feet"),
  57889. weight: math.unit(208.6, "lb"),
  57890. name: "Front-nsfw",
  57891. image: {
  57892. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57893. extra: 1048/984,
  57894. bottom: 100/1148
  57895. },
  57896. form: "samurott",
  57897. },
  57898. samurott_back: {
  57899. height: math.unit(8, "feet"),
  57900. weight: math.unit(208.6, "lb"),
  57901. name: "Back",
  57902. image: {
  57903. source: "./media/characters/robin-phox/samurott-back.svg",
  57904. extra: 1110/1042,
  57905. bottom: 12/1122
  57906. },
  57907. form: "samurott",
  57908. },
  57909. samurott_feral: {
  57910. height: math.unit(4 + 11/12, "feet"),
  57911. weight: math.unit(208.6, "lb"),
  57912. name: "Feral",
  57913. image: {
  57914. source: "./media/characters/robin-phox/samurott-feral.svg",
  57915. extra: 766/681,
  57916. bottom: 108/874
  57917. },
  57918. form: "samurott",
  57919. },
  57920. },
  57921. [
  57922. {
  57923. name: "Normal",
  57924. height: math.unit(2, "feet"),
  57925. default: true,
  57926. form: "snivy"
  57927. },
  57928. {
  57929. name: "Normal",
  57930. height: math.unit(6, "feet"),
  57931. default: true,
  57932. form: "yoshi"
  57933. },
  57934. {
  57935. name: "Normal",
  57936. height: math.unit(4 + 11/12, "feet"),
  57937. default: true,
  57938. form: "delphox"
  57939. },
  57940. {
  57941. name: "Normal",
  57942. height: math.unit(4 + 7/12, "feet"),
  57943. default: true,
  57944. form: "mienshao"
  57945. },
  57946. {
  57947. name: "Normal",
  57948. height: math.unit(6 + 3/12, "feet"),
  57949. default: true,
  57950. form: "inteleon"
  57951. },
  57952. {
  57953. name: "Normal",
  57954. height: math.unit(10 + 6/12, "feet"),
  57955. default: true,
  57956. form: "reshiram"
  57957. },
  57958. {
  57959. name: "Normal",
  57960. height: math.unit(8, "feet"),
  57961. default: true,
  57962. form: "samurott"
  57963. },
  57964. {
  57965. name: "Macro",
  57966. height: math.unit(500, "feet"),
  57967. allForms: true
  57968. },
  57969. {
  57970. name: "Mega Macro",
  57971. height: math.unit(10, "earths"),
  57972. allForms: true
  57973. },
  57974. {
  57975. name: "Giga Macro",
  57976. height: math.unit(1, "galaxy"),
  57977. allForms: true
  57978. },
  57979. {
  57980. name: "Godly Macro",
  57981. height: math.unit(1e10, "multiverses"),
  57982. allForms: true
  57983. },
  57984. ],
  57985. {
  57986. "snivy": {
  57987. name: "Snivy",
  57988. default: true
  57989. },
  57990. "yoshi": {
  57991. name: "Yoshi",
  57992. },
  57993. "delphox": {
  57994. name: "Delphox",
  57995. },
  57996. "mienshao": {
  57997. name: "Mienshao",
  57998. },
  57999. "inteleon": {
  58000. name: "Inteleon",
  58001. },
  58002. "reshiram": {
  58003. name: "Reshiram",
  58004. },
  58005. "samurott": {
  58006. name: "Samurott",
  58007. },
  58008. }
  58009. ))
  58010. characterMakers.push(() => makeCharacter(
  58011. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  58012. {
  58013. front: {
  58014. height: math.unit(4, "feet"),
  58015. name: "Front",
  58016. image: {
  58017. source: "./media/characters/ash-leung/front.svg",
  58018. extra: 1916/1792,
  58019. bottom: 50/1966
  58020. }
  58021. },
  58022. },
  58023. [
  58024. {
  58025. name: "Atomic",
  58026. height: math.unit(1, "angstrom")
  58027. },
  58028. {
  58029. name: "Microscopic",
  58030. height: math.unit(4000, "angstroms")
  58031. },
  58032. {
  58033. name: "Speck",
  58034. height: math.unit(1, "mm")
  58035. },
  58036. {
  58037. name: "Small",
  58038. height: math.unit(1, "inch")
  58039. },
  58040. {
  58041. name: "Normal",
  58042. height: math.unit(4, "feet"),
  58043. default: true
  58044. },
  58045. ]
  58046. ))
  58047. characterMakers.push(() => makeCharacter(
  58048. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  58049. {
  58050. frontDressed: {
  58051. height: math.unit(2.08, "meters"),
  58052. weight: math.unit(175, "lb"),
  58053. name: "Front (Dressed)",
  58054. image: {
  58055. source: "./media/characters/carie/front-dressed.svg",
  58056. extra: 456/417,
  58057. bottom: 7/463
  58058. }
  58059. },
  58060. backDressed: {
  58061. height: math.unit(2.08, "meters"),
  58062. weight: math.unit(175, "lb"),
  58063. name: "Back (Dressed)",
  58064. image: {
  58065. source: "./media/characters/carie/back-dressed.svg",
  58066. extra: 455/414,
  58067. bottom: 11/466
  58068. }
  58069. },
  58070. front: {
  58071. height: math.unit(2, "meters"),
  58072. weight: math.unit(175, "lb"),
  58073. name: "Front",
  58074. image: {
  58075. source: "./media/characters/carie/front.svg",
  58076. extra: 438/399,
  58077. bottom: 12/450
  58078. }
  58079. },
  58080. back: {
  58081. height: math.unit(2, "meters"),
  58082. weight: math.unit(175, "lb"),
  58083. name: "Back",
  58084. image: {
  58085. source: "./media/characters/carie/back.svg",
  58086. extra: 438/397,
  58087. bottom: 7/445
  58088. }
  58089. },
  58090. },
  58091. [
  58092. {
  58093. name: "Normal",
  58094. height: math.unit(2.08, "meters"),
  58095. default: true
  58096. },
  58097. {
  58098. name: "Macro",
  58099. height: math.unit(2.08e3, "meters")
  58100. },
  58101. {
  58102. name: "Mega Macro",
  58103. height: math.unit(2.08e6, "meters")
  58104. },
  58105. {
  58106. name: "Giga Macro",
  58107. height: math.unit(2.08e9, "meters")
  58108. },
  58109. {
  58110. name: "Tera Macro",
  58111. height: math.unit(2.08e12, "meters")
  58112. },
  58113. {
  58114. name: "Peta Macro",
  58115. height: math.unit(2.08e15, "meters")
  58116. },
  58117. {
  58118. name: "Exa Macro",
  58119. height: math.unit(2.08e18, "meters")
  58120. },
  58121. {
  58122. name: "Zetta Macro",
  58123. height: math.unit(2.08e21, "meters")
  58124. },
  58125. {
  58126. name: "Yotta Macro",
  58127. height: math.unit(2.08e24, "meters")
  58128. },
  58129. ]
  58130. ))
  58131. characterMakers.push(() => makeCharacter(
  58132. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58133. {
  58134. front: {
  58135. height: math.unit(5 + 2/12, "feet"),
  58136. weight: math.unit(120, "lb"),
  58137. name: "Front",
  58138. image: {
  58139. source: "./media/characters/sai-bree/front.svg",
  58140. extra: 1843/1702,
  58141. bottom: 91/1934
  58142. }
  58143. },
  58144. back: {
  58145. height: math.unit(5 + 2/12, "feet"),
  58146. weight: math.unit(120, "lb"),
  58147. name: "Back",
  58148. image: {
  58149. source: "./media/characters/sai-bree/back.svg",
  58150. extra: 1809/1637,
  58151. bottom: 56/1865
  58152. }
  58153. },
  58154. },
  58155. [
  58156. {
  58157. name: "Normal",
  58158. height: math.unit(5 + 2/12, "feet"),
  58159. default: true
  58160. },
  58161. {
  58162. name: "Macro",
  58163. height: math.unit(500, "feet")
  58164. },
  58165. ]
  58166. ))
  58167. characterMakers.push(() => makeCharacter(
  58168. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58169. {
  58170. side: {
  58171. height: math.unit(0.77, "meters"),
  58172. weight: math.unit(120, "lb"),
  58173. name: "Side",
  58174. image: {
  58175. source: "./media/characters/davwyn/side.svg",
  58176. extra: 1557/1225,
  58177. bottom: 131/1688
  58178. }
  58179. },
  58180. front: {
  58181. height: math.unit(0.835410, "meters"),
  58182. weight: math.unit(120, "lb"),
  58183. name: "Front",
  58184. image: {
  58185. source: "./media/characters/davwyn/front.svg",
  58186. extra: 870/843,
  58187. bottom: 175/1045
  58188. }
  58189. },
  58190. },
  58191. [
  58192. {
  58193. name: "Minidrake",
  58194. height: math.unit(0.77/4, "meters")
  58195. },
  58196. {
  58197. name: "Normal",
  58198. height: math.unit(0.77, "meters"),
  58199. default: true
  58200. },
  58201. ]
  58202. ))
  58203. characterMakers.push(() => makeCharacter(
  58204. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58205. {
  58206. front: {
  58207. height: math.unit(10 + 3/12, "feet"),
  58208. weight: math.unit(2857, "lb"),
  58209. name: "Front",
  58210. image: {
  58211. source: "./media/characters/balans/front.svg",
  58212. extra: 427/402,
  58213. bottom: 26/453
  58214. }
  58215. },
  58216. side: {
  58217. height: math.unit(10 + 3/12, "feet"),
  58218. weight: math.unit(2857, "lb"),
  58219. name: "Side",
  58220. image: {
  58221. source: "./media/characters/balans/side.svg",
  58222. extra: 397/371,
  58223. bottom: 17/414
  58224. }
  58225. },
  58226. back: {
  58227. height: math.unit(10 + 3/12, "feet"),
  58228. weight: math.unit(2857, "lb"),
  58229. name: "Back",
  58230. image: {
  58231. source: "./media/characters/balans/back.svg",
  58232. extra: 408/381,
  58233. bottom: 14/422
  58234. }
  58235. },
  58236. hand: {
  58237. height: math.unit(1.15, "feet"),
  58238. name: "Hand",
  58239. image: {
  58240. source: "./media/characters/balans/hand.svg"
  58241. }
  58242. },
  58243. footRest: {
  58244. height: math.unit(3.1, "feet"),
  58245. name: "Foot (Rest)",
  58246. image: {
  58247. source: "./media/characters/balans/foot-rest.svg"
  58248. }
  58249. },
  58250. footActive: {
  58251. height: math.unit(3.5, "feet"),
  58252. name: "Foot (Active)",
  58253. image: {
  58254. source: "./media/characters/balans/foot-active.svg"
  58255. }
  58256. },
  58257. },
  58258. [
  58259. {
  58260. name: "Normal",
  58261. height: math.unit(10 + 3/12, "feet"),
  58262. default: true
  58263. },
  58264. ]
  58265. ))
  58266. characterMakers.push(() => makeCharacter(
  58267. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58268. {
  58269. side: {
  58270. height: math.unit(9, "meters"),
  58271. weight: math.unit(114, "tonnes"),
  58272. name: "Side",
  58273. image: {
  58274. source: "./media/characters/eldkveikir/side.svg",
  58275. extra: 1927/338,
  58276. bottom: 42/1969
  58277. }
  58278. },
  58279. sitting: {
  58280. height: math.unit(13.4, "meters"),
  58281. weight: math.unit(114, "tonnes"),
  58282. name: "Sitting",
  58283. image: {
  58284. source: "./media/characters/eldkveikir/sitting.svg",
  58285. extra: 1108/963,
  58286. bottom: 610/1718
  58287. }
  58288. },
  58289. maw: {
  58290. height: math.unit(8.36, "meters"),
  58291. name: "Maw",
  58292. image: {
  58293. source: "./media/characters/eldkveikir/maw.svg"
  58294. }
  58295. },
  58296. hand: {
  58297. height: math.unit(4.84, "meters"),
  58298. name: "Hand",
  58299. image: {
  58300. source: "./media/characters/eldkveikir/hand.svg"
  58301. }
  58302. },
  58303. foot: {
  58304. height: math.unit(6.9, "meters"),
  58305. name: "Foot",
  58306. image: {
  58307. source: "./media/characters/eldkveikir/foot.svg"
  58308. }
  58309. },
  58310. genitals: {
  58311. height: math.unit(9.6, "meters"),
  58312. name: "Genitals",
  58313. image: {
  58314. source: "./media/characters/eldkveikir/genitals.svg"
  58315. }
  58316. },
  58317. },
  58318. [
  58319. {
  58320. name: "Normal",
  58321. height: math.unit(9, "meters"),
  58322. default: true
  58323. },
  58324. ]
  58325. ))
  58326. characterMakers.push(() => makeCharacter(
  58327. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58328. {
  58329. front: {
  58330. height: math.unit(14, "feet"),
  58331. weight: math.unit(4100, "lb"),
  58332. name: "Front",
  58333. image: {
  58334. source: "./media/characters/arrow/front.svg",
  58335. extra: 330/318,
  58336. bottom: 56/386
  58337. }
  58338. },
  58339. },
  58340. [
  58341. {
  58342. name: "Normal",
  58343. height: math.unit(14, "feet"),
  58344. default: true
  58345. },
  58346. {
  58347. name: "Minimacro",
  58348. height: math.unit(63, "feet")
  58349. },
  58350. {
  58351. name: "Macro",
  58352. height: math.unit(630, "feet")
  58353. },
  58354. {
  58355. name: "Megamacro",
  58356. height: math.unit(12600, "feet")
  58357. },
  58358. {
  58359. name: "Gigamacro",
  58360. height: math.unit(18000, "miles")
  58361. },
  58362. ]
  58363. ))
  58364. characterMakers.push(() => makeCharacter(
  58365. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58366. {
  58367. front: {
  58368. height: math.unit(10, "feet"),
  58369. weight: math.unit(2.4, "tons"),
  58370. name: "Front",
  58371. image: {
  58372. source: "./media/characters/3yk-k0-unit/front.svg",
  58373. extra: 573/561,
  58374. bottom: 33/606
  58375. }
  58376. },
  58377. back: {
  58378. height: math.unit(10, "feet"),
  58379. weight: math.unit(2.4, "tons"),
  58380. name: "Back",
  58381. image: {
  58382. source: "./media/characters/3yk-k0-unit/back.svg",
  58383. extra: 614/573,
  58384. bottom: 32/646
  58385. }
  58386. },
  58387. maw: {
  58388. height: math.unit(2.15, "feet"),
  58389. name: "Maw",
  58390. image: {
  58391. source: "./media/characters/3yk-k0-unit/maw.svg"
  58392. }
  58393. },
  58394. },
  58395. [
  58396. {
  58397. name: "Normal",
  58398. height: math.unit(10, "feet"),
  58399. default: true
  58400. },
  58401. ]
  58402. ))
  58403. characterMakers.push(() => makeCharacter(
  58404. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58405. {
  58406. front: {
  58407. height: math.unit(8 + 8/12, "feet"),
  58408. name: "Front",
  58409. image: {
  58410. source: "./media/characters/nemo/front.svg",
  58411. extra: 1308/1217,
  58412. bottom: 57/1365
  58413. }
  58414. },
  58415. },
  58416. [
  58417. {
  58418. name: "Normal",
  58419. height: math.unit(8 + 8/12, "feet"),
  58420. default: true
  58421. },
  58422. ]
  58423. ))
  58424. characterMakers.push(() => makeCharacter(
  58425. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58426. {
  58427. front: {
  58428. height: math.unit(8, "feet"),
  58429. weight: math.unit(760, "lb"),
  58430. name: "Front",
  58431. image: {
  58432. source: "./media/characters/rexx/front.svg",
  58433. extra: 786/750,
  58434. bottom: 17/803
  58435. },
  58436. extraAttributes: {
  58437. "pawLength": {
  58438. name: "Paw Length",
  58439. power: 1,
  58440. type: "length",
  58441. base: math.unit(27, "inches")
  58442. },
  58443. }
  58444. },
  58445. },
  58446. [
  58447. {
  58448. name: "Micro",
  58449. height: math.unit(2, "inches")
  58450. },
  58451. {
  58452. name: "Normal",
  58453. height: math.unit(8, "feet"),
  58454. default: true
  58455. },
  58456. {
  58457. name: "Macro",
  58458. height: math.unit(150, "feet")
  58459. },
  58460. ]
  58461. ))
  58462. characterMakers.push(() => makeCharacter(
  58463. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58464. {
  58465. front: {
  58466. height: math.unit(18, "feet"),
  58467. weight: math.unit(1975, "lb"),
  58468. name: "Front",
  58469. image: {
  58470. source: "./media/characters/draco/front.svg",
  58471. extra: 1325/1241,
  58472. bottom: 83/1408
  58473. }
  58474. },
  58475. back: {
  58476. height: math.unit(18, "feet"),
  58477. weight: math.unit(1975, "lb"),
  58478. name: "Back",
  58479. image: {
  58480. source: "./media/characters/draco/back.svg",
  58481. extra: 1332/1250,
  58482. bottom: 43/1375
  58483. }
  58484. },
  58485. dick: {
  58486. height: math.unit(7.5, "feet"),
  58487. name: "Dick",
  58488. image: {
  58489. source: "./media/characters/draco/dick.svg"
  58490. }
  58491. },
  58492. },
  58493. [
  58494. {
  58495. name: "Normal",
  58496. height: math.unit(18, "feet"),
  58497. default: true
  58498. },
  58499. ]
  58500. ))
  58501. characterMakers.push(() => makeCharacter(
  58502. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58503. {
  58504. front: {
  58505. height: math.unit(3.2, "meters"),
  58506. name: "Front",
  58507. image: {
  58508. source: "./media/characters/harriett/front.svg",
  58509. extra: 1966/1915,
  58510. bottom: 9/1975
  58511. }
  58512. },
  58513. },
  58514. [
  58515. {
  58516. name: "Normal",
  58517. height: math.unit(3.2, "meters"),
  58518. default: true
  58519. },
  58520. ]
  58521. ))
  58522. characterMakers.push(() => makeCharacter(
  58523. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58524. {
  58525. sitting: {
  58526. height: math.unit(0.8, "meter"),
  58527. name: "Sitting",
  58528. image: {
  58529. source: "./media/characters/serpentus/sitting.svg",
  58530. extra: 293/290,
  58531. bottom: 140/433
  58532. }
  58533. },
  58534. },
  58535. [
  58536. {
  58537. name: "Normal",
  58538. height: math.unit(0.8, "meter"),
  58539. default: true
  58540. },
  58541. ]
  58542. ))
  58543. characterMakers.push(() => makeCharacter(
  58544. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58545. {
  58546. front: {
  58547. height: math.unit(5.7174385736, "feet"),
  58548. name: "Front",
  58549. image: {
  58550. source: "./media/characters/nova-polecat/front.svg",
  58551. extra: 1317/1216,
  58552. bottom: 92/1409
  58553. }
  58554. },
  58555. },
  58556. [
  58557. {
  58558. name: "Normal",
  58559. height: math.unit(5.7174385736, "feet"),
  58560. default: true
  58561. },
  58562. ]
  58563. ))
  58564. characterMakers.push(() => makeCharacter(
  58565. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58566. {
  58567. front: {
  58568. height: math.unit(5 + 4/12, "feet"),
  58569. weight: math.unit(250, "lb"),
  58570. name: "Front",
  58571. image: {
  58572. source: "./media/characters/mook/front.svg",
  58573. extra: 1088/1037,
  58574. bottom: 132/1220
  58575. }
  58576. },
  58577. back: {
  58578. height: math.unit(5 + 1/12, "feet"),
  58579. weight: math.unit(250, "lb"),
  58580. name: "Back",
  58581. image: {
  58582. source: "./media/characters/mook/back.svg",
  58583. extra: 1184/905,
  58584. bottom: 96/1280
  58585. }
  58586. },
  58587. head: {
  58588. height: math.unit(1.85, "feet"),
  58589. name: "Head",
  58590. image: {
  58591. source: "./media/characters/mook/head.svg"
  58592. }
  58593. },
  58594. hand: {
  58595. height: math.unit(1.9, "feet"),
  58596. name: "Hand",
  58597. image: {
  58598. source: "./media/characters/mook/hand.svg"
  58599. }
  58600. },
  58601. palm: {
  58602. height: math.unit(1.84, "feet"),
  58603. name: "Palm",
  58604. image: {
  58605. source: "./media/characters/mook/palm.svg"
  58606. }
  58607. },
  58608. foot: {
  58609. height: math.unit(1.44, "feet"),
  58610. name: "Foot",
  58611. image: {
  58612. source: "./media/characters/mook/foot.svg"
  58613. }
  58614. },
  58615. sole: {
  58616. height: math.unit(1.44, "feet"),
  58617. name: "Sole",
  58618. image: {
  58619. source: "./media/characters/mook/sole.svg"
  58620. }
  58621. },
  58622. },
  58623. [
  58624. {
  58625. name: "Normal",
  58626. height: math.unit(5 + 4/12, "feet"),
  58627. default: true
  58628. },
  58629. {
  58630. name: "Big",
  58631. height: math.unit(12, "feet")
  58632. },
  58633. ]
  58634. ))
  58635. characterMakers.push(() => makeCharacter(
  58636. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58637. {
  58638. front: {
  58639. height: math.unit(6 + 10/12, "feet"),
  58640. weight: math.unit(233, "lb"),
  58641. name: "Front",
  58642. image: {
  58643. source: "./media/characters/kayla/front.svg",
  58644. extra: 1850/1775,
  58645. bottom: 65/1915
  58646. }
  58647. },
  58648. },
  58649. [
  58650. {
  58651. name: "Normal",
  58652. height: math.unit(6 + 10/12, "feet"),
  58653. default: true
  58654. },
  58655. {
  58656. name: "Amazonian",
  58657. height: math.unit(12 + 5/12, "feet")
  58658. },
  58659. {
  58660. name: "Mini Giantess",
  58661. height: math.unit(26, "feet")
  58662. },
  58663. {
  58664. name: "Giantess",
  58665. height: math.unit(200, "feet")
  58666. },
  58667. {
  58668. name: "Mega Giantess",
  58669. height: math.unit(2500, "feet")
  58670. },
  58671. {
  58672. name: "City Sized",
  58673. height: math.unit(50, "miles")
  58674. },
  58675. {
  58676. name: "Country Sized",
  58677. height: math.unit(500, "miles")
  58678. },
  58679. {
  58680. name: "Continent Sized",
  58681. height: math.unit(2500, "miles")
  58682. },
  58683. {
  58684. name: "Planet Sized",
  58685. height: math.unit(10000, "miles")
  58686. },
  58687. {
  58688. name: "Star Sized",
  58689. height: math.unit(5e6, "miles")
  58690. },
  58691. {
  58692. name: "Solar System Sized",
  58693. height: math.unit(125, "AU")
  58694. },
  58695. {
  58696. name: "Galaxy Sized",
  58697. height: math.unit(300e3, "lightyears")
  58698. },
  58699. {
  58700. name: "Universe Sized",
  58701. height: math.unit(200e9, "lightyears")
  58702. },
  58703. {
  58704. name: "Multiverse Sized",
  58705. height: math.unit(20, "exauniverses")
  58706. },
  58707. {
  58708. name: "Mother of Existence",
  58709. height: math.unit(1e6, "yottauniverses")
  58710. },
  58711. ]
  58712. ))
  58713. characterMakers.push(() => makeCharacter(
  58714. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58715. {
  58716. side: {
  58717. height: math.unit(9.5, "meters"),
  58718. name: "Side",
  58719. image: {
  58720. source: "./media/characters/kulve-ragnarok/side.svg",
  58721. extra: 364/326,
  58722. bottom: 50/414
  58723. }
  58724. },
  58725. },
  58726. [
  58727. {
  58728. name: "Normal",
  58729. height: math.unit(9.5, "meters"),
  58730. default: true
  58731. },
  58732. ]
  58733. ))
  58734. characterMakers.push(() => makeCharacter(
  58735. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58736. {
  58737. front: {
  58738. height: math.unit(8 + 9/12, "feet"),
  58739. name: "Front",
  58740. image: {
  58741. source: "./media/characters/atlas-goat/front.svg",
  58742. extra: 1462/1323,
  58743. bottom: 12/1474
  58744. }
  58745. },
  58746. },
  58747. [
  58748. {
  58749. name: "Normal",
  58750. height: math.unit(8 + 9/12, "feet"),
  58751. default: true
  58752. },
  58753. {
  58754. name: "Skyline",
  58755. height: math.unit(845, "feet")
  58756. },
  58757. {
  58758. name: "Orbital",
  58759. height: math.unit(93000, "miles")
  58760. },
  58761. {
  58762. name: "Constellation",
  58763. height: math.unit(27000, "lightyears")
  58764. },
  58765. ]
  58766. ))
  58767. characterMakers.push(() => makeCharacter(
  58768. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58769. {
  58770. side: {
  58771. height: math.unit(1.8, "meters"),
  58772. weight: math.unit(120, "kg"),
  58773. name: "Side",
  58774. image: {
  58775. source: "./media/characters/xie-ling/side.svg",
  58776. extra: 646/574,
  58777. bottom: 44/690
  58778. }
  58779. },
  58780. },
  58781. [
  58782. {
  58783. name: "Tiny",
  58784. height: math.unit(1.80, "meters")
  58785. },
  58786. {
  58787. name: "Small",
  58788. height: math.unit(6, "meters")
  58789. },
  58790. {
  58791. name: "Medium",
  58792. height: math.unit(15, "meters")
  58793. },
  58794. {
  58795. name: "Normal",
  58796. height: math.unit(30, "meters"),
  58797. default: true
  58798. },
  58799. {
  58800. name: "Above Normal",
  58801. height: math.unit(60, "meters")
  58802. },
  58803. {
  58804. name: "Big",
  58805. height: math.unit(220, "meters")
  58806. },
  58807. {
  58808. name: "Giant",
  58809. height: math.unit(2.2, "km")
  58810. },
  58811. {
  58812. name: "Macro",
  58813. height: math.unit(25, "km")
  58814. },
  58815. {
  58816. name: "Mega Macro",
  58817. height: math.unit(350, "km")
  58818. },
  58819. {
  58820. name: "Mega Macro+",
  58821. height: math.unit(5000, "km")
  58822. },
  58823. {
  58824. name: "Goddess",
  58825. height: math.unit(3, "multiverses")
  58826. },
  58827. ]
  58828. ))
  58829. characterMakers.push(() => makeCharacter(
  58830. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58831. {
  58832. frontSfw: {
  58833. height: math.unit(5 + 11/12, "feet"),
  58834. weight: math.unit(210, "lb"),
  58835. name: "Front",
  58836. image: {
  58837. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58838. extra: 1928/1821,
  58839. bottom: 45/1973
  58840. }
  58841. },
  58842. backSfw: {
  58843. height: math.unit(5 + 11/12, "feet"),
  58844. weight: math.unit(210, "lb"),
  58845. name: "Back",
  58846. image: {
  58847. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58848. extra: 1920/1813,
  58849. bottom: 34/1954
  58850. }
  58851. },
  58852. frontNsfw: {
  58853. height: math.unit(5 + 11/12, "feet"),
  58854. weight: math.unit(210, "lb"),
  58855. name: "Front (NSFW)",
  58856. image: {
  58857. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58858. extra: 1928/1821,
  58859. bottom: 45/1973
  58860. }
  58861. },
  58862. backNsfw: {
  58863. height: math.unit(5 + 11/12, "feet"),
  58864. weight: math.unit(210, "lb"),
  58865. name: "Back (NSFW)",
  58866. image: {
  58867. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58868. extra: 1920/1813,
  58869. bottom: 34/1954
  58870. }
  58871. },
  58872. },
  58873. [
  58874. {
  58875. name: "Normal",
  58876. height: math.unit(5 + 11/12, "feet"),
  58877. default: true
  58878. },
  58879. {
  58880. name: "Goddess",
  58881. height: math.unit(20 + 3/12, "feet")
  58882. },
  58883. {
  58884. name: "Breaker of Man",
  58885. height: math.unit(329 + 9/12, "feet")
  58886. },
  58887. {
  58888. name: "Solar Justice",
  58889. height: math.unit(0.6, "solarradii")
  58890. },
  58891. {
  58892. name: "She Who Judges",
  58893. height: math.unit(1, "universe")
  58894. },
  58895. ]
  58896. ))
  58897. characterMakers.push(() => makeCharacter(
  58898. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58899. {
  58900. casual_front: {
  58901. height: math.unit(6 + 1/12, "feet"),
  58902. weight: math.unit(190, "lb"),
  58903. preyCapacity: math.unit(1, "people"),
  58904. name: "Front",
  58905. image: {
  58906. source: "./media/characters/managarmr/casual-front.svg",
  58907. extra: 411/381,
  58908. bottom: 15/426
  58909. },
  58910. extraAttributes: {
  58911. "pawSize": {
  58912. name: "Paw Size",
  58913. power: 1,
  58914. type: "length",
  58915. base: math.unit(0.2, "meters")
  58916. },
  58917. },
  58918. form: "casual",
  58919. },
  58920. casual_back: {
  58921. height: math.unit(6 + 1/12, "feet"),
  58922. weight: math.unit(190, "lb"),
  58923. preyCapacity: math.unit(1, "people"),
  58924. name: "Back",
  58925. image: {
  58926. source: "./media/characters/managarmr/casual-back.svg",
  58927. extra: 413/383,
  58928. bottom: 13/426
  58929. },
  58930. extraAttributes: {
  58931. "pawSize": {
  58932. name: "Paw Size",
  58933. power: 1,
  58934. type: "length",
  58935. base: math.unit(0.2, "meters")
  58936. },
  58937. },
  58938. form: "casual",
  58939. },
  58940. base_front: {
  58941. height: math.unit(7, "feet"),
  58942. weight: math.unit(210, "lb"),
  58943. preyCapacity: math.unit(2, "people"),
  58944. name: "Front",
  58945. image: {
  58946. source: "./media/characters/managarmr/base-front.svg",
  58947. extra: 580/485,
  58948. bottom: 32/612
  58949. },
  58950. extraAttributes: {
  58951. "wingspan": {
  58952. name: "Wingspan",
  58953. power: 1,
  58954. type: "length",
  58955. base: math.unit(4, "meters")
  58956. },
  58957. "pawSize": {
  58958. name: "Paw Size",
  58959. power: 1,
  58960. type: "length",
  58961. base: math.unit(0.2, "meters")
  58962. },
  58963. },
  58964. form: "base",
  58965. },
  58966. "true-divine_front": {
  58967. height: math.unit(40, "feet"),
  58968. weight: math.unit(39000, "lb"),
  58969. preyCapacity: math.unit(375, "people"),
  58970. name: "Front",
  58971. image: {
  58972. source: "./media/characters/managarmr/true-divine-front.svg",
  58973. extra: 725/573,
  58974. bottom: 120/845
  58975. },
  58976. extraAttributes: {
  58977. "wingspan": {
  58978. name: "Wingspan",
  58979. power: 1,
  58980. type: "length",
  58981. base: math.unit(20, "meters")
  58982. },
  58983. "pawSize": {
  58984. name: "Paw Size",
  58985. power: 1,
  58986. type: "length",
  58987. base: math.unit(1.5, "meters")
  58988. },
  58989. },
  58990. form: "true-divine",
  58991. },
  58992. },
  58993. [
  58994. {
  58995. name: "Normal",
  58996. height: math.unit(6 + 1/12, "feet"),
  58997. form: "casual",
  58998. default: true
  58999. },
  59000. {
  59001. name: "Normal",
  59002. height: math.unit(7, "feet"),
  59003. form: "base",
  59004. default: true
  59005. },
  59006. ],
  59007. {
  59008. "casual": {
  59009. name: "Casual",
  59010. default: true
  59011. },
  59012. "base": {
  59013. name: "Base",
  59014. },
  59015. "true-divine": {
  59016. name: "True Divine",
  59017. },
  59018. }
  59019. ))
  59020. characterMakers.push(() => makeCharacter(
  59021. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  59022. {
  59023. front: {
  59024. height: math.unit(1.8, "meters"),
  59025. weight: math.unit(110, "kg"),
  59026. name: "Front",
  59027. image: {
  59028. source: "./media/characters/mystra/front.svg",
  59029. extra: 529/442,
  59030. bottom: 31/560
  59031. }
  59032. },
  59033. frontLewd: {
  59034. height: math.unit(1.8, "meters"),
  59035. weight: math.unit(110, "kg"),
  59036. name: "Front (Lewd)",
  59037. image: {
  59038. source: "./media/characters/mystra/front-lewd.svg",
  59039. extra: 529/442,
  59040. bottom: 31/560
  59041. }
  59042. },
  59043. head: {
  59044. height: math.unit(1.63, "feet"),
  59045. name: "Head",
  59046. image: {
  59047. source: "./media/characters/mystra/head.svg"
  59048. }
  59049. },
  59050. paw: {
  59051. height: math.unit(1.9, "feet"),
  59052. name: "Paw",
  59053. image: {
  59054. source: "./media/characters/mystra/paw.svg"
  59055. }
  59056. },
  59057. },
  59058. [
  59059. {
  59060. name: "Incognito",
  59061. height: math.unit(2.3, "meters")
  59062. },
  59063. {
  59064. name: "Small Macro",
  59065. height: math.unit(300, "meters")
  59066. },
  59067. {
  59068. name: "Small Mega",
  59069. height: math.unit(2, "km")
  59070. },
  59071. {
  59072. name: "Mega",
  59073. height: math.unit(30, "km")
  59074. },
  59075. {
  59076. name: "Small Giga",
  59077. height: math.unit(100, "km")
  59078. },
  59079. {
  59080. name: "Giga",
  59081. height: math.unit(1000, "km"),
  59082. default: true
  59083. },
  59084. {
  59085. name: "Continental",
  59086. height: math.unit(5000, "km")
  59087. },
  59088. {
  59089. name: "Terra",
  59090. height: math.unit(20000, "km")
  59091. },
  59092. {
  59093. name: "Solar",
  59094. height: math.unit(2e6, "km")
  59095. },
  59096. {
  59097. name: "Galactic",
  59098. height: math.unit(528502, "lightyears")
  59099. },
  59100. {
  59101. name: "Universal",
  59102. height: math.unit(20, "universes")
  59103. },
  59104. ]
  59105. ))
  59106. characterMakers.push(() => makeCharacter(
  59107. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59108. {
  59109. front: {
  59110. height: math.unit(2, "meters"),
  59111. weight: math.unit(140, "kg"),
  59112. name: "Front",
  59113. image: {
  59114. source: "./media/characters/caleb/front.svg",
  59115. extra: 873/817,
  59116. bottom: 47/920
  59117. }
  59118. },
  59119. back: {
  59120. height: math.unit(2, "meters"),
  59121. weight: math.unit(140, "kg"),
  59122. name: "Back",
  59123. image: {
  59124. source: "./media/characters/caleb/back.svg",
  59125. extra: 877/828,
  59126. bottom: 24/901
  59127. }
  59128. },
  59129. snakeTail: {
  59130. height: math.unit(1.44, "feet"),
  59131. name: "Snake Tail",
  59132. image: {
  59133. source: "./media/characters/caleb/snake-tail.svg"
  59134. }
  59135. },
  59136. dick: {
  59137. height: math.unit(2.6, "feet"),
  59138. name: "Dick",
  59139. image: {
  59140. source: "./media/characters/caleb/dick.svg"
  59141. }
  59142. },
  59143. },
  59144. [
  59145. {
  59146. name: "Incognito",
  59147. height: math.unit(3, "meters")
  59148. },
  59149. {
  59150. name: "Home Size",
  59151. height: math.unit(200, "meters"),
  59152. default: true
  59153. },
  59154. {
  59155. name: "Macro",
  59156. height: math.unit(500, "meters")
  59157. },
  59158. {
  59159. name: "Big Macro",
  59160. height: math.unit(5, "km")
  59161. },
  59162. {
  59163. name: "Giga",
  59164. height: math.unit(250, "km")
  59165. },
  59166. {
  59167. name: "Giga+",
  59168. height: math.unit(5000, "km")
  59169. },
  59170. {
  59171. name: "Small Terra",
  59172. height: math.unit(35e3, "km")
  59173. },
  59174. {
  59175. name: "Terra",
  59176. height: math.unit(2e6, "km")
  59177. },
  59178. {
  59179. name: "Terra+",
  59180. height: math.unit(1.5e6, "km")
  59181. },
  59182. ]
  59183. ))
  59184. characterMakers.push(() => makeCharacter(
  59185. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59186. {
  59187. front: {
  59188. height: math.unit(2, "meters"),
  59189. weight: math.unit(120, "kg"),
  59190. name: "Front",
  59191. image: {
  59192. source: "./media/characters/gilirian/front.svg",
  59193. extra: 805/737,
  59194. bottom: 13/818
  59195. }
  59196. },
  59197. side: {
  59198. height: math.unit(2, "meters"),
  59199. weight: math.unit(120, "kg"),
  59200. name: "Side",
  59201. image: {
  59202. source: "./media/characters/gilirian/side.svg",
  59203. extra: 810/746,
  59204. bottom: 6/816
  59205. }
  59206. },
  59207. back: {
  59208. height: math.unit(2, "meters"),
  59209. weight: math.unit(120, "kg"),
  59210. name: "Back",
  59211. image: {
  59212. source: "./media/characters/gilirian/back.svg",
  59213. extra: 815/745,
  59214. bottom: 15/830
  59215. }
  59216. },
  59217. frontNsfw: {
  59218. height: math.unit(2, "meters"),
  59219. weight: math.unit(120, "kg"),
  59220. name: "Front (NSFW)",
  59221. image: {
  59222. source: "./media/characters/gilirian/front-nsfw.svg",
  59223. extra: 805/737,
  59224. bottom: 13/818
  59225. }
  59226. },
  59227. sideNsfw: {
  59228. height: math.unit(2, "meters"),
  59229. weight: math.unit(120, "kg"),
  59230. name: "Side (NSFW)",
  59231. image: {
  59232. source: "./media/characters/gilirian/side-nsfw.svg",
  59233. extra: 810/746,
  59234. bottom: 6/816
  59235. }
  59236. },
  59237. },
  59238. [
  59239. {
  59240. name: "Incognito",
  59241. height: math.unit(2, "meters"),
  59242. default: true
  59243. },
  59244. {
  59245. name: "Macro",
  59246. height: math.unit(250, "meters")
  59247. },
  59248. {
  59249. name: "Big Macro",
  59250. height: math.unit(1500, "meters")
  59251. },
  59252. {
  59253. name: "Mega",
  59254. height: math.unit(40, "km")
  59255. },
  59256. {
  59257. name: "Giga",
  59258. height: math.unit(300, "km")
  59259. },
  59260. {
  59261. name: "Extra Giga",
  59262. height: math.unit(5000, "km")
  59263. },
  59264. {
  59265. name: "Small Terra",
  59266. height: math.unit(10e3, "km")
  59267. },
  59268. {
  59269. name: "Terra",
  59270. height: math.unit(3e5, "km")
  59271. },
  59272. {
  59273. name: "Galactic",
  59274. height: math.unit(369950, "lightyears")
  59275. },
  59276. ]
  59277. ))
  59278. characterMakers.push(() => makeCharacter(
  59279. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59280. {
  59281. front: {
  59282. height: math.unit(2.5, "meters"),
  59283. weight: math.unit(230, "lb"),
  59284. name: "Front",
  59285. image: {
  59286. source: "./media/characters/tarken/front.svg",
  59287. extra: 764/720,
  59288. bottom: 49/813
  59289. }
  59290. },
  59291. back: {
  59292. height: math.unit(2.5, "meters"),
  59293. weight: math.unit(230, "lb"),
  59294. name: "Back",
  59295. image: {
  59296. source: "./media/characters/tarken/back.svg",
  59297. extra: 756/720,
  59298. bottom: 35/791
  59299. }
  59300. },
  59301. frontNsfw: {
  59302. height: math.unit(2.5, "meters"),
  59303. weight: math.unit(230, "lb"),
  59304. name: "Front (NSFW)",
  59305. image: {
  59306. source: "./media/characters/tarken/front-nsfw.svg",
  59307. extra: 764/720,
  59308. bottom: 49/813
  59309. }
  59310. },
  59311. backNsfw: {
  59312. height: math.unit(2.5, "meters"),
  59313. weight: math.unit(230, "lb"),
  59314. name: "Back (NSFW)",
  59315. image: {
  59316. source: "./media/characters/tarken/back-nsfw.svg",
  59317. extra: 756/720,
  59318. bottom: 35/791
  59319. }
  59320. },
  59321. head: {
  59322. height: math.unit(2.22, "feet"),
  59323. name: "Head",
  59324. image: {
  59325. source: "./media/characters/tarken/head.svg"
  59326. }
  59327. },
  59328. tail: {
  59329. height: math.unit(5.25, "feet"),
  59330. name: "Tail",
  59331. image: {
  59332. source: "./media/characters/tarken/tail.svg"
  59333. }
  59334. },
  59335. dick: {
  59336. height: math.unit(1.95, "feet"),
  59337. name: "Dick",
  59338. image: {
  59339. source: "./media/characters/tarken/dick.svg"
  59340. }
  59341. },
  59342. hand: {
  59343. height: math.unit(1.78, "feet"),
  59344. name: "Hand",
  59345. image: {
  59346. source: "./media/characters/tarken/hand.svg"
  59347. }
  59348. },
  59349. beam: {
  59350. height: math.unit(1.5, "feet"),
  59351. name: "Beam",
  59352. image: {
  59353. source: "./media/characters/tarken/beam.svg"
  59354. }
  59355. },
  59356. },
  59357. [
  59358. {
  59359. name: "Original Size",
  59360. height: math.unit(2.5, "meters")
  59361. },
  59362. {
  59363. name: "Macro",
  59364. height: math.unit(150, "meters"),
  59365. default: true
  59366. },
  59367. {
  59368. name: "Macro+",
  59369. height: math.unit(300, "meters")
  59370. },
  59371. {
  59372. name: "Mega",
  59373. height: math.unit(2, "km")
  59374. },
  59375. {
  59376. name: "Mega+",
  59377. height: math.unit(35, "km")
  59378. },
  59379.  {
  59380. name: "Mega++",
  59381. height: math.unit(60, "km")
  59382. },
  59383. {
  59384. name: "Giga",
  59385. height: math.unit(200, "km")
  59386. },
  59387. {
  59388. name: "Giga+",
  59389. height: math.unit(2500, "km")
  59390. },
  59391. {
  59392. name: "Giga++",
  59393. height: math.unit(6600, "km")
  59394. },
  59395. {
  59396. name: "Terra",
  59397. height: math.unit(20000, "km")
  59398. },
  59399. {
  59400. name: "Terra+",
  59401. height: math.unit(300000, "km")
  59402. },
  59403. ]
  59404. ))
  59405. characterMakers.push(() => makeCharacter(
  59406. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59407. {
  59408. magpie_dressed: {
  59409. height: math.unit(1.7, "meters"),
  59410. weight: math.unit(70, "kg"),
  59411. name: "Dressed",
  59412. image: {
  59413. source: "./media/characters/otreus/magpie-dressed.svg",
  59414. extra: 691/672,
  59415. bottom: 116/807
  59416. },
  59417. form: "magpie",
  59418. default: true
  59419. },
  59420. magpie_nude: {
  59421. height: math.unit(1.7, "meters"),
  59422. weight: math.unit(70, "kg"),
  59423. name: "Nude",
  59424. image: {
  59425. source: "./media/characters/otreus/magpie-nude.svg",
  59426. extra: 691/672,
  59427. bottom: 116/807
  59428. },
  59429. form: "magpie",
  59430. },
  59431. magpie_dressedLewd: {
  59432. height: math.unit(1.7, "meters"),
  59433. weight: math.unit(70, "kg"),
  59434. name: "Dressed (Lewd)",
  59435. image: {
  59436. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59437. extra: 691/672,
  59438. bottom: 116/807
  59439. },
  59440. form: "magpie",
  59441. },
  59442. magpie_nudeLewd: {
  59443. height: math.unit(1.7, "meters"),
  59444. weight: math.unit(70, "kg"),
  59445. name: "Nude (Lewd)",
  59446. image: {
  59447. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59448. extra: 691/672,
  59449. bottom: 116/807
  59450. },
  59451. form: "magpie",
  59452. },
  59453. magpie_leftFoot: {
  59454. height: math.unit(1.58, "feet"),
  59455. name: "Left Foot",
  59456. image: {
  59457. source: "./media/characters/otreus/magpie-left-foot.svg"
  59458. },
  59459. form: "magpie",
  59460. },
  59461. magpie_rightFoot: {
  59462. height: math.unit(1.58, "feet"),
  59463. name: "Right Foot",
  59464. image: {
  59465. source: "./media/characters/otreus/magpie-right-foot.svg"
  59466. },
  59467. form: "magpie",
  59468. },
  59469. magpie_wingspan: {
  59470. height: math.unit(2, "meters"),
  59471. weight: math.unit(70, "kg"),
  59472. name: "Wingspan",
  59473. image: {
  59474. source: "./media/characters/otreus/magpie-wingspan.svg"
  59475. },
  59476. extraAttributes: {
  59477. "wingspan": {
  59478. name: "Wingspan",
  59479. power: 1,
  59480. type: "length",
  59481. base: math.unit(3.35, "meters")
  59482. },
  59483. },
  59484. form: "magpie",
  59485. },
  59486. hippogriff_dressed: {
  59487. height: math.unit(1.7, "meters"),
  59488. weight: math.unit(70, "kg"),
  59489. name: "Dressed",
  59490. image: {
  59491. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59492. extra: 710/689,
  59493. bottom: 67/777
  59494. },
  59495. form: "hippogriff",
  59496. default: true
  59497. },
  59498. hippogriff_nude: {
  59499. height: math.unit(1.7, "meters"),
  59500. weight: math.unit(70, "kg"),
  59501. name: "Nude",
  59502. image: {
  59503. source: "./media/characters/otreus/hippogriff-nude.svg",
  59504. extra: 710/689,
  59505. bottom: 67/777
  59506. },
  59507. form: "hippogriff",
  59508. },
  59509. hippogriff_dressedLewd: {
  59510. height: math.unit(1.7, "meters"),
  59511. weight: math.unit(70, "kg"),
  59512. name: "Dressed (Lewd)",
  59513. image: {
  59514. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59515. extra: 710/689,
  59516. bottom: 67/777
  59517. },
  59518. form: "hippogriff",
  59519. },
  59520. hippogriff_nudeLewd: {
  59521. height: math.unit(1.7, "meters"),
  59522. weight: math.unit(70, "kg"),
  59523. name: "Nude (Lewd)",
  59524. image: {
  59525. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59526. extra: 710/689,
  59527. bottom: 67/777
  59528. },
  59529. form: "hippogriff",
  59530. },
  59531. },
  59532. [
  59533. {
  59534. name: "Original Size",
  59535. height: math.unit(1.7, "meters"),
  59536. allForms: true
  59537. },
  59538. {
  59539. name: "Incognito Size",
  59540. height: math.unit(2, "meters"),
  59541. allForms: true
  59542. },
  59543. {
  59544. name: "Mega",
  59545. height: math.unit(2, "km"),
  59546. allForms: true
  59547. },
  59548. {
  59549. name: "Mega+",
  59550. height: math.unit(40, "km"),
  59551. allForms: true
  59552. },
  59553. {
  59554. name: "Giga",
  59555. height: math.unit(250, "km"),
  59556. allForms: true
  59557. },
  59558. {
  59559. name: "Giga+",
  59560. height: math.unit(3000, "km"),
  59561. allForms: true
  59562. },
  59563. {
  59564. name: "Terra",
  59565. height: math.unit(20000, "km"),
  59566. allForms: true
  59567. },
  59568. {
  59569. name: "Solar (Home Size)",
  59570. height: math.unit(3e6, "km"),
  59571. allForms: true,
  59572. default: true
  59573. },
  59574. ],
  59575. {
  59576. "magpie": {
  59577. name: "Magpie",
  59578. default: true
  59579. },
  59580. "hippogriff": {
  59581. name: "Hippogriff",
  59582. },
  59583. }
  59584. ))
  59585. characterMakers.push(() => makeCharacter(
  59586. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59587. {
  59588. frontDressed: {
  59589. height: math.unit(1.8, "meters"),
  59590. weight: math.unit(90, "kg"),
  59591. name: "Front (Dressed)",
  59592. image: {
  59593. source: "./media/characters/thalia/front-dressed.svg",
  59594. extra: 478/402,
  59595. bottom: 55/533
  59596. }
  59597. },
  59598. backDressed: {
  59599. height: math.unit(1.8, "meters"),
  59600. weight: math.unit(90, "kg"),
  59601. name: "Back (Dressed)",
  59602. image: {
  59603. source: "./media/characters/thalia/back-dressed.svg",
  59604. extra: 500/424,
  59605. bottom: 15/515
  59606. }
  59607. },
  59608. frontNude: {
  59609. height: math.unit(1.8, "meters"),
  59610. weight: math.unit(90, "kg"),
  59611. name: "Front (Nude)",
  59612. image: {
  59613. source: "./media/characters/thalia/front-nude.svg",
  59614. extra: 478/402,
  59615. bottom: 55/533
  59616. }
  59617. },
  59618. backNude: {
  59619. height: math.unit(1.8, "meters"),
  59620. weight: math.unit(90, "kg"),
  59621. name: "Back (Nude)",
  59622. image: {
  59623. source: "./media/characters/thalia/back-nude.svg",
  59624. extra: 500/424,
  59625. bottom: 15/515
  59626. }
  59627. },
  59628. },
  59629. [
  59630. {
  59631. name: "Incognito",
  59632. height: math.unit(3, "meters")
  59633. },
  59634. {
  59635. name: "Macro",
  59636. height: math.unit(500, "meters")
  59637. },
  59638. {
  59639. name: "Mega",
  59640. height: math.unit(5, "km")
  59641. },
  59642. {
  59643. name: "Mega+",
  59644. height: math.unit(30, "km")
  59645. },
  59646. {
  59647. name: "Giga",
  59648. height: math.unit(350, "km")
  59649. },
  59650. {
  59651. name: "Giga+",
  59652. height: math.unit(4000, "km")
  59653. },
  59654. {
  59655. name: "Terra",
  59656. height: math.unit(35000, "km")
  59657. },
  59658. {
  59659. name: "Original Size",
  59660. height: math.unit(130000, "km")
  59661. },
  59662. {
  59663. name: "Solar (Home Size)",
  59664. height: math.unit(4e6, "km"),
  59665. default: true
  59666. },
  59667. ]
  59668. ))
  59669. characterMakers.push(() => makeCharacter(
  59670. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59671. {
  59672. front: {
  59673. height: math.unit(1.8, "meters"),
  59674. weight: math.unit(95, "kg"),
  59675. name: "Front",
  59676. image: {
  59677. source: "./media/characters/shango/front.svg",
  59678. extra: 1925/1774,
  59679. bottom: 67/1992
  59680. }
  59681. },
  59682. back: {
  59683. height: math.unit(1.8, "meters"),
  59684. weight: math.unit(95, "kg"),
  59685. name: "Back",
  59686. image: {
  59687. source: "./media/characters/shango/back.svg",
  59688. extra: 1915/1766,
  59689. bottom: 52/1967
  59690. }
  59691. },
  59692. frontLewd: {
  59693. height: math.unit(1.8, "meters"),
  59694. weight: math.unit(95, "kg"),
  59695. name: "Front (Lewd)",
  59696. image: {
  59697. source: "./media/characters/shango/front-lewd.svg",
  59698. extra: 1925/1774,
  59699. bottom: 67/1992
  59700. }
  59701. },
  59702. backLewd: {
  59703. height: math.unit(1.8, "meters"),
  59704. weight: math.unit(95, "kg"),
  59705. name: "Back (Lewd)",
  59706. image: {
  59707. source: "./media/characters/shango/back-lewd.svg",
  59708. extra: 1915/1766,
  59709. bottom: 52/1967
  59710. }
  59711. },
  59712. maw: {
  59713. height: math.unit(1.64, "feet"),
  59714. name: "Maw",
  59715. image: {
  59716. source: "./media/characters/shango/maw.svg"
  59717. }
  59718. },
  59719. dick: {
  59720. height: math.unit(2.14, "feet"),
  59721. name: "Dick",
  59722. image: {
  59723. source: "./media/characters/shango/dick.svg"
  59724. }
  59725. },
  59726. },
  59727. [
  59728. {
  59729. name: "Incognito",
  59730. height: math.unit(1.8, "meters")
  59731. },
  59732. {
  59733. name: "Home Size",
  59734. height: math.unit(60, "meters"),
  59735. default: true
  59736. },
  59737. {
  59738. name: "Macro",
  59739. height: math.unit(450, "meters")
  59740. },
  59741. {
  59742. name: "Mega",
  59743. height: math.unit(6, "km")
  59744. },
  59745. {
  59746. name: "Mega+",
  59747. height: math.unit(35, "km")
  59748. },
  59749. {
  59750. name: "Giga",
  59751. height: math.unit(500, "km")
  59752. },
  59753. {
  59754. name: "Giga+",
  59755. height: math.unit(5000, "km")
  59756. },
  59757. {
  59758. name: "Terra",
  59759. height: math.unit(60000, "km")
  59760. },
  59761. {
  59762. name: "Terra+",
  59763. height: math.unit(400000, "km")
  59764. },
  59765. ]
  59766. ))
  59767. characterMakers.push(() => makeCharacter(
  59768. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59769. {
  59770. front: {
  59771. height: math.unit(2, "meters"),
  59772. weight: math.unit(95, "kg"),
  59773. name: "Front",
  59774. image: {
  59775. source: "./media/characters/osiris-gryphon/front.svg",
  59776. extra: 1508/1313,
  59777. bottom: 87/1595
  59778. }
  59779. },
  59780. back: {
  59781. height: math.unit(2, "meters"),
  59782. weight: math.unit(95, "kg"),
  59783. name: "Back",
  59784. image: {
  59785. source: "./media/characters/osiris-gryphon/back.svg",
  59786. extra: 1436/1309,
  59787. bottom: 64/1500
  59788. }
  59789. },
  59790. frontLewd: {
  59791. height: math.unit(2, "meters"),
  59792. weight: math.unit(95, "kg"),
  59793. name: "Front-lewd",
  59794. image: {
  59795. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59796. extra: 1508/1313,
  59797. bottom: 87/1595
  59798. }
  59799. },
  59800. wing: {
  59801. height: math.unit(6.3333, "feet"),
  59802. name: "Wing",
  59803. image: {
  59804. source: "./media/characters/osiris-gryphon/wing.svg"
  59805. }
  59806. },
  59807. },
  59808. [
  59809. {
  59810. name: "Incognito",
  59811. height: math.unit(2, "meters")
  59812. },
  59813. {
  59814. name: "Home Size",
  59815. height: math.unit(30, "meters"),
  59816. default: true
  59817. },
  59818. {
  59819. name: "Macro",
  59820. height: math.unit(100, "meters")
  59821. },
  59822. {
  59823. name: "Macro+",
  59824. height: math.unit(350, "meters")
  59825. },
  59826. {
  59827. name: "Mega",
  59828. height: math.unit(40, "km")
  59829. },
  59830. {
  59831. name: "Giga",
  59832. height: math.unit(300, "km")
  59833. },
  59834. {
  59835. name: "Giga+",
  59836. height: math.unit(2000, "km")
  59837. },
  59838. {
  59839. name: "Terra",
  59840. height: math.unit(30000, "km")
  59841. },
  59842. ]
  59843. ))
  59844. characterMakers.push(() => makeCharacter(
  59845. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59846. {
  59847. front: {
  59848. height: math.unit(2.5, "meters"),
  59849. weight: math.unit(200, "kg"),
  59850. name: "Front",
  59851. image: {
  59852. source: "./media/characters/atlas-dragon/front.svg",
  59853. extra: 745/462,
  59854. bottom: 36/781
  59855. }
  59856. },
  59857. back: {
  59858. height: math.unit(2.5, "meters"),
  59859. weight: math.unit(200, "kg"),
  59860. name: "Back",
  59861. image: {
  59862. source: "./media/characters/atlas-dragon/back.svg",
  59863. extra: 848/822,
  59864. bottom: 57/905
  59865. }
  59866. },
  59867. frontLewd: {
  59868. height: math.unit(2.5, "meters"),
  59869. weight: math.unit(200, "kg"),
  59870. name: "Front (Lewd)",
  59871. image: {
  59872. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59873. extra: 745/462,
  59874. bottom: 36/781
  59875. }
  59876. },
  59877. backLewd: {
  59878. height: math.unit(2.5, "meters"),
  59879. weight: math.unit(200, "kg"),
  59880. name: "Back (Lewd)",
  59881. image: {
  59882. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59883. extra: 848/822,
  59884. bottom: 57/905
  59885. }
  59886. },
  59887. },
  59888. [
  59889. {
  59890. name: "Incognito",
  59891. height: math.unit(2.5, "meters")
  59892. },
  59893. {
  59894. name: "Small Macro",
  59895. height: math.unit(50, "meters")
  59896. },
  59897. {
  59898. name: "Macro",
  59899. height: math.unit(350, "meters")
  59900. },
  59901. {
  59902. name: "Mega",
  59903. height: math.unit(5.5, "kilometers")
  59904. },
  59905. {
  59906. name: "Mega+",
  59907. height: math.unit(50, "km")
  59908. },
  59909. {
  59910. name: "Giga",
  59911. height: math.unit(350, "km")
  59912. },
  59913. {
  59914. name: "Giga+",
  59915. height: math.unit(2000, "km")
  59916. },
  59917. {
  59918. name: "Giga++",
  59919. height: math.unit(6500, "km")
  59920. },
  59921. {
  59922. name: "Terra",
  59923. height: math.unit(30000, "km")
  59924. },
  59925. {
  59926. name: "Terra+",
  59927. height: math.unit(250000, "km")
  59928. },
  59929. {
  59930. name: "True Size",
  59931. height: math.unit(100, "multiverses"),
  59932. default: true
  59933. },
  59934. ]
  59935. ))
  59936. characterMakers.push(() => makeCharacter(
  59937. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59938. {
  59939. front: {
  59940. height: math.unit(1.8, "m"),
  59941. weight: math.unit(120, "kg"),
  59942. name: "Front",
  59943. image: {
  59944. source: "./media/characters/chey/front.svg",
  59945. extra: 1359/1270,
  59946. bottom: 18/1377
  59947. }
  59948. },
  59949. arm: {
  59950. height: math.unit(2.05, "feet"),
  59951. name: "Arm",
  59952. image: {
  59953. source: "./media/characters/chey/arm.svg"
  59954. }
  59955. },
  59956. head: {
  59957. height: math.unit(1.89, "feet"),
  59958. name: "Head",
  59959. image: {
  59960. source: "./media/characters/chey/head.svg"
  59961. }
  59962. },
  59963. },
  59964. [
  59965. {
  59966. name: "Original Size",
  59967. height: math.unit(5, "cm")
  59968. },
  59969. {
  59970. name: "Incognito Size",
  59971. height: math.unit(2.4, "m")
  59972. },
  59973. {
  59974. name: "Home Size",
  59975. height: math.unit(200, "meters"),
  59976. default: true
  59977. },
  59978. {
  59979. name: "Mega",
  59980. height: math.unit(2, "km")
  59981. },
  59982. {
  59983. name: "Giga (Preferred Size)",
  59984. height: math.unit(2000, "km")
  59985. },
  59986. {
  59987. name: "Giga+",
  59988. height: math.unit(6000, "km")
  59989. },
  59990. {
  59991. name: "Terra",
  59992. height: math.unit(17000, "km")
  59993. },
  59994. {
  59995. name: "Terra+",
  59996. height: math.unit(75000, "km")
  59997. },
  59998. {
  59999. name: "Terra++",
  60000. height: math.unit(225000, "km")
  60001. },
  60002. ]
  60003. ))
  60004. characterMakers.push(() => makeCharacter(
  60005. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  60006. {
  60007. side: {
  60008. height: math.unit(7.8, "meters"),
  60009. name: "Side",
  60010. image: {
  60011. source: "./media/characters/ragnarok/side.svg",
  60012. extra: 725/621,
  60013. bottom: 72/797
  60014. }
  60015. },
  60016. },
  60017. [
  60018. {
  60019. name: "Normal",
  60020. height: math.unit(7.8, "meters"),
  60021. default: true
  60022. },
  60023. ]
  60024. ))
  60025. characterMakers.push(() => makeCharacter(
  60026. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  60027. {
  60028. hyena_front: {
  60029. height: math.unit(2.1, "meters"),
  60030. weight: math.unit(110, "kg"),
  60031. name: "Front",
  60032. image: {
  60033. source: "./media/characters/nima/hyena-front.svg",
  60034. extra: 1904/1796,
  60035. bottom: 67/1971
  60036. },
  60037. form: "hyena",
  60038. },
  60039. hyena_back: {
  60040. height: math.unit(2.1, "meters"),
  60041. weight: math.unit(110, "kg"),
  60042. name: "Back",
  60043. image: {
  60044. source: "./media/characters/nima/hyena-back.svg",
  60045. extra: 1964/1884,
  60046. bottom: 35/1999
  60047. },
  60048. form: "hyena",
  60049. },
  60050. shark_front: {
  60051. height: math.unit(1.95, "meters"),
  60052. weight: math.unit(110, "kg"),
  60053. name: "Front",
  60054. image: {
  60055. source: "./media/characters/nima/shark-front.svg",
  60056. extra: 2238/2013,
  60057. bottom: 0/223
  60058. },
  60059. form: "shark",
  60060. },
  60061. paw: {
  60062. height: math.unit(1, "feet"),
  60063. name: "Paw",
  60064. image: {
  60065. source: "./media/characters/nima/paw.svg"
  60066. }
  60067. },
  60068. circlet: {
  60069. height: math.unit(0.3, "feet"),
  60070. name: "Circlet",
  60071. image: {
  60072. source: "./media/characters/nima/circlet.svg"
  60073. }
  60074. },
  60075. necklace: {
  60076. height: math.unit(1.2, "feet"),
  60077. name: "Necklace",
  60078. image: {
  60079. source: "./media/characters/nima/necklace.svg"
  60080. }
  60081. },
  60082. bracelet: {
  60083. height: math.unit(0.51, "feet"),
  60084. name: "Bracelet",
  60085. image: {
  60086. source: "./media/characters/nima/bracelet.svg"
  60087. }
  60088. },
  60089. armband: {
  60090. height: math.unit(1.3, "feet"),
  60091. name: "Armband",
  60092. image: {
  60093. source: "./media/characters/nima/armband.svg"
  60094. }
  60095. },
  60096. },
  60097. [
  60098. {
  60099. name: "Incognito",
  60100. height: math.unit(2.1, "meters"),
  60101. allForms: true
  60102. },
  60103. {
  60104. name: "Small Macro",
  60105. height: math.unit(50, "meters"),
  60106. allForms: true
  60107. },
  60108. {
  60109. name: "Macro",
  60110. height: math.unit(200, "meters"),
  60111. allForms: true
  60112. },
  60113. {
  60114. name: "Mega",
  60115. height: math.unit(2.5, "km"),
  60116. allForms: true
  60117. },
  60118. {
  60119. name: "Mega+",
  60120. height: math.unit(30, "km"),
  60121. allForms: true
  60122. },
  60123. {
  60124. name: "Giga (Home Size)",
  60125. height: math.unit(400, "km"),
  60126. allForms: true,
  60127. default: true
  60128. },
  60129. {
  60130. name: "Giga+",
  60131. height: math.unit(2500, "km"),
  60132. allForms: true
  60133. },
  60134. {
  60135. name: "Giga++",
  60136. height: math.unit(8000, "km"),
  60137. allForms: true
  60138. },
  60139. {
  60140. name: "Terra",
  60141. height: math.unit(20000, "km"),
  60142. allForms: true
  60143. },
  60144. {
  60145. name: "Terra+",
  60146. height: math.unit(70000, "km"),
  60147. allForms: true
  60148. },
  60149. {
  60150. name: "Terra++",
  60151. height: math.unit(600000, "km"),
  60152. allForms: true
  60153. },
  60154. {
  60155. name: "Galactic",
  60156. height: math.unit(40, "galaxies"),
  60157. allForms: true
  60158. },
  60159. {
  60160. name: "Universal",
  60161. height: math.unit(40, "universes"),
  60162. allForms: true
  60163. },
  60164. ],
  60165. {
  60166. "hyena": {
  60167. name: "Hyena",
  60168. default: true
  60169. },
  60170. "shark": {
  60171. name: "Shark",
  60172. },
  60173. }
  60174. ))
  60175. characterMakers.push(() => makeCharacter(
  60176. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60177. {
  60178. anthro_front: {
  60179. height: math.unit(1.5, "meters"),
  60180. name: "Front",
  60181. image: {
  60182. source: "./media/characters/adelaide/anthro-front.svg",
  60183. extra: 860/783,
  60184. bottom: 60/920
  60185. },
  60186. form: "anthro",
  60187. default: true
  60188. },
  60189. hand: {
  60190. height: math.unit(0.65, "feet"),
  60191. name: "Hand",
  60192. image: {
  60193. source: "./media/characters/adelaide/hand.svg"
  60194. },
  60195. form: "anthro"
  60196. },
  60197. foot: {
  60198. height: math.unit(1.38 * 259 / 314, "feet"),
  60199. name: "Foot",
  60200. image: {
  60201. source: "./media/characters/adelaide/foot.svg",
  60202. extra: 259/259,
  60203. bottom: 55/314
  60204. },
  60205. form: "anthro"
  60206. },
  60207. feather: {
  60208. height: math.unit(0.85, "feet"),
  60209. name: "Feather",
  60210. image: {
  60211. source: "./media/characters/adelaide/feather.svg"
  60212. },
  60213. form: "anthro"
  60214. },
  60215. feral_side: {
  60216. height: math.unit(1, "meters"),
  60217. name: "Side",
  60218. image: {
  60219. source: "./media/characters/adelaide/feral-side.svg",
  60220. extra: 550/467,
  60221. bottom: 37/587
  60222. },
  60223. form: "feral",
  60224. default: true
  60225. },
  60226. feral_hand: {
  60227. height: math.unit(0.58, "feet"),
  60228. name: "Hand",
  60229. image: {
  60230. source: "./media/characters/adelaide/hand.svg"
  60231. },
  60232. form: "feral"
  60233. },
  60234. feral_foot: {
  60235. height: math.unit(1.2 * 259 / 314, "feet"),
  60236. name: "Foot",
  60237. image: {
  60238. source: "./media/characters/adelaide/foot.svg",
  60239. extra: 259/259,
  60240. bottom: 55/314
  60241. },
  60242. form: "feral"
  60243. },
  60244. feral_feather: {
  60245. height: math.unit(0.63, "feet"),
  60246. name: "Feather",
  60247. image: {
  60248. source: "./media/characters/adelaide/feather.svg"
  60249. },
  60250. form: "feral"
  60251. },
  60252. },
  60253. [
  60254. {
  60255. name: "Normal",
  60256. height: math.unit(1.5, "meters"),
  60257. form: "anthro",
  60258. default: true
  60259. },
  60260. {
  60261. name: "Normal",
  60262. height: math.unit(1, "meters"),
  60263. form: "feral",
  60264. default: true
  60265. },
  60266. ],
  60267. {
  60268. "anthro": {
  60269. name: "Anthro",
  60270. default: true
  60271. },
  60272. "feral": {
  60273. name: "Feral",
  60274. },
  60275. }
  60276. ))
  60277. characterMakers.push(() => makeCharacter(
  60278. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60279. {
  60280. front: {
  60281. height: math.unit(2.5, "meters"),
  60282. name: "Front",
  60283. image: {
  60284. source: "./media/characters/goa/front.svg",
  60285. extra: 1109/1013,
  60286. bottom: 150/1259
  60287. }
  60288. },
  60289. },
  60290. [
  60291. {
  60292. name: "Normal",
  60293. height: math.unit(2.5, "meters"),
  60294. default: true
  60295. },
  60296. ]
  60297. ))
  60298. characterMakers.push(() => makeCharacter(
  60299. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60300. {
  60301. front: {
  60302. height: math.unit(2, "meters"),
  60303. weight: math.unit(100, "kg"),
  60304. name: "Front",
  60305. image: {
  60306. source: "./media/characters/kiki-weavile/front.svg",
  60307. extra: 357/332,
  60308. bottom: 60/417
  60309. }
  60310. },
  60311. },
  60312. [
  60313. {
  60314. name: "Normal",
  60315. height: math.unit(2, "meters"),
  60316. default: true
  60317. },
  60318. ]
  60319. ))
  60320. characterMakers.push(() => makeCharacter(
  60321. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60322. {
  60323. side: {
  60324. height: math.unit(1.6, "meters"),
  60325. name: "Side",
  60326. image: {
  60327. source: "./media/characters/liza/side.svg",
  60328. extra: 943/915,
  60329. bottom: 72/1015
  60330. }
  60331. },
  60332. },
  60333. [
  60334. {
  60335. name: "Normal",
  60336. height: math.unit(1.6, "meters"),
  60337. default: true
  60338. },
  60339. ]
  60340. ))
  60341. characterMakers.push(() => makeCharacter(
  60342. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60343. {
  60344. side: {
  60345. height: math.unit(2.5, "meters"),
  60346. preyCapacity: math.unit(1, "people"),
  60347. name: "Side",
  60348. image: {
  60349. source: "./media/characters/persephone-sweetbreath/side.svg",
  60350. extra: 796/700,
  60351. bottom: 44/840
  60352. }
  60353. },
  60354. sideVore: {
  60355. height: math.unit(2.5, "meters"),
  60356. preyCapacity: math.unit(1, "people"),
  60357. name: "Side (Full)",
  60358. image: {
  60359. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60360. extra: 796/700,
  60361. bottom: 44/840
  60362. }
  60363. },
  60364. },
  60365. [
  60366. {
  60367. name: "Normal",
  60368. height: math.unit(2.5, "meters"),
  60369. default: true
  60370. },
  60371. ]
  60372. ))
  60373. characterMakers.push(() => makeCharacter(
  60374. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60375. {
  60376. front: {
  60377. height: math.unit(32, "meters"),
  60378. name: "Front",
  60379. image: {
  60380. source: "./media/characters/pierce/front.svg",
  60381. extra: 1695/1475,
  60382. bottom: 185/1880
  60383. }
  60384. },
  60385. side: {
  60386. height: math.unit(32, "meters"),
  60387. name: "Side",
  60388. image: {
  60389. source: "./media/characters/pierce/side.svg",
  60390. extra: 974/859,
  60391. bottom: 43/1017
  60392. }
  60393. },
  60394. frontWingless: {
  60395. height: math.unit(32, "meters"),
  60396. name: "Front (Wingless)",
  60397. image: {
  60398. source: "./media/characters/pierce/front-wingless.svg",
  60399. extra: 1695/1475,
  60400. bottom: 185/1880
  60401. }
  60402. },
  60403. sideWingless: {
  60404. height: math.unit(32, "meters"),
  60405. name: "Side (Wingless)",
  60406. image: {
  60407. source: "./media/characters/pierce/side-wingless.svg",
  60408. extra: 974/859,
  60409. bottom: 43/1017
  60410. }
  60411. },
  60412. maw: {
  60413. height: math.unit(19.3, "meters"),
  60414. name: "Maw",
  60415. image: {
  60416. source: "./media/characters/pierce/maw.svg"
  60417. }
  60418. },
  60419. },
  60420. [
  60421. {
  60422. name: "Small",
  60423. height: math.unit(8.5, "meters")
  60424. },
  60425. {
  60426. name: "Normal",
  60427. height: math.unit(32, "meters"),
  60428. default: true
  60429. },
  60430. ]
  60431. ))
  60432. characterMakers.push(() => makeCharacter(
  60433. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60434. {
  60435. front: {
  60436. height: math.unit(2.3, "meters"),
  60437. weight: math.unit(165, "kg"),
  60438. name: "Front",
  60439. image: {
  60440. source: "./media/characters/shira/front.svg",
  60441. extra: 924/919,
  60442. bottom: 17/941
  60443. },
  60444. form: "cobra",
  60445. default: true
  60446. },
  60447. back: {
  60448. height: math.unit(2.3, "meters"),
  60449. weight: math.unit(165, "kg"),
  60450. name: "Back",
  60451. image: {
  60452. source: "./media/characters/shira/back.svg",
  60453. extra: 928/922,
  60454. bottom: 18/946
  60455. },
  60456. form: "cobra"
  60457. },
  60458. frontLewd: {
  60459. height: math.unit(2.3, "meters"),
  60460. weight: math.unit(165, "kg"),
  60461. name: "Front (Lewd)",
  60462. image: {
  60463. source: "./media/characters/shira/front-lewd.svg",
  60464. extra: 924/919,
  60465. bottom: 17/941
  60466. },
  60467. form: "cobra"
  60468. },
  60469. backLewd: {
  60470. height: math.unit(2.3, "meters"),
  60471. weight: math.unit(165, "kg"),
  60472. name: "Back (Lewd)",
  60473. image: {
  60474. source: "./media/characters/shira/back-lewd.svg",
  60475. extra: 928/922,
  60476. bottom: 18/946
  60477. },
  60478. form: "cobra"
  60479. },
  60480. maw: {
  60481. height: math.unit(1.14, "feet"),
  60482. name: "Maw",
  60483. image: {
  60484. source: "./media/characters/shira/maw.svg"
  60485. },
  60486. form: "cobra"
  60487. },
  60488. magma_front: {
  60489. height: math.unit(2.3, "meters"),
  60490. weight: math.unit(165, "kg"),
  60491. name: "Front",
  60492. image: {
  60493. source: "./media/characters/shira/magma-front.svg",
  60494. extra: 1870/1693,
  60495. bottom: 24/1894
  60496. },
  60497. form: "magma",
  60498. },
  60499. magma_back: {
  60500. height: math.unit(2.3, "meters"),
  60501. weight: math.unit(165, "kg"),
  60502. name: "Back",
  60503. image: {
  60504. source: "./media/characters/shira/magma-back.svg",
  60505. extra: 1918/1756,
  60506. bottom: 46/1964
  60507. },
  60508. form: "magma",
  60509. },
  60510. },
  60511. [
  60512. {
  60513. name: "Incognito",
  60514. height: math.unit(2.3, "meters"),
  60515. allForms: true
  60516. },
  60517. {
  60518. name: "Home Size",
  60519. height: math.unit(150, "meters"),
  60520. default: true,
  60521. allForms: true
  60522. },
  60523. {
  60524. name: "Macro",
  60525. height: math.unit(2, "km"),
  60526. allForms: true
  60527. },
  60528. {
  60529. name: "Mega",
  60530. height: math.unit(30, "km"),
  60531. allForms: true
  60532. },
  60533. {
  60534. name: "Giga",
  60535. height: math.unit(450, "km"),
  60536. allForms: true
  60537. },
  60538. {
  60539. name: "Giga+",
  60540. height: math.unit(3000, "km"),
  60541. allForms: true
  60542. },
  60543. {
  60544. name: "Giga++",
  60545. height: math.unit(6000, "km"),
  60546. allForms: true
  60547. },
  60548. {
  60549. name: "Terra",
  60550. height: math.unit(80000, "km"),
  60551. allForms: true
  60552. },
  60553. {
  60554. name: "Terra+",
  60555. height: math.unit(350000, "km"),
  60556. allForms: true
  60557. },
  60558. {
  60559. name: "Solar",
  60560. height: math.unit(1e6, "km"),
  60561. allForms: true
  60562. },
  60563. ],
  60564. {
  60565. "cobra": {
  60566. name: "Cobra",
  60567. default: true
  60568. },
  60569. "magma": {
  60570. name: "Magma Dragon",
  60571. },
  60572. }
  60573. ))
  60574. characterMakers.push(() => makeCharacter(
  60575. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60576. {
  60577. front: {
  60578. height: math.unit(2, "meters"),
  60579. weight: math.unit(160, "kg"),
  60580. name: "Front",
  60581. image: {
  60582. source: "./media/characters/daxerios/front.svg",
  60583. extra: 1334/1277,
  60584. bottom: 45/1379
  60585. }
  60586. },
  60587. frontLewd: {
  60588. height: math.unit(2, "meters"),
  60589. weight: math.unit(160, "kg"),
  60590. name: "Front (Lewd)",
  60591. image: {
  60592. source: "./media/characters/daxerios/front-lewd.svg",
  60593. extra: 1334/1277,
  60594. bottom: 45/1379
  60595. }
  60596. },
  60597. dick: {
  60598. height: math.unit(2.35, "feet"),
  60599. name: "Dick",
  60600. image: {
  60601. source: "./media/characters/daxerios/dick.svg"
  60602. }
  60603. },
  60604. },
  60605. [
  60606. {
  60607. name: "\"Small\"",
  60608. height: math.unit(5, "meters")
  60609. },
  60610. {
  60611. name: "Original Size",
  60612. height: math.unit(500, "meters"),
  60613. default: true
  60614. },
  60615. {
  60616. name: "Mega",
  60617. height: math.unit(2, "km")
  60618. },
  60619. {
  60620. name: "Mega+",
  60621. height: math.unit(35, "km")
  60622. },
  60623. {
  60624. name: "Giga",
  60625. height: math.unit(250, "km")
  60626. },
  60627. {
  60628. name: "Giga+",
  60629. height: math.unit(3000, "km")
  60630. },
  60631. {
  60632. name: "Terra",
  60633. height: math.unit(25000, "km")
  60634. },
  60635. {
  60636. name: "Terra+",
  60637. height: math.unit(300000, "km")
  60638. },
  60639. {
  60640. name: "Solar",
  60641. height: math.unit(1e6, "km")
  60642. },
  60643. ]
  60644. ))
  60645. characterMakers.push(() => makeCharacter(
  60646. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60647. {
  60648. front: {
  60649. height: math.unit(8 + 4/12, "feet"),
  60650. weight: math.unit(464, "lb"),
  60651. name: "Front",
  60652. image: {
  60653. source: "./media/characters/caveat/front.svg",
  60654. extra: 1861/1678,
  60655. bottom: 40/1901
  60656. }
  60657. },
  60658. },
  60659. [
  60660. {
  60661. name: "Normal",
  60662. height: math.unit(8 + 4/12, "feet"),
  60663. default: true
  60664. },
  60665. ]
  60666. ))
  60667. characterMakers.push(() => makeCharacter(
  60668. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60669. {
  60670. front: {
  60671. height: math.unit(12, "feet"),
  60672. weight: math.unit(1800, "lb"),
  60673. name: "Front",
  60674. image: {
  60675. source: "./media/characters/centbair/front.svg",
  60676. extra: 781/663,
  60677. bottom: 25/806
  60678. }
  60679. },
  60680. frontNsfw: {
  60681. height: math.unit(12, "feet"),
  60682. weight: math.unit(1800, "lb"),
  60683. name: "Front (NSFW)",
  60684. image: {
  60685. source: "./media/characters/centbair/front-nsfw.svg",
  60686. extra: 781/663,
  60687. bottom: 25/806
  60688. }
  60689. },
  60690. back: {
  60691. height: math.unit(12, "feet"),
  60692. weight: math.unit(1800, "lb"),
  60693. name: "Back",
  60694. image: {
  60695. source: "./media/characters/centbair/back.svg",
  60696. extra: 808/761,
  60697. bottom: 19/827
  60698. }
  60699. },
  60700. dick: {
  60701. height: math.unit(6.5, "feet"),
  60702. name: "Dick",
  60703. image: {
  60704. source: "./media/characters/centbair/dick.svg"
  60705. }
  60706. },
  60707. slit: {
  60708. height: math.unit(3.25, "feet"),
  60709. name: "Slit",
  60710. image: {
  60711. source: "./media/characters/centbair/slit.svg"
  60712. }
  60713. },
  60714. },
  60715. [
  60716. {
  60717. name: "Normal",
  60718. height: math.unit(12, "feet"),
  60719. default: true
  60720. },
  60721. ]
  60722. ))
  60723. characterMakers.push(() => makeCharacter(
  60724. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60725. {
  60726. front: {
  60727. height: math.unit(5 + 7/12, "feet"),
  60728. name: "Front",
  60729. image: {
  60730. source: "./media/characters/andy/front.svg",
  60731. extra: 634/588,
  60732. bottom: 36/670
  60733. },
  60734. extraAttributes: {
  60735. "pawLength": {
  60736. name: "Paw Length",
  60737. power: 1,
  60738. type: "length",
  60739. base: math.unit(1, "feet")
  60740. },
  60741. }
  60742. },
  60743. side: {
  60744. height: math.unit(5 + 7/12, "feet"),
  60745. name: "Side",
  60746. image: {
  60747. source: "./media/characters/andy/side.svg",
  60748. extra: 641/596,
  60749. bottom: 34/675
  60750. },
  60751. extraAttributes: {
  60752. "pawLength": {
  60753. name: "Paw Length",
  60754. power: 1,
  60755. type: "length",
  60756. base: math.unit(1, "feet")
  60757. },
  60758. }
  60759. },
  60760. back: {
  60761. height: math.unit(5 + 7/12, "feet"),
  60762. name: "Back",
  60763. image: {
  60764. source: "./media/characters/andy/back.svg",
  60765. extra: 618/583,
  60766. bottom: 39/657
  60767. },
  60768. extraAttributes: {
  60769. "pawLength": {
  60770. name: "Paw Length",
  60771. power: 1,
  60772. type: "length",
  60773. base: math.unit(1, "feet")
  60774. },
  60775. }
  60776. },
  60777. paw: {
  60778. height: math.unit(1.13, "feet"),
  60779. name: "Paw",
  60780. image: {
  60781. source: "./media/characters/andy/paw.svg"
  60782. }
  60783. },
  60784. },
  60785. [
  60786. {
  60787. name: "Micro",
  60788. height: math.unit(4, "inches")
  60789. },
  60790. {
  60791. name: "Normal",
  60792. height: math.unit(5 + 7/12, "feet"),
  60793. default: true
  60794. },
  60795. {
  60796. name: "Macro",
  60797. height: math.unit(390.42, "feet")
  60798. },
  60799. ]
  60800. ))
  60801. characterMakers.push(() => makeCharacter(
  60802. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60803. {
  60804. front: {
  60805. height: math.unit(7, "feet"),
  60806. weight: math.unit(250, "lb"),
  60807. name: "Front",
  60808. image: {
  60809. source: "./media/characters/vix-titan/front.svg",
  60810. extra: 460/428,
  60811. bottom: 15/475
  60812. },
  60813. extraAttributes: {
  60814. "pawWidth": {
  60815. name: "Paw Width",
  60816. power: 1,
  60817. type: "length",
  60818. base: math.unit(0.75, "feet")
  60819. },
  60820. }
  60821. },
  60822. },
  60823. [
  60824. {
  60825. name: "Normal",
  60826. height: math.unit(7, "feet"),
  60827. default: true
  60828. },
  60829. {
  60830. name: "Giant",
  60831. height: math.unit(1500, "feet")
  60832. },
  60833. {
  60834. name: "Mega",
  60835. height: math.unit(10, "miles")
  60836. },
  60837. {
  60838. name: "Giga",
  60839. height: math.unit(150, "miles")
  60840. },
  60841. {
  60842. name: "Tera",
  60843. height: math.unit(144000, "miles")
  60844. },
  60845. ]
  60846. ))
  60847. characterMakers.push(() => makeCharacter(
  60848. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60849. {
  60850. front: {
  60851. height: math.unit(6 + 2/12, "feet"),
  60852. name: "Front",
  60853. image: {
  60854. source: "./media/characters/reiku/front.svg",
  60855. extra: 1910/1757,
  60856. bottom: 103/2013
  60857. },
  60858. extraAttributes: {
  60859. "thighThickness": {
  60860. name: "Thigh Thickness",
  60861. power: 1,
  60862. type: "length",
  60863. base: math.unit(1.12, "feet")
  60864. },
  60865. "assThickness": {
  60866. name: "Ass Thickness",
  60867. power: 1,
  60868. type: "length",
  60869. base: math.unit(1.12*2, "feet")
  60870. },
  60871. }
  60872. },
  60873. side: {
  60874. height: math.unit(6 + 2/12, "feet"),
  60875. name: "Side",
  60876. image: {
  60877. source: "./media/characters/reiku/side.svg",
  60878. extra: 1846/1748,
  60879. bottom: 99/1945
  60880. },
  60881. extraAttributes: {
  60882. "thighThickness": {
  60883. name: "Thigh Thickness",
  60884. power: 1,
  60885. type: "length",
  60886. base: math.unit(1.12, "feet")
  60887. },
  60888. "assThickness": {
  60889. name: "Ass Thickness",
  60890. power: 1,
  60891. type: "length",
  60892. base: math.unit(1.12*2, "feet")
  60893. },
  60894. }
  60895. },
  60896. back: {
  60897. height: math.unit(6 + 2/12, "feet"),
  60898. name: "Back",
  60899. image: {
  60900. source: "./media/characters/reiku/back.svg",
  60901. extra: 1941/1786,
  60902. bottom: 34/1975
  60903. },
  60904. extraAttributes: {
  60905. "thighThickness": {
  60906. name: "Thigh Thickness",
  60907. power: 1,
  60908. type: "length",
  60909. base: math.unit(1.12, "feet")
  60910. },
  60911. "assThickness": {
  60912. name: "Ass Thickness",
  60913. power: 1,
  60914. type: "length",
  60915. base: math.unit(1.12*2, "feet")
  60916. },
  60917. }
  60918. },
  60919. head: {
  60920. height: math.unit(1.8, "feet"),
  60921. name: "Head",
  60922. image: {
  60923. source: "./media/characters/reiku/head.svg"
  60924. }
  60925. },
  60926. tailTop: {
  60927. height: math.unit(8.4, "feet"),
  60928. name: "Tail (Top)",
  60929. image: {
  60930. source: "./media/characters/reiku/tail-top.svg"
  60931. }
  60932. },
  60933. tailBottom: {
  60934. height: math.unit(8.4, "feet"),
  60935. name: "Tail (Bottom)",
  60936. image: {
  60937. source: "./media/characters/reiku/tail-bottom.svg"
  60938. }
  60939. },
  60940. foot: {
  60941. height: math.unit(2.6, "feet"),
  60942. name: "Foot",
  60943. image: {
  60944. source: "./media/characters/reiku/foot.svg"
  60945. }
  60946. },
  60947. footCurled: {
  60948. height: math.unit(2.3, "feet"),
  60949. name: "Foot (Curled)",
  60950. image: {
  60951. source: "./media/characters/reiku/foot-curled.svg"
  60952. }
  60953. },
  60954. footSide: {
  60955. height: math.unit(1.26, "feet"),
  60956. name: "Foot (Side)",
  60957. image: {
  60958. source: "./media/characters/reiku/foot-side.svg"
  60959. }
  60960. },
  60961. },
  60962. [
  60963. {
  60964. name: "Normal",
  60965. height: math.unit(6 + 2/12, "feet"),
  60966. default: true
  60967. },
  60968. ]
  60969. ))
  60970. characterMakers.push(() => makeCharacter(
  60971. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60972. {
  60973. front: {
  60974. height: math.unit(7, "feet"),
  60975. weight: math.unit(500, "kg"),
  60976. name: "Front",
  60977. image: {
  60978. source: "./media/characters/cialda/front.svg",
  60979. extra: 912/745,
  60980. bottom: 55/967
  60981. }
  60982. },
  60983. },
  60984. [
  60985. {
  60986. name: "Normal",
  60987. height: math.unit(7, "feet"),
  60988. default: true
  60989. },
  60990. ]
  60991. ))
  60992. characterMakers.push(() => makeCharacter(
  60993. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60994. {
  60995. side: {
  60996. height: math.unit(6, "feet"),
  60997. weight: math.unit(600, "lb"),
  60998. preyCapacity: math.unit(25, "liters"),
  60999. name: "Side",
  61000. image: {
  61001. source: "./media/characters/darkkin/side.svg",
  61002. extra: 1597/1447,
  61003. bottom: 101/1698
  61004. }
  61005. },
  61006. },
  61007. [
  61008. {
  61009. name: "Canon Height",
  61010. height: math.unit(568, "feet"),
  61011. default: true
  61012. },
  61013. ]
  61014. ))
  61015. characterMakers.push(() => makeCharacter(
  61016. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  61017. {
  61018. front: {
  61019. height: math.unit(6, "feet"),
  61020. weight: math.unit(1500, "lb"),
  61021. preyCapacity: math.unit(3, "people"),
  61022. name: "Front",
  61023. image: {
  61024. source: "./media/characters/livnia/front.svg",
  61025. extra: 934/932,
  61026. bottom: 83/1017
  61027. }
  61028. },
  61029. back: {
  61030. height: math.unit(6, "feet"),
  61031. weight: math.unit(1500, "lb"),
  61032. preyCapacity: math.unit(3, "people"),
  61033. name: "Back",
  61034. image: {
  61035. source: "./media/characters/livnia/back.svg",
  61036. extra: 916/915,
  61037. bottom: 58/974
  61038. }
  61039. },
  61040. head: {
  61041. height: math.unit(1.53, "feet"),
  61042. name: "Head",
  61043. image: {
  61044. source: "./media/characters/livnia/head.svg"
  61045. }
  61046. },
  61047. maw: {
  61048. height: math.unit(0.78, "feet"),
  61049. name: "Maw",
  61050. image: {
  61051. source: "./media/characters/livnia/maw.svg"
  61052. }
  61053. },
  61054. genitals: {
  61055. height: math.unit(0.35, "feet"),
  61056. name: "Genitals",
  61057. image: {
  61058. source: "./media/characters/livnia/genitals.svg"
  61059. }
  61060. },
  61061. },
  61062. [
  61063. {
  61064. name: "Normal",
  61065. height: math.unit(1000, "feet"),
  61066. default: true
  61067. },
  61068. ]
  61069. ))
  61070. characterMakers.push(() => makeCharacter(
  61071. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61072. {
  61073. front: {
  61074. height: math.unit(4, "feet"),
  61075. weight: math.unit(73, "lb"),
  61076. name: "Front",
  61077. image: {
  61078. source: "./media/characters/hayaku/front.svg",
  61079. extra: 1011/888,
  61080. bottom: 33/1044
  61081. }
  61082. },
  61083. back: {
  61084. height: math.unit(4, "feet"),
  61085. weight: math.unit(73, "lb"),
  61086. name: "Back",
  61087. image: {
  61088. source: "./media/characters/hayaku/back.svg",
  61089. extra: 1040/930,
  61090. bottom: 20/1060
  61091. }
  61092. },
  61093. },
  61094. [
  61095. {
  61096. name: "Normal",
  61097. height: math.unit(4, "feet"),
  61098. default: true
  61099. },
  61100. ]
  61101. ))
  61102. characterMakers.push(() => makeCharacter(
  61103. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61104. {
  61105. front: {
  61106. height: math.unit(6 + 7/12, "feet"),
  61107. weight: math.unit(300, "lb"),
  61108. name: "Front",
  61109. image: {
  61110. source: "./media/characters/athena-bryzant/front.svg",
  61111. extra: 870/835,
  61112. bottom: 33/903
  61113. }
  61114. },
  61115. back: {
  61116. height: math.unit(6 + 7/12, "feet"),
  61117. weight: math.unit(300, "lb"),
  61118. name: "Back",
  61119. image: {
  61120. source: "./media/characters/athena-bryzant/back.svg",
  61121. extra: 858/823,
  61122. bottom: 30/888
  61123. }
  61124. },
  61125. head: {
  61126. height: math.unit(2.38, "feet"),
  61127. name: "Head",
  61128. image: {
  61129. source: "./media/characters/athena-bryzant/head.svg"
  61130. }
  61131. },
  61132. wings: {
  61133. height: math.unit(2.85, "feet"),
  61134. name: "Wings",
  61135. image: {
  61136. source: "./media/characters/athena-bryzant/wings.svg"
  61137. }
  61138. },
  61139. },
  61140. [
  61141. {
  61142. name: "Normal",
  61143. height: math.unit(6 + 7/12, "feet"),
  61144. default: true
  61145. },
  61146. {
  61147. name: "Big",
  61148. height: math.unit(8, "feet")
  61149. },
  61150. {
  61151. name: "Very Big",
  61152. height: math.unit(11, "feet")
  61153. },
  61154. ]
  61155. ))
  61156. characterMakers.push(() => makeCharacter(
  61157. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61158. {
  61159. side: {
  61160. height: math.unit(3, "meters"),
  61161. weight: math.unit(7500, "kg"),
  61162. preyCapacity: math.unit(1e12, "people"),
  61163. name: "Side",
  61164. image: {
  61165. source: "./media/characters/zel-kesh/side.svg",
  61166. extra: 910/407,
  61167. bottom: 147/1057
  61168. }
  61169. },
  61170. },
  61171. [
  61172. {
  61173. name: "Normal",
  61174. height: math.unit(3, "meters"),
  61175. default: true
  61176. },
  61177. ]
  61178. ))
  61179. characterMakers.push(() => makeCharacter(
  61180. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61181. {
  61182. front: {
  61183. height: math.unit(2, "meters"),
  61184. weight: math.unit(95, "kg"),
  61185. name: "Front",
  61186. image: {
  61187. source: "./media/characters/kane-fox/front.svg",
  61188. extra: 945/888,
  61189. bottom: 27/972
  61190. }
  61191. },
  61192. back: {
  61193. height: math.unit(2, "meters"),
  61194. weight: math.unit(95, "kg"),
  61195. name: "Back",
  61196. image: {
  61197. source: "./media/characters/kane-fox/back.svg",
  61198. extra: 959/914,
  61199. bottom: 15/974
  61200. }
  61201. },
  61202. frontLewd: {
  61203. height: math.unit(2, "meters"),
  61204. weight: math.unit(95, "kg"),
  61205. name: "Front (Lewd)",
  61206. image: {
  61207. source: "./media/characters/kane-fox/front-lewd.svg",
  61208. extra: 945/888,
  61209. bottom: 27/972
  61210. }
  61211. },
  61212. },
  61213. [
  61214. {
  61215. name: "Home Size",
  61216. height: math.unit(2, "meters"),
  61217. default: true
  61218. },
  61219. {
  61220. name: "Macro",
  61221. height: math.unit(200, "meters")
  61222. },
  61223. {
  61224. name: "Small Mega",
  61225. height: math.unit(3, "km")
  61226. },
  61227. {
  61228. name: "Mega",
  61229. height: math.unit(50, "km")
  61230. },
  61231. {
  61232. name: "Giga",
  61233. height: math.unit(200, "km")
  61234. },
  61235. {
  61236. name: "Giga+",
  61237. height: math.unit(2500, "km")
  61238. },
  61239. {
  61240. name: "Terra",
  61241. height: math.unit(70000, "km")
  61242. },
  61243. {
  61244. name: "Terra+",
  61245. height: math.unit(150000, "km")
  61246. },
  61247. {
  61248. name: "Terra++",
  61249. height: math.unit(400000, "km")
  61250. },
  61251. ]
  61252. ))
  61253. characterMakers.push(() => makeCharacter(
  61254. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61255. {
  61256. otter_front: {
  61257. height: math.unit(1.8, "meters"),
  61258. weight: math.unit(90, "kg"),
  61259. name: "Front",
  61260. image: {
  61261. source: "./media/characters/ayranus/otter-front.svg",
  61262. extra: 468/452,
  61263. bottom: 43/511
  61264. },
  61265. form: "otter",
  61266. },
  61267. otter_frontLewd: {
  61268. height: math.unit(1.8, "meters"),
  61269. weight: math.unit(90, "kg"),
  61270. name: "Front (Lewd)",
  61271. image: {
  61272. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61273. extra: 468/452,
  61274. bottom: 43/511
  61275. },
  61276. form: "otter",
  61277. },
  61278. lionbat_front: {
  61279. height: math.unit(1.8, "meters"),
  61280. weight: math.unit(90, "kg"),
  61281. name: "Front (Lewd)",
  61282. image: {
  61283. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61284. extra: 797/740,
  61285. bottom: 78/875
  61286. },
  61287. form: "lionbat",
  61288. },
  61289. paw: {
  61290. height: math.unit(1.5, "feet"),
  61291. name: "Paw",
  61292. image: {
  61293. source: "./media/characters/ayranus/paw.svg"
  61294. },
  61295. },
  61296. },
  61297. [
  61298. {
  61299. name: "Incognito",
  61300. height: math.unit(1.8, "meters"),
  61301. allForms: true
  61302. },
  61303. {
  61304. name: "Macro",
  61305. height: math.unit(60, "meters"),
  61306. allForms: true
  61307. },
  61308. {
  61309. name: "Macro+",
  61310. height: math.unit(200, "meters"),
  61311. allForms: true
  61312. },
  61313. {
  61314. name: "Mega",
  61315. height: math.unit(35, "km"),
  61316. allForms: true
  61317. },
  61318. {
  61319. name: "Giga",
  61320. height: math.unit(220, "km"),
  61321. allForms: true
  61322. },
  61323. {
  61324. name: "Giga+",
  61325. height: math.unit(1500, "km"),
  61326. allForms: true
  61327. },
  61328. {
  61329. name: "Terra",
  61330. height: math.unit(13000, "km"),
  61331. allForms: true
  61332. },
  61333. {
  61334. name: "Terra+",
  61335. height: math.unit(500000, "km"),
  61336. allForms: true
  61337. },
  61338. {
  61339. name: "Galactic",
  61340. height: math.unit(486080, "parsecs"),
  61341. default: true,
  61342. allForms: true
  61343. },
  61344. ],
  61345. {
  61346. "otter": {
  61347. name: "Otter",
  61348. default: true
  61349. },
  61350. "lionbat": {
  61351. name: "Lionbat",
  61352. },
  61353. }
  61354. ))
  61355. characterMakers.push(() => makeCharacter(
  61356. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61357. {
  61358. front: {
  61359. height: math.unit(7 + 4/12, "feet"),
  61360. weight: math.unit(400, "lb"),
  61361. name: "Front",
  61362. image: {
  61363. source: "./media/characters/proxy/front.svg",
  61364. extra: 1605/1542,
  61365. bottom: 55/1660
  61366. }
  61367. },
  61368. side: {
  61369. height: math.unit(7 + 4/12, "feet"),
  61370. weight: math.unit(400, "lb"),
  61371. name: "Side",
  61372. image: {
  61373. source: "./media/characters/proxy/side.svg",
  61374. extra: 794/759,
  61375. bottom: 6/800
  61376. }
  61377. },
  61378. hand: {
  61379. height: math.unit(1.54, "feet"),
  61380. name: "Hand",
  61381. image: {
  61382. source: "./media/characters/proxy/hand.svg"
  61383. }
  61384. },
  61385. paw: {
  61386. height: math.unit(1.53, "feet"),
  61387. name: "Paw",
  61388. image: {
  61389. source: "./media/characters/proxy/paw.svg"
  61390. }
  61391. },
  61392. maw: {
  61393. height: math.unit(1.9, "feet"),
  61394. name: "Maw",
  61395. image: {
  61396. source: "./media/characters/proxy/maw.svg"
  61397. }
  61398. },
  61399. },
  61400. [
  61401. {
  61402. name: "Normal",
  61403. height: math.unit(7 + 4/12, "feet"),
  61404. default: true
  61405. },
  61406. ]
  61407. ))
  61408. characterMakers.push(() => makeCharacter(
  61409. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61410. {
  61411. front: {
  61412. height: math.unit(4, "meters"),
  61413. name: "Front",
  61414. image: {
  61415. source: "./media/characters/crocozilla/front.svg",
  61416. extra: 1790/1742,
  61417. bottom: 78/1868
  61418. }
  61419. },
  61420. },
  61421. [
  61422. {
  61423. name: "Normal",
  61424. height: math.unit(4, "meters"),
  61425. default: true
  61426. },
  61427. ]
  61428. ))
  61429. characterMakers.push(() => makeCharacter(
  61430. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61431. {
  61432. front: {
  61433. height: math.unit(1.8, "meters"),
  61434. weight: math.unit(120, "kg"),
  61435. name: "Front",
  61436. image: {
  61437. source: "./media/characters/kurz/front.svg",
  61438. extra: 1960/1824,
  61439. bottom: 41/2001
  61440. }
  61441. },
  61442. back: {
  61443. height: math.unit(1.8, "meters"),
  61444. weight: math.unit(120, "kg"),
  61445. name: "Back",
  61446. image: {
  61447. source: "./media/characters/kurz/back.svg",
  61448. extra: 1906/1787,
  61449. bottom: 60/1966
  61450. }
  61451. },
  61452. frontLewd: {
  61453. height: math.unit(1.8, "meters"),
  61454. weight: math.unit(120, "kg"),
  61455. name: "Front (Lewd)",
  61456. image: {
  61457. source: "./media/characters/kurz/front-lewd.svg",
  61458. extra: 1960/1824,
  61459. bottom: 41/2001
  61460. }
  61461. },
  61462. maw: {
  61463. height: math.unit(0.69, "meters"),
  61464. name: "Maw",
  61465. image: {
  61466. source: "./media/characters/kurz/maw.svg"
  61467. }
  61468. },
  61469. },
  61470. [
  61471. {
  61472. name: "Original Size",
  61473. height: math.unit(1.8, "meters")
  61474. },
  61475. {
  61476. name: "Incognito Size",
  61477. height: math.unit(2.4, "meters"),
  61478. default: true
  61479. },
  61480. {
  61481. name: "Macro",
  61482. height: math.unit(30, "meters")
  61483. },
  61484. {
  61485. name: "Macro+",
  61486. height: math.unit(250, "meters")
  61487. },
  61488. {
  61489. name: "Mega",
  61490. height: math.unit(2, "km")
  61491. },
  61492. {
  61493. name: "Mega+",
  61494. height: math.unit(35, "km")
  61495. },
  61496. {
  61497. name: "Mega++",
  61498. height: math.unit(75, "km")
  61499. },
  61500. {
  61501. name: "Giga",
  61502. height: math.unit(250, "km")
  61503. },
  61504. {
  61505. name: "Terra",
  61506. height: math.unit(15000, "km")
  61507. },
  61508. {
  61509. name: "Terra+",
  61510. height: math.unit(2250000, "km")
  61511. },
  61512. ]
  61513. ))
  61514. characterMakers.push(() => makeCharacter(
  61515. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61516. {
  61517. front: {
  61518. height: math.unit(16 + 3/12, "feet"),
  61519. weight: math.unit(3575, "lb"),
  61520. name: "Front",
  61521. image: {
  61522. source: "./media/characters/nikita/front.svg",
  61523. extra: 1064/955,
  61524. bottom: 47/1111
  61525. }
  61526. },
  61527. },
  61528. [
  61529. {
  61530. name: "Normal",
  61531. height: math.unit(16 + 3/12, "feet"),
  61532. default: true
  61533. },
  61534. {
  61535. name: "Big",
  61536. height: math.unit(21, "feet")
  61537. },
  61538. {
  61539. name: "Biggest",
  61540. height: math.unit(50, "feet")
  61541. },
  61542. ]
  61543. ))
  61544. characterMakers.push(() => makeCharacter(
  61545. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61546. {
  61547. front: {
  61548. height: math.unit(1.92, "m"),
  61549. weight: math.unit(76, "kg"),
  61550. name: "Front",
  61551. image: {
  61552. source: "./media/characters/kyara/front.svg",
  61553. extra: 1550/1438,
  61554. bottom: 139/1689
  61555. }
  61556. },
  61557. back: {
  61558. height: math.unit(1.92, "m"),
  61559. weight: math.unit(76, "kg"),
  61560. name: "Back",
  61561. image: {
  61562. source: "./media/characters/kyara/back.svg",
  61563. extra: 1523/1427,
  61564. bottom: 83/1606
  61565. }
  61566. },
  61567. head: {
  61568. height: math.unit(1.22, "feet"),
  61569. name: "Head",
  61570. image: {
  61571. source: "./media/characters/kyara/head.svg"
  61572. }
  61573. },
  61574. maw: {
  61575. height: math.unit(0.73, "feet"),
  61576. name: "Maw",
  61577. image: {
  61578. source: "./media/characters/kyara/maw.svg"
  61579. }
  61580. },
  61581. paws: {
  61582. height: math.unit(0.95, "feet"),
  61583. name: "Paws",
  61584. image: {
  61585. source: "./media/characters/kyara/paws.svg"
  61586. }
  61587. },
  61588. },
  61589. [
  61590. {
  61591. name: "Normal",
  61592. height: math.unit(1.92, "meters"),
  61593. default: true
  61594. },
  61595. {
  61596. name: "Mini Macro",
  61597. height: math.unit(192, "meters")
  61598. },
  61599. {
  61600. name: "Macro",
  61601. height: math.unit(480, "meters")
  61602. },
  61603. {
  61604. name: "Mega Macro",
  61605. height: math.unit(1440, "meters")
  61606. },
  61607. ]
  61608. ))
  61609. characterMakers.push(() => makeCharacter(
  61610. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61611. {
  61612. front: {
  61613. height: math.unit(6, "feet"),
  61614. weight: math.unit(160, "lbs"),
  61615. preyCapacity: math.unit(0.05, "people"),
  61616. name: "Front",
  61617. image: {
  61618. source: "./media/characters/layla-amari/front.svg",
  61619. extra: 1922/1723,
  61620. bottom: 90/2012
  61621. }
  61622. },
  61623. back: {
  61624. height: math.unit(6, "feet"),
  61625. weight: math.unit(160, "lbs"),
  61626. preyCapacity: math.unit(0.05, "people"),
  61627. name: "Back",
  61628. image: {
  61629. source: "./media/characters/layla-amari/back.svg",
  61630. extra: 1917/1718,
  61631. bottom: 50/1967
  61632. }
  61633. },
  61634. frontDressed: {
  61635. height: math.unit(6, "feet"),
  61636. weight: math.unit(160, "lbs"),
  61637. preyCapacity: math.unit(0.05, "people"),
  61638. name: "Front (Dressed)",
  61639. image: {
  61640. source: "./media/characters/layla-amari/front-dressed.svg",
  61641. extra: 1922/1723,
  61642. bottom: 90/2012
  61643. }
  61644. },
  61645. face: {
  61646. height: math.unit(0.93, "feet"),
  61647. name: "Face",
  61648. image: {
  61649. source: "./media/characters/layla-amari/face.svg"
  61650. }
  61651. },
  61652. hand: {
  61653. height: math.unit(0.66 , "feet"),
  61654. name: "Hand",
  61655. image: {
  61656. source: "./media/characters/layla-amari/hand.svg"
  61657. }
  61658. },
  61659. foot: {
  61660. height: math.unit(1, "feet"),
  61661. name: "Foot",
  61662. image: {
  61663. source: "./media/characters/layla-amari/foot.svg"
  61664. }
  61665. },
  61666. necklace: {
  61667. height: math.unit(0.32, "feet"),
  61668. name: "Necklace",
  61669. image: {
  61670. source: "./media/characters/layla-amari/necklace.svg"
  61671. }
  61672. },
  61673. nipple: {
  61674. height: math.unit(0.2, "feet"),
  61675. name: "Nipple",
  61676. image: {
  61677. source: "./media/characters/layla-amari/nipple.svg"
  61678. }
  61679. },
  61680. slit: {
  61681. height: math.unit(0.26, "feet"),
  61682. name: "Slit",
  61683. image: {
  61684. source: "./media/characters/layla-amari/slit.svg"
  61685. }
  61686. },
  61687. },
  61688. [
  61689. {
  61690. name: "Natural",
  61691. height: math.unit(825, "feet"),
  61692. default: true
  61693. },
  61694. {
  61695. name: "Enhanced",
  61696. height: math.unit(8250, "feet")
  61697. },
  61698. {
  61699. name: "Apparent Size",
  61700. height: math.unit(9.04363e+8, "meters")
  61701. },
  61702. ]
  61703. ))
  61704. characterMakers.push(() => makeCharacter(
  61705. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61706. {
  61707. front: {
  61708. height: math.unit(1.3, "meters"),
  61709. name: "Front",
  61710. image: {
  61711. source: "./media/characters/percy/front.svg",
  61712. extra: 1444/1289,
  61713. bottom: 54/1498
  61714. }
  61715. },
  61716. },
  61717. [
  61718. {
  61719. name: "Normal",
  61720. height: math.unit(1.3, "meters"),
  61721. default: true
  61722. },
  61723. ]
  61724. ))
  61725. characterMakers.push(() => makeCharacter(
  61726. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61727. {
  61728. side: {
  61729. height: math.unit(10, "meters"),
  61730. name: "Side",
  61731. image: {
  61732. source: "./media/characters/grev/side.svg",
  61733. extra: 653/266,
  61734. bottom: 77/730
  61735. }
  61736. },
  61737. head: {
  61738. height: math.unit(16.2, "m"),
  61739. name: "Head",
  61740. image: {
  61741. source: "./media/characters/grev/head.svg"
  61742. }
  61743. },
  61744. dick: {
  61745. height: math.unit(2.8135932034, "m"),
  61746. name: "Dick",
  61747. image: {
  61748. source: "./media/characters/grev/dick.svg"
  61749. }
  61750. },
  61751. },
  61752. [
  61753. {
  61754. name: "Friend-Sized",
  61755. height: math.unit(80, "cm")
  61756. },
  61757. {
  61758. name: "Normal",
  61759. height: math.unit(10, "meters"),
  61760. default: true
  61761. },
  61762. {
  61763. name: "Macro",
  61764. height: math.unit(200, "meters")
  61765. },
  61766. ]
  61767. ))
  61768. characterMakers.push(() => makeCharacter(
  61769. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61770. {
  61771. front: {
  61772. height: math.unit(19.75, "feet"),
  61773. weight: math.unit(20000, "lb"),
  61774. name: "Front",
  61775. image: {
  61776. source: "./media/characters/azuuca/front.svg",
  61777. extra: 1593/1511,
  61778. bottom: 55/1648
  61779. }
  61780. },
  61781. },
  61782. [
  61783. {
  61784. name: "Normal",
  61785. height: math.unit(19.75, "feet"),
  61786. default: true
  61787. },
  61788. ]
  61789. ))
  61790. characterMakers.push(() => makeCharacter(
  61791. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61792. {
  61793. front: {
  61794. height: math.unit(15, "feet"),
  61795. weight: math.unit(1500, "lb"),
  61796. name: "Front",
  61797. image: {
  61798. source: "./media/characters/valuria/front.svg",
  61799. extra: 1588/1486,
  61800. bottom: 31/1619
  61801. }
  61802. },
  61803. },
  61804. [
  61805. {
  61806. name: "Normal",
  61807. height: math.unit(15, "feet"),
  61808. default: true
  61809. },
  61810. {
  61811. name: "Small",
  61812. height: math.unit(500, "feet")
  61813. },
  61814. {
  61815. name: "Macro",
  61816. height: math.unit(4000, "feet")
  61817. },
  61818. {
  61819. name: "Mega Macro",
  61820. height: math.unit(2000, "miles")
  61821. },
  61822. {
  61823. name: "Giga Macro",
  61824. height: math.unit(3e6, "miles")
  61825. },
  61826. ]
  61827. ))
  61828. characterMakers.push(() => makeCharacter(
  61829. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61830. {
  61831. front: {
  61832. height: math.unit(3500, "solarradii"),
  61833. name: "Front",
  61834. image: {
  61835. source: "./media/characters/terigaia/front.svg",
  61836. extra: 1531/1451,
  61837. bottom: 98/1629
  61838. }
  61839. },
  61840. },
  61841. [
  61842. {
  61843. name: "Normal",
  61844. height: math.unit(3500, "solarradii"),
  61845. default: true
  61846. },
  61847. ]
  61848. ))
  61849. characterMakers.push(() => makeCharacter(
  61850. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61851. {
  61852. front: {
  61853. height: math.unit(9.34, "feet"),
  61854. weight: math.unit(600, "lb"),
  61855. name: "Front",
  61856. image: {
  61857. source: "./media/characters/blair-blaziken/front.svg",
  61858. extra: 1557/1462,
  61859. bottom: 55/1612
  61860. }
  61861. },
  61862. },
  61863. [
  61864. {
  61865. name: "Normal",
  61866. height: math.unit(9.34, "feet"),
  61867. default: true
  61868. },
  61869. ]
  61870. ))
  61871. characterMakers.push(() => makeCharacter(
  61872. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61873. {
  61874. pistrogre_front: {
  61875. height: math.unit(10, "feet"),
  61876. weight: math.unit(10, "tons"),
  61877. name: "Front",
  61878. image: {
  61879. source: "./media/characters/braxia/pistrogre-front.svg",
  61880. extra: 1531/1334,
  61881. bottom: 114/1645
  61882. },
  61883. form: "pistrogre",
  61884. default: true
  61885. },
  61886. human_front: {
  61887. height: math.unit(10, "feet"),
  61888. weight: math.unit(10, "tons"),
  61889. name: "Front",
  61890. image: {
  61891. source: "./media/characters/braxia/human-front.svg",
  61892. extra: 1574/1501,
  61893. bottom: 37/1611
  61894. },
  61895. form: "human",
  61896. default: true
  61897. },
  61898. },
  61899. [
  61900. {
  61901. name: "Normal",
  61902. height: math.unit(10, "feet"),
  61903. default: true,
  61904. allForms: true
  61905. },
  61906. {
  61907. name: "Macro",
  61908. height: math.unit(1000, "feet"),
  61909. allForms: true
  61910. },
  61911. {
  61912. name: "Mega Macro",
  61913. height: math.unit(100, "miles"),
  61914. allForms: true
  61915. },
  61916. {
  61917. name: "Cosmic",
  61918. height: math.unit(1000000, "lightyears"),
  61919. allForms: true
  61920. },
  61921. {
  61922. name: "ϐѮԆԬӁꭍϞԢ",
  61923. height: math.unit(1000, "multiverses"),
  61924. allForms: true
  61925. },
  61926. ],
  61927. {
  61928. "pistrogre": {
  61929. name: "Pistrogre",
  61930. default: true
  61931. },
  61932. "human": {
  61933. name: "Human",
  61934. },
  61935. }
  61936. ))
  61937. characterMakers.push(() => makeCharacter(
  61938. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61939. {
  61940. front: {
  61941. height: math.unit(6 + 1/12, "feet"),
  61942. weight: math.unit(280, "lb"),
  61943. name: "Front",
  61944. image: {
  61945. source: "./media/characters/kiriga-yato/front.svg",
  61946. extra: 445/394,
  61947. bottom: 11/456
  61948. }
  61949. },
  61950. },
  61951. [
  61952. {
  61953. name: "Descended",
  61954. height: math.unit(3, "feet")
  61955. },
  61956. {
  61957. name: "Average",
  61958. height: math.unit(6 + 1/12, "feet"),
  61959. default: true
  61960. },
  61961. {
  61962. name: "Ascended",
  61963. height: math.unit(9 + 2/12, "feet")
  61964. },
  61965. ]
  61966. ))
  61967. characterMakers.push(() => makeCharacter(
  61968. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61969. {
  61970. front: {
  61971. height: math.unit(6, "feet"),
  61972. weight: math.unit(150, "lb"),
  61973. name: "Front",
  61974. image: {
  61975. source: "./media/characters/kylie/front.svg",
  61976. extra: 1114/1046,
  61977. bottom: 65/1179
  61978. },
  61979. extraAttributes: {
  61980. "hoofSize": {
  61981. name: "Hoof Size",
  61982. power: 2,
  61983. type: "area",
  61984. base: math.unit(0.034, "m^2")
  61985. },
  61986. "footSize": {
  61987. name: "Foot Size",
  61988. power: 2,
  61989. type: "area",
  61990. base: math.unit(0.75, "m^2")
  61991. },
  61992. }
  61993. },
  61994. side: {
  61995. height: math.unit(6, "feet"),
  61996. weight: math.unit(150, "lb"),
  61997. name: "Side",
  61998. image: {
  61999. source: "./media/characters/kylie/side.svg",
  62000. extra: 1178/1110,
  62001. bottom: 21/1199
  62002. },
  62003. extraAttributes: {
  62004. "hoofSize": {
  62005. name: "Hoof Size",
  62006. power: 2,
  62007. type: "area",
  62008. base: math.unit(0.034, "m^2")
  62009. },
  62010. "footSize": {
  62011. name: "Foot Size",
  62012. power: 2,
  62013. type: "area",
  62014. base: math.unit(0.75, "m^2")
  62015. },
  62016. }
  62017. },
  62018. back: {
  62019. height: math.unit(6, "feet"),
  62020. weight: math.unit(150, "lb"),
  62021. name: "Back",
  62022. image: {
  62023. source: "./media/characters/kylie/back.svg",
  62024. extra: 1115/1047,
  62025. bottom: 66/1181
  62026. },
  62027. extraAttributes: {
  62028. "hoofSize": {
  62029. name: "Hoof Size",
  62030. power: 2,
  62031. type: "area",
  62032. base: math.unit(0.034, "m^2")
  62033. },
  62034. "footSize": {
  62035. name: "Foot Size",
  62036. power: 2,
  62037. type: "area",
  62038. base: math.unit(0.75, "m^2")
  62039. },
  62040. }
  62041. },
  62042. head: {
  62043. height: math.unit(1.85, "feet"),
  62044. name: "Head",
  62045. image: {
  62046. source: "./media/characters/kylie/head.svg"
  62047. }
  62048. },
  62049. },
  62050. [
  62051. {
  62052. name: "Normal",
  62053. height: math.unit(90, "meters"),
  62054. default: true
  62055. },
  62056. ]
  62057. ))
  62058. characterMakers.push(() => makeCharacter(
  62059. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  62060. {
  62061. front: {
  62062. height: math.unit(245, "feet"),
  62063. weight: math.unit(400000, "lb"),
  62064. name: "Front",
  62065. image: {
  62066. source: "./media/characters/sabado/front.svg",
  62067. extra: 1309/1164,
  62068. bottom: 29/1338
  62069. }
  62070. },
  62071. },
  62072. [
  62073. {
  62074. name: "Normal",
  62075. height: math.unit(245, "feet"),
  62076. default: true
  62077. },
  62078. ]
  62079. ))
  62080. characterMakers.push(() => makeCharacter(
  62081. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62082. {
  62083. shark_front: {
  62084. height: math.unit(2, "meters"),
  62085. weight: math.unit(200, "kg"),
  62086. name: "Front",
  62087. image: {
  62088. source: "./media/characters/zechal/shark-front.svg",
  62089. extra: 969/925,
  62090. bottom: 74/1043
  62091. },
  62092. form: "shark",
  62093. },
  62094. shark_back: {
  62095. height: math.unit(2, "meters"),
  62096. weight: math.unit(200, "kg"),
  62097. name: "Back",
  62098. image: {
  62099. source: "./media/characters/zechal/shark-back.svg",
  62100. extra: 994/949,
  62101. bottom: 176/1170
  62102. },
  62103. form: "shark",
  62104. },
  62105. shark_frontLewd: {
  62106. height: math.unit(2, "meters"),
  62107. weight: math.unit(200, "kg"),
  62108. name: "Front (Lewd)",
  62109. image: {
  62110. source: "./media/characters/zechal/shark-front-lewd.svg",
  62111. extra: 969/925,
  62112. bottom: 74/1043
  62113. },
  62114. form: "shark",
  62115. },
  62116. shark_side: {
  62117. height: math.unit(1.56, "meters"),
  62118. weight: math.unit(200, "kg"),
  62119. name: "Side",
  62120. image: {
  62121. source: "./media/characters/zechal/shark-side.svg"
  62122. },
  62123. form: "shark",
  62124. },
  62125. dragon_front: {
  62126. height: math.unit(2, "meters"),
  62127. weight: math.unit(200, "kg"),
  62128. name: "Front",
  62129. image: {
  62130. source: "./media/characters/zechal/dragon-front.svg",
  62131. extra: 1041/925,
  62132. bottom: 74/1115
  62133. },
  62134. form: "dragon",
  62135. },
  62136. dragon_back: {
  62137. height: math.unit(2, "meters"),
  62138. weight: math.unit(200, "kg"),
  62139. name: "Back",
  62140. image: {
  62141. source: "./media/characters/zechal/dragon-back.svg",
  62142. extra: 1061/949,
  62143. bottom: 176/1237
  62144. },
  62145. form: "dragon",
  62146. },
  62147. dragon_frontLewd: {
  62148. height: math.unit(2, "meters"),
  62149. weight: math.unit(200, "kg"),
  62150. name: "Front (Lewd)",
  62151. image: {
  62152. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62153. extra: 1041/925,
  62154. bottom: 74/1115
  62155. },
  62156. form: "dragon",
  62157. },
  62158. dragon_side: {
  62159. height: math.unit(1.56, "meters"),
  62160. weight: math.unit(200, "kg"),
  62161. name: "Side",
  62162. image: {
  62163. source: "./media/characters/zechal/dragon-side.svg"
  62164. },
  62165. form: "dragon",
  62166. },
  62167. foot: {
  62168. height: math.unit(0.5, "meters"),
  62169. name: "Foot",
  62170. image: {
  62171. source: "./media/characters/zechal/foot.svg"
  62172. }
  62173. },
  62174. sheathFront: {
  62175. height: math.unit(0.45, "meters"),
  62176. name: "Sheath (Front)",
  62177. image: {
  62178. source: "./media/characters/zechal/sheath-front.svg"
  62179. }
  62180. },
  62181. sheathSide: {
  62182. height: math.unit(0.45, "meters"),
  62183. name: "Sheath (Side)",
  62184. image: {
  62185. source: "./media/characters/zechal/sheath-side.svg"
  62186. }
  62187. },
  62188. },
  62189. [
  62190. {
  62191. name: "Incognito",
  62192. height: math.unit(2, "meters"),
  62193. allForms: true
  62194. },
  62195. {
  62196. name: "Small Rampage",
  62197. height: math.unit(25, "meters"),
  62198. allForms: true
  62199. },
  62200. {
  62201. name: "Home Size",
  62202. height: math.unit(250, "meters"),
  62203. allForms: true,
  62204. default: true
  62205. },
  62206. {
  62207. name: "Macro+",
  62208. height: math.unit(700, "meters"),
  62209. allForms: true
  62210. },
  62211. {
  62212. name: "Small Mega",
  62213. height: math.unit(3, "km"),
  62214. allForms: true
  62215. },
  62216. {
  62217. name: "Mega",
  62218. height: math.unit(15, "km"),
  62219. allForms: true
  62220. },
  62221. {
  62222. name: "Giga",
  62223. height: math.unit(300, "km"),
  62224. allForms: true
  62225. },
  62226. {
  62227. name: "Giga+",
  62228. height: math.unit(1750, "km"),
  62229. allForms: true
  62230. },
  62231. {
  62232. name: "Continental",
  62233. height: math.unit(5000, "km"),
  62234. allForms: true
  62235. },
  62236. {
  62237. name: "Terra",
  62238. height: math.unit(20000, "km"),
  62239. allForms: true
  62240. },
  62241. {
  62242. name: "Terra+",
  62243. height: math.unit(300000, "km"),
  62244. allForms: true
  62245. },
  62246. {
  62247. name: "Solar",
  62248. height: math.unit(40000000, "km"),
  62249. allForms: true
  62250. },
  62251. {
  62252. name: "Galactic",
  62253. height: math.unit(810133, "parsecs"),
  62254. allForms: true
  62255. },
  62256. {
  62257. name: "Universal",
  62258. height: math.unit(25, "universes"),
  62259. allForms: true
  62260. },
  62261. ],
  62262. {
  62263. "shark": {
  62264. name: "Shark",
  62265. default: true
  62266. },
  62267. "dragon": {
  62268. name: "Dragon",
  62269. },
  62270. }
  62271. ))
  62272. characterMakers.push(() => makeCharacter(
  62273. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62274. {
  62275. front: {
  62276. height: math.unit(2.2, "meters"),
  62277. weight: math.unit(150, "kg"),
  62278. name: "Front",
  62279. image: {
  62280. source: "./media/characters/sergis/front.svg",
  62281. extra: 1314/1312,
  62282. bottom: 112/1426
  62283. }
  62284. },
  62285. back: {
  62286. height: math.unit(2.2, "meters"),
  62287. weight: math.unit(150, "kg"),
  62288. name: "Back",
  62289. image: {
  62290. source: "./media/characters/sergis/back.svg",
  62291. extra: 1335/1333,
  62292. bottom: 19/1354
  62293. }
  62294. },
  62295. frontLewd: {
  62296. height: math.unit(2.2, "meters"),
  62297. weight: math.unit(150, "kg"),
  62298. name: "Front (Lewd)",
  62299. image: {
  62300. source: "./media/characters/sergis/front-lewd.svg",
  62301. extra: 1314/1312,
  62302. bottom: 112/1426
  62303. }
  62304. },
  62305. frontDressed: {
  62306. height: math.unit(2.2, "meters"),
  62307. weight: math.unit(150, "kg"),
  62308. name: "Front (Dressed)",
  62309. image: {
  62310. source: "./media/characters/sergis/front-dressed.svg",
  62311. extra: 1330/1328,
  62312. bottom: 95/1425
  62313. }
  62314. },
  62315. frontDressedLewd: {
  62316. height: math.unit(2.2, "meters"),
  62317. weight: math.unit(150, "kg"),
  62318. name: "Front (Dressed, Lewd)",
  62319. image: {
  62320. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62321. extra: 1330/1328,
  62322. bottom: 95/1425
  62323. }
  62324. },
  62325. maw: {
  62326. height: math.unit(0.48, "meters"),
  62327. name: "Maw",
  62328. image: {
  62329. source: "./media/characters/sergis/maw.svg"
  62330. }
  62331. },
  62332. sheath: {
  62333. height: math.unit(0.38, "meters"),
  62334. name: "Sheath",
  62335. image: {
  62336. source: "./media/characters/sergis/sheath.svg"
  62337. }
  62338. },
  62339. },
  62340. [
  62341. {
  62342. name: "Incognito Size",
  62343. height: math.unit(2.2, "meters")
  62344. },
  62345. {
  62346. name: "Small Macro",
  62347. height: math.unit(40, "meters")
  62348. },
  62349. {
  62350. name: "Macro",
  62351. height: math.unit(150, "meters")
  62352. },
  62353. {
  62354. name: "Macro+",
  62355. height: math.unit(300, "meters")
  62356. },
  62357. {
  62358. name: "Mega",
  62359. height: math.unit(2.5, "km")
  62360. },
  62361. {
  62362. name: "Mega+",
  62363. height: math.unit(30, "km")
  62364. },
  62365. {
  62366. name: "Home Size",
  62367. height: math.unit(300, "km"),
  62368. default: true
  62369. },
  62370. {
  62371. name: "Giga+",
  62372. height: math.unit(1000, "km")
  62373. },
  62374. {
  62375. name: "Giga++",
  62376. height: math.unit(6000, "km")
  62377. },
  62378. {
  62379. name: "Terra",
  62380. height: math.unit(70000, "km")
  62381. },
  62382. {
  62383. name: "Terra+",
  62384. height: math.unit(200000, "km")
  62385. },
  62386. {
  62387. name: "Galactic",
  62388. height: math.unit(634200, "lightyears")
  62389. },
  62390. ]
  62391. ))
  62392. characterMakers.push(() => makeCharacter(
  62393. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62394. {
  62395. standard: {
  62396. height: math.unit(1 + 5/12, "feet"),
  62397. name: "Standard",
  62398. image: {
  62399. source: "./media/characters/spade/standard.svg",
  62400. extra: 1794/1703,
  62401. bottom: 115/1909
  62402. }
  62403. },
  62404. disguised: {
  62405. height: math.unit(1 + 5/12, "feet"),
  62406. name: "Disguised",
  62407. image: {
  62408. source: "./media/characters/spade/disguised.svg",
  62409. extra: 1794/1700,
  62410. bottom: 98/1892
  62411. }
  62412. },
  62413. },
  62414. [
  62415. {
  62416. name: "Normal",
  62417. height: math.unit(1 + 5/12, "feet"),
  62418. default: true
  62419. },
  62420. ]
  62421. ))
  62422. characterMakers.push(() => makeCharacter(
  62423. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62424. {
  62425. frontNsfw: {
  62426. height: math.unit(5, "meters"),
  62427. weight: math.unit(2000, "kg"),
  62428. preyCapacity: math.unit(5, "people"),
  62429. name: "Front (NSFW)",
  62430. image: {
  62431. source: "./media/characters/zeanlain/front-nsfw.svg",
  62432. extra: 1087/938,
  62433. bottom: 93/1180
  62434. },
  62435. extraAttributes: {
  62436. "wingspan": {
  62437. name: "Wingspan",
  62438. power: 1,
  62439. type: "length",
  62440. base: math.unit(10, "meters")
  62441. },
  62442. "footSize": {
  62443. name: "Foot Size",
  62444. power: 1,
  62445. type: "length",
  62446. base: math.unit(0.68, "meters")
  62447. },
  62448. "cockLength": {
  62449. name: "Cock Length",
  62450. power: 1,
  62451. type: "length",
  62452. base: math.unit(1.69, "meters")
  62453. },
  62454. "ballVolume": {
  62455. name: "Ball Volume",
  62456. power: 3,
  62457. type: "volume",
  62458. base: math.unit(0.028, "m^3")
  62459. },
  62460. }
  62461. },
  62462. front: {
  62463. height: math.unit(5, "meters"),
  62464. weight: math.unit(2000, "kg"),
  62465. preyCapacity: math.unit(3, "people"),
  62466. name: "Front",
  62467. image: {
  62468. source: "./media/characters/zeanlain/front.svg",
  62469. extra: 1087/938,
  62470. bottom: 93/1180
  62471. },
  62472. extraAttributes: {
  62473. "wingspan": {
  62474. name: "Wingspan",
  62475. power: 1,
  62476. type: "length",
  62477. base: math.unit(10, "meters")
  62478. },
  62479. "footSize": {
  62480. name: "Foot Size",
  62481. power: 1,
  62482. type: "length",
  62483. base: math.unit(0.68, "meters")
  62484. },
  62485. }
  62486. },
  62487. },
  62488. [
  62489. {
  62490. name: "Normal",
  62491. height: math.unit(5, "meters"),
  62492. default: true
  62493. },
  62494. ]
  62495. ))
  62496. characterMakers.push(() => makeCharacter(
  62497. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62498. {
  62499. front: {
  62500. height: math.unit(10, "meters"),
  62501. weight: math.unit(250000, "kg"),
  62502. name: "Front",
  62503. image: {
  62504. source: "./media/characters/airamis/front.svg",
  62505. extra: 865/835,
  62506. bottom: 13/878
  62507. }
  62508. },
  62509. },
  62510. [
  62511. {
  62512. name: "Normal",
  62513. height: math.unit(10, "meters"),
  62514. default: true
  62515. },
  62516. ]
  62517. ))
  62518. characterMakers.push(() => makeCharacter(
  62519. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62520. {
  62521. front: {
  62522. height: math.unit(3 + 3/12, "feet"),
  62523. weight: math.unit(75, "lb"),
  62524. name: "Front",
  62525. image: {
  62526. source: "./media/characters/corra-tourmaline/front.svg",
  62527. extra: 1037/864,
  62528. bottom: 39/1076
  62529. }
  62530. },
  62531. back: {
  62532. height: math.unit(3 + 3/12, "feet"),
  62533. weight: math.unit(75, "lb"),
  62534. name: "Back",
  62535. image: {
  62536. source: "./media/characters/corra-tourmaline/back.svg",
  62537. extra: 1022/849,
  62538. bottom: 26/1048
  62539. }
  62540. },
  62541. dressed: {
  62542. height: math.unit(3 + 3/12, "feet"),
  62543. weight: math.unit(75, "lb"),
  62544. name: "Dressed",
  62545. image: {
  62546. source: "./media/characters/corra-tourmaline/dressed.svg",
  62547. extra: 1037/864,
  62548. bottom: 39/1076
  62549. }
  62550. },
  62551. beans: {
  62552. height: math.unit(0.37, "feet"),
  62553. name: "Beans",
  62554. image: {
  62555. source: "./media/characters/corra-tourmaline/beans.svg"
  62556. }
  62557. },
  62558. },
  62559. [
  62560. {
  62561. name: "Normal",
  62562. height: math.unit(3 + 3/12, "feet"),
  62563. default: true
  62564. },
  62565. {
  62566. name: "Macro",
  62567. height: math.unit(32, "feet")
  62568. },
  62569. ]
  62570. ))
  62571. characterMakers.push(() => makeCharacter(
  62572. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62573. {
  62574. front: {
  62575. height: math.unit(6 + 2/12, "feet"),
  62576. weight: math.unit(203, "lb"),
  62577. name: "Front",
  62578. image: {
  62579. source: "./media/characters/maki-kawa/front.svg",
  62580. extra: 950/890,
  62581. bottom: 62/1012
  62582. }
  62583. },
  62584. back: {
  62585. height: math.unit(6 + 2/12, "feet"),
  62586. weight: math.unit(203, "lb"),
  62587. name: "Back",
  62588. image: {
  62589. source: "./media/characters/maki-kawa/back.svg",
  62590. extra: 953/878,
  62591. bottom: 49/1002
  62592. }
  62593. },
  62594. frontBarista: {
  62595. height: math.unit(6 + 2/12, "feet"),
  62596. weight: math.unit(203, "lb"),
  62597. name: "Front (Barista)",
  62598. image: {
  62599. source: "./media/characters/maki-kawa/front-barista.svg",
  62600. extra: 943/883,
  62601. bottom: 69/1012
  62602. }
  62603. },
  62604. backBarista: {
  62605. height: math.unit(6 + 2/12, "feet"),
  62606. weight: math.unit(203, "lb"),
  62607. name: "Back (Barista)",
  62608. image: {
  62609. source: "./media/characters/maki-kawa/back-barista.svg",
  62610. extra: 953/878,
  62611. bottom: 49/1002
  62612. }
  62613. },
  62614. frontWrestler: {
  62615. height: math.unit(6 + 2/12, "feet"),
  62616. weight: math.unit(203, "lb"),
  62617. name: "Front (Wrestler)",
  62618. image: {
  62619. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62620. extra: 950/890,
  62621. bottom: 62/1012
  62622. }
  62623. },
  62624. backWrestler: {
  62625. height: math.unit(6 + 2/12, "feet"),
  62626. weight: math.unit(203, "lb"),
  62627. name: "Back (Wrestler)",
  62628. image: {
  62629. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62630. extra: 953/878,
  62631. bottom: 49/1002
  62632. }
  62633. },
  62634. headFront: {
  62635. height: math.unit(1.64, "feet"),
  62636. name: "Head (Front)",
  62637. image: {
  62638. source: "./media/characters/maki-kawa/head-front.svg"
  62639. }
  62640. },
  62641. headSide: {
  62642. height: math.unit(1.59, "feet"),
  62643. name: "Head (Side)",
  62644. image: {
  62645. source: "./media/characters/maki-kawa/head-side.svg"
  62646. }
  62647. },
  62648. paw: {
  62649. height: math.unit(0.9, "feet"),
  62650. name: "Paw",
  62651. image: {
  62652. source: "./media/characters/maki-kawa/paw.svg"
  62653. }
  62654. },
  62655. },
  62656. [
  62657. {
  62658. name: "Normal",
  62659. height: math.unit(6 + 2/12, "feet"),
  62660. default: true
  62661. },
  62662. {
  62663. name: "Macro",
  62664. height: math.unit(617, "feet")
  62665. },
  62666. ]
  62667. ))
  62668. characterMakers.push(() => makeCharacter(
  62669. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62670. {
  62671. front: {
  62672. height: math.unit(10, "feet"),
  62673. weight: math.unit(1500, "lb"),
  62674. name: "Front",
  62675. image: {
  62676. source: "./media/characters/lennox/front.svg",
  62677. extra: 1623/1496,
  62678. bottom: 18/1641
  62679. }
  62680. },
  62681. back: {
  62682. height: math.unit(10, "feet"),
  62683. weight: math.unit(1500, "lb"),
  62684. name: "Back",
  62685. image: {
  62686. source: "./media/characters/lennox/back.svg",
  62687. extra: 1641/1481,
  62688. bottom: 13/1654
  62689. }
  62690. },
  62691. maw: {
  62692. height: math.unit(2.94, "feet"),
  62693. name: "Maw",
  62694. image: {
  62695. source: "./media/characters/lennox/maw.svg"
  62696. }
  62697. },
  62698. },
  62699. [
  62700. {
  62701. name: "Micro",
  62702. height: math.unit(1, "inch")
  62703. },
  62704. {
  62705. name: "Normal",
  62706. height: math.unit(10, "feet"),
  62707. default: true
  62708. },
  62709. {
  62710. name: "Macro",
  62711. height: math.unit(200, "feet")
  62712. },
  62713. ]
  62714. ))
  62715. characterMakers.push(() => makeCharacter(
  62716. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62717. {
  62718. frontDressed: {
  62719. height: math.unit(15 + 7/12, "feet"),
  62720. weight: math.unit(5000, "lb"),
  62721. name: "Front (Dressed)",
  62722. image: {
  62723. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62724. extra: 1136/1023,
  62725. bottom: 51/1187
  62726. }
  62727. },
  62728. backDressed: {
  62729. height: math.unit(15 + 7/12, "feet"),
  62730. weight: math.unit(5000, "lb"),
  62731. name: "Back (Dressed)",
  62732. image: {
  62733. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62734. extra: 2359/2143,
  62735. bottom: 103/2462
  62736. }
  62737. },
  62738. front: {
  62739. height: math.unit(15 + 7/12, "feet"),
  62740. weight: math.unit(5000, "lb"),
  62741. name: "Front",
  62742. image: {
  62743. source: "./media/characters/vyse-iron-thunder/front.svg",
  62744. extra: 1136/1023,
  62745. bottom: 51/1187
  62746. }
  62747. },
  62748. hand: {
  62749. height: math.unit(2.36, "feet"),
  62750. name: "Hand",
  62751. image: {
  62752. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62753. }
  62754. },
  62755. foot: {
  62756. height: math.unit(1.72, "feet"),
  62757. name: "Foot",
  62758. image: {
  62759. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62760. }
  62761. },
  62762. mouth: {
  62763. height: math.unit(2, "feet"),
  62764. name: "Mouth",
  62765. image: {
  62766. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62767. }
  62768. },
  62769. eye: {
  62770. height: math.unit(0.58, "feet"),
  62771. name: "Eye",
  62772. image: {
  62773. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62774. }
  62775. },
  62776. },
  62777. [
  62778. {
  62779. name: "Normal",
  62780. height: math.unit(15 + 7/12, "feet"),
  62781. default: true
  62782. },
  62783. {
  62784. name: "Macro",
  62785. height: math.unit(157, "feet")
  62786. },
  62787. {
  62788. name: "Macro+",
  62789. height: math.unit(1570, "feet")
  62790. },
  62791. {
  62792. name: "Macro++",
  62793. height: math.unit(15700, "feet")
  62794. },
  62795. {
  62796. name: "Macro+++",
  62797. height: math.unit(157000, "feet")
  62798. },
  62799. {
  62800. name: "Macro++++",
  62801. height: math.unit(1570000, "feet")
  62802. },
  62803. ]
  62804. ))
  62805. characterMakers.push(() => makeCharacter(
  62806. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62807. {
  62808. side: {
  62809. height: math.unit(6, "feet"),
  62810. weight: math.unit(115, "lb"),
  62811. name: "Side",
  62812. image: {
  62813. source: "./media/characters/moonbeam/side.svg",
  62814. extra: 839/485,
  62815. bottom: 60/899
  62816. }
  62817. },
  62818. },
  62819. [
  62820. {
  62821. name: "Normal",
  62822. height: math.unit(6, "feet"),
  62823. default: true
  62824. },
  62825. ]
  62826. ))
  62827. characterMakers.push(() => makeCharacter(
  62828. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62829. {
  62830. front: {
  62831. height: math.unit(3500, "miles"),
  62832. weight: math.unit(1659, "petatonnes"),
  62833. name: "Front",
  62834. image: {
  62835. source: "./media/characters/baltica/front.svg",
  62836. extra: 429/428,
  62837. bottom: 41/470
  62838. }
  62839. },
  62840. back: {
  62841. height: math.unit(3500, "miles"),
  62842. weight: math.unit(1659, "petatonnes"),
  62843. name: "Back",
  62844. image: {
  62845. source: "./media/characters/baltica/back.svg",
  62846. extra: 452/451,
  62847. bottom: 8/460
  62848. }
  62849. },
  62850. },
  62851. [
  62852. {
  62853. name: "Gigamacro",
  62854. height: math.unit(3500, "miles"),
  62855. default: true
  62856. },
  62857. ]
  62858. ))
  62859. characterMakers.push(() => makeCharacter(
  62860. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62861. {
  62862. front: {
  62863. height: math.unit(6 + 10/12, "feet"),
  62864. weight: math.unit(200, "lb"),
  62865. name: "Front",
  62866. image: {
  62867. source: "./media/characters/shadow-wolf/front.svg",
  62868. extra: 1931/1760,
  62869. bottom: 88/2019
  62870. }
  62871. },
  62872. },
  62873. [
  62874. {
  62875. name: "Normal",
  62876. height: math.unit(6 + 10/12, "feet"),
  62877. default: true
  62878. },
  62879. ]
  62880. ))
  62881. characterMakers.push(() => makeCharacter(
  62882. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62883. {
  62884. front: {
  62885. height: math.unit(5 + 10/12, "feet"),
  62886. name: "Front",
  62887. image: {
  62888. source: "./media/characters/quincy-praying-mantis/front.svg",
  62889. extra: 1055/891,
  62890. bottom: 92/1147
  62891. }
  62892. },
  62893. soles: {
  62894. height: math.unit(0.85, "feet"),
  62895. name: "Soles",
  62896. image: {
  62897. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62898. extra: 429/324,
  62899. bottom: 89/518
  62900. },
  62901. extraAttributes: {
  62902. "shoeSize": {
  62903. name: "Shoe Size",
  62904. power: 1,
  62905. type: "length",
  62906. base: math.unit(23, "ShoeSizeMensUS"),
  62907. defaultUnit: "ShoeSizeMensUS"
  62908. },
  62909. }
  62910. },
  62911. foot: {
  62912. height: math.unit(0.72, "feet"),
  62913. name: "Foot",
  62914. image: {
  62915. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62916. extra: 349/349,
  62917. bottom: 76/425
  62918. }
  62919. },
  62920. },
  62921. [
  62922. {
  62923. name: "Normal",
  62924. height: math.unit(5 + 10/12, "feet"),
  62925. default: true
  62926. },
  62927. ]
  62928. ))
  62929. characterMakers.push(() => makeCharacter(
  62930. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62931. {
  62932. front: {
  62933. height: math.unit(6, "feet"),
  62934. name: "Front",
  62935. image: {
  62936. source: "./media/characters/christopher-redwood/front.svg",
  62937. extra: 1402/1341,
  62938. bottom: 23/1425
  62939. }
  62940. },
  62941. back: {
  62942. height: math.unit(6, "feet"),
  62943. name: "Back",
  62944. image: {
  62945. source: "./media/characters/christopher-redwood/back.svg",
  62946. extra: 1406/1345,
  62947. bottom: 36/1442
  62948. }
  62949. },
  62950. head: {
  62951. height: math.unit(1.685, "feet"),
  62952. name: "Head",
  62953. image: {
  62954. source: "./media/characters/christopher-redwood/head.svg"
  62955. }
  62956. },
  62957. },
  62958. [
  62959. {
  62960. name: "Normal",
  62961. height: math.unit(6, "feet"),
  62962. default: true
  62963. },
  62964. ]
  62965. ))
  62966. characterMakers.push(() => makeCharacter(
  62967. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62968. {
  62969. front: {
  62970. height: math.unit(1.9, "meters"),
  62971. weight: math.unit(140, "lb"),
  62972. name: "Front",
  62973. image: {
  62974. source: "./media/characters/kara-fox/front.svg",
  62975. extra: 766/711,
  62976. bottom: 41/807
  62977. }
  62978. },
  62979. back: {
  62980. height: math.unit(1.9, "meters"),
  62981. weight: math.unit(140, "lb"),
  62982. name: "Back",
  62983. image: {
  62984. source: "./media/characters/kara-fox/back.svg",
  62985. extra: 766/596,
  62986. bottom: 29/795
  62987. }
  62988. },
  62989. maw: {
  62990. height: math.unit(0.78, "feet"),
  62991. name: "Maw",
  62992. image: {
  62993. source: "./media/characters/kara-fox/maw.svg"
  62994. }
  62995. },
  62996. pawpads: {
  62997. height: math.unit(0.96, "feet"),
  62998. name: "Pawpads",
  62999. image: {
  63000. source: "./media/characters/kara-fox/pawpads.svg"
  63001. }
  63002. },
  63003. },
  63004. [
  63005. {
  63006. name: "Normal",
  63007. height: math.unit(1.9, "meters"),
  63008. default: true
  63009. },
  63010. {
  63011. name: "Giantess",
  63012. height: math.unit(80, "meters")
  63013. },
  63014. ]
  63015. ))
  63016. characterMakers.push(() => makeCharacter(
  63017. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  63018. {
  63019. front: {
  63020. height: math.unit(12, "feet"),
  63021. name: "Front",
  63022. image: {
  63023. source: "./media/characters/naomi-espeon/front.svg",
  63024. extra: 892/797,
  63025. bottom: 5/897
  63026. }
  63027. },
  63028. back: {
  63029. height: math.unit(12, "feet"),
  63030. name: "Back",
  63031. image: {
  63032. source: "./media/characters/naomi-espeon/back.svg",
  63033. extra: 890/785,
  63034. bottom: 12/902
  63035. }
  63036. },
  63037. },
  63038. [
  63039. {
  63040. name: "Normal",
  63041. height: math.unit(12, "feet"),
  63042. default: true
  63043. },
  63044. ]
  63045. ))
  63046. characterMakers.push(() => makeCharacter(
  63047. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  63048. {
  63049. anthro_front: {
  63050. height: math.unit(8, "feet"),
  63051. weight: math.unit(625, "lb"),
  63052. name: "Front",
  63053. image: {
  63054. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  63055. extra: 638/574,
  63056. bottom: 73/711
  63057. },
  63058. form: "anthro",
  63059. default: true
  63060. },
  63061. anthro_back: {
  63062. height: math.unit(8, "feet"),
  63063. weight: math.unit(625, "lb"),
  63064. name: "Back",
  63065. image: {
  63066. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63067. extra: 674/614,
  63068. bottom: 7/681
  63069. },
  63070. form: "anthro",
  63071. },
  63072. taur_side: {
  63073. height: math.unit(16, "feet"),
  63074. weight: math.unit(4.5, "tons"),
  63075. name: "Side",
  63076. image: {
  63077. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63078. extra: 704/646,
  63079. bottom: 132/836
  63080. },
  63081. form: "taur",
  63082. default: true
  63083. },
  63084. },
  63085. [
  63086. {
  63087. name: "Normal",
  63088. height: math.unit(8, "feet"),
  63089. default: true,
  63090. form: "anthro"
  63091. },
  63092. {
  63093. name: "Normal",
  63094. height: math.unit(16, "feet"),
  63095. default: true,
  63096. form: "taur"
  63097. },
  63098. ],
  63099. {
  63100. "anthro": {
  63101. name: "Anthro",
  63102. default: true
  63103. },
  63104. "taur": {
  63105. name: "Taur",
  63106. },
  63107. }
  63108. ))
  63109. characterMakers.push(() => makeCharacter(
  63110. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63111. {
  63112. front: {
  63113. height: math.unit(190, "cm"),
  63114. weight: math.unit(110, "kg"),
  63115. name: "Front",
  63116. image: {
  63117. source: "./media/characters/amelie/front.svg",
  63118. extra: 530/442,
  63119. bottom: 35/565
  63120. }
  63121. },
  63122. },
  63123. [
  63124. {
  63125. name: "Normal",
  63126. height: math.unit(190, "cm"),
  63127. default: true
  63128. },
  63129. ]
  63130. ))
  63131. characterMakers.push(() => makeCharacter(
  63132. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63133. {
  63134. front: {
  63135. height: math.unit(21, "feet"),
  63136. weight: math.unit(30000, "lb"),
  63137. name: "Front",
  63138. image: {
  63139. source: "./media/characters/valence/front.svg",
  63140. extra: 1430/1306,
  63141. bottom: 51/1481
  63142. }
  63143. },
  63144. },
  63145. [
  63146. {
  63147. name: "Normal",
  63148. height: math.unit(21, "feet"),
  63149. default: true
  63150. },
  63151. ]
  63152. ))
  63153. characterMakers.push(() => makeCharacter(
  63154. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63155. {
  63156. front: {
  63157. height: math.unit(5 + 9/12, "feet"),
  63158. weight: math.unit(170, "lb"),
  63159. name: "Front",
  63160. image: {
  63161. source: "./media/characters/aurora-adkins/front.svg",
  63162. extra: 1141/1089,
  63163. bottom: 41/1182
  63164. }
  63165. },
  63166. },
  63167. [
  63168. {
  63169. name: "Tiny",
  63170. height: math.unit(7, "mm")
  63171. },
  63172. {
  63173. name: "Small",
  63174. height: math.unit(3.4, "inches")
  63175. },
  63176. {
  63177. name: "Normal",
  63178. height: math.unit(5 + 9/12, "feet"),
  63179. default: true
  63180. },
  63181. {
  63182. name: "Big",
  63183. height: math.unit(31, "feet")
  63184. },
  63185. {
  63186. name: "Giant",
  63187. height: math.unit(300, "feet")
  63188. },
  63189. ]
  63190. ))
  63191. characterMakers.push(() => makeCharacter(
  63192. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63193. {
  63194. front: {
  63195. height: math.unit(5 + 6/12, "feet"),
  63196. weight: math.unit(210, "lb"),
  63197. name: "Front",
  63198. image: {
  63199. source: "./media/characters/cyber/front.svg",
  63200. extra: 1968/1798,
  63201. bottom: 10/1978
  63202. },
  63203. extraAttributes: {
  63204. "shoeSize": {
  63205. name: "Shoe Size",
  63206. power: 1,
  63207. type: "length",
  63208. base: math.unit(30, "ShoeSizeMensUS")
  63209. },
  63210. }
  63211. },
  63212. },
  63213. [
  63214. {
  63215. name: "Normal",
  63216. height: math.unit(5 + 6/12, "feet"),
  63217. default: true
  63218. },
  63219. ]
  63220. ))
  63221. characterMakers.push(() => makeCharacter(
  63222. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63223. {
  63224. front: {
  63225. height: math.unit(6 + 6/12, "feet"),
  63226. weight: math.unit(140, "lb"),
  63227. name: "Front",
  63228. image: {
  63229. source: "./media/characters/sapphire-wairimea/front.svg",
  63230. extra: 475/458,
  63231. bottom: 14/489
  63232. }
  63233. },
  63234. },
  63235. [
  63236. {
  63237. name: "Normal",
  63238. height: math.unit(6 + 6/12, "feet")
  63239. },
  63240. {
  63241. name: "Macro",
  63242. height: math.unit(132, "feet"),
  63243. default: true
  63244. },
  63245. ]
  63246. ))
  63247. characterMakers.push(() => makeCharacter(
  63248. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63249. {
  63250. front: {
  63251. height: math.unit(1.6, "meters"),
  63252. weight: math.unit(100, "lb"),
  63253. name: "Front",
  63254. image: {
  63255. source: "./media/characters/cirkazi/front.svg",
  63256. extra: 489/477,
  63257. bottom: 0/489
  63258. }
  63259. },
  63260. },
  63261. [
  63262. {
  63263. name: "Normal",
  63264. height: math.unit(1.6, "meters")
  63265. },
  63266. {
  63267. name: "Macro",
  63268. height: math.unit(800, "feet"),
  63269. default: true
  63270. },
  63271. ]
  63272. ))
  63273. characterMakers.push(() => makeCharacter(
  63274. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63275. {
  63276. front: {
  63277. height: math.unit(5 + 10/12, "feet"),
  63278. weight: math.unit(145, "lb"),
  63279. name: "Front",
  63280. image: {
  63281. source: "./media/characters/corrin-cavelli/front.svg",
  63282. extra: 483/464,
  63283. bottom: 6/489
  63284. }
  63285. },
  63286. },
  63287. [
  63288. {
  63289. name: "Human",
  63290. height: math.unit(5 + 10/12, "feet")
  63291. },
  63292. {
  63293. name: "Giant",
  63294. height: math.unit(210, "feet"),
  63295. default: true
  63296. },
  63297. ]
  63298. ))
  63299. characterMakers.push(() => makeCharacter(
  63300. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63301. {
  63302. back: {
  63303. height: math.unit(5 + 6/12, "feet"),
  63304. weight: math.unit(115, "lb"),
  63305. name: "Back",
  63306. image: {
  63307. source: "./media/characters/lori-lopez/back.svg",
  63308. extra: 483/474,
  63309. bottom: 6/489
  63310. }
  63311. },
  63312. },
  63313. [
  63314. {
  63315. name: "Human",
  63316. height: math.unit(5 + 6/12, "feet")
  63317. },
  63318. {
  63319. name: "Macro",
  63320. height: math.unit(198, "feet"),
  63321. default: true
  63322. },
  63323. ]
  63324. ))
  63325. characterMakers.push(() => makeCharacter(
  63326. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63327. {
  63328. front: {
  63329. height: math.unit(6, "feet"),
  63330. weight: math.unit(220, "lb"),
  63331. name: "Front",
  63332. image: {
  63333. source: "./media/characters/sylvia-beauregard/front.svg",
  63334. extra: 483/479,
  63335. bottom: 6/489
  63336. }
  63337. },
  63338. },
  63339. [
  63340. {
  63341. name: "Macro",
  63342. height: math.unit(2071, "feet"),
  63343. default: true
  63344. },
  63345. ]
  63346. ))
  63347. characterMakers.push(() => makeCharacter(
  63348. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63349. {
  63350. back: {
  63351. height: math.unit(5 + 6/12, "feet"),
  63352. weight: math.unit(160, "lb"),
  63353. name: "Back",
  63354. image: {
  63355. source: "./media/characters/akiko-takahashi/back.svg",
  63356. extra: 459/454,
  63357. bottom: 27/486
  63358. }
  63359. },
  63360. },
  63361. [
  63362. {
  63363. name: "Human",
  63364. height: math.unit(5 + 6/12, "feet")
  63365. },
  63366. {
  63367. name: "Macro",
  63368. height: math.unit(198, "feet"),
  63369. default: true
  63370. },
  63371. {
  63372. name: "Megamacro",
  63373. height: math.unit(7128, "feet")
  63374. },
  63375. ]
  63376. ))
  63377. characterMakers.push(() => makeCharacter(
  63378. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63379. {
  63380. front: {
  63381. height: math.unit(6, "feet"),
  63382. weight: math.unit(140, "lb"),
  63383. name: "Front",
  63384. image: {
  63385. source: "./media/characters/velvet-garza/front.svg",
  63386. extra: 480/462,
  63387. bottom: 7/487
  63388. }
  63389. },
  63390. },
  63391. [
  63392. {
  63393. name: "Macro",
  63394. height: math.unit(37, "feet"),
  63395. default: true
  63396. },
  63397. ]
  63398. ))
  63399. characterMakers.push(() => makeCharacter(
  63400. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63401. {
  63402. front: {
  63403. height: math.unit(7 + 6/12, "feet"),
  63404. weight: math.unit(400, "lb"),
  63405. name: "Front",
  63406. image: {
  63407. source: "./media/characters/gaia/front.svg",
  63408. extra: 474/463,
  63409. bottom: 13/487
  63410. }
  63411. },
  63412. },
  63413. [
  63414. {
  63415. name: "MiniMacro",
  63416. height: math.unit(7 + 6/12, "feet")
  63417. },
  63418. {
  63419. name: "GigaMacro",
  63420. height: math.unit(14500, "feet"),
  63421. default: true
  63422. },
  63423. ]
  63424. ))
  63425. characterMakers.push(() => makeCharacter(
  63426. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63427. {
  63428. front: {
  63429. height: math.unit(6, "feet"),
  63430. weight: math.unit(150, "lb"),
  63431. name: "Front",
  63432. image: {
  63433. source: "./media/characters/tim/front.svg",
  63434. extra: 1878/1743,
  63435. bottom: 9/1887
  63436. }
  63437. },
  63438. frontDressed: {
  63439. height: math.unit(6, "feet"),
  63440. weight: math.unit(150, "lb"),
  63441. name: "Front (Dressed)",
  63442. image: {
  63443. source: "./media/characters/tim/front-dressed.svg",
  63444. extra: 1765/1485,
  63445. bottom: 48/1813
  63446. }
  63447. },
  63448. backDressed: {
  63449. height: math.unit(6, "feet"),
  63450. weight: math.unit(150, "lb"),
  63451. name: "Back (Dressed)",
  63452. image: {
  63453. source: "./media/characters/tim/back-dressed.svg",
  63454. extra: 1750/1465,
  63455. bottom: 25/1775
  63456. }
  63457. },
  63458. dick: {
  63459. height: math.unit(1.5, "feet"),
  63460. weight: math.unit(6, "lb"),
  63461. name: "Dick",
  63462. image: {
  63463. source: "./media/characters/tim/dick.svg"
  63464. }
  63465. },
  63466. hand: {
  63467. height: math.unit(0.522, "feet"),
  63468. name: "Hand",
  63469. image: {
  63470. source: "./media/characters/tim/hand.svg"
  63471. }
  63472. },
  63473. palm: {
  63474. height: math.unit(0.48, "feet"),
  63475. name: "Palm",
  63476. image: {
  63477. source: "./media/characters/tim/palm.svg"
  63478. }
  63479. },
  63480. paw: {
  63481. height: math.unit(0.9, "feet"),
  63482. name: "Paw",
  63483. image: {
  63484. source: "./media/characters/tim/paw.svg"
  63485. }
  63486. },
  63487. sole: {
  63488. height: math.unit(0.88, "feet"),
  63489. name: "Sole",
  63490. image: {
  63491. source: "./media/characters/tim/sole.svg"
  63492. }
  63493. },
  63494. },
  63495. [
  63496. {
  63497. name: "Macro",
  63498. height: math.unit(1000, "feet")
  63499. },
  63500. {
  63501. name: "Megamacro",
  63502. height: math.unit(10000, "feet"),
  63503. default: true
  63504. },
  63505. {
  63506. name: "Megamacro+",
  63507. height: math.unit(50000, "feet")
  63508. },
  63509. {
  63510. name: "Gigamacro",
  63511. height: math.unit(150000, "km")
  63512. },
  63513. ]
  63514. ))
  63515. characterMakers.push(() => makeCharacter(
  63516. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63517. {
  63518. front: {
  63519. height: math.unit(5 + 8/12, "feet"),
  63520. weight: math.unit(170, "lb"),
  63521. name: "Front",
  63522. image: {
  63523. source: "./media/characters/abel-delreoux/front.svg",
  63524. extra: 1615/1500,
  63525. bottom: 82/1697
  63526. }
  63527. },
  63528. back: {
  63529. height: math.unit(5 + 8/12, "feet"),
  63530. weight: math.unit(170, "lb"),
  63531. name: "Back",
  63532. image: {
  63533. source: "./media/characters/abel-delreoux/back.svg",
  63534. extra: 1644/1534,
  63535. bottom: 24/1668
  63536. }
  63537. },
  63538. casual: {
  63539. height: math.unit(5 + 8/12, "feet"),
  63540. weight: math.unit(170, "lb"),
  63541. name: "Casual",
  63542. image: {
  63543. source: "./media/characters/abel-delreoux/casual.svg",
  63544. extra: 1716/1598,
  63545. bottom: 29/1745
  63546. }
  63547. },
  63548. sleepy: {
  63549. height: math.unit(5 + 8/12, "feet"),
  63550. weight: math.unit(170, "lb"),
  63551. name: "Sleepy",
  63552. image: {
  63553. source: "./media/characters/abel-delreoux/sleepy.svg",
  63554. extra: 1649/1573,
  63555. bottom: 22/1671
  63556. }
  63557. },
  63558. fem: {
  63559. height: math.unit(5 + 8/12, "feet"),
  63560. weight: math.unit(170, "lb"),
  63561. name: "Fem",
  63562. image: {
  63563. source: "./media/characters/abel-delreoux/fem.svg",
  63564. extra: 1680/1564,
  63565. bottom: 17/1697
  63566. }
  63567. },
  63568. hand: {
  63569. height: math.unit(0.78, "feet"),
  63570. name: "Hand",
  63571. image: {
  63572. source: "./media/characters/abel-delreoux/hand.svg"
  63573. }
  63574. },
  63575. paw: {
  63576. height: math.unit(0.78, "feet"),
  63577. name: "Paw",
  63578. image: {
  63579. source: "./media/characters/abel-delreoux/paw.svg"
  63580. }
  63581. },
  63582. },
  63583. [
  63584. {
  63585. name: "Normal",
  63586. height: math.unit(5 + 8/12, "feet"),
  63587. default: true
  63588. },
  63589. ]
  63590. ))
  63591. characterMakers.push(() => makeCharacter(
  63592. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63593. {
  63594. front: {
  63595. height: math.unit(6, "feet"),
  63596. weight: math.unit(159, "lb"),
  63597. name: "Front",
  63598. image: {
  63599. source: "./media/characters/meus/front.svg",
  63600. extra: 938/843,
  63601. bottom: 37/975
  63602. }
  63603. },
  63604. back: {
  63605. height: math.unit(6, "feet"),
  63606. weight: math.unit(159, "lb"),
  63607. name: "Back",
  63608. image: {
  63609. source: "./media/characters/meus/back.svg",
  63610. extra: 967/873,
  63611. bottom: 12/979
  63612. }
  63613. },
  63614. },
  63615. [
  63616. {
  63617. name: "Micro",
  63618. height: math.unit(2, "inches")
  63619. },
  63620. {
  63621. name: "Mini",
  63622. height: math.unit(6, "inches")
  63623. },
  63624. {
  63625. name: "Normal",
  63626. height: math.unit(6, "feet"),
  63627. default: true
  63628. },
  63629. {
  63630. name: "Macro",
  63631. height: math.unit(84, "feet")
  63632. },
  63633. ]
  63634. ))
  63635. characterMakers.push(() => makeCharacter(
  63636. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63637. {
  63638. front: {
  63639. height: math.unit(60, "cm"),
  63640. weight: math.unit(18, "kg"),
  63641. name: "Front",
  63642. image: {
  63643. source: "./media/characters/yamato/front.svg",
  63644. extra: 733/688,
  63645. bottom: 29/762
  63646. }
  63647. },
  63648. },
  63649. [
  63650. {
  63651. name: "Micro",
  63652. height: math.unit(6, "cm")
  63653. },
  63654. {
  63655. name: "Normal",
  63656. height: math.unit(60, "cm"),
  63657. default: true
  63658. },
  63659. ]
  63660. ))
  63661. characterMakers.push(() => makeCharacter(
  63662. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63663. {
  63664. front: {
  63665. height: math.unit(9, "feet"),
  63666. weight: math.unit(518, "lb"),
  63667. name: "Front",
  63668. image: {
  63669. source: "./media/characters/barus/front.svg",
  63670. extra: 1877/1795,
  63671. bottom: 55/1932
  63672. }
  63673. },
  63674. },
  63675. [
  63676. {
  63677. name: "Base Height",
  63678. height: math.unit(9, "feet"),
  63679. default: true
  63680. },
  63681. {
  63682. name: "Large",
  63683. height: math.unit(18, "feet")
  63684. },
  63685. {
  63686. name: "Giant",
  63687. height: math.unit(100, "feet")
  63688. },
  63689. {
  63690. name: "Huge",
  63691. height: math.unit(500, "feet")
  63692. },
  63693. {
  63694. name: "Enormous",
  63695. height: math.unit(300, "meters")
  63696. },
  63697. {
  63698. name: "Deity Among Man",
  63699. height: math.unit(3000, "meters")
  63700. },
  63701. ]
  63702. ))
  63703. characterMakers.push(() => makeCharacter(
  63704. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63705. {
  63706. front: {
  63707. height: math.unit(1.7, "meters"),
  63708. name: "Front",
  63709. image: {
  63710. source: "./media/characters/yari/front.svg",
  63711. extra: 1210/1125,
  63712. bottom: 283/1493
  63713. }
  63714. },
  63715. back: {
  63716. height: math.unit(1.7, "meters"),
  63717. name: "Back",
  63718. image: {
  63719. source: "./media/characters/yari/back.svg",
  63720. extra: 1240/1195,
  63721. bottom: 180/1420
  63722. }
  63723. },
  63724. head: {
  63725. height: math.unit(1.26, "feet"),
  63726. name: "Head",
  63727. image: {
  63728. source: "./media/characters/yari/head.svg"
  63729. }
  63730. },
  63731. },
  63732. [
  63733. {
  63734. name: "Nano",
  63735. height: math.unit(0.5, "mm")
  63736. },
  63737. {
  63738. name: "Micro",
  63739. height: math.unit(3, "inches")
  63740. },
  63741. {
  63742. name: "Short",
  63743. height: math.unit(1.5, "meters")
  63744. },
  63745. {
  63746. name: "Norm",
  63747. height: math.unit(1.7, "meters"),
  63748. default: true
  63749. },
  63750. ]
  63751. ))
  63752. characterMakers.push(() => makeCharacter(
  63753. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63754. {
  63755. front: {
  63756. height: math.unit(5 + 2/12, "feet"),
  63757. weight: math.unit(110, "lb"),
  63758. name: "Front",
  63759. image: {
  63760. source: "./media/characters/salem/front.svg",
  63761. extra: 1895/1800,
  63762. bottom: 23/1918
  63763. }
  63764. },
  63765. back: {
  63766. height: math.unit(5 + 2/12, "feet"),
  63767. weight: math.unit(110, "lb"),
  63768. name: "Back",
  63769. image: {
  63770. source: "./media/characters/salem/back.svg",
  63771. extra: 1875/1802,
  63772. bottom: 20/1895
  63773. }
  63774. },
  63775. head: {
  63776. height: math.unit(1, "feet"),
  63777. name: "Head",
  63778. image: {
  63779. source: "./media/characters/salem/head.svg"
  63780. }
  63781. },
  63782. paw: {
  63783. height: math.unit(0.59, "feet"),
  63784. name: "Paw",
  63785. image: {
  63786. source: "./media/characters/salem/paw.svg"
  63787. }
  63788. },
  63789. beans: {
  63790. height: math.unit(0.66, "feet"),
  63791. name: "Beans",
  63792. image: {
  63793. source: "./media/characters/salem/beans.svg"
  63794. }
  63795. },
  63796. eye: {
  63797. height: math.unit(0.224, "feet"),
  63798. name: "Eye",
  63799. image: {
  63800. source: "./media/characters/salem/eye.svg"
  63801. }
  63802. },
  63803. semiferal: {
  63804. height: math.unit(2.3, "feet"),
  63805. name: "Semiferal",
  63806. image: {
  63807. source: "./media/characters/salem/semiferal.svg",
  63808. extra: 914/839,
  63809. bottom: 32/946
  63810. }
  63811. },
  63812. },
  63813. [
  63814. {
  63815. name: "Micro",
  63816. height: math.unit(4, "inches")
  63817. },
  63818. {
  63819. name: "Normal",
  63820. height: math.unit(5 + 2/12, "feet"),
  63821. default: true
  63822. },
  63823. {
  63824. name: "Macro",
  63825. height: math.unit(108, "feet")
  63826. },
  63827. {
  63828. name: "Macro+",
  63829. height: math.unit(1500, "feet")
  63830. },
  63831. ]
  63832. ))
  63833. characterMakers.push(() => makeCharacter(
  63834. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63835. {
  63836. front: {
  63837. height: math.unit(7 + 6/12, "feet"),
  63838. weight: math.unit(600, "kg"),
  63839. preyCapacity: math.unit(10, "people"),
  63840. name: "Front",
  63841. image: {
  63842. source: "./media/characters/kii/front.svg",
  63843. extra: 3296/3087,
  63844. bottom: 130/3426
  63845. }
  63846. },
  63847. },
  63848. [
  63849. {
  63850. name: "Normal",
  63851. height: math.unit(7 + 6/12, "feet"),
  63852. default: true
  63853. },
  63854. ]
  63855. ))
  63856. characterMakers.push(() => makeCharacter(
  63857. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63858. {
  63859. front: {
  63860. height: math.unit(2, "meters"),
  63861. weight: math.unit(200, "lb"),
  63862. name: "Front",
  63863. image: {
  63864. source: "./media/characters/taffy/front.svg",
  63865. extra: 1666/1618,
  63866. bottom: 157/1823
  63867. }
  63868. },
  63869. back: {
  63870. height: math.unit(2, "meters"),
  63871. weight: math.unit(200, "lb"),
  63872. name: "Back",
  63873. image: {
  63874. source: "./media/characters/taffy/back.svg",
  63875. extra: 1635/1583,
  63876. bottom: 153/1788
  63877. }
  63878. },
  63879. },
  63880. [
  63881. {
  63882. name: "Normal",
  63883. height: math.unit(2, "meters"),
  63884. default: true
  63885. },
  63886. ]
  63887. ))
  63888. characterMakers.push(() => makeCharacter(
  63889. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63890. {
  63891. front: {
  63892. height: math.unit(1.55, "meters"),
  63893. weight: math.unit(60, "kg"),
  63894. name: "Front",
  63895. image: {
  63896. source: "./media/characters/barley/front.svg",
  63897. extra: 1520/1340,
  63898. bottom: 47/1567
  63899. }
  63900. },
  63901. back: {
  63902. height: math.unit(1.55, "meters"),
  63903. weight: math.unit(60, "kg"),
  63904. name: "Back",
  63905. image: {
  63906. source: "./media/characters/barley/back.svg",
  63907. extra: 1543/1341,
  63908. bottom: 12/1555
  63909. }
  63910. },
  63911. feet: {
  63912. height: math.unit(2.18, "feet"),
  63913. name: "Feet",
  63914. image: {
  63915. source: "./media/characters/barley/feet.svg"
  63916. }
  63917. },
  63918. },
  63919. [
  63920. {
  63921. name: "Normal",
  63922. height: math.unit(1.55, "meters"),
  63923. default: true
  63924. },
  63925. ]
  63926. ))
  63927. characterMakers.push(() => makeCharacter(
  63928. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63929. {
  63930. dressed: {
  63931. height: math.unit(6, "feet"),
  63932. name: "Dressed",
  63933. image: {
  63934. source: "./media/characters/lydia-lopez/dressed.svg",
  63935. extra: 1319/1277,
  63936. bottom: 90/1409
  63937. }
  63938. },
  63939. nude: {
  63940. height: math.unit(6, "feet"),
  63941. name: "Nude",
  63942. image: {
  63943. source: "./media/characters/lydia-lopez/nude.svg",
  63944. extra: 1319/1277,
  63945. bottom: 90/1409
  63946. }
  63947. },
  63948. },
  63949. [
  63950. {
  63951. name: "Normal",
  63952. height: math.unit(6, "feet"),
  63953. default: true
  63954. },
  63955. {
  63956. name: "Maximum",
  63957. height: math.unit(2101, "feet")
  63958. },
  63959. ]
  63960. ))
  63961. characterMakers.push(() => makeCharacter(
  63962. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63963. {
  63964. front: {
  63965. height: math.unit(5 + 4/12, "feet"),
  63966. weight: math.unit(250, "lb"),
  63967. volume: math.unit(20, "gallons"),
  63968. name: "Front",
  63969. image: {
  63970. source: "./media/characters/kira-slime/front.svg",
  63971. extra: 442/403,
  63972. bottom: 18/460
  63973. }
  63974. },
  63975. frontNsfw: {
  63976. height: math.unit(5 + 4/12, "feet"),
  63977. weight: math.unit(250, "lb"),
  63978. volume: math.unit(20, "gallons"),
  63979. name: "Front (NSFW)",
  63980. image: {
  63981. source: "./media/characters/kira-slime/front-nsfw.svg",
  63982. extra: 442/403,
  63983. bottom: 18/460
  63984. }
  63985. },
  63986. },
  63987. [
  63988. {
  63989. name: "Droplet",
  63990. height: math.unit(0.0464452, "feet")
  63991. },
  63992. {
  63993. name: "Pint",
  63994. height: math.unit(0.9824, "feet")
  63995. },
  63996. {
  63997. name: "Bucket",
  63998. height: math.unit(2.83, "feet")
  63999. },
  64000. {
  64001. name: "Normal",
  64002. height: math.unit(5 + 4/12, "feet"),
  64003. default: true
  64004. },
  64005. {
  64006. name: "Tub",
  64007. height: math.unit(8.46614, "feet")
  64008. },
  64009. {
  64010. name: "Pool",
  64011. height: math.unit(31.1895, "feet")
  64012. },
  64013. {
  64014. name: "Pond",
  64015. height: math.unit(170.349, "feet")
  64016. },
  64017. {
  64018. name: "Lake",
  64019. height: math.unit(289334, "feet")
  64020. },
  64021. {
  64022. name: "Ocean",
  64023. height: math.unit(1.11940e+7, "feet")
  64024. },
  64025. ]
  64026. ))
  64027. characterMakers.push(() => makeCharacter(
  64028. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  64029. {
  64030. front: {
  64031. height: math.unit(5 + 6/12, "feet"),
  64032. weight: math.unit(120, "lb"),
  64033. name: "Front",
  64034. image: {
  64035. source: "./media/characters/holiday/front.svg",
  64036. extra: 456/403,
  64037. bottom: 4/460
  64038. }
  64039. },
  64040. back: {
  64041. height: math.unit(5 + 6/12, "feet"),
  64042. weight: math.unit(120, "lb"),
  64043. name: "Back",
  64044. image: {
  64045. source: "./media/characters/holiday/back.svg",
  64046. extra: 450/404,
  64047. bottom: 12/462
  64048. }
  64049. },
  64050. head: {
  64051. height: math.unit(2.3, "feet"),
  64052. name: "Head",
  64053. image: {
  64054. source: "./media/characters/holiday/head.svg"
  64055. }
  64056. },
  64057. },
  64058. [
  64059. {
  64060. name: "Normal",
  64061. height: math.unit(5 + 6/12, "feet"),
  64062. default: true
  64063. },
  64064. {
  64065. name: "Macro",
  64066. height: math.unit(6574.25, "feet")
  64067. },
  64068. ]
  64069. ))
  64070. characterMakers.push(() => makeCharacter(
  64071. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64072. {
  64073. front: {
  64074. height: math.unit(6 + 2/12, "feet"),
  64075. weight: math.unit(200, "lb"),
  64076. name: "Front",
  64077. image: {
  64078. source: "./media/characters/camina/front.svg",
  64079. extra: 1048/985,
  64080. bottom: 30/1078
  64081. }
  64082. },
  64083. },
  64084. [
  64085. {
  64086. name: "Normal",
  64087. height: math.unit(6 + 2/12, "feet"),
  64088. default: true
  64089. },
  64090. ]
  64091. ))
  64092. characterMakers.push(() => makeCharacter(
  64093. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64094. {
  64095. front: {
  64096. height: math.unit(30, "cm"),
  64097. weight: math.unit(420, "grams"),
  64098. name: "Front",
  64099. image: {
  64100. source: "./media/characters/smuck/front.svg",
  64101. extra: 379/345,
  64102. bottom: 36/415
  64103. }
  64104. },
  64105. },
  64106. [
  64107. {
  64108. name: "Smuck-Sized",
  64109. height: math.unit(30, "cm"),
  64110. default: true
  64111. },
  64112. ]
  64113. ))
  64114. characterMakers.push(() => makeCharacter(
  64115. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64116. {
  64117. frontSfw: {
  64118. height: math.unit(10, "feet"),
  64119. weight: math.unit(1000, "kg"),
  64120. preyCapacity: math.unit(2, "people"),
  64121. name: "Front (SFW)",
  64122. image: {
  64123. source: "./media/characters/bylur/front-sfw.svg",
  64124. extra: 419/343,
  64125. bottom: 3/422
  64126. },
  64127. default: true
  64128. },
  64129. frontSheath: {
  64130. height: math.unit(10, "feet"),
  64131. weight: math.unit(1000, "kg"),
  64132. preyCapacity: math.unit(2, "people"),
  64133. name: "Front (Sheath)",
  64134. image: {
  64135. source: "./media/characters/bylur/front-sheath.svg",
  64136. extra: 419/343,
  64137. bottom: 3/422
  64138. }
  64139. },
  64140. frontErect: {
  64141. height: math.unit(10, "feet"),
  64142. weight: math.unit(1000, "kg"),
  64143. preyCapacity: math.unit(2, "people"),
  64144. name: "Front (Erect)",
  64145. image: {
  64146. source: "./media/characters/bylur/front-erect.svg",
  64147. extra: 419/343,
  64148. bottom: 3/422
  64149. }
  64150. },
  64151. back: {
  64152. height: math.unit(10, "feet"),
  64153. weight: math.unit(1000, "kg"),
  64154. preyCapacity: math.unit(2, "people"),
  64155. name: "Back",
  64156. image: {
  64157. source: "./media/characters/bylur/back.svg",
  64158. extra: 392/315,
  64159. bottom: 3/395
  64160. }
  64161. },
  64162. maw: {
  64163. height: math.unit(3.65, "feet"),
  64164. name: "Maw",
  64165. image: {
  64166. source: "./media/characters/bylur/maw.svg"
  64167. }
  64168. },
  64169. },
  64170. [
  64171. {
  64172. name: "Slightly Human Sized",
  64173. height: math.unit(10, "feet")
  64174. },
  64175. {
  64176. name: "Normal",
  64177. height: math.unit(35, "feet"),
  64178. default: true
  64179. },
  64180. {
  64181. name: "Macro",
  64182. height: math.unit(130, "feet")
  64183. },
  64184. ]
  64185. ))
  64186. characterMakers.push(() => makeCharacter(
  64187. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64188. {
  64189. frontNsfw: {
  64190. height: math.unit(6, "feet"),
  64191. weight: math.unit(250, "lb"),
  64192. preyCapacity: math.unit(0.05, "people"),
  64193. name: "Front (NSFW)",
  64194. image: {
  64195. source: "./media/characters/oarven/front-nsfw.svg",
  64196. extra: 1795/1783,
  64197. bottom: 142/1937
  64198. }
  64199. },
  64200. frontSfw: {
  64201. height: math.unit(6, "feet"),
  64202. weight: math.unit(250, "lb"),
  64203. preyCapacity: math.unit(0.05, "people"),
  64204. name: "Front (SFW)",
  64205. image: {
  64206. source: "./media/characters/oarven/front-sfw.svg",
  64207. extra: 1795/1783,
  64208. bottom: 142/1937
  64209. }
  64210. },
  64211. },
  64212. [
  64213. {
  64214. name: "Megamacro",
  64215. height: math.unit(5, "miles"),
  64216. default: true
  64217. },
  64218. {
  64219. name: "Maximum Height",
  64220. height: math.unit(5, "AUs")
  64221. },
  64222. ]
  64223. ))
  64224. characterMakers.push(() => makeCharacter(
  64225. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64226. {
  64227. side: {
  64228. height: math.unit(1065, "meters"),
  64229. weight: math.unit(1e12, "kg"),
  64230. volume: math.unit(3265000000, "m^3"),
  64231. name: "Side",
  64232. image: {
  64233. source: "./media/characters/solidarity/side.svg"
  64234. }
  64235. },
  64236. front: {
  64237. height: math.unit(1065, "meters"),
  64238. weight: math.unit(3265000000000, "kg"),
  64239. volume: math.unit(3265000000, "m^3"),
  64240. name: "Front",
  64241. image: {
  64242. source: "./media/characters/solidarity/front.svg"
  64243. }
  64244. },
  64245. top: {
  64246. height: math.unit(5823, "meters"),
  64247. weight: math.unit(3265000000000, "kg"),
  64248. volume: math.unit(3265000000, "m^3"),
  64249. name: "Top",
  64250. image: {
  64251. source: "./media/characters/solidarity/top.svg"
  64252. }
  64253. },
  64254. },
  64255. [
  64256. {
  64257. name: "Normal",
  64258. height: math.unit(1065, "meters"),
  64259. default: true
  64260. },
  64261. ]
  64262. ))
  64263. characterMakers.push(() => makeCharacter(
  64264. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64265. {
  64266. side: {
  64267. height: math.unit(18 + 4/12, "feet"),
  64268. weight: math.unit(13000, "kg"),
  64269. name: "Side",
  64270. image: {
  64271. source: "./media/characters/ani'szi/side.svg",
  64272. extra: 468/459,
  64273. bottom: 60/528
  64274. }
  64275. },
  64276. head: {
  64277. height: math.unit(4.8, "feet"),
  64278. name: "Head",
  64279. image: {
  64280. source: "./media/characters/ani'szi/head.svg"
  64281. }
  64282. },
  64283. jaws: {
  64284. height: math.unit(2.25, "feet"),
  64285. name: "Jaws",
  64286. image: {
  64287. source: "./media/characters/ani'szi/jaws.svg"
  64288. }
  64289. },
  64290. bust: {
  64291. height: math.unit(8.9, "feet"),
  64292. name: "Bust",
  64293. image: {
  64294. source: "./media/characters/ani'szi/bust.svg"
  64295. }
  64296. },
  64297. back: {
  64298. height: math.unit(13.53, "feet"),
  64299. name: "Back",
  64300. image: {
  64301. source: "./media/characters/ani'szi/back.svg"
  64302. }
  64303. },
  64304. eye: {
  64305. height: math.unit(0.44, "feet"),
  64306. name: "Eye",
  64307. image: {
  64308. source: "./media/characters/ani'szi/eye.svg"
  64309. }
  64310. },
  64311. },
  64312. [
  64313. {
  64314. name: "Normal",
  64315. height: math.unit(18 + 4/12, "feet"),
  64316. default: true
  64317. },
  64318. ]
  64319. ))
  64320. characterMakers.push(() => makeCharacter(
  64321. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64322. {
  64323. front: {
  64324. height: math.unit(7 + 6/12, "feet"),
  64325. weight: math.unit(300, "lb"),
  64326. name: "Front",
  64327. image: {
  64328. source: "./media/characters/rain/front.svg",
  64329. extra: 2955/2698,
  64330. bottom: 235/3190
  64331. }
  64332. },
  64333. dressed: {
  64334. height: math.unit(7 + 6/12, "feet"),
  64335. weight: math.unit(300, "lb"),
  64336. name: "Dressed",
  64337. image: {
  64338. source: "./media/characters/rain/dressed.svg",
  64339. extra: 2783/2572,
  64340. bottom: 430/3213
  64341. }
  64342. },
  64343. },
  64344. [
  64345. {
  64346. name: "Normal",
  64347. height: math.unit(7 + 6/12, "feet"),
  64348. default: true
  64349. },
  64350. {
  64351. name: "Macro",
  64352. height: math.unit(200, "feet")
  64353. },
  64354. {
  64355. name: "Macro+",
  64356. height: math.unit(500, "feet")
  64357. },
  64358. {
  64359. name: "Megamacro",
  64360. height: math.unit(5, "miles")
  64361. },
  64362. ]
  64363. ))
  64364. characterMakers.push(() => makeCharacter(
  64365. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64366. {
  64367. taur_side: {
  64368. height: math.unit(3, "meters"),
  64369. name: "Side",
  64370. image: {
  64371. source: "./media/characters/anise/taur-side.svg",
  64372. extra: 1833/926,
  64373. bottom: 134/1967
  64374. },
  64375. form: "taur",
  64376. default: true
  64377. },
  64378. feral_side: {
  64379. height: math.unit(3, "meters"),
  64380. name: "Side",
  64381. image: {
  64382. source: "./media/characters/anise/feral-side.svg",
  64383. extra: 681/349,
  64384. bottom: 26/707
  64385. },
  64386. form: "feral"
  64387. },
  64388. },
  64389. [
  64390. {
  64391. name: "Normal",
  64392. height: math.unit(3, "meters"),
  64393. default: true,
  64394. allForms: true
  64395. },
  64396. ],
  64397. {
  64398. "taur": {
  64399. name: "Taur",
  64400. default: true
  64401. },
  64402. "feral": {
  64403. name: "Feral",
  64404. },
  64405. }
  64406. ))
  64407. characterMakers.push(() => makeCharacter(
  64408. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64409. {
  64410. front: {
  64411. height: math.unit(1.9, "meters"),
  64412. weight: math.unit(75, "kg"),
  64413. name: "Front",
  64414. image: {
  64415. source: "./media/characters/sarina/front.svg",
  64416. extra: 1275/1200,
  64417. bottom: 49/1324
  64418. }
  64419. },
  64420. back: {
  64421. height: math.unit(1.9, "meters"),
  64422. weight: math.unit(75, "kg"),
  64423. name: "Back",
  64424. image: {
  64425. source: "./media/characters/sarina/back.svg",
  64426. extra: 1279/1209,
  64427. bottom: 14/1293
  64428. }
  64429. },
  64430. dressed: {
  64431. height: math.unit(1.9, "meters"),
  64432. weight: math.unit(75, "kg"),
  64433. name: "Dressed",
  64434. image: {
  64435. source: "./media/characters/sarina/dressed.svg",
  64436. extra: 1256/1187,
  64437. bottom: 56/1312
  64438. }
  64439. },
  64440. paw: {
  64441. height: math.unit(0.57, "feet"),
  64442. name: "Paw",
  64443. image: {
  64444. source: "./media/characters/sarina/paw.svg"
  64445. }
  64446. },
  64447. toering: {
  64448. height: math.unit(0.27, "feet"),
  64449. name: "Toering",
  64450. image: {
  64451. source: "./media/characters/sarina/toering.svg"
  64452. }
  64453. },
  64454. },
  64455. [
  64456. {
  64457. name: "Incognito",
  64458. height: math.unit(1.9, "meters")
  64459. },
  64460. {
  64461. name: "Home Size",
  64462. height: math.unit(160, "meters"),
  64463. default: true
  64464. },
  64465. {
  64466. name: "Mega",
  64467. height: math.unit(50, "km")
  64468. },
  64469. {
  64470. name: "Small Giga",
  64471. height: math.unit(250, "km")
  64472. },
  64473. {
  64474. name: "Giga (Preferred Size)",
  64475. height: math.unit(3000, "km")
  64476. },
  64477. {
  64478. name: "Terra",
  64479. height: math.unit(40000, "km")
  64480. },
  64481. {
  64482. name: "Terra+",
  64483. height: math.unit(400000, "km")
  64484. },
  64485. {
  64486. name: "Solar",
  64487. height: math.unit(35e6, "km")
  64488. },
  64489. {
  64490. name: "Galactic",
  64491. height: math.unit(648106, "parsecs")
  64492. },
  64493. {
  64494. name: "Universal",
  64495. height: math.unit(7, "universes")
  64496. },
  64497. {
  64498. name: "Universal+",
  64499. height: math.unit(30, "universes")
  64500. },
  64501. ]
  64502. ))
  64503. characterMakers.push(() => makeCharacter(
  64504. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64505. {
  64506. front: {
  64507. height: math.unit(5 + 6/12, "feet"),
  64508. name: "Front",
  64509. image: {
  64510. source: "./media/characters/sifray/front.svg",
  64511. extra: 722/691,
  64512. bottom: 64/786
  64513. }
  64514. },
  64515. },
  64516. [
  64517. {
  64518. name: "Normal",
  64519. height: math.unit(5 + 6/12, "feet"),
  64520. default: true
  64521. },
  64522. ]
  64523. ))
  64524. characterMakers.push(() => makeCharacter(
  64525. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64526. {
  64527. side: {
  64528. height: math.unit(2.64, "feet"),
  64529. weight: math.unit(100, "lb"),
  64530. preyCapacity: math.unit(3, "people"),
  64531. name: "Side",
  64532. image: {
  64533. source: "./media/characters/spots/side.svg",
  64534. extra: 1859/977,
  64535. bottom: 19/1878
  64536. },
  64537. extraAttributes: {
  64538. "preyPerMinute": {
  64539. name: "Prey Per Minute",
  64540. power: 3,
  64541. type: "volume",
  64542. base: math.unit(6, "people"),
  64543. defaultUnit: "people"
  64544. },
  64545. "preyPerDay": {
  64546. name: "Prey Per Day",
  64547. power: 3,
  64548. type: "volume",
  64549. base: math.unit(6 * 60 * 24, "people"),
  64550. defaultUnit: "people"
  64551. },
  64552. }
  64553. },
  64554. },
  64555. [
  64556. {
  64557. name: "Normal",
  64558. height: math.unit(2.64, "feet"),
  64559. default: true
  64560. },
  64561. ]
  64562. ))
  64563. characterMakers.push(() => makeCharacter(
  64564. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64565. {
  64566. front: {
  64567. height: math.unit(29 + 11/12, "feet"),
  64568. weight: math.unit(40, "tons"),
  64569. name: "Front",
  64570. image: {
  64571. source: "./media/characters/mona/front.svg",
  64572. extra: 1257/1116,
  64573. bottom: 34/1291
  64574. }
  64575. },
  64576. },
  64577. [
  64578. {
  64579. name: "Normal",
  64580. height: math.unit(29 + 11/12, "feet"),
  64581. default: true
  64582. },
  64583. ]
  64584. ))
  64585. characterMakers.push(() => makeCharacter(
  64586. { name: "FrostFire", species: ["dragon"], tags: ["anthro"] },
  64587. {
  64588. front: {
  64589. height: math.unit(15, "feet"),
  64590. weight: math.unit(3000, "kg"),
  64591. preyCapacity: math.unit(5, "people"),
  64592. name: "Front",
  64593. image: {
  64594. source: "./media/characters/frostfire/front.svg",
  64595. extra: 675/558,
  64596. bottom: 73/748
  64597. }
  64598. },
  64599. side: {
  64600. height: math.unit(15, "feet"),
  64601. weight: math.unit(3000, "kg"),
  64602. preyCapacity: math.unit(5, "people"),
  64603. name: "Side",
  64604. image: {
  64605. source: "./media/characters/frostfire/side.svg",
  64606. extra: 687/585,
  64607. bottom: 50/737
  64608. }
  64609. },
  64610. back: {
  64611. height: math.unit(15, "feet"),
  64612. weight: math.unit(3000, "kg"),
  64613. preyCapacity: math.unit(5, "people"),
  64614. name: "Back",
  64615. image: {
  64616. source: "./media/characters/frostfire/back.svg",
  64617. extra: 707/607,
  64618. bottom: 16/723
  64619. }
  64620. },
  64621. head: {
  64622. height: math.unit(9.35, "feet"),
  64623. name: "Head",
  64624. image: {
  64625. source: "./media/characters/frostfire/head.svg"
  64626. }
  64627. },
  64628. maw: {
  64629. height: math.unit(3.32, "feet"),
  64630. name: "Maw",
  64631. image: {
  64632. source: "./media/characters/frostfire/maw.svg"
  64633. }
  64634. },
  64635. hand: {
  64636. height: math.unit(3.7, "feet"),
  64637. name: "Hand",
  64638. image: {
  64639. source: "./media/characters/frostfire/hand.svg"
  64640. }
  64641. },
  64642. paw: {
  64643. height: math.unit(5.8, "feet"),
  64644. name: "Paw",
  64645. image: {
  64646. source: "./media/characters/frostfire/paw.svg"
  64647. }
  64648. },
  64649. },
  64650. [
  64651. {
  64652. name: "Normal",
  64653. height: math.unit(15, "feet"),
  64654. default: true
  64655. },
  64656. ]
  64657. ))
  64658. characterMakers.push(() => makeCharacter(
  64659. { name: "Valeroo", species: ["kangaroo"], tags: ["anthro"] },
  64660. {
  64661. front: {
  64662. height: math.unit(5 + 2/12, "feet"),
  64663. weight: math.unit(122, "lb"),
  64664. name: "Front",
  64665. image: {
  64666. source: "./media/characters/valeroo/front.svg",
  64667. extra: 1789/1534,
  64668. bottom: 66/1855
  64669. }
  64670. },
  64671. back: {
  64672. height: math.unit(5 + 2/12, "feet"),
  64673. weight: math.unit(122, "lb"),
  64674. name: "Back",
  64675. image: {
  64676. source: "./media/characters/valeroo/back.svg",
  64677. extra: 1848/1588,
  64678. bottom: 68/1916
  64679. }
  64680. },
  64681. head: {
  64682. height: math.unit(1.87, "feet"),
  64683. name: "Head",
  64684. image: {
  64685. source: "./media/characters/valeroo/head.svg"
  64686. }
  64687. },
  64688. hand: {
  64689. height: math.unit(0.82, "feet"),
  64690. name: "Hand",
  64691. image: {
  64692. source: "./media/characters/valeroo/hand.svg"
  64693. }
  64694. },
  64695. foot: {
  64696. height: math.unit(2.42, "feet"),
  64697. name: "Foot",
  64698. image: {
  64699. source: "./media/characters/valeroo/foot.svg"
  64700. }
  64701. },
  64702. },
  64703. [
  64704. {
  64705. name: "Normal",
  64706. height: math.unit(5 + 2/12, "feet"),
  64707. default: true
  64708. },
  64709. ]
  64710. ))
  64711. characterMakers.push(() => makeCharacter(
  64712. { name: "Corrin", species: ["secretary-bird"], tags: ["anthro"] },
  64713. {
  64714. front: {
  64715. height: math.unit(11 + 3/12, "feet"),
  64716. name: "Front",
  64717. image: {
  64718. source: "./media/characters/corrin/front.svg",
  64719. extra: 665/597,
  64720. bottom: 74/739
  64721. }
  64722. },
  64723. },
  64724. [
  64725. {
  64726. name: "Standard",
  64727. height: math.unit(11 + 3/12, "feet"),
  64728. default: true
  64729. },
  64730. {
  64731. name: "The Boss",
  64732. height: math.unit(110, "feet")
  64733. },
  64734. {
  64735. name: "Shipbreaker",
  64736. height: math.unit(38, "km")
  64737. },
  64738. ]
  64739. ))
  64740. characterMakers.push(() => makeCharacter(
  64741. { name: "Kiba Ulrich", species: ["dire-wolf"], tags: ["anthro"] },
  64742. {
  64743. front: {
  64744. height: math.unit(10, "feet"),
  64745. weight: math.unit(1750, "lb"),
  64746. name: "Front",
  64747. image: {
  64748. source: "./media/characters/kiba-ulrich/front.svg",
  64749. extra: 1037/973,
  64750. bottom: 36/1073
  64751. }
  64752. },
  64753. },
  64754. [
  64755. {
  64756. name: "Normal",
  64757. height: math.unit(10, "feet"),
  64758. default: true
  64759. },
  64760. {
  64761. name: "Minimacro",
  64762. height: math.unit(20, "feet")
  64763. },
  64764. {
  64765. name: "Macro",
  64766. height: math.unit(200, "feet")
  64767. },
  64768. {
  64769. name: "Megamacro",
  64770. height: math.unit(22500, "feet")
  64771. },
  64772. {
  64773. name: "Gigamacro",
  64774. height: math.unit(2700, "miles")
  64775. },
  64776. {
  64777. name: "Teramacro",
  64778. height: math.unit(10000, "miles")
  64779. },
  64780. ]
  64781. ))
  64782. characterMakers.push(() => makeCharacter(
  64783. { name: "Ceanoth", species: ["gryphon"], tags: ["anthro"] },
  64784. {
  64785. gryphon_front: {
  64786. height: math.unit(220, "cm"),
  64787. weight: math.unit(160, "kg"),
  64788. name: "Front",
  64789. image: {
  64790. source: "./media/characters/ceanoth/gryphon-front.svg",
  64791. extra: 616/552,
  64792. bottom: 33/649
  64793. },
  64794. form: "gryphon",
  64795. default: true
  64796. },
  64797. },
  64798. [
  64799. {
  64800. name: "Normal",
  64801. height: math.unit(220, "cm"),
  64802. form: "gryphon",
  64803. default: true
  64804. },
  64805. ],
  64806. {
  64807. "gryphon": {
  64808. name: "Grpyhon",
  64809. default: true
  64810. },
  64811. }
  64812. ))
  64813. characterMakers.push(() => makeCharacter(
  64814. { name: "Vanadiya Athelya", species: ["dragon"], tags: ["taur"] },
  64815. {
  64816. dressed: {
  64817. height: math.unit(2.2 * 0.79, "meters"),
  64818. weight: math.unit(0.5, "tonnes"),
  64819. name: "Dressed",
  64820. image: {
  64821. source: "./media/characters/vanadiya-athelya/dressed.svg",
  64822. extra: 665/315,
  64823. bottom: 106/771
  64824. },
  64825. extraAttributes: {
  64826. "bodyLength": {
  64827. name: "Body Length",
  64828. power: 1,
  64829. type: "length",
  64830. base: math.unit(2.5, "meters")
  64831. },
  64832. "tailLength": {
  64833. name: "Tail Length",
  64834. power: 1,
  64835. type: "length",
  64836. base: math.unit(4.5, "meters")
  64837. },
  64838. "wingspan": {
  64839. name: "Wingspan",
  64840. power: 1,
  64841. type: "length",
  64842. base: math.unit(6, "meters")
  64843. },
  64844. "taurStomachCapacity": {
  64845. name: "Taur Stomach Capacity",
  64846. power: 3,
  64847. type: "volume",
  64848. base: math.unit(4, "people"),
  64849. defaultUnit: "people"
  64850. },
  64851. "anthroStomachCapacity": {
  64852. name: "Anthro Stomach Capacity",
  64853. power: 3,
  64854. type: "volume",
  64855. base: math.unit(1, "people"),
  64856. defaultUnit: "people"
  64857. },
  64858. }
  64859. },
  64860. nude: {
  64861. height: math.unit(2.2 * 0.79, "meters"),
  64862. weight: math.unit(0.5, "tonnes"),
  64863. name: "Nude",
  64864. image: {
  64865. source: "./media/characters/vanadiya-athelya/nude.svg",
  64866. extra: 665/315,
  64867. bottom: 106/771
  64868. },
  64869. extraAttributes: {
  64870. "bodyLength": {
  64871. name: "Body Length",
  64872. power: 1,
  64873. type: "length",
  64874. base: math.unit(2.5, "meters")
  64875. },
  64876. "tailLength": {
  64877. name: "Tail Length",
  64878. power: 1,
  64879. type: "length",
  64880. base: math.unit(4.5, "meters")
  64881. },
  64882. "wingspan": {
  64883. name: "Wingspan",
  64884. power: 1,
  64885. type: "length",
  64886. base: math.unit(6, "meters")
  64887. },
  64888. "taurStomachCapacity": {
  64889. name: "Taur Stomach Capacity",
  64890. power: 3,
  64891. type: "volume",
  64892. base: math.unit(4, "people"),
  64893. defaultUnit: "people"
  64894. },
  64895. "anthroStomachCapacity": {
  64896. name: "Anthro Stomach Capacity",
  64897. power: 3,
  64898. type: "volume",
  64899. base: math.unit(1, "people"),
  64900. defaultUnit: "people"
  64901. },
  64902. }
  64903. },
  64904. },
  64905. [
  64906. {
  64907. name: "Handheld",
  64908. height: math.unit(0.79 * 0.06, "meters")
  64909. },
  64910. {
  64911. name: "Mini",
  64912. height: math.unit(0.79 * 0.7, "meters")
  64913. },
  64914. {
  64915. name: "Short",
  64916. height: math.unit(0.79 * 1.4, "meters")
  64917. },
  64918. {
  64919. name: "Imposing",
  64920. height: math.unit(0.79 * 2.2, "meters"),
  64921. default: true
  64922. },
  64923. {
  64924. name: "Big",
  64925. height: math.unit(0.79 * 3.8, "meters")
  64926. },
  64927. {
  64928. name: "Giant",
  64929. height: math.unit(0.79 * 6.7, "meters")
  64930. },
  64931. {
  64932. name: "Airliner",
  64933. height: math.unit(0.79 * 64, "meters")
  64934. },
  64935. {
  64936. name: "Skyscraper",
  64937. height: math.unit(0.79 * 220, "meters")
  64938. },
  64939. {
  64940. name: "Mountain",
  64941. height: math.unit(0.79 * 3.6, "km")
  64942. },
  64943. {
  64944. name: "Spacescraper",
  64945. height: math.unit(0.79 * 70, "km")
  64946. },
  64947. {
  64948. name: "Continental",
  64949. height: math.unit(0.79 * 1290, "km")
  64950. },
  64951. {
  64952. name: "Moon",
  64953. height: math.unit(0.79 * 32200, "km")
  64954. },
  64955. {
  64956. name: "Planetary",
  64957. height: math.unit(0.79 * 145000, "km")
  64958. },
  64959. {
  64960. name: "Stellar",
  64961. height: math.unit(0.79 * 19e6, "km")
  64962. },
  64963. {
  64964. name: "Solar",
  64965. height: math.unit(0.79 * 40, "AU")
  64966. },
  64967. {
  64968. name: "Intersteller",
  64969. height: math.unit(0.79 * 3, "lightyears")
  64970. },
  64971. {
  64972. name: "Star Cluster",
  64973. height: math.unit(0.79 * 80, "lightyears")
  64974. },
  64975. {
  64976. name: "Ecumenical",
  64977. height: math.unit(0.79 * 2e3, "lightyears")
  64978. },
  64979. {
  64980. name: "Galactic",
  64981. height: math.unit(0.79 * 175000, "lightyears")
  64982. },
  64983. {
  64984. name: "Galaxy Cluster",
  64985. height: math.unit(0.79 * 25e6, "lightyears")
  64986. },
  64987. ]
  64988. ))
  64989. characterMakers.push(() => makeCharacter(
  64990. { name: "Yana Amelin", species: ["russian-blue"], tags: ["anthro"] },
  64991. {
  64992. front: {
  64993. height: math.unit(6 + 2/12, "feet"),
  64994. weight: math.unit(160, "lb"),
  64995. name: "Front",
  64996. image: {
  64997. source: "./media/characters/yana-amelin/front.svg",
  64998. extra: 1413/1295,
  64999. bottom: 42/1455
  65000. }
  65001. },
  65002. back: {
  65003. height: math.unit(6 + 2/12, "feet"),
  65004. weight: math.unit(160, "lb"),
  65005. name: "Back",
  65006. image: {
  65007. source: "./media/characters/yana-amelin/back.svg",
  65008. extra: 1424/1310,
  65009. bottom: 24/1448
  65010. }
  65011. },
  65012. paws: {
  65013. height: math.unit(1.48, "feet"),
  65014. name: "Paws",
  65015. image: {
  65016. source: "./media/characters/yana-amelin/paws.svg",
  65017. extra: 304/304,
  65018. bottom: 49/353
  65019. }
  65020. },
  65021. },
  65022. [
  65023. {
  65024. name: "Micro",
  65025. height: math.unit(4, "inches")
  65026. },
  65027. {
  65028. name: "Normal",
  65029. height: math.unit(6 + 2/12, "feet"),
  65030. default: true
  65031. },
  65032. {
  65033. name: "Minimacro",
  65034. height: math.unit(20, "feet")
  65035. },
  65036. {
  65037. name: "Macro",
  65038. height: math.unit(70, "feet")
  65039. },
  65040. ]
  65041. ))
  65042. characterMakers.push(() => makeCharacter(
  65043. { name: "Titania", species: ["horse"], tags: ["anthro"] },
  65044. {
  65045. frontNsfw: {
  65046. height: math.unit(2.48, "meters"),
  65047. weight: math.unit(112, "kg"),
  65048. name: "Front (NSFW)",
  65049. image: {
  65050. source: "./media/characters/titania/front-nsfw.svg",
  65051. extra: 1302/1232,
  65052. bottom: 90/1392
  65053. }
  65054. },
  65055. backNsfw: {
  65056. height: math.unit(2.48, "meters"),
  65057. weight: math.unit(112, "kg"),
  65058. name: "Back (NSFW)",
  65059. image: {
  65060. source: "./media/characters/titania/back-nsfw.svg",
  65061. extra: 1355/1288,
  65062. bottom: 18/1373
  65063. }
  65064. },
  65065. frontSfw: {
  65066. height: math.unit(2.48, "meters"),
  65067. weight: math.unit(112, "kg"),
  65068. name: "Front (SFW)",
  65069. image: {
  65070. source: "./media/characters/titania/front-sfw.svg",
  65071. extra: 1302/1232,
  65072. bottom: 90/1392
  65073. }
  65074. },
  65075. backSfw: {
  65076. height: math.unit(2.48, "meters"),
  65077. weight: math.unit(112, "kg"),
  65078. name: "Back (SFW)",
  65079. image: {
  65080. source: "./media/characters/titania/back-sfw.svg",
  65081. extra: 1355/1288,
  65082. bottom: 18/1373
  65083. }
  65084. },
  65085. head: {
  65086. height: math.unit(2.06, "feet"),
  65087. name: "Head",
  65088. image: {
  65089. source: "./media/characters/titania/head.svg"
  65090. }
  65091. },
  65092. maw: {
  65093. height: math.unit(0.8, "feet"),
  65094. name: "Maw",
  65095. image: {
  65096. source: "./media/characters/titania/maw.svg"
  65097. }
  65098. },
  65099. foot: {
  65100. height: math.unit(1.65, "feet"),
  65101. name: "Foot",
  65102. image: {
  65103. source: "./media/characters/titania/foot.svg"
  65104. }
  65105. },
  65106. nethers: {
  65107. height: math.unit(1.7, "feet"),
  65108. name: "Nethers",
  65109. image: {
  65110. source: "./media/characters/titania/nethers.svg"
  65111. }
  65112. },
  65113. },
  65114. [
  65115. {
  65116. name: "Normal",
  65117. height: math.unit(2.48, "meters"),
  65118. default: true
  65119. },
  65120. {
  65121. name: "Mini Macro",
  65122. height: math.unit(248, "meters")
  65123. },
  65124. {
  65125. name: "Macro",
  65126. height: math.unit(620, "meters")
  65127. },
  65128. {
  65129. name: "Mega Macro",
  65130. height: math.unit(1860, "meters")
  65131. },
  65132. ]
  65133. ))
  65134. characterMakers.push(() => makeCharacter(
  65135. { name: "Tony Gray", species: ["wholphin"], tags: ["anthro"] },
  65136. {
  65137. front: {
  65138. height: math.unit(5 + 9/12, "feet"),
  65139. weight: math.unit(1500, "lb"),
  65140. name: "Front",
  65141. image: {
  65142. source: "./media/characters/tony-gray/front.svg",
  65143. extra: 700/575,
  65144. bottom: 71/771
  65145. }
  65146. },
  65147. },
  65148. [
  65149. {
  65150. name: "Normal",
  65151. height: math.unit(5 + 9/12, "feet"),
  65152. default: true
  65153. },
  65154. ]
  65155. ))
  65156. characterMakers.push(() => makeCharacter(
  65157. { name: "Kelby", species: ["sea-dragon"], tags: ["feral"] },
  65158. {
  65159. side: {
  65160. height: math.unit(8 + 2/12, "feet"),
  65161. name: "Side",
  65162. image: {
  65163. source: "./media/characters/kelby/side.svg",
  65164. extra: 804/578,
  65165. bottom: 70/874
  65166. },
  65167. form: "regular",
  65168. default: true
  65169. },
  65170. lounging: {
  65171. height: math.unit(12.41, "feet"),
  65172. name: "Lounging",
  65173. image: {
  65174. source: "./media/characters/kelby/lounging.svg"
  65175. },
  65176. form: "regular"
  65177. },
  65178. maw: {
  65179. height: math.unit(5, "feet"),
  65180. name: "Maw",
  65181. image: {
  65182. source: "./media/characters/kelby/maw.svg"
  65183. },
  65184. form: "regular"
  65185. },
  65186. dick: {
  65187. height: math.unit(2.4, "feet"),
  65188. name: "Dick",
  65189. image: {
  65190. source: "./media/characters/kelby/dick.svg"
  65191. },
  65192. form: "regular"
  65193. },
  65194. slit: {
  65195. height: math.unit(1.2, "feet"),
  65196. name: "Slit",
  65197. image: {
  65198. source: "./media/characters/kelby/slit.svg"
  65199. },
  65200. form: "regular"
  65201. },
  65202. chibi: {
  65203. height: math.unit(5, "feet"),
  65204. name: "Chibi",
  65205. image: {
  65206. source: "./media/characters/kelby/chibi.svg",
  65207. extra: 245/200,
  65208. bottom: 43/288
  65209. },
  65210. form: "chibi",
  65211. default: true
  65212. },
  65213. },
  65214. [
  65215. {
  65216. name: "Normal",
  65217. height: math.unit(8 + 2/12, "feet"),
  65218. default: true,
  65219. form: "regular"
  65220. },
  65221. {
  65222. name: "Normal",
  65223. height: math.unit(5, "feet"),
  65224. default: true,
  65225. form: "chibi"
  65226. },
  65227. ],
  65228. {
  65229. "regular": {
  65230. name: "Regular",
  65231. default: true
  65232. },
  65233. "chibi": {
  65234. name: "Chibi",
  65235. },
  65236. }
  65237. ))
  65238. //characters
  65239. function makeCharacters() {
  65240. const results = [];
  65241. characterMakers.forEach(character => {
  65242. results.push(character());
  65243. });
  65244. return results;
  65245. }